@charset "UTF-8";

/*---------------------------------
基本設定
----------------------------------*/
html {
  min-width: 320px;
  font-size: 62.5%;
}

body {
  margin: 0;
  line-height: 1;
  color: #000;
  background: #cdbca8;
  font-size: 1.6rem;
  font-family: "Noto Sans JP",sans-serif;
}

ul,
li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*clearfix*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  zoom: 1;
}

main {
  width: 100%;
}

/*---------------------------------
全体の枠
----------------------------------*/
#wrapper {
  max-width: 100%;
  margin: 0 10px;
  padding-bottom: 60px;
}

/* base
--------------------------------------------------------- */
.l-container {
  padding: 30px 0;
  overflow: hidden;
}

.l-inner {
  margin: 0 20px;
}

/* base-Large
--------------------------------------------------------- */
/*---------------------------------
ヘッダー
----------------------------------*/

header #logo {
  color: #874;
}

header {
  position: relative;
}
.humburger {
  width: 5%;
  position: fixed;
  left: 1%;
  z-index: 10;
}

.activeBnr {
  top: 1%;
  visibility: visible;
}
.sticker {
  width: 70%;
  position: fixed;
  left: 1%;
  z-index: 10;
  top: 0%;
}

.fadeBox {
  height: 100px;
}
.itemBox {
  width: 7%;
  transition: all 0.5s;
}

/* 下からふわっと現れる */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime; /*アニメーションの名前*/
  -webkit-animation-duration: 3s;
  animation-duration: 3s; /*アニメーションの実行時間*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; /*アニメーション後、要素が表示されたままにする*/
}

/*メイン画面アニメーション*/

@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0; /*非表示*/
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px); /*縦方向に100pxずらす*/
  }
  100% {
    opacity: 1; /*表示*/
    -webkit-transform: translateY(0);
    transform: translateY(0); /*元の位置*/
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0; /*非表示*/
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px); /*縦方向に100pxずらす*/
  }
  100% {
    opacity: 1; /*表示*/
    -webkit-transform: translateY(0);
    transform: translateY(0); /*元の位置*/
  }
}
.fadeUpTrigger {
  opacity: 0;
  list-style: none; /*非表示*/
}
.fadeBox {
  height: 100px;
}
.itemBox {
  width: 7%;
  transition: all 0.5s;
}

/* base */
li {
  list-style: none;
}
.fadeBox {
  height: 100px;
}
.itemBox {
}

.activeBtn {
  bottom: 30px;
  visibility: visible;
}

.pagetop {
  bottom: 100px;
}
.pagetop {
  position: fixed;
  right: 3%;
  bottom: 3%;
  z-index: 100;
}
.pagetop a {
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.logo {
  width: 15%;
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 5000;
  background-size: 140px;
}

.logo_02 {
  width: 5%;
  position: absolute;
  top: 3%;
  left: 3%;
  z-index: 5000;
  background-size: 140px;
  position: fixed;
}
.main-title {
  position: relative;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 80px;
  font-weight: 200;
  z-index: 10000;
}

.tops {
  color: #fff;
  margin: auto;
  max-width: 100%;
  top: -520px;
  left: 750px;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 24px;
  font-weight: bolder;
}

.bottom_left {
  margin: auto;
  z-index: auto;
  font-family: "Oswald",sans-serif;
  color: #ffff;
  top: -350px;
  left: 750px;
  font-size: 80px;
  font-weight: bold;
  line-height: 100px;
}

.img-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 110vh;
  overflow: hidden;
  margin: 0 auto;
  z-index: 2000;
  background-size: auto, cover;
  background-position: center;
}

.img-frame::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  height: 1000vh;
  z-index: 3000;
}

.img-01,
.img-02,
.img-03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: auto, cover;
  background-repeat: no-repeat;
}
.img-01 {
  background-image: url(../images/engin-akyurt-k6ozwK_lBD0-unsplash.jpg);
  animation: slide-animation-01 24s infinite;
  background-size: cover;
  background-repeat: no-repeat;
}
.img-02 {
  background-image: url(../images/vitor-monthay-WCyh_uJU4Wk-unsplash.jpg);
  animation: slide-animation-02 24s infinite;
  background-size: cover;
  background-repeat: no-repeat;
}
.img-03 {
  background-image: url(../images/table-g3508f2a1d_1920.jpg);
  animation: slide-animation-03 24s infinite;
  background-size: cover;
  background-repeat: no-repeat;
}

@keyframes slide-animation-01 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.15);
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}

@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.upper {
  background-color: #874c11;
  text-align: center;
  z-index: 10000;
}

.lower {
  background-color: #874c11;
  text-align: center;
}

#humburger-menu a {
  display: inline-block;
  width: 120px;
  height: 120px;
  position: fixed;
  overflow: hidden;
  top: 0%;
  right: 0%;
  z-index: 10000;
  background: url(../images/humburger.svg) no-repeat;
  background-size: 120px;
  text-indent: 200px;
}

#humburger-menu a.active {
  background: url(../images/a.active.png) no-repeat;
  z-index: 10000;
  background-size: 135px;
  width: 135px;
  height: 135px;
  z-index: 10000;
}

#MENU {
  padding-top: 40px;
  padding-bottom: 20px;
}

h1 {
  font-family: "Oswald",sans-serif;
  text-align: center;
  font-size: 200%;
}

#h1 {
  width: 800px;
}
h2 {
  font-family: "Oswald",sans-serif;
  text-align: center;
  font-size: 16px;
  padding-bottom: 10px;
  padding-top: 25px;
}

#index_page#h1 {
  background: url(../images/slider_back.jpg) no-repeat;
  padding-top: 22px;
  padding-bottom: 2px;
  height: 29px;
}

.l-gnav {
  background: #8c6239;
  width: 100%;
  z-index: 10000;
  -webkit-overflow-scrolling: touch;
}

.l-gnav__list a {
  width: 50%;
  border-radius: 30px;
  margin: 0 auto;
  display: block;
  color: #fff;
  line-height: 80px;
  text-align: center;
  font-size: x-large;
  font-family: "Oswald", sans-serif;
  overflow: hidden;
  z-index: 10000;
}
.l-gnav__list__01 a {
  background: #8cc63f;
}

.l-gnav__list__02 a {
  background: #c1272d;
}

.l-gnav__list__03 a {
  background: #754c24;
}

.l-gnav__list__04 a {
  background: #d8c013;
}

.l-gnav__list__05 a {
  background: #8cc63f;
}

.l-gnav__list--icon {
  padding: 50px;
  background: #8c6239;
  display: flex;
  justify-content: center;
}

.l-gnav__list--icon a {
  margin: 0;
  width: 20px;
  line-height: 10px;
  display: inline;
  padding: 3rem;
}

.l-header__nav {
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
  display: none;
  z-index: 9000;
}

.swiper-outer {
  position: relative;
}

.swiper {
  max-width: 1000px;
  min-width: 500px;
  margin: 50px 0;
}

.l-inner .swiper-button-next,
.l-inner .swiper-button-prev {
  top: 35%;
}

.l-inner .swiper-button-next {
  right: 0;
  left: auto;
  width: 40px;
  height: 40px;
}

.l-inner .swiper-button-prev {
  left: 0;
  right: auto;
  width: 40px;
  height: 40px;
}

:root {
  --swiper-navigation-color-: #673606;
}

.h1 {
  padding-top: 50px;
}

.bg {
  position: relative;
  top: -110px;
  left: -400px;
  width: 1950px;
  height: 1000px;
  background-image: url(../images/AdobeStock_310379147.png);
  background-size: cover;
  background-position: center;
}

.bg::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  display: block;
  height: 1000px;
  width: 1950px;
}

.fade-title--head__sub {
  font-family: "Noto Sans JP",sans-serif;
  text-align: center;
  font-size: 30px;
  font-weight: bolder;
  line-height: 112px;
  padding-top: 180px;
  padding-bottom: 200px;
  color: #fff;
}
/*---------------------------
スワイパーJS
---------------------------*/
.swiper-wrapper {
  width: large(100% 500px);
  position: absolute;
  align-items: stretch !important;
}

.swiper-slide {
  width: 50%;
  height: 100%;
  display: flex;
}

.wrapper_burger {
  background-color: #f4a93b;
  padding: 25px;
  border-radius: 30px;
  display: flex;
  min-height: 250px;
  margin-bottom: 1em;
}



  .wrapper_burger {
    min-height: 250px;
  }

.wrapper_burger img {
  display: inline;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  align-self: center;
}

/*---------------------------
スワイパーJS
---------------------------*/

.swiper-button-prev,
.swiper-button-next {
  background-repeat: no-repeat;
  background-size: contain;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: none !important;
}

.swiper-button-prev {
  background-image: url(../images/left_arrows.png);
}

.swiper-button-next {
  background-image: url(../images/right_arrows.png);
}

/*---------------------------
ABOUT
---------------------------*/

.what {
  font-size: 80px;
  text-align: center;
  font-weight: bold;
  font-family: "Oswald",sans-serif;
  line-height: 50px;
  padding-top: 10px;
  padding-bottom: 200px;
}

.cheese {
  background: linear-gradient(transparent 80%, #dfa000 0%);
  width: 100%;
  height: 29px;
  line-height: 130px;
}



/* 横スクロールセクション */

.about {
  border-radius: 50px;
  padding-top: 100px;
}

.about-images {
  position: absolute;
  margin: -25px 40px;
  padding-left: 30px;
}

.about-images__02 {
  position: absolute;
  margin: 20px 60px auto;
  padding-left: 30px;
}


.about-images__03 {
  position: absolute;
  margin: 15px -26px auto;
  padding-left: 150px;
}

.about-images__04 {
  position: absolute;
  margin: -40px 10px auto;
  padding-left: 60px;
}

.side-scroll {
  display: flex;
  justify-content: center;
  align-items: center;
}

.side-scroll-heading {
  color: #eeebdd;
  font-size: 40px;
  font-weight: bolder;
  font-family: "Oswald",sans-serif;
}

.side-scroll-list-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}



.side-scroll-list {
  position: absolute;
  top: 100px;
  left: 50px;
  display: flex;
  gap: 30px;
}



.side-scroll-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 700px;
  height: 500px;
  font-size: 32px;
  font-weight: 700;
}


.fade-title--head__sub {
  padding-bottom: 300px;
}
.c-text--center {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Sans JP",sans-serif;
  line-height: 30px;
}
.c-text--center__02 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Sans JP",sans-serif;
  padding-top: 50px;
  padding-bottom: 50px;
}
.readsmore {
  position: relative;
  padding: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.motikaeri {
  padding: 100px;
}

.ONLINE {
  background-color: #c69c6d;
  border-radius: 50px;
  padding-top: 60px;
  padding-bottom: 40px;
  width: 1180px;
  margin: 0 auto;
}

.ONLINE__02 {
  background-color: #c69c6d;
  border-radius: 50px;
  padding-bottom: 50px;
  width: 800px;
  margin: 0 auto;
}

.ONLINE__03 {
  background-color: #c69c6d;
  border-radius: 50px;
  padding-top: 1px;
  padding-bottom: 10px;
  width: 1180px;
  margin: 0 auto;
}


#delivery-services {
  color: #ffff;
}

.takeout {
  line-height: 40px;
}

.delivery {
  border-radius: 50px;
  margin: 20px;
}

#takeout03 {
  border-radius: 50px 50px 0px 0px;
  margin: 20px;
  padding-bottom: 30px;
  padding-top: 30px;
}
.ouketori {
  margin: 50px;
  line-height: 100px;
}
#takeout04 {
  border-radius: 50px 50px 50px 50px;
  margin: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.img_block img {
  display: block;
  margin: 0 auto;
}

.c--online-text--center {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Sans JP",sans-serif;
  line-height: 50px;
  padding: 0 50px;
}


.btn--brown a {
  color: #fff;
  background: #856239;
  display: flex;
  width: 100px;
  position: relative;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 35px;
  padding: 10px 45px;
  font-family: "Oswald",sans-serif;
  font-size: 150%;
}

.btn--brown a:hover {
  color: #fff;
  background-color: #856239;
}

.btn--radius a {
  border-radius: 200vh;
}

.buns_03 {
  margin: 80px auto;
  margin-top: 20px;
  margin-bottom: 50px;
  max-width: 363px;
  padding-top: 30px;
  height: 70px;
  border-radius: 80px 80px 0 0;
  background-color: #8c6239;
}

.buns_04 {
  max-width: 363px;
  margin: 80px auto;
  margin-top: 20px;
  padding-top: 30px;
  padding-bottom: 50px;
  border-radius: 0 0 100px 100px;
  background-color: #8c6239;
}


.c-title--head {
  font-family: "0swald",sans-serif;
  font-size: 180%;
  padding-top: 0.3em;
  padding: 10px;
  margin-bottom: 20px;
  display: inline-block;
  border-top: solid 3px #673606;
  border-bottom: solid 3px #673606;
}

.c-title--head--center {
  text-align: center;
  padding: 50px;
}


.c-title--head__sub {
  font-family: "Noto Sans JP",sans-serif;
  text-align: center;
  font-size: 20px;
  font-weight: bolder;
  line-height: 30px;
}



.c-list-news {
  text-align: center;
}
.c-list-news img {
  vertical-align: sub;
}

.c-list-news__item {
  color: #333;
  list-style: none;
  margin-bottom: 2em;
  margin: 20px;
  /*border-top: 0.1rem solid #333;*/
}
.news {
  color: #fff;
  font-weight: bold;
  width: 300px;
  line-height: 30px;
  padding: 0 auto;
  margin-right: auto;
  margin-left: auto;
  border-radius: 20px;
}
.news_01 {
  background-color: #8cc63f;
}

.news_02 {
  background-color: #c1272d;
}

.news_03 {
  background-color: #754c24;
}

.news_04 {
  background-color: #d8c013;
}

.news_05 {
  background-color: #8cc63f;
}

.c-list-news__category {
  font-weight: bold;
  display: block;
  color: #ffff;
  line-height: auto;
}

.c-list-news__date {
  border-radius: 3px;
  font-size: 18px;
  padding: 0 0.4em;
  text-align: center;
  display: block;
  font-weight: 600;
  margin: 10px auto;
  font-family: "Oswald",sans-serif;
}
.c-text-center {
  font-size: 14px;
  font-weight: 300;
  font-family: "Noto Sans JP",sans-serif;
  line-height: 30px;
}

.caution {
  text-align: center;
}

.important {
  color: #ff0000;
}
.detail {
  font-size: 20px;
  font-weight: lighter;
  display: contents;
}

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

.Form-Item {
  padding-top: 24px;
  padding-bottom: 24px;
  margin-left: 80px;
  width: 100%;
}

.Form-Item-Label {
  width: 50%;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
  line-height: 50px;
}

.Form-Item-Label__02 {
  width: 56%;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
  line-height: 50px;
}

.Form-Item-Label__03 {
  width: 58%;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
  line-height: 50px;
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-right: 170px;
  margin-left: 40px;
  padding: 0.3em;
  height: 48px;
  flex: 1;
  width: 110%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  margin-right: 171px;
  padding: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}


/*.btn--brown3 {
  color: #fff;
  background: #804f20;
  display: flex;
  width: 150px;
  position: relative;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin-left: 290px;
  margin-top: 50px;
  padding: 10px 35px;
  font-family: "Oswald";
  font-size: 100%;
}

@media screen and (max-width: 500px) {
  .btn--brown3 {
    margin: 50px;
  }
}
*/

.wrapper_burger__02 {
  background-color: #c69c6d;
  padding: 0px;
  border-radius: 30px;
  display: flex;
  min-height: 300px;
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .wrapper_burger__02 {
    min-height: 300px;
  }
}

@media screen and (max-width: 1080px) {
  .wrapper_burger__02 {
    min-height: 230px;
    width: 280px;
    padding: 10px;
  }
}



.container-fade {
  text-align: center;
}



.container-fade_02 {
  text-align: center;
}


.container-fade_03 {
  text-align: center;
  padding-top: 50px;
}

.container-fade_04 {
  text-align: center;
  padding-top: 35px;
}


.material {
  background-color: #8c6239;
  width: auto;
}

.explain {
  font-family: "Noto Sans JP",sans-serif;
  color: #fff;
  font-weight: bolder;
  font-size: 20px;
  text-align: center;
  line-height: 35px;
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  margin-bottom: -60px;
  margin-left: 14rem;
  padding: 4px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  background: #c69c6d;
  border-radius: 15px;
}

.explain:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #c69c6d;
}

.explain p {
  margin: 0;
  padding: 0;
}


.explain__02 {
  font-family: "Noto Sans JP",sans-serif;
  color: #fff;
  font-weight: bolder;
  font-size: 20px;
  text-align: center;
  line-height: 31px;
  padding-bottom: 133px;
  position: relative;
  display: inline-block;
  margin: 0.5em 0px;
  margin-left: 12rem;
  margin-top: -30px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  background: #c69c6d;
  border-radius: 15px;
}

.explain__02:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #c69c6d;
}

.explain__02 p {
  margin: 0;
  padding: 0;
}

.explain__03 {
  font-family: "Noto Sans JP",sans-serif;
  color: #fff;
  font-weight: bolder;
  font-size: 20px;
  text-align: center;
  line-height: 23px;
  padding-bottom: 133px;
  position: relative;
  display: inline-block;
  margin: -1.5em 10px;
  margin-left: 13rem;
  margin-top: 55px;
  margin-bottom: 41px;
  padding: 22px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  background: #c69c6d;
  border-radius: 15px;
}


.explain__03:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #c69c6d;
}

.explain__03 p {
  margin: 0;
  padding: 0;
}



.explain__04 {
  font-family: "Noto Sans JP",sans-serif;
  color: #fff;
  font-weight: bolder;
  font-size: 20px;
  text-align: center;
  line-height: 23px;
  padding-bottom: 133px;
  position: relative;
  display: inline-block;
  margin: 3.5em 120px;
  margin-left: 18rem;
  margin-top: -15px;
  padding: 10px 30px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  background: #c69c6d;
  border-radius: 15px;
}


.explain__04:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #c69c6d;
}

.explain__04 p {
  margin: 0;
  padding: 0;
}



.fade-text--center span {
  white-space: pre;
  display: inline-block;
  writing-mode: vertical-rl;
  color: #ffff;
  font-weight: bold;
  font-size: 30px;
  margin-left: -400px;
  font-family: "Noto Sans JP",sans-serif;
  line-height: 125px;
}


.fade-text--center__01 span {
  white-space: pre;
  display: inline-block;
  writing-mode: vertical-rl;
  color: #ffff;
  font-weight: bold;
  font-size: 30px;
  margin-left: -400px;
  font-family: "Noto Sans JP",sans-serif;
}



.pan-pan span {
  white-space: pre;
  font-family: "Oswald",sans-serif;
  display: inline-block;
  writing-mode: vertical-rl;
  font-size: 100px;
  font-weight: bold;
  color: #673606;
  margin-left: -250px;
  margin-bottom: -250px;
  line-height: 20px;
  position: relative;
  text-align: center;
}


.pan-pan__01 span {
  white-space: pre;
  font-family: "Oswald",sans-serif;
  display: inline-block;
  writing-mode: vertical-rl;
  font-size: 100px;
  font-weight: bold;
  color: #673606;
  margin-left: -190px;
  margin-bottom: -192px;
  line-height: 20px;
  position: relative;
  text-align: center;
}


#burger__name_05 {
  color: #000;
}

#burger__name_06 {
  color: #000;
}

#burger__name_07 {
  color: #000;
}

.ACCESS {
  background-color: #c69c6d;
  border-radius: 50px;
  padding-bottom: 20px;
  padding-top: 60px;
}

.ACCESS_02 {
  background-color: #c7b299;
  border-radius: 30px 30px 0 0;
  margin: 20px;
  padding-bottom: 5px;
}
.email {
  line-height: 45px;
  padding-bottom: 25px;
  font-family: "Oswald",sans-serif;
  font-weight: bolder;
}
.address {
  font-family: "Oswald",sans-serif;
  font-weight: bolder;
  line-height: 45px;
  padding-bottom: 40px;
}
.address__02 {
  font-family: "Oswald",sans-serif;
  font-weight: bolder;
  line-height: 25px;
  padding-bottom: 25px;
}

tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}

.table-wrap {
  overflow: auto;
}

.l-access_item_txt_time table {
  width: 100%;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  border-collapse: collapse;
  font-family: "Oswald",sans-serif;
  text-align: center;
  font-weight: bold;
}



table {
  border-collapse: collapse;
  border-spacing: 0;
}

table {
  border-collapse: separate;
  text-indent: initial;
  border-spacing: 0;
}

.l-access_item_txt_time {
  padding: 8rem 0rem 10rem 8rem;
  vertical-align: center;
}

.l-access_item_txt_time .b-left {
  border-left: none;
  font-family: "Oswald",sans-serif;
  font-weight: 700;
}

.l-access_item_txt_time .b-top {
  border-top: none;
  font-family: "Oswald",sans-serif;
  font-weight: 700;
}

.l-access_item_txt_time table th,
.l-access_item_txt_time table td {
  border: solid 1px #000000;
  font-weight: 600;
  text-align: center;
}

.l-access_item_txt_time .b-bottom {
  border-bottom: none;
}

.l-access_item_txt_time .b-right {
  border-right: none;
}

table {
  display: table;
  border-collapse: separate;
  box-sizing: border-box;
  text-indent: initial;
  border-spacing: 2px;
  border-color: gray;
}

th.b-top.b-left {
  padding: 11px 10px;
}

th.b-top {
  color: #000000;
  font: 14px;
  padding: 11px 10px;
}

th.b-top.b-right {
  color: #000000;
  font: 14px;
  padding: 11px 10px;
  border-right: none;
}

td.b-left.b-bottom {
  color: #000000;
  font: 14px;
  padding: 11px 10px;
  border-bottom-left-radius: none;
}

td.b-bottom {
  color: #000000;
  font: 14px;
  padding: 11px 10px;
  border-bottom: none;
}

td.b-right.b-bottom {
  color: #000000;
  font: 14px;
  padding: 11px 10px;
}

.l-gmap {
  height: 320px;
  border-radius: 0px 0px 50px 50px;
  overflow: hidden;
  margin: 50px;
  width: 850px auto;
  margin-bottom: 60px;
}


.l-gmap iframe {
  width: 100%;
  height: 320px;
}

/*---------------------------
MENUページ
---------------------------*/
.wrapper_02 {
  display: grid;
  grid-template-rows: 2fr 1.5fr 1.5fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  justify-items: center;
  padding-bottom: 100px;
  padding-left: 100px;
  padding-right: 100px;
}

.flex_text {
  font-weight: bold;
  font-family: "Noto Sans JP",sans-serif;
  line-height: 25px;
  letter-spacing: 0.1em;
  font-size: 20px;
  padding: 50px;
  text-align: center;
}

span {
  color: #fff661;
}

.c-text--center__delivery {
  font-size: 15px;
  color: #333;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Sans JP",sans-serif;
  line-height: 50px;
  padding-bottom: 100px;
}

.c-text--center__delivery img {
  vertical-align: middle;
}

/*---------------------------------
コンテンツ
----------------------------------*/


/*---------------------------------
フッター
----------------------------------*/

footer {
  clear: both;
  text-align: center;
}

.l-footer {
  background: #6b3906;
  color: #fff;
  text-align: left;
  overflow: hidden;
}

.l-footer--inner {
  margin: 0 20px;
  padding-top: 20px;
  overflow: hidden;
}

.l-footer__logo {
  width: 150px;
  margin-bottom: 20px;
}

.p-footer_small {
  font-size: 1.1rem;
  text-align: justify;
}

.footer-about-social {
  width: 20px;
  height: 20px;
  display: flex;
  text-align: right;
  padding: 1rem;
  gap: 1rem;
}

.l-footer__company-detail {
  color: #fff;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-right: 0;
}

.l-footer__company-detail address {
  font-style: normal;
  text-align: right;
}

.l-copyright {
  color: #fff;
}

.p-footer_content_bottom_link {
  color: #fff;
  position: relative;
  margin-right: 5.4rem;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.p-gf__info__local {
  text-align: right;
}

.footer-info {
  text-align: right;
  justify-content: space-around;
  font-size: 1.1rem;
}

a {
  color: #ffff;
  text-decoration: none;
}

.p-footer_small {
}

.p-gf__info__local__link.c-pagelink {
  padding: 4em;
}

/*---------------------------------
コンテンツ
----------------------------------*/
#main_contents {
  width: 100%;
  height: 300px;
  background: #ccc;
}

#sub_contents {
  width: 100%;
  height: 300px;
  background: #f90;
}

/*---------------------------------
メディアクエリ min-width:768px
----------------------------------*/

/*---------------------------------
ヘッダー
----------------------------------*/
header #logo {
  text-align: center;
}

/*---------------------------------
コンテンツ
----------------------------------*/
#main_contents {
  width: 45%;
  height: 300px;
  float: right;
}

#sub_contents {
  width: 45%;
  height: 300px;
  float: left;
}

/*---------------------------------
ヘッダー
----------------------------------*/
header #logo {
  text-align: left;
}

/*---------------------------------
レイアウト設定
----------------------------------*/
#main_contents {
  width: 75%;
  height: 300px;
  float: right;
}

#sub_contents {
  width: 20%;
  height: 300px;
  float: left;
}

  /*---------------------------------
メディアムサイズ
----------------------------------*/
@media screen and (max-width: 768px) {
    .wrapper_burger {
      min-height: 300px;
    }
  }
  .readsmore {
    padding: auto;
  }


  
/*---------------------------------
スモールサイズ（スマホ）
----------------------------------*/
@media screen and (max-width: 500px) {
  /*---------------------------------
ヘッダー
----------------------------------*/
  .humburger {
    width: 12%;
    position: fixed;
    left: 1%;
    z-index: 10;
  }

  .sticker {
    width: 10%;
    position: fixed;
    left: 2%;
    z-index: 10;
    top: 0%;
  }

  .itemBox {
    width: 100%;
  }

  .logo {
    width: 20%;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 5000;
  }

  .main-title {
    position: relative;
    font-family: "Oswald", sans-serif;
    color: #fff;
    font-size: 80px;
    font-weight: bolder;
    z-index: 10000;
  }

  .tops {
    top: -240px;
    left: 200px;
    font-family: "Noto Sans JP",sans-serif;
    font-size: 12px;
    font-weight: bolder;
  }

  .l-gnav {
    background: #8c6239;
    z-index: 12000;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .l-gnav__list a {
    width: 100%;
    margin: 0 auto;
    display: block;
    color: #fff;
    line-height: 80px;
    text-align: center;
    font-size: x-large;
    font-family: "Oswald", sans-serif;
    overflow: hidden;
    z-index: 10000;
  }
  .l-gnav__list--icon {
    width: 100%;
    padding: 0rem;
  }

  .l-gnav__list--icon a {
    width: auto;
    line-height: 40px;
    display: inline;
  }

  .l-gnav__list--icon img {
    width: 100%;
  }

  .l-gnav__list--icon img {
    width: 15px;
  }

  .l-gnav__list a {
    width: 100%;
    line-height: 50px;
    position: relative;
    z-index: 10000;
    overflow: hidden;
  }

  .logo_02 {
    width: 10%;
    position: absolute;
    top: 1%;
    left: 45%;
    z-index: 5000;
  }
  .tops {
    top: -340px;
    left: 432px;
    font-family: "Noto Sans JP",sans-serif;
    font-size: 16px;
    font-weight: bolder;
  }
  .bottom_left {
    top: -150px;
    left: 200px;
    font-size: 40px;
    line-height: auto;
    font-weight: bold;
    line-height: 40px;
  }
  .img-frame {
    width: 100%;
    height: 300px;
  }
  #humburger-menu a {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: fixed;
    padding-right: 0%;
    top: 0%;
    right: 0%;
    z-index: 10000;
    background: url(../images/humburger.jpg) no-repeat;
    text-indent: 200px;
    background-size: 50px;
  }
  #humburger-menu a.active {
    background: url(../images/a.active.png) no-repeat;
    z-index: 10000;
    background-size: 50px;
    width: 50px;
    height: 50px;
    z-index: 10000;
  }
}

@media screen and (max-width: 500px) {
  /*---------------------------------
スワイパーJS
----------------------------------*/
  .swiper {
    min-width: 10px;
  }
}

@media screen and (max-width: 500px) {
  /*---------------------------------
ABOUT
----------------------------------*/
.fade-title--head__sub {
  font-size: 4vw;
  padding: 3vh;
  padding-right: 1vh;
  line-height: 7vh;
  color: #fff;
}
 
 .bg {
  position: relative;
  top: -10vh;
  left: -6vh;
  width: 55vh;
  height: 50vh;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

  .bg::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    display: block;
    height: 50vh;
    width: 55vh;
  }

  .what {
    font-size: 40px;
    text-align: center;
    font-weight: bold;
    font-family: "Oswald",sans-serif;
    line-height: 50px;
    padding-top: 50px;
    padding-bottom: 300px;
  }
  .cheese {
    background: linear-gradient(transparent 88%, #dfa000 0%);
    width: 100%;
    height: 6px;
    line-height: 45px;
  }
}

@media screen and (max-width: 500px) {
/*---------------------------------
/* 横スクロールセクション 
----------------------------------*/

.container-fade_02 {
  text-align: center;
  margin-top: 1.3vh;
}

.container-fade_03 {
  text-align: center;
  padding-bottom: 9.5vh;
}

.container-fade_04 {
  padding-bottom: 7vh;
  text-align: center;
}

.about-images {
  position: absolute;
  margin: 20vh;
  width: 13%;
  margin-left: 5vh;
  margin-top: 17vh;
}

.about-images__02 {
  position: absolute;
  margin: 10vh;
  width: 14%;
  padding-top: 12vh;
  padding-left: 0vh;
}

.about-images__03 {
  position: absolute;
  margin: 10vh;
  width: 10%;
  margin-left: -5vh;
  padding-top: 8vh;
}

.about-images__04 {
  position: absolute;
  margin: 24vh;
  width: 16%;
  margin-left: -7vh;
  margin-top: 17vh;
}

.explain {
  font-size: 14px;
  line-height: 16px;
  padding-top: 108px;
  padding-left: 154px;
  position: relative;
  display: inline-block;
  margin: 14vh 18px -20px;
  padding: 6px 67px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  background: #c69c6d;
  border-radius: 74px;
}

.explain__02 {
  font-size: 14px;
  line-height: 16px;
  padding-top: 108px;
  padding-left: 154px;
  position: relative;
  display: inline-block;
  margin: 6.5vh 18px -20vh;
  padding: 6px 62px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  background: #c69c6d;
  border-radius: 74px;
}

.explain__03 {
  font-size: 14px;
  line-height: 16px;
  padding-top: 108px;
  padding-left: 154px;
  position: relative;
  display: inline-block;
  margin: 8em 26px -20px;
  padding: 16px 62px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  background: #c69c6d;
  border-radius: 74px;
}

.explain__04 {
  font-size: 14px;
  line-height: 16px;
  padding-top: 108px;
  padding-left: 154px;
  position: relative;
  display: inline-block;
  margin: 4.3em 18px -20px;
  padding: 8px 62px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  background: #c69c6d;
  border-radius: 74px;
}

.fade-text--center span {
  white-space: pre;
  display: inline-block;
  writing-mode: vertical-rl;
  color: #ffff;
  font-weight: bold;
  font-size: 18px;
  line-height: 50px;
  padding-bottom: 100px;
  margin-top: -9vh;
  margin-left: -38vh;
  font-family: "Noto Sans JP",sans-serif;
}

.fade-text--center__01 span {
  white-space: pre;
  display: inline-block;
  writing-mode: vertical-rl;
  color: #ffff;
  font-weight: bold;
  font-size: 18px;
  line-height: 50px;
  padding-bottom: 100px;
  margin-top: -9vh;
  margin-left: -38vh;
  font-family: "Noto Sans JP",sans-serif;
}

.pan-pan span {
  white-space: pre;
  font-family: "Oswald",sans-serif;
  display: inline-block;
  writing-mode: vertical-rl;
  font-size: 60px;
  font-weight: bold;
  color: #673606;
  line-height: 60px;
  margin-left: -22vh;
  margin-bottom: -9vh;
  position: relative;
  text-align: center;
}

.pan-pan__01 span {
    white-space: pre;
    font-family: "Oswald",sans-serif;
    display: inline-block;
    writing-mode: vertical-rl;
    font-size: 60px;
    font-weight: bold;
    color: #673606;
    line-height: 60px;
    margin-bottom: -6vh;
    margin-left: -25vh;
    position: relative;
    text-align: center;
}
.side-scroll-heading {
  font-size: 25px;
  padding-top: 50px;
  padding-bottom: 60px;
}
.side-scroll-list-wrapper {
  position: relative;
  width: 100px;
  height: 800px;
}
.side-scroll-list {
  position: absolute;
  top: 100px;
  left: 280px;
  display: flex;
  gap: 30px;
}
.side-scroll-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 300px;
  color: #1b1717;
  font-size: 32px;
  font-weight: 700;
}
}

@media screen and (max-width: 500px) {
/*---------------------------------
ONLINE
----------------------------------*/
.ONLINE {
  background-color: #c69c6d;
  border-radius: 50px;
  padding-bottom: 20px;
  width: 350px;
  margin: 0 auto;
}
.ONLINE__02 {
  width: auto;
}
.ONLINE__03 {
  background-color: #c69c6d;
  border-radius: 50px;
  padding-top: 1px;
  padding-bottom: 20px;
  width: 350px;
  margin: 0 auto;
}
.c--online-text--center {
  font-size: 15px;
}
}

@media screen and (max-width: 500px) {
/*---------------------------------
TOPICS
----------------------------------*/
.c-title--head__sub {
  font-size: 14px;
}
.detail {
  font-size: 15px;
  font-weight: lighter;
  display: contents;
}
.buns_03 {
  margin: 20px;
  width: auto;
  margin-bottom: 50px;
  padding-top: 20px;
  height: 60px;
  border-radius: 50px 50px 0 0;
  background-color: #8c6239;
}
  .buns_04 {
    margin: 20px;
    height: 30px;
    width: auto;
    padding-top: 10px;
    padding-bottom: 25px;
    border-radius: 0 0 50px 50px;
    background-color: #8c6239;
  }
}

@media screen and (max-width: 500px) {
/*---------------------------------
ACCESS
----------------------------------*/
.l-access_item_txt_time table {
  width: 100%;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  border-collapse: collapse;
  font-family: "Oswald",sans-serif;
  text-align: center;
  font-weight: bold;
}
.l-access_item_txt_time {
  padding: 2rem 1rem 1rem 2rem;
  vertical-align: center;
}
}
.l-gmap {
  height: 320px;
  border-radius: 0px 0px 50px 50px;
  overflow: hidden;
  margin: 30px;
}

@media screen and (max-width: 500px) {
/*---------------------------------
--------------------フッタースモール*/
.p-gf__info__local__link.c-pagelink {
  padding: 2em;
}
}

@media screen and (max-width: 480px) {
/*---------------------------------
  CONTACT
------------------*/
  .Form {
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
  }

  .Form-Item {
    width: 60%;
    margin-left: 3px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }

  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    padding-left: 40px;
    font-size: 15px;
  }
  .Form-Item-Label__02 {
    width: 50%;
    letter-spacing: 0.05em;
    padding-left: 65px;
    font-weight: bold;
    font-size: 15px;
    line-height: 50px;
    text-indent: -30px;
  }
  .Form-Item-Label__03 {
    width: 60%;
    letter-spacing: 0.05em;
    padding-left: 65px;
    font-weight: bold;
    font-size: 15px;
    line-height: 50px;
    text-indent: -30px;
  }
  .Form-Item-Input {
    width: 125%;
    padding: 0.1em;
  }
  .Form-Item-Textarea {
    width: 110%;
  }
}

@media screen and (max-width: 500px) {
/*---------------------------
MENU
---------------------------*/
.wrapper_02 {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 50px;
}

.flex_text {
  font-size: 12px;
  padding: 0 0 50px;
  text-align: center;
  font-weight: bold;
}
}

@media screen and (min-width: 768px) {
  /* base-medium
--------------------------------------------------------- */

  .l-inner {
    max-width: 1170px;
    margin: auto;
  }
}
