@charset "UTF-8";
:root {
  --navHeight: 50px;
  --navBgColor: rgba(249, 7, 7, 1);
  --navColor: #fff;
  --beforeColor: rgb(246, 242, 226);
}
body.page {
  opacity: 0;
}
/* .body-bg {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--site-orange);
  background: #eee;
  z-index: 1000;
} */
header {
  position: relative;
}
.page .header-bg {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--site-orange);
  background: #eee;
  z-index: 1000;
  transform-origin: bottom center;
}
small {
  font-size: 0.6em;
}
.f18 {
  font-size: 18px;
}
.f12 {
  font-size: 12px;
}
.center {
  text-align: center;
}
.prepend {
  cursor: pointer;
}
/**
*
* Navigation
*
*/
@media screen and (min-width: 768px) {
  :root {
    --headerHeight: 70vh;
  }
  nav {
    position: fixed;
    height: var(--navHeight);
    z-index: 3;
  }
  .nav-list {
    display: flex;
    flex-direction: row;
    justify-content: end;
    height: var(--navHeight);
    transform: none;
    background: transparent;
    border-bottom: thin dotted rgba(0, 0, 0, 0.05);
  }
  .nav-item {
    position: relative;
    width: 120px;
    margin: 0;
    transition: 0.3s;
  }
  .nav-list > .nav-item.active {
    border-bottom: thin solid var(--site-orange);
  }
  .nav-item a {
    display: block;
    width: 100%;
    text-align: center;
    color: rgb(16, 16, 15);
    text-shadow: 1px 1px 2px #fff, -1px -1px 2px #fff;
  }
  .nav-item:hover > a,
  .nav-item.hasChild > a:hover {
    color: var(--site-orange);
  }
  .subMenu {
    position: absolute;
    top: var(--navHeight);
    left: -30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.5);
    padding: 0 30px;
    border: thin solid #ccc;
    border-radius: 5px;
  }
  .subMenu .nav-item,
  .subMenu .nav-item a {
    line-height: 1;
  }
  .subMenu .nav-item a {
    padding-top: 1em;
  }
  .subMenu .nav-item.active a {
    color: var(--site-orange);
  }
  .subMenu .nav-item a:last-of-type {
    padding-bottom: 1em;
  }
  .nav-item:hover .subMenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/**
*
* header
*
*/
.page header {
  width: 100%;
  height: 50vh;
  border-top: thin solid rgba(255, 0, 0, 0.1);
  border-bottom: thin solid rgba(255, 0, 0, 0.1);
  box-shadow: 0 2px 15px 0 rgba(112, 72, 1, 0.1);
}
.page header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}
.page .hero,
.page .hero img {
  width: 100%;
  height: 100%;
}
.hero-str {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--site-red);
  z-index: 1;
}
.page header h2 {
  position: absolute;
  bottom: -1em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  margin: 0;
  padding: 0.2em 1em;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.2);
  border: thin solid rgba(255, 0, 0, 0.2);
  z-index: 1;
}
.page header h2 a {
  display: block;
  color: var(--site-red);
}
.page h1 {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 42px;
  margin-bottom: 50px;
  white-space: nowrap;
}
.page h1.kana {
  letter-spacing: 0;
}
.page h1:after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 1em;
  width: 30px;
  height: 1px;
  background: var(--site-red);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  header {
    height: var(--headerHeight);
  }
  .logo img {
    transform: translate(-50%, calc(-50% + var(--navHeight) / 2));
    width: 350px;
  }
  .page header {
    border-top: thin solid rgba(255, 0, 0, 0.2);
    border-bottom: thin solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 3px 15px 0 rgba(112, 72, 1, 0.15);
  }
  .page header:after {
    background: rgba(255, 255, 255, 0.3);
  }
  .hero-str {
    transform: translate(-50%, calc(-50% + var(--navHeight) / 2));
    text-align: center;
  }
  .page header h2 {
    z-index: 3;
  }
  .page h1 {
    font-size: 48px;
  }
  .page h1:after {
    content: "";
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 992px) {
  .page header h2 {
    position: fixed;
    top: 0.25em;
    bottom: auto;
    left: 0.5em;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1200px) {
  .page h1 {
    font-size: 60px;
    letter-spacing: 3px;
  }
}
/**
*
* Footer
*
*/
footer {
  position: relative;
  background: var(--site-red);
  color: #fff;
  padding-top: 60px;
}
footer .sns {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 60px;
}
footer .sns img {
  width: 40px;
  height: auto;
}
footer address {
  display: flex;
  flex-flow: column;
  align-items: center;
}
footer address li span {
  display: inline-block;
  width: 90px;
  padding: 0.75em;
  margin-right: 0.75em;
  text-align: center;
  border-right: thin solid #ec5959;
}
footer address a,
.copyright a {
  color: #fff;
  text-decoration: none;
}
.ending-wrapper {
  position: relative;
}
.ending-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--site-red);
}
.ending {
  position: relative;
  margin-top: 80px;
  background: linear-gradient(
    180deg,
    rgba(164, 7, 7, 1) 0%,
    rgba(185, 7, 7, 1) 35%,
    rgba(199, 7, 7, 1) 100%
  );
  text-align: center;
}
.ending:after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: #ec5959;
}
.ending p {
  display: inline-block;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 60px 0;
}
.ending p.anime {
  background: linear-gradient(45deg, #fff 0%, #fff 40%, #def609 50%, #fff 60%);
  background: -webkit-linear-gradient(
    45deg,
    #fff 0%,
    #fff 40%,
    #def609 50%,
    #fff 60%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: endingAnime 10s infinite;
}
@keyframes endingAnime {
  from {
    background-position: 150%;
  }
  to {
    background-position: 0%;
  }
}
.copyright {
  position: relative;
  height: 70px;
  background: #c70707;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 576px) {
  footer address li span {
    width: 100px;
    padding: 1em;
    margin-right: 1em;
  }
}
@media screen and (min-width: 992px) {
  footer {
    color: #fff;
    padding-top: 100px;
  }
  footer .sns {
    margin-bottom: 80px;
  }
  .ending p {
    font-size: 42px;
    padding: 80px 0;
  }
}

/**
*
* Common
*
*/
section {
  margin-top: 60px;
}
section:not(:first-of-type) {
  margin-top: 80px;
}
section:last-of-type {
  margin-bottom: 80px;
}
h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.page p.number {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  section {
    margin-top: 100px;
  }
  section:last-of-type {
    margin-bottom: 120px;
  }
  section:not(:first-of-type) {
    margin-top: 120px;
  }
  h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
  }
}

/**
*
* Top page
*
*/
.top section {
  position: relative;
}
.top h3 {
  position: relative;
  margin: 2em 0 3em 2em;
}
.top h3:before {
  position: absolute;
  left: 20px;
  top: -12px;
  width: 50px;
  height: calc(1em + 30px);
  content: "";
  background: var(--site-orange);
  z-index: -1;
}
.top h3:after {
  position: absolute;
  left: 90px;
  top: -4px;
  width: 32px;
  height: calc(1em + 16px);
  content: "";
  background: var(--site-green);
  z-index: -1;
}
.str {
  margin-bottom: 2em;
}
.top .pict {
  overflow: hidden;
}
.top .pict img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.takeout:not(:first-of-type) {
  margin-top: 60px;
}
.takeout img {
  width: 100%;
  height: auto;
}
.takeout .heading img {
  display: block;
  width: 100px;
  height: auto;
  margin: 2em auto 3em auto;
}
.takeout .desc p {
  margin-bottom: 2em;
}
.takeout ul {
  width: 100%;
}
.takeout:first-of-type li img {
  width: 100px;
  margin-top: 10px;
}
.takeout:not(:first-of-type) li img {
  background: var(--site-green);
}
.takeout li a {
  display: block;
  transition: 0.3s;
}
.takeout li span {
  text-align: center;
  display: block;
  font-size: 14px;
}
.take li img,
.nabe li img {
  clip-path: circle(50% at 50% 50%);
}
.menu-banner {
  position: relative;
  margin-top: 60px;
}
.menu-banner:before {
  position: absolute;
  content: "";
  top: 120px;
  left: 0;
  width: 20%;
  height: 100%;
  background: var(--beforeColor);
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}
.menu-banner figure {
  position: relative;
}
.menu-banner figcaption {
  display: inline-block;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  padding: 0.25em;
  white-space: nowrap;
  color: #000;
  background: var(--site-yellow);
  text-align: center;
  transform-origin: left;
  transform: scaleX(0);
  transition: 0.5s;
  transition-delay: 0.5s;
}
.menu-banner figcaption:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--site-red);
  transform-origin: right;
  transition: 0.3s ease-in-out;
}
.menu-banner figcaption.active {
  transform: scaleX(1);
  transition-delay: 0s;
}
.menu-banner a:hover figcaption {
  color: #fff;
  background: var(--site-orange);
}
.menu-banner figcaption.active:before {
  transform: scaleX(0);
  transition-delay: 0.35s;
}
.menu-banner img {
  width: 100%;
  height: auto;
  border: thin solid #ccc;
}
@media screen and (min-width: 768px) {
  .leading {
    text-align: center;
  }
  .news-list {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .news-list li {
    padding: 4em 2em;
  }
  .news-list li:last-of-type {
    display: block;
  }
  .news-list li a {
    right: 2em;
  }
  .takeout .heading img {
    width: 125px;
  }
  .take li:not(:last-of-type),
  .nabe li:not(:last-of-type) {
    margin-right: 2em;
  }
}
@media screen and (min-width: 576px) {
  .top .hero img {
    transform: scale(1.05);
  }
}
@media screen and (min-width: 992px) {
  .top section:nth-of-type(1):before {
    position: absolute;
    content: "";
    top: 160px;
    left: 0;
    width: 30%;
    height: calc(100% - 160px);
    background: var(--beforeColor);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    z-index: -1;
  }
  .top section:nth-of-type(2):before {
    position: absolute;
    content: "";
    top: 160px;
    right: 0;
    width: 40%;
    height: calc(100% - 160px);
    background: var(--beforeColor);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    z-index: -1;
  }
  .top section:nth-of-type(1):before {
    top: 220px;
    height: calc(100% - 220px);
  }
  .top section:nth-of-type(2):before {
    top: 240px;
    height: calc(100% - 240px);
  }
  .top h3 {
    margin-top: 0;
  }
  .str-wrap {
    align-self: center;
  }
  .takeout:not(:first-of-type) {
    margin-top: 120px;
  }
  .takeout .heading img {
    width: 150px;
    margin: 2em auto 0 2em;
  }
  .take li:not(:last-of-type),
  .nabe li:not(:last-of-type) {
    margin-right: 3em;
  }
}
@media screen and (min-width: 1200px) {
  .takeout:not(:first-of-type) {
    margin-top: 180px;
  }
  .takeout .heading img {
    width: 200px;
  }
  .takeout:first-of-type li img {
    margin-top: 40px;
  }
}

/**
*
*　こだわり
*
*/
.kodawari {
  position: relative;
}
.kodawari .pict {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kodawari .pict img {
  width: 100%;
  height: auto;
}
.kodawari .pict h3 {
  position: absolute;
  font-size: 36px;
  font-weight: normal;
  color: #fff;
  text-shadow: 0 0 10px #fff, 0 0 20px #fcfc03, 0 0 30px #fcfc03,
    0 0 40px #ff0000, 0 0 50px #ff0000, 0 0 60px #ff0000, 0 0 70px #ff0000,
    0 0 80px #ff0000, 0 0 100px #ff0000, 0 0 150px #ff0000;
}
.kodawari .str {
  display: flex;
  align-items: center;
}
.one-pict img {
  display: block;
  margin: 20px auto 0 auto;
  width: 80%;
  height: auto;
}
.hiketsu section:not([class]) {
  position: relative;
}
.sozai-wrap {
  margin-bottom: 40px;
}
.sozai {
  background: #053225;
  height: 100%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.sozai dt {
  text-align: center;
  padding: 1em 0;
  background: #053225;
  color: #fff;
}
.sozai dl dd:nth-of-type(1) {
  background: rgba(255, 210, 0, 1);
  background: var(--site-yellow);
}
.sozai dl dd:nth-of-type(2) {
  color: #fff;
  padding: 1em;
}
.sozai dd {
  overflow: hidden;
}
.sozai img {
  display: block;
  height: 160px;
  width: auto;
  margin: 0 auto;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .kodawari .str {
    margin-top: 1em;
  }
}
@media screen and (min-width: 576px) {
  .kodawari:before {
    position: absolute;
    content: "";
    background: var(--beforeColor);
    z-index: -1;
    top: 15%;
    left: 0;
    width: 30%;
    height: 85%;
  }
  .kodawari:nth-of-type(2):before {
    left: 70%;
  }
  .one-pict img {
    margin: 40px auto 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .sozai {
    opacity: 0;
  }
}
@media screen and (min-width: 992px) {
  .kodawari:before {
    top: 20%;
    left: 0;
    width: 30%;
    height: 85%;
  }
  .kodawari:nth-of-type(2):before {
    left: 70%;
  }
  .hiketsu section:not([class]):before,
  .hiketsu section:not([class]):after {
    position: absolute;
    content: "";
    background: var(--beforeColor);
    z-index: -1;
  }
  .hiketsu section:not([class]):before {
    top: -5%;
    left: 0;
    width: 20%;
    height: 60%;
  }
  .hiketsu section:not([class]):after {
    bottom: 0;
    right: 0;
    width: 20%;
    height: 60%;
  }
}
/**
*
*　お品書き
*
*/
/****** ラーメン単品 *****/
.ramen section {
  position: relative;
}
.ramen .pict {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ramen .pict img {
  width: 100%;
  height: auto;
}
.ramen .ramen-str {
  display: flex;
  align-items: center;
}
.reveal-list {
  margin-top: 1em;
}
.reveal-list dt {
  margin-top: 1.5em;
  font-weight: bold;
}
.reveal-list,
.reveal-text {
  position: relative;
  display: inline-block;
  transform-origin: left;
  transform: scaleX(0);
  transition: 0.5s;
  -webkit-transition: -webkit-transform all 0.5s;
  transition-delay: 0.5s;
}
.reveal-list:before,
.reveal-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: right;
  transition: 0.3s ease-in-out;
  -webkit-transition: -webkit-transform all 0.3s;
  background: var(--site-yellow);
}
.reveal-text:before {
  background: var(--site-red);
}
.ramen-str.active .reveal-list,
.ramen-str.active .reveal-text {
  transform: scaleX(1);
  transition-delay: 0s;
}
.ramen-str.active .reveal-list:before,
.ramen-str.active .reveal-text:before {
  transform: scaleX(0);
  transition-delay: 0.35s;
}
section.topping {
  margin-bottom: calc(80px - 3em);
}
.topping p {
  margin: 0 2em 60px 2em;
}
.topping div[class^="col-"] {
  text-align: center;
}
.topping figure {
  opacity: 0;
  transform: translateY(40px);
}
.topping figcaption {
  margin-top: 1em;
  margin-bottom: 3em;
}
.topping img {
  width: 60%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .ramen .ramen-str {
    margin-top: 40px;
    text-align: center;
  }
  .reveal-text {
    text-align: left;
  }
}
@media screen and (max-width: 991px) {
  .topping p {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .ramen section:before {
    position: absolute;
    content: "";
    top: 20%;
    width: 30%;
    height: 85%;
    background: var(--beforeColor);
    z-index: -1;
  }
  .ramen section.sutamina:before {
    background: #ffff3e;
  }
  .ramen section.miso:before {
    background: #e3cbb5;
  }
  .ramen section.yonaki:before {
    background: #ffd966;
  }
  .ramen section.syoyu:before {
    background: #c6e0b4;
  }
  .ramen section:nth-of-type(odd):before {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .ramen section:nth-of-type(even):before {
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .ramen section.topping:before {
    top: 30%;
    left: 0;
    width: 10%;
    height: 60%;
    clip-path: polygon(70% 0, 100% 50%, 70% 100%, 0 100%, 0 0);
  }
  .ramen section.topping:after {
    position: absolute;
    content: "";
    top: 30%;
    right: 0;
    width: 10%;
    height: 60%;
    background: var(--beforeColor);
    clip-path: polygon(30% 0, 100% 0%, 100% 100%, 30% 100%, 0% 50%);
    z-index: -1;
  }
}
/****** ラーメンセット *****/
.set section {
  position: relative;
}
.ramen-set:first-of-type {
  margin-bottom: 40px;
}
.set-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  background: var(--site-yellow);
  padding: 40px;
}
.set-wrap.sutamina {
  background: #ffff3e;
}
.set-wrap.miso {
  background: #e3cbb5;
}
.set-wrap.yonaki {
  background: #ffd966;
}
.set-wrap.syoyu {
  background: #c6e0b4;
}
.img-mask {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f3f3f3;
  overflow: hidden;
  padding: 20px;
  clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
}
.set-img {
  display: block;
  width: 100%;
  height: auto;
}
h3.set-name {
  position: absolute;
  top: 26px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
h3.set-name span {
  font-size: 24px;
  color: blue;
}
.set-desc {
  position: relative;
  padding: 2em 1em;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  background: #fff;
}
.set-desc ul {
  margin-bottom: 0;
  text-align: center;
}
.set-desc .ramen {
  color: red;
}
.set-desc .ippin {
  color: blue;
}
.descPanel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  background: #f3f3f3;
}
.beforeAfter {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.beforeAfter img {
  display: block;
  width: 100%;
}
.beforeAfter .arrow img {
  width: 20%;
  margin: 0 auto;
}
.henko h3 {
  margin-top: 3em;
  margin-bottom: 2em;
  text-align: center;
}
.henko img {
  width: 100%;
  height: auto;
  margin-top: 2em;
}
img.houhou {
  margin-top: 4em;
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  .img-mask {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .beforeAfter {
    flex-direction: column;
  }
  .beforeAfter .arrow img {
    width: 15%;
    margin: 40px auto 0 auto;
  }
  img.houhou {
    margin-top: 2em;
    margin-bottom: 2em;
  }
}
@media screen and (min-width: 992px) {
  .set section:before {
    position: absolute;
    content: "";
    top: 50%;
    width: 20%;
    height: 120%;
    background: var(--beforeColor);
    z-index: -1;
  }
  .set section:nth-of-type(odd):before {
    left: 0;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  }
  .set section:nth-of-type(even):before {
    right: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
/****** サイド／ドリンク *****/
.drink h1 {
  font-size: 27px;
}
.drink section {
  margin-bottom: calc(80px - 3em);
}
.drink .block {
  text-align: center;
}
.drink .item {
  margin-bottom: 3em;
}
.drink .item img {
  height: 150px;
  width: auto;
}
@media screen and (min-width: 576px) {
  .drink h1 {
    font-size: 36px;
  }
  .topping p {
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .set-col-1 {
    margin-bottom: 3.5em;
  }
}
@media screen and (min-width: 992px) {
  .drink section {
    position: relative;
  }
  .drink section:before,
  .drink section:after {
    position: absolute;
    content: "";
    z-index: -1;
  }
  .drink section:nth-of-type(1):before {
    top: 15%;
    left: -25%;
    width: 40%;
    height: 75%;
    clip-path: ellipse(30% 50% at 50% 50%);
    background: var(--beforeColor);
  }
  .drink section:nth-of-type(1):after {
    top: 15%;
    right: -25%;
    width: 40%;
    height: 75%;
    clip-path: ellipse(30% 50% at 50% 50%);
    background: var(--beforeColor);
  }
  .drink section:nth-of-type(2):before {
    top: 10%;
    left: 0;
    width: 10%;
    height: 80%;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--beforeColor);
  }
  .drink section:nth-of-type(2):after {
    top: 10%;
    right: 0;
    width: 10%;
    height: 80%;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    background: var(--beforeColor);
  }
  .drink h1 {
    font-size: 48px;
  }
  .henko p,
  .henko figcaption {
    text-align: center;
  }
  section.topping,
  .drink section {
    margin-bottom: calc(120px - 3em);
  }
}

/****** サイドメニュー／ドリンク *****/
.side-items .item,
.drink-items .item {
  opacity: 1;
}

/**
*
*　食券機
*
*/
.kenbaiki-desc > .icon {
  text-align: center;
  margin-bottom: 40px;
}
.icon-left > img,
.icon-left > p,
.icon-right > img,
.icon-right > p {
  opacity: 0;
}
.kenbaiki-desc > .icon > img {
  width: 50%;
  height: auto;
}
.ken .kenbaiki {
  text-align: center;
  margin-bottom: 40px;
}
.ken .kenbaiki img {
  height: 100px;
  margin-bottom: 1em;
}
.table-responsive {
  overflow: auto;
  white-space: nowrap;
  width: 101%;
}
.ken table::-webkit-scrollbar-track {
  background: #ffe6ea;
}
.ken table:scrollbar-thumb {
  background: #ff8095;
}
.ken table {
  border-collapse: collapse;
  width: 1120px;
  margin: 0 auto;
}
.ken table ul {
  margin: 0;
  padding: 0;
}
.ken tr:first-child td {
  position: relative;
  text-align: center;
  padding-bottom: 10px;
}
.ken tr:first-child td img {
  height: 25px;
  margin-top: 5px;
}
.ken td {
  position: relative;
  font-weight: 700;
  padding: 0;
  margin: 0;
  border: thin solid #8e5f5f;
  border-spacing: 0;
  width: 12%;
}
.ken td.menu-arrow img {
  max-width: 100%;
}
.ken td.bd {
  border-left: 5px double #8e5f5f;
}
.ken tr td:first-child {
  white-space: nowrap;
  width: 4%;
  vertical-align: middle;
}
.ken tr td:first-child span {
  writing-mode: vertical-rl;
}
.ken td.noline {
  border: none;
}
.ken .noline.topline {
  border-top: thin solid #8e5f5f;
}
.ken td.sutamina {
  background: #f4f40c;
}
.ken td.miso {
  background: #e1c2a3;
}
.ken td.yonaki {
  background: #ffd966;
}
.ken td.syoyu {
  background: #c6e0b4;
}
.ken td.drink {
  background: #00b0f0;
}
.ken td.side {
  background: #9bc2e6;
}
.ken td.gohan {
  background: #ffccff;
}
.ken td.topping {
  background: #ffc000;
}
.ken td.grey {
  background: #ddd;
}
.ken td.empty {
  background: #fff;
}
.ken td li:first-child {
  padding-left: 5px;
  color: red;
}
.ken td li:nth-child(2) {
  font-weight: 700;
  padding: 0 0 0.5rem 1em;
  margin-top: -0.35rem;
}
.ken td li:last-child {
  text-align: center;
  background: #fff;
}
.ken td li.free {
  color: #fff;
  background: red;
}
span.num {
  position: absolute;
  top: 3px;
  left: 3px;
  color: red;
  font-weight: 700;
}
span.name {
  padding-left: 0.75rem;
  padding-bottom: 0.75rem;
  display: inline-block;
}
span.en {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
  background: #fff;
}
span.br:before {
  content: "\A";
  white-space: pre;
}
.ken td {
  font-size: 14px;
  font-weight: normal;
}
@media screen and (min-width: 576px) {
  .kenbaiki .hero img {
    object-position: left top;
  }
}
@media screen and (min-width: 992px) {
  section.ken {
    position: relative;
  }
  section.ken:nth-of-type(1):before,
  section.ken:nth-of-type(1):after {
    position: absolute;
    content: "";
    top: 20%;
    width: 13%;
    height: 60%;
    z-index: -1;
  }
  section.ken:nth-of-type(1):before {
    left: 0;
    background: var(--beforeColor);
    clip-path: polygon(
      0% 20%,
      60% 20%,
      60% 0%,
      100% 50%,
      60% 100%,
      60% 80%,
      0% 80%
    );
  }
  section.ken:nth-of-type(1):after {
    right: 0;
    background: var(--beforeColor);
    clip-path: polygon(
      40% 0%,
      40% 20%,
      100% 20%,
      100% 80%,
      40% 80%,
      40% 100%,
      0% 50%
    );
  }
  .kenbaiki-desc > .icon {
    margin-bottom: 60px;
  }
}
/**
*
* アクセス
*
*/
map iframe {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.access section {
  position: relative;
}
.route dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.route dd:not(:last-of-type) {
  margin-bottom: 2em;
}
.route figure {
  position: relative;
  text-align: center;
}
.route img {
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.route figcaption {
  margin-top: 1em;
}
p.last-comment {
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  .route figure {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  p.last-comment {
    font-size: 30px;
  }
}
@media screen and (min-width: 992px) {
  .route {
    position: relative;
  }
  .trainPict,
  .carPict,
  .parkingPict {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #ccc;
    z-index: -1;
  }
  .trainPict {
    top: 0;
    left: 0;
    /* background: #fdf2f2 url(../img/train.webp); */
    background: url(../img/train.webp);
    background-size: cover;
    background-position: center center;
  }
  .carPict {
    top: 0;
    right: 0;
    /* background: #dff1e4 url(../img/car.webp); */
    background: url(../img/car.webp);
    background-size: cover;
    background-position: center center;
  }
  .parkingPict {
    top: 0;
    left: 0;
    width: 100px;
    height: 200px;
    background: #1971ff url(../img/parking.webp) no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .access section:before {
    position: absolute;
    content: "";
    background: var(--beforeColor);
    z-index: -1;
  }
  .route:nth-of-type(2):before {
    top: 5%;
    left: 5%;
    width: 12%;
    height: 50%;
  }
  .route:nth-of-type(3):before {
    top: -20%;
    right: 5%;
    width: 20%;
    height: 70%;
  }
  .route:nth-of-type(4):before {
    top: 20%;
    left: 0;
    width: 25%;
    height: 70%;
  }
  .route img {
    width: 80%;
  }
  .route figcaption {
    position: absolute;
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-shadow: 0 0 0.1em #5b3200, 0 0 0.2em #5b3200, 0 0 0.3em #5b3200,
      0 0 0.4em #5b3200;
    filter: saturate(80%);
  }
  .cyurin {
    display: grid;
    place-items: center;
  }
}
@media screen and (min-width: 1200px) {
  p.last-comment {
    text-align: center;
  }
}
/**
*
* お知らせ一覧
*
*/
.post-list {
  margin-top: 60px;
  margin-bottom: 100px;
}
.google-post {
  margin-top: 60px;
}
.google-post a {
  color: rgb(14, 67, 117);
  transition: 0.3s;
}
.google-post a:after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background: url(../img/link.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 1em;
}
.google-poast a:hover {
  opacity: 0.8;
}
.google-post dt {
  display: inline-block;
  color: #e80707;
  transition: 0.3s;
  padding: 4px 10px 3px;
  background: rgba(255, 210, 0, 1);
}
.google-post dd {
  border-left: thin solid #777;
  padding: 0.5em 0.5em 0.5em 0.75em;
  margin: 1.5em 1em;
}

/**
*
* Utility
*
*/
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  background-color: var(--site-orange);
  opacity: 0.85;
  width: 50px;
  height: 50px;
  border: thin solid var(--site-orange);
  color: #000;
  font-size: 14px;
  line-height: 50px;
  text-align: center;
  transition: 0.3s;
}

.scroll-top:hover {
  cursor: pointer;
  opacity: 0.75;
}
