@charset "UTF-8";
footer {
  text-align: center;
}

html {
  overflow: auto;
  scroll-behavior: smooth;
}

body {
  overflow: hidden;
  background-color: #34322B;
  font-family: sans-serif;
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

img {
  width: 100%;
}

.footer {
  margin-top: 100px;
}
.footer__img {
  width: 150px;
  margin: 0 auto 20px 5%;
}
.footer__ul {
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
.footer li {
  width: 50%;
  margin-bottom: 20px;
}

video {
  width: 100%;
}

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #34322B;
  /*動き*/
  transition: all 0.6s;
}
#g-nav.panelactive {
  top: 0;
}
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  z-index: 999;
}
#g-nav li {
  color: #fff;
  list-style: none;
  font-size: 1.5em;
  margin-bottom: 2vw;
}
#g-nav li a {
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  #g-nav ul {
    width: 70%;
    white-space: nowrap;
  }
}
.header__smp--logo {
  position: fixed;
  width: 20%;
  margin: 15px 0 0 15px;
}
.header__positon {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.header__latest {
  background-color: #DD3737;
  color: #34322B;
  border-radius: 10px;
  padding: 15px 30px;
  margin-top: 10%;
}
.header__text {
  text-align: center;
  font-family: "Dela Gothic One", cursive;
  font-size: 7vw;
  white-space: nowrap;
}
.header__flex {
  display: flex;
  justify-content: space-around;
}
.header__sns {
  width: 40%;
  text-align: center;
  margin-top: 25px;
}
.header__img {
  width: 50%;
  margin-bottom: 15px;
}
.header__shop {
  font-size: 0.8em;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .header__positon {
    display: flex;
    top: 20%;
  }
  .header__latest {
    width: 100%;
    display: block;
    margin-top: 0;
    height: 230px;
  }
  .header__text {
    font-size: 30px;
  }
}
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 20px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.hero {
  position: relative;
}
.hero__logo {
  width: 30%;
  margin: 30px auto 5px auto;
  display: block;
  padding-bottom: 10px;
  background-color: #34322B;
}
.hero__frame {
  position: relative;
}
.hero__frame--img {
  position: absolute;
  min-height: 550px;
  width: 100vw;
  z-index: 2;
}
.hero__frame--mov {
  padding-bottom: 20px;
  z-index: 99;
  width: 95.5vw;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero__illustration--01 {
  position: absolute;
  top: 70%;
  right: 0;
  z-index: 2;
  width: 35%;
}
.hero__illustration--02 {
  position: absolute;
  top: 73%;
  z-index: 2;
  width: 26%;
}
.hero__illustration--03 {
  display: none;
}
.hero__illustration--04 {
  display: none;
}
.hero__text-img {
  position: absolute;
  top: 20vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 95%;
}
.hero__scroll {
  position: absolute;
  top: 89%;
  margin: auto;
  text-align: center;
  overflow: hidden;
  z-index: 4;
}
.hero__scroll span {
  font-family: "Dela Gothic One", cursive;
  font-size: 4em;
  display: inline-block;
  padding-left: 20%;
  white-space: nowrap;
  animation: scrollAnime 33s linear infinite;
}
@keyframes scrollAnime {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media screen and (min-width: 768px) {
  .hero__logo {
    margin: 20px auto -10px 20px;
    max-width: 200px;
  }
  .hero__frame {
    margin-top: -100px;
  }
  .hero__frame--img {
    height: 101vh;
  }
  .hero__frame--mov {
    margin-top: -100px;
  }
  .hero__frame--mov video {
    height: 100vh;
  }
  .hero__illustration--01 {
    top: 60%;
    left: 58%;
    max-width: 280px;
  }
  .hero__illustration--02 {
    top: 65%;
    right: 60%;
    max-width: 200px;
  }
  .hero__illustration--03 {
    display: block;
    position: absolute;
    top: 38%;
    right: 80%;
    max-width: 180px;
    transform: rotateZ(-5deg);
    z-index: 2;
  }
  .hero__illustration--04 {
    display: block;
    position: absolute;
    top: 18%;
    left: 75%;
    max-width: 180px;
    transform: rotateZ(5deg);
    z-index: 2;
  }
  .hero__text-img {
    max-width: 600px;
    left: 5%;
    transform: translateX(0);
  }
  .hero__scroll span {
    font-size: 7em;
  }
}
.concept {
  position: relative;
  padding: 190px 0 200px 0;
  margin-bottom: 100px;
}
.concept__h2 {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  margin: 35px;
}
.concept__text {
  width: 90%;
  margin: auto;
}
.concept__img--01 {
  width: 60%;
  position: absolute;
  top: 30px;
  left: -50px;
  z-index: -1;
  transform: rotateZ(80deg);
  transform: rotateY(180deg);
}
.concept__img--02 {
  width: 60%;
  position: absolute;
  bottom: 0px;
  right: -50px;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .concept__h2 {
    font-size: 2em;
  }
  .concept__text {
    text-align: center;
    line-height: 2;
  }
  .concept__img--01 {
    max-width: 350px;
    left: -10px;
    top: 300px;
  }
  .concept__img--02 {
    max-width: 350px;
    right: -10px;
    top: 80px;
  }
}
.border {
  width: 90%;
  height: 0.5px;
  background-color: #F5CD30;
  margin: 50px auto;
  position: relative;
}
.border::before {
  content: "";
  background-color: #F5CD30;
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  top: -2.5px;
  transform: rotateZ(45deg);
}
.border::after {
  content: "";
  background-color: #F5CD30;
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  top: -2.5px;
  right: 0;
  transform: rotateZ(45deg);
}

.specialty {
  width: 90%;
  margin: auto;
  position: relative;
}
.specialty__h2 {
  font-family: "Dela Gothic One", cursive;
  font-size: 2em;
}
.specialty__box {
  margin: 10px auto 60px;
  position: relative;
}
.specialty__box--right {
  position: relative;
  margin: 10px auto 60px;
}
.specialty__name {
  font-family: "Dela Gothic One", cursive;
  font-size: 1.7em;
  color: #34322B;
  background-color: #fff;
  display: inline;
  padding: 10px 6px;
  position: absolute;
  top: -10px;
  right: 10px;
  writing-mode: vertical-rl;
  letter-spacing: -0.1em;
}
.specialty__red {
  color: #DD3737;
  font-family: "Dela Gothic One", cursive;
  font-size: 1.3em;
  margin: 5px 0;
}
.specialty__bacground01 {
  position: absolute;
  background-color: #585146;
  width: 250vw;
  height: 40vh;
  z-index: -1;
  transform: rotateZ(15deg);
  top: 250px;
  left: -100px;
}
.specialty__bacground02 {
  position: absolute;
  background-color: #585146;
  width: 250vw;
  height: 40vh;
  z-index: -1;
  transform: rotateZ(-15deg);
  top: 750px;
  left: -100px;
}
.specialty__bacground03 {
  position: absolute;
  background-color: #585146;
  width: 250vw;
  height: 40vh;
  z-index: -1;
  transform: rotateZ(15deg);
  top: 1550px;
  left: -100px;
}

.menu-img {
  margin-top: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .specialty {
    max-width: 1100px;
  }
  .specialty__h2 {
    font-size: 4em;
  }
  .specialty__flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .specialty__box {
    width: 45%;
    margin: 10px 0 60px 0;
  }
  .specialty__box--right {
    width: 45%;
    margin: 150px auto 10px;
  }
  .specialty__bacground01 {
    top: 40%;
    left: -400px;
  }
  .specialty__bacground02 {
    top: 55%;
    left: -400px;
  }
  .specialty__bacground03 {
    display: none;
  }
  .menu-img {
    margin-top: 150px;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
.course {
  width: 90%;
  margin: 60px auto;
}
.course__box {
  margin-bottom: 80px;
}
.course__h2 {
  font-family: "Dela Gothic One", cursive;
  font-size: 2em;
}
.course__name {
  font-weight: bold;
  font-size: 1.2em;
  margin: 10px 0;
}
.course__text {
  font-weight: bold;
  font-size: 0.9em;
}
.course__menu {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.course__rhombus {
  padding-right: 5px;
}
.course__price {
  text-align: right;
  font-weight: bold;
}
.course__price span {
  font-size: 0.8em;
}

@media screen and (min-width: 768px) {
  .course {
    max-width: 1100px;
  }
  .course__h2 {
    font-size: 4em;
  }
  .course__flex {
    display: flex;
    justify-content: space-between;
  }
  .course__box {
    width: 45%;
  }
}
.shop {
  width: 90%;
  margin: auto;
}
.shop__box {
  margin-bottom: 80px;
  position: relative;
}
.shop__h2 {
  font-family: "Dela Gothic One", cursive;
  font-size: 2em;
  margin-bottom: 10px;
}
.shop__name {
  font-weight: bold;
  font-size: 1.5em;
  margin-bottom: 5px;
}
.shop__bold {
  font-weight: bold;
  width: 6em;
}
.shop__bold--bottom {
  font-weight: bold;
  width: 6em;
}
.shop__table {
  margin: 20px 0;
  line-height: 1.15;
}
.shop__table th {
  white-space: nowrap;
  width: 6em;
}
.shop__table td {
  padding-bottom: 5px;
}
.shop__route {
  margin-top: 15px;
}
.shop__btn {
  background-color: #DD3737;
  text-align: center;
  font-weight: bold;
  font-size: 1.5em;
  padding: 25px 20px;
  border-radius: 10px;
  margin: 20px auto 0;
}
.shop__people01 {
  display: none;
}
.shop__people02 {
  display: none;
}

@media screen and (min-width: 768px) {
  .shop {
    max-width: 1100px;
  }
  .shop__h2 {
    font-size: 4em;
  }
  .shop__pc-flex {
    display: flex;
    margin-bottom: 30px;
    position: relative;
  }
  .shop__name {
    margin-top: 30px;
  }
  .shop__img {
    width: 35%;
  }
  .shop__table {
    margin-left: 30px;
  }
  .shop__btn {
    width: 400px;
  }
  .shop__people01 {
    display: block;
    position: absolute;
    max-width: 150px;
    right: 5%;
    bottom: -20%;
  }
  .shop__people02 {
    display: block;
    position: absolute;
    max-width: 200px;
    left: 5%;
    bottom: -20%;
    transform: rotateZ(-5deg);
  }
}
.pr {
  margin-top: 130px;
  position: relative;
}
.pr__h2 {
  text-align: right;
  font-family: "Dela Gothic One", cursive;
  font-size: 2.8em;
  color: #F5CD30;
  line-height: 0.9;
}
.pr__h2 span {
  color: #DD3737;
}
.pr__img-box {
  position: relative;
}
.pr__img01 {
  margin-top: 20px;
}
.pr__img02 {
  position: absolute;
  width: 50%;
  left: -10%;
  top: -10%;
}
.pr__img03 {
  position: absolute;
  top: 0;
  width: 40%;
  left: -1%;
  top: 80%;
}
.pr__img04 {
  position: absolute;
  top: 0;
  width: 40%;
  right: 0%;
  top: 80%;
}
.pr__text {
  margin-top: 130px;
  font-family: "Dela Gothic One", cursive;
  font-size: 9vw;
  white-space: nowrap;
}
.pr__bribe {
  width: 90%;
  margin: 10px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pr__bribe img {
  width: 49%;
  margin-bottom: 2%;
}
.pr__bubble01 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 30%;
  padding: 25px 35px;
  color: #34322B;
  background: #fff;
  width: 65%;
  max-width: 450px;
}
.pr__bubble01::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #fff;
}
.pr__people {
  width: 23%;
  max-width: 110px;
  position: absolute;
  left: 5%;
}

@media screen and (min-width: 768px) {
  .pr {
    margin-top: 200px;
  }
  .pr__h2 {
    font-size: 6em;
  }
  .pr__img-box {
    text-align: center;
  }
  .pr__img01 {
    margin-top: 40px;
    width: 50%;
  }
  .pr__img02 {
    top: -150px;
    left: -3%;
    width: 40%;
  }
  .pr__img03 {
    width: 30%;
    left: -1%;
    top: 50%;
  }
  .pr__img04 {
    width: 30%;
    right: 0%;
    top: 3%;
  }
  .pr__bribe {
    display: block;
    margin-bottom: 50px;
  }
  .pr__bribe img {
    width: 24%;
  }
  .pr__people {
    max-width: 150px;
    position: absolute;
    left: 15%;
    bottom: -30px;
  }
}
.scroll {
  margin-top: 70px;
}
.scroll__h1 {
  font-family: "Dela Gothic One", cursive;
  font-size: 4em;
  display: inline-block;
  padding-left: 20%;
  white-space: nowrap;
  animation: scrollAnime 33s linear infinite;
}

@media screen and (min-width: 768px) {
  .scroll__h1 {
    font-size: 7em;
  }
}
.com-section {
  position: relative;
}
.com-section__pc {
  display: none;
}
.com-section__box {
  margin: 20px 0 100px;
}
.com-section__flex {
  display: flex;
}
.com-section__h2 {
  color: #fff;
  writing-mode: vertical-rl;
  font-family: "Dela Gothic One", cursive;
  font-size: 3em;
  margin: 0 auto;
}
.com-section__img {
  width: 80%;
}
.com-section__text {
  width: 90%;
  margin: 30px auto 0;
}
.com-section__bacground01 {
  position: absolute;
  background-color: #585146;
  width: 250vw;
  height: 40vh;
  z-index: -1;
  transform: rotateZ(15deg);
  top: 500px;
  left: -100px;
  z-index: -2;
}
.com-section__bacground02 {
  position: absolute;
  background-color: #585146;
  width: 250vw;
  height: 40vh;
  z-index: -1;
  transform: rotateZ(-15deg);
  top: 1200px;
  left: -100px;
  z-index: -2;
}

@media screen and (min-width: 768px) {
  .com-section__pc {
    display: block;
  }
  .com-section__pc-text {
    width: 45%;
    margin: 0 auto;
    padding-left: 40px;
  }
  .com-section__pc-text02 {
    width: 60%;
    padding-left: 40px;
  }
  .com-section__pc-text03 {
    margin: 50px auto;
    text-align: center;
  }
  .com-section__pc-margin {
    padding: 0 10px;
    margin-top: 30px;
  }
  .com-section__pc-img {
    position: absolute;
    top: 350px;
    right: 0;
    max-width: 300px;
    z-index: -1;
  }
  .com-section__pc-img02 {
    -o-object-fit: cover;
       object-fit: cover;
    width: auto;
    max-height: 400px;
  }
  .com-section__pc-img03 {
    margin-top: 100px;
  }
  .com-section__pc-flex {
    width: 90%;
    display: flex;
    margin-top: 100px;
  }
  .com-section__smp {
    display: none;
  }
  .com-section__box {
    margin: 100px 0 100px;
  }
  .com-section__h2 {
    writing-mode: horizontal-tb;
    font-size: 4em;
  }
  .com-section__img {
    max-width: 600px;
  }
}
.menu {
  width: 90%;
  margin: auto;
}
.menu__red {
  white-space: nowrap;
  color: #DD3737;
  font-family: "Dela Gothic One", cursive;
  text-align: center;
  font-size: 2em;
  line-height: 1;
  margin: 30px 0 60px;
}
.menu__h2 {
  font-family: "Dela Gothic One", cursive;
  font-size: 3em;
}
.menu__h2--nagai {
  font-family: "Dela Gothic One", cursive;
  font-size: 3em;
  margin-top: 100px;
}
.menu__flex {
  margin-top: 30px;
}
.menu__img {
  margin-bottom: 10px;
}

.course__flex {
  margin-top: 20px;
}
.course__img {
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .menu__flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .menu__img {
    width: 32.5%;
  }
  .course__flex {
    display: flex;
    justify-content: space-between;
  }
  .course__img {
    width: 48.5%;
  }
}/*# sourceMappingURL=style.css.map */