:root {
  --font-sans: "Montserrat", "Zen Kaku Gothic New", sans-serif;
  --font-base: var(--font-sans);
  --font-heading: var(--font-sans);
  --color-white: #fff;
  --color-gray: #e4e0dd;
  --color-placeholder: #bfbab2;
  --color-black: #262626;
  --color-brown: #332e29;
  --color-bg-yellow: #fdfbf3;
  --color-bg-green: #f1fff2;
  --color-bg-blue: #f3f7ff;
  --color-bg-gray: #f8f8f8;
  --color-orange: #faa866;
  --color-blue: #577fd5;
  --color-line: #06c755;
  --color-red: #ed643c;
  --color-green: #37a440;
  --color-yellow: #f2e77e;
  --color-text: var(--color-black);
  --color-overlay-black: color-mix(in srgb, var(--color-black) 30%, transparent);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

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

@media (min-width: 768px) {
  body {
    min-width: 1200px;
    overflow-x: auto;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 82px;
  padding: 16px 20px;
  background: var(--color-bg);
}
@media (min-width: 768px) {
  .l-header {
    height: 86px;
    padding: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .l-header::-webkit-scrollbar {
    display: none;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-inline: 0;
}
@media (min-width: 768px) {
  .l-header__inner {
    justify-content: flex-start;
    gap: clamp(20px, 3vw, 74px);
    min-width: 1200px;
  }
}
.l-header__logo {
  position: relative;
  display: block;
  width: 261px;
  height: 45px;
  color: inherit;
}
@media (min-width: 768px) {
  .l-header__logo {
    flex: 0 0 auto;
  }
}
.l-header__logo:hover, .l-header__logo:focus-visible {
  color: inherit;
}
.l-header__logo img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
}
.l-header__logo-mark, .l-header__logo-type {
  position: absolute;
  display: block;
  overflow: hidden;
  pointer-events: none;
}
.l-header__logo-mark {
  top: 0px;
  left: 0;
  width: 84px;
  height: 45px;
}
.l-header__logo-mark img {
  top: -67.83%;
  left: -63.22%;
  width: 229.29%;
}
.l-header__logo-type {
  top: 0;
  left: 83px;
  width: 178px;
  height: 44px;
}
.l-header__logo-type img {
  top: -292.82%;
  left: -43.92%;
  width: 187.54%;
}
.l-header__hum {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}
@media (min-width: 768px) {
  .l-header__hum {
    display: none;
  }
}
.l-header__hum img {
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease;
}
.l-header__hum.is-active img {
  transform: rotate(90deg);
}
.l-header__nav {
  position: fixed;
  top: 82px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: calc(100dvh - 82px);
  overflow-y: auto;
  background: var(--color-bg-yellow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
@media (min-width: 768px) {
  .l-header__nav {
    position: static;
    z-index: auto;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    overflow: visible;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    pointer-events: auto;
  }
}
.l-header__nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.l-header__nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 430px;
  min-height: 100%;
  margin-inline: auto;
  padding: 40px 20px 80px;
}
@media (min-width: 768px) {
  .l-header__nav-inner {
    flex-direction: row;
    gap: clamp(24px, 4vw, 74px);
    align-items: center;
    width: auto;
    min-height: 0;
    padding: 0;
  }
}
.l-header__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .l-header__nav-list {
    flex-direction: row;
    gap: clamp(20px, 2.8vw, 40px);
    width: auto;
  }
}
.l-header__nav-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 59px;
  padding: 16px 10px;
  color: var(--color-black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .l-header__nav-list a {
    min-height: 0;
    padding: 0;
    font-size: 18px;
  }
}
.l-header__nav-list a:hover, .l-header__nav-list a:focus-visible {
  color: var(--color-black);
}
@media (min-width: 768px) {
  .l-header__nav-list a:hover, .l-header__nav-list a:focus-visible {
    color: var(--color-orange);
  }
}
.l-header__nav-mat {
  width: 34px;
  height: 8px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .l-header__nav-mat {
    display: none;
  }
}
.l-header__nav-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 223px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .l-header__nav-btns {
    flex-direction: row;
    gap: clamp(12px, 1.4vw, 20px);
    width: auto;
    margin-top: 0;
  }
}
.l-header__nav-btn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 49px;
  padding: 10px 20px;
  color: var(--color-white);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 100px;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .l-header__nav-btn {
    min-height: 47px;
    padding: 10px 20px;
    font-size: 17px;
  }
}
.l-header__nav-btn::after {
  display: block;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  content: "";
  background: url("../img/common/l-conversion-arrow.svg") center/contain no-repeat;
  transition: transform 0.3s ease;
}
.l-header__nav-btn:hover, .l-header__nav-btn:focus-visible {
  color: var(--color-white);
}
.l-header__nav-btn:hover::after, .l-header__nav-btn:focus-visible::after {
  transform: translateX(5px);
}
.l-header__nav-btn--reservation {
  background: var(--color-blue);
}
.l-header__nav-btn--reservation:hover, .l-header__nav-btn--reservation:focus-visible {
  background: #6f94e6;
}
@media (min-width: 768px) {
  .l-header__nav-btn--reservation {
    width: clamp(178px, 14.5vw, 198px);
  }
}
.l-header__nav-btn--line {
  background: var(--color-line);
}
.l-header__nav-btn--line:hover, .l-header__nav-btn--line:focus-visible {
  background: #25d96b;
}
@media (min-width: 768px) {
  .l-header__nav-btn--line {
    width: clamp(170px, 13.5vw, 184px);
  }
}
.l-header__nav-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 29px;
  text-align: center;
}
@media (min-width: 768px) {
  .l-header__nav-tel {
    display: none;
  }
}
.l-header__nav-tel a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--color-red);
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.l-header__nav-tel a::before {
  display: block;
  width: 27px;
  height: 27px;
  content: "";
  background: url("../img/icon/tel.svg") center/contain no-repeat;
}
.l-header__nav-tel a:hover, .l-header__nav-tel a:focus-visible {
  color: var(--color-red);
}
.l-header__nav-tel p {
  margin: 7px 0 0;
  color: var(--color-black);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

body.is-header-nav-open {
  overflow: hidden;
}

.l-footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 40px 0;
  color: var(--color-black);
  font-family: var(--font-base);
  border-top: 1px solid var(--color-gray);
  background-color: #fff;
}
@media (min-width: 768px) {
  .l-footer {
    gap: 32px;
    padding: 56px 50px;
  }
}
.l-footer__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .l-footer__info {
    width: auto;
  }
}
.l-footer__logo {
  position: relative;
  display: block;
  width: 261px;
  height: 45px;
  color: inherit;
}
.l-footer__logo:hover, .l-footer__logo:focus-visible {
  color: inherit;
}
.l-footer__logo img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
}
.l-footer__logo-mark, .l-footer__logo-type {
  position: absolute;
  display: block;
  overflow: hidden;
  pointer-events: none;
}
.l-footer__logo-mark {
  top: 0;
  left: 0;
  width: 84px;
  height: 45px;
}
.l-footer__logo-mark img {
  top: -67.83%;
  left: -63.22%;
  width: 229.29%;
}
.l-footer__logo-type {
  top: 0;
  left: 83px;
  width: 178px;
  height: 44px;
}
.l-footer__logo-type img {
  top: -292.82%;
  left: -43.92%;
  width: 187.54%;
}
.l-footer__name {
  width: 100%;
  margin: 0;
  color: var(--color-brown);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.l-footer__address {
  width: 100%;
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .l-footer__address {
    width: auto;
  }
}
.l-footer__nav {
  width: 100%;
  border-top: 1px solid var(--color-gray);
}
@media (min-width: 768px) {
  .l-footer__nav {
    width: 100%;
    border-top: 0;
  }
}
.l-footer__nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .l-footer__nav ul {
    display: flex;
    justify-content: center;
    gap: 40px;
  }
}
.l-footer__nav li {
  border-bottom: 1px solid var(--color-gray);
}
.l-footer__nav li:nth-child(odd) {
  border-right: 1px solid var(--color-gray);
}
@media (min-width: 768px) {
  .l-footer__nav li {
    border: 0;
  }
  .l-footer__nav li:nth-child(odd) {
    border-right: 0;
  }
}
.l-footer__nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 10px;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .l-footer__nav a {
    min-width: 0;
    padding: 6px 4px;
  }
  .l-footer__nav a:hover, .l-footer__nav a:focus-visible {
    color: var(--color-orange);
  }
}
.l-footer__btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 223px;
}
@media (min-width: 768px) {
  .l-footer__btns {
    flex-direction: row;
    width: auto;
  }
}
.l-footer__btn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 49px;
  padding: 10px 20px;
  color: var(--color-white);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 100px;
  transition: filter 0.3s ease;
}
@media (min-width: 768px) {
  .l-footer__btn {
    width: 223px;
  }
}
.l-footer__btn::after {
  display: block;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  content: "";
  background: url("../img/common/l-conversion-arrow.svg") center/contain no-repeat;
}
.l-footer__btn:hover, .l-footer__btn:focus-visible {
  color: var(--color-white);
}
@media (min-width: 768px) {
  .l-footer__btn:hover, .l-footer__btn:focus-visible {
    filter: brightness(0.92);
  }
}
.l-footer__btn-reservation {
  background: var(--color-blue);
}
.l-footer__btn-line {
  background: var(--color-line);
}
.l-footer__copy {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

.l-main {
  padding-top: 114px;
}
.l-main__inner {
  overflow: hidden;
}

.l-conversion {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 430px;
  margin-inline: auto;
  overflow: hidden;
  color: var(--color-black);
  font-family: var(--font-base);
  position: relative;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .l-conversion {
    display: block;
    width: 100%;
    padding: 0 0px 80px;
    overflow: hidden;
  }
}
.l-conversion__image {
  width: 520px;
  margin: 13px -23px -80px;
}
@media (min-width: 768px) {
  .l-conversion__image {
    width: 110%;
    margin: 0 0 -96px -5%;
  }
}
.l-conversion__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.l-conversion__deco {
  position: absolute;
  right: 0;
  top: 20px;
}
@media (min-width: 768px) {
  .l-conversion__deco {
    top: auto;
    bottom: 0px;
    right: auto;
    left: -70px;
    width: 220px;
    height: auto;
    z-index: 3;
  }
}
.l-conversion__textwrap {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  padding: 30px 10px 40px;
  background: var(--color-bg-blue);
  border-radius: 16px;
}
@media (min-width: 768px) {
  .l-conversion__textwrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 70px;
  }
}
.l-conversion__textwrap-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 252px;
}
@media (min-width: 768px) {
  .l-conversion__textwrap-inner {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 24px;
  }
}
.l-conversion__ttl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .l-conversion__ttl {
    flex: 1 1 0;
    min-width: 0;
    gap: 10px;
  }
}
.l-conversion__ttl h2,
.l-conversion__ttl p {
  margin: 0;
}
.l-conversion__ttl h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .l-conversion__ttl h2 {
    font-size: 32px;
  }
}
.l-conversion__ttl span {
  color: var(--color-red);
}
.l-conversion__ttl p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .l-conversion__ttl p {
    white-space: normal;
  }
}
.l-conversion__btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 223px;
}
@media (min-width: 768px) {
  .l-conversion__btns {
    flex: 0 0 495px;
    flex-direction: row;
    gap: 10px;
    width: auto;
  }
}
.l-conversion__btn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 49px;
  padding: 10px 20px;
  color: var(--color-white);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 100px;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .l-conversion__btn {
    flex: 1 1 0;
    min-height: 49px;
    padding: 10px 20px;
    font-size: 19px;
  }
}
.l-conversion__btn::after {
  display: block;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  content: "";
  background: url("../img/common/l-conversion-arrow.svg") center/contain no-repeat;
  transition: transform 0.3s ease;
}
.l-conversion__btn:hover, .l-conversion__btn:focus-visible {
  color: var(--color-white);
}
.l-conversion__btn:hover::after, .l-conversion__btn:focus-visible::after {
  transform: translateX(5px);
}
.l-conversion__btn-reservation {
  background: var(--color-blue);
}
.l-conversion__btn-reservation:hover, .l-conversion__btn-reservation:focus-visible {
  background: #6f94e6;
}
.l-conversion__btn-line {
  background: var(--color-line);
}
.l-conversion__btn-line:hover, .l-conversion__btn-line:focus-visible {
  background: #25d96b;
}
.l-conversion__mat1 {
  position: absolute;
  left: -20px;
  bottom: 0px;
}
@media (min-width: 768px) {
  .l-conversion__mat1 {
    top: 40px;
    right: 30px;
    bottom: auto;
    left: auto;
    width: 200px;
    height: auto;
  }
}

.l-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  background: color-mix(in srgb, var(--color-orange) 80%, transparent);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}
@media (min-width: 768px) {
  .l-modal {
    place-items: center;
    padding: 80px 50px;
  }
}
.l-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-modal__overlay {
  position: fixed;
  inset: 0;
  cursor: pointer;
}
.l-modal__dialog {
  position: relative;
  z-index: 1;
  width: 387px;
  margin: 80px auto 80px;
  border-radius: 10px;
  background: var(--color-white);
}
@media (min-width: 768px) {
  .l-modal__dialog {
    width: min(100%, 760px);
    margin: 0;
  }
}
.l-modal__close {
  position: absolute;
  top: -51px;
  right: 0;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 768px) {
  .l-modal__close {
    top: -56px;
    right: -6px;
  }
}
.l-modal__close::before, .l-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 35px;
  height: 5px;
  content: "";
  background: var(--color-white);
  border-radius: 50px;
}
.l-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-modal__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 18px 28px;
  max-height: 80vh;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .l-modal__body {
    padding: 40px;
  }
}
.l-modal__figure {
  width: 100%;
  aspect-ratio: 1/1;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .l-modal__figure {
    width: 100%;
    height: auto;
    aspect-ratio: 680/378;
  }
}
.l-modal__figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .l-modal--staff .l-modal__body {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto auto auto;
    -moz-column-gap: 40px;
         column-gap: 40px;
    align-items: start;
  }
}
.l-modal--staff .l-modal__figure {
  aspect-ratio: 3/4;
}
@media (min-width: 768px) {
  .l-modal--staff .l-modal__figure {
    grid-column: 1;
    grid-row: 1/-1;
    align-self: stretch;
    height: 100%;
    aspect-ratio: auto;
  }
}
@media (min-width: 768px) {
  .l-modal--staff .l-modal__heading {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (min-width: 768px) {
  .l-modal--staff .l-modal__text {
    grid-column: 2;
    grid-row: 2;
  }
}
@media (min-width: 768px) {
  .l-modal--staff .l-modal__textclose {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    justify-self: start;
    margin-top: 24px;
  }
}
.l-modal__heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  width: 100%;
}
.l-modal__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 24px;
  margin: 0;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  background: var(--color-green);
  border-radius: 12px;
  padding-inline: 10px;
}
.l-modal__ttl {
  margin: 0;
  color: var(--color-green);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.l-modal__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.l-modal__text p {
  margin: 0;
}
.l-modal__textclose {
  align-self: center;
  margin: 26px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}

body.is-modal-open {
  overflow: hidden;
}

.l-modal-img {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}
@media (min-width: 768px) {
  .l-modal-img {
    padding: 80px;
  }
}
.l-modal-img.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-modal-img__overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.l-modal-img__inner {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--color-white);
  border-radius: 8px;
}
.l-modal-img__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 768px) {
  .l-modal-img__close {
    top: -52px;
    width: 42px;
    height: 42px;
  }
}
.l-modal-img__close::before, .l-modal-img__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 32px;
  height: 4px;
  content: "";
  background: var(--color-white);
  border-radius: 50px;
}
.l-modal-img__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-modal-img__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-modal-img__img {
  display: block;
  width: 1200px;
  max-width: 680px;
  height: auto;
}
@media (min-width: 768px) {
  .l-modal-img__img {
    max-width: none;
  }
}

.l-fixed-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 100;
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: var(--color-white);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-fixed-cta.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .l-fixed-cta {
    display: none;
  }
}
.l-fixed-cta__btn {
  flex: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 12px;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border-radius: 100px;
  transition: filter 0.3s ease;
}
.l-fixed-cta__btn:hover, .l-fixed-cta__btn:focus-visible {
  color: var(--color-white);
}
.l-fixed-cta__btn--reservation {
  background: var(--color-blue);
}
.l-fixed-cta__btn--line {
  background: var(--color-line);
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

.c-sectitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-inline: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .c-sectitle {
    gap: 20px;
  }
}

.c-sectitle_subttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.c-sectitle_subttl p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .c-sectitle_subttl p {
    font-size: 20px;
  }
}

.c-sectitle_mat {
  width: 34px;
  height: 8px;
}
@media (min-width: 768px) {
  .c-sectitle_mat {
    width: 40px;
    height: 10px;
  }
}

.c-sectitle_mainttl {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .c-sectitle_mainttl {
    font-size: 40px;
  }
}
.c-sectitle_mainttl .small {
  font-size: 18px;
}
@media (min-width: 768px) {
  .c-sectitle_mainttl .small {
    font-size: 24px;
  }
}

.c-sectitle_mainttl .is-red {
  color: var(--color-red);
}

.c-sectitle_mainttl .is-orange {
  color: var(--color-orange);
}

.c-sectitle_mainttl .is-green {
  color: var(--color-green);
}

.c-sectitle_mainttl em {
  font-style: normal;
  font-size: 40px;
  line-height: 1;
}
@media (min-width: 768px) {
  .c-sectitle_mainttl em {
    font-size: 48px;
  }
}

.p-top__hero {
  overflow: hidden;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-top__hero {
    display: block;
  }
}
.p-top__hero-inner {
  --p-top-hero-base-width: 490px;
  position: relative;
  min-height: 520px;
  margin-inline: auto;
  padding-top: 10px;
  padding-left: 32px;
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__hero-inner {
    min-height: 734px;
    max-width: 1440px;
    padding-top: 140px;
    padding-left: 75px;
    overflow: visible;
  }
}
.p-top__hero-mat1, .p-top__hero-mat2, .p-top__hero-circle {
  position: absolute;
  z-index: 1;
  display: block;
  max-width: none;
  pointer-events: none;
}
.p-top__hero-mat1 {
  top: 91px;
  left: 319px;
  width: 131px;
  height: 103px;
}
@media (min-width: 768px) {
  .p-top__hero-mat1 {
    top: 80px;
    left: auto;
    right: -50px;
    width: 230px;
    height: auto;
    z-index: 3;
  }
}
.p-top__hero-mat2 {
  top: 369px;
  left: -24px;
  width: 111px;
  height: 91px;
}
@media (min-width: 768px) {
  .p-top__hero-mat2 {
    top: 524px;
    left: 562px;
    width: 225px;
    height: auto;
    z-index: 3;
  }
}
.p-top__hero-circle {
  top: 50px;
  left: 30px;
  width: 182px;
  height: 68px;
  opacity: 0;
  transform-origin: center top;
  animation: p-top-hero-circle-in 0.35s ease-out 0.5s forwards;
}
@media (min-width: 768px) {
  .p-top__hero-circle {
    top: 199px;
    left: 65px;
    width: 328px;
    height: 137px;
  }
}
@keyframes p-top-hero-circle-in {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }
  70% {
    opacity: 1;
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.p-top__hero-slider {
  position: relative;
  z-index: 1;
  width: 401px;
  height: 296px;
  margin-top: -42px;
  margin-left: 33px;
  overflow: hidden;
  mask-image: url("../img/top/p-top-hero-slider-mask.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
  -webkit-mask-image: url("../img/top/p-top-hero-slider-mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
}
@media (min-width: 768px) {
  .p-top__hero-slider {
    position: absolute;
    top: 126px;
    left: 680px;
    width: 823px;
    height: 608px;
    margin: 0;
  }
}
.p-top__hero-slider .swiper-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  transition-property: transform;
}
.p-top__hero-slider.swiper-fade .p-top__hero-slide {
  pointer-events: none;
  transition-property: opacity;
}
.p-top__hero-slider.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.p-top__hero-slider .swiper-slide-active img,
.p-top__hero-slider .swiper-slide-duplicate-active img {
  transform: scale(1.12);
}
.p-top__hero-slide {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  transition-property: transform;
}
.p-top__hero-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 7s linear;
}
.p-top__hero-ttl {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-top__hero-ttl {
    font-size: 60px;
  }
}
.p-top__hero-text {
  position: relative;
  z-index: 2;
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.79;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-top__hero-text {
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.6;
    white-space: normal;
  }
}
.p-top__hero-list {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 328px;
  height: 59px;
  margin: 20px 0 0;
  padding: 11px 0;
  overflow: hidden;
  list-style: none;
  background: var(--color-bg-yellow);
  border-radius: 11px;
}
@media (min-width: 768px) {
  .p-top__hero-list {
    width: 568px;
    height: 104px;
    margin-top: 25px;
    border-radius: 18px;
  }
}
.p-top__hero-list li {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 85px;
  margin: 0;
  padding-inline: 20px;
  border-right: 1px solid var(--color-gray);
  text-align: center;
}
@media (min-width: 768px) {
  .p-top__hero-list li {
    min-width: 150px;
    padding-inline: 32px;
  }
}
.p-top__hero-list li:first-child {
  min-width: 128px;
}
@media (min-width: 768px) {
  .p-top__hero-list li:first-child {
    min-width: 220px;
  }
}
.p-top__hero-list li:last-child {
  min-width: 115px;
  border-right: 0;
}
@media (min-width: 768px) {
  .p-top__hero-list li:last-child {
    min-width: 198px;
  }
}
.p-top__hero-list em {
  color: var(--color-green);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.p-top__hero-list em span {
  font-size: 22px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-top__hero-list em span {
    font-size: 34px;
  }
}
@media (min-width: 768px) {
  .p-top__hero-list em {
    font-size: 24px;
  }
}
.p-top__hero-list p {
  margin: 0;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-top__hero-list p {
    font-size: 15px;
  }
}

.p-top__movie {
  padding-top: 64px;
  color: var(--color-black);
  font-family: var(--font-base);
  text-align: center;
}
@media (min-width: 768px) {
  .p-top__movie {
    padding: 80px 50px 0;
  }
}
.p-top__movie-textwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-top__movie-textwrap {
    gap: 18px;
  }
}
.p-top__movie-ttl {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .p-top__movie-ttl {
    font-size: 34px;
  }
}
.p-top__movie-ttl .is-red {
  color: var(--color-red);
  font-size: 40px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .p-top__movie-ttl .is-red {
    font-size: 48px;
  }
}
.p-top__movie-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-top__movie-moviewrap {
  width: 390px;
  height: 219px;
  margin: 24px auto 0;
}
@media (min-width: 768px) {
  .p-top__movie-moviewrap {
    width: min(100%, 763px);
    height: auto;
    aspect-ratio: 763/429;
    margin-top: 30px;
  }
}
.p-top__movie-iframe, .p-top__movie-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__movie-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: var(--color-black);
  color: inherit;
}
.p-top__movie-button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--color-overlay-black);
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-top__movie-button:hover .img-movie-thumbnail, .p-top__movie-button:focus-visible .img-movie-thumbnail {
    transform: scale(1.14);
  }
}
.p-top__movie .img-movie-thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.0814);
  transition: transform 0.3s ease;
}
.p-top__movie .play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
}
.p-top__movie-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

.p-top__reason {
  position: relative;
  margin-top: 31px;
  padding: 70px 20px 60px;
  overflow: hidden;
  background: linear-gradient(to bottom, transparent 0 356px, var(--color-bg-yellow) 356px 100%);
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__reason {
    margin-top: 80px;
    padding: 96px 50px 90px;
    background: linear-gradient(to bottom, transparent 0 282px, var(--color-bg-yellow) 282px 100%);
  }
}
.p-top__reason-mat1, .p-top__reason-mat2, .p-top__reason-mat3 {
  position: absolute;
  z-index: 0;
  display: block;
  max-width: none;
  pointer-events: none;
}
.p-top__reason-mat1 {
  top: 22px;
  left: -17px;
  width: 110px;
  height: 77px;
}
@media (min-width: 768px) {
  .p-top__reason-mat1 {
    top: 20px;
    left: 42px;
    width: 300px;
    height: auto;
  }
}
.p-top__reason-mat2 {
  top: 0;
  right: -19px;
  width: 130px;
  height: 122px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .p-top__reason-mat2 {
    top: 25px;
    right: 0px;
    width: 300px;
    height: auto;
  }
}
.p-top__reason-mat3 {
  top: 23px;
  left: 50%;
  width: 667px;
  height: 539px;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .p-top__reason-mat3 {
    top: 16px;
    width: 1853px;
    height: 539px;
  }
}
.p-top__reason > .c-sectitle, .p-top__reason-items {
  position: relative;
  z-index: 1;
}
.p-top__reason-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: 18px;
  margin: 32px auto 0;
}
@media (min-width: 768px) {
  .p-top__reason-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1196px;
    margin-top: 48px;
  }
}
.p-top__reason-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  color: inherit;
  font-family: inherit;
  background: var(--color-bg);
  border: 1px solid var(--color-gray);
  border-radius: 10px;
  text-align: left;
  cursor: default;
  pointer-events: none;
}
.p-top__reason-item:hover, .p-top__reason-item:focus-visible {
  color: inherit;
}
@media (min-width: 768px) {
  .p-top__reason-item {
    padding: 24px;
  }
  .p-top__reason-item:hover .p-top__reason-more::after, .p-top__reason-item:focus-visible .p-top__reason-more::after {
    transform: translateX(5px);
  }
}
.p-top__reason-iteminner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0;
}
.p-top__reason-itemimg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: -1px;
}
.p-top__reason-itemimg > img {
  width: 100%;
  height: 98px;
  margin-bottom: -10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .p-top__reason-itemimg > img {
    height: 184px;
  }
}
.p-top__reason-itemnum {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--color-red);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.43;
  background: var(--color-bg);
  border-radius: 300px;
}
@media (min-width: 768px) {
  .p-top__reason-itemnum {
    font-size: 24px;
    width: 50px;
    height: 50px;
  }
}
.p-top__reason-itemtext {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .p-top__reason-itemtext {
    width: 100%;
  }
}
.p-top__reason-itemtext h3 {
  display: block;
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .p-top__reason-itemtext h3 {
    font-size: 24px;
  }
}
.p-top__reason-itemtext h3 .is-green {
  color: var(--color-green);
}
.p-top__reason-itemtext p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}
@media (min-width: 768px) {
  .p-top__reason-itemtext p {
    font-size: 16px;
    text-align: center;
  }
}
.p-top__reason-more {
  display: none;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.p-top__reason-more p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
.p-top__reason-more::after {
  display: block;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  content: "";
  background: url("../img/icon/arrow.svg") center/contain no-repeat;
  transition: transform 0.3s ease;
}

.p-top__curriculum {
  padding: 60px 0;
  overflow: hidden;
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__curriculum {
    padding-inline: 50px;
  }
}
.p-top__curriculum .c-sectitle_mainttl {
  line-height: 1.46;
}
.p-top__curriculum-items {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 26px;
  max-width: 490px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-top__curriculum-items {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    margin-top: 48px;
  }
}
.p-top__curriculum-item {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .p-top__curriculum-item {
    width: 420px;
  }
}
.p-top__curriculum-item--1 .p-top__curriculum-images {
  margin-left: -33px;
}
@media (min-width: 768px) {
  .p-top__curriculum-item--1 .p-top__curriculum-images {
    width: 420px;
    height: 310px;
    margin-left: 0;
    overflow: visible;
  }
}
.p-top__curriculum-item--1 .p-top__curriculum-images-main {
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .p-top__curriculum-item--1 .p-top__curriculum-images-main {
    width: 420px;
    height: 310px;
  }
}
.p-top__curriculum-item--1 .p-top__curriculum-images-sub {
  top: 241px;
  left: 52px;
}
@media (min-width: 768px) {
  .p-top__curriculum-item--1 .p-top__curriculum-images-sub {
    top: 214px;
    right: 0px;
    left: auto;
  }
}
.p-top__curriculum-item--1 .p-top__curriculum-mat {
  top: 126px;
  left: 280px;
  width: 108px;
  height: 127px;
  z-index: 1;
}
.p-top__curriculum-item--1 .p-top__curriculum-textwrap {
  margin: -95px 19px 0 auto;
}
@media (min-width: 768px) {
  .p-top__curriculum-item--1 .p-top__curriculum-textwrap {
    margin: 0;
    padding-inline: 20px;
  }
}
.p-top__curriculum-item--2 .p-top__curriculum-images {
  width: 469px;
  height: 367px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .p-top__curriculum-item--2 .p-top__curriculum-images {
    width: 420px;
    height: 310px;
    margin-left: 0;
    overflow: visible;
  }
}
.p-top__curriculum-item--2 .p-top__curriculum-images-main {
  top: 0;
  left: 151px;
}
@media (min-width: 768px) {
  .p-top__curriculum-item--2 .p-top__curriculum-images-main {
    left: 0;
    width: 420px;
    height: 310px;
  }
}
.p-top__curriculum-item--2 .p-top__curriculum-images-sub {
  top: 258px;
  left: 316px;
}
@media (min-width: 768px) {
  .p-top__curriculum-item--2 .p-top__curriculum-images-sub {
    top: 214px;
    right: 0px;
    left: auto;
  }
}
.p-top__curriculum-item--2 .p-top__curriculum-mat {
  top: 39px;
  left: 0;
  width: 134px;
  height: 120px;
}
.p-top__curriculum-item--2 .p-top__curriculum-textwrap {
  margin: -171px auto 0 20px;
}
@media (min-width: 768px) {
  .p-top__curriculum-item--2 .p-top__curriculum-textwrap {
    margin: 0;
    padding-inline: 20px;
  }
}
.p-top__curriculum-item--3 .p-top__curriculum-images {
  width: 388px;
  height: 357px;
  margin-left: -32px;
}
@media (min-width: 768px) {
  .p-top__curriculum-item--3 .p-top__curriculum-images {
    width: 420px;
    height: 310px;
    margin-left: 0;
    overflow: visible;
  }
}
.p-top__curriculum-item--3 .p-top__curriculum-images-main {
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .p-top__curriculum-item--3 .p-top__curriculum-images-main {
    width: 420px;
    height: 310px;
  }
}
.p-top__curriculum-item--3 .p-top__curriculum-images-sub {
  top: 248px;
  left: 51px;
}
@media (min-width: 768px) {
  .p-top__curriculum-item--3 .p-top__curriculum-images-sub {
    top: 214px;
    right: 0px;
    left: auto;
  }
}
.p-top__curriculum-item--3 .p-top__curriculum-mat {
  top: 126px;
  left: 280px;
  width: 108px;
  height: 127px;
  z-index: 1;
}
.p-top__curriculum-item--3 .p-top__curriculum-textwrap {
  margin: -95px 19px 0 auto;
}
@media (min-width: 768px) {
  .p-top__curriculum-item--3 .p-top__curriculum-textwrap {
    margin: 0;
    padding-inline: 20px;
  }
}
.p-top__curriculum-images {
  position: relative;
  z-index: 0;
  width: 388px;
  height: 350px;
}
@media (min-width: 768px) {
  .p-top__curriculum-images {
    width: 420px;
    height: 310px;
    margin-left: 0;
    overflow: visible;
  }
}
.p-top__curriculum-images-main {
  position: absolute;
  width: 318px;
  height: 235px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .p-top__curriculum-images-main {
    top: 0;
    left: 0;
    width: 420px;
    height: 310px;
  }
}
.p-top__curriculum-images-sub {
  position: absolute;
  width: 109px;
  height: 109px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .p-top__curriculum-images-sub {
    top: 194px;
    right: 20px;
    left: auto;
  }
}
.p-top__curriculum-mat {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-top__curriculum-mat {
    display: none;
  }
}
.p-top__curriculum-textwrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  width: 251px;
}
@media (min-width: 768px) {
  .p-top__curriculum-textwrap {
    width: 100%;
    margin: 0;
    padding-inline: 20px;
  }
}
.p-top__curriculum-textwrap p {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.p-top__curriculum-itemttl {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  color: var(--color-green);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.p-top__curriculum-itemttl img {
  width: 23px;
  height: 23px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top__curriculum-more {
  display: none;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  background: transparent;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}
.p-top__curriculum-more:hover, .p-top__curriculum-more:focus-visible {
  color: inherit;
}
@media (min-width: 768px) {
  .p-top__curriculum-more:hover::after, .p-top__curriculum-more:focus-visible::after {
    transform: translateX(5px);
  }
}
.p-top__curriculum-more::after {
  display: block;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  content: "";
  background: url("../img/icon/arrow.svg") center/contain no-repeat;
  transition: transform 0.3s ease;
}

.p-top__point {
  position: relative;
  padding: 60px 19px 0;
  overflow: hidden;
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__point {
    padding: 80px 50px 80px;
    overflow: visible;
  }
}
.p-top__point::before {
  position: absolute;
  inset: 0 0 150px;
  display: block;
  content: "";
  background: var(--color-bg-yellow);
}
@media (min-width: 768px) {
  .p-top__point::before {
    inset: 0;
  }
}
.p-top__point-ttl, .p-top__point-items, .p-top__point-last {
  position: relative;
  z-index: 1;
}
.p-top__point-ttl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.p-top__point-ttl .c-sectitle_mainttl {
  line-height: 1.46;
}
.p-top__point-lead {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}
.p-top__point-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .p-top__point-items {
    display: grid;
    grid-template-columns: repeat(2, 590px);
    gap: 20px;
    justify-content: center;
  }
}
.p-top__point-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 16px;
}
@media (min-width: 768px) {
  .p-top__point-item {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: 590px;
  }
}
.p-top__point-figure {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .p-top__point-figure {
    flex: 0 0 265px;
    width: 265px;
  }
}
.p-top__point-figure > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  border-radius: inherit;
}
.p-top__point-item--1 .p-top__point-figure > img {
  height: 133.4%;
  -o-object-position: center 18%;
     object-position: center 18%;
}
@media (min-width: 768px) {
  .p-top__point-item--1 .p-top__point-figure > img {
    height: 132.49%;
  }
}
.p-top__point-imagegrid {
  display: grid;
  grid-template-columns: repeat(2, 176px);
  width: 352px;
  height: 196px;
}
@media (min-width: 768px) {
  .p-top__point-imagegrid {
    grid-template-columns: 133px 132px;
    width: 265px;
    height: 153px;
  }
}
.p-top__point-imagegrid img {
  width: 176px;
  height: 196px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .p-top__point-imagegrid img {
    height: 153px;
  }
}
.p-top__point-imagegrid img:first-child {
  border-radius: 16px 0 0 16px;
  -o-object-position: 88% 39%;
     object-position: 88% 39%;
}
@media (min-width: 768px) {
  .p-top__point-imagegrid img:first-child {
    width: 133px;
  }
}
.p-top__point-imagegrid img:last-child {
  border-radius: 0 16px 16px 0;
  -o-object-position: 38% 26%;
     object-position: 38% 26%;
}
@media (min-width: 768px) {
  .p-top__point-imagegrid img:last-child {
    width: 132px;
  }
}
.p-top__point-label {
  position: absolute;
  top: 92px;
  left: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 23px;
  padding: 1px 10px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  background: var(--color-red);
}
@media (min-width: 768px) {
  .p-top__point-label {
    top: 65px;
    left: 109px;
  }
}
.p-top__point-textwrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.p-top__point-textwrap p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.p-top__point-itemttl {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  color: var(--color-green);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.p-top__point-itemttl img {
  flex: 0 0 auto;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top__point-last {
  width: 472px;
  margin: 41px 0 0 -40px;
}
@media (min-width: 768px) {
  .p-top__point-last {
    margin-inline: auto;
    width: 100%;
    position: relative;
  }
}
.p-top__point-last img {
  display: block;
  width: 472px;
  height: 329px;
}
@media (min-width: 768px) {
  .p-top__point-last img {
    width: 419px;
    height: 222px;
    position: absolute;
    right: -70px;
    top: 0;
  }
}
.p-top__point-last p {
  position: absolute;
  top: 108px;
  left: 0;
  width: 100%;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 768px) {
  .p-top__point-last p {
    position: relative;
    inset: 0;
    font-size: 28px;
  }
}
.p-top__point-last .is-red {
  color: var(--color-red);
}

.p-top__compare {
  padding: 60px 0;
  overflow: hidden;
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__compare {
    padding-inline: 50px;
    padding: 80px 0;
  }
}
.p-top__compare-ttl {
  width: 336px;
  margin: 0 auto;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.46;
  text-align: center;
}
@media (min-width: 768px) {
  .p-top__compare-ttl {
    font-size: 32px;
  }
}
.p-top__compare-ttl .is-red {
  color: var(--color-red);
}
.p-top__compare-ttl .is-green {
  color: var(--color-green);
}
.p-top__compare-scroll {
  margin: 50px 0 0 19px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-top__compare-scroll {
    display: none;
  }
}
.p-top__compare__table, .p-top__compare-table {
  width: calc(100% - 40px);
  margin: 10px auto 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}
@media (min-width: 768px) {
  .p-top__compare__table, .p-top__compare-table {
    width: 728px;
    margin-inline: auto;
    overflow-x: visible;
    box-shadow: none;
    border-radius: 0;
  }
}
.p-top__compare__table table, .p-top__compare-table table {
  width: 728px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-white);
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-top__compare__table table, .p-top__compare-table table {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  }
}
.p-top__compare__table th,
.p-top__compare__table td, .p-top__compare-table th,
.p-top__compare-table td {
  height: 52px;
  padding: 0 20px;
  border: 0;
  border-bottom: 5px solid #fff;
  color: var(--color-black);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}
.p-top__compare__table th, .p-top__compare-table th {
  font-weight: 700;
}
.p-top__compare__table td, .p-top__compare-table td {
  font-weight: 400;
}
.p-top__compare__table tr:last-child th,
.p-top__compare__table tr:last-child td, .p-top__compare-table tr:last-child th,
.p-top__compare-table tr:last-child td {
  border-bottom: 0;
}
.p-top__compare__table th:first-child,
.p-top__compare__table td:first-child, .p-top__compare-table th:first-child,
.p-top__compare-table td:first-child {
  width: 177px;
  font-weight: 500;
}
.p-top__compare__table th:nth-child(2),
.p-top__compare__table td:nth-child(2), .p-top__compare-table th:nth-child(2),
.p-top__compare-table td:nth-child(2) {
  width: 294px;
  font-weight: 700;
}
.p-top__compare__table th:nth-child(3),
.p-top__compare__table td:nth-child(3), .p-top__compare-table th:nth-child(3),
.p-top__compare-table td:nth-child(3) {
  width: 257px;
}
.p-top__compare__table thead th, .p-top__compare-table thead th {
  background: var(--color-white);
}
.p-top__compare__table thead th:nth-child(2), .p-top__compare-table thead th:nth-child(2) {
  background: var(--color-red);
  color: var(--color-white);
}
.p-top__compare__table thead th:first-child, .p-top__compare-table thead th:first-child {
  border-top-left-radius: 16px;
}
.p-top__compare__table thead th:last-child, .p-top__compare-table thead th:last-child {
  border-top-right-radius: 16px;
}
.p-top__compare__table tbody td:nth-child(2), .p-top__compare-table tbody td:nth-child(2) {
  background: var(--color-bg-yellow);
  font-weight: 700;
}
.p-top__compare__table tbody tr:last-child > :first-child, .p-top__compare-table tbody tr:last-child > :first-child {
  border-bottom-left-radius: 16px;
}
.p-top__compare__table tbody tr:last-child > :last-child, .p-top__compare-table tbody tr:last-child > :last-child {
  border-bottom-right-radius: 16px;
}

.p-top__space {
  position: relative;
  padding: 60px 0;
  margin-bottom: 60px;
  background: var(--color-bg-yellow);
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__space {
    padding-top: 90px;
    padding-bottom: 110px;
  }
}
.p-top__space-mat1 {
  position: absolute;
  top: -21px;
  left: -25px;
  width: 134px;
  height: 120px;
  max-width: none;
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-top__space-mat1 {
    top: -40px;
    left: 46px;
    width: 300px;
    height: auto;
  }
}
.p-top__space .c-sectitle {
  position: relative;
  z-index: 1;
}
.p-top__space .c-sectitle_mainttl {
  line-height: 1.46;
}
.p-top__space .c-sectitle_mainttl .is-red {
  color: var(--color-red);
}
.p-top__space .c-sectitle_mainttl .is-green {
  color: var(--color-green);
}
@media (min-width: 768px) {
  .p-top__space-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 80%;
    max-width: 1100px;
    margin-top: 40px;
    margin-inline: auto;
  }
}
.p-top__space-plan {
  width: 80%;
  margin: 9px auto 20px;
}
@media (min-width: 768px) {
  .p-top__space-plan {
    flex: 1.5;
    min-width: 0;
    width: auto;
    margin: 0;
  }
}
.p-top__space-plan-trigger {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}
.p-top__space-plan-trigger img {
  display: block;
  width: 100%;
  height: auto;
}
.p-top__space-plan-zoom {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 12px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  background: var(--color-green);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-top__space-plan-zoom {
    top: auto;
    right: 14px;
    bottom: 14px;
    left: auto;
    padding: 8px 14px;
    font-size: 14px;
  }
}
.p-top__space-plan-zoom::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: linear-gradient(currentColor, currentColor) center/100% 2px no-repeat, linear-gradient(currentColor, currentColor) center/2px 100% no-repeat;
}
@media (min-width: 768px) {
  .p-top__space-slider {
    flex: 3;
    min-width: 0;
    width: auto;
    margin-inline: 0;
  }
}
.p-top__space-slide {
  padding-bottom: 20px;
  transform: scale(0.9);
  transform-origin: center center;
  transition: transform 0.3s ease;
}
.p-top__space-slide.swiper-slide-active {
  transform: scale(1);
}
.p-top__space-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 316/193;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.p-top__space-slide p {
  margin: 0;
  color: var(--color-green);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.p-top__space .js-p-top-space-swiper.is-static .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  transform: none;
}
.p-top__space .js-p-top-space-swiper.is-static .p-top__space-slide {
  min-width: 0;
  padding-bottom: 0;
  transform: none;
}
.p-top__space .js-p-top-space-swiper.is-static .p-top__space-controls {
  display: none;
}
.p-top__space-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .p-top__space-controls {
    left: 50%;
    display: flex;
    gap: 14px;
    align-items: center;
    width: auto;
    transform: translateX(-50%);
  }
}
.p-top__space-pagination {
  position: static;
  z-index: 2;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .p-top__space-pagination {
    width: auto;
    text-align: left;
  }
}
.p-top__space-pagination.swiper-pagination-horizontal {
  position: static;
  width: 100%;
}
@media (min-width: 768px) {
  .p-top__space-pagination.swiper-pagination-horizontal {
    width: auto;
  }
}
.p-top__space-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px;
  opacity: 1;
  background: var(--color-gray);
  display: inline-block;
}
@media (min-width: 768px) {
  .p-top__space-pagination .swiper-pagination-bullet {
    margin: 0 4px 0 0;
  }
}
.p-top__space-pagination .swiper-pagination-bullet-active {
  background: var(--color-green);
}
.p-top__space-nav {
  display: none;
}
@media (min-width: 768px) {
  .p-top__space-nav {
    display: flex;
    gap: 10px;
    align-items: center;
  }
}
.p-top__space-streetview {
  width: 390px;
  height: 236px;
  margin: 35px auto 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top__space-streetview {
    width: 800px;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.p-top__space-streetview iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.p-top__space-streetview {
  width: 90%;
  max-width: 1100px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-top__space-streetview {
    width: 80%;
  }
}
.p-top__space-streetview iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 600/450;
  border: 0;
}
.p-top__space-streetview-link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 13px auto 0;
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2%;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-top__space-streetview-link {
    font-size: 16px;
  }
}
.p-top__space-streetview-link:hover, .p-top__space-streetview-link:focus-visible {
  color: var(--color-orange);
  text-decoration: none;
}
@media (min-width: 768px) {
  .p-top__space-button.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
  }
}
@media (min-width: 768px) {
  .p-top__space-button--next::before {
    transform: translateX(-2px) rotate(45deg);
  }
}
@media (min-width: 768px) {
  .p-top__space-button--prev::before {
    transform: translateX(2px) rotate(-135deg);
  }
}
@media (min-width: 768px) {
  .p-top__space-button::before {
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
  }
}
@media (min-width: 768px) {
  .p-top__space-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    margin: 0;
    padding: 0;
    background: var(--color-green);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
  }
}

.p-top__schedule {
  position: relative;
  padding: 60px 20px 55px 21px;
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__schedule {
    padding: 90px 50px 80px;
  }
}
.p-top__schedule .c-sectitle_mainttl {
  line-height: 1.46;
}
.p-top__schedule .c-sectitle_mainttl .is-red {
  color: var(--color-red);
}
.p-top__schedule-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 389px;
  margin: 44px auto 0;
}
@media (min-width: 768px) {
  .p-top__schedule-inner {
    width: 705px;
    margin-top: 52px;
  }
}
.p-top__schedule-inner::before {
  position: absolute;
  top: 0;
  left: 30px;
  display: block;
  width: 2px;
  height: calc(100% - 80px);
  content: "";
  background: var(--color-gray);
  border-radius: 2px;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-top__schedule-inner::before {
    top: 0;
    left: 39px;
    height: calc(100% - 170px);
  }
}
.p-top__schedule-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .p-top__schedule-item {
    gap: 24px;
  }
}
.p-top__schedule-item-time {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 65px;
  width: 65px;
  padding: 5px 10px;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  background: var(--color-green);
  border-radius: 30px;
}
@media (min-width: 768px) {
  .p-top__schedule-item-time {
    flex-basis: 80px;
    width: 80px;
    font-size: 16px;
  }
}
.p-top__schedule-item-body {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 304px;
}
@media (min-width: 768px) {
  .p-top__schedule-item-body {
    gap: 20px;
    width: 601px;
  }
}
.p-top__schedule-item-body img {
  flex: 0 0 auto;
  width: 129px;
  height: 83px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .p-top__schedule-item-body img {
    width: 300px;
    height: 200px;
  }
}
.p-top__schedule-item-textwrap {
  flex: 1 1 auto;
  min-width: 0;
}
.p-top__schedule-item-textwrap p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.p-top__schedule-item-ttl {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-top__schedule-item-ttl {
    font-size: 24px;
  }
}

.p-top__voice {
  position: relative;
  min-height: 496px;
  padding: 68px 19px 87px;
  overflow: hidden;
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__voice {
    min-height: 0;
    padding: 80px 0px;
    background: var(--color-bg-green);
  }
}
.p-top__voice-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 505px;
  height: 496px;
  max-width: none;
  pointer-events: none;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .p-top__voice-bg {
    display: none;
  }
}
.p-top__voice-mat1 {
  position: absolute;
  top: 138px;
  right: -12px;
  width: 108px;
  height: 117px;
  max-width: none;
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-top__voice-mat1 {
    top: 156px;
    right: 70px;
    width: 193px;
    height: auto;
  }
}
.p-top__voice .c-sectitle, .p-top__voice-slider {
  position: relative;
  z-index: 1;
}
.p-top__voice .c-sectitle_mainttl {
  line-height: 1.46;
}
.p-top__voice .c-sectitle_mainttl .is-red {
  color: var(--color-red);
}
.p-top__voice-slider {
  width: 392px;
  margin: 36px auto 0;
  padding-bottom: 28px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top__voice-slider {
    width: min(100% - 40px, 1180px);
    margin-top: 48px;
  }
}
.p-top__voice-slide {
  width: 392px;
  height: auto;
}
.p-top__voice-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 392px;
  height: 100%;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 16px;
}
.p-top__voice-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.p-top__voice-profile {
  display: flex;
  gap: 10px;
  align-items: center;
}
.p-top__voice-profile img {
  width: 24px;
  height: 24px;
}
.p-top__voice-profile p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  white-space: nowrap;
}
.p-top__voice-pagination {
  position: absolute;
  z-index: 2;
  left: 20px;
  text-align: center;
  bottom: 0;
}
@media (min-width: 768px) {
  .p-top__voice-pagination {
    left: 0;
    width: auto;
    text-align: left;
  }
}
.p-top__voice-pagination.swiper-pagination-horizontal {
  bottom: 0;
}
.p-top__voice-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px;
  opacity: 1;
  background: var(--color-gray);
  display: inline-block;
}
.p-top__voice-pagination .swiper-pagination-bullet-active {
  background: var(--color-green);
}
@media (min-width: 768px) {
  .p-top__voice-slider.is-static {
    padding-bottom: 0;
    overflow: visible;
  }
}
@media (min-width: 768px) {
  .p-top__voice-slider.is-static .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }
}
@media (min-width: 768px) {
  .p-top__voice-slider.is-static .p-top__voice-slide {
    width: auto;
  }
}
@media (min-width: 768px) {
  .p-top__voice-slider.is-static .p-top__voice-card {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .p-top__voice-slider.is-static .p-top__voice-pagination {
    display: none;
  }
}

.p-top__staff {
  position: relative;
  padding: 55px 0 0px;
  overflow: hidden;
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__staff {
    display: grid;
    grid-template-columns: 500px minmax(0, 1107px);
    align-items: center;
    justify-content: center;
    padding: 90px 0;
  }
}
.p-top__staff-mat1 {
  position: absolute;
  top: 30px;
  left: -23px;
  width: 134px;
  height: 120px;
  max-width: none;
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-top__staff-mat1 {
    top: 34px;
    left: -40px;
    width: 285px;
    height: 256px;
  }
}
.p-top__staff .c-sectitle {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-top__staff .c-sectitle {
    width: 500px;
    margin: 0;
  }
}
.p-top__staff .c-sectitle_mainttl {
  line-height: 1.46;
}
.p-top__staff .c-sectitle_mainttl .is-red {
  color: var(--color-red);
}
.p-top__staff-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 44px;
  padding: 0 20px 37px 20px;
  overflow: visible;
}
@media (min-width: 768px) {
  .p-top__staff-slider {
    margin-top: 0;
    padding-left: 0;
    overflow: hidden;
    margin-left: 0px;
  }
}
.p-top__staff-slide {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  justify-content: center;
  width: 285px;
  padding: 20px 20px 32px;
  color: inherit;
  font-family: inherit;
  text-decoration: none;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 16px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .p-top__staff-slide {
    width: 349px;
    padding-bottom: 52px;
  }
}
.p-top__staff-slide::after {
  display: block;
  width: 27px;
  height: 27px;
  content: "";
  background: url("../img/icon/arrow.svg") center/contain no-repeat;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.p-top__staff-slide:hover, .p-top__staff-slide:focus-visible {
  color: inherit;
}
.p-top__staff-img {
  width: 245px;
  height: 246px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .p-top__staff-img {
    width: 309px;
    height: 349px;
  }
}
.p-top__staff-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  width: 100%;
}
.p-top__staff-text span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 24px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  background: var(--color-green);
  border-radius: 12px;
  padding-inline: 10px;
  line-height: 1;
}
.p-top__staff-text h3,
.p-top__staff-text p {
  margin: 0;
}
.p-top__staff-text h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.p-top__staff-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.p-top__staff-slide--orange .p-top__staff-text span {
  background: var(--color-orange);
}
.p-top__staff-controls {
  position: absolute;
  left: 20px;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: 14px;
  align-items: center;
}
@media (min-width: 768px) {
  .p-top__staff-controls {
    left: 0;
  }
}
.p-top__staff-pagination {
  position: static;
  z-index: 2;
  left: 20px;
  width: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .p-top__staff-pagination {
    left: 0;
    text-align: left;
  }
}
.p-top__staff-pagination.swiper-pagination-horizontal {
  position: static;
  left: 20px;
  width: auto;
}
@media (min-width: 768px) {
  .p-top__staff-pagination.swiper-pagination-horizontal {
    left: 0;
  }
}
.p-top__staff-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px;
  opacity: 1;
  background: var(--color-gray);
  display: inline-block;
}
.p-top__staff-pagination .swiper-pagination-bullet-active {
  background: var(--color-green);
}
.p-top__staff-nav {
  display: none;
}
@media (min-width: 768px) {
  .p-top__staff-nav {
    display: flex;
    gap: 10px;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .p-top__staff-button.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
  }
}
@media (min-width: 768px) {
  .p-top__staff-button--next::before {
    transform: translateX(-2px) rotate(45deg);
  }
}
@media (min-width: 768px) {
  .p-top__staff-button--prev::before {
    transform: translateX(2px) rotate(-135deg);
  }
}
@media (min-width: 768px) {
  .p-top__staff-button::before {
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
  }
}
@media (min-width: 768px) {
  .p-top__staff-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    margin: 0;
    padding: 0;
    background: var(--color-green);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
  }
}
.p-top__staff-empty {
  padding: 40px 20px;
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.p-top__aboutsourcier {
  padding: 60px 20px;
  color: var(--color-black);
  font-family: var(--font-base);
  text-align: center;
}
@media (min-width: 768px) {
  .p-top__aboutsourcier {
    padding: 90px 50px;
  }
}
.p-top__aboutsourcier__textwrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-inline: auto;
}
.p-top__aboutsourcier__textwrap h2,
.p-top__aboutsourcier__textwrap p {
  margin: 0;
}
.p-top__aboutsourcier__textwrap h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.46;
}
@media (min-width: 768px) {
  .p-top__aboutsourcier__textwrap h2 {
    font-size: 32px;
  }
}
.p-top__aboutsourcier__textwrap .is-red {
  color: var(--color-red);
}
.p-top__aboutsourcier__textwrap p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.p-top__aboutsourcier__items {
  display: grid;
  grid-template-columns: repeat(2, 170px);
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  padding: 20px;
  overflow: hidden;
  background: var(--color-bg-yellow);
  border-radius: 16px;
}
@media (min-width: 768px) {
  .p-top__aboutsourcier__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: min(100%, 1197px);
    padding: 40px;
  }
}
.p-top__aboutsourcier__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 170px;
  min-height: 111px;
  padding: 29px;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 16px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-top__aboutsourcier__item {
    width: auto;
    min-height: 130px;
  }
}
.p-top__aboutsourcier__item p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.p-top__aboutsourcier__item p:first-child {
  color: var(--color-green);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.p-top__aboutsourcier__item p:first-child span {
  font-family: var(--font-sans);
  font-size: 32px;
}

.p-top__access {
  padding: 60px 20px;
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__access {
    padding: 90px 50px;
  }
}
.p-top__access .c-sectitle_mainttl {
  line-height: 1.46;
}
.p-top__access__table {
  width: 390px;
  margin: 23px auto 0;
  border-collapse: separate;
  border-spacing: 0 5px;
}
@media (min-width: 768px) {
  .p-top__access__table {
    width: min(100%, 860px);
    margin-top: 32px;
  }
}
.p-top__access__table th,
.p-top__access__table td {
  height: 48px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
  border: 0;
}
.p-top__access__table th {
  width: 120px;
  color: var(--color-green);
  font-weight: 700;
  background: var(--color-bg-green);
}
@media (min-width: 768px) {
  .p-top__access__table th {
    width: 220px;
  }
}
.p-top__access__table td {
  width: 270px;
  font-weight: 400;
  background: var(--color-white);
}
@media (min-width: 768px) {
  .p-top__access__table td {
    width: auto;
  }
}
.p-top__access__map {
  width: 390px;
  margin: 23px auto 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .p-top__access__map {
    width: min(100%, 860px);
    margin-top: 32px;
    aspect-ratio: 860/360;
  }
}
.p-top__access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.p-top__location {
  position: relative;
  padding: 60px 16px;
  overflow: hidden;
  background: var(--color-bg-yellow);
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__location {
    padding: 90px 50px;
  }
}
.p-top__location-mat1 {
  position: absolute;
  top: 31px;
  left: -34px;
  width: 134px;
  height: 120px;
  max-width: none;
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-top__location-mat1 {
    top: 48px;
    left: 54px;
    width: 180px;
    height: auto;
  }
}
.p-top__location__ttlwwrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-inline: auto;
}
.p-top__location__ttlwwrap .c-sectitle_mainttl {
  line-height: 1.46;
}
.p-top__location__ttlwwrap .c-sectitle_mainttl .is-red {
  color: var(--color-red);
}
.p-top__location__ttlwwrap > p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}
.p-top__location__slider {
  position: relative;
  z-index: 1;
  width: 392px;
  margin: 23px auto 0;
  padding-bottom: 29px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top__location__slider {
    width: min(100%, 1180px);
    margin-top: 48px;
  }
}
.p-top__location-slide {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 392px;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 16px;
}
@media (min-width: 768px) {
  .p-top__location-slide {
    width: 380px;
  }
}
.p-top__location-slide figure {
  width: 100%;
  height: 196px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}
.p-top__location-slide img {
  display: block;
  width: 100%;
  height: 133.4%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 18%;
     object-position: center 18%;
}
.p-top__location-slide p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.p-top__location__slider-ttl {
  margin: 0;
  color: var(--color-green);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.p-top__location-pagination {
  position: absolute;
  z-index: 2;
  text-align: center;
  bottom: 0;
}
.p-top__location-pagination.swiper-pagination-horizontal {
  bottom: 0;
}
.p-top__location-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px;
  opacity: 1;
  background: var(--color-gray);
  display: inline-block;
}
.p-top__location-pagination .swiper-pagination-bullet-active {
  background: var(--color-green);
}

.p-top__flow {
  padding: 60px 20px 0;
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__flow {
    padding: 90px 50px 80px;
  }
}
.p-top__flow-secttl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 391px;
  margin: 0 auto;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.46;
  text-align: center;
}
@media (min-width: 768px) {
  .p-top__flow-secttl {
    width: 720px;
  }
}
.p-top__flow-secttl img {
  width: 34px;
  height: 8px;
}
.p-top__flow__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 391px;
  margin: 24px auto 0;
}
@media (min-width: 768px) {
  .p-top__flow__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
    width: min(100%, 1180px);
    margin-top: 40px;
  }
}
.p-top__flow__item {
  position: relative;
  width: 388px;
  padding-bottom: 11px;
  z-index: 2;
}
@media (min-width: 768px) {
  .p-top__flow__item {
    width: 100%;
    padding-bottom: 0;
  }
}
.p-top__flow__item::after {
  position: absolute;
  left: 153px;
  bottom: 0;
  display: block;
  width: 82px;
  height: 23px;
  content: "";
  background: url("../img/top/p-top-flow-arrow.svg") center/contain no-repeat;
  transform: scaleY(-1);
  z-index: -1;
}
@media (min-width: 768px) {
  .p-top__flow__item::after {
    top: 50%;
    right: -52px;
    bottom: auto;
    left: auto;
    width: 82px;
    height: 23px;
    transform: translateY(-50%) rotate(90deg);
  }
}
@media (min-width: 768px) {
  .p-top__flow__item:nth-child(4n)::after {
    display: none;
  }
}
.p-top__flow__item.is-last {
  padding-bottom: 0;
}
.p-top__flow__item.is-last::after {
  display: none;
}
.p-top__flow__item.is-last .p-top__flow__item__inner {
  background: var(--color-bg-blue);
}
.p-top__flow__item__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 388px;
  padding: 20px 0;
  background: var(--color-bg-gray);
  border-radius: 16px;
}
@media (min-width: 768px) {
  .p-top__flow__item__inner {
    width: 100%;
    height: 100%;
    min-height: 224px;
    padding: 28px 18px;
  }
}
.p-top__flow__item__inner h3,
.p-top__flow__item__inner p {
  margin: 0;
  text-align: center;
}
.p-top__flow__item__inner h3 {
  color: var(--color-blue);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.p-top__flow__item__inner p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.p-top__flow__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
}
.p-top__flow__icon img {
  display: block;
  width: 58px;
  height: 58px;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top__faq {
  padding: 82px 21px 60px;
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__faq {
    padding: 82px 50px 90px;
  }
}
.p-top__faq-secttl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin: 0 auto;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.46;
  text-align: center;
}
.p-top__faq-secttl img {
  width: 34px;
  height: 8px;
}
.p-top__faq__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px auto 0;
}
@media (min-width: 768px) {
  .p-top__faq__items {
    max-width: 800px;
  }
}
.p-top__faq__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  overflow: hidden;
  background: var(--color-bg-gray);
  border-radius: 12px;
}
.p-top__faq__item .question {
  display: flex;
  gap: 8px;
  align-items: center;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
.p-top__faq__item .question span {
  color: var(--color-green);
}
.p-top__faq__item .question h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.p-top__faq__item > p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-top__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 0 20px 60px;
  color: var(--color-black);
  font-family: var(--font-base);
}
@media (min-width: 768px) {
  .p-top__contact {
    padding: 0 50px 90px;
  }
}
.p-top__contact__secttl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 389px;
  margin: 0 auto;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.46;
  text-align: center;
}
@media (min-width: 768px) {
  .p-top__contact__secttl {
    width: min(100%, 800px);
  }
}
.p-top__contact__secttl img {
  width: 34px;
  height: 8px;
}
.p-top__contact-form {
  width: 100%;
}
@media (min-width: 768px) {
  .p-top__contact-form {
    width: min(100%, 800px);
  }
}
.p-top__contact-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  margin: 0;
}
.p-top__contact-form .wpcf7-spinner {
  display: none;
}
.p-top__contact-form .screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.p-top__contact-form .wpcf7-response-output {
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 8px;
}
.p-top__contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  margin: 0;
}
@media (min-width: 768px) {
  .p-top__contact-field {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    align-items: flex-start;
  }
}
.p-top__contact-field label {
  display: block;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-top__contact-field label {
    padding-top: 14px;
  }
}
.p-top__contact-field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.p-top__contact-field input,
.p-top__contact-field textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 14px 16px;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 8px;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-top__contact-field input::-moz-placeholder, .p-top__contact-field textarea::-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}
.p-top__contact-field input::placeholder,
.p-top__contact-field textarea::placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}
.p-top__contact-field textarea {
  height: 120px;
  resize: vertical;
}
.p-top__contact-submit {
  position: relative;
  width: 223px;
  margin: 0 auto;
}
.p-top__contact-submit input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 223px;
  height: 49px;
  padding: 10px 20px;
  color: var(--color-white);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  background: var(--color-blue);
  border: 0;
  border-radius: 100px;
  box-shadow: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: filter 0.3s ease;
}
@media (min-width: 768px) {
  .p-top__contact-submit input[type=submit]:hover, .p-top__contact-submit input[type=submit]:focus-visible {
    filter: brightness(0.92);
  }
}

.sp-only {
  display: inline;
}
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .pc-only {
    display: inline;
  }
}
/*# sourceMappingURL=style.css.map */
