@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: 0.3s;
  text-decoration: none;
}

li {
  list-style: none;
}

body {
  background: #e5e4ec;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 2;
}

footer {
  line-height: 0;
  padding-top: 100px;
}
footer img {
  width: 100%;
}

header {
  position: absolute;
  width: 100%;
  top: 5vw;
  z-index: 100;
}
@media screen and (max-width: 800px) {
  header {
    top: 10vw;
  }
}
@media screen and (max-width: 500px) {
  header {
    top: 12vw;
  }
}
header .logo {
  position: relative;
  left: 5vw;
  width: 10vw;
}
@media screen and (max-width: 800px) {
  header .logo {
    width: 21vw;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  header .logo {
    width: 30vw;
  }
}
header .logo img {
  width: 100%;
}
header .drawer_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  cursor: pointer;
}
header .drawer_bg.active {
  opacity: 1;
  visibility: visible;
}
header .drawer_btn {
  position: fixed;
  top: 5vw;
  right: 5vw;
  font-size: 5vw;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  header .drawer_btn {
    font-size: 50px;
  }
}
header .drawer_btn span,
header .drawer_btn span:after,
header .drawer_btn span:before {
  content: "";
  display: block;
  width: 0.8em;
  height: 1px;
  background: #000;
  position: absolute;
  transition: 0.3s;
}
header .drawer_btn span:before {
  bottom: 0.15em;
  transition: 0.3s 0.3s, transform 0.3s;
}
header .drawer_btn span:after {
  top: 0.15em;
  transition: 0.3s 0.3s, transform 0.3s;
}
header .drawer_btn span.active {
  background: rgba(255, 255, 255, 0);
}
header .drawer_btn span.active:before {
  bottom: 0;
  transform: rotate(-30deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
header .drawer_btn span.active:after {
  top: 0;
  transform: rotate(30deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
header .drawer_content {
  width: -moz-fit-content;
  width: fit-content;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  padding: 15vw 12vw 5vw 5vw;
  overflow: scroll;
  position: fixed;
  top: 0;
  right: -100%;
  opacity: 0;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 200px -60px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 800px) {
  header .drawer_content {
    padding: 15vw 15vw 10vw 5vw;
  }
}
@media screen and (max-width: 500px) {
  header .drawer_content {
    width: 100%;
    text-align: center;
    padding-top: 40vw;
    padding: 40vw 5vw 5vw 5vw;
    align-items: center;
  }
}
header .drawer_content.active {
  opacity: 1;
  top: 0;
  right: 0;
}
header .drawer_content ul.nav {
  margin-bottom: 20px;
}
header .drawer_content ul.nav li a {
  display: block;
  color: #000;
  padding: 0.2em;
  letter-spacing: 0.05em;
}
header .drawer_content ul.sns {
  display: flex;
  gap: 0.2em;
  font-size: 35px;
}
header .drawer_content ul.sns li a {
  width: 1em;
  display: block;
}

.page_top {
  width: 100vw;
  height: 100vh;
}
.page_top .post {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 2em;
  bottom: 0;
  right: 0;
  margin: auto;
  font-size: 14px;
}
.page_top .post .inner {
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.8em 3em 0.8em 1.5em;
  border-radius: 5px 0 0 5px;
  box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 500px) {
  .page_top .post .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4em;
  }
}
.page_top .post .inner a,
.page_top .post .inner span {
  letter-spacing: 0.05em;
  color: #000;
  line-height: 1;
}
.page_top .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.page_top .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_top .bg img.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .page_top .bg img.pc {
    display: none;
  }
  .page_top .bg img.sp {
    display: block;
  }
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20vw 60px 0;
}
@media screen and (max-width: 800px) {
  main {
    padding: 40vw clamp(20px, 4vw, 60px) 15px;
  }
}
@media screen and (max-width: 600px) {
  main {
    padding: 60vw 15px 20px;
  }
}
main .inner {
  background: #fff;
  padding: clamp(20px, 4vw, 60px) clamp(20px, 6vw, 80px);
}
main .inner .txt h1 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1.5em;
  text-align: center;
}
main .inner .txt h2 {
  font-weight: 300;
  padding: 2em 0 1em;
  font-size: 22px;
}
main .inner .txt h3 {
  font-weight: 300;
  padding: 1.5em 0 1em;
  font-size: 18px;
  line-height: 1.8;
}
main .inner .txt p {
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 1em;
  letter-spacing: 0.05em;
}
main .inner .txt p:last-child {
  margin-bottom: 0;
}
main .inner .txt .photo {
  text-align: center;
  padding: 40px 20px;
}
main .inner .txt .photo img {
  width: 90%;
}
main .inner .txt .diagram {
  text-align: center;
  padding: 40px 20px;
}
main .inner .txt .diagram img {
  max-width: 400px;
  width: 100%;
}
main .inner .txt .btn {
  padding: 20px 0 40px;
}
main .inner .txt .btn a {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 0.5em 1em;
  font-size: 14px;
}
main .inner .txt .price_list {
  display: flex;
  gap: 10px;
  line-height: 1.6;
}
@media screen and (max-width: 650px) {
  main .inner .txt .price_list {
    flex-direction: column;
  }
}
main .inner .txt .price_list .item {
  flex: 1;
  padding: 20px clamp(20px, 2.5vw, 30px);
  background: #fff;
}
main .inner .txt .price_list .item:last-child {
  border-right: none;
}
main .inner .txt .price_list .item .title {
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 15px;
}
main .inner .txt .price_list .item .price {
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.05em;
}
main .inner .txt .price_list .item .price small {
  font-size: 14px;
  padding-left: 0.2em;
}
main .inner .txt .price_list .item ul.content {
  font-size: 14px;
  padding: 1em 0;
  margin: 1.5em 0;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
main .inner .txt .price_list .item ul.content li {
  display: flex;
  align-items: center;
  padding: 0.2em 0;
  gap: 0.2em;
}
main .inner .txt .price_list .item ul.content li::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-size: cover;
}
main .inner .txt .price_list .item ul.content li.on::before {
  background-image: url(../img/page/membership/on.svg);
}
main .inner .txt .price_list .item ul.content li.off {
  opacity: 0.5;
}
main .inner .txt .price_list .item ul.content li.off::before {
  background-image: url(../img/page/membership/off.svg);
}
main .inner .txt .price_list .item ul.price_sub li {
  display: flex;
  padding: 0.2em 0;
  font-size: 14px;
}
main .inner .txt .price_list .item ul.price_sub li span:nth-child(1) {
  flex: 1;
  display: flex;
  align-items: center;
}
main .inner .txt .price_list .item ul.price_sub li span:nth-child(1)::after {
  content: "";
  flex: 1;
  display: block;
  height: 1px;
  margin: 0 0.5em;
  background: rgba(0, 0, 0, 0.2);
}
main.page_about .inner .member {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  padding-top: 40px;
  margin-top: 40px;
}
main.page_about .inner .member h2 {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1.5em;
}
main.page_about .inner .member ul li {
  display: flex;
  margin-bottom: 15px;
}
main.page_about .inner .member ul li span {
  letter-spacing: 0.05em;
  font-size: 14px;
}
main.page_about .inner .member ul li span:nth-child(1) {
  border-right: solid 1px rgba(0, 0, 0, 0.5);
  text-align: right;
  margin-right: 1em;
  padding-right: 1em;
}
main.page_news .inner ul li {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  padding: 2em 0.5em;
  font-size: 15px;
}
main.page_news .inner ul li span {
  display: block;
  margin-bottom: 0.4em;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: 0.05em;
}
main.page_news .inner ul li a {
  display: block;
  color: #000;
  letter-spacing: 0.05em;
}
main.page_news .inner ul li a:hover {
  opacity: 0.6;
}
main.single article {
  background: #fff;
  padding: clamp(20px, 4vw, 60px) clamp(20px, 6vw, 80px);
}
main.single article h1,
main.single article h2,
main.single article h3,
main.single article h4,
main.single article h5,
main.single article h6 {
  font-weight: 300;
  padding: 2em 0 0.5em;
  font-size: 18px;
  letter-spacing: 0.05em;
}
main.single article h1 {
  font-size: 26px;
  padding: 0 0 1em;
}
main.single article h2 {
  font-size: 24px;
}
main.single article h3 {
  font-size: 22px;
}
main.single article .date {
  font-size: 15px;
  letter-spacing: 0.05em;
}
main.single article p {
  font-size: 15px;
  letter-spacing: 0.05em;
}
main.single article p a {
  text-decoration: underline;
  color: #000;
}
main.single article p a:hover {
  opacity: 0.6;
}/*# sourceMappingURL=style.css.map */