@charset "UTF-8";
/**
 * Foundation
 */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
  --default-white: #f0f0f0;
  --default-black: #404040;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP";
  font-size: 12px;
  color: var(--default-black);
  scroll-behavior: smooth;
  letter-spacing: 0.1em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

img {
  display: block;
}

ol, ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  color: initial;
}

/**
 * Layout
 */
.l-header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.75);
}
.l-header__logo {
  display: block;
  padding: 0 20px;
  z-index: 20;
}
.l-header__logo > img {
  display: block;
  height: 40px;
  margin: 0 auto;
}
.l-header__button {
  display: none;
}

.l-nav {
  display: flex;
  padding-left: 20px;
}
.l-nav__items {
  display: flex;
  gap: 20px;
}
.l-nav__items > li {
  font-size: 1.125rem;
}
.l-nav__items > li:hover {
  color: gray;
}
.l-nav__items > li > a {
  display: block;
  padding: 5px;
}

@media screen and (max-width: 900px) {
  .l-header {
    justify-content: center;
  }
  .l-header__button {
    display: block;
    padding: 20px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    font-size: 32px;
  }
  .l-nav {
    width: 100vw;
    height: 0vh;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    background-color: var(--default-white);
    overflow: hidden;
    transition: 0.5s;
  }
  .l-nav.is-open {
    height: 100vh;
    visibility: visible;
  }
  .l-nav__items {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 80px;
  }
  .l-nav__items > li {
    padding: 0 20px;
    font-size: 1.25rem;
    text-align: center;
  }
  .l-nav__items > li > a {
    padding: 16px;
    border-bottom: 1px solid silver;
  }
}
.l-main {
  margin: 0 auto;
  padding-bottom: 100px; /* bottom spacing */
}
.l-main__title {
  margin-top: 80px;
  padding: 1em 0;
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  background-color: var(--default-white);
}

@media screen and (max-width: 900px) {
  .l-main {
    width: unset;
  }
}
.l-footer {
  padding: 0 10px;
}
.l-footer__logo {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.l-footer__logo > img {
  width: 160px;
}
.l-footer__inner {
  padding: 40px 0;
  border-top: 1px solid silver;
  text-align: center;
}
.l-footer__copyright {
  padding: 1em 0;
}

.l-links {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin: 20px 0;
  font-size: 3.5rem;
}

.l-address {
  margin: 10px 0;
  font-size: 1.25rem;
}
.l-address > p {
  margin: 0.5em 0;
}

/**
 * Component
 */
.c-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}
.c-section__head {
  margin-bottom: 60px;
}
.c-section__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 1em;
  border-bottom: 2px solid var(--default-black);
  font-size: 2rem;
  letter-spacing: 0.2em;
}

.c-message {
  padding: 1em 0 2em;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 600px) {
  .c-message {
    font-size: 2rem;
  }
}
.c-card {
  display: flex;
  gap: 30px;
  font-size: 1.25rem;
}
.c-card__text > p {
  margin: 1em 0;
}
.c-card__image {
  max-width: 400px;
}
.c-card.-reversed {
  flex-direction: row-reverse;
}

@media screen and (max-width: 900px) {
  .c-card {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .c-card__text {
    max-width: 600px;
  }
  .c-card__image {
    width: 100%;
  }
  .c-card.-reversed {
    flex-direction: column;
  }
}
.c-table {
  border-collapse: collapse;
}
.c-table__row {
  border-top: 1px solid silver;
  border-bottom: 1px solid silver;
}
.c-table__column {
  padding: 10px;
}
.c-table__column.-left {
  width: 120px;
  border-right: 1px solid silver;
}
.c-button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.5em;
  font-size: 1.5rem;
  line-height: 3em;
  border-radius: 1.6em;
  border: 1px solid var(--default-black);
  background-color: var(--default-black);
  color: var(--default-white);
  transition: 0.25s;
}
.c-button:hover {
  background-color: var(--default-white);
  color: var(--default-black);
}
.c-button.-color-line {
  background-color: #00b900;
  border: 1px solid #00b900;
}
.c-button.-color-line:hover {
  background-color: var(--default-white);
  color: #00b900;
}

/**
 * Project
 */
.p-mainvisual {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: -10;
  overflow: hidden;
}
.p-mainvisual__slides > img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 1s;
}
.p-mainvisual__slides > img.is-hidden {
  opacity: 0;
}
.p-mainvisual__slides.is-vertical > img {
  width: unset;
  height: 100%;
}
.p-mainvisual__filter {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.25);
}
.p-mainvisual__logo {
  max-width: 60%;
  max-height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes lights-on {
  from {
    background-color: white;
  }
  to {
    background-color: turquoise;
  }
}
.p-concept {
  padding: 80px 0;
}
.p-concept__inner {
  width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-concept__heading {
  margin-bottom: 1em;
  font-size: 2.5rem;
}
.p-concept__content {
  display: flex;
}
.p-concept__text {
  margin-right: 40px;
  font-size: 1.25rem;
}
.p-concept__text > p {
  margin: 1em 0;
}
.p-concept__image {
  max-width: 400px;
}

.p-purpose {
  padding: 60px 0;
  background-color: var(--default-white);
}
.p-purpose__inner {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 20px;
}
.p-purpose__heading {
  margin-bottom: 1em;
  font-size: 2rem;
}
.p-purpose__content {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}
.p-purpose__list {
  list-style: disc;
  margin-right: 40px;
  padding-left: 1.5em;
  font-size: 1.25rem;
}
.p-purpose__list > li {
  margin: 0.5em 0;
}
.p-purpose__button {
  margin: 0 auto;
}
.p-purpose__image {
  max-width: 300px;
}

.p-blog {
  padding: 60px 0;
  background-color: #f9f6f3;
}
.p-blog__inner {
  width: fit-content;
  margin: 0 auto;
  padding: 0 20px;
}
.p-blog__heading {
  margin-bottom: 1em;
  font-size: 2rem;
}
.p-blog__posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.p-blog__post {
  display: block;
  padding: 20px 24px;
  background-color: #fff;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
  min-width: 300px;
}
.p-blog__post:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.p-blog__post-date {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 6px;
}
.p-blog__post-title {
  font-size: 1.1rem;
  font-weight: bold;
}
.p-blog__button {
  margin: 0 auto;
}
.p-blog__empty {
  color: #999;
  font-size: 1rem;
}

@media screen and (max-width: 900px) {
  .p-concept__inner {
    width: unset;
  }
  .p-concept__heading {
    text-align: center;
  }
  .p-concept__content {
    flex-direction: column;
    align-items: center;
  }
  .p-concept__text {
    max-width: 400px;
    margin-right: 0;
    margin-bottom: 2em;
    text-align: center;
  }
  .p-concept__image {
    width: 100%;
  }
  .p-purpose__inner {
    width: unset;
  }
  .p-purpose__heading {
    text-align: center;
  }
  .p-purpose__content {
    flex-direction: column;
    align-items: center;
  }
  .p-purpose__list {
    margin-right: 0;
    margin-bottom: 2em;
  }
  .p-purpose__image {
    width: 100%;
  }
}
.p-about__catch-copy {
  padding-bottom: 1em;
  text-align: center;
  font-size: 2.5rem;
}

.p-flow {
  text-align: center;
}
.p-flow__steps {
  display: flex;
  gap: 20px;
}
.p-flow__steps > li {
  width: 200px;
  padding: 15px;
  border: 1px solid var(--default-white);
}
.p-flow__image {
  width: 160px;
  height: 160px;
  margin: 0 auto 10px;
  border-radius: 80px;
}
.p-flow__step {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: bold;
}
.p-flow__text {
  font-size: 1.25rem;
}

@media screen and (max-width: 900px) {
  .p-flow__steps {
    flex-direction: column;
    align-items: center;
  }
  .p-flow__steps > li {
    width: unset;
    max-width: 400px;
  }
}
.p-plan {
  padding: 0 10px;
}
.p-plan__group {
  margin-bottom: 80px;
}
.p-plan__heading {
  margin-bottom: 1em;
  font-size: 1.5rem;
  font-weight: bold;
}
.p-plan__text {
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: 1.25rem;
}
.p-plan__item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 20px;
  border: 1px solid silver;
}
.p-plan__type {
  flex-grow: 1;
  font-size: 1.25rem;
}
.p-plan__price {
  text-align: right;
}

.p-price {
  font-weight: bold;
}
.p-price__non-taxed {
  font-size: 2rem;
}
.p-price__taxed {
  font-size: 1.25rem;
}

.p-tickets {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}
.p-tickets__item {
  flex-basis: 0;
  flex-grow: 1;
  padding: 15px;
  position: relative;
  border: 1px solid silver;
  text-align: center;
}
.p-tickets__item.-recommended {
  background-color: var(--default-black);
  color: var(--default-white);
}
.p-tickets__type {
  font-size: 1.25rem;
}
.p-tickets__comment {
  margin-top: 1em;
}

@media screen and (max-width: 900px) {
  .p-plan__item {
    flex-direction: column;
    padding: 15px;
  }
  .p-plan__price {
    text-align: center;
  }
  .p-tickets {
    flex-direction: column;
  }
}
.p-profile {
  display: flex;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-size: 1.25rem;
}
.p-profile__left {
  padding-top: 0.5em;
}
.p-profile__image {
  width: 300px;
}
.p-profile__right {
  margin-left: 40px;
}
.p-profile__heading {
  margin-bottom: 30px;
  padding: 0.5em 0;
  padding-left: 20px;
  border-left: 4px solid var(--default-black);
}
.p-profile__name {
  font-size: 2.5rem;
}

.p-prof-story__heading {
  margin-bottom: 0.5em;
  font-size: 2rem;
}
.p-prof-story__body {
  margin-bottom: 2em;
}
.p-prof-story__body > p {
  margin-bottom: 1em;
}

.p-prof-licenses__heading {
  font-size: 1.25rem;
}
.p-prof-licenses__list {
  margin-left: 2em;
  list-style: circle;
}

@media screen and (max-width: 900px) {
  .p-profile__image {
    width: 240px;
  }
}
@media screen and (max-width: 600px) {
  .p-profile {
    flex-direction: column;
    align-items: center;
  }
  .p-profile__image {
    margin-top: 0;
  }
  .p-profile__right {
    margin-left: 0;
    margin-top: 40px;
  }
  .p-prof-story__heading {
    text-align: center;
  }
}
.p-faq {
  padding: 0 20px;
  font-size: 1.25rem;
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}
.p-faq__list > li {
  position: relative;
  border: 1px solid var(--default-black);
}
.p-faq__question {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 2em;
  background-color: var(--default-black);
  color: var(--default-white);
}
.p-faq__question::before {
  content: "Q. ";
}
.p-faq__answer {
  display: none;
  padding: 0.5em 1em;
  background-color: var(--default-white);
}
.p-faq__answer.is-open {
  display: block;
}
.p-faq__answer::before {
  content: "A. ";
}
.p-faq__toggle {
  padding: 0.5em;
  position: absolute;
  top: 0;
  right: 0;
}
.p-faq__toggle::before {
  content: "＋";
  color: var(--default-white);
}
.p-faq__toggle.is-open::before {
  content: "－";
}

.p-reserve__text, .p-contact__text {
  font-size: 1.5rem;
  text-align: center;
}
.p-reserve__text > p, .p-contact__text > p {
  margin: 0.5em 0;
}
.p-reserve__links, .p-contact__links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

@media screen and (max-width: 900px) {
  .p-reserve__links, .p-contact__links {
    flex-direction: column;
    align-items: center;
  }
}
.p-access {
  display: flex;
  justify-content: center;
  padding: 0 10px;
}
.p-access__map {
  flex-grow: 1;
  height: 450px;
}
.p-access__info {
  width: 360px;
  padding-left: 20px;
}

@media screen and (max-width: 900px) {
  .p-access {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .p-access__map {
    flex-grow: 0;
    width: 100%;
  }
  .p-access__info {
    width: unset;
    padding-top: 40px;
    padding-left: 0;
  }
}/*# sourceMappingURL=style.css.map */