html {
  box-sizing: border-box;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
  min-height: 0; /* Safari clamp関数対策 */
  -webkit-text-size-adjust: 100%; /* Safari対策 */
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details,
main {
  display: block;
  position: relative;
}

summary {
  display: list-item;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}

pre {
  font-size: 1em;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
  -webkit-backface-visibility: hidden;
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align:bottom;
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

ul,ol,li {
  list-style: none;
  padding-left: 0;
  zoom: normal;
}

html {
  overflow-x: hidden;
  width: 100%;
}

/*ベースとしてフォントはMontserratを読み込ませる*/
body {
  background:#7BC8CF;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  overflow-x: hidden;
  width: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
}

a {
  text-decoration: none;
}

address {
  font-style: normal;
}

/*ーーーーーーーーーー
 wrapper
ーーーーーーーーーーー*/

#wrapper {
  overflow: hidden;
}

/*ーーーーーーーーーー
.header
ーーーーーーーーーーー*/

.header {
  position: fixed;
  right: 0;
  top: 70px;
  z-index:99;
}

.nav-button {
  display: none;
}

ul.nav {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  background: #7BC8CF;
  border: 2px solid #FFF47F;
  border-radius: 30px;
  color: #FFF47F;
  font-size: 14px;
  font-size: clamp(12px, calc(12px + 0.5vw), 18px);  
  font-weight: 600;
  padding: 0 20px 5px 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.nav-insta-icon {
  display: block;
  padding-top: 6px;
}
.nav-insta-text {
   display: none;
}

.nav li.nav-insta a {
  border: none;
  background: none;
  padding: 0;
}
.nav li.nav-insta img {
    width: 90%;
    height: auto;
}
.nav a:hover {
  transform: scale(0.95,0.95);
}
.nav li {
    display: inline-block;
    margin: 0 8px;
}
.nav-wrap.open {
  display: block;
}
.nav-wrap.close {
  display: none;
}

@media screen and (min-width: 768px) {
  main {
    position: relative;
    padding-top: 80px;
  }
  .header {
    top: 40px;
    position: fixed;
    right: 7%;
    width: 90%;
    max-width: 1150px;
	margin: 0 auto;
  }
  .nav-wrap {
    display: block !important;
    width:100%;
    height:80px;
  }
  ul.nav li a img { 
	vertical-align: middle;
	width: auto; 
	height:14px;
  }
}
@media screen and (min-width:768px) and ( max-width:1150px) {
.header {right: 3%;}
ul.nav li { margin: 0 5px;}
ul.nav li a { padding: 0 12px 4px 12px;}
ul.nav li a img { width: auto; height:12px;}
}
@media screen and (max-width: 767px) {
  .header {
    right: 20px;
    top: 15px;
  }
  .nav-button {
    display: block;
    cursor: pointer;
  }
  .nav-wrap {
    position: fixed;
    right: 20px;
    top: 72px;
    display: none;
    z-index: 10;
    background-color: #7BC8CF;
	border: 3px solid #FFF47F;
	border-radius: 20px; 
    padding: 18px 28px 28px 28px;
	min-width: 160px;
  }	 
  ul.nav {
    flex-flow: column;
	align-items: start;
  }  
  .nav-wrap .nav {
      position: relative;
      overflow-x: hidden;
      overflow-y: auto;
    }
   .nav-wrap ul.nav li {
      display: block;
	   margin: 0;
    }
	.nav-wrap ul.nav li + li {
      margin-top: 14px;
    }
	.nav a {
      border: none;
	  text-align:left;
      padding: 0;
    }
	.nav li img,
	.nav li.nav-insta img {
      width: auto;
      height: 14px;
    }
    .nav-wrap ul.nav li.nav-shop {
      margin-top: 24px !important;
    }
    .nav li.nav-shop img {
      width: auto;
      height: 60px;
    }
    .nav-insta-icon {
      display: none;
    }
    .nav-insta-text {
      display: block;
    }
	.nav-wrap ul.nav li a:hover {
        color: #F7C8D6;
    }

  /*メニューボタンのエフェクト*/
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .nav-button {
    z-index: 20;
    position: relative;
    width: 60px;
    height: 43px;
	margin:2%;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #231815;
    border-radius: 4px;
  }
  .nav-button span:nth-of-type(1) {
    top: 0;
  }
  .nav-button span:nth-of-type(2) {
    top: 16px;
  }
  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }
  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(16px) rotate(-45deg);
    transform: translateY(16px) rotate(-45deg);
  }
  .nav-button.active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-16px) rotate(45deg);
    transform: translateY(-16px) rotate(45deg);
  }
}

/*ーーーーーーーーーー
.top
ーーーーーーーーーーー*/

#top {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.top-content {
  padding: 64px 0 100px 0;
  position: relative;
}

@media (max-width: 767px) {
.top-content { padding: 114px 0 100px 0;}
}

/*ーーーーーーーーーー
.slider
ーーーーーーーーーーー*/

#slider1-cont {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}

#slider1-cont h1 {
  position: relative;
  z-index: 3;
}

.top-fv_135 {
  position: absolute;
  top: 10%;
  left: 10%;
  transform: translate(-37%, -49%);
  width: clamp(145px, calc(96px + 11vw), 228px);
}

.top-fv_leftImg {
  display: block;
  width: min(22.54% , 460px);
  position: absolute;
  left: 0;
  top: 68%;
  z-index: 2;
}
@media (min-width: 1600px) {
.top-fv_leftImg { top: 66%;}
}
@media (max-width: 1200px) {
.top-fv_135 { transform: translate(-35%, -49%);}
}
@media (max-width: 968px) {
.top-fv_135 { transform: translate(-46%, -40%);}
}
@media screen and (min-width:768px) and ( max-width:1072px) {
.top-fv_135 { width: clamp(145px, calc(75px + 11vw), 228px);}
}	
@media (max-width: 767px) {
.top-fv_135 { left: 50%; transform: translate(-50%, -56%);}
.top-fv_leftImg { width: min(27.73% , 208px); top: 9%;}
}
@media (max-width: 648px) {
.top-fv_leftImg { top: 11%; }
}
@media (max-width: 559px) {
.top-fv_leftImg { top: 15%; }
}

.slider1 {
  border-radius: 38px;
  width: min(88% , 1150px);
  margin: 0 auto;
  overflow: hidden;
  opacity: 0;
}
.s-right-wrap {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.s-right-text,
.s-right-sub {
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  color: white;
}
.s-right-text,
.s-right2-sub {
  top: 0;
}
.swiper-slide-active .s-right-text {
  opacity: 0;
  animation: slideFromRight 1.5s ease forwards;
  animation-delay: 0.5s;
}
@keyframes slideFromRight {
  0%, 25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.swiper-slide-active .s-right-sub {
  opacity: 0;
  animation: slideFromRightSub 1.5s ease forwards;
  animation-delay: 0.6s;
}
@keyframes slideFromRightSub {
  0%, 45% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ページネーション */
#slider1-cont .swiper-pagination {
  right: 0;
  left: 0;
  bottom: 46px;
  margin: auto;
}
.pagination2-center{
  position: relative;
  width:100%;
  margin: 0 auto;
  text-align:center;
}

#slider2-cont .swiper-pagination2 {
  display:inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -65px;
  margin: auto;
}

/* ページネーションのサイズと色 */

#slider2-cont .swiper-pagination {
  width: initial !important;
  width:100%;
}

#slider1-cont .swiper-pagination-bullet,
#slider2-cont .swiper-pagination-bullet {
  background-color: #FDF27E;
  height: 14px;
  width: 14px;
  opacity: 1;
  margin: 0 10px;
}

#slider1-cont .swiper-pagination-bullet-active,
#slider2-cont .swiper-pagination-bullet-active {
 background-color: #F7C8D6;
}

.swiper-slide img {
  border-radius: 50px;
  height: auto;
  width: 100%;
}

@media (max-width: 767px) {
  .slider1 { width: 96%;}
  .swiper-slide img { border-radius: 30px;}
}

h1.logo{
  opacity: 0;
}
.logo.is-animated {
  animation-name: fadeup_logo;
  animation-delay: 600ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeup_logo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*ーーーーーーーーーー
 about
ーーーーーーーーーーー*/

#about, #menu, #access {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-top: -20px;
  padding-top: 20px;
}

.aboutBox {
  background: url( "../img/kitchen/wave_01.png" ) left top / auto 17px repeat-x #FFF47F;
  padding: 102px 0 84px 0;
  position: relative;
  text-align:center;
  width: 100%;
}
.aboutBox-obje {
  display: block;
  width: 21.79%;
  position: absolute;
  right: 0;
  top: 10%;
  z-index: 2;
}

.aboutBox h2 {
  width: 60%;
  max-width: 640px;
  margin: 0 auto 1.5em auto;
  opacity: 0;
  position: relative;
  text-align:center;
  z-index: 2;
}

.aboutBox .about-text_wrap {
  margin: 0 auto;
  text-align: center;
}

.aboutBox p.about_txt {
  font-size: clamp(16px, calc(13.5px + 0.625vw), 21px);
  line-height: 2;
  margin-bottom: 3em;
  text-align:center;
  opacity: 0;
}

.slider3 .swiper-wrapper {
  transition-timing-function: linear;
}
.slider3 .swiper-slide {
  border-radius: 38px;
  height: 380px !important;
  width: auto !important;
}
.slider3 .swiper-slide img {
  width: auto;
  height: 100%;
}

@media (min-width: 1600px) {
.aboutBox-obje { top: 10%;}
}
@media only screen and (max-width: 1020px) and (min-width: 768px){
  .aboutBox-obje { top: 17%;}
}
@media screen and (max-width: 767px) {
  .aboutBox-obje { width: 41%; top: -29%; z-index: 99;}
  .aboutBox h2 {  width: 78%;}
}
@media screen and (max-width: 599px) {
  .aboutBox { background: url( "../img/kitchen/wave_01_sp.png" ) left top / auto 14px repeat-x #FFF47F; padding: 65px 0 52px 0;}
  .aboutBox h2 { width: 75%; max-width: 250px; text-align: center; margin: 0 auto 28px auto;}
  .aboutBox .about-text_wrap { width: 85%;}
  .aboutBox p.about_txt { margin-bottom: 30px;}
  .slider3 .swiper-slide { border-radius: 20px; height: 220px !important;}
}

/*ーーーーーーーーーー
  menu
ーーーーーーーーーーー*/

.menuBox{
  background: url( "../img/kitchen/wave_02.png" ) left top / auto 17px repeat-x #7BC8CF;
  width: 100%;
  padding: 80px 0 224px 0;
}

#menu h2, #access h2{
  text-align:center;
  margin: 0 auto 56px auto;
  opacity: 0;
}
#menu h2 {
  width: 60%;
  max-width: 160px;
}
#slider2-cont {
  position: relative;
}
.slider2 {
  overflow: hidden;
  opacity: 0;
}

.slidein.is-animated {
  animation: slideIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes slideIn {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 599px) {
  .menuBox{ background: url( "../img/kitchen/wave_02_sp.png" ) left top / auto 14px repeat-x #7BC8CF; padding: 80px 0 218px 0;}
  #menu h2 { max-width: 100px; margin: 0 auto 26px auto;}
  #slider2-cont .swiper-pagination-bullet { height: 10px; width: 10px; margin: 0 6px;}
}

/*ーーーーーーーーーー
  access
ーーーーーーーーーーー*/

#access {
  position: relative;
  background: url( "../img/kitchen/wave_01.png" ) left top / auto 17px repeat-x #FFF47F;
  width: 100%;
  z-index: 1;
  margin-top: -95px;
  padding-top: 95px;
  padding-bottom: 90px;
}
#access h2 {
  width: auto;
  height: 40px;
  max-width: 224px;
}
.accessCont {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.accessBox {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  width: 100%;
  margin: 0 auto;
}
.access-map {
  flex: 1;
}
.googlemap {
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 75%;
  text-align: center;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access-text {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 25em;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: left;
  padding-left: 2em;
  order: 2;
}
.access-text h3.name {
  position: relative;
  font-size: 2rem;
  font-weight:500;
  margin-bottom: 1em;
}
.access-text-inner p.tell {
  margin-bottom: 1.3em;
}

.access-text-inner p.time {
  display: inline;
  text-decoration: none;
  border-bottom: 2px solid #000;
  padding-bottom: 0;
}

dl.timeTable {
  display: flex;
  flex-wrap: wrap;
  margin-top:0.6em;
}
dl.timeTable dt {
  width: 4em;
  display: flex;
}
dl.timeTable dt.no-data {
  width: 0;
}
dl.timeTable dd {
  width: calc(100% - 4em);
}
dl.timeTable dd.no-data2 {
  width: 100%;
}
dl.timeTable dt.paking,
dl.timeTable dd.paking {
  padding-top: 1.2em;
}

.accessLine {
  height:0px;
  border-radius: 30px;
  border: 2px solid #7BC8CF;
  margin: 2em auto;
  width: 100%;
}

@media (max-width: 768px) {
  .accessCont { width: 80%;}
  .accessBox { flex-flow: column; width: 100%; max-width:450px;}
  .access-map { order: 2;}
  .access-text { width: 100%; margin-bottom:1.5em; padding-left: 0; order: 1;}
}
@media (max-width: 599px) {
  #access { background: url( "../img/kitchen/wave_01_sp.png" ) left top / auto 14px repeat-x #FFF47F; padding: 38px 0 48px 0;}
  #access h2 { max-width: 124px; margin-bottom: 29px;}
}

/*ーーーーーーーーーー
  instgram
ーーーーーーーーーーー*/

.instgramCont {
  background: url( "../img/kitchen/wave_02.png" ) left top / auto 17px repeat-x #7BC8CF;  margin: 0 auto;
  padding: 75px 0;
  text-align: center;
}

.instgramCont figure {
  width:45%;
  max-width: 212px;
  margin: 0 auto;
}
.instgramCont figure img {
  display: inline-block;
}

button.btn {
  width: 60%;
  max-width: 346px;
  position: relative;
  display: inline-block;
  margin: 56px auto 50px auto;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  background-color: #FFF47F;
  border: none;
  border-radius: 100vh;
  box-shadow: none;
  outline: none;
}
button.btn:hover {
  background: #F7C8D6;
  transform: scale(0.95,0.95);
}

.instgramCont p a {
  display: inline-block;
  color: #FFF47F;
  font-size: 19px;
  font-size: clamp(18px, calc(16.5px + 0.375vw), 21px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
  text-decoration: underline;
}
.instgramCont p a:hover {
  animation: zoom .3s;
  text-decoration: none;
}
@keyframes zoom {
	50% {
		transform: scale(1.05);
	}
}

@media (max-width: 599px) {
  .instgramCont { background: url( "../img/kitchen/wave_02_sp.png" ) left top / auto 14px repeat-x #7BC8CF; padding: 38px 0 48px 0;}
}

.footer {
  background: url( "../img/kitchen/wave_01.png" ) left top / auto 17px repeat-x #FFF47F;
  margin: 0 auto;
  padding: 75px 0;
  text-align: center;
}
.footer-cont {
  margin:0 auto;
  width: min(100% - 32px, 1080px);
}
.footer-cont button {
  width: 70%;
  max-width: 300px;
  margin: 0 auto 20px auto;
}
.footer-cont button img {
  width: 100%;
  height: auto;
}
.footer-cont button img:hover {
  opacity: 0.8;
  cursor: pointer;
}
.copy {
  margin:0 auto;
  width: min(100% - 32px, 1080px);
}
.copy small {
  font-size: 12px;
  font-size: clamp(11px, calc(9.5px + 0.375vw), 14px);
  text-align:left;
}

@media (max-width: 767px) {
button.btn { margin: 40px auto 30px auto; padding: 1rem 3rem;}
.footer-cont figure { width: 200px;}
.copy small { font-size: 1.1rem;}
}
@media screen and (max-width: 599px) {
.footer { background: url( "../img/kitchen/wave_01_sp.png" ) left top / auto 14px repeat-x #FFF47F; padding: 38px 0;}
}

.hover-opacity:hover {
  opacity: 0.8;
}
.hover-cursor:hover {
  opacity: 0.8;
  cursor: pointer;
}
.top-fv {
  text-align: center;
  background-color: #7BC8CF;
  padding: 60px 0 80px 0;
}
@media (min-width: 768px) {
  .top-fv {
    /* padding: 120px 0 215px 0; */
  }
}

.top-fv_container {
  position: relative;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.top-fv_logo {
  aspect-ratio: 368/81;
  max-width: 100px;
  width: 100%;
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: block;
}
@media (min-width: 768px) {
  .top-fv_logo {
    max-width: 200px;
    top: 37%;
  }
}
@media screen and (max-width: 333px) {
  .top-fv_logo {
    top: 32%;
  }
}

/*ーーーーーーーーーー
  keyframes
ーーーーーーーーーーー*/

.fadein.is-animated {
  opacity: 0;
  animation: fadein 3s ease forwards;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.shake-up.is-animated {
  animation: shake-up 3s infinite ease-in-out;
}
@keyframes shake-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
}

.slidein.is-animated {
  animation: slidein 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes slidein {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*以下遅延の指定*/
.slider1 { animation-delay: 1s;}
.logo { animation-delay: 8s;}
.obje_01 { animation-delay: 5s;}
.s-right2-text { animation-delay: 20s;}
.s-right2-sub { animation-delay: 50s;}
.top-fv_leftImg { animation-delay: 10s;}

.pc {display:block;}
.tb {display:none;}
.pctb {display:block;}
.tbmb {display:none;}
.mb {display:none;}

/* 260601追加 */
@media screen and (min-width: 649px) {
  .slider2 .swiper-slide {
    width: 500px !important;
  }
}
@media screen and (max-width: 648px) {
  .swiper {
    margin: 0 auto;
    width: 90%;
  }
  .slider2 .swiper-slide {
    width: 100% !important;
  }
}

@media screen and (min-width:600px) and (max-width: 767px) {
.pc {display:none;}
.tb {display:block;}
.pctb {display:block;}
.tbmb {display:block;}
.mb {display:none;}
}

@media screen and (max-width: 599px) {
.pc {display:none;}
.tb {display:none;}
.pctb {display:none;}
.tbmb {display:block;}
.mb {display:block;}
}