@charset "utf-8";

html {
  scroll-behavior: smooth;
}

:root {
  --color-theme: #4c4948;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

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

main{
	margin-top: 97px;
}

@media(max-width:575px) {
	main{
		margin-top: 76px;
	}
}

body {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #4c4948;
}

body.noscroll {
  overflow: hidden;
}

header {
  display: flex;
  position: relative;
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  left: 0;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 35px;
  height: 25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 4px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
  position: absolute;
  width: 35px;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 11px;
}
.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translateX(-66%);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translateX(-65%);
  bottom: -11px;
}

@media (max-width: 991px) {
  .hamburger {
    display: block;
  }
}

.header-logo {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1;
}

@media (max-width: 575px) {
  .header-logo {
    max-width: 110px;
  }
}

.bg-yellow {
  background-color: #fff100;
  padding: 23px 0;
  padding-right: 55px;
  padding-left: 15px;
}

@media (max-width: 1300px) {
  .bg-yellow {
    padding-right: 45px;
    padding-left: 45px;
  }
}

@media (max-width: 991px) {
  .bg-yellow {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 768px) {
  .bg-yellow {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.header-inner {
  position: relative;
  padding-right: 15px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-inner {
    justify-content: flex-start;
  }
}

.header-inner::before {
  content: "";
  width: calc((100vw - 1200px) / 2);
  height: 100%;
  display: block;
  position: absolute;
  right: 100%;
  background-color: #fff100;
}

@media (max-width: 991px) {
  #nav {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  #nav.active {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
    background-color: #fff;
  }
  .nav-inner {
    display: none;
  }

  #nav.active .nav-inner {
    display: flex;
    gap: 50px;
  }
}

.nav-inner {
  display: flex;
  gap: 100px;
}

@media (max-width: 1200px) {
  .nav-inner {
    gap: 35px;
  }
}

@media (max-width: 991px) {
  .nav-inner {
    height: 100%;
    flex-direction: column;
    padding-top: 100px;
    align-items: center;
    overflow: auto;
    padding-bottom: 50px;
  }
}

.nav-menu {
  display: flex;
  gap: 44px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 18px;
  }
}

@media (max-width: 991px) {
  .nav-menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

.nav-menu li {
  list-style-type: none;
  text-align: center;
}

.nav-menu li a {
  color: var(--color-theme);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
}

.nav-menu li a span {
  display: block;
  font-size: 13px;
  letter-spacing: 0;
}

@media(max-width:1200px) {
	.nav-menu li a{
		font-size: 14px;
	}
}

.header-inner {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  box-sizing: content-box;
}

@media (max-width: 1200px) {
  .header-inner {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap: 15px;
  }
}

.fv {
  position: relative;
  background-image: url(./img/fvv3.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  aspect-ratio: 2880 / 1773;
  height: auto;
}

@media (max-width: 768px) {
  .fv {
    background-position: center;
    height: 700px;
    overflow: hidden;
  }
}

.fv::after {
  content: "";
  background-image: url(./img/fv-text02.png);
  display: block;
  width: 888px;
  max-width: 100%;
  height: 180px;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: calc((100vw - 1200px) / 2);
  bottom: calc(50% - 45%);
}

@media (max-width: 1250px) {
  .fv::after {
    width: 750px;
    height: 150px;
    right: 30px;
  }
}

@media (max-width: 991px) {
  .fv::after {
    width: 550px;
    height: 112px;
  }
}

@media (max-width: 768px) {
  .fv::after {
    background-image: url(./img/fv-text02-sp.svg);
    width: 100px;
    height: 440px;
  }
}

@media (max-width: 575px) {
  .fv::after {
    width: 80px;
    height: 375px;
    right: 20px;
  }
}

@media (min-width: 1920px) {
  .fv::after {
    bottom: calc(50% - 43%);
  }
}

.fv-link a {
  display: block;
  width: 160px;
  text-align: center;
  color: #32932b;
  border: 3px solid #32932b;
  border-radius: 50px;
  padding: 9px 0;
  background: #fff;
  font-weight: bold;
}

.fv-link a:first-child {
  margin-bottom: 10px;
}

.fv-link {
  position: absolute;
  right: calc((100vw - 1200px) / 2);
  top: 50px;
}

.fv-link-sp {
  display: none;
}

@media (max-width: 1250px) {
  .fv-link {
    right: 15px;
  }
}

@media (max-width: 991px) {
  .fv-link {
    display: none;
  }
}

@media (max-width: 991px) {
  .fv-link-sp {
    display: block;
    position: static;
    display: flex;
    gap: 5px;
  }
  .fv-link-sp a {
    border: 2px solid #32932b;
    width: 140px;
  }
  .fv-link a:first-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .fv-link-sp a {
    width: 90px;
    padding: 8px 0;
    font-size: 12px;
  }
}

.fv-inner {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.fv-inner::before {
  content: "";
  background-image: url(./img/fv-text01.svg);
  display: block;
  /* width: 1200px;
	height: 430px; */
  width: 1273px;
  max-width: 100%;
  aspect-ratio: 1273 / 384;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: -230px;
  top: 0;
  z-index: 1;
}

@media (max-width: 1250px) {
  .fv-inner::before {
    width: 1000px;
  }
}

@media (max-width: 991px) {
  .fv-inner::before {
    width: 750px;
    left: 0;
  }
}

@media (max-width: 768px) {
  .fv-inner::before {
    max-width: unset;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .fv-inner::before {
    width: 600px;
  }
}

.section-title {
  font-size: 42px;
  text-align: center;
  color: #00561f;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 23px;
    margin-bottom: 15px;
  }
}

.top {
  padding-top: 65px;
}

@media (max-width: 768px) {
  .top {
    padding-top: 35px;
  }
}

.top-laed {
  font-size: 15px;
  text-align: center;
  line-height: calc(25 / 15);
  margin-bottom: 45px;
}

.swiper-button-prev,
.swiper-button-next {
  height: 30px;
  width: 30px;
  transform: translateY(50%);
}

@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    transform: translateY(25%);
  }
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 30px;
  margin: auto;
  width: 30px;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(./img/slide-arrow-left.svg);
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(./img/slide-arrow-right.svg);
}
/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-container {
  position: relative;
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

/* 前への矢印 */
.swiper-button-prev {
  left: -50px;
}
/* 次への矢印 */
.swiper-button-next {
  right: -50px;
}
/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -25px;
}

@media (max-width: 991px) {
  .swiper-button-prev {
    left: 0px;
  }
  /* 次への矢印 */
  .swiper-button-next {
    right: 0px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 25px;
    height: 25px;
  }
}

.swiper-pagination-bullet-active {
  background: #32932b;
}

.plan {
  position: relative;
}

.plan-bg {
  width: 100%;
  background: rgba(76, 73, 72, 0.1);
  clip-path: polygon(0 8%, 100% 2%, 100% 94%, 0 100%);
  /* clip-path: polygon(0px 30px, 100% 0px, 100% 100%, 0px 100%); */
  padding: 450px 0;
  position: relative;
}

@media (min-width: 1700px) {
  .plan-bg {
    clip-path: polygon(0 10%, 100% 0%, 100% 92%, 0 100%);
  }
}
@media (min-width: 2300px) {
  .plan-bg {
    clip-path: polygon(0 12%, 100% 0%, 100% 90%, 0 100%);
  }
}

@media (max-width: 1200px) {
  .plan-bg {
    clip-path: polygon(0 300px, 100% 2%, 100% 94%, 0 100%);
  }
}

@media (max-width: 991px) {
  .plan-bg {
    clip-path: polygon(0 200px, 100% 2%, 100% 96%, 0 100%);
	padding: 350px 0;
  }
}

@media (max-width: 768px) {
  .plan-bg {
    clip-path: polygon(0 200px, 100% 2%, 100% 96%, 0 100%);
    padding: 300px 0;
  }
}

@media (max-width: 575px) {
  .plan-bg {
    clip-path: polygon(0 130px, 100% 2%, 100% 97%, 0 100%);
    padding: 200px 0 150px;
  }
}

.plan::before {
  content: "";
  background-image: url(./img/text-plan.svg);
  background-repeat: no-repeat;
  width: 380px;
  height: 216px;
  position: absolute;
  top: 4%;
  left: calc((100vw - 1000px) / 2);
  z-index: 10;
}

@media (min-width: 1700px) {
  .plan::before {
    top: 4%;
  }
}
@media (min-width: 2300px) {
  .plan::before {
    top: 5%;
  }
}

@media (max-width: 1200px) {
  .plan::before {
    background-size: cover;
    left: 10px;
    width: 280px;
    top: 190px;
    height: 160px;
  }
}

@media (max-width: 991px) {
  .plan::before {
    top: 100px;
  }
}

@media (max-width: 768px) {
  .plan::before {
    top: 120px;
    width: 200px;
    height: 114px;
  }
}

@media (max-width: 575px) {
  .plan::before {
    top: 53px;
  }
}

.plan .container {
  max-width: 800px;
}

.plan-top-lead {
  font-size: 13px;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .plan-top-lead {
    margin-bottom: 20px;
  }
}

.plan .section-title {
  font-size: 32px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .plan .section-title {
    font-size: 22px;
  }
}

.plan-supplement {
  margin-top: 50px;
  margin-bottom: 130px;
}

@media (max-width: 991px) {
  .plan-supplement {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}

.reserve-link {
  margin-bottom: 115px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

@media (max-width: 768px) {
  .reserve-link {
    gap: 25px;
    margin-bottom: 50px;
  }
}

.reserve-link-lg {
  max-width: 100%;
}

.reserve-link-lg a {
  background-color: #fff;
  color: #32932b;
  width: 540px;
  max-width: 100%;
  display: block;
  padding: 22px 0;
  border-radius: 50px;
  border: 2px solid #32932b;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .reserve-link-lg a {
    font-size: 16px;
    padding: 13px 0;
    width: 300px;
  }
}

.gp-btn {
  background-color: #32932b;
  color: #fff;
  display: inline-block;
  width: 300px;
  text-align: center;
  padding: 15px 0;
  font-size: 22px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  font-weight: bold;
}

@media (max-width: 768px) {
  .gp-btn {
    font-size: 16px;
    padding: 13px 0;
  }
}

.plan-normal {
  margin-top: 120px;
}

@media (max-width: 768px) {
  .plan-normal {
    margin-top: 60px;
  }
}

.plan-normal h3 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 35px;
  font-weight: bold;
  color: #00561f;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .plan-normal h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.plan-normal table {
  width: 100%;
  background-color: #fff;
  color: #00561f;
}
.table-head {
  background-color: #00561f;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

.plan-normal table td {
  padding: 10px;
}

@media (max-width: 768px) {
  .plan-normal table td {
    padding: 8px;
  }
}

.plan-table-wrapper {
  background-color: #fff;
  padding: 30px 40px;
  margin-bottom: 90px;
}

@media (max-width: 768px) {
  .plan-table-wrapper {
    padding: 15px;
    margin-bottom: 50px;
  }
}

.plan-table-head {
  background-color: #00561f;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  letter-spacing: 0.14em;
  font-weight: bold;
  margin-bottom: 0;
}

.plan-normal table td {
  border-bottom: 1px solid #00561f;
}

@media (min-width: 769px) {
  .plan-normal table tr td:not(:first-child) {
    text-align: right;
  }
}

@media (max-width: 575px) {
  .plan-normal table tr td:not(:first-child) {
    display: block;
    width: 100%;
  }
  .plan-normal table tr td:last-child,
  .plan-normal table tr td:first-child {
    border-bottom: none;
  }

  .plan-normal table tr {
    border-bottom: 1px solid #00561f;
  }
}

@media (min-width: 576px) {
  .plan-normal table tr:last-child td {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .status {
    display: inline-block;
    min-width: 50px;
  }
}

.tax {
  font-size: 13px;
}

.price {
  font-size: 29px;
  color: #00561f;
  font-weight: bold;
  display: inline-block;
}

@media (max-width: 768px) {
  .price {
    font-size: 22px;
  }
}

.price {
  margin-left: 8px;
  margin-right: 5px;
}

.yen {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .yen {
    font-size: 15px;
  }
}

.pcan-gold {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .pcan-gold {
    margin-top: 30px;
  }
}

.pcan-gold {
  max-width: 755px;
  margin-right: auto;
  margin-left: auto;
}

.membership {
  padding-top: 60px;
  padding-bottom: 110px;
  position: relative;
}

@media (max-width: 768px) {
  .membership {
    padding-top: 100px;
  }
}

.membership::before {
  content: "";
  background-image: url(./img/text-membership.svg);
  background-repeat: no-repeat;
  width: 380px;
  height: 216px;
  position: absolute;
  top: -19%;
  left: calc((100vw - 1000px) / 2);
  z-index: 10;
}

@media (min-width: 1700px) {
  .membership::before {
    top: -22%;
  }
}

@media (min-width: 2300px) {
  .membership::before {
    top: -26%;
  }
}

@media (max-width: 1200px) {
  .membership::before {
    background-size: cover;
    width: 280px;
    height: 155px;
    left: 10px;
    top: -12%;
  }
}

@media (max-width: 768px) {
  .membership::before {
    width: 220px;
    height: 123px;
    left: 10px;
    top: -10%;
  }
}

@media(max-width:575px) {
	.membership::before{
		width: 220px;
		height: 123px;
		top: -12%;
	}
}

.instructor {
  position: relative;
}

.instructor-bg {
  background-image: url(./img/bg-instructorv2.jpg);
  clip-path: polygon(0 18%, 100% 0%, 100% 83%, 0 100%);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 400px 0 350px 0;
  position: relative;
}

@media (min-width: 1700px) {
  .instructor-bg {
    clip-path: polygon(0 20%, 100% 0%, 100% 77%, 0 100%);
    padding-bottom: 400px;
  }
}

@media (min-width: 2300px) {
  .instructor-bg {
    clip-path: polygon(0 29%, 100% 0%, 100% 70%, 0 100%);
  }
}

@media(max-width:1250px) {
	.instructor-bg{
		clip-path: polygon(0 15%, 100% 0%, 100% 87%, 0 100%);
	}
}

@media (max-width: 991px) {
  .instructor-bg {
    clip-path: polygon(0 12%, 100% 0%, 100% 86%, 0 100%);
    padding: 300px 0 300px 0;
  }
}

@media (max-width: 768px) {
  .instructor-bg {
    clip-path: polygon(0 9%, 100% 0%, 100% 90%, 0 100%);
    padding: 180px 0 200px 0;
  }
}

@media (max-width: 575px) {
  .instructor-bg {
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0 100%);
  }
}

.instructor::before {
  content: "";
  background-image: url(./img/text-instructor.svg);
  background-repeat: no-repeat;
  width: 430px;
  height: 216px;
  position: absolute;
  top: 6%;
  left: calc((100vw - 1000px) / 2);
  z-index: 10;
}

@media (min-width: 2300px) {
  .instructor::before {
    top: 12%;
  }
}

@media (max-width: 1250px) {
  .instructor::before {
    background-size: cover;
    left: 15px;
    width: 300px;
    height: 150px;
    top: 8%;
  }
}

@media (max-width: 991px) {
  .instructor::before {
    top: 5%;
  }
}

@media (max-width: 768px) {
  .instructor::before {
    top: 1%;
    width: 250px;
    height: 125px;
  }
}

@media (max-width: 575px) {
  .instructor::before {
    top: 0;
	width: 230px;
    height: 115px;
  }
}

.instructor:after {
  content: "";
  display: block;
  width: 100%;
  height: 40%;
  background: rgba(76, 73, 72, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.container.min {
  max-width: 790px;
}

.instructor-card {
  background-color: #fff;
  color: #4c4948;
  padding: 35px;
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .instructor-card {
    padding: 15px;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .instructor-card {
    flex-direction: column;
  }
}

.instructor-card:not(:last-child) {
  margin-bottom: 25px;
}

.instructor-card img {
  width: 200px;
  object-fit: cover;
}

@media (max-width: 575px) {
  .instructor-card img {
    width: 150px;
    height: 150px;
    margin: auto;
  }
}

.instructor-card h3 {
  font-size: 32px;
  border-bottom: 1px solid #00561f;
  padding-bottom: 16px;
  margin-bottom: 16px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .instructor-card h3 {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

.instructor-card h3 span {
  font-size: 16px;
  display: inline-block;
  margin-left: 15px;
  font-weight: normal;
}

@media (max-width: 768px) {
  .instructor-card h3 span {
    margin-left: 5px;
  }
}

.instructor-card p {
  font-size: 14px;
  line-height: calc(20 / 14);
  margin-bottom: 0;
}

.facility {
  background: rgba(76, 73, 72, 0.1);
  padding-bottom: 380px;
  padding-top: 170px;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 0% 100%);
}

@media (min-width: 1700px) {
  .facility {
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
  }
}

@media (min-width: 2300px) {
  .facility {
    clip-path: polygon(0% 0%, 100% 0%, 100% 77%, 0% 100%);
  }
}

@media (max-width: 991px) {
  .facility {
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
  }
}

@media (max-width: 768px) {
  .facility {
    padding-bottom: 150px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 0% 100%);
    padding-top: 120px;
  }
}

.map {
  background-color: #fff;
  padding: 50px 75px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .map {
    margin-bottom: 30px;
    padding: 30px;
  }
}

h3.yellow-marker {
  text-align: center;
  margin: 20px 0;
  font-size: 24px;
  line-height: calc(36 / 24);
  font-weight: bold;
  color: #00561f;
}

@media (max-width: 768px) {
  h3.yellow-marker {
    font-size: 20px;
    margin: 10px 0;
  }
}

h3.yellow-marker span {
  background: linear-gradient(transparent 50%, #fff100 50%);
}

.facility-item {
  content: "";
  position: absolute;
  bottom: -40px;
  left: calc((100vw - 1000px) / 2);
  z-index: 10;
}

@media (min-width: 1700px) {
  .facility-item {
    bottom: 10px;
  }
}

@media (min-width: 2300px) {
  .facility-item {
    bottom: 60px;
  }
}

@media (max-width: 1200px) {
  .facility-item {
    max-width: 300px;
    left: 15px;
    bottom: -45px;
  }
}

@media (max-width: 768px) {
  .facility-item {
    bottom: -40px;
	max-width: 260px;
  }
}

@media(max-width:575px) {
	.facility-item{
		max-width: 220px;
	}
}

.facility-text {
  font-size: 14px;
  line-height: calc(20 / 14);
}

section.sns {
  padding: 80px 0;
  position: relative;
}

section.sns::before {
  content: "";
  background-image: url(./img/text-sns.svg);
  background-repeat: no-repeat;
  width: 371px;
  height: 216px;
  position: absolute;
  top: -21%;
  left: calc((100vw - 1000px) / 2);
  z-index: 10;
}

@media (min-width: 1700px) {
  section.sns::before {
    top: -25%;
  }
}

@media (min-width: 2300px) {
  section.sns::before {
    top: -29%;
  }
}

@media (max-width: 1200px) {
  section.sns::before {
    left: 15px;
    background-size: cover;
    width: 270px;
    height: 157px;
    top: -13%;
  }
}

@media (max-width: 991px) {
  section.sns::before {
    top: -12%;
  }
}

@media (max-width: 768px) {
  section.sns::before {
    width: 200px;
    height: 117px;
    top: -9%;
  }
}

@media (max-width: 575px) {
  section.sns::before {
    top: -14%;
  }
}

.access {
  position: relative;
}

.access-inner {
  background-color: #e1e300;
  padding: 370px 0 150px 0;
  clip-path: polygon(0 20%, 100% 2%, 100% 100%, 0 100%);
}

@media (min-width: 1700px) {
  .access-inner {
    clip-path: polygon(0 22%, 100% 2%, 100% 100%, 0 100%);
    padding-top: 450px;
  }
}

@media (min-width: 2300px) {
  .access-inner {
    clip-path: polygon(0 27%, 100% 2%, 100% 100%, 0 100%);
  }
}

@media (max-width: 991px) {
  .access-inner {
    padding: 250px 0 100px;
    clip-path: polygon(0 15%, 100% 2%, 100% 100%, 0 100%);
  }
}

@media (max-width: 768px) {
  .access-inner {
    clip-path: polygon(0 11%, 100% 2%, 100% 100%, 0 100%);
    padding-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .access-inner {
    padding-top: 200px;
	clip-path: polygon(0 9%, 100% 2%, 100% 100%, 0 100%);
  }
}

.access::before {
  content: "";
  background-image: url(./img/text-access.svg);
  background-repeat: no-repeat;
  width: 371px;
  height: 216px;
  position: absolute;
  top: 8%;
  left: calc((100vw - 1000px) / 2);
  z-index: 10;
}

@media (min-width: 2300px) {
  .access::before {
    top: 12%;
  }
}

@media (max-width: 1200px) {
  .access::before {
    background-size: cover;
    left: 15px;
    width: 270px;
    height: 157px;
    top: 12%;
  }
}

@media (max-width: 991px) {
  .access::before {
    top: 6%;
  }
}

@media (max-width: 768px) {
  .access::before {
    top: 5%;
    width: 200px;
    height: 119px;
  }
}

@media (max-width: 575px) {
  .access::before {
    top: 1%;
  }
}

.insta-grid {
  margin-bottom: 75px;
}

@media (max-width: 768px) {
  .insta-grid {
    margin-bottom: 30px;
  }
}

.instagram-link-btn {
  display: block;
  text-align: center;
}

.gmap {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .gmap {
    margin-bottom: 15px;
  }
}

.gmap iframe {
  aspect-ratio: 760 / 363;
  width: 100%;
}

address {
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  address {
    margin-bottom: 15px;
  }
}

.gp-btn.white {
  background-color: #fff;
  color: #32932b;
  border: 2px solid #32932b;
}

address .tel-link {
  color: #4c4948;
  display: block;
}

@media (min-width: 769px) {
  .tel-link {
    pointer-events: none;
  }
}

.footer-company {
  padding-top: 95px;
  margin-top: 95px;
  border-top: 1px solid #000;
}

@media (max-width: 768px) {
  .footer-company {
    padding-top: 30px;
    margin-top: 30px;
  }
}

.footer-company-address {
  font-size: 14px;
  margin-bottom: 0;
  color: #000;
  font-weight: bold;
}

.footer-company .tel-link {
  color: #000;
  font-weight: bold;
  font-size: 22px;
}

@media (max-width: 768px) {
  .footer-company .tel-link {
    font-size: 18px;
  }
}

.footer-shop-name {
  font-size: 23px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #000;
}

@media (max-width: 768px) {
  .footer-shop-name {
    font-size: 18px;
  }
}

.footer-contact-btn {
  text-align: center;
  display: flex;
  justify-content: center;
}

.footer-contact-btn a {
  width: 360px;
  display: flex;
  justify-content: center;
  gap: 25px;
  font-weight: bold;
  align-items: center;
}

.plan-supplement {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 120px;
}

.plan-supplement li {
  list-style: none;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 13px;
}

@media (max-width: 768px) {
  .plan-supplement {
    margin-bottom: 50px;
  }
}

#plan {
  scroll-margin-top: 350px;
}

#access,
#instructor{
	scroll-margin-top: 380px;
}

#membership {
  scroll-margin-top: 300px;
}

#facility {
  scroll-margin-top: 380px;
}

@media (min-width: 1700px) {
  #membership {
    scroll-margin-top: 330px;
  }
  #facility {
    scroll-margin-top: 450px;
  }
}

@media (max-width: 991px) {
  #plan {
    scroll-margin-top: 450px;
}
#access{
	  scroll-margin-top: 236px;
  }
  #instructor {
    scroll-margin-top: 350px;
  }
  #membership {
    scroll-margin-top: 226px;
  }
  #facility {
	scroll-margin-top: 350px;
  }
}

@media(max-width:768px) {
	#plan {
		scroll-margin-top: 250px;
	}
	#access{
		  scroll-margin-top: 236px;
	  }
	  #instructor {
		scroll-margin-top: 220px;
	  }
	  #membership {
		scroll-margin-top: 270px;
	  }
	  #facility {
		scroll-margin-top: 300px;
	  }
}

@media(max-width:575px) {
	#plan {
		scroll-margin-top: 200px;
	}
	#instructor {
		scroll-margin-top: 250px;
	  }
	  #facility {
		scroll-margin-top: 280px;
	  }
}

/* 
.plan-normal table tr td:first-child{
	padding-left: 40px;
}

.plan-normal table tr td::last-child{
	padding-right: 40px;
} */
