@charset "UTF-8";
body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

figure,
p {
  margin: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

dl,
dd {
  margin: 0;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  background: none;
}

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

:root {
  --black: #303030;
  --blue: #61b5c4;
  --gray: #414141;
  --lightgray: #cccccc;
  --zen: 400 1em "Zen Maru Gothic", serif;
  --zenm: 500 1em "Zen Maru Gothic", serif;
  --zenb: 700 1em "Zen Maru Gothic", serif;
  --lightblue: rgba(153, 255, 255, 0.2);
  --lightblue2: rgba(153, 255, 255, 0.3);
}
@media (max-width: 567px) {
  :root {
    font-size: 3.5555555556vw;
  }
}
@media (min-width: 568px) {
  :root {
    font-size: 1.5625vw;
  }
}
@media (min-width: 1281px) {
  :root {
    font-size: 20px;
  }
}
:root body {
  color: var(--black);
  font-family: "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  line-height: 1.6;
  text-align: justify;
}
@media (max-width: 567px) {
  :root body {
    font-size: 1rem;
  }
}
@media (min-width: 568px) {
  :root body {
    font-size: 0.8rem;
  }
}
:root button,
:root label {
  cursor: pointer;
}
:root img {
  vertical-align: bottom;
  max-width: 100%;
}
@media (max-width: 567px) {
  :root .pc-only {
    display: none;
  }
}
@media (min-width: 568px) {
  :root .sp-only {
    display: none;
  }
}

body:not(.loaded) main {
  opacity: 0;
}

body.loaded main {
  opacity: 1;
  transition: 1.2s;
}

.p-aboutus {
  display: grid;
  padding-bottom: 6rem;
}
@media (max-width: 567px) {
  .p-aboutus {
    grid-row-gap: 3rem;
  }
}
@media (min-width: 568px) {
  .p-aboutus {
    grid-row-gap: 4.5rem;
  }
}
.p-aboutus__video {
  display: grid;
  grid-row-gap: 1rem;
  justify-items: center;
}
@media (max-width: 567px) {
  .p-aboutus__video {
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-aboutus__video {
    justify-self: center;
    width: 46rem;
  }
}
@media (min-width: 568px) {
  .p-aboutus__video-caption img {
    height: 3.85rem;
  }
  body.page-online .p-aboutus__video-caption img {
    height: 1.5rem;
  }
}
.p-aboutus__video video {
  width: 100%;
}
.p-aboutus__contents {
  display: grid;
  grid-row-gap: inherit;
}
@media (max-width: 567px) {
  .p-aboutus__contents {
    padding: 0 6%;
  }
}
.p-aboutus__content {
  display: grid;
  justify-items: center;
}
@media (max-width: 567px) {
  .p-aboutus__content {
    grid-row-gap: 1.5rem;
    grid-template-areas: "caption" "image" "text";
  }
}
@media (min-width: 568px) {
  .p-aboutus__content {
    grid-row-gap: 1.3rem;
    grid-template-rows: max-content 1fr;
    align-content: start;
  }
  .p-aboutus__content:nth-of-type(odd) {
    grid-template-areas: "blank caption image" "blank text image";
    grid-template-columns: 1fr 25rem 50%;
  }
  .p-aboutus__content:nth-of-type(even) {
    grid-template-areas: "image caption blank" "image text blank";
    grid-template-columns: 50% 25rem 1fr;
  }
}
.p-aboutus__content-image {
  grid-area: image;
}
.p-aboutus__content-caption {
  grid-area: caption;
}
.p-aboutus__content-text {
  grid-area: text;
}
@media (min-width: 568px) {
  .p-aboutus__content-image {
    width: 100%;
    height: 15.7rem;
    object-fit: cover;
  }
}
.p-aboutus__content-caption {
  font: var(--zen);
  display: grid;
  justify-items: center;
  grid-row-gap: 1rem;
  color: var(--blue);
  font-size: 1.25rem;
}
@media (min-width: 568px) {
  .p-aboutus__content-caption {
    padding-top: 1rem;
  }
}
.p-aboutus__content-caption img {
  height: 2.9rem;
}
body.page-online .p-aboutus__content-caption img {
  height: 3rem;
}
@media (min-width: 568px) {
  .p-aboutus__content-text {
    width: 20rem;
  }
}

.p-activities {
  display: grid;
  grid-row-gap: 3.5rem;
  justify-items: center;
  padding: 4rem 0;
}
body.page-bali .p-activities {
  background-color: var(--lightblue2);
}

.p-activities__list {
  display: grid;
}
@media (min-width: 568px) {
  .p-activities__list {
    width: 50rem;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
  }
}
.p-activities__list-image {
  aspect-ratio: 3/2;
  object-fit: cover;
}

.p-campaign {
  display: grid;
  grid-row-gap: 3.5rem;
  justify-items: center;
  padding: 4rem 0;
  background: var(--lightblue);
}
.p-campaign__body {
  display: grid;
  grid-row-gap: 1.5rem;
  align-content: start;
  justify-items: center;
  box-sizing: border-box;
  background: no-repeat center top/contain;
}
@media (max-width: 567px) {
  body.page-online .p-campaign__body {
    grid-row-gap: 0.5rem;
  }
}
@media (min-width: 568px) {
  body.page-online .p-campaign__body {
    grid-row-gap: 1rem;
  }
}
@media (max-width: 567px) {
  .p-campaign__body {
    aspect-ratio: 1013/994;
    width: 25rem;
    padding: 6.5rem 7% 0;
    background-image: url(../images/campaign_base_sp.png);
  }
}
@media (min-width: 568px) {
  .p-campaign__body {
    aspect-ratio: 772/494;
    width: 38.6rem;
    padding-top: 6rem;
    background-image: url(../images/campaign_base.png);
  }
}
.p-campaign__caption {
  display: block;
  color: var(--blue);
  font: var(--zen);
  text-align: center;
}
@media (max-width: 567px) {
  .p-campaign__caption {
    font-size: 0.9rem;
    font-size: 1.2rem;
  }
  .p-campaign__caption span {
    display: block;
  }
}
@media (min-width: 568px) {
  .p-campaign__caption {
    font-size: 1.2rem;
  }
  .p-campaign__caption span {
    display: inline-block;
  }
  .p-campaign__caption img {
    display: block;
  }
}
@media (max-width: 567px) {
  .p-campaign__caption img {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 568px) {
  .p-campaign__caption img {
    margin-bottom: 1rem;
    width: 24.6rem;
  }
}
@media (max-width: 567px) {
  .p-campaign__price {
    width: 100%;
  }
}
@media (min-width: 568px) {
  .p-campaign__price {
    width: 25.4rem;
  }
}
@media (max-width: 567px) {
  .p-campaign__notes {
    font-size: 0.65rem;
  }
}
.p-campaign__notes strong {
  font-weight: bold;
}

.p-column {
  display: grid;
  grid-row-gap: 3.5rem;
  justify-items: center;
  padding: 4rem 0;
}
@media (max-width: 567px) {
  .p-column__list {
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-column__list {
    width: 50rem;
  }
}

.p-faq {
  display: grid;
  padding-bottom: 6rem;
}
.p-faq__list {
  display: grid;
  grid-row-gap: 0.5rem;
}
@media (max-width: 567px) {
  .p-faq__list {
    margin-top: 2rem;
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-faq__list {
    position: relative;
    left: 50%;
    transform: translate(calc(-100% - 2.5rem));
    margin-top: -6.7rem;
    width: 22.5rem;
  }
}
.p-faq__list-q {
  position: relative;
  padding-right: 4rem;
  padding-bottom: 0.5rem;
  cursor: pointer;
}
.p-faq__list-q:nth-of-type(n+2) {
  border-top: 1px solid var(--black);
  padding-top: 0.5rem;
}
.p-faq__list-q::before {
  content: "Q:　";
}
.p-faq__list-q::after {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  display: flex;
  justify-content: center;
  width: 1em;
  margin-left: auto;
  transform-origin: right center;
  transform: translateY(-50%) scale(2);
  font-size: 1em;
}
.p-faq__list-q:not(.open)::after {
  content: "+";
}
.p-faq__list-q.open::after {
  content: "-";
}
.p-faq__list-a:not(.open) {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.p-faq__list-a.open {
  transition: 400ms 100ms;
}
.p-faq__list-a::before {
  content: "A:　";
}

.p-footer {
  display: grid;
  justify-items: center;
  margin-top: 4rem;
  border-top: 1px solid var(--blue);
}
@media (max-width: 567px) {
  .p-footer {
    padding: 4rem 1.6rem 8rem;
    grid-row-gap: 3rem;
  }
}
@media (min-width: 568px) {
  .p-footer {
    grid-template-areas: "logo mainmenu" "infomenu infomenu" "copyright copyright";
    justify-content: center;
    grid-column-gap: 2rem;
    grid-row-gap: 3.5rem;
    padding: 4rem 0;
  }
  .p-footer__logo {
    grid-area: logo;
  }
  .p-footer__mainmenu {
    grid-area: mainmenu;
  }
  .p-footer__infomenu {
    grid-area: infomenu;
  }
  .p-footer__copyright {
    grid-area: copyright;
  }
}
@media (max-width: 567px) {
  .p-footer__logo {
    width: 9.5rem;
  }
}
@media (min-width: 568px) {
  .p-footer__logo {
    width: 8.7rem;
  }
}
.p-footer__mainmenu a, .p-footer__submenu a {
  flex-grow: 1;
}
.p-footer__mainmenu a:hover, .p-footer__submenu a:hover {
  background: linear-gradient(var(--blue), var(--blue)) no-repeat left bottom/100% 1px;
  color: rgba(51, 51, 51, 0.5);
}
.p-footer__mainmenu {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  grid-gap: 2.5rem 3rem;
  align-items: start;
}
@media (min-width: 568px) {
  .p-footer__mainmenu {
    margin-top: 1rem;
  }
}
.p-footer__mainmenu-item {
  display: grid;
  grid-row-gap: 0.5rem;
  font: var(--zen);
}
@media (max-width: 567px) {
  .p-footer__mainmenu-item {
    font-size: 0.7rem;
  }
}
@media (min-width: 568px) {
  .p-footer__mainmenu-item {
    min-width: 6rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 567px) {
  .p-footer__mainmenu-item:nth-of-type(3) {
    grid-column: 2/4;
    grid-row: 1;
  }
  .p-footer__mainmenu-item:nth-of-type(5) {
    grid-column: 3;
    grid-row: 1;
  }
  .p-footer__mainmenu-item:nth-of-type(4) {
    grid-column: 2/4;
    grid-row: 2;
  }
  .p-footer__mainmenu-item:nth-of-type(6) {
    grid-column: 3;
    grid-row: 2;
  }
}
.p-footer__submenu {
  display: grid;
  grid-row-gap: 0.25rem;
}
.p-footer__submenu-item {
  display: flex;
  align-items: center;
  column-gap: 0.7rem;
  font: var(--zen);
}
@media (max-width: 567px) {
  .p-footer__submenu-item {
    font-size: 0.7rem;
  }
}
@media (min-width: 568px) {
  .p-footer__submenu-item {
    font-size: 0.8rem;
  }
}
.p-footer__submenu-item::before {
  content: "";
  border-top: 1px solid var(--black);
  width: 0.4rem;
}
.p-footer__infomenu {
  display: flex;
  align-items: center;
  column-gap: 2.5rem;
}
.p-footer__infomenu-item {
  font: var(--zen);
}
@media (max-width: 567px) {
  .p-footer__infomenu-item {
    font-size: 0.7rem;
  }
}
@media (min-width: 568px) {
  .p-footer__infomenu-item {
    font-size: 0.8rem;
  }
}
.p-footer__copyright {
  font: var(--zen);
}
@media (max-width: 567px) {
  .p-footer__copyright {
    font-size: 0.7rem;
  }
}
@media (min-width: 568px) {
  .p-footer__copyright {
    font-size: 0.9rem;
  }
}

.p-greeting {
  display: grid;
}
body.page-home .p-greeting {
  background: var(--lightblue);
}
@media (max-width: 567px) {
  .p-greeting {
    position: relative;
    padding: 0 6%;
  }
  body.page-home .p-greeting {
    padding-bottom: 10rem;
  }
}
@media (min-width: 568px) {
  body.page-home .p-greeting {
    padding-top: 2.6rem;
    padding-bottom: 12.5rem;
  }
  body:not(.page-home) .p-greeting {
    grid-template-columns: 1fr max-content;
    padding: 0 calc((100% - 50rem) / 2);
  }
}
@media (max-width: 567px) {
  .p-greeting__pic {
    position: absolute;
    right: 0;
    top: 2.5rem;
  }
  .p-greeting__pic img {
    width: 11.2rem;
  }
}
@media (min-width: 568px) {
  body.page-home .p-greeting__pic {
    position: absolute;
    left: calc(50% + 7.5rem);
    width: calc(50vw - 7.5rem);
  }
  body.page-home .p-greeting__pic img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center top;
  }
  body:not(.page-home) .p-greeting__pic {
    order: 1;
    width: 16.5rem;
  }
}
.p-greeting__body {
  display: grid;
  grid-row-gap: 1rem;
  box-sizing: border-box;
}
@media (max-width: 567px) {
  .p-greeting__body {
    padding-top: 8rem;
  }
}
@media (min-width: 568px) {
  .p-greeting__body {
    width: 33.6rem;
  }
  body.page-home .p-greeting__body {
    position: relative;
    left: 50%;
    margin-top: 7rem;
    padding: 2.25rem;
    width: 39rem;
    transform: translateX(-28rem);
    background: rgba(255, 255, 255, 0.9);
  }
  body.page-kanazawa .p-greeting__body {
    position: relative;
  }
  body.page-yokohama .p-greeting__body {
    position: relative;
  }
}
.p-greeting__title {
  font: var(--zen);
  display: grid;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: 1rem;
}
.p-greeting__title small {
  order: -2;
  color: var(--gray);
}
.p-greeting__title img {
  order: -1;
  height: 1.25rem;
  margin: 0.5rem 0 0.25rem;
}
.p-greeting__text {
  display: grid;
  grid-row-gap: inherit;
}
@media (min-width: 568px) {
  body:not(.page-home) .p-greeting__text {
    width: 32.1rem;
  }
}
.p-greeting__text a {
  color: var(--blue);
  text-decoration: underline;
}
.p-greeting__sns {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
}
@media (max-width: 567px) {
  .p-greeting__sns {
    margin-top: 2rem;
    grid-column-gap: 2.5rem;
  }
}
@media (min-width: 568px) {
  .p-greeting__sns {
    grid-column-gap: 1.5rem;
    position: absolute;
    left: 100%;
    top: 26.5rem;
    width: 16.5rem;
  }
}
@media (max-width: 567px) {
  .p-greeting__sns-item {
    width: 8rem;
  }
}
@media (min-width: 568px) {
  .p-greeting__sns-item {
    width: 6rem;
    transition: 400ms;
  }
  .p-greeting__sns-item:hover {
    opacity: 0.6;
  }
}
.p-greeting__profile {
  display: grid;
}
@media (max-width: 567px) {
  .p-greeting__profile {
    margin-bottom: 1rem;
  }
}
.p-greeting__profile > *::before {
  content: "・";
}

.p-header {
  --bgcolor: rgba(0, 164, 184, 0.85);
}
@media (max-width: 567px) {
  .p-header__logo {
    display: none;
  }
  .p-header__container {
    position: fixed;
    z-index: 10;
    right: 0;
    top: 0;
    overflow-y: scroll;
    overscroll-behavior-y: none;
    box-sizing: border-box;
    height: 100vh;
    padding: 2rem 2rem 8rem;
    padding-top: 11.7rem;
    padding-top: 8rem;
    background: rgba(0, 0, 0, 0.6);
  }
  body:not(.is-menu-open) .p-header__container {
    transform: translateX(100%);
  }
  body.is-menu-open .p-header__container {
    transition: 250ms;
  }
  .p-header__menu-btn--sp {
    position: fixed;
    z-index: 11;
    right: 2.4rem;
    top: 4rem;
    display: grid;
    width: 2.5rem;
    height: 3.75rem;
    background: no-repeat center center/contain;
  }
  body.is-menu-open .p-header__menu-btn--sp {
    background-image: url(../images/menu_sp_btn_open.svg);
  }
  body:not(.is-menu-open) .p-header__menu-btn--sp {
    background-image: url(../images/menu_sp_btn_close.svg);
  }
  body:not(.is-menu-open):is(.is-mv-scrolled) .p-header__menu-btn--sp {
    background-image: url(../images/menu_sp_btn_open_blue.svg);
  }
  .p-header__menu-btn--pc {
    display: none;
  }
  .p-header__mainmenu {
    display: grid;
    grid-row-gap: 0.5rem;
    color: white;
    font: var(--zen);
    font-size: 1.1rem;
    width: 16rem;
  }
  .p-header__mainmenu > li {
    display: grid;
    border-bottom: 1px solid white;
    grid-template-columns: 1fr max-content;
    grid-column-gap: 0.5em;
    align-items: center;
  }
  .p-header__mainmenu > li > a {
    display: block;
    padding: 0.25em 0.5em;
  }
  .p-header__mainmenu > li > button {
    width: 1em;
    aspect-ratio: 1/1;
    background: url(../images/menu_sp_arrow.svg) no-repeat center center/contain;
  }
  .p-header__mainmenu > li > ul {
    margin-top: 0.5em;
    grid-column: span 2;
  }
  .p-header__mainmenu > li:not(.open) > ul {
    position: fixed;
    visibility: hidden;
    opacity: 0;
  }
  .p-header__submenu {
    padding-left: 1rem;
    padding-bottom: 1rem;
  }
  .p-header__submenu-item {
    display: flex;
    align-items: center;
    column-gap: 0.5em;
  }
  .p-header__submenu-item::before {
    content: "";
    width: 1rem;
    border-top: 1px solid white;
  }
  .p-header__btnmenu {
    display: grid;
    grid-row-gap: 2rem;
    margin-top: 4.5rem;
    font: var(--zen);
    font-size: 1.25rem;
  }
  .p-header__btnmenu a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.75rem;
    background: white;
    color: var(--blue);
    text-align: center;
  }
  .p-header__line {
    margin-top: 2rem;
  }
  .p-header__line a {
    display: block;
    padding: 0.2rem 0;
    background: #00c800;
    text-align: center;
  }
  .p-header__line a img {
    width: 3.2rem;
  }
}
@media (min-width: 568px) {
  .p-header {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    display: flex;
    align-items: stretch;
    column-gap: 1.2rem;
    box-sizing: border-box;
    width: 100vw;
    padding: 0 calc((100% - 60rem) / 2);
    height: 4rem;
    transition: 150ms;
  }
  body:not(.page-home, .page-tokyo, .page-yoron, .page-bali, .page-online) .p-header, body.is-mv-scrolled .p-header {
    background: rgba(255, 255, 255, 0.9);
  }
  .p-header::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: white;
    animation-name: header-border;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: both;
    animation-delay: 600ms;
  }
  body:not(.page-home, .page-tokyo, .page-yoron, .page-bali, .page-online) .p-header::before, body.is-mv-scrolled .p-header::before {
    background-color: var(--blue);
  }
  @keyframes header-border {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  .p-header__logo {
    align-self: center;
    display: flex;
    align-items: center;
    width: 4.2rem;
    margin-right: auto;
    background: no-repeat center center/contain;
    background-image: url(../images/header_logo_white.png);
  }
  body:not(.page-home, .page-tokyo, .page-yoron, .page-bali, .page-online) .p-header__logo, body.is-mv-scrolled .p-header__logo {
    background-image: url(../images/header_logo.png);
  }
  .p-header__logo img {
    opacity: 0;
  }
  .p-header__container {
    display: flex;
    align-items: center;
    column-gap: inherit;
  }
  .p-header__menu {
    align-self: stretch;
    display: flex;
    position: relative;
    width: 8rem;
  }
  .p-header__menu-btn {
    display: grid;
    align-items: center;
    justify-content: center;
    color: white;
    font: var(--zen);
    transition: 150ms;
  }
  .p-header__menu-btn--sp {
    display: none;
  }
  .p-header__menu-btn--pc {
    grid-auto-flow: column;
    grid-column-gap: 0.5rem;
    width: 100%;
    font-size: 0.7rem;
  }
}
@media (min-width: 568px) and (max-width: 567px) {
  .p-header__menu-btn--pc {
    display: none;
  }
}
@media (min-width: 568px) {
  body:not(.page-home, .page-tokyo, .page-yoron, .page-bali, .page-online) .p-header__menu-btn, body.is-mv-scrolled .p-header__menu-btn {
    color: var(--blue);
  }
  body.is-menu-open .p-header__menu-btn {
    color: white;
    background: var(--bgcolor);
  }
  .p-header__menu-btn::before {
    content: "";
    aspect-ratio: 1/1;
    background: no-repeat center center/contain;
    background-image: url(../images/header_menubrn_white.svg);
  }
}
@media (min-width: 568px) and (max-width: 567px) {
  .p-header__menu-btn::before {
    width: 2.6rem;
  }
}
@media (min-width: 568px) and (min-width: 568px) {
  .p-header__menu-btn::before {
    width: 1.3rem;
  }
}
@media (min-width: 568px) {
  body:not(.page-home, .page-tokyo, .page-yoron, .page-bali, .page-online) .p-header__menu-btn::before, body.is-mv-scrolled .p-header__menu-btn::before {
    background-image: url(../images/header_menubrn.svg);
  }
  body.is-menu-open .p-header__menu-btn::before {
    background-image: url(../images/header_menubrn_white.svg) !important;
  }
  .p-header__mainmenu {
    display: grid;
    align-content: start;
    position: absolute;
    left: 0;
    top: 100%;
    box-sizing: border-box;
    width: 100vw;
    height: calc(100vh - 4rem);
    padding-top: 0.5rem;
    background: var(--bgcolor);
    border-top: 1px solid white;
  }
  body:not(.is-menu-open) .p-header__mainmenu {
    opacity: 0;
    visibility: hidden;
  }
  body.is-menu-open .p-header__mainmenu {
    transition: opacity 150ms;
  }
  .p-header__mainmenu::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    border-right: 1px solid white;
    width: 0;
    height: 100vh;
  }
  .p-header__mainmenu-item {
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 8rem;
    height: 2.5rem;
    padding-left: 1.6rem;
    color: white;
    font: var(--zen);
    font-size: 0.65rem;
  }
  :is(.open-child) .p-header__mainmenu-item:not(.open) {
    opacity: 0.5;
  }
  .p-header__mainmenu-item:hover, .p-header__mainmenu-item.open {
    opacity: 1;
    z-index: 1;
  }
  .p-header__mainmenu-item span {
    display: block;
    position: relative;
  }
  .p-header__mainmenu-item span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    display: block;
    width: 0;
    height: 1px;
    background: white;
    transition: 100ms;
  }
  .p-header__mainmenu-item span:hover::before {
    width: 100%;
  }
  .p-header__mainmenu-item--top {
    display: none;
  }
  .p-header__mainmenu-item > button {
    margin-left: 1rem;
    color: inherit;
  }
  .p-header__mainmenu-item > button::before {
    content: "＋";
  }
  .p-header__mainmenu-item:not(.open) > button::before {
    content: "＋";
  }
  .p-header__mainmenu-item.open > button::before {
    content: "ー";
  }
}
@media (min-width: 568px) {
  .p-header__submenu {
    position: absolute;
    left: 100%;
    top: 0;
    display: grid;
    grid-row-gap: 0.4rem;
    justify-items: start;
    width: 100vw;
    padding: 0.5rem;
    background: rgb(0, 164, 184);
    opacity: 0;
    visibility: hidden;
  }
  :is(.open) .p-header__submenu {
    opacity: 1;
    visibility: visible;
    transition: opacity 150ms;
  }
  .p-header__submenu-item {
    position: relative;
    font: var(--zen);
    font-size: 0.65rem;
    color: white;
  }
  .p-header__submenu-item::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 0;
    height: 1px;
    background: white;
    transition: 100ms;
  }
  .p-header__submenu-item:hover::before {
    width: 100%;
  }
  .p-header__btnmenu {
    display: flex;
    column-gap: 1rem;
  }
  .p-header__btnmenu-item {
    overflow: hidden;
    position: relative;
    border: 1px solid white;
    border-radius: 0.12rem;
  }
  .p-header__btnmenu-item a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.9rem;
    height: 1.5rem;
    color: white;
    font: var(--zen);
    font-size: 0.65rem;
    transition: 200ms;
  }
  .p-header__btnmenu-item::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 0;
    height: 100%;
    background: var(--blue);
    background: white;
    transition: width 200ms;
  }
  .p-header__btnmenu-item:hover a {
    color: var(--blue);
  }
  .p-header__btnmenu-item:hover::before {
    width: 100%;
  }
  body:not(.page-home, .page-tokyo, .page-yoron, .page-bali, .page-online) .p-header__btnmenu-item, body.is-mv-scrolled .p-header__btnmenu-item {
    border-color: var(--blue);
  }
  body:not(.page-home, .page-tokyo, .page-yoron, .page-bali, .page-online) .p-header__btnmenu-item a, body.is-mv-scrolled .p-header__btnmenu-item a {
    color: var(--blue);
  }
  body:not(.page-home, .page-tokyo, .page-yoron, .page-bali, .page-online) .p-header__btnmenu-item:hover a, body.is-mv-scrolled .p-header__btnmenu-item:hover a {
    color: white;
  }
  body:not(.page-home, .page-tokyo, .page-yoron, .page-bali, .page-online) .p-header__btnmenu-item:hover::before, body.is-mv-scrolled .p-header__btnmenu-item:hover::before {
    background: var(--blue);
  }
  .p-header__line {
    width: 1.4rem;
  }
}

.p-instagram {
  display: grid;
  grid-row-gap: 3.5rem;
  justify-items: center;
  padding: 4rem 0;
  background: var(--lightblue);
}
.p-instagram__posts {
  display: grid;
  grid-gap: 0.1rem;
}
@media (max-width: 567px) {
  .p-instagram__posts {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-instagram__posts {
    grid-template-columns: repeat(8, 1fr);
    width: 50rem;
  }
}
body.page-kanazawa .p-instagram__posts {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}
@media (min-width: 568px) {
  body.page-kanazawa .p-instagram__posts {
    width: 16rem;
  }
}

@media (max-width: 567px) {
  .p-instagram__post:nth-of-type(n+9) {
    display: none;
  }
}
@media (min-width: 568px) {
  .p-instagram__post:nth-of-type(n+17) {
    display: none;
  }
}
.p-instagram__post video,
.p-instagram__post img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.p-instructor {
  display: grid;
  grid-row-gap: 3.5rem;
  padding-bottom: 6rem;
  background: linear-gradient(var(--lightblue), var(--lightblue)) no-repeat left top 2.4rem/100% 100%;
}
@media (max-width: 567px) {
  .p-instructor {
    margin-top: 3rem;
  }
}
.p-instructor__visual {
  display: grid;
  grid-row-gap: 1.5rem;
  justify-items: center;
}
@media (min-width: 568px) {
  .p-instructor__visual img {
    width: 60rem;
  }
}
.p-instructor__visual-caption {
  width: 15.3rem;
}
.p-instructor__list {
  display: grid;
  grid-row-gap: inherit;
}
@media (max-width: 567px) {
  .p-instructor__list {
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-instructor__list {
    padding: 0 calc((100% - 50rem) / 2);
  }
}
.p-instructor__list-item {
  display: grid;
  grid-row-gap: 1rem;
}
.p-instructor__list-item .p-instructor__pic {
  grid-area: pic;
}
.p-instructor__list-item .p-instructor__name {
  grid-area: name;
}
.p-instructor__list-item .p-instructor__profile {
  grid-area: profile;
}
.p-instructor__list-item .p-instructor__text {
  grid-area: text;
}
.p-instructor__list-item::before {
  grid-area: border;
}
.p-instructor__list-item:nth-of-type(odd) {
  grid-template-columns: max-content 1rem 1fr;
}
.p-instructor__list-item:nth-of-type(even) {
  grid-template-columns: 1fr 1rem max-content;
}
@media (max-width: 567px) {
  .p-instructor__list-item:nth-of-type(odd) {
    grid-template-areas: "pic blank1 name" "pic border border" "pic blank2 profile" "text text text";
  }
  .p-instructor__list-item:nth-of-type(even) {
    grid-template-areas: "name blank1 pic" "border border pic" "profile blank2 pic" "text text text";
  }
}
@media (min-width: 568px) {
  .p-instructor__list-item:nth-of-type(odd) {
    grid-template-areas: "pic blank1 name" "pic border border" "pic blank2 profile" "pic blank2 text";
    grid-template-columns: max-content 1rem 1fr;
  }
  .p-instructor__list-item:nth-of-type(even) {
    grid-template-areas: "name blank1 pic" "border border pic" "profile blank2 pic" "text blank2 pic";
    grid-template-columns: 1fr 1rem max-content;
  }
}
.p-instructor__list-item::before {
  content: "";
  border-bottom: 1px solid var(--blue);
}
@media (max-width: 567px) {
  .p-instructor__pic img {
    width: 8.6rem;
  }
}
@media (min-width: 568px) {
  .p-instructor__pic img {
    width: 12.5rem;
  }
}
.p-instructor__name img {
  height: 1.8rem;
}
.p-instructor__profile {
  display: grid;
}
.p-instructor__profile-item::before {
  content: "・";
}

.p-license {
  display: grid;
  padding-bottom: 6rem;
}
.p-license__logo {
  margin-top: -6rem;
  justify-self: center;
  width: 12rem;
}
.p-license__contents {
  display: grid;
}
@media (max-width: 567px) {
  .p-license__contents {
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-license__contents {
    padding: 0 calc((100% - 50rem) / 2);
  }
}
.p-license__caption {
  font: var(--zen);
  margin-top: 3rem;
  padding-bottom: 0.25rem;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  font-size: 1.1rem;
}
.p-license__caption:nth-of-type(n+2) {
  margin-top: 5rem;
}
.p-license__list {
  display: grid;
  margin-top: 2.5rem;
}
@media (max-width: 567px) {
  .p-license__list {
    grid-row-gap: 1rem;
  }
}
@media (min-width: 568px) {
  .p-license__list {
    grid-template-columns: 16.2rem 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 2rem;
    justify-content: start;
  }
}
.p-license__list-label {
  align-self: start;
  font: var(--zen);
  display: grid;
  align-items: center;
  height: 2.7rem;
  padding-left: 1rem;
  background: linear-gradient(to left bottom, white 50%, transparent 51%) no-repeat right top/1.35rem calc(1.35rem + 1px), linear-gradient(to left top, white 50%, transparent 51%) no-repeat right bottom/1.35rem calc(1.35rem + 1px), linear-gradient(var(--blue), var(--blue)) no-repeat left center/calc(100% - 1px) calc(100% - 2px);
  color: white;
  font-size: 1rem;
}
@media (max-width: 567px) {
  .p-license__list-label {
    margin-right: 8rem;
  }
}
.p-license__list-label:nth-of-type(even) {
  opacity: 0.8;
}
.p-license__list-body {
  align-self: center;
}
.p-license__btn {
  display: grid;
  justify-items: center;
  margin-top: 5rem;
}
.p-license__btn-notes {
  margin-top: 1.5rem;
}

.p-message {
  display: grid;
  position: relative;
  background: linear-gradient(var(--lightblue), var(--lightblue)) no-repeat left top 4.1rem/100% 100%;
}
@media (max-width: 567px) {
  .p-message {
    margin-top: 3rem;
  }
}
body:not(.page-home) .p-message {
  padding-bottom: 6rem;
}
.p-message > * {
  position: relative;
  z-index: 1;
}
.p-message__image {
  position: absolute;
  z-index: 0;
}
@media (min-width: 568px) {
  .p-message__image {
    top: 11.5rem;
    width: calc(50vw + 4.3rem);
    height: 40.1rem;
    background: url(../images/top_about_message_image.jpg) no-repeat right center/cover;
  }
  body.page-kanazawa .p-message__image {
    background-image: url(../images/top_about_message_image_kanazawa.jpg);
  }
  body.page-yokohama .p-message__image {
    background-image: url(../images/top_about_message_image_yokohama.jpg);
  }
  body:not(.page-yoron) .p-message__image {
    left: 0;
  }
  body.page-yoron .p-message__image {
    right: 0;
  }
}
@media (max-width: 567px) {
  .p-message__body {
    margin: 0.5rem;
  }
}
@media (min-width: 568px) {
  .p-message__body {
    margin-top: 6.8rem;
  }
}
.p-message__body-text {
  display: block;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.7);
}
@media (min-width: 568px) {
  .p-message__body-text {
    box-sizing: border-box;
    width: 37rem;
    position: relative;
    left: 50%;
  }
  body:not(.page-yoron) .p-message__body-text {
    margin-left: -10rem;
  }
  body.page-yoron .p-message__body-text {
    right: 50%;
    margin-left: -27rem;
  }
}
@media (max-width: 567px) {
  .p-message__body-text strong {
    font-size: 120%;
  }
}
@media (min-width: 568px) {
  .p-message__body-text strong {
    font-size: 130%;
  }
}
.p-message__body-text strong:not(:nth-of-type(4)) {
  background: url(../images/text_underline.png) no-repeat left bottom/100% 0.75em;
  width: max-content;
  max-width: 100%;
}
.p-message__body-text strong:nth-of-type(4) {
  font-weight: bold;
}
@media (max-width: 567px) {
  .p-message__body-text strong:nth-of-type(4) {
    font-size: 135%;
  }
}
@media (min-width: 568px) {
  .p-message__body-text strong:nth-of-type(4) {
    font-size: 150%;
  }
}

.p-mv {
  position: relative;
  display: grid;
  justify-content: center;
  box-sizing: border-box;
  background: no-repeat center center/cover;
}
body.page-tokyo .p-mv {
  background-image: url(../images/mv_image_tokyo_1.jpg);
}
@media (max-width: 567px) {
  body.page-tokyo .p-mv {
    background-image: url(../images/mv_image_tokyo_1_sp.jpg);
  }
}
body.page-kanazawa .p-mv {
  background-image: url(../images/mv_image_kanazawa_1.jpg);
}
@media (max-width: 567px) {
  body.page-kanazawa .p-mv {
    background-image: url(../images/mv_image_kanazawa_1_sp.jpg);
  }
}
body.page-yokohama .p-mv {
  background-image: url(../images/mv_image_yokohama_1.jpg);
}
@media (max-width: 567px) {
  body.page-yokohama .p-mv {
    background-image: url(../images/mv_image_yokohama_1_sp.jpg);
  }
}
body.page-bali .p-mv {
  background-image: url(../images/mv_image_bali_1.jpg);
}
@media (max-width: 567px) {
  body.page-bali .p-mv {
    background-position: right 25% center;
  }
}
body.page-online .p-mv {
  background-image: url(../images/mv_image_online_1.jpg);
}
@media (max-width: 567px) {
  .p-mv {
    align-content: start;
    height: 100vh;
    height: calc(100vh - 10rem);
  }
  body.page-home .p-mv {
    padding-top: 2.4rem;
  }
  body:not(.page-home) .p-mv {
    padding-top: 1.8rem;
  }
}
@media (min-width: 568px) {
  .p-mv {
    align-items: center;
    padding-top: 4rem;
    height: 37rem;
  }
}
@media (max-width: 567px) {
  .p-mv__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 6.5rem;
  }
  body.page-home .p-mv__logo img {
    height: 6rem;
  }
  body:not(.page-home) .p-mv__logo img {
    height: 8.25rem;
  }
}
@media (min-width: 568px) {
  .p-mv__logo {
    display: none;
  }
}
.p-mv__text {
  display: grid;
  justify-items: center;
  color: white;
  font: var(--zen);
  text-align: center;
}
@media (max-width: 567px) {
  .p-mv__text {
    grid-row-gap: 5.5rem;
  }
}
@media (min-width: 568px) {
  .p-mv__text {
    grid-row-gap: 1.6rem;
  }
}
body.page-home .p-mv__text {
  position: relative;
  grid-row-gap: 5rem;
}
.p-mv__text-caption {
  display: grid;
  justify-items: center;
  font-size: 2.2rem;
  line-height: 1.5;
}
@media (max-width: 567px) {
  body:not(.page-home) .p-mv__text-caption {
    font-size: 1.7rem;
  }
}
@media (max-width: 567px) {
  body.page-home .p-mv__text-caption img {
    height: 5.35rem;
  }
}
@media (min-width: 568px) {
  body.page-home .p-mv__text-caption img {
    height: 2.6rem;
  }
}
.p-mv__text-body {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
}
body.page-home .p-mv__text-body span:nth-of-type(1) {
  margin-bottom: 1.6rem;
}
.p-mv__text-body span {
  display: block;
}
@media (min-width: 568px) {
  body.page-tokyo .p-mv__text-body span:nth-of-type(3), body.page-tokyo .p-mv__text-body span:nth-of-type(4) {
    display: inline-block;
  }
}

@media (min-width: 568px) {
  body.page-online .p-mv__text-body span:nth-of-type(3), body.page-online .p-mv__text-body span:nth-of-type(4) {
    display: inline-block;
  }
}

.p-mv__slide {
  position: absolute;
  overflow: hidden;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.p-mv__slide::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.p-mv__slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 567px) {
  .p-mv__slide img[src*=top_mv_image_1] {
    object-position: right center;
  }
}
.p-mv__slide img:not(.before, .current) {
  display: none;
}
.p-mv__slide img.before {
  z-index: 1;
}
.p-mv__slide img.current {
  z-index: 2;
  animation-duration: 5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
@media (max-width: 567px) {
  .p-mv__slide img.current {
    animation-name: mv-slide-show-sp;
  }
}
@media (min-width: 568px) {
  .p-mv__slide img.current {
    animation-name: mv-slide-show-pc;
  }
}
@keyframes mv-slide-show-sp {
  0% {
    transform: scale(1.05);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: none;
  }
}
@keyframes mv-slide-show-pc {
  0% {
    transform: scale(1.03);
    filter: brightness(200%) blur(8px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  50% {
    filter: none;
  }
  100% {
    transform: none;
  }
}
body.page-yoron .p-mv__video {
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
body.page-yoron .p-mv__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.page-yoron .p-mv__video::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.p-news {
  display: grid;
  grid-row-gap: 3.5rem;
  padding: 4rem 0;
  justify-items: center;
}
.p-news__list {
  display: grid;
  grid-row-gap: 1.5rem;
  grid-template-columns: max-content 1fr;
}
@media (max-width: 567px) {
  .p-news__list {
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-news__list {
    padding: 0 calc((100% - 38.8rem) / 2);
  }
}
.p-news__listitem {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  grid-column-gap: 1rem;
}
.p-news__listitem-text {
  font-size: 0.9rem;
}
.p-news__listitem-text a {
  color: var(--blue);
  text-decoration: underline;
}
.p-news__listitem-date {
  font-size: 0.75rem;
}

.p-online-flow {
  display: grid;
  grid-row-gap: 3.5rem;
  padding: 6rem 0;
}
.p-online-flow__body {
  display: grid;
  grid-row-gap: inherit;
  justify-items: center;
}
@media (max-width: 567px) {
  .p-online-flow__body-flow {
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-online-flow__body-flow img {
    width: 50rem;
  }
}
@media (max-width: 567px) {
  .p-online-flow__body-text img {
    width: 18.6rem;
  }
}
@media (min-width: 568px) {
  .p-online-flow__body-text img {
    width: 34.1rem;
  }
}

.p-page-column {
  display: grid;
  box-sizing: border-box;
  width: 100%;
}
@media (max-width: 567px) {
  .p-page-column {
    justify-items: center;
    grid-gap: 2em;
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-page-column {
    padding: 0 calc((100% - 60rem) / 2);
    grid-template-columns: 1fr max-content;
    grid-gap: 1em 3em;
    align-items: start;
  }
}
.p-page-column .main {
  display: grid;
  grid-gap: 1em;
}
.p-page-column .main > h3 {
  justify-self: center;
  font-size: 150%;
}
.p-page-column .main > hr {
  border: none;
  margin: 0;
}
.p-page-column .main .pager ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.p-page-column .main .pager a {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 0.5em;
  align-items: center;
  color: var(--blue);
}
.p-page-column .main .pager li.prev a::before,
.p-page-column .main .pager li.next a::after {
  content: "";
  width: 0.5em;
  aspect-ratio: 1/1;
  border: solid var(--blue);
  transform: rotate(45deg);
}
.p-page-column .main .pager li.prev a::before {
  border-width: 0 0 1px 1px;
}
.p-page-column .main .pager li.next a::after {
  border-width: 1px 1px 0 0;
}
@media (max-width: 567px) {
  .p-page-column .main .pager li {
    font-size: 90%;
  }
}
.p-page-column .main .post {
  display: grid;
  background: white;
}
.p-page-column .main .post .category ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.5em;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.p-page-column .main .post .category a {
  display: flex;
  align-items: center;
  padding: 0 1em;
  box-sizing: border-box;
  height: 2.2em;
  border: 1px solid var(--blue);
  border-radius: 1.1em;
  font-size: 90%;
}
.p-page-column .main .post .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.75em;
}
.p-page-column .main .post .tag a {
  font-size: 90%;
}
.p-page-column .main .post .tag a::before {
  content: "#";
}
.p-page-column .main .post .body {
  padding: 1.5em;
}
@media (max-width: 567px) {
  .p-page-column .main .post .body p {
    font-size: 90%;
  }
}
.p-page-column .main .post .body h2 {
  font-size: 125%;
  color: var(--blue);
}
.p-page-column .main .post .body h2:nth-of-type(n + 2) {
  margin-top: 1em;
}
@media (max-width: 567px) {
  .p-page-column .main .post .body h2 {
    font-size: 110%;
  }
}
@media (min-width: 568px) {
  .p-page-column .main .post .body h2 {
    font-size: 125%;
  }
}
.p-page-column .main .post .eyecatch img {
  width: 100%;
}
.p-page-column .main .post .foot {
  display: grid;
  grid-gap: 1.5em;
  padding: 1.5em;
}
.p-page-column .main .post .foot hr {
  border: solid var(--blue);
  border-width: 1px 0 0;
  margin: 0;
  opacity: 0.3;
}
.p-page-column .main .post .foot dl {
  display: grid;
  margin: 0;
}
.p-page-column .main .post .foot dl dt {
  color: #b2b2b2;
  font-weight: normal;
}
.p-page-column .main .post .foot dl dd {
  margin: 0;
}
@media (max-width: 567px) {
  .p-page-column .main .post .foot dl dt:nth-of-type(n + 2) {
    margin-top: 1em;
  }
}
@media (min-width: 568px) {
  .p-page-column .main .post .foot dl {
    grid-auto-flow: column;
    grid-gap: 1em;
    align-items: center;
    justify-content: center;
  }
  .p-page-column .main .post .foot dl dt:nth-of-type(n + 2) {
    margin-left: 1em;
  }
}
.p-page-column .main .post .foot .profile {
  display: grid;
}
.p-page-column .main .post .foot .profile h4 {
  margin: 0;
  color: var(--blue);
  font-size: 110%;
}
.p-page-column .main .post .foot .profile figure {
  margin: 0;
}
.p-page-column .main .post .foot .profile p {
  margin: 0;
  font-size: 80%;
  line-height: 1.5;
}
@media (max-width: 567px) {
  .p-page-column .main .post .foot .profile {
    justify-items: center;
    grid-gap: 1em;
  }
  .p-page-column .main .post .foot .profile figure img {
    width: 10em;
  }
}
@media (min-width: 568px) {
  .p-page-column .main .post .foot .profile {
    justify-self: center;
    grid-template-columns: repeat(2, auto);
    grid-template-areas: "figure blank1" "figure h4" "figure p" "figure blank2";
    grid-gap: 1em 2em;
    justify-content: center;
    max-width: 75%;
  }
  .p-page-column .main .post .foot .profile figure {
    grid-area: figure;
  }
  .p-page-column .main .post .foot .profile h4 {
    grid-area: h4;
  }
  .p-page-column .main .post .foot .profile p {
    grid-area: p;
  }
  .p-page-column .main .post .foot .profile figure img {
    width: 12em;
    aspect-ratio: 1/1.618;
    object-fit: cover;
  }
}
.p-page-column .main .post .head {
  display: grid;
  grid-gap: 0.5em;
  padding: 1.5em;
}
@media (min-width: 568px) {
  .p-page-column .main .post .head {
    grid-template-columns: 1fr max-content;
  }
}
.p-page-column .main .post .head h1 {
  display: grid;
  margin: 0;
  font-size: 180%;
}
.p-page-column .main .post .head h1 time {
  color: var(--gray);
}
@media (max-width: 567px) {
  .p-page-column .main .post .head h1 {
    font-size: 140%;
  }
  .p-page-column .main .post .head h1 time {
    font-size: 60%;
  }
}
@media (min-width: 568px) {
  .p-page-column .main .post .head h1 {
    font-size: 180%;
  }
  .p-page-column .main .post .head h1 time {
    font-size: 50%;
  }
}
.p-page-column .main .post .head .author a {
  display: grid;
  font-size: 90%;
}
@media (max-width: 567px) {
  .p-page-column .main .post .head .author a {
    grid-auto-flow: column;
    grid-gap: 0.75em;
    align-items: center;
    justify-content: start;
  }
  .p-page-column .main .post .head .author img {
    width: 4em;
  }
}
@media (min-width: 568px) {
  .p-page-column .main .post .head .author {
    grid-column: 2;
    grid-row: 1/4;
  }
  .p-page-column .main .post .head .author a {
    grid-gap: 0.5em;
    justify-items: center;
  }
  .p-page-column .main .post .head .author img {
    width: 5em;
  }
}
.p-page-column .main .post-list {
  display: grid;
  grid-gap: 2em;
}
.p-page-column .main .post-list article {
  display: grid;
  align-items: center;
  background: white;
  cursor: pointer;
}
.p-page-column .main .post-list article .image {
  grid-area: image;
}
.p-page-column .main .post-list article .title {
  grid-area: title;
}
.p-page-column .main .post-list article .author {
  grid-area: author;
}
.p-page-column .main .post-list article .summary {
  grid-area: summary;
}
.p-page-column .main .post-list article .more {
  grid-area: more;
}
@media (max-width: 567px) {
  .p-page-column .main .post-list article {
    grid-template-columns: 50% 1fr;
    grid-template-areas: "title image" "author image" "blank1 image" "summary summary" "more more";
    grid-gap: 0.5em 1em;
    align-items: start;
    padding: 1em;
  }
}
@media (min-width: 568px) {
  .p-page-column .main .post-list article {
    grid-gap: 0.5em 1em;
    grid-template-columns: 30% 1fr auto;
    grid-template-areas: "image title author" "image summary summary" "image more more";
  }
  .p-page-column .main .post-list article .title {
    padding: 1em 0 0 0;
  }
  .p-page-column .main .post-list article .author {
    padding: 1em 1em 0 0;
  }
  .p-page-column .main .post-list article .summary {
    padding: 0 1em 0 0;
  }
  .p-page-column .main .post-list article .more {
    padding: 0 1em 1em 0;
  }
}
.p-page-column .main .post-list article .author {
  align-self: start;
}
.p-page-column .main .post-list article .author a {
  display: flex;
  gap: 0.5em;
  align-items: center;
  color: var(--blue);
  font-size: 80%;
}
.p-page-column .main .post-list article .author img {
  width: 3.25em;
}
@media (max-width: 567px) {
  .p-page-column .main .post-list article .author {
    font-size: 90%;
  }
}
@media (min-width: 568px) {
  .p-page-column .main .post-list article .author a picture {
    order: 1;
  }
}
.p-page-column .main .post-list article .image {
  align-self: stretch;
  display: grid;
  align-items: stretch;
}
.p-page-column .main .post-list article .image img {
  object-fit: cover;
}
@media (max-width: 567px) {
  .p-page-column .main .post-list article .image a {
    margin: -1.5em -1.5em 0 0;
  }
  .p-page-column .main .post-list article .image img {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 568px) {
  .p-page-column .main .post-list article .image img {
    width: 100%;
    height: 100%;
  }
}
.p-page-column .main .post-list article .more {
  justify-self: end;
  line-height: 1;
}
.p-page-column .main .post-list article .more a {
  font-size: 90%;
}
.p-page-column .main .post-list article .summary p {
  margin: 0;
  font-size: 80%;
  line-height: 1.5;
}
@media (max-width: 567px) {
  .p-page-column .main .post-list article .summary {
    margin-top: 0.5em;
  }
}
.p-page-column .main .post-list article .title {
  display: grid;
  grid-gap: 0.25em;
  line-height: 1.3;
}
.p-page-column .main .post-list article .title time {
  font-weight: normal;
  color: var(--gray);
}
.p-page-column .main .post-list article .title h1 {
  margin: 0;
  color: var(--blue);
  font-weight: bold;
}
.p-page-column .main .post-list article .title a {
  color: inherit;
}
@media (max-width: 567px) {
  .p-page-column .main .post-list article .title time {
    font-size: 70%;
  }
  .p-page-column .main .post-list article .title h1 {
    font-size: 95%;
  }
}
@media (min-width: 568px) {
  .p-page-column .main .post-list article .title time {
    font-size: 80%;
  }
  .p-page-column .main .post-list article .title h1 {
    font-size: 110%;
  }
}
@media (max-width: 567px) {
  .p-page-column .pankuzu {
    justify-self: start;
  }
}
@media (min-width: 568px) {
  .p-page-column .pankuzu {
    grid-column: span 2;
  }
}
.p-page-column .pankuzu ul {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 0.5em;
  justify-content: start;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.p-page-column .pankuzu ul li {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 0.75em;
  align-items: center;
  line-height: 1.3;
}
@media (max-width: 567px) {
  .p-page-column .pankuzu ul li {
    font-size: 90%;
  }
}
.p-page-column .pankuzu ul li:nth-of-type(n + 2)::before {
  content: "";
  width: 0.5em;
  aspect-ratio: 1/1;
  border: solid var(--blue);
  border-width: 1.5px 1.5px 0 0;
  transform: rotate(45deg);
}
.p-page-column .sidebar {
  display: grid;
  grid-gap: 2em;
}
.p-page-column .sidebar > div {
  display: grid;
  grid-gap: 0.5em;
}
.p-page-column .sidebar > div h2 {
  margin: 0;
  color: var(--gray);
  font-size: 110%;
}
.p-page-column .sidebar > div ul {
  display: grid;
  margin: 0;
  padding: 0 0 0 1em;
  padding: 0;
  list-style-type: none;
  font-size: 90%;
}
.p-page-column .sidebar > div ul li {
  all: unset;
  display: flex;
  gap: 0.25em;
  align-items: center;
}
.p-page-column .sidebar > div ul a {
  color: var(--blue);
  text-decoration: none;
}
.p-page-column .sidebar > div ul a:hover {
  text-decoration: underline;
}
.p-page-column .sidebar > div ul.archives a::before {
  content: "・";
}
.p-page-column .sidebar > div ul.authors {
  grid-gap: 0.5em;
}
.p-page-column .sidebar > div ul.authors a {
  display: grid;
  grid-gap: 0.5em;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
}
.p-page-column .sidebar > div ul.authors a img {
  width: 3em;
}
.p-page-column .sidebar > div ul.categories a::before {
  content: "・";
}
.p-page-column .sidebar > div ul.tags a::before {
  content: "#";
}

.p-page-voice {
  display: grid;
  grid-gap: 3em;
  justify-items: center;
}
@media (max-width: 567px) {
  .p-page-voice {
    padding: 0 6%;
  }
}
.p-page-voice hr {
  border: none;
  margin: 0;
}
.p-page-voice .voice-archives {
  display: grid;
  grid-gap: 1.5em;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 567px) {
  .p-page-voice .voice-archives {
    width: 80vw;
  }
}
@media (min-width: 568px) {
  .p-page-voice .voice-archives {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-page-voice .voice-archives ul li {
  display: grid;
  grid-gap: 0.5em;
  background: white;
  align-content: start;
  border: 1px solid #ddd;
  padding: 1em;
  background: rgba(255, 255, 255, 0.63);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
}
.p-page-voice .voice-archives ul li > * {
  margin: 0;
}
.p-page-voice .voice-archives ul li.on {
  opacity: 0.7;
  box-shadow: none;
}
@media (max-width: 567px) {
  .p-page-voice .voice-archives ul li {
    font-size: 80%;
  }
}
.p-page-voice .voice-archives ul li figure {
  display: grid;
  grid-gap: 0.75em;
  justify-items: center;
}
.p-page-voice .voice-archives ul li figure img {
  width: 100%;
  object-fit: cover;
  transition: 200ms;
}
.p-page-voice .voice-archives ul li figure img:hover {
  filter: brightness(110%);
}
@media (max-width: 567px) {
  .p-page-voice .voice-archives ul li figure img {
    aspect-ratio: 2/1;
    aspect-ratio: 2.5/1;
    object-position: center top;
  }
}
@media (min-width: 568px) {
  .p-page-voice .voice-archives ul li figure img {
    aspect-ratio: 1.618/1;
  }
}
.p-page-voice .voice-archives ul li figcaption {
  color: #4895ac;
  font-size: 110%;
  font-weight: bold;
}
.p-page-voice .voice-archives ul li p {
  font-size: 90%;
  line-height: 1.5;
}
.p-page-voice .voice-archives ul li .more {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
}
.p-page-voice .voice-archives ul li .more::after {
  content: "";
  display: block;
  width: 0.5em;
  aspect-ratio: 1/1;
  border: solid var(--blue);
  border-width: 1.5px 1.5px 0 0;
  transform: rotate(45deg);
}
.p-page-voice .voice-single {
  display: grid;
  grid-gap: 1.5em;
  justify-items: center;
}
.p-page-voice .voice-single figure {
  margin: 0;
}
.p-page-voice .voice-single figure img {
  width: 100%;
}
.p-page-voice .voice-single article {
  display: grid;
  justify-items: center;
  box-sizing: border-box;
  max-width: 800px;
  border: 1px solid #ddd;
  background: rgba(255, 255, 255, 0.63);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 567px) {
  .p-page-voice .voice-single article {
    grid-gap: 1.25em;
    padding: 1.25em;
  }
}
@media (min-width: 568px) {
  .p-page-voice .voice-single article {
    grid-gap: 2em;
    padding: 2em;
  }
}
.p-page-voice .voice-single article h3 {
  margin: 0;
  color: #4895ac;
  font-weight: bold;
}
@media (max-width: 567px) {
  .p-page-voice .voice-single article h3 {
    font-size: 120%;
  }
}
@media (min-width: 568px) {
  .p-page-voice .voice-single article h3 {
    font-size: 150%;
  }
}
@media (max-width: 567px) {
  .p-page-voice .voice-single article .content {
    font-size: 90%;
  }
}
.p-page-voice .voice-single .pager {
  display: grid;
  grid-gap: 3em;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  background: linear-gradient(var(--blue), var(--blue)) no-repeat center center/0.5px 100%;
  font-size: 110%;
}
.p-page-voice .voice-single .pager a {
  display: flex;
  align-items: center;
  gap: 0.75em;
}
.p-page-voice .voice-single .pager a::before,
.p-page-voice .voice-single .pager a::after {
  width: 0.5em;
  aspect-ratio: 1/1;
  border: solid var(--blue);
  transform: rotate(45deg);
}
.p-page-voice .voice-single .pager a::before {
  border-width: 0 0 1.5px 1.5px;
}
.p-page-voice .voice-single .pager a::after {
  border-width: 1.5px 1.5px 0 0;
}
.p-page-voice .voice-single .pager .prev a::before,
.p-page-voice .voice-single .pager .next a::after {
  content: "";
}
.p-page-voice .voice-to-all a {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
  height: 3em;
  padding: 0 1.5em;
  background: var(--blue);
  color: white;
}
.p-page-voice .voice-to-all a::after {
  content: "";
  width: 0.5em;
  aspect-ratio: 1/1;
  border: solid white;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

.p-page {
  display: grid;
}
@media (max-width: 567px) {
  .p-page {
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-page {
    padding: 0 calc((100% - 50rem) / 2);
  }
}
.p-page-information, .p-page-contact, .p-page-thanks {
  justify-items: center;
  grid-row-gap: 4rem;
}
@media (min-width: 568px) {
  .p-page-information__lead, .p-page-contact__lead, .p-page-thanks__lead {
    text-align: center;
  }
}
.p-page-schedule {
  display: grid;
  grid-row-gap: 6.6rem;
  justify-items: center;
}
@media (min-width: 568px) {
  .p-page-schedule__lead {
    text-align: center;
  }
}
.p-page-terms h2, .p-page-policy h2 {
  border-bottom: 1px solid var(--black);
  font-weight: bold;
}
@media (min-width: 568px) {
  .p-page-terms h2, .p-page-policy h2 {
    font-size: 0.9rem;
  }
}
.p-page-terms h2:nth-of-type(n+2), .p-page-policy h2:nth-of-type(n+2) {
  margin-top: 1rem;
}
.p-page-terms h2 + *, .p-page-policy h2 + * {
  margin-top: 1rem;
}
.p-page-terms h3, .p-page-policy h3 {
  margin-top: 1rem;
  font-weight: bold;
}
.p-page-commercial {
  justify-items: center;
}
.p-page-commercial__info {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 1.5rem;
}
@media (min-width: 568px) {
  .p-page-commercial__info {
    width: 50rem;
  }
}
.p-page-commercial__info-item {
  padding: 0.5rem 0;
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/3;
  border-bottom: 1px solid var(--black);
}
.p-page-commercial__info-label {
  overflow: hidden;
  width: 5em;
  white-space: nowrap;
}
:is(:nth-child(1)) > .p-page-commercial__info-label, :is(:nth-child(2)) > .p-page-commercial__info-label, :is(:nth-child(5)) > .p-page-commercial__info-label, :is(:nth-child(6)) > .p-page-commercial__info-label {
  letter-spacing: 2em;
}
:is(:nth-child(3)) > .p-page-commercial__info-label, :is(:nth-child(4)) > .p-page-commercial__info-label {
  letter-spacing: 0.5em;
}

.p-plan {
  display: grid;
  grid-row-gap: 3.5rem;
  background: var(--blue);
  padding: 6rem 0 4rem;
}
body.page-yoron .p-plan {
  position: relative;
}
.p-plan__detail {
  display: grid;
  grid-row-gap: inherit;
  justify-items: center;
  color: white;
}
@media (max-width: 567px) {
  .p-plan__detail {
    padding: 0 6%;
  }
}
.p-plan__detail-list {
  display: grid;
}
@media (max-width: 567px) {
  .p-plan__detail-list {
    grid-row-gap: 1rem;
    width: 100%;
  }
}
@media (min-width: 568px) {
  .p-plan__detail-list {
    grid-auto-flow: column;
    grid-auto-columns: 1.5fr;
    justify-self: center;
    width: 50rem;
  }
}
@media (min-width: 568px) {
  body.page-tokyo .p-plan__detail-list {
    grid-auto-flow: unset;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }
}
@media (min-width: 568px) {
  body.page-yoron .p-plan__detail-list {
    grid-column-gap: 4.5rem;
  }
}

@media (min-width: 568px) {
  body.page-kanazawa .p-plan__detail-list {
    grid-column-gap: 4.5rem;
  }
}

@media (min-width: 568px) {
  body.page-yokohama .p-plan__detail-list {
    grid-column-gap: 4.5rem;
  }
}

.p-plan__detail-listitem {
  display: grid;
  grid-row-gap: 1rem;
  border: 2px solid white;
  padding: 2.5rem 1.75rem;
}
@media (max-width: 567px) {
  .p-plan__detail-listitem {
    justify-items: center;
  }
}
@media (min-width: 568px) {
  body.page-yoron .p-plan__detail-listitem {
    justify-items: center;
    align-content: start;
  }
  body.page-tokyo .p-plan__detail-listitem {
    justify-items: center;
    align-content: start;
  }
  body.page-kanazawa .p-plan__detail-listitem {
    justify-items: center;
    align-content: start;
  }
  body.page-yokohama .p-plan__detail-listitem {
    justify-items: center;
    align-content: start;
  }
  body.page-bali .p-plan__detail-listitem {
    grid-template-columns: max-content 1fr;
    grid-template-rows: repeat(3, max-content) 1fr;
    grid-column-gap: 2.5rem;
    align-items: end;
  }
}
.p-plan__detail-caption {
  font: var(--zen);
}
body:not(.page-bali) .p-plan__detail-caption {
  display: grid;
  justify-items: center;
  font-size: 1.1rem;
}
body:not(.page-bali) .p-plan__detail-caption::before {
  content: "";
  aspect-ratio: 48/64;
  width: 2.4rem;
  background: no-repeat center center/contain;
}
.p-plan__detail-caption small {
  font-size: 72%;
}
body.page-tokyo .p-plan__detail-listitem:nth-of-type(1) .p-plan__detail-caption::before {
  background-image: url(../images/plan_detail_caption_num_tokyo_1.svg);
}
body.page-tokyo .p-plan__detail-listitem:nth-of-type(2) .p-plan__detail-caption::before {
  background-image: url(../images/plan_detail_caption_num_tokyo_2.svg);
}
body.page-tokyo .p-plan__detail-listitem:nth-of-type(3) .p-plan__detail-caption::before {
  background-image: url(../images/plan_detail_caption_num_tokyo_3.svg);
}
body.page-tokyo .p-plan__detail-listitem:nth-of-type(4) .p-plan__detail-caption::before {
  background-image: url(../images/plan_detail_caption_num_tokyo_4.svg);
}
body.page-kanazawa .p-plan__detail-listitem:nth-of-type(1) .p-plan__detail-caption::before {
  background-image: url(../images/plan_detail_caption_num_kanazawa_1.svg);
}
body.page-kanazawa .p-plan__detail-listitem:nth-of-type(2) .p-plan__detail-caption::before {
  background-image: url(../images/plan_detail_caption_num_kanazawa_2.svg);
}
body.page-yokohama .p-plan__detail-listitem:nth-of-type(1) .p-plan__detail-caption::before {
  background-image: url(../images/plan_detail_caption_num_yokohama_1.svg);
}
body.page-yokohama .p-plan__detail-listitem:nth-of-type(2) .p-plan__detail-caption::before {
  background-image: url(../images/plan_detail_caption_num_yokohama_2.svg);
}
body.page-yoron .p-plan__detail-listitem:nth-of-type(1) .p-plan__detail-caption::before {
  background-image: url(../images/plan_detail_caption_num_yoron_1.svg);
}
body.page-yoron .p-plan__detail-listitem:nth-of-type(2) .p-plan__detail-caption::before {
  background-image: url(../images/plan_detail_caption_num_yoron_2.svg);
}
.p-plan__detail-image {
  width: 7rem;
}
body.page-tokyo .p-plan__detail-image {
  width: 13.6rem;
}

body.page-yoron .p-plan__detail-image {
  width: 13.6rem;
}

body.page-bali .p-plan__detail-image {
  width: 13.6rem;
}

@media (min-width: 568px) {
  body.page-bali .p-plan__detail-image {
    align-self: center;
    grid-column: 1;
    grid-row: 1/5;
  }
}

.p-plan__detail-checklist {
  display: grid;
  grid-row-gap: 0.5rem;
}
.p-plan__detail-checklist-item {
  font: var(--zen);
  display: flex;
  column-gap: 0.25rem;
}
.p-plan__detail-checklist-item::before {
  content: "";
  width: 0.9rem;
  aspect-ratio: 18/16;
  background: url(../images/plan_detail_list_check.png) no-repeat center center/contain;
}

.p-recommend {
  display: grid;
  padding: 6rem 0;
}
.p-recommend__title {
  font: var(--zen);
  display: grid;
  grid-row-gap: 1rem;
  justify-items: center;
  color: var(--gray);
}
@media (max-width: 567px) {
  .p-recommend__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 568px) {
  .p-recommend__title {
    font-size: 1.75rem;
  }
}
.p-recommend__title img {
  width: 13.7rem;
}
.p-recommend__list {
  display: grid;
  margin-top: 3.5rem;
}
@media (max-width: 567px) {
  .p-recommend__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.75rem;
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-recommend__list {
    justify-self: center;
    grid-template-columns: repeat(3, 1fr);
  }
  body.page-home .p-recommend__list {
    grid-gap: 1.3rem 2rem;
    width: 50rem;
  }
  body:not(.page-home) .p-recommend__list {
    grid-gap: 0.5rem 5rem;
    width: 46rem;
  }
}
.p-recommend__listitem {
  display: grid;
  align-content: center;
  justify-items: center;
  font-size: 0.9rem;
}
body.page-home .p-recommend__listitem {
  height: 6.25rem;
  border-radius: 1.9rem 0.25rem 0.25rem 0.25rem;
  background: rgba(134, 189, 203, 0.2);
}
body:not(.page-home) .p-recommend__listitem {
  box-sizing: border-box;
  aspect-ratio: 240/300;
  padding-top: 4rem;
  background: no-repeat center bottom/contain;
}
@media (max-width: 567px) {
  body:not(.page-home) .p-recommend__listitem {
    padding-top: 2rem;
  }
}
body:not(.page-home) .p-recommend__listitem:nth-of-type(1) {
  background-image: url(../images/recommend_list_frame_1.png);
}
body:not(.page-home) .p-recommend__listitem:nth-of-type(2) {
  background-image: url(../images/recommend_list_frame_2.png);
}
body:not(.page-home) .p-recommend__listitem:nth-of-type(3) {
  background-image: url(../images/recommend_list_frame_3.png);
}
body:not(.page-home) .p-recommend__listitem:nth-of-type(4) {
  background-image: url(../images/recommend_list_frame_4.png);
}
body:not(.page-home) .p-recommend__listitem:nth-of-type(5) {
  background-image: url(../images/recommend_list_frame_5.png);
}
body:not(.page-home) .p-recommend__listitem:nth-of-type(6) {
  background-image: url(../images/recommend_list_frame_6.png);
}
.p-recommend__commit {
  display: grid;
  justify-items: center;
  grid-row-gap: 1.5rem;
  margin-top: 2.7rem;
}
@media (max-width: 567px) {
  .p-recommend__commit {
    padding: 0 6%;
  }
}
.p-recommend__commit-title {
  width: 7.5rem;
}
.p-recommend__commit-text {
  font-size: 1.25rem;
}
@media (min-width: 568px) {
  .p-recommend__commit-text {
    display: grid;
    justify-items: center;
  }
}
.p-recommend__commit-text strong {
  background: url(../images/text_underline.png) no-repeat left bottom/100% 0.75em;
}
.p-recommend__btn {
  margin-top: 4.2rem;
  justify-self: center;
}

.p-report {
  display: grid;
  grid-row-gap: 3.5rem;
  justify-items: center;
  padding: 4rem 0;
}
@media (max-width: 567px) {
  .p-report__list {
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-report__list {
    width: 50rem;
  }
}

.p-scene {
  display: grid;
  grid-row-gap: 3.5rem;
  justify-items: center;
  padding: 4rem 0;
  background: var(--lightblue);
}
body.page-yoron .p-scene {
  position: relative;
}
.p-scene__list {
  display: grid;
  grid-gap: 1rem;
}
@media (max-width: 567px) {
  .p-scene__list {
    padding: 0 6%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 568px) {
  .p-scene__list {
    width: 50rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-scene__list-image {
  aspect-ratio: 3/2;
  object-fit: cover;
}
.p-scene__comingsoon {
  margin: 2rem auto;
  color: #606060;
  font-size: 1.1rem;
}

.p-schedule {
  display: grid;
  grid-row-gap: 3.5rem;
  justify-items: center;
  padding: 4rem 0 6rem;
}
.p-schedule__lead {
  padding: 0 6%;
}
.p-schedule__title {
  display: grid;
  justify-items: center;
  color: var(--blue);
  font: var(--zen);
  line-height: 1.3;
}
@media (max-width: 567px) {
  .p-schedule__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 568px) {
  .p-schedule__title {
    font-size: 1.1rem;
  }
}
.p-schedule__title::after {
  content: "";
  aspect-ratio: 42/12;
  width: 2.1rem;
  margin-top: 1rem;
  background: url(../images/schedule_title_border.svg) no-repeat center center/contain;
}
.p-schedule__list {
  display: grid;
}
@media (max-width: 567px) {
  .p-schedule__list {
    grid-row-gap: 1.5rem;
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-schedule__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem 2rem;
    width: 50rem;
  }
}
.p-schedule__listitem {
  display: grid;
  grid-row-gap: 1rem;
}
.p-schedule__table {
  border-collapse: collapse;
}
.p-schedule__table caption {
  font: var(--zen);
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
}
.p-schedule__table tbody th,
.p-schedule__table tbody td {
  border: 1px solid var(--blue);
  padding: 0.5rem 0.75rem;
  line-height: 1.4;
}
.p-schedule__table tbody th {
  background: var(--lightblue);
  color: var(--blue);
}
.p-schedule__table tbody td strong {
  color: red;
}
.p-schedule__status {
  display: inline-flex;
  align-items: center;
  height: 2em;
  border-radius: 0.25rem;
  padding: 0 0.5rem;
  color: white;
  background: var(--blue);
  letter-spacing: 0.5em;
  text-indent: 0.5em;
}
.p-schedule__status--closed {
  letter-spacing: 0.25em;
  background: var(--lightgray);
}
.p-schedule__campaign th {
  background: #fcc000;
}
.p-schedule__campaign td {
  color: red;
  font-weight: bold;
}
.p-schedule__campaign td hr {
  border: dashed var(--blue);
  border-width: 1px 0 0;
}
body.page-kanazawa .p-schedule__campaign td small:nth-of-type(2) {
  color: var(--black);
}

body.page-yokohama .p-schedule__campaign td small:nth-of-type(2) {
  color: var(--black);
}

.p-schedule__entry {
  text-align: center;
}
.p-schedule__entry a {
  display: inline-flex;
  border-bottom: 2px solid var(--blue);
  margin: 0.5rem 0;
  padding-bottom: 0.25rem;
  font: var(--zen);
  color: var(--blue);
  font-size: 0.9rem;
  font-size: 1rem;
}

.p-school-intro {
  display: grid;
  grid-row-gap: 3rem;
  justify-items: center;
  margin-bottom: -2rem;
  padding: 4rem 0;
  background: no-repeat center center/cover;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}
@media (max-width: 567px) {
  .p-school-intro {
    padding-bottom: 8rem;
  }
}
@media (min-width: 568px) {
  .p-school-intro {
    padding-bottom: 6rem;
  }
}
body.page-yoron .p-school-intro {
  background-image: url(../images/school_intro_image_yoron.jpg);
}
body.page-tokyo .p-school-intro {
  background-image: url(../images/school_intro_image_tokyo.jpg);
}
body.page-bali .p-school-intro {
  background-image: url(../images/school_intro_image_bali.jpg);
}
body.page-kanazawa .p-school-intro {
  background-image: url(../images/school_intro_image_kanazawa.jpg);
}
body.page-yokohama .p-school-intro {
  background-image: url(../images/school_intro_image_yokohama.jpg);
}
body.page-online .p-school-intro {
  background-image: url(../images/school_intro_image_online.jpg);
}
.p-school-intro__title {
  font: var(--zen);
  text-align: center;
}
@media (max-width: 567px) {
  .p-school-intro__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 568px) {
  .p-school-intro__title {
    font-size: 1.75rem;
  }
}
.p-school-intro__title span {
  display: block;
}
.p-school-intro__text {
  display: grid;
  grid-row-gap: 1rem;
}
@media (max-width: 567px) {
  .p-school-intro__text {
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-school-intro__text {
    justify-items: center;
  }
  .p-school-intro__text p {
    display: grid;
    justify-items: center;
  }
}

.p-school-list {
  display: grid;
  margin: 0 auto;
}
@media (max-width: 567px) {
  .p-school-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-school-list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2.5rem 3.5rem;
  }
}
@media (max-width: 567px) {
  body.page-schedule .p-school-list {
    padding: 0;
  }
}

.p-school-list__item {
  font: var(--zen);
  display: grid;
  justify-items: center;
  line-height: 1.3;
}
.p-school-list__item-pic img {
  box-sizing: border-box;
  aspect-ratio: 1/1;
  width: 12rem;
  border: 0.5rem solid white;
  object-fit: cover;
}
.p-school-list__item-name {
  display: grid;
  grid-row-gap: 0.25rem;
  margin: 0.5rem 0 1rem;
  font-size: 1rem;
  text-align: center;
}
.p-school-list__item-name small {
  display: grid;
  font-size: 0.7rem;
}

.p-school {
  display: grid;
  padding-bottom: 6rem;
}

.p-selected {
  display: grid;
  grid-row-gap: 3.5rem;
  padding-bottom: 6rem;
}
.p-selected__video {
  display: grid;
}
@media (max-width: 567px) {
  .p-selected__video {
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-selected__video {
    justify-self: center;
    width: 46rem;
  }
}
.p-selected__video video {
  width: 100%;
}
.p-selected__list {
  display: grid;
}
@media (max-width: 567px) {
  .p-selected__list {
    grid-row-gap: 2rem;
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-selected__list {
    justify-self: center;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3rem 2.75rem;
    width: 50rem;
  }
}
.p-selected__listitem {
  display: grid;
  justify-items: center;
}
@media (max-width: 567px) {
  .p-selected__listitem {
    grid-row-gap: 1rem;
  }
}
.p-selected__listitem-caption {
  font: var(--zen);
  color: #83bac8;
  margin: 0.5rem auto 1rem;
}
@media (max-width: 567px) {
  .p-selected__listitem-caption {
    display: none;
  }
}
@media (min-width: 568px) {
  .p-selected__listitem-caption {
    font-size: 1rem;
  }
}
.p-selected__listitem-text {
  padding: 0 2rem;
  line-height: 1.5;
}
@media (max-width: 567px) {
  .p-selected__listitem-text {
    padding-left: 4rem;
  }
}

.p-sp-footmenu {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9;
  width: 100vw;
}
@media (min-width: 568px) {
  .p-sp-footmenu {
    display: none;
  }
}
.p-sp-footmenu ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 1px;
  background: white;
  font: var(--zen);
}
.p-sp-footmenu ul li {
  display: block;
  aspect-ratio: 1/1;
  background: var(--blue);
  color: white;
  font-size: 0.78rem;
}
.p-sp-footmenu ul li a {
  display: grid;
  grid-template-rows: max-content 1fr;
  align-items: center;
  justify-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0.25rem 0;
  text-align: center;
  line-height: 1.2;
}
.p-sp-footmenu ul li a::before {
  content: "";
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: no-repeat center center/contain;
}
.p-sp-footmenu ul li:nth-of-type(1) a::before {
  background-image: url(../images/sp_footmenu_icon_1.png);
}
.p-sp-footmenu ul li:nth-of-type(2) a::before {
  background-image: url(../images/sp_footmenu_icon_2.png);
}
.p-sp-footmenu ul li:nth-of-type(3) a::before {
  background-image: url(../images/sp_footmenu_icon_3.png);
}
.p-sp-footmenu ul li:nth-of-type(4) a::before {
  background-image: url(../images/sp_footmenu_icon_4.png);
}
.p-sp-footmenu ul li:nth-of-type(5) a::before {
  background-image: url(../images/sp_footmenu_icon_5.png);
}

.p-studio-info {
  display: grid;
  position: relative;
}
@media (min-width: 568px) {
  .p-studio-info::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -1;
    aspect-ratio: 654/435;
    width: 32.7rem;
    padding-bottom: 6rem;
    transform: translate(-2.6rem, 6.3rem);
    background: url(../images/top_studio_info_image.jpg) no-repeat center center/contain;
  }
}
.p-studio-info__detail {
  justify-self: center;
  display: grid;
  grid-template-columns: max-content 1fr;
  position: relative;
}
@media (max-width: 567px) {
  .p-studio-info__detail {
    margin: 3rem 6% 0;
  }
}
@media (min-width: 568px) {
  .p-studio-info__detail {
    width: 50rem;
    margin-top: 13.3rem;
  }
}
.p-studio-info__detail-label, .p-studio-info__detail-body {
  padding: 0.5rem;
  font: var(--zen);
}
@media (min-width: 568px) {
  .p-studio-info__detail-label, .p-studio-info__detail-body {
    font-size: 0.9rem;
  }
}
.p-studio-info__detail-body {
  display: block;
}
.p-studio-info__detail-body::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  transform: translateY(0.5rem);
  border-bottom: 2px dotted var(--black);
}

.p-studio-list {
  display: grid;
  justify-content: center;
}
@media (max-width: 567px) {
  .p-studio-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-studio-list {
    grid-auto-flow: column;
    grid-column-gap: 4rem;
  }
}
.p-studio-list__listitem {
  display: grid;
  justify-items: center;
}
@media (min-width: 568px) {
  .p-studio-list__listitem {
    grid-template-rows: subgrid;
    grid-row: 1/4;
    align-items: start;
    align-items: center;
  }
}
.p-studio-list__listitem-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: solid white 0.5rem;
}
@media (min-width: 568px) {
  .p-studio-list__listitem-image {
    width: 12rem;
  }
}
.p-studio-list__listitem-name {
  font: var(--zen);
  display: grid;
  justify-items: center;
  margin: 0.5rem 0 1rem;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 567px) {
  .p-studio-list__listitem-name {
    font-size: 1.25rem;
  }
  .p-studio-list__listitem-name br {
    display: none;
  }
}
@media (min-width: 568px) {
  .p-studio-list__listitem-name {
    font-size: 1rem;
  }
}
.p-studio-list__listitem-name small {
  font-size: 0.7rem;
}

.p-studio {
  display: grid;
  padding-bottom: 6rem;
}

.p-top-instructor {
  display: grid;
  grid-row-gap: 3.5rem;
  margin-top: -3rem;
}
.p-top-instructor__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
}
@media (max-width: 567px) {
  .p-top-instructor__list {
    grid-gap: 1.5rem;
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-top-instructor__list {
    width: 40rem;
    margin: 0 auto;
    grid-gap: 2rem 4.5rem;
  }
}
.p-top-instructor__list::before {
  content: "";
}
.p-top-instructor__listitem {
  grid-column: span 2;
}
.p-top-instructor__notes {
  justify-self: center;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--blue);
  color: var(--blue);
}
@media (max-width: 567px) {
  .p-top-instructor__notes {
    margin: 0 6%;
  }
}

.p-top-schedule {
  display: grid;
  padding: 4rem 0;
  grid-row-gap: 3.5rem;
  justify-items: center;
  background: var(--blue);
}
.p-top-schedule__text {
  color: white;
}
@media (max-width: 567px) {
  .p-top-schedule__text {
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-top-schedule__text {
    text-align: center;
  }
}

.p-top-selected {
  display: grid;
  grid-row-gap: 3.5rem;
  padding-bottom: 6rem;
}
@media (max-width: 567px) {
  .p-top-selected__list {
    display: grid;
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-top-selected__list {
    justify-self: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 50rem;
  }
}
.p-top-selected__listitem {
  display: grid;
  grid-row-gap: 0.75rem;
  align-content: start;
  position: relative;
  box-sizing: border-box;
  aspect-ratio: 293/285;
  padding: 1.75rem 1.75rem 0;
  background: url(../images/top_about_reason_frame.svg) no-repeat top center/contain;
  text-align: center;
}
@media (max-width: 567px) {
  .p-top-selected__listitem {
    width: 18rem;
  }
  .p-top-selected__listitem:nth-child(n+2) {
    margin-top: 0.5rem;
  }
  .p-top-selected__listitem:nth-child(even) {
    justify-self: end;
  }
}
@media (min-width: 568px) {
  .p-top-selected__listitem {
    width: calc((100% - 4rem) / 3);
  }
}
.p-top-selected__listitem::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2.9rem;
  aspect-ratio: 1/1;
  transform: translate(-50%, -1.3rem);
  background: no-repeat center center/contain;
}
.p-top-selected__listitem:nth-of-type(1)::before {
  background-image: url(../images/top_about_reason_num_1.svg);
}
.p-top-selected__listitem:nth-of-type(2)::before {
  background-image: url(../images/top_about_reason_num_2.svg);
}
.p-top-selected__listitem:nth-of-type(3)::before {
  background-image: url(../images/top_about_reason_num_3.svg);
}
.p-top-selected__listitem:nth-of-type(4)::before {
  background-image: url(../images/top_about_reason_num_4.svg);
}
.p-top-selected__listitem:nth-of-type(5)::before {
  background-image: url(../images/top_about_reason_num_5.svg);
}
.p-top-selected__listitem:nth-of-type(6)::before {
  background-image: url(../images/top_about_reason_num_6.svg);
}
.p-top-selected__listitem:nth-of-type(7)::before {
  background-image: url(../images/top_about_reason_num_7.svg);
}
.p-top-selected__listitem:nth-of-type(8)::before {
  background-image: url(../images/top_about_reason_num_8.svg);
}
.p-top-selected__caption {
  font: var(--zen);
  display: grid;
  justify-items: center;
  line-height: 1.3;
  color: var(--blue);
}
@media (max-width: 567px) {
  .p-top-selected__caption {
    font-size: 1.2rem;
  }
}
@media (min-width: 568px) {
  .p-top-selected__caption {
    font-size: 1rem;
  }
}
.p-top-selected__text {
  line-height: 1.4;
}

.p-villa {
  display: grid;
  grid-row-gap: 3.5rem;
  justify-items: center;
  padding: 4rem 0;
}
.p-villa__list {
  display: grid;
  grid-gap: 1rem;
}
@media (max-width: 567px) {
  .p-villa__list {
    padding: 0 6%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 568px) {
  .p-villa__list {
    width: 50rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-villa__list-image {
  aspect-ratio: 3/2;
  object-fit: cover;
}

.p-voice {
  display: grid;
  grid-row-gap: 3.5rem;
  justify-items: center;
  padding: 4rem 0;
  background: var(--lightblue);
}
.p-voice__list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
}
@media (max-width: 567px) {
  .p-voice__list {
    padding: 0 6%;
  }
}
@media (min-width: 568px) {
  .p-voice__list {
    width: 50rem;
  }
}
@media (max-width: 567px) {
  .p-voice__listitem:nth-of-type(n+4) {
    display: none;
  }
}
.p-voice__listitem-pic {
  display: grid;
  justify-items: center;
  grid-row-gap: 1rem;
}
.p-voice__listitem-pic img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}
.p-voice__listitem-cap {
  font: var(--zen);
  display: grid;
  justify-items: center;
}

.p-wpcf7 form {
  display: grid;
  grid-row-gap: 1rem;
}
@media (min-width: 568px) {
  .p-wpcf7 form {
    width: 36.2rem;
  }
}
.p-wpcf7__item {
  display: grid;
  grid-row-gap: 0.25rem;
}
.p-wpcf7__label {
  font: var(--zen);
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.p-wpcf7__label--required::after {
  content: "※";
  color: red;
}
.p-wpcf7__input {
  font-size: 1rem;
}
.p-wpcf7__input input[type=text],
.p-wpcf7__input input[type=email],
.p-wpcf7__input input[type=tel],
.p-wpcf7__input textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid var(--black);
  padding: 0.5rem;
}
.p-wpcf7__input .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.5rem;
}
.p-wpcf7__input .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.p-wpcf7__input .wpcf7-not-valid-tip {
  margin-top: 0.25rem;
  font-size: 0.8rem;
}
.p-wpcf7__input .wpcf7-select {
  padding: 0.5em;
}
.p-wpcf7__submit input {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 2.5em;
  border: none;
  margin-top: 2rem;
  background: var(--blue);
  color: white;
  font: var(--zen);
  font-size: 1.2rem;
}
.p-wpcf7 .wpcf7-response-output {
  display: none !important;
}
.p-wpcf7 .wpcf7-spinner {
  display: none !important;
}

.c-btn {
  font: var(--zen);
  display: flex;
  align-items: center;
  column-gap: 4.3rem;
  box-sizing: border-box;
  width: max-content;
  height: 4.6rem;
  border: 2px solid var(--blue);
  border-radius: 0.35rem;
  padding: 0 2.8rem;
  font-size: 1.25rem;
}
.c-btn:hover {
  transition: 150ms;
  opacity: 0.6;
}
.c-btn--small {
  height: 2.25rem;
  padding: 0 1rem;
  font-size: 0.85rem;
}
@media (max-width: 567px) {
  .c-btn--small {
    padding: 0 0.5rem;
  }
}
.c-btn--solid {
  border: none;
}
.c-btn--solid.c-btn--blue {
  background: var(--blue);
  color: white;
}
.c-btn--solid.c-btn--white {
  background: white;
  color: var(--blue);
}
.c-btn--frame {
  border: 2px solid;
}
.c-btn--frame.c-btn--blue {
  border-color: var(--blue);
  background: white;
  color: var(--blue);
}
.c-btn--frame.c-btn--white {
  border-color: white;
  color: white;
}
.c-btn--forward::after {
  content: "";
  aspect-ratio: 1/1;
  width: 1.6rem;
  background: no-repeat center center/contain;
}
.c-btn--forward.c-btn--solid.c-btn--white::after, .c-btn--forward.c-btn--frame.c-btn--blue::after {
  background-image: url(../images/framebtn_icon_forward.svg);
}
.c-btn--forward.c-btn--solid.c-btn--blue::after, .c-btn--forward.c-btn--frame.c-btn--white::after {
  background-image: url(../images/framebtn_icon_forward_white.svg);
}
.c-btn > span {
  display: grid;
  justify-items: center;
  line-height: 1.3;
}

.c-glowbtn {
  position: relative;
  display: block;
  border-radius: 0.4rem;
  overflow: hidden;
}
.c-glowbtn img, .c-glowbtn::after {
  animation-iteration-count: infinite;
  animation-duration: 4s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.c-glowbtn::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.7)) no-repeat left top/20% 100%;
  transform-origin: right top;
  mix-blend-mode: overlay;
  animation-name: shine;
}
@keyframes shine {
  0% {
    transform: skewX(-30deg) translateX(-25%);
  }
  50% {
    opacity: 1;
    transform: skewX(-30deg) translateX(125%);
  }
  100% {
    transform: skewX(-30deg) translateX(125%);
  }
}
.c-glowbtn img {
  animation-name: bright;
}
@keyframes bright {
  0% {
    filter: brightness(100%);
  }
  10% {
    filter: brightness(110%);
  }
  55% {
    filter: brightness(100%);
  }
  100% {
    filter: brightness(100%);
  }
}

.c-contents-head {
  display: grid;
  grid-row-gap: 3rem;
  justify-items: center;
  background: no-repeat center center/cover;
}
.c-contents-head--license {
  padding-top: 4rem;
  padding-bottom: 10rem;
}
.c-contents-head--aboutus, .c-contents-head--school, .c-contents-head--studio, .c-contents-head--faq {
  margin-bottom: -3rem;
  padding-top: 4rem;
  padding-bottom: 7rem;
}
@media (max-width: 567px) {
  body.page-home .c-contents-head--aboutus {
    padding-bottom: 10rem;
  }
}
.c-contents-head--aboutus {
  background-image: url(../images/aboutus_head_image.jpg);
  background-position: right center;
}
.c-contents-head--license {
  background-image: url(../images/license_head_image.jpg);
}
@media (max-width: 567px) {
  .c-contents-head--license {
    background-position: right 10% center;
  }
}
body:not(.page-yoron) .c-contents-head--school {
  background-image: url(../images/school_head_image.jpg);
}
body.page-yoron .c-contents-head--school {
  background-image: url(../images/school_head_image_yoron.jpg);
}
body:not(.page-yoron) .c-contents-head--studio {
  background-image: url(../images/studio_head_image.jpg);
}
body.page-yoron .c-contents-head--studio {
  background-image: url(../images/studio_head_image_yoron.jpg);
}
body.page-kanazawa .c-contents-head--studio {
  background-image: url(../images/studio_head_image_kanazawa.jpg);
}
body:not(.page-yoron) .c-contents-head--faq {
  background-image: url(../images/faq_head_image.jpg);
}
body.page-yoron .c-contents-head--faq {
  background-image: url(../images/faq_head_image_yoron.jpg);
}
@media (max-width: 567px) {
  body.page-home .c-contents-head--aboutus {
    background-position: right 15% center;
  }
}
.c-contents-head__title {
  font: var(--zen);
  display: grid;
  grid-row-gap: 0.25rem;
  justify-items: center;
  color: var(--blue);
  line-height: 1.3;
}
@mx .sp {
  .c-contents-head__title {
    font-size: 1.25rem;
  }
}
@mx .pc {
  .c-contents-head__title {
    font-size: 1.1rem;
  }
}
.c-contents-head__title img {
  order: -1;
  height: 2rem;
}
.c-contents-head__title img[src*=license], .c-contents-head__title img[src*=column], .c-contents-head__title img[src*=instagram], .c-contents-head__title img[src*=sns] {
  height: 2.4rem;
}
.c-contents-head--aboutus .c-contents-head__title, .c-contents-head--schedule .c-contents-head__title, .c-contents-head--license .c-contents-head__title, .c-contents-head--school .c-contents-head__title, .c-contents-head--studio .c-contents-head__title, .c-contents-head--faq .c-contents-head__title {
  color: white;
}
.c-contents-head__caption {
  font: var(--zen);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 2.1rem;
  border: 1px solid white;
  border-radius: 1.05rem;
  padding: 0 2.5rem;
  color: white;
  font-size: 1.1rem;
}
.c-contents-head__lead {
  display: grid;
  grid-row-gap: 1rem;
  justify-items: center;
  color: white;
}
@media (max-width: 567px) {
  .c-contents-head__lead {
    max-width: 88%;
  }
}
@media (min-width: 568px) {
  .c-contents-head__lead {
    max-width: 36rem;
    text-align: center;
  }
}
.c-contents-head--aboutus .c-contents-head__lead span {
  display: block;
  text-align: center;
}

.c-contents-head2 {
  display: grid;
}
@media (max-width: 567px) {
  .c-contents-head2 {
    position: relative;
    grid-row-gap: 1.6rem;
  }
}
@media (min-width: 568px) {
  .c-contents-head2 {
    grid-template-rows: max-content 1fr;
    grid-column-gap: 1rem;
    align-items: center;
  }
  body.page-yoron .c-contents-head2--plan, body:not(.page-tokyo) .c-contents-head2--selected, body:not(.page-yoron) .c-contents-head2--message, .c-contents-head2--faq, .c-contents-head2--flow {
    grid-template-areas: "blank entitle title" "blank lead title";
    grid-template-columns: 1fr 24rem 50%;
  }
  body:not(.page-yoron) .c-contents-head2--plan, body.page-tokyo .c-contents-head2--selected, body.page-kanazawa .c-contents-head2--selected, body.page-yokohama .c-contents-head2--selected, body.page-yoron .c-contents-head2--message, .c-contents-head2--instructor, .c-contents-head2--studioinfo, .c-contents-head2--aboutus {
    grid-template-areas: "title entitle blank" "title lead blank";
    grid-template-columns: 50% 24rem 1fr;
  }
  .c-contents-head2__title {
    grid-area: title;
  }
  .c-contents-head2__lead {
    grid-area: lead;
  }
  .c-contents-head2::before {
    grid-area: entitle;
  }
}
.c-contents-head2::before {
  content: "";
  margin-top: -1rem;
  background: no-repeat center center/contain;
}
@media (max-width: 567px) {
  .c-contents-head2::before {
    position: absolute;
    left: 50%;
    top: 1rem;
    transform: translate(-50%, -50%);
    width: 88%;
  }
}
@media (min-width: 568px) {
  .c-contents-head2::before {
    width: 100%;
  }
}
.c-contents-head2--selected::before {
  aspect-ratio: 480/148;
  background-image: url(../images/entitle_selected.svg);
}
@media (min-width: 568px) {
  .c-contents-head2--selected::before {
    transform: translateY(-1.5rem);
  }
}
.c-contents-head2--message::before {
  aspect-ratio: 500/200;
  background-image: url(../images/entitle_message.svg);
}
.c-contents-head2--instructor::before {
  aspect-ratio: 560/155;
  background-image: url(../images/entitle_instructor.svg);
}
.c-contents-head2--faq::before {
  aspect-ratio: 505/173;
  background-image: url(../images/entitle_questions.svg);
}
.c-contents-head2--aboutus::before {
  aspect-ratio: 472/139;
  background-image: url(../images/entitle_aboutus.svg);
}
.c-contents-head2--plan::before {
  aspect-ratio: 472/139;
  background-image: url(../images/entitle_plando.svg);
}
.c-contents-head2--flow::before {
  aspect-ratio: 471/195;
  background-image: url(../images/entitle_flow.svg);
}
.c-contents-head2__title {
  font: var(--zen);
  display: grid;
  align-content: center;
  background: var(--blue) url(../images/logo_title_back.png) no-repeat;
  color: white;
  line-height: 1.75;
  font-size: 1.7rem;
}
.c-contents-head2--plan .c-contents-head2__title {
  background-color: white;
  background-image: url(../images/logo_title_back_white.png);
  color: var(--blue);
}
@media (max-width: 567px) {
  .c-contents-head2__title {
    justify-content: center;
    justify-items: center;
    aspect-ratio: 1124/805;
    background-position: left 0.5rem bottom;
    background-size: 21.2rem auto;
  }
}
@media (min-width: 568px) {
  .c-contents-head2__title {
    height: 20.9rem;
    background-size: 18.4rem auto;
  }
  body.page-yoron .c-contents-head2--plan .c-contents-head2__title, body:not(.page-tokyo) .c-contents-head2--selected .c-contents-head2__title, body:not(.page-yoron) .c-contents-head2--message .c-contents-head2__title, .c-contents-head2--faq .c-contents-head2__title, .c-contents-head2--flow .c-contents-head2__title {
    justify-items: start;
    padding-left: 4rem;
    background-position: left 20rem bottom;
  }
  body:not(.page-yoron) .c-contents-head2--plan .c-contents-head2__title, body.page-tokyo .c-contents-head2--selected .c-contents-head2__title, body.page-yoron .c-contents-head2--message .c-contents-head2__title, .c-contents-head2--instructor .c-contents-head2__title, .c-contents-head2--studioinfo .c-contents-head2__title, .c-contents-head2--aboutus .c-contents-head2__title {
    justify-items: end;
    padding-right: 4rem;
    background-position: right 20rem bottom;
  }
}
.c-contents-head2__lead {
  display: grid;
  grid-row-gap: 1rem;
}
.c-contents-head2--plan .c-contents-head2__lead {
  color: white;
}
@media (max-width: 567px) {
  .c-contents-head2__lead {
    padding: 0 6%;
    justify-items: center;
  }
}
@media (min-width: 568px) {
  .c-contents-head2__lead {
    align-self: end;
  }
  .c-contents-head2--plan .c-contents-head2__lead, .c-contents-head2--aboutus .c-contents-head2__lead, .c-contents-head2--flow .c-contents-head2__lead {
    align-self: center;
  }
}
.c-contents-head2__lead-caption {
  font-size: 1rem;
}
body.page-yoron .c-contents-head2__lead strong {
  font-weight: normal;
  font-size: 110%;
}
.c-contents-head2__list {
  display: grid;
  grid-row-gap: 0.5rem;
}
.c-contents-head2__listitem {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 0.5rem;
  align-items: center;
  justify-content: start;
}
.c-contents-head2__listitem::before {
  content: "";
  background: url(../images/top_about_instructor_policy_listicon.svg) no-repeat center center/contain;
  aspect-ratio: 25/21;
  width: 1.25rem;
}

.c-imgbtn {
  height: 4.6rem;
}
.c-imgbtn:hover {
  transition: 150ms;
  opacity: 0.6;
}
@media (max-width: 567px) {
  .c-imgbtn img[src*=viewall] {
    height: 1.6rem;
  }
}
@media (min-width: 568px) {
  .c-imgbtn img[src*=viewall] {
    height: 2.1rem;
  }
}

.c-page-title {
  position: relative;
  display: grid;
}
@media (max-width: 567px) {
  .c-page-title {
    margin: 4rem 0;
    padding: 0 6%;
    grid-gap: 2em;
  }
}
@media (min-width: 568px) {
  .c-page-title {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
    grid-row-gap: 3.8rem;
  }
}
.c-page-title::after {
  justify-self: end;
  content: "";
  display: block;
  background: var(--blue) no-repeat left center/cover;
}
body.page-information .c-page-title::after {
  background-image: url(../images/title_image_information.jpg);
}
body.page-schedule .c-page-title::after {
  background-image: url(../images/title_image_schedule.jpg);
}
body.page-report .c-page-title::after {
  background-image: url(../images/title_image_report.jpg);
}
body.page-voice .c-page-title::after {
  background-image: url(../images/title_image_voice.jpg);
}
body.page-column .c-page-title::after {
  background-image: url(../images/title_image_column.jpg);
}
body.page-pilates_voice .c-page-title::after {
  background-image: url(../images/title_image_pilates.jpg);
}
@media (max-width: 567px) {
  .c-page-title::after {
    width: 100%;
    aspect-ratio: 1000/427;
  }
  body:is(.page-contact, .page-entry) .c-page-title::after {
    background-image: url(../images/title_image_contact_sp.jpg);
  }
  body:is(.page-schedule-yoron) .c-page-title::after {
    background-image: url(../images/title_image_yoron_sp.jpg);
  }
  body:is(.page-schedule-bali) .c-page-title::after {
    background-image: url(../images/title_image_bali_sp.jpg);
  }
  body:is(.page-schedule-tokyo) .c-page-title::after {
    background-image: url(../images/title_image_tokyo_sp.jpg);
  }
  body:is(.page-schedule-kanazawa) .c-page-title::after {
    background-image: url(../images/title_image_schedule.jpg);
  }
  body:is(.page-schedule-yokohama) .c-page-title::after {
    background-image: url(../images/title_image_schedule.jpg);
  }
}
@media (min-width: 568px) {
  .c-page-title::after {
    width: calc(100vw - (100vw - 60rem) / 2 - 7.5rem);
    height: 20.5rem;
  }
  body:is(.page-contact, .page-entry) .c-page-title::after {
    background-image: url(../images/title_image_contact_pc.jpg);
  }
  body:is(.page-schedule-yoron) .c-page-title::after {
    background-image: url(../images/title_image_yoron_pc.jpg);
  }
  body:is(.page-schedule-bali) .c-page-title::after {
    background-image: url(../images/title_image_bali_pc.jpg);
  }
  body:is(.page-schedule-tokyo) .c-page-title::after {
    background-image: url(../images/title_image_tokyo_pc.jpg);
  }
  body:is(.page-schedule-kanazawa) .c-page-title::after {
    background-image: url(../images/title_image_schedule.jpg);
  }
  body:is(.page-schedule-yokohama) .c-page-title::after {
    background-image: url(../images/title_image_schedule.jpg);
  }
}
.c-page-title__title {
  display: grid;
  grid-row-gap: 1rem;
  color: var(--blue);
  font: var(--zen);
  font-size: 1.5rem;
}
@media (max-width: 567px) {
  .c-page-title__title {
    justify-items: center;
  }
}
@media (min-width: 568px) {
  .c-page-title__title {
    justify-self: center;
    width: 55.5rem;
  }
}
.c-page-title__title::before {
  content: "";
  background: no-repeat left bottom/contain;
  height: 2.1rem;
}
body.page-information .c-page-title__title::before {
  aspect-ratio: 249/42;
  background-image: url(../images/pagetitle_information.svg);
}
body.page-contact .c-page-title__title::before {
  aspect-ratio: 183/42;
  background-image: url(../images/pagetitle_contact.svg);
}
body:is(.page-schedule, .page-schedule-tokyo, .page-schedule-yoron) .c-page-title__title::before {
  aspect-ratio: 202/42;
  background-image: url(../images/pagetitle_schedule.svg);
}
body.page-column .c-page-title__title::before {
  aspect-ratio: 156/42;
  background-image: url(../images/pagetitle_column.svg);
}
body.page-pilates_voice .c-page-title__title::before {
  aspect-ratio: 345/38;
  background-image: url(../images/pagetitle_pilates.svg);
}
body.page-voice .c-page-title__title::before {
  aspect-ratio: 124/42;
  background-image: url(../images/pagetitle_voice.svg);
}
body.page-report .c-page-title__title::before {
  aspect-ratio: 296/48;
  background-image: url(../images/pagetitle_report.svg);
}
body.page-entry .c-page-title__title::before {
  aspect-ratio: 91/49;
  background-image: url(../images/pagetitle_entry.svg);
}
.c-page-title__title a {
  color: inherit;
  text-decoration: none;
  line-height: 1.25;
}
@media (max-width: 567px) {
  .c-page-title__title a {
    font-size: 150%;
  }
}
@media (min-width: 568px) {
  .c-page-title__title a {
    font-size: 180%;
  }
}
.c-page-title__scroll {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0.5em;
  align-items: center;
  position: absolute;
  bottom: 0;
  transform-origin: right bottom;
  color: var(--blue);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
body.page-privacy .c-page-title__scroll {
  display: none;
}
@media (max-width: 567px) {
  .c-page-title__scroll {
    display: none;
  }
}
@media (min-width: 568px) {
  .c-page-title__scroll {
    width: 13.6rem;
    right: 50%;
    transform: translateX(-27.75rem) rotate(90deg);
  }
}
.c-page-title__scroll img {
  width: 3.3rem;
}
.c-page-title__scroll span {
  position: relative;
  height: 0.35em;
  background: linear-gradient(var(--blue), var(--blue)) no-repeat center center/100% 1px;
}
.c-page-title__scroll span::before {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--blue);
  animation-name: eyex-page-title-scroll;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes eyex-page-title-scroll {
  0% {
    left: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 0.35em);
    opacity: 0;
  }
}

.c-page-title2__title {
  display: grid;
  grid-row-gap: 1rem;
  justify-items: center;
  color: var(--blue);
  font: var(--zen);
  font-size: 1.5rem;
}
@media (max-width: 567px) {
  .c-page-title2__title {
    margin: 4rem auto;
  }
}
@media (min-width: 568px) {
  .c-page-title2__title {
    margin-top: 13.3rem;
    margin-bottom: 5rem;
  }
}
.c-page-title2__title::before {
  width: 100%;
  content: "";
  height: 2.1rem;
  background: no-repeat center center/contain;
}
body.page-policy .c-page-title2__title::before, body.page-commercial .c-page-title2__title::before, body.page-thanks .c-page-title2__title::before {
  height: 2.6rem;
}
body.page-terms .c-page-title2__title::before {
  background-image: url(../images/pagetitle_terms.svg);
}
body.page-policy .c-page-title2__title::before {
  background-image: url(../images/pagetitle_policy.svg);
}
@media (max-width: 567px) {
  body.page-commercial .c-page-title2__title::before {
    height: 4.5rem;
    background-image: url(../images/pagetitle_commercial_sp.svg);
  }
}
@media (min-width: 568px) {
  body.page-commercial .c-page-title2__title::before {
    background-image: url(../images/pagetitle_commercial.svg);
  }
}
body.page-thanks .c-page-title2__title::before {
  background-image: url(../images/pagetitle_thanks.svg);
}

.c-photoview {
  display: grid;
  position: fixed;
  z-index: 11;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}
.c-photoview .prevbtn {
  grid-area: prevbtn;
}
.c-photoview .nextbtn {
  grid-area: nextbtn;
}
.c-photoview .closebtn {
  grid-area: closebtn;
}
.c-photoview .mainview {
  grid-area: mainview;
}
.c-photoview .thumview {
  grid-area: thumview;
}
@media (max-width: 567px) {
  .c-photoview {
    grid-template-areas: "mainview mainview mainview" "prevbtn closebtn nextbtn" "thumview thumview thumview";
    grid-template-rows: 1fr;
    grid-template-columns: 1fr max-content 1fr;
    grid-row-gap: 1em;
  }
}
@media (min-width: 568px) {
  .c-photoview {
    grid-template-areas: "blank blank closebtn" "prevbtn mainview nextbtn" "thumview thumview thumview";
    grid-template-columns: 4em 1fr 4em;
    grid-template-rows: max-content 1fr max-content;
  }
}
.c-photoview button {
  display: grid;
  align-content: center;
  justify-content: center;
  border: none;
  margin: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}
.c-photoview button.closebtn {
  aspect-ratio: 1/1;
}
.c-photoview button.closebtn::before, .c-photoview button.closebtn::after {
  content: "";
  grid-column: 1;
  grid-row: 1;
  width: 2.5em;
  height: 2px;
  background: white;
}
.c-photoview button.closebtn::before {
  transform: rotate(45deg);
}
.c-photoview button.closebtn::after {
  transform: rotate(-45deg);
}
.c-photoview button.prevbtn::before, .c-photoview button.nextbtn::before {
  content: "";
  width: 2em;
  aspect-ratio: 1/1;
  border: solid white;
  border-width: 2px 0 0 2px;
}
.c-photoview button.prevbtn::before {
  transform: translateX(50%) rotate(-45deg);
}
.c-photoview button.nextbtn::before {
  transform: translateX(-50%) rotate(135deg);
}
@media (max-width: 567px) {
  .c-photoview button {
    font-size: 50%;
  }
  .c-photoview button.prevbtn, .c-photoview button.nextbtn {
    justify-content: center;
  }
}
@media (min-width: 568px) {
  .c-photoview button.prevbtn, .c-photoview button.nextbtn {
    width: 4em;
    height: 100%;
  }
}
.c-photoview .mainview {
  display: flex;
  padding: 1em;
  overflow: hidden;
}
.c-photoview .mainview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation-name: fadein;
  animation-duration: 400ms;
  animation-delay: 10ms;
  animation-fill-mode: both;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.c-photoview .thumview {
  justify-self: center;
  padding: 1em;
  justify-content: center;
}
.c-photoview .thumview img {
  aspect-ratio: 1/1;
  border-radius: 1px;
  object-fit: cover;
  cursor: pointer;
}
.c-photoview .thumview img.selected {
  opacity: 0.3;
}
@media (max-width: 567px) {
  .c-photoview .thumview {
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
  }
  .c-photoview .thumview img {
    width: 4em;
  }
}
@media (min-width: 568px) {
  .c-photoview .thumview {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    grid-gap: 1em;
  }
}

.c-post-list {
  display: grid;
}
@media (max-width: 567px) {
  .c-post-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1em;
    padding: 0 1em;
  }
}
@media (min-width: 568px) {
  .c-post-list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2em;
  }
}
.c-post-list img {
  max-width: 100%;
}
.c-post-list article {
  display: grid;
  grid-gap: 0.5em 1em;
  grid-template-rows: subgrid;
  align-items: start;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  padding: 1em;
  background: white;
  cursor: pointer;
}
@media (max-width: 567px) {
  .c-post-list article {
    grid-template-columns: 1fr;
    grid-row: span 5;
    grid-template-areas: "image" "title" "author" "summary" "more";
  }
  .c-post-list article:nth-of-type(n+5) {
    display: none;
  }
}
@media (min-width: 568px) {
  .c-post-list article {
    grid-template-columns: 1fr max-content;
    grid-row: span 4;
    grid-template-areas: "image image" "title author" "summary summary" "more more";
  }
}
.c-post-list article .image {
  grid-area: image;
}
.c-post-list article .title {
  grid-area: title;
}
.c-post-list article .author {
  grid-area: author;
}
.c-post-list article .summary {
  grid-area: summary;
}
.c-post-list article .more {
  grid-area: more;
}
.c-post-list article .author a {
  display: grid;
  grid-gap: 0.75em;
  line-height: 1;
  font-size: 70%;
}
.c-post-list article .author img {
  width: 4em;
}
body.page-pilates_voice .c-post-list article .author {
  visibility: hidden;
}

.c-post-list article .image {
  margin: -1em -1em 0.5em -1em;
}
.c-post-list article .image img {
  object-fit: cover;
}
@media (max-width: 567px) {
  .c-post-list article .image img {
    aspect-ratio: 4/3;
  }
}
@media (min-width: 568px) {
  .c-post-list article .image img {
    aspect-ratio: 1.618;
  }
}
.c-post-list article .summary {
  margin-bottom: auto;
}
.c-post-list article .summary p {
  margin: 0;
}
@media (max-width: 567px) {
  .c-post-list article .summary p {
    font-size: 80%;
    line-height: 1.4;
  }
}
@media (min-width: 568px) {
  .c-post-list article .summary p {
    font-size: 90%;
    line-height: 1.5;
  }
}
.c-post-list article .more {
  justify-self: end;
  line-height: 1;
  color: var(--blue);
}
@media (max-width: 567px) {
  .c-post-list article .more {
    font-size: 80%;
  }
}
@media (min-width: 568px) {
  .c-post-list article .more {
    margin-top: -0.5em;
    font-size: 90%;
  }
}
.c-post-list article .title {
  display: grid;
  grid-row-gap: 0.25em;
  line-height: 1.3;
  align-content: start;
}
.c-post-list article .title time {
  color: var(--darkgray);
}
@media (max-width: 567px) {
  .c-post-list article .title time {
    font-size: 70%;
  }
}
@media (min-width: 568px) {
  .c-post-list article .title time {
    font-size: 90%;
  }
}
.c-post-list article .title h1 {
  margin: 0;
  color: var(--blue);
}
@media (max-width: 567px) {
  .c-post-list article .title h1 {
    font-size: 90%;
  }
}
@media (min-width: 568px) {
  .c-post-list article .title h1 {
    font-size: 110%;
  }
}
.c-post-list article .title a {
  color: inherit;
}

.c-voice-archives ul {
  display: grid;
  grid-gap: 1.5em;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (min-width: 568px) {
  .c-voice-archives ul {
    width: 50rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-voice-archives li {
  display: grid;
  grid-gap: 0.5em;
  background: white;
  align-content: start;
  border: 1px solid #ddd;
  padding: 1em;
  background: rgba(255, 255, 255, 0.63);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 567px) {
  .c-voice-archives li {
    font-size: 80%;
  }
}
.c-voice-archives li.on {
  opacity: 0.7;
  box-shadow: none;
}
.c-voice-archives li figure {
  display: grid;
  grid-gap: 0.75em;
  justify-items: center;
}
.c-voice-archives li figure img {
  width: 100%;
  object-fit: cover;
  transition: 200ms;
}
@media (max-width: 567px) {
  .c-voice-archives li figure img {
    aspect-ratio: 2/1;
    aspect-ratio: 2.5/1;
    object-position: center top;
  }
}
@media (min-width: 568px) {
  .c-voice-archives li figure img {
    aspect-ratio: 1.618/1;
  }
  .c-voice-archives li figure img:hover {
    filter: brightness(110%);
  }
}
.c-voice-archives li figure figcaption {
  color: #4895ac;
  font-size: 110%;
  font-weight: bold;
}
.c-voice-archives li p {
  font-size: 90%;
  line-height: 1.5;
}
.c-voice-archives li .more {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.c-voice-archives li .more::after {
  content: "";
  display: block;
  width: 0.5em;
  aspect-ratio: 1/1;
  border: solid var(--blue);
  border-width: 1.5px 1.5px 0 0;
  transform: rotate(45deg);
}

.c-wave {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 1rem;
  overflow-x: hidden;
}
.c-wave::before, .c-wave::after {
  content: "";
  position: absolute;
  left: -10vw;
  bottom: 0;
  width: 120vw;
  height: 100%;
  background: url(../images/yoron_wave2.png) repeat-x center bottom/auto 100%;
  transform-origin: center bottom;
  animation-name: bg-wave;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.c-wave::before {
  animation-duration: 6s;
}
.c-wave::after {
  opacity: 0.6;
  animation-duration: 5s;
}
@keyframes bg-wave {
  0% {
    transform: translateX(-10vw) scaleY(1);
  }
  50% {
    transform: translateX(0vw) scaleY(0.5);
  }
  100% {
    transform: translateX(10vw) scaleY(1);
  }
}
