@charset "utf-8";
/* CSS Document */

/* -----------------------------------
  リセット
----------------------------------- */

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, caption, canvas, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, form, footer, header, hgroup, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, tt, table, tbody, textarea, tfoot, thead, time, tr, th, td, u, ul, var, video {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 16px;
  font-weight: normal;
  line-height: 1em;
}

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

ol, ul {
  list-style: none;
}

a {
  outline: none;
  color: #39f;

  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:link, a:visited {
  color: #39f;
  text-decoration: none;
}
a:hover {
  outline: none;
  color: #039;
}
a:active {
  outline: none;
}

a:hover {
  opacity: 0.85;

  filter: alpha(opacity=85);
  -moz-opacity: 0.85;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

table {
  border-spacing: 0;
}

img {
    max-width: 100%;
    width /***/: auto;
    height: auto;
    vertical-align: bottom;
}

/* For modern browsers */
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}

/* -----------------------------------
  全体設定
----------------------------------- */

html {
  overflow: auto;
}

body {
  overflow: hidden;
  position: relative;
  min-width: 1080px;
  color: #333;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", san-serif;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.1em;

  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
}

.wrap {
  position: relative;
}

.inner {
  position: relative;
  width: 960px;
  margin: 0 auto;
  padding: 4em 0;
}

pre code {
  white-space: pre;
  word-wrap: normal;
}

br.pc {
  display: block;
}

br.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
    background-size: 640px 1280px;
    font-size: 16px;
    line-height: 1.7em;
  }

  .inner {
    width: 90%;
    padding: 2em 0;
  }

  br.pc {
    display: none;
  }

  br.sp {
    display: block;
  }
}


/* -----------------------------------
  テンプレート
----------------------------------- */

header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
}

header .inner {
  width: 100%;
  padding: 0;
}

header .inner h1 {
  display: inline-block;
  padding: 20px;
}

header .inner h1 img {
  height: 60px;
}

.globalMenu {
  display: block;
  position: absolute;
  z-index: 9999;
  top: 30px;
  right: 30px;
  /*  width: 640px;*/
}

.gml {
  display: none;
}

nav.globalMenuSp {
  width: 100%;
}

nav.globalMenuSp ul {
  display: flex;
  height: 40px;
  text-align: center;

  justify-content: space-between;
  align-items: center;
}

nav.globalMenuSp a {
  display: block;
  padding: 0 10px;
  color: #444;
  font-size: 16px;
  font-weight: bold;
  line-height: 1em;
}

.globalMenuBg {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  transform: translateX(100%);
}

.globalMenuBg.active {
  transform: translateX(0);
}

@media screen and (max-width: 1080px) {
  .globalMenu {
    top: 20px;
    right: 20px;
    width: 60px;
  }

  .gml {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    color: #fff;
    font-family: "Roboto Condensed", san-serif;
    font-size: 7px;
    font-weight: normal;
    text-align: center;
    line-height: 1em;
    letter-spacing: 0.1em;
  }

  .hamburger {
    padding: 10px 10px;
    cursor: pointer;
  }

  .gml .icon {
    position: relative;
    height: 40px;
  }

  .hamburger .icon span {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    width: 40px;
    height: 1px ;
    margin: 0 auto;
    background: #000;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .hamburger .icon span:nth-child(1) {
    top: 4px;
  }

  .hamburger .icon span:nth-child(2) {
    top: 19px;
  }

  .hamburger .icon span:nth-child(3) {
    top: 34px;
  }

  .hamburger.active .icon span:nth-child(1) {
    top: 19px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .hamburger.active .icon span:nth-child(2), .hamburger.active .icon span:nth-child(3) {
    top: 19px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  nav.globalMenuSp {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    padding-top: 100px;
    background: rgba(0, 98, 62, 0.9);
    color: #fff;
    text-align: center;
    transition: all 0.6s;
    transform: translateX(100%);
  }

  nav.globalMenuSp.active {
    transform: translateX(0);
  }

  nav.globalMenuSp .lift {
    overflow: auto;
    height: 100%;
  }

  nav.globalMenuSp ul {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 1em;
  }

  nav.globalMenuSp li {
    margin-bottom: 5px;
    padding: 0;
    border-bottom: 1px dotted #fff;
  }

  nav.globalMenuSp li:first-of-type {
    border-top: 1px dotted #fff;
  }

  nav.globalMenuSp li a {
    display: block;
    position: relative;
    padding: 24px 12px;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    line-height: 1em;
    letter-spacing: 0;
  }

  nav.globalMenuSp li a:after {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 6px;
    height: 6px;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    content: "";
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  nav.globalMenuSp li a.blank_l:after {
    right: 6px;
    width: 12px;
    height: 12px;
    border: 0;
    background: url("../img/blank.svg") right no-repeat;
    background-size: 12px 12px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@media screen and (max-width: 767px) {
  header .inner h1 {
    display: inline-block;
    padding: 12px;
  }

  header .inner h1 img {
    height: 24px;
  }

  .globalMenu {
    top: 4px;
    right: 4px;
    width: 40px;
  }

  .gml {
    width: 40px;
    height: 40px;
  }

  .hamburger {
    padding: 6px 6px;
  }

  .gml .icon {
    height: 24px;
    margin-bottom: 4.5px;
  }

  .hamburger .icon span {
    width: 20px;
  }

  .hamburger .icon span:nth-child(1) {
    top: 5px;
  }

  .hamburger .icon span:nth-child(2) {
    top: 12px;
  }

  .hamburger .icon span:nth-child(3) {
    top: 19px;
  }

  .hamburger.active .icon span:nth-child(1) {
    top: 12px;
  }

  .hamburger.active .icon span:nth-child(2), .hamburger.active .icon span:nth-child(3) {
    top: 12px;
  }

  nav.globalMenuSp {
    width: 85%;
    padding-top: 48px;
  }

  nav.globalMenuSp li a {
    padding: 18px 12px;
  }
}

/* ---------------------------- */

footer {
  position: relative;
  margin: 22em 0 2em;
  text-align: center;
  letter-spacing: 0.1em;
}

footer:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: -22em;
  width: 100%;
  height: 20em;
  background: url("../img/footer_bg.jpg") center no-repeat;
  background-size: cover;
  content: "";
}

footer .social {
  margin: 0 0 1em;
}

footer .social li {
  display: inline-block;
}

footer .social li a {
  display: block;
  z-index: 1;
  padding: 12px;
  border-radius: 50%;
  background: #ccc;
  line-height: 0;
}

footer .social li a img {
  width: 24px;
}

footer .copy {
  font-size: 14px;
  text-align: center;
  line-height: 2em;
}

#page-top {
  position: fixed;
  right: 13px;
  bottom: 13px;
	z-index: 30;
}

#page-top a {
  display: block;
  position: relative;
  width: 64px;
  height: 64px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  line-height: 1;
}

#page-top a::before {
  display: inline-block;
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  border: solid #fff;
  border-width: 1px 1px 0 0;
  content: "";
  -webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
  transform: rotate(-45deg) translate3d(0, 0, 0);
}

@media screen and (max-width: 767px) {
  footer {
    margin: 6em 0 1em;
  }

  footer:before {
    top: -6em;
    height: 5em;
  }

  footer .social {
    margin: 0 0 0.5em;
  }

  footer .copy {
    font-size: 12px;
    line-height: 2em;
  }

  #page-top a {
    width: 48px;
    height: 48px;
  }

  #page-top a::before {
    width: 12px;
    height: 12px;
  }
}

/* ---------------------------- */

.visual {
  overflow: hidden;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 540px;
  margin: 100px auto 0;
  padding: 0;
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
}

.slick-slide {
  font-size: 0;
  line-height: 0;
}

.slick-slide img {
  display: inline;
}

.mv-slider-li {
  text-align: center;
}

.mv-slider-li li {
  height: auto;
  margin: 0 auto;
}

.mv-slider-li li a {
  display: block;
  overflow: hidden;
  position: relative;
  height: 540px;
  outline: none;
}

.mv-slider-li .slick-dots {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  margin: auto;
  font-size: 0;
  text-align: center;
}

.mv-slider-li .slick-dots li {
  display: inline-block;
}

.mv-slider-li .slick-dots li + li {
  margin-left: 14px;
}

.mv-slider-li .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  font-size: 0;
  cursor: pointer;
}

.mv-slider-li .slick-dots .slick-active button {
  background: rgba(0, 98, 62, 0.8);
}

.mv-slider-li .slick-arrow {
  display: none !important;
}

.mv-slider-li .bg {
  width: 100%;
  height: 100%;
  font-family: "object-fit: cover;"; /*IE対策*/

  object-fit: cover;
}

.titleColumn {
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 100px;
  width: 100%;
  text-align: center;
  height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.titleColumn:after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../img/bg_vegetan.jpg");
  background-position: center;
  background-size: cover;
  opacity: 1;
  content: "";
}

#centrair .titleColumn:after {
  background-image: url("../img/bg_centrair.jpg");
}

.titleColumn:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  content: "";
}

.titleColumn .page-ttl {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.25), -1px -1px 3px rgba(0,0,0,0.25), 1px -1px 3px rgba(0,0,0,0.25), -1px 1px 3px rgba(0,0,0,0.25);
  color: #fff;
  font-size: 56px;
  font-weight: bold;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

.titleColumn .page-ttl span {
  display: block;
  color: #00693e;
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  line-height: 1.3em;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  .visual {
    height: auto;
    margin: 48px auto 0;
  }

  .mv-slider-li li a {
    height: auto;
  }

  .titleColumn {
    margin-top: 48px;
    height: 240px;
  }

  .titleColumn .page-ttl {
    font-size: 28px;
    line-height: 1.5em;
  }

  .titleColumn .page-ttl span {
    font-size: 12px;
    line-height: 1.3em;
  }
}

/* ---------------------------- */

.contentColumn article {
  position: relative;
  margin-top: -100px;
  padding-top: 100px;
}

.contentColumn .inner {
  position: relative;
  z-index: 2;
  padding: 5em 0;
  text-align: center;
}

.contentColumn article:before {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
}

.contentColumn #vegetable:before {
  background: url("../img/vegetable_bg.jpg") top no-repeat;
  background-size: cover;
  opacity: 0.25;
}

.contentColumn #access:before {
  background: url("../img/access_bg.jpg") top no-repeat;
  background-size: cover;
  opacity: 0.25;
}

#noritake .contentColumn #access:before {
    background-repeat: no-repeat;
    background-position: top;
    background-image: url(../img/access_noritake_bg.jpg);
    background-size: cover;
    opacity: 0.25;
}

.contentColumn h2 {
  position: relative;
  margin: 1.3em 0;
  font-size: 56px;
  font-weight: bold;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

.contentColumn h2:before {
  position: absolute;
  top: -72px;
  right: 0;
  left: 0;
  width: 96px;
  height: 72px;
  margin: 0 auto;
  background: url("../img/vege_icon.svg") no-repeat;
  content: "";
}

.contentColumn h2 span {
  display: block;
  color: #00693e;
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  line-height: 1.3em;
  letter-spacing: 0.2em;
}

.contentColumn .pic {
  margin: 2em 0;
}

.contentColumn .desc {
  margin: 2em 0;
  text-align: left;
}

.contentColumn .coming {
  font-size: 18px;
  font-weight: bold;
  margin: 3em 0;
  text-align: center;
}

.contentColumn #vegetable ul {
  display: flex;

  justify-content: space-between;
}

.contentColumn #vegetable li {
  width: 280px;
}

.contentColumn #vegetable li img {
  border-radius: 50%;
}

.contentColumn #vegetable dt {
  margin: 0.5em 0 0.2em;
  color: #00693e;
  font-size: 28px;
  font-weight: bold;
  vertical-align: middle;
  line-height: 1.7em;
}

.contentColumn #vegetable dd {
  text-align: left;
}

.contentColumn #vegetable dd a {
  display: block;
  margin-top: 1em;
  padding: 0.3em;
  border-radius: 0.3em;
  background-color: #00693e;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.contentColumn #menu .inner {
  width: 100%;
}

.contentColumn #menu .desc {
  text-align: center;
}

.contentColumn #menu .desc a {
  display: block;
  width: 560px;
  margin: 0.5em auto;
  padding: 0.75em;
  border-radius: 0.3em;
  background-color: #00693e;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

.contentColumn #shop ul {
  display: flex;

  justify-content: space-between;
}

.contentColumn #shop li {
  width: 420px;
}

.contentColumn #shop dt {
  display: table;
  width: 100%;
  margin: 1em 0 0.4em;
}

.contentColumn #shop dt h3 {
  display: table-cell;
  color: #00693e;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5em;
}

.contentColumn #shop dd a {
  display: block;
  margin-top: 1em;
  padding: 0.3em;
  border-radius: 0.3em;
  background-color: #00693e;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.contentColumn .map {
  border: 1px solid #ccc;
}

.contentColumn .map iframe {
  width: 100%;
  height: 30em;
  vertical-align: bottom;
}

.contentColumn #access .desc span {
  display: block;
  margin-top: 0.2em;
  font-size: 1.5em;
  font-weight: bold;
}

.tel {
	display: none;
}

.pc-off{
	display: none;
}

@media screen and (max-width: 767px) {

  .contentColumn article {
    position: relative;
    margin-top: -48px;
    padding-top: 48px;
  }

  .contentColumn .inner {
    position: relative;
    padding: 2em 0;
    text-align: center;
  }

  .contentColumn h2 {
    margin: 1.3em 0;
    font-size: 28px;
    line-height: 1.5em;
  }

  .contentColumn h2:before {
    top: -36px;
    width: 48px;
    height: 36px;
    background-size: 48px 36px;
  }

  .contentColumn h2 span {
    font-size: 12px;
    line-height: 1.3em;
  }

  .contentColumn .pic {
    margin: 2em 0;
  }

  .contentColumn .desc {
    margin: 2em 0;
  }

  .contentColumn #vegetable ul {
    display: block;
  }

  .contentColumn #vegetable li {
    width: 100%;
    margin-bottom: 3em;
  }

  .contentColumn #vegetable li:last-of-type {
    margin-bottom: 0;
  }

  .contentColumn #vegetable li img {
    width: 200px;
    border-radius: 50%;
  }

  .contentColumn #menu .menu-slider-li img {
    width: 160px;
  }

  .contentColumn #menu .desc a {
    width: 90%;
    margin: 0.5em auto;
    padding: 0.75em;
    border-radius: 0.3em;
    font-size: 21px;
  }

  .contentColumn #shop ul {
    display: block;
  }

  .contentColumn #shop li {
    width: 100%;
    margin-bottom: 3em;
  }

  .contentColumn #shop li:last-of-type {
    margin-bottom: 0;
  }

  .contentColumn .map {
    border: 1px solid #ccc;
  }

  .contentColumn .map iframe {
    width: 100%;
    height: 15em;
    vertical-align: bottom;
  }
.tel {
	display: block;
}
	.pc-off{
		display: block;
	}
	.smp-off{
		display: none;
	}
}

.takeout {
	background-color: #1CA41A;
	color: white;
	padding: 10px;
	width: 340px;
	font-size: 1.5em;
	border-radius: 20px;
	margin: 0 auto;
}
.takeout a{
	color: white;
	padding: 10px 3px;
}

.contentColumn .menu-pic {
text-align: center;
}

.apolo-img {
	margin: 50px auto 0;
	max-width: 700px;
}
.apolo-img img{
	width: 100%;
	padding: 0 20px;
}
