@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  position: relative;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

header,
main,
footer {
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  header,
  main,
  footer {
    max-width: 1920px;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

header {
  position: fixed;
  right: 0;
  left: 0;
  height: 50px;
  background-color: #000;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  header {
    height: 79px;
  }
}

@media screen and (min-width: 600px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .pc {
    display: none;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 50px;
}
@media screen and (min-width: 600px) {
  .header {
    justify-content: space-between;
    height: 79px;
  }
}

@media screen and (min-width: 1025px) {
  .navsp {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .navpc {
    display: none;
  }
}

.logo a {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 80%;
  padding-left: 1rem;
  text-decoration: none;
}
@media screen and (min-width: 600px) {
  .logo a {
    width: auto;
  }
}
.logo a:hover {
  opacity: 0.5;
}
.logo a div {
  width: 23%;
}
.logo a p {
  color: #fff;
  font-size: 10px;
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  .logo a p {
    font-size: 1rem;
  }
}

.pc_nav {
  display: flex;
  align-items: center;
  gap: calc(10vw - 115px);
  padding: 0;
  list-style-type: none;
}
.pc_nav li a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.pc_nav li a:hover {
  color: #f47216;
}
.pc_nav li.insta, .pc_nav li.contact {
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  display: block;
  overflow: hidden;
}
.pc_nav li.insta img, .pc_nav li.contact img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.pc_nav li.insta:hover img:nth-of-type(2), .pc_nav li.contact:hover img:nth-of-type(2) {
  opacity: 0;
}
.pc_nav li.contact {
  width: 223px;
  height: 79px;
}

.drawer_hidden {
  display: none;
}

.drawer_open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  width: 50px;
  height: 50px;
  background-color: #000;
  cursor: pointer;
}
@media screen and (min-width: 601px) {
  .drawer_open {
    width: 79px;
    height: 79px;
  }
}
.drawer_open span {
  content: "";
  display: block;
  height: 1px;
  width: 30px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
}
@media screen and (min-width: 600px) {
  .drawer_open span {
    width: 50px;
  }
}
.drawer_open span:before {
  content: "";
  display: block;
  height: 1px;
  width: 30px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
  bottom: 7px;
}
@media screen and (min-width: 600px) {
  .drawer_open span:before {
    width: 50px;
    bottom: 15px;
  }
}
.drawer_open span:after {
  content: "";
  display: block;
  height: 1px;
  width: 30px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
  top: 7px;
}
@media screen and (min-width: 600px) {
  .drawer_open span:after {
    width: 50px;
    top: 15px;
  }
}

#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
#drawer_input:checked ~ .black {
  opacity: 1;
  visibility: visible;
}
#drawer_input:checked ~ .nav_content {
  transform: translateX(0%);
}

.nav_content {
  width: 90%;
  height: 100%;
  position: fixed;
  top: 0%;
  right: 0;
  z-index: 99;
  background: #000;
  transition: all 0.5s;
  text-align: center;
  padding-top: 20px;
  transform: translateX(100%);
}

.nav_list {
  padding: 0;
  margin-top: 4rem;
  list-style: none;
}
.nav_list .nav_item {
  max-width: 28vh;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
.nav_list .nav_item a {
  color: #fff;
  text-decoration: none;
}

.black {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 88;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity, color;
  visibility: hidden;
}

.top {
  position: relative;
}
.top .top_btn {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 25px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .top .top_btn {
    width: 30%;
  }
}

@media screen and (min-width: 600px) {
  .class {
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .class {
    padding: 0 6vw;
  }
}
@media screen and (min-width: 600px) {
  .class img.pc {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}
.class .visual .slide {
  text-align: center;
  width: 280px;
}
@media screen and (min-width: 600px) {
  .class .slick-list {
    margin: 0 70px;
  }
}
.class .prev-arrow,
.class .next-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: block;
  width: 50px;
  height: 50px;
  z-index: 10;
  background-size: contain;
  cursor: pointer;
}
.class .prev-arrow {
  left: 10px;
  background-image: url(../img/parts/class-arrow-l.png);
}
.class .next-arrow {
  right: 10px;
  background-image: url(../img/parts/class-arrow-r.png);
}
.class .dots-wrap {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 1.5rem;
  list-style-type: none;
}
.class .dots-wrap li {
  width: 8px;
  height: 8px;
  margin: 0 10px;
  background: #9e9e9e;
  border-radius: 50%;
  cursor: pointer;
}
.class .dots-wrap li.slick-active {
  background: #e88a1f;
}
.class .dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.class .class_btn {
  padding: 1rem 1rem 4rem;
  text-align: center;
}

.price {
  background-color: #eaeaea;
}
@media screen and (min-width: 600px) {
  .price {
    text-align: center;
  }
}
.price .price_1 {
  padding: 0 1rem;
  margin-bottom: 2rem;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.price .price_1::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 600px) {
  .price .price_1 {
    margin-bottom: 4rem;
  }
}
.price .price_1 img {
  width: 700px;
  max-width: fit-content;
}
@media screen and (min-width: 600px) {
  .price .price_1 img {
    width: -webkit-fill-available;
    max-width: 920px;
  }
}
.price .price_2 {
  padding: 0 1rem 3rem;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .price .price_2 img {
    max-width: 450px;
  }
}

.news {
  position: relative;
  background-image: url(../img/body-pc/news_back.jpg);
  background-size: cover;
  height: 980px;
}
@media screen and (min-width: 440px) {
  .news {
    height: 1250px;
  }
}
@media screen and (min-width: 600px) {
  .news {
    height: 1400px;
  }
}
@media screen and (min-width: 820px) {
  .news {
    height: 900px;
  }
}
.news .newsttl {
  text-align: center;
}
@media screen and (min-width: 600px) {
  .news .newsttl {
    padding: 5rem 36vw;
  }
}
.news .instagram {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  overflow: hidden;
}
@media screen and (min-width: 440px) {
  .news .instagram {
    top: 22%;
    max-width: 650px;
  }
}
@media screen and (min-width: 600px) {
  .news .instagram {
    top: 20%;
  }
}
@media screen and (min-width: 820px) {
  .news .instagram {
    top: 40%;
    max-width: 1100px;
  }
}
@media screen and (min-width: 821px) {
  .news .insta_sp {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .news .insta_pc {
    display: none;
  }
}

.flow {
  background-color: #f8f8f8;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .flow {
    padding: 0 30vw;
  }
}

.qa {
  padding: 0 20px 60px;
  background-image: url(../img/body/qa-back.png);
  background-size: 100%;
}
@media screen and (min-width: 600px) {
  .qa {
    text-align: center;
  }
}
.qa .details {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .qa .details {
    width: 706px;
    margin: 0 auto 20px;
  }
}
.qa .details-summary {
  position: relative;
  display: block;
}
.qa .details-summary:hover {
  cursor: pointer;
}
.qa .details-summary img {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 13px 0px rgba(0, 0, 0, 0.3);
}
.qa .details-summary .btn {
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  transform-origin: center center;
  transition-duration: 0.2s;
}
@media screen and (min-width: 600px) {
  .qa .details-summary .btn {
    width: 28px;
    height: 28px;
  }
}
.qa .details-summary .btn:before, .qa .details-summary .btn:after {
  content: "";
  background-color: #fff;
  width: 18px;
  height: 2px;
  position: absolute;
  top: 8px;
  left: 0;
  transform-origin: center center;
}
@media screen and (min-width: 600px) {
  .qa .details-summary .btn:before, .qa .details-summary .btn:after {
    width: 28px;
    top: 13px;
  }
}
.qa .details-summary .btn:before {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}
@media screen and (min-width: 600px) {
  .qa .details-summary .btn:before {
    height: 28px;
    left: 13px;
  }
}
.qa .details-summary.is-active .btn {
  top: 30%;
  right: 7%;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.qa .details-summary.is-active .btn:before {
  content: none;
}
.qa .details-summary::-webkit-details-marker {
  display: none;
}
.qa .details-content {
  position: relative;
}
.qa .details-content p {
  margin: 0 0 20px;
}
.qa .details-content p:last-of-type {
  margin: 0 0 0;
}
.qa .details-content p img {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 13px 0px rgba(0, 0, 0, 0.3);
}

.sec_10 {
  position: relative;
}
.sec_10 .sec10_btn {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 25px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .sec_10 .sec10_btn {
    bottom: 5%;
    width: 26%;
  }
}

.access {
  padding: 0 1rem;
}
.access .ace_ttl {
  text-align: center;
}
@media screen and (min-width: 600px) {
  .access .ace_ttl {
    width: 40%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 600px) {
  .access .flex {
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.access table {
  width: 100%;
  margin: 1rem 0 3rem;
  border-collapse: collapse;
}
@media screen and (min-width: 600px) {
  .access table {
    margin: 0;
    height: 400px;
  }
}
.access table tr:first-child td {
  border-top: 1px solid #000;
}
.access table tr td {
  padding: 1rem 0;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 600px) {
  .access table tr td {
    height: 25%;
  }
}
.access table tr td small {
  display: block;
  padding-top: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
@media screen and (min-width: 600px) {
  .access table tr td small {
    font-size: 14px;
  }
}
.access table tr td:first-child {
  width: 30%;
}
.access table tr td:last-child {
  width: 70%;
}

footer {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 0.7rem;
  text-align: center;
}/*# sourceMappingURL=style.css.map */