@charset "UTF-8";
/*月額プランのアニメーションから*/
body {
  background-color: #f5f3ef;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1,
p,
button {
  color: #2c2c2c;
}

p {
  font-size: 12px;
}

h2 {
  font-size: 16px;
}

main {
  width: 100%;
  margin: auto;
}

main section {
  padding: 15px 0;
}

.section_icon {
  display: block;
  width: 80px;
  height: auto;
  margin: 0 auto 10px auto;
  object-fit: contain;
}

#nav_sp {
  height: 75px;
  background-color: #B4A694;
}

.hamburgericon {
  width: 35px;
  height: 40px;
}

.logo_a {
  height: 47.17px;
}

.logo_sp {
  width: 100px;
}

.reserve_btn_sp {
  width: 80px;
  height: 40px;
  font-weight: 550;
  color: #fff;
  background-color: #4585AF;
  border: none;
  box-shadow: 4px 4px #2C2C2C;
}

.line {
  border-bottom: solid 2px;
  padding: 4px 0;
}

.nav_sp_container {
  display: flex;
  justify-content: space-between;
  margin: 0 1rem;
  height: 75px;
  align-items: center;
}

#nav_sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background-color: #B4A694;
  z-index: 1000;
}


header {
  display: none;
}


/*heroセクション*/
#hero {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 75px;
}

.hero_bg {
  width: 100%;
  opacity: 0.7;
  height: auto;
  display: inline-block;
}

.hero_logo {
  width: 100px;
}

#hero button {
  width: 80px;
  height: 40px;
  color: #fff;
  background-color: #4585AF;
  border: none;
  font-weight: 550;
  cursor: pointer;
}

.hero_content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;

}

/*aboutセクション*/
#about {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6)), url(images/about_bg.jpeg)center/cover no-repeat;
}

.text_little {
  font-size: 10px;
  text-align: center;
  color: #000;
}

#about h1 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-top: -1rem;
  color: #000;
}

.about_text {
  font-size: 14px;
  color: #000;
  width: 80%;
}

/*spaceセクション*/
#space {
  width: 90%;
  margin: 0 auto;
}

.space_img {
  width: 125px;
  height: 125px;
  border: solid 1px #2c2c2c;
  border-radius: 10px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card {
  display: flex;
  border-radius: 10px;
  background-color: #C9B89A;
  align-items: center;
  padding: 3%;
  gap: 5%;
  border: solid 1px #2c2c2c;
}

.card_text .space_title {
  font-weight: bold;
}

/*planセクション*/
#plan {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
}

.plan_content {
  border: solid 2px #2c2c2c;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.plan_btn {
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 20px;
  width: 100%;
  text-align: left;
  padding: 10px 40px 10px 10px; 
  cursor: pointer;
  position: relative;
  background-color: #F5F3EF;
}
.toggle_icon {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: #2c2c2c;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.3s ease;
}

.toggle_icon::before {
  content: "";
  position: absolute;
  left: 6px;
  top: -6px;
  width: 2px;
  height: 15px;
  background-color: #2c2c2c;
  transition: all 0.3s ease;
}
.plan_btn.open .toggle_icon::before {
  opacity: 0;
}
.plan_btn.active .toggle_icon::before {
  opacity: 0;
}
.plan_btn.open .toggle_icon {
  transform: translateY(-50%) rotate(0deg); 
}

.plan_list_dropin {
  padding: 0 10px 10px 10px;
  width: 100%;
  display: none;
}

.plan_list_dropin.open {
  display: block;
}

.plan_list_dropin h2 {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}

.plan_list_dropin li {
  font-size: 12px;
}

.plan_list_dropin span {
  font-size: 10px;
}

.plan_list_dropin table {
  width: 100%;
}

.plan_list_dropin tr {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.plan_list_dropin td {
  text-align: left;
}

.attention {
  font-size: 10px;
  padding-left: 10px;
}

.attention span {
  text-decoration: underline;
}

.plan_list_monthly {
  padding: 0 10px 0 10px;
  width: 100%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.plan_list_dropin.active {
  opacity: 1;
}

.plan_list_monthly.active {
  opacity: 1;
  max-height: 500px; 
}

.plan_list_monthly h2 {
  text-align: left;
  font-weight: bold;
}

.plan_list_monthly td {
  font-weight: bold;
}

.plan_list_monthly p {
  text-align: left;
}

.plan_list_monthly table {
  width: 100%;
}

.plan_list_dropin tr {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.plan_list_dropin td {
  text-align: left;
}


.fs_contents {
  font-size: 16px;
  font-weight: bold;
}

.fs_contents span {
  font-size: 10px;
}

.facility_service {
  width: 90%;
  padding-left: 10px;
}

.facility_service li {
  display: flex;
  align-items: center;
  width: 45%;
  margin: 5px 0 5px 0;
}

.facility_service li p {
  font-size: 16px;
}

.facility_service ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10%;
  margin-bottom: 10px;
}

.fs_img {
  width: 30px;
}

.faq {
  padding: 0 10px;
}

.faq h2 {
  font-size: 16px;
  font-weight: bold;
  color: #2C2C2C;
}

.faq_btn {
  width: 100%;
  text-align: left;
  border: none;
  font-size: 16px;
  font-weight: 550;
  padding: 0;
  border-bottom: solid 1px #2C2C2C;
  position: relative;
  cursor: pointer;
  background: none;
}

.toggle_icon_faq {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: #2c2c2c;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.faq_btn.open {
  border-bottom: none;
}

.toggle_icon_faq::before {
  content: "";
  position: absolute;
  left: 6px;
  top: -6px;
  width: 2px;
  height: 15px;
  background-color: #2c2c2c;
  transition: all 0.3s ease;
}

.faq_btn.open .toggle_icon_faq::before {
  opacity: 0;
}

.faq_btn.open .toggle_icon_faq {
  transform: translateY(-50%) rotate(0deg);
}

.faq_text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-bottom: solid 1px #2C2C2C;
}

.faq_text.active {
  max-height: 500px;
  opacity: 1;
}

.faq_content {
  margin-bottom: 5px;
}

/*accessセクション*/
#access {
  width: 90%;
  margin: 0 auto;
}

.access_text h2 {
  text-align: center;
  font-weight: bold;
}

.area {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 15px;
}

.access_text table {
  width: 80%;
  margin: 0 auto;
}

.access_text td {
  font-size: 12px;
  font-weight: bold;
}

.parking {
  text-align: left;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 15px;
}

iframe {
  aspect-ratio: 1/1;
  width: 100%;
}

/*contactセクション*/
#contact .section_icon {
  height: 90px;
}

#contact {
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6)), url(images/contact_bg.jpeg)center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #000;
}

#contact button {
  border: none;
  background-color: #4585AF;
  font-size: 16px;
  height: 50px;
  padding: 0 10px;
}

/*footer*/
footer {
  width: 100%;
  background-color: #B4A694;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 15px;
}

footer img {
  width: 125px;
}

footer p {
  font-size: 10px;
  color: #fff;
}



.overlay {
  position: fixed;
  inset: 0;
  background-color: #B4A694;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.navlist_sp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30%;
}

.overlay .navlist_sp .nav_item {
  font-size: 28px;
  font-weight: bold;
  margin: 5px 0;
  text-align: center;
}

.navlist_sp img {
  width: 150px;
}

.line_x {
  position: relative;
  width: 35px;
  height: 35px;
  display: inline-block;
  cursor: pointer;
}

.line_x1,
.line_x2 {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 3px;
  background: #2c2c2c;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: transform .18s ease, background .18s ease;
  margin: 15px 10px;
}

.line_x1 {
  transform: translate(-50%, -50%) rotate(45deg);
}

.line_x2 {
  transform: translate(-50%, -50%) rotate(-45deg);
}


@media(min-width:768px) {
  #space,
  #plan,
  #access {
    width: 70%;
    margin: 0 auto;
  }

  p {
    font-size: 16px;
  }

  h2 {
    font-size: 20px;
  }

  button {
    font-size: 20px;
  }

  .section_icon {
    width: 80px;
  }

  #nav_sp {
    display: none;
  }

  header {
    height: 150px;
    background-color: #B4A694;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 999;
  }


  .logo_pc_a {
    width: 190px;
    height: 90px;
  }

  .logo_pc {
    width: 190px;
    height: 90px;
  }

  .reserve_btn_pc {
    width: 120px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    font-weight: 550;
    background-color: #4585AF;
    border: none;
    box-shadow: 4px 4px #2C2C2C;
  }

  .reserve_btn_pc :hover {
    color: #000;
    background-color: darkolivegreen;
  }

  .header_icon_btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1.5rem;
    gap: 20%;
  }

  .navlist_pc .nav_item a {
    font-size: 32px;
    font-weight: bold;
  }

  .navlist_pc {
    display: flex;
    gap: 2rem;
    justify-content: center;
  }



  /*heroセクション(768px)*/
  #hero {
    padding-top: 150px;
  }
  .hero_logo {
    width: 250px;
  }

  #hero button {
    width: 135px;
    height: 60px;
    font-size: 20px
  }

  /*aboutセクション(768px)*/
  .text_little {
    font-size: 0.8rem;
  }

  #about h1 {
    font-size: 2.2rem;
  }

  .about_text {
    font-size: 1rem;
  }

  /*planセクション(768px)*/
  .plan_btn,
  .plan_list_dropin h2,
  .fs_contents,
  .facility_service .fs_content {
    font-size: 20px;
  }

  .plan_list_dropin li {
    font-size: 16px;
  }

  .plan_list_dropin span {
    font-size: 12px;
  }

  .plan_list_monthly p,
  .fs_contents span {
    font-size: 14px;
  }

  .fs_img {
    width: 50px;
  }

  .faq h2 {
    font-size: 20px;
  }

  .faq_btn {
    font-size: 18px;
  }

  .faq_text {
    font-size: 14px;
  }

  /*accessセクション(768px)*/
  .area,
  .access_text td,
  .parking {
    font-size: 14px;
  }

  /*contactセクション(768px)*/
  #contact p {
    font-size: 26px;
  }

  #contact button {
    font-size: 18px;
  }

  /*footer*/
  footer {
    padding: 30px 0;
    gap: 15px;
  }

  footer img {
    width: 150px;
  }

  footer p {
    font-size: 12px;
  }

  /*contactページ*/
  
}

@media(min-width:1024px) {
  main {
    width: 100%;
  }

  p {
    font-size: 20px;
  }

  h2 {
    font-size: 24px;
  }

  button {
    font-size: 24px;
  }

  .section_icon {
    width: 150px;
  }

  .reserve_btn_pc {
    width: 150px;
    height: 60px;
    font-size: 24px;
  }

  .hero_logo {
    width: 350px;
  }

  #hero button {
    width: 150px;
    height: 60px;
    font-size: 24px
  }

  .header_icon_btn {
    justify-content: center;
    gap: 15%;
  }

  /*aboutセクション(1024px)*/
  #about {
    width: 70%;
    margin: 0 auto;
  }

  .text_little {
    font-size: 0.8rem;
  }

  #about h1 {
    font-size: 2.5rem;
    margin-top: -20px;
  }

  .about_text {
    font-size: 1.5rem;
  }

  /*spaceセクション(1024px)*/
  #space {
    width: 70%;
    margin: 0 auto;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex-direction: column;
    text-align: center;
    padding: 1%;
    gap: 15px;
  }

  .space_title {
    font-size: 22px;
  }

  .card_text p {
    font-size: 18px;
  }

  .space_img {
    aspect-ratio: 4/3;
    width: auto;
    height: 200px;
  }

  /*planセクション*/
  #plan {
    width: 60%;
    margin: 0 auto;
  }

  .plan_btn {
    font-size: 24px;
  }

  .plan_list_dropin h2 {
    font-size: 24px;
  }

  .plan_list_dropin li {
    font-size: 20px;
  }

  .plan_list_dropin span {
    font-size: 16px;
  }

  .plan_list_monthly p {
    font-size: 16px;
  }

  .plan_list_monthly td {
    font-size: 20px;
  }

  .facility_service .fs_content {
    font-size: 20px;
  }

  .fs_contents {
    font-size: 24px;
  }

  .plan_list_monthly p,
  .fs_contents span {
    font-size: 16px;
  }

  .faq h2 {
    font-size: 24px;
  }

  .faq_btn {
    font-size: 20px;
  }

  .faq_text {
    font-size: 16px;
  }

  /*accessセクション*/
  .area,
  .access_text td,
  .parking {
    font-size: 16px;
  }

  .area,
  .access_text table,
  .parking {
    width: 50%;
  }

  /*contactセクション(1024px)*/
  #contact .section_icon {
    height: 125px;
  }

  #contact p {
    font-size: 28px;
  }

  #contact button {
    font-size: 20px;
  }

  /*footer*/
  footer {
    padding: 30px 0;
    gap: 15px;
  }

  footer img {
    width: 200px;
  }

  footer p {
    font-size: 14px;
  }

  
}

@media(min-width:1440px) {
  p {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  button {
    font-size: 1.5rem;
  }



  .nav_item a {
    font-size: 32px;
  }

  .header_icon_btn {
    gap: 15%;
  }

  .hero_bg {
    height: 450px;
  }

  .text_little {
    font-size: 1.2rem;
  }

  #about h1 {
    font-size: 3.5rem;
    margin-top: -20px;
  }

  /*spaceセクション(1440px)*/
  #space {
    width: 50%;
  }

  .space_title {
    font-size: 28px;
  }

  .space_img {
    aspect-ratio: 4/3;
    width: auto;
    height: 300px;
  }

  .card_text p {
    font-size: 20px;
  }


  /*planセクション*/
  #plan {
    width: 40%;
    margin: 0 auto;
  }

  .plan_btn {
    font-size: 28px;
  }

  .plan_list_dropin h2 {
    font-size: 28px;
  }

  .plan_list_dropin li {
    font-size: 24px;
  }

  .plan_list_dropin span {
    font-size: 20px;
  }

  .plan_list_monthly p {
    font-size: 20px;
  }

  .plan_list_monthly td {
    font-size: 24px;
  }

  .plan_list_monthly h2 {
    font-size: 28px;
  }

  .fs_contents {
    font-size: 28px;
  }

  .fs_contents span {
    font-size: 16px;
  }

  .facility_service li {
    width: 26%;
  }

  .facility_service .fs_content {
    font-size: 16px;
  }

  .fs_img {
    width: 40px;
  }

  .faq h2 {
    font-size: 28px;
  }

  .faq_btn {
    font-size: 24px;
  }

  .faq_text {
    font-size: 20px;
  }

  /*accessセクション*/
  .access_text h2 {
    font-size: 28px;
  }

  .area,
  .access_text td,
  .parking {
    font-size: 20px;
  }

  .area,
  .access_text table,
  .parking {
    width: 40%;
  }

  /*contactセクション(1024px)*/
  #contact {
    padding: 40px 0;
  }

  #contact .section_icon {
    height: 150px;
  }

  #contact p {
    font-size: 30px;
  }

  #contact button {
    font-size: 24px;
  }

  /*footer*/
  footer {
    padding: 30px 0;
    gap: 30px;
  }

  footer img {
    width: 150px;
  }

  footer p {
    font-size: 14px;
  }
}