@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");
@import url("https://use.typekit.net/alo8uei.css");
/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-64 {
  margin-top: 64px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.pt-8 {
  padding-top: 8px;
}

.pt-16 {
  padding-top: 16px;
}

.pt-24 {
  padding-top: 24px;
}

.pt-32 {
  padding-top: 32px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-64 {
  padding-top: 64px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-64 {
  padding-bottom: 64px;
}

.pb-80 {
  padding-bottom: 80px;
}

/*グローバルナビゲーション*/
#nav-toggle {
  position: fixed;
  top: 320px;
  left: 0px;
  height: 56px;
  width: 48px;
  cursor: pointer;
  background-color: #072E4C;
  border-radius: 0 16px 16px 0;
}
#nav-toggle > div {
  position: relative;
  top: 16px;
  left: 12px;
  width: 24px;
}
#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.3s ease-in-out, top 0.3s ease;
  /* #nav-toggle close */
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 11px;
}
#nav-toggle span:nth-child(3) {
  top: 22px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 3px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 19px;
}

.open #nav-toggle span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 11px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

#nav-insta {
  position: fixed;
  top: 400px;
  left: 0px;
  height: 116px;
  width: 48px;
  cursor: pointer;
  background-size: cover;
  background-image: url("../img/insta.png");
}

/* z-index */
#nav-toggle, #nav-insta {
  z-index: 1000;
}

#container {
  z-index: 900;
}

#gloval-nav nav {
  z-index: 999;
}

#gloval-nav {
  background-color: rgba(255, 255, 255, 0.95);
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 24px;
  padding-left: 75px;
  padding-right: 18px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
}

.open #gloval-nav {
  transform: translateX(0);
}

#gloval-nav a {
  display: inline-block;
  color: #333;
  text-decoration: none;
  padding: 16px 0;
}
#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  transform: translateX(-200px);
  transition: transform 0.2s ease-out;
  position: relative;
}
#gloval-nav ul li:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #808080;
  position: absolute;
}
#gloval-nav ul li:nth-child(2) {
  transition-delay: 0.1s;
}
#gloval-nav ul li:nth-child(3) {
  transition-delay: 0.2s;
}

.open #gloval-nav li {
  transform: translateX(0);
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a:link, a:visited, a:hover, a:active {
  color: inherit;
  text-decoration: none;
}

a, button {
  cursor: pointer;
}

a.color-l {
  color: #385898;
  font-weight: bold;
  text-decoration: underline;
}

a.color-d {
  font-weight: bold;
  text-decoration: underline;
}

body {
  font-family: "Noto Serif JP", serif;
  background-color: #072E4C;
}

html {
  font-size: 62.5%;
}

/*--- Font ---*/
h2 {
  font-size: 2.4rem;
  line-height: 1.6;
}

h3 {
  font-size: 2.4rem;
}

p {
  font-size: 1.5rem;
  line-height: 1.6;
}

.sub {
  font-size: 1.1rem;
}

/*--- BASE ---*/
.o-outlineContent__blue {
  background-color: #2C4A60;
  padding-left: 75px;
  padding-bottom: 80px;
  color: #fff;
}

.o-outlineContent__white {
  background-color: #fff;
  padding-left: 75px;
  padding-bottom: 80px;
  color: #333;
}

.o-outlineContent__section {
  padding-right: 18px;
}

.top .o-outlineContent__blue {
  padding-top: 40px;
  padding-bottom: 120px;
}
.top p {
  line-height: 1.8;
}
.top h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
.top h3 {
  margin-bottom: 24px;
}

/*--- 画像エリア ---*/
.image-h300 {
  width: 100%;
  height: 300px;
}
.image-h300 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-h220 {
  width: 100%;
  height: 220px;
}
.image-h220 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--- トップロゴ ---*/
.top > .wrapper {
  height: 100vh;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top .go_under {
  margin-top: 80px;
  text-align: center;
}
.top .wrapper_logo {
  height: 200px;
  width: 300px;
  margin-top: 80px;
  text-align: center;
}

.page-link {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.page-link h4 {
  font-size: 1.8rem;
  padding-top: 24px;
  padding-bottom: 16px;
  /*アイコンの表示*/
}
.page-link h4::before {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin: 0 12px 0 4px;
  background-image: url("../img/link_icon.png");
  background-size: contain;
}

/*--- 店舗情報 ---*/
.about .hours {
  padding-top: 56px;
}
.about .hours p {
  font-size: 1.3rem;
  line-height: 1.6;
}
.about .hours .sub {
  font-size: 1.1rem;
}
.about .hours td {
  font-size: 1.5rem;
  line-height: 1.9;
  font-weight: bold;
  padding: 16px;
}

.calendar {
  width: 100%;
  max-width: 700px;
}

.hours table {
  display: inline-block;
}

hr {
  border-width: 1px 0px 0px 0px; /* 太さ */
  border-style: dashed; /* 線種 */
  border-color: #fff; /* 線色 */
  height: 1px;
}

.line-top {
  border-top-width: 1px;
  border-top-style: dashed;
}

.line-bottom {
  border-bottom-width: 1px;
  border-bottom-style: dashed;
}

button {
  margin-top: 16px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #E6E6E6;
  padding: 16px 24px;
  background-color: #2C4A60;
  border-style: none;
  border-radius: 8px;
}

bottun:hover {
  opacity: 0.8;
}

/*------ メニューページ ------*/
.menu {
  color: #333;
  background-color: #fff;
}
.menu h3 {
  margin-top: 8px;
  margin-bottom: 4px;
}
.menu p {
  font-size: 1.4rem;
}
.menu .price {
  font-size: 1.4rem;
}
.menu .tax {
  font-size: 1.1rem;
}
.menu .ex {
  margin-top: 8px;
}
.menu .menu-kind {
  margin-bottom: 40px;
}

.menu-title {
  padding: 48px 0 32px 0;
}
.menu-title h2 {
  font-size: 1.6rem;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.menu-title h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #333;
}

.thumbs {
  width: 100%;
  height: 152px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
.thumbs img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  z-index: 1;
}

.menu section {
  background-color: #fff;
  padding: 24px;
}

@media screen and (max-width: 959px) {
  .top .wrapper :before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url(../img/top.jpg) center no-repeat;
    background-size: cover;
  }
}
@media screen and (min-width: 960px) {
  #nav-toggle {
    top: 40px;
    width: 60px;
    height: 70px;
  }
  #nav-toggle > div {
    position: relative;
    top: 24px;
    left: 15px;
    width: 30px;
  }
  #nav-insta {
    top: 120px;
    width: 60px;
    height: 145px;
  }
  #gloval-nav {
    width: 400px;
  }
  #gloval-nav ul {
    width: 300px;
    padding-right: 24px;
    padding-left: 16px;
  }
  .o-outlineContent__blue, .o-outlineContent__white {
    padding-left: 0px;
    padding-bottom: 80px;
    text-align: center;
  }
  .o-outlineContent__section {
    padding-right: 0px;
    width: 450px;
    margin: 0 auto;
  }
  .container {
    width: 100%;
  }
  .image-h300, .image-h220 {
    width: 480px;
    margin: 0 auto;
  }
  .thumbs {
    width: 450px;
    height: 247px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
  }
  .bottom-link .page-link {
    width: 240px;
  }
  .bottom-link .page-link:nth-of-type(1) {
    margin-top: 80px;
  }
  .top .concept {
    text-align: left;
    padding-left: 100px;
  }
  .top .concept h2 {
    margin-bottom: 56px;
  }
  .top .concept p {
    line-height: 2.2;
  }
  .top .image-h300, .top .image-h220 {
    margin-bottom: 40px;
  }
  .top .wrapper {
    height: 100vh;
    background: url("../img/top.jpg") no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
  }
  .menu-title {
    width: 450px;
    margin: 0 auto;
  }
  .menu-title h2 {
    font-size: 1.8rem;
  }
  .menu .menu-kind {
    text-align: left;
    margin-bottom: 56px;
  }
  .menu .ex br {
    display: none;
  }
  .menu .ex {
    margin-top: 16px;
  }
}
/*
@media screen and (min-width: 1366px) {

}
@media screen and (min-width: 1920px) {

}

*//*# sourceMappingURL=style.css.map */