@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-weight: 400;
}

.pc {
  display: none;
}
@media (min-width: 744px) {
  .pc {
    display: block;
  }
}

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

@media (max-width: 743px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 744px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media (min-width: 744px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media (min-width: 744px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* Button */
.button {
  width: 100%;
  display: flex;
  height: 56px;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 72px;
  border: 1px solid #E0E0E0;
  background: #333333;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}
.button.color-primary{
  background: #FF7130;
}
@media (min-width: 744px) {
  .button {
    width: 440px;
    max-width: 100%;
    height: 60px;
    font-size: 1.375rem;
  }
}

/* Header */
.header {
  width: 100%;
  height: 4rem;
  background-color: #fff;
}
@media (min-width: 744px) {
  .header {
    height: 5rem;
  }
}
.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.5rem;
  padding-block: 1.25rem;
}
@media (min-width: 744px) {
  .header__inner {
    width: 100%;
    margin-inline: auto;
    padding-inline: 5rem;
    padding-block: 1.5rem;
  }
}
.header__logo-text {
  display: block;
  width: 9.5rem;
  height: 1.5rem;
  pointer-events: none;
}
@media (min-width: 744px) {
  .header__logo-text {
    width: 12.6875rem;
    height: 2rem;
  }
}
.header__logo-text img {
  width: 100%;
  height: 100%;
}
.header__logo {
  display: block;
  width: 6.9375rem;
  height: 1.25rem;
  pointer-events: none;
}
@media (min-width: 744px) {
  .header__logo {
    width: 9.75rem;
    height: 1.75rem;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
}

/* Footer */
.footer {
  background: #eeeeee;
  padding-bottom: 5.6875rem;
}
@media (min-width: 744px) {
  .footer {
    padding-bottom: 4rem;
  }
}
.footer__inner {
  padding-inline: 1.5rem;
  padding-block: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  row-gap: 0.75rem;
}
@media (min-width: 744px) {
  .footer__inner {
    padding-block: 3.5rem;
  }
}
.footer__logo {
  display: block;
  width: 10.875rem;
  height: 1.9375rem;
}
.footer__logo img {
  width: 100%;
  height: 100%;
}
.footer__copyright {
  font-size: 0.875rem;
  font-weight: 400;
  color: #3c3a33;
}

/* Section */
.section + .bg-gray{
  background-color: #F3F6F4;
}
.section__inner {
  width: 100%;
  max-width: 1048px;
  margin: auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 744px) {
  .section__inner {
    padding: 80px 24px;
    gap: 40px;
  }
}
.section__title > img{
  width: auto;
  height: 58px;
}
@media (min-width: 744px) {
  .section__title > img{
    height: 86px;
  }
}
.section__cta-wrap{
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 24px;
  width: 100%;
  padding: 24px 0;
}
.section__cta-wrap.no-padding{
  padding: 0;
}
.section__cta-wrap-copy{
  max-width: 100%;
}
.section__cta-wrap > .button{
  margin: auto;
}

/* Navigation */
.navigation{
  background-color: #333333;
}
.navigation__list{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.navigation__item{
  color: #ffffff;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  padding: 8px;
}
.navigation__item::after{
  content:"";
  background: url(../images/common/icon-arrow-down.svg) no-repeat center center/contain;
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}
.navigation__item:hover::after{
  transform: translateY(2px);
}
@media (min-width: 744px) {
  .navigation__list{
    max-width: 820px;
    margin: auto;
  }
  .navigation__item{
    font-size: 18px;
    padding: 20px;
  }
  .navigation__item::after{
    width: 14px;
    height: 14px;
  }
}

/* First View */
.fv {
  background: url(../images/fv/fv-bg-sp.webp) no-repeat center center/cover;
  width: 100%;
  aspect-ratio: 375/500;
}
@media (min-width: 744px) {
  .fv {
    background: #fff url(../images/fv/fv-bg-pc.webp) no-repeat center center/cover;
    aspect-ratio: 1440/560;
    min-height: 400px;
  }
}
@media (min-width: 744px) and (max-width: 879px) {
  .fv {
    background-position: right -80px center;
  }
}
.fv__inner {
  height: 100%;
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 744px) {
  .fv__inner {
    width: 80vw;
    justify-content: flex-start;
    max-width: 1200px;
  }
}
.fv__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  padding: 16px 24px 24px;
}
@media (min-width: 744px) {
  .fv__content {
    margin: 0;
    justify-content: center;
    max-width: 32vw;
    width: auto;
    padding: 0;
  }
}
.fv__title > img {
  width: 32vw;
  min-width: 174px;
  height: auto;
}
@media (min-width: 744px) {
  .fv__title > img {
    width: 330px;
    max-width: 22vw;
    min-width: auto;
  }
}

/* intro */
.intro__title{
  text-align: center;
  line-height: 1.5;
  font-size: 20px;
}
.intro__desc{
  text-align: center;
  line-height: 1.8;
  font-size: 14px;
}
@media (min-width: 744px) {
  .intro__title{
    font-size: 32px;
  }
  .intro__desc{
    font-size: 20px;
  }
}

/* About */
.about__list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.about__item{
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.about__item-img{
  width: 100%;
  aspect-ratio: 5/3;
  display: block;
}
.about__item-content{
  background-color: #ffffff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.about__item-title{
  font-size: 24px;
  line-height: 1;
}
.about__item-desc{
  font-size: 14px;
  line-height: 1.6;
}
.about__note{
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media (min-width: 744px) {
  .about__list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .about__item-img{
    aspect-ratio: 3/2;
  }
  .about__item-content{
    padding: 24px 48px;
    align-items: flex-start;
  }
  .about__item-title{
    font-size: 28px;
  }
  .about__item-desc{
    font-size: 16px;
  }
  .about__note{
    font-size: 14px;
    text-align: center;
  }
}

/* requirement */
.requirement__list{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.requirement__item{
  width: 220px;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 24px;
}
.requirement__item-img{
  width: 210px;
  max-width: 100%;
  margin: auto;
}
.requirement__item-desc{
  font-size: 18px;
  line-height: 1.6;
}
@media (min-width: 744px) {
  .requirement__list{
    flex-direction: row;
    justify-content: space-between;
    max-width: 100%;
    width: 880px;
  }
  .requirement__item{
    gap: 32px;
  }
}

/* モーダル */
/* 初期設定 */
button {
  background: none;
}

:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

body:has(dialog[open]) {
  overflow: hidden;
}

/* モーダルのスタイル ============ */
dialog::-webkit-backdrop {
  opacity: 0;
  transition: background 0.3s ease-in-out;
}
dialog::backdrop {
  opacity: 0;
  transition: background 0.3s ease-in-out;
}
dialog.js-show.modal__content {
  padding-top: 2.5rem;
  opacity: 1;
}
@media (min-width: 744px) {
  dialog.js-show.modal__content {
    padding-top: 82px;
    width: 500px;
    width: 600px;
    height: calc(100vh - 82px);
  }
}
@media screen and (max-width: 743px) {
  dialog.js-show.modal__content {
    padding-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  dialog.js-show.modal__content {
    padding-top: 2.5rem;
  }
}
dialog.js-show.js-show.modal__cta-content {
  opacity: 1;
}
@media (min-width: 744px) {
  dialog.js-show.js-show.modal__cta-content {
    width: 64.75rem;
    height: 29.875rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
}
dialog.js-show.js-show::-webkit-backdrop {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}
dialog.js-show.js-show::backdrop {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}

/* モーダル内のCTAボタンのスタイル */
.modal__cta-content {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  /* モーダル枠組みのスタイル */
  width: 21.4375rem;
  max-width: 100%;
  max-height: 100vh;
  box-sizing: content-box;
}
.modal__cta-content .modal__close-btn {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  right: 0;
}
@media (min-width: 744px) {
  .modal__cta-content .modal__close-btn {
    width: 1.875rem;
    height: 1.875rem;
    top: inherit;
  }
}
.modal__cta-content .modal__close-btn img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
}

.modal__cta-inner {
  height: 100%;
  place-content: center;
}
@media (min-width: 744px) {
  .modal__cta-inner {
    height: auto;
  }
}

.modal__cta-body {
  background: #fff;
  border-radius: 1.5rem;
  text-align: center;
  overflow: hidden;
}
.modal__cta-body h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  padding: 1.4375rem 1.5rem;
  background: #eeeeee;
}
@media (min-width: 744px) {
  .modal__cta-body h2 {
    font-size: 1.375rem;
    padding: 2rem;
    line-height: 1.4545454545;
  }
}
.modal__cta-body p {
  font-size: 0.875rem;
  color: #000;
  font-weight: 400;
  line-height: 1.4285714286;
}
@media (min-width: 744px) {
  .modal__cta-body p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.modal__text-content {
  padding: 1.5rem;
}
@media (min-width: 744px) {
  .modal__text-content {
    padding: 2rem;
  }
}

.modal__cta-link {
  color: #076acd;
  text-decoration: underline;
  font-weight: 700;
  font-size: 0.875rem;
}
@media (min-width: 744px) {
  .modal__cta-link {
    font-weight: 400;
    font-size: 1rem;
  }
}

.modal__cta-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.modal__cta-list li a {
  display: block;
  color: #076acd;
  font-size: 0.625rem;
  font-weight: 400;
  text-decoration: underline;
}
@media (min-width: 744px) {
  .modal__cta-list li a {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.modal__cta-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 744px) {
  .modal__cta-btn {
    justify-content: center;
  }
}
.modal__cta-btn li {
  width: 8.75rem;
  max-width: 100%;
}
@media (min-width: 744px) {
  .modal__cta-btn li {
    width: 18.375rem;
  }
}
.modal__cta-btn li button {
  width: 100%;
  transition: opacity 0.3s ease;
}
.modal__cta-btn li button.-cancel {
  color: #8f8f8f;
  border: 1px solid #8f8f8f;
  color: #000;
  border: 1px solid #000;
  border-radius: 2rem;
  display: block;
  font-size: 1rem;
  text-align: center;
  padding: 0.375rem 1rem;
}
@media (min-width: 744px) {
  .modal__cta-btn li button.-cancel {
    font-size: 1.375rem;
    padding: 1rem;
  }
}
.modal__cta-btn li button.-ok {
  color: #fff;
  background: #60ad5e;
  border-radius: 2rem;
  border: 1px solid #60ad5e;
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.1);
  display: block;
  font-size: 1rem;
  text-align: center;
  padding: 0.375rem 1rem;
}
@media (min-width: 744px) {
  .modal__cta-btn li button.-ok {
    font-size: 1.375rem;
    padding: 1rem;
  }
}
@media (any-hover: hover) {
  .modal__cta-btn li button:hover {
    opacity: 0.7;
  }
}

.modal__open-btn {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .modal__open-btn:hover {
    opacity: 0.7;
  }
}

/* Form */
.form__wrap{
  width: 100%;
  height: 600px;
}
.form__wrap iframe{
  border: none;
}
.form__caution{
  padding: 24px;
  background: #ffffff;
  color: #727272;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form__caution h4,
.form__caution h3{
  font-weight: 400;
  font-size: 12px;
}
.form__caution-content{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__caution-content a{
  text-decoration: underline;
}
.form__caution-content > ul.has-gap{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 744px) {
  .form__caution{
    padding: 48px;
  }
}

/* Showcase */
.showcase__list {
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.showcase__desc{
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
  text-align: center;
}
.showcase__desc > span{
  background-color: #A9A9A9;
  color: #ffffff;
  font-weight: 700;
  border-radius: 40px;
  padding: 2px 12px 2px 8px;
  margin: 0 4px;
}
@media (min-width: 744px) {
  .showcase__desc{
    font-size: 16px;
  }
  .showcase__desc > span{
    padding: 4px 12px 4px 8px;
  }
}
.showcase__img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  position: relative;
}
.showcase__img::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  background: url(../images/showcase/modal-open.webp) no-repeat center center/contain;
}
@media (min-width: 744px) {
  .showcase__img::after {
    width: 2.125rem;
    height: 2.125rem;
  }
}
.showcase__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.625rem;
}
@media (min-width: 744px) {
  .showcase__img img {
    border-radius: 0.5rem;
  }
}

.showcase__modal-cta {
  margin-top: 1.875rem;
}
@media (min-width: 744px) {
  .showcase__modal-cta {
    margin-top: 0;
  }
}
.showcase__modal-cta span {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 743px) {
  .showcase__modal-cta span {
    font-size: 18.2px;
  }
}
@media screen and (max-width: 500px) {
  .showcase__modal-cta span {
    font-size: 0.875rem;
  }
}
@media (min-width: 744px) {
  .showcase__modal-cta span {
    font-size: 16px;
  }
}
.showcase__modal-cta span::before, .showcase__modal-cta span::after {
  content: "";
  display: block;
  width: 13px;
  height: 10px;
}
@media screen and (max-width: 743px) {
  .showcase__modal-cta span::before, .showcase__modal-cta span::after {
    width: 16.9px;
    height: 13px;
  }
}
@media screen and (max-width: 500px) {
  .showcase__modal-cta span::before, .showcase__modal-cta span::after {
    width: 0.8125rem;
    height: 0.625rem;
  }
}
@media (min-width: 744px) {
  .showcase__modal-cta span::before, .showcase__modal-cta span::after {
    width: 18px;
    height: 14px;
  }
}
.showcase__modal-cta span::before {
  margin-right: 8px;
  background: url(../images/common/double-line-left-white.svg) no-repeat center center/cover;
}
@media screen and (max-width: 743px) {
  .showcase__modal-cta span::before {
    margin-right: 10.4px;
  }
}
@media screen and (max-width: 500px) {
  .showcase__modal-cta span::before {
    margin-right: 0.5rem;
  }
}
@media (min-width: 744px) {
  .showcase__modal-cta span::before {
    margin-right: 8px;
  }
}
.showcase__modal-cta span::after {
  margin-left: 8px;
  background: url(../images/common/double-line-right-white.svg) no-repeat center center/cover;
}
@media screen and (max-width: 743px) {
  .showcase__modal-cta span::after {
    margin-left: 10.4px;
  }
}
@media screen and (max-width: 500px) {
  .showcase__modal-cta span::after {
    margin-left: 0.5rem;
  }
}
@media (min-width: 744px) {
  .showcase__modal-cta span::after {
    margin-left: 8px;
  }
}

.showcase__modal-cta-btn {
  font-size: 20px;
  text-align: center;
  color: #fff;
  background: #60ad5e;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.3);
  border-radius: 3.5rem;
  padding: 12px 30px;
  margin-top: 10px;
  font-weight: 700;
  position: relative;
  z-index: 1000;
  display: block;
  pointer-events: auto;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 743px) {
  .showcase__modal-cta-btn {
    font-size: 22px;
    padding: 15.6px 39px;
    margin-top: 13px;
    margin-bottom: 13px;
    text-indent: -26px;
    min-width: 330px;
  }
}
@media screen and (max-width: 500px) {
  .showcase__modal-cta-btn {
    font-size: 1.25rem;
    padding: 0.75rem 1.875rem;
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
    text-indent: -1.25rem;
    min-width: auto;
  }
}
@media (min-width: 744px) {
  .showcase__modal-cta-btn {
    font-size: 22px;
    line-height: 1.45;
    padding: 16px 30px;
    margin-top: 8px;
    width: 400px;
    margin-inline: auto;
  }
}
.showcase__modal-cta-btn::after {
  content: "";
  display: block;
  width: 22px;
  height: 20px;
  background: url(../images/common/arrow-white-regular.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 30px;
}
@media screen and (max-width: 743px) {
  .showcase__modal-cta-btn::after {
    width: 28.6px;
    height: 26px;
    right: 39px;
    width: 24px;
    height: 22px;
    right: 34px;
  }
}
@media screen and (max-width: 500px) {
  .showcase__modal-cta-btn::after {
    width: 1.375rem;
    height: 1.25rem;
    right: 1.875rem;
  }
}
@media (min-width: 744px) {
  .showcase__modal-cta-btn::after {
    width: 24px;
    height: 22px;
    right: 20px;
  }
}
@media (any-hover: hover) {
  .showcase__modal-cta-btn:hover {
    opacity: 0.7;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.slide-video,
.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.slide-video {
  touch-action: pan-y pinch-zoom;
}

.swiper-slide-img {
  position: relative;
  z-index: 30;
}
.swiper-slide-img.-image {
  place-content: end;
  width: 20rem;
  height: 25rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 743px) {
  .swiper-slide-img.-image {
    width: 416px;
    height: 520px;
    width: auto;
    height: 49vh;
    height: 49dvh;
    max-height: 520px;
    aspect-ratio: 320/400;
  }
}
@media screen and (max-width: 500px) {
  .swiper-slide-img.-image {
    width: 20rem;
    height: 25rem;
    max-height: 25rem;
  }
}
@media (min-width: 744px) {
  .swiper-slide-img.-image {
    place-content: center;
    width: 400px;
    height: 500px;
    width: auto;
    height: 70vh;
    height: 70dvh;
    aspect-ratio: 400/500;
    max-height: 500px;
  }
}
.swiper-slide-img.-video {
  place-content: center;
  width: 20rem;
  height: 35.4375rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 743px) {
  .swiper-slide-img.-video {
    width: auto;
    height: 70vh;
    height: 70dvh;
    max-height: 737.1px;
    aspect-ratio: 320/567;
  }
}
@media screen and (max-width: 500px) {
  .swiper-slide-img.-video {
    width: 20rem;
    height: 27.8125rem;
    max-height: 35.4375rem;
  }
}
@media (min-width: 744px) {
  .swiper-slide-img.-video {
    width: 281px;
    height: 500px;
    width: auto;
    height: 70vh;
    height: 70dvh;
    aspect-ratio: 281/500;
    max-height: 500px;
  }
}

.swiper-wrapper {
  place-items: center;
}

.video-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: auto;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
@media screen and (max-width: 743px) {
  .video-ui {
    gap: 10.4px;
  }
}

.video-ui progress {
  width: 20rem;
  margin-inline: auto;
  height: 0.1875rem;
  appearance: none;
}
@media screen and (max-width: 743px) {
  .video-ui progress {
    width: 416px;
  }
}
@media screen and (max-width: 500px) {
  .video-ui progress {
    width: 20rem;
  }
}

.video-ui progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.2);
}

.video-ui progress::-webkit-progress-value {
  background: rgba(255, 255, 255, 0.9);
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  z-index: 20;
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 743px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 31.2px;
    height: 31.2px;
  }
}
@media screen and (max-width: 500px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (min-width: 744px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
@media (any-hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: 0.7;
  }
}

.swiper-button-prev {
  left: 1.75rem;
}
@media screen and (max-width: 743px) {
  .swiper-button-prev {
    left: calc(36.4px + (100vw - 500px) / 2);
  }
}
@media screen and (max-width: 500px) {
  .swiper-button-prev {
    left: 1.75rem;
  }
}
@media (min-width: 744px) {
  .swiper-button-prev {
    left: 62px;
  }
}

.swiper-button-next {
  right: 1.75rem;
}
@media screen and (max-width: 743px) {
  .swiper-button-next {
    right: calc(36.4px + (100vw - 500px) / 2);
  }
}
@media screen and (max-width: 500px) {
  .swiper-button-next {
    right: 1.75rem;
  }
}
@media (min-width: 744px) {
  .swiper-button-next {
    right: 62px;
  }
}

@media (min-width: 744px) {
  .gallerySwiper-container:has(.swiper-slide-video.swiper-slide-active) .swiper-button-prev {
    left: 122px;
  }
}
@media (min-width: 744px) {
  .gallerySwiper-container:has(.swiper-slide-video.swiper-slide-active) .swiper-button-next {
    right: 122px;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  bottom: 0;
}
@media screen and (max-width: 743px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    width: 31.2px;
    height: 31.2px;
  }
}
@media screen and (max-width: 500px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (min-width: 744px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    width: 30px;
    height: 30px;
  }
}

.swiper-button-next::after {
  background: url(../images/showcase/swiper-next.webp) no-repeat center center/contain;
}

.swiper-button-prev::after {
  background: url(../images/showcase/swiper-prev.webp) no-repeat center center/contain;
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  aspect-ratio: 1;
  background: #fff;
}
@media screen and (max-width: 743px) {
  .swiper-pagination-bullet {
    width: 7.8px;
    height: 7.8px;
  }
}
@media screen and (max-width: 500px) {
  .swiper-pagination-bullet {
    width: 0.375rem;
    height: 0.375rem;
  }
}
@media (min-width: 744px) {
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

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

.btn-unmute {
  position: absolute;
  width: 35px;
  bottom: 30px;
  right: 10px;
  padding: 0;
  cursor: pointer;
  z-index: 9999;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 743px) {
  .btn-unmute {
    width: 45.5px;
    bottom: 26px;
    right: 26px;
  }
}
@media screen and (max-width: 500px) {
  .btn-unmute {
    width: 2.1875rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
@media (min-width: 744px) {
  .btn-unmute {
    width: 35px;
    bottom: 1.875rem;
    right: 0.625rem;
    bottom: 10px;
    right: 10px;
  }
}
.btn-unmute img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
@media (any-hover: hover) {
  .btn-unmute:hover {
    opacity: 0.7;
  }
}

.swiper-slide {
  position: relative;
  margin-inline: auto;
  max-width: 100%;
}
@media screen and (max-width: 743px) {
  .swiper-slide {
    width: 416px;
    max-height: 993.2px;
  }
}
@media screen and (max-width: 500px) {
  .swiper-slide {
    width: 20rem;
    height: 49.375rem;
    height: 48.25rem;
    height: 90vh;
    height: 90dvh;
    max-height: 48.25rem;
    padding-bottom: 40px;
  }
}
@media (min-width: 744px) {
  .swiper-slide {
    width: 500px;
    width: 600px;
    height: 728px;
    max-height: none;
  }
}

.swiper-slide-inner {
  display: grid;
  height: 100%;
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 743px) {
  .swiper-slide-inner {
    width: 445.9px;
    justify-content: space-around;
    align-items: flex-end;
  }
}
@media screen and (max-width: 500px) {
  .swiper-slide-inner {
    width: 21.4375rem;
  }
}
@media (min-width: 744px) {
  .swiper-slide-inner {
    align-items: center;
  }
}

.swiper-slide-image .swiper-slide-inner {
  align-items: flex-end;
}
@media (min-width: 744px) {
  .swiper-slide-image .swiper-slide-inner {
    align-items: center;
  }
}

.swipe-zone-left,
.swipe-zone-right {
  position: absolute;
  top: 3.125rem;
  bottom: 0;
  width: 20%;
  z-index: 10;
  pointer-events: auto;
  background: transparent;
  touch-action: pan-x pinch-zoom;
}
@media screen and (max-width: 743px) {
  .swipe-zone-left,
  .swipe-zone-right {
    top: 65px;
  }
}
@media (min-width: 744px) {
  .swipe-zone-left,
  .swipe-zone-right {
    top: 33px;
    width: 33%;
  }
}

.swiper-slide-video .swipe-zone-left,
.swiper-slide-video .swipe-zone-right {
  bottom: 30%;
}
@media screen and (max-width: 500px) {
  .swiper-slide-video .swipe-zone-left,
  .swiper-slide-video .swipe-zone-right {
    bottom: 37%;
  }
}
@media (min-width: 744px) {
  .swiper-slide-video .swipe-zone-left,
  .swiper-slide-video .swipe-zone-right {
    bottom: 34%;
  }
}

.swipe-zone-left {
  left: 0;
}

.swipe-zone-right {
  right: 0;
}

.slide-video {
  touch-action: pan-y pinch-zoom;
  -webkit-user-drag: none;
  z-index: 10;
}

.gallerySwiper-container {
  position: relative;
  width: 100%;
  margin-inline: auto;
  height: auto;
  --controls-top: 0px;
  overflow: hidden;
}

.gallerySwiper-container .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--controls-top) + 8px);
  transform: none;
  z-index: 10;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 744px) {
  .gallerySwiper-container .swiper-pagination {
    height: 0.625rem;
  }
}

@media screen and (max-width: 743px) {
  .gallerySwiper-container .swiper-pagination {
    height: 13px;
  }
}
@media screen and (max-width: 500px) {
  .gallerySwiper-container .swiper-pagination {
    height: 0.625rem;
  }
}
.gallerySwiper-container .swiper-button-prev,
.gallerySwiper-container .swiper-button-next {
  position: absolute !important;
  top: var(--controls-top) !important;
  transform: none !important;
  margin-top: 0 !important;
  z-index: 10;
}
@media (min-width: 744px) {
  .gallerySwiper-container .swiper-button-prev,
  .gallerySwiper-container .swiper-button-next {
    top: auto !important;
    bottom: 429px;
  }
}

.modal__content {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  max-width: 100%;
  max-height: 100vh;
  box-sizing: content-box;
}
@media (min-width: 744px) {
  .modal__content {
    width: 20rem;
    padding-inline: 1.25rem;
  }
}

.modal__inner {
  overflow-y: auto;
  height: 100%;
  position: relative;
  place-content: center;
}
@media screen and (max-width: 743px) {
  .modal__inner {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  .modal__inner {
    padding-bottom: 0;
  }
}
@media (min-width: 744px) {
  .modal__inner {
    overflow-y: auto;
    padding-bottom: 0;
  }
}

.modal__body {
  position: relative;
}

.modal__close-btn {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 743px) {
  .modal__close-btn {
    width: 31.2px;
    height: 31.2px;
    top: 20.8px;
    right: 20.8px;
  }
}
@media screen and (max-width: 500px) {
  .modal__close-btn {
    width: 1.5rem;
    height: 1.5rem;
    top: 1rem;
    right: 1rem;
  }
}
@media (min-width: 744px) {
  .modal__close-btn {
    top: 80px;
    right: 84px;
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 744px) {
  .modal__close-btn.--sp {
    display: none;
  }
}
.modal__close-btn.--pc {
  display: none;
}
@media (min-width: 744px) {
  .modal__close-btn.--pc {
    display: block;
    margin-left: auto;
    top: 0;
    right: 66px;
  }
}
.modal__close-btn img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
@media (any-hover: hover) {
  .modal__close-btn:hover {
    opacity: 0.7;
  }
}

