@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*----------------------------------------------------
	PC
----------------------------------------------------*/
html {
  font-feature-settings: "palt" 1;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
@media screen and (min-width: 768px) {

body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  line-height: 2;

}
.sp {
  display: none;
}

/* ********** header ********** */

header {
  width: 100%;
  z-index: 100;
  position: relative;
}

header .inner {
  width: 100%;
  height: 100px;
  background: rgba(239,239,239,.8);
  position: relative;
}

header .logo {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translate(0, -50%);
}
header .logo img {
  width: 300px;
}
header #menu {
  display: none;
}
header nav {
  background: rgba(255,255,255,.8);
}
header nav ul.pnav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav ul.pnav li {
  padding: 12px 0;
  color: #ccc;
  font-size: 13px;
  display: flex;
}
header nav ul.pnav li:after {
  content: "|";
  padding: 0 20px;
}
header nav ul.pnav li:last-child:after {
  content: "";
  padding: 0;
}
header nav ul.pnav li a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  display: block;
}
header nav ul.pnav li a span {
  display: none;
}
header nav ul.pnav li a:hover {
  text-decoration: underline;
}
header nav ul.social {
  display: flex;
  position: absolute;
  top: 50px;
  right: 30px;
  transform: translate(0, -50%);
}
header nav ul.social li {
  margin: 0 0 0 15px;
}
header nav ul.social li img {
  width:  30px;
}

/* ********** footer ********** */

footer {
  width: 100%;
  padding: 0 30px;
  background: #efefef;
}
footer .inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}
footer .inner .logo {
  margin: 0 0 35px 0;
}
footer .inner .logo img {
  width: 300px;
}
footer nav ul {
  margin: 0 0 20px 0;
  display: flex;
  justify-content: center;
}
footer nav ul li {
  margin: 0 10px;
  font-size: 13px;
}
footer nav ul li a {
  color: #000;
  text-decoration: none;
  background: url(../images/ico_footer.png) no-repeat left 2px;
}
footer nav ul li a:hover {
  text-decoration: underline;
}
footer p.copy {
  margin: 30px 0 0 0;
  font-size: 12px;
  text-align: center;
}
footer .pagetop {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #000;
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  transition: .3s;
}
footer .pagetop.scrolled {
  opacity: 1;
}
footer .pagetop:hover {
  opacity: .8;
}
footer .pagetop:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 21px;
  left: 18px;
  transition: .2s;
}
footer .pagetop:hover:after {
  top: 18px;
}

/* ********** section ********** */

section.sub {
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 30px 100px 30px;
}
section a {
  color: #000;
  text-decoration: none;
}
section a:hover {
  text-decoration: none;
}
section img {
  max-width: 100%;
  height: auto;
  transition: .3s;
}
section a:hover img {
  opacity: .8;
}
.anim {
  opacity: 0;
  transform: translate(0,80px);
}
.anim:nth-of-type(4n+1) {
  transition: .5s 0s;
}
.anim:nth-of-type(4n+2) {
  transition: .5s .2s;
}
.anim:nth-of-type(4n+3) {
  transition: .5s .4s;
}
.anim:nth-of-type(4n+4) {
  transition: .5s .6s;
}
.anim.on {
  opacity: 1;
  transform: translate(0,0);
}

.pc_singleColumn .anim:nth-of-type(4n+2) {
  transition: .5s 0s;
}
.pc_singleColumn .anim:nth-of-type(4n+3) {
  transition: .5s 0s;
}
.pc_singleColumn .anim:nth-of-type(4n+4) {
  transition: .5s 0s;
}

}
.col2 {
  padding-top: 10px;
}
/*----------------------------------------------------
	SP
----------------------------------------------------*/

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

body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  line-height: 2;
}
.pc {
  display: none;
}

/* ********** header ********** */
header .inner {
  width: 100%;
  height: 60px;
  background: rgba(239,239,239,.8);
  position: relative;
}
header .logo {
  width: 220px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
}
header .logo img {
  height: 100%;
}
header #menu {
  width: 60px;
  height: 60px;
  margin: 0 0 0 auto;
  position: relative;
  cursor: pointer;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
header #menu:hover {
  opacity: .8;
}
header #menu span {
  position: absolute;
  left: 15px;
  width: 30px;
  height: 2px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #000;
}
header #menu span:nth-child(1) {
  top: 19px;
}
header #menu span:nth-of-type(2) {
  top: 29px;
}
header #menu span:nth-of-type(3) {
  top: 39px;
}
header #menu.active span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  -moz-transform: translateY(10px) rotate(-45deg);
  -ms-transform: translateY(10px) rotate(-45deg);
  -o-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
header #menu.active span:nth-of-type(2) {
  opacity: 0;
}
header #menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  -moz-transform: translateY(-10px) rotate(45deg);
  -ms-transform: translateY(-10px) rotate(45deg);
  -o-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
header nav {
  background: #fff;
  height: calc(100vh - 50px);
  overflow-x: scroll;
  display: none;
  -webkit-overflow-scrolling: touch;
}
header nav ul.pnav {
  width: 100%;
  padding: 20px;
}
header nav ul.pnav li {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
}

header nav ul.pnav li a {
  padding: 10px 5px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav ul.pnav li a span {
  font-size: 11px;
}
header nav ul.pnav li a:hover {
  text-decoration: none;
}
header nav ul.social {
  display: flex;
  justify-content: center;
}
header nav ul.social li {
  margin: 0 5px;
}
header nav ul.social li img {
  width:  34px;
}

/* ********** footer ********** */

footer {
  width: 100%;
  background: #efefef;
}
footer .inner {
  margin: 0 auto;
  padding: 0 0 60px;
  text-align: center;
  border-top: 1px solid #ccc;
}
footer .inner .logo a {
  padding: 30px 0 20px;
  display: block;
}
footer .inner .logo img {
  width: 240px;
}
footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer nav ul:first-of-type {
  border-top: 1px solid #ccc;
}
footer nav ul li {
  width: 50%;
  border-bottom: 1px solid #ccc;
  font-size: 13px;
}
footer nav ul li.line {
  border-right: 1px solid #ccc;
}
footer nav ul li a {
  width: 100%;
  padding: 10px;
  color: #000;
  text-decoration: none;
  background: url(../images/ico_footer.png) no-repeat left 2px;
  display: block;
}
footer p.copy {
  margin: 20px 0 0 0;
  font-size: 10px;
  text-align: center;
}
footer .pagetop {
  width: 40px;
  height: 40px;
  border-radius: 24px;
  background: #000;
  position: fixed;
  right: 10px;
  bottom: 10px;
  opacity: 0;
  transition: .3s;
}
footer .pagetop.scrolled {
  opacity: 1;
}
footer .pagetop:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 17px;
  left: 15px;
  transition: .3s;
}

/* ********** section ********** */

section.sub {
  padding: 60px 20px;
}
section a {
  color: #000;
  text-decoration: none;
}
section img {
  max-width: 100%;
  height: auto;
  transition: .3s;
}
section a:hover img {
  opacity: .8;
}
.anim {
  opacity: 0;
  transform: translate(0,50px);
}
.anim:nth-of-type(2n+1) {
  transition: .5s 0s;
}
.anim:nth-of-type(2n+2) {
  transition: .5s .2s;
}
.anim.on {
  opacity: 1;
  transform: translate(0,0);
}

.sp_singleColumn .anim:nth-of-type(2n+2) {
  transition: .5s .0s;
}

}
@media screen and (max-width: 600px) {
	#wpadminbar {
    position: fixed!important;
	}
}

/* 追加---------------------------------------------------------*/
.ttl {
  color: #9DC92D;
  font-size: 23px !important;
  margin-top: 60px !important;
  margin-bottom: 40px !important;
  text-align: center;
  letter-spacing: 0.3rem;
  line-height: 1.64;
}
.inner-box {
  margin-bottom: 40px;
}
.inner-box h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.2rem;
}
.line-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #000000;
}
.chef-box {
  padding-bottom: 0px;
}
.chef-box figcaption {
  text-align: center;
}
.profile-box {
  position: relative;
  z-index: 10;
  text-align: left;
  width: 90%;
  margin: -15px auto 0;
  background-color: #F6FAE7;
  padding: 30px;
}
.inner-quality {}
.inner-quality .ttl {
  font-size: 23px !important;
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}
.inner-quality p {
  margin-bottom: 30px;
}
.inner-quality h4 {
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 9px;
  letter-spacing: 0.2rem;
}
.homeBanner {
  width: 100%;
  max-width: 1200px;
  padding: 50px 30px;
  margin: 0 auto;
}
.homeBanner ul {
  display: flex;
  justify-content: space-between;
}
.homeBanner ul li {
  width: 48%;
}
.homeBanner ul li a{}
@media screen and (min-width: 768px) {
  .inner-quality figure {
  width: 300px;
  margin: 0 auto;
  text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .inner-quality figure {
    width: 300px;
    margin: 0 auto;
  }
  .homeBanner {
  padding: 30px 0 0px;
  margin: 0 auto;
  }
  .homeBanner ul {
    display: block;
  }
  .homeBanner ul li {
    width: 100%;
    margin-bottom: 10px;
  }
}