@charset "utf-8";
/* CSS Document commonlayout*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* 1: common
=========================================*/
* {
  margin: 0;
  box-sizing: border-box
}
html {
  margin: 0;
}
body {
  width: 100%;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000000;
  letter-spacing: 0.06em;
  background-color: #FFF100;
  word-wrap: break-word;
  font-weight: 400;
}
#loading {
  width: 200px;
  height: 200px;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -100px;
  margin-left: -100px;
  z-index: 999999;
  background-image: url(../images/loading.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
#fade {
  width: 100%;
  height: 100vh;
  display: none;
  background-color: #FFF100;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999998;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto
}
.inner {
  margin: 0 auto;
  padding: 0 4%
}
p {
  line-height: 1.7;
}
/* 画面外にいる状態 */
.fadein {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 500ms;
}
/* 画面内に入った状態 */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
*:focus {
  outline: none;
}
#bgContents {
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 1;
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
#wrapper {
  position: relative;
  z-index: 2;
}
#main {
  width: 500px;
  margin: 0 auto;
  z-index: 3;
  background-color: #FFF100;
  padding: 30px 0% 0px 0%;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 5px 3px;
  position: relative;
  left: 50%;
  margin-left: -250px;
}
@media screen and (max-width: 980px) {
  #bgContents {
    background-position: center bottom;
  }
}
/* sp
=========================================*/
@media screen and (max-width: 767px) {
  * {
    -webkit-appearance: none;
  }
  body {
    font-size: 14px;
    line-height: 1.6;
    padding-top: 0;
    border-top: none;
  }
  body, html, body {
    width: 100%;
    min-width: 100%;
  }
  body, html, body * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  p {
    word-break: break-all;
  }
  #bgContents {
    position: relative;
    height: auto;
    width: 100%;
    z-index: 1;
    background-image: url(none);
  }
  #main {
    width: 100%;
    padding: 30px 0% 0px 0%;
    box-shadow: rgba(0, 0, 0, 0);
    left: 0%;
    margin-left: 0px;
  }
}
/* Link
========================================*/
a, a:link {
  text-decoration: none;
  outline: none;
  transition: 0.3s;
  color: #EA4D15
}
a:visited {
  color: #EA4D15
}
a:hover, a:active {
  color: #EA4D15;
  text-decoration: underline
}
a.alpha:hover {
  opacity: 0.8
}
html {
  scroll-behavior: smooth;
}
.button {
  -webkit-animation: my-fade-in 3s ease 2.5s 1 forwards;
  animation: my-fade-in 3s ease 2.5s 1 forwards;
  display: inline-block;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: .3s;
  z-index: 1;
  overflow: hidden;
}
.button::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 130%;
  height: 100%;
  transform-origin: right top;
  transform: skewX(-30deg) scale(0, 1);
  transition: transform .3s;
}
.button:hover::before {
  transform-origin: left top;
  transform: skewX(-30deg) scale(1, 1);
}
.button:hover {
  text-decoration: none
}
.headding01 {
  padding: 80px 0 30px;
  background-image: url(../images/ttl01.svg);
  background-repeat: no-repeat;
  background-position: 50% 0%;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}
p {
  font-size: 16px;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 14px;
  }
}
/* スマホ、PC切替用
========================================*/
.sp-none {
  display: block;
}
.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/* 2: header
=========================================*/
#header {
  margin: 0;
  position: relative;
}
.headArea {
  padding: 0px 10% 0 10%;
}
.headArea .logo {
  margin-bottom: 20px
}
.headArea .tx01 {
  margin-bottom: 20px
}
#bgContents .scroll-infinity {
  margin-top: 100px;
  position: relative;
  z-index: 1
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity li {
  margin-left: 20px
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(300vw / 16);
}
.scroll-infinity__item > img {
  width: 100%;
}
@media screen and (max-width: 1130px) {
  #bgContents .scroll-infinity {
    margin: 20px 0;
  }
}
#pcNav {
  display: flex;
  height: 100vh;
  position: fixed;
  z-index: 2;
  width: 100%;
  top: 0;
  justify-content: space-between;
  padding: 0% 20px 20px;
  align-items: flex-end;
  margin: 0 auto;
}
#pcNav .outlineBox {
  height: auto;
  width: 27%;
  border-radius: 10px;
  border: 5px solid #FF973C;
  background: #FFF;
  padding: 40px 15px;
  position: relative;
  min-height: 550px;
}
#pcNav .outlineBox .icon {
  width: 100px;
  position: absolute;
  top: -60px;
  left: 10px
}
#pcNav .outlineBox h2 {
  color: #EA4D15;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 1em
}
#pcNav .outlineBox dl {
  margin-bottom: 1em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start
}
#pcNav .outlineBox dl dt {
  width: 20%;
  font-size: 12px;
  font-weight: 700;
  border-radius: 5px;
  background: #FF973C;
  padding: 5px 10px;
  text-align: center;
  color: #fff
}
#pcNav .outlineBox dl dd {
  width: 78%;
  font-size: 14px
}
#pcNav .outlineBox .qrcode {
  width: 40%;
  margin: 0 auto
}
#pcNav .menuBox {
  width: 27%;
  position: relative;
  border-radius: 10px;
  border: 5px solid #FF973C;
  background-color: #FFF;
  background-image: url(../images/menu_bg.png);
  background-size: cover;
  text-align: center;
  padding: 40px 15px;
  min-height: 550px;
}
#pcNav .menuBox h2 {
  margin-bottom: 20px;
}
#pcNav .menuBox ul {
  margin-bottom: 20px
}
#pcNav .menuBox li {
  font-size: 20px;
  font-weight: 700;
  padding: 0.7em 0;
  color: #cccccc
}
#pcNav .menuBox li a {
  color: #EA4D15;
  text-decoration: underline;
}
#pcNav .menuBox .india {
  margin: 0 auto;
  width: 30%
}
@media screen and (max-width: 1130px) {
  #pcNav {
    display: none
  }
}
/* 3: nav
=========================================*/
.btnwrap {
  display: none;
}
.drawer--right .drawer-hamburger {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #EA4D15;
  padding: 20px;
}
.drawer--right.drawer-open .drawer-hamburger {
  display: block;
  background-color: rgba(255, 255, 255, 0.00)
}
.drawer-open .drawer-hamburger {
  z-index: 99999;
  position: fixed
}
.drawer-nav {
  background-color: rgba(0, 0, 0, 0.00);
  padding: 0px;
  z-index: 99998;
}
.drawer-hamburger.open {
  top: 0px;
  position: absolute;
}
.drawer-hamburger-icon {
  margin-top: 0px
}
.drawer-hamburger-icon, .drawer-hamburger-icon:after, .drawer-hamburger-icon:before {
  background-color: #FFF100;
}
.drawer-open .drawer-hamburger-icon:after, .drawer-open .drawer-hamburger-icon:before {
  background-color: rgba(0, 0, 0, 1.00);
}
.drawer-menu:after {
  content: "";
  clear: both;
  display: block;
}
.drawer-hamburger-icon, .drawer-hamburger-icon:after, .drawer-hamburger-icon:before {
  background-color: #F7EE12;
}
.drawer-overlay {
  z-index: 2
}
#gnav {
  position: relative;
  text-align: center;
  z-index: 9999;
  background-color: #FFF100;
  padding: 10px 0
}
#gnav ul {
  display: block;
  position: relative;
}
#gnav ul > li {
  flex-grow: 1;
  position: relative;
  background-color: rgba(255, 255, 255, 0.50);
}
#gnav li a {
  text-align: center;
  display: block;
  background-repeat: no-repeat;
  padding: 10px 0;
  background-position: 0% 0%;
  color: #EA4D15;
  position: relative;
  margin-bottom: 1px
}
#home #gnav li.top a, #shop #gnav li.shop a, #about #gnav li.about a, #faq #gnav li.faq a, #contact #gnav li.contact a {
  color: #EA4D15;
}
#gnav li.noactive {
  padding: 10px 0;
  color: #cccccc;
}
#gnav li a:hover {
  opacity: 0.7;
  text-decoration: none
}
.drawer-nav {
  overflow: visible
}
#gnav ul .subMenu {
  width: 110%;
  background-color: #fffbef;
  padding: 20px 10px;
  display: block;
  position: absolute;
  top: 0px;
  left: -5%;
  box-shadow: 0px 0px 9.7px 0.3px rgba(0, 0, 0, 0.16);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
#gnav ul li:hover ul.subMenu {
  top: 40px;
  visibility: visible;
  opacity: 1;
}
#gnav ul .subMenu:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-bottom: 5px solid #fffbef;
}
#gnav .subMenu li a {
  color: #000 !important;
  text-align: left;
  font-size: 14px;
  padding: 5px 10px;
  background-image: url(../images/common/nav_icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: 90% 50%;
}
#gnav .subMenu li a:hover {
  background-color: rgba(255, 150, 152, 0.20);
}
#gnav .subMenu li a:before {
  display: none
}
#gnav li a:before, #gnav ul:after, #gnav li.noactive:before {
  display: none
}
#gnav {
  float: none;
  padding-top: 50px;
}
#gnav .ttl {
  font-weight: 700;
  color: #40210D;
  padding-bottom: 10px;
  font-size: 18px;
  margin-bottom: 20px
}
#gnav ul {
  display: block
}
#gnav ul > li {
  border-bottom: 1px solid #fff
}
#gnav ul > li:first-child {
  border-top: 1px solid #fff
}
#gnav li a, #gnav li.noactive {
  width: 100%;
  height: 40px;
  line-height: 40px;
  margin-right: 0px;
  padding: 0px;
  text-align: center;
}
#gnav li a img, #gnav li.noactive img {
  height: 20px;
  width: auto
}
@media screen and (max-width: 1130px) {
  .btnwrap {
    display: block;
  }
}
@media screen and (max-width: 767px) {}
/* 4: commonlayout
=========================================*/
/* 5: footer
=========================================*/
.goTop {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #EA4D15;
  border-radius: 50%;
  opacity: 1.0;
  font-size: 0px;
  z-index: 4;
  display: none;
}
.goTop:hover {
  bottom: 15px;
}
.goTop::before {
  font-size: 0px;
  content: url("../images/icon_arrow_top.svg");
  position: absolute;
  width: 20px;
  height: 40px;
  top: 40%;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#footer {
  background-color: #EA4D15;
  color: #fff;
  position: relative;
  margin: 0 0%;
  z-index: 3;
  font-size: 10px;
  padding-bottom: 20px
}
#footer .kyosan {
  padding: 15px 4%;
  background-color: #FF973C;
  margin-bottom: 30px;
  text-align: center
}
#footer .kyosan .logoList {
  display: table;
  width: 50%;
  margin: 0 auto;
}
#footer .logoList li {
  margin-right: 0px;
  display: table-cell;
  padding: 5px;
}
#footer .copyright {
  text-align: center;
  font-size: 10px;
  color: #fff;
}
#footer .logo {
  width: 30%;
  margin: 0 auto
}
@media screen and (max-width: 767px) {
  .goTop {
    width: 40px;
    height: 40px;
  }
  .goTop:hover {
    bottom: 15px;
  }
  .goTop::before {
    width: 15px;
    height: 30px;
    top: 40%;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  #footer {
    padding: 10px 0px;
    margin: 0 0%;
  }
  #footer .footerSns {
    margin: 5px 0
  }
  #footer .footerSns .ttl {
    background-color: #f1c500;
    padding: 5px 0;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #723500;
  }
  #footer .footerSns ul {
    width: 80px;
    display: flex;
    justify-content: center;
    margin: 10px auto 0
  }
  #footer .footerSns ul li {
    padding: 0 10px
  }
  #footer .copyright {
    font-size: 11px;
    margin-bottom: 0px;
    margin-top: 10px;
  }
  #footer .logo {
    margin: 10px auto
  }
}
/* 6: breadCrumb
=========================================*/
#breadCrumb {
  padding: 10px 0;
  font-size: 12px;
  text-align: right;
  margin: 0 auto;
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 10;
}
#breadCrumb a:hover {
  text-decoration: underline;
}
#breadCrumb ul li {
  display: block;
  list-style-type: none;
  margin: 0 0px 0 10px;
}
#breadCrumb ul li:before {
  content: ">";
  margin-right: 10px;
}
#breadCrumb ul li:first-child:before {
  content: "";
}
@media screen and (max-width: 1130px) {
  #breadCrumb {
    display: none
  }
}