@charset "UTF-8";
/* 
 * DO NOT EDIT THIS FILE
 * 編集禁止：このファイルはプロジェクトの基盤です。
 * スタイル調整が必要な場合は utility を作成して上書きすること。
 */

 
/* 勝手に追加 */
/* ============================================ */

/* スムーススクロール */
html {
  scroll-behavior: smooth;
}

/* ふわっと出るアニメーション */
.js-reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);

  transition:
    opacity 1.2s ease,
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s ease;
}

.js-reveal.is-show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* PC/SP 切り替え */
.is_pc {
  display: block;
}

.is_sp {
  display: none!important;
}

@media screen and (max-width: 767px) {
  .is_pc {
    display: none !important;
  }

  .is_sp {
    display: block !important;
  }
}
/* ヘッダーロゴ追加 */
header{
  position:absolute;
  top:35px;
  left:50px;
  z-index: 1;
}
header img{
  width: 56px;
  height: 40px;
}
/* KV動画追加 */
.p-top__hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.p-hero__video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.p-hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.p-hero__video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  header {
    top: 15px;
    left: 15px;
  }

  header img {
    width: 40px;
    height: 28px;
  }
}
.p-top__inner__bubbles {
  --rise: 520rem;

  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.c-bubble {
  position: absolute;
  bottom: -14rem; 
  left: var(--left, 10%);
  width: var(--size, 10rem);
  animation:
    bubble-rise var(--duration, 12s) linear var(--delay, 0s) infinite,
    bubble-sway calc(var(--duration, 12s) / 4) ease-in-out var(--delay, 0s) infinite alternate;

  img {
    display: block;
    width: 100%;
    height: auto;
  }
}

@keyframes bubble-rise {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  10%,
  88% {
    opacity: 1;
  }

  100% {
    transform: translateY(calc(var(--rise, 300rem) * -1));
    opacity: 0;
  }
}

@keyframes bubble-sway {
  from {
    margin-left: -2.6rem;
  }

  to {
    margin-left: 2.6rem;
  }
}

.c-banner[data-text="contents01"] {
  --banner-text-top: 17.4%;
  --banner-text-width: 63.4%!important;
}


  .p-top__cards a.p-top__card{
    display: block;
    transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  }

  .p-top__cards a:hover,
  .p-top__cards a:focus-visible {
    transform: translateY(-20px);
  }

.p-entry__cols {
  display: flex;
  gap: 5.4rem;

  align-items: stretch;
  justify-content: center;
  padding-top: 3.8rem; 
}

.c-entry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 39.4rem;
  padding: 3.5rem 3.6rem 3rem;
  border-radius: 3rem;

  box-shadow: 1.1rem 0.7rem 0 rgba(194, 131, 242, 0.45);
  background-color: #FFF;
  color: #666;
}

.c-entry-card__title {
  padding: 1rem 0.6rem;
  background-color: #ad96d7;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-align: center;
}

.c-entry-card__shops-label {
  padding-top: 1.5rem;
  color: #666;
  font-size: 1.4rem;
  font-weight: 700;
}

.c-entry-card__shops {
  padding-top: 0.6rem;
  color: #666; 
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
}
.c-entry-card__shops a{
  line-height: 2.6;
}
.c-entry-card__shops a:hover{
  text-decoration: underline;
}

.c-entry-card__shops-note {
  padding-top: 0.8rem;
  color: #666;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 767px) {
  .p-entry__cols {
    flex-direction: column;
    gap: 3rem;
    padding-top: 3rem;
  }

  .c-entry-card {
    width: 100%;
    min-height: 0;
    padding: 2.4rem 2rem 3rem;
    border-radius: 2.4rem;
    box-shadow: 1.1rem 0.7rem 0 rgba(194, 131, 242, 0.45);
  }

  .c-entry-card__title {
    font-size: 1.8rem;
  }

  .c-entry-card__shops-label,
  .c-entry-card__shops {
    font-size: 1.2rem;
  }

  .c-entry-card__shops-note,
  .c-entry-card__note {
    font-size: 1.2rem;
  }
}

/*ここまで*/




/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

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

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* add Reset
------------------------------------------------------------ */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}

/*
 * DO NOT EDIT THIS FILE
 * 編集禁止：このファイルはプロジェクトの基盤です。
 * スタイル調整が必要な場合は utility を作成して上書きすること。
 */
html {
  overflow-y: scroll;
  font-size: clamp(9.8461538462px, 100vw / 130, 769.2307692308px);
}
@media (max-width: 767px) {
  html {
    font-size: min(100vw / 39, 11.2820512821px);
  }
}

body {
  width: 100%;
  margin: 0;
  background-color: #faf9f5;
  color: #222;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  font-family: "YakuHanJP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
.p-top {
  position: relative;
  overflow-x: hidden;
}
.p-top > * {
  margin-inline: auto;
  padding-inline: 8.1rem;
}
@media (max-width: 767px) {
  .p-top > * {
    padding-inline: 2rem;
  }
}

.p-top__rail-bg,
.p-top__rail-text {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8.1rem;
  padding-inline: 0;
  overflow: hidden;
  pointer-events: none;
  margin-inline: 0;
}
.p-top__rail-bg[data-side=left],
.p-top__rail-text[data-side=left] {
  left: 0;
}
.p-top__rail-bg[data-side=right],
.p-top__rail-text[data-side=right] {
  right: 0;
}
@media (max-width: 767px) {
  .p-top__rail-bg,
  .p-top__rail-text {
    display: none;
  }
}

.p-top__rail-bg {
  z-index: 2;
  background-color: #cdb9e4;
}

.p-top__rail-text {
  z-index: 5;
}

.p-top__rail-marquee {
  position: absolute;
  inset: 0;
  background-image: url("../img/common/off_relax_tile.svg");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 1.601rem 38rem;
  animation: rail-marquee 18s linear infinite;
}

@keyframes rail-marquee {
  from {
    background-position-y: 0;
  }
  to {
    background-position-y: -38rem;
  }
}
.l-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5.1rem 2rem 4rem;
  background-color: #cacacc;
  color: #fff;
  text-align: center;
}

.l-footer__logo img {
  display: block;
  width: 15.5rem;
  height: auto;
  margin: 0 auto;
}

.l-footer__nav {
  padding-top: 2.4rem;
}
.l-footer__nav ul {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.16em;
}
.l-footer__nav li + li {
  position: relative;
}
.l-footer__nav li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.2rem;
  width: 1px;
  height: 0.8rem;
  translate: 0 -50%;
  background-color: #fff;
}

.l-footer__address {
  padding-top: 2rem;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.l-footer__copyright {
  padding-top: 2rem;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}

@media (max-width: 767px) {
  .l-footer {
    padding-top: 4rem;
  }
  .l-footer__nav ul {
    gap: 2.4rem;
    font-size: 1.3rem;
  }
  .l-footer__address,
  .l-footer__copyright {
    font-size: 1.2rem;
  }
}
:root.js-cursor-enabled,
:root.js-cursor-enabled * {
  cursor: none;
}

.c-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.c-cursor.is-active {
  opacity: 1;
}

.c-cursor__dot,
.c-cursor__trail {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate3d(-100vw, -100vh, 0);
  will-change: transform;
}

.c-cursor__dot {
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(220, 240, 255, 0.9) 50%, rgba(150, 220, 255, 0.5) 75%, rgba(0, 200, 255, 0) 90%);
  filter: blur(1px);
}

.c-cursor__trail {
  z-index: 1;
  width: 1.6rem;
  height: 1.6rem;
  background: radial-gradient(circle, rgba(150, 220, 255, 0.6) 0%, rgba(0, 200, 255, 0.3) 60%, rgba(0, 200, 255, 0) 80%);
  filter: blur(2px);
  opacity: 0.55;
}

.c-banner {
  position: relative;
  display: block;
  aspect-ratio: var(--banner-aspect);
  overflow: hidden;
  border-radius: 2.9rem;
  box-shadow: 1.1rem 0.7rem 0 rgba(194, 131, 242, 0.45);
}

.c-banner:any-link {
  transition: box-shadow 0.25s ease, translate 0.25s ease;
}
.c-banner:any-link:hover, .c-banner:any-link:focus-visible {
  box-shadow: 0.3rem 0.2rem 0 rgba(194, 131, 242, 0.45);
  translate: 0.8rem 0.5rem;
}
@media (max-width: 767px) {
  .c-banner:any-link:hover, .c-banner:any-link:focus-visible {
    box-shadow: 0.3rem 0.2rem 0 rgba(194, 131, 242, 0.45);
    translate: 0.7rem 0.4rem;
  }
}

@media (max-width: 767px) {
  .c-banner {
    border-radius: 2.6rem;
    box-shadow: 1rem 0.6rem 0 rgba(194, 131, 242, 0.45);
  }
}
.c-banner[data-size=campaign] {
  --banner-aspect: 392 / 291;
}

.c-banner[data-size=contents] {
  --banner-aspect: 392 / 316;
}

.c-banner[data-size=shop] {
  --banner-aspect: 392 / 208;
}

.c-banner[data-fill=white] {
  background-color: #fff;
}

.c-banner__text {
  position: absolute;
  top: var(--banner-text-top);
  left: 50%;
  z-index: 1;
  display: block;
  width: var(--banner-text-width);
  height: auto;
  translate: -50% 0;
}

.c-banner[data-text=campaign01] {
  --banner-text-top: 11.3%;
  --banner-text-width: 84.8%;
}

.c-banner[data-text=campaign02] {
  --banner-text-top: 11.3%;
  --banner-text-width: 50.2%;
}

.c-banner[data-text=contents01] {
  --banner-text-top: 17.4%;
  --banner-text-width: 82.4%;
}

.c-banner[data-text=contents02] {
  --banner-text-top: 17.4%;
  --banner-text-width: 73.6%;
}

.c-banner[data-text=shop01] {
  --banner-text-top: 11.5%;
  --banner-text-width: 78.2%;
}

.c-banner[data-text=shop02] {
  --banner-text-top: 11.5%;
  --banner-text-width: 66.9%;
}

.c-banner[data-grad=contents01] {
  background-image: radial-gradient(125% 145% at 88% 12%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0) 100%), linear-gradient(165deg, #ffb9de 0%, #ffb7dd 10%, #feb3da 20%, #fdb1dc 30%, #f6b2e3 40%, #ecb8ec 50%, #e2bbf3 60%, #dbbff8 70%, #d8c2fa 80%, #cfc7fe 90%, #cdc9ff 100%);
}
.c-banner[data-grad=contents01]::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: radial-gradient(125% 145% at 12% 88%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0) 100%), linear-gradient(165deg, #ffb9de 0%, #ffb7dd 10%, #feb3da 20%, #fdb1dc 30%, #f6b2e3 40%, #ecb8ec 50%, #e2bbf3 60%, #dbbff8 70%, #d8c2fa 80%, #cfc7fe 90%, #cdc9ff 100%);
}
.c-banner[data-grad=contents01]:any-link::after {
  transition: opacity 1.2s ease;
}
.c-banner[data-grad=contents01]:any-link:hover::after, .c-banner[data-grad=contents01]:any-link:focus-visible::after {
  opacity: 1;
}

.c-banner[data-grad=contents02] {
  background-image: radial-gradient(165% 112.5% at 55% 12%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.19) 45%, rgba(255, 255, 255, 0) 100%), linear-gradient(105deg, #b6dbff 0%, #b3d2ff 10%, #b6caff 20%, #bdccff 30%, #d1cffe 40%, #e6d0f9 50%, #f3cdf0 60%, #fbc8ea 70%, #fec5e6 80%, #febbe6 90%, #ffb7e6 100%);
}
.c-banner[data-grad=contents02]::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: radial-gradient(165% 112.5% at 45% 88%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.19) 45%, rgba(255, 255, 255, 0) 100%), linear-gradient(105deg, #b6dbff 0%, #b3d2ff 10%, #b6caff 20%, #bdccff 30%, #d1cffe 40%, #e6d0f9 50%, #f3cdf0 60%, #fbc8ea 70%, #fec5e6 80%, #febbe6 90%, #ffb7e6 100%);
}
.c-banner[data-grad=contents02]:any-link::after {
  transition: opacity 1.2s ease;
}
.c-banner[data-grad=contents02]:any-link:hover::after, .c-banner[data-grad=contents02]:any-link:focus-visible::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .c-banner:any-link,
  .c-banner:any-link::after {
    transition: none;
  }
}
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #5c5a5a;
}

.p-top__hero {
  position: relative;
}
.p-top__hero img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top {
  background-image: url("../img/common/bg01.jpg");
  background-size: auto 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #e8ddf5;
}

.p-top__inner {
  position: relative;
  z-index: 4;
  padding-block: 6.4rem 4rem;
}

.p-top__section + .p-top__section {
  padding-top: 9rem;
}

.p-top__head {
  text-align: center;
}

.p-top__title {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: #7a66cf;
}

.p-top__subtitle {
  padding-top: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #7a66cf;
}

.p-top__lead {
  padding-top: 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.9;
  text-align: center;
}

.p-top__cards {
  display: grid;
  gap: 2.4rem;
  padding-top: 4rem;
}
.p-top__cards:has(.c-banner) {
  max-width: 82.9rem;
  margin-inline: auto;
  gap: 4.5rem;
}
@media (max-width: 767px) {
  .p-top__cards:has(.c-banner) {
    max-width: 100%;
    gap: 4rem;
  }
}
.p-top__cards[data-cols="3"] {
  grid-template-columns: repeat(3, 1fr);
}
.p-top__cards[data-cols="2"] {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .p-top__cards[data-cols="3"], .p-top__cards[data-cols="2"] {
    grid-template-columns: 1fr;
  }
}

.p-top__card {
  display: block;
}
.p-top__card img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__intro-title img {
  display: block;
  width: 100%;
  max-width: 83.4rem;
  height: auto;
  margin: 0 auto;
}

#intro .p-top__cards {
  grid-template-columns: repeat(3, 24.2rem);
  justify-content: center;
  max-width: 82.9rem;
  margin-inline: auto;
  padding-top: 5.4rem;
  gap: 5rem;
}

.p-top__movie-player {
  position: relative;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.p-top__movie-player > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% + 1px);
}

.p-top__notes {
  padding-top: 3rem;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  color: #fff;
}

.p-top__contact-title {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
}

.p-top__contact-body {
  padding-top: 1.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #fff;
}

#movie + #contact {
  padding-top: 3.4rem;
}

@media (max-width: 767px) {
  .p-top__inner {
    padding-block: 5rem 7rem;
  }
  .p-top__intro-title img {
    max-width: 34rem;
  }
  #intro .p-top__cards {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 4rem;
    gap: 1.5rem;
  }
  #movie + #contact {
    padding-top: 4rem;
  }
  .p-top__section + .p-top__section {
    padding-top: 6rem;
  }
  .p-top__title {
    font-size: 2.8rem;
  }
  .p-top__subtitle {
    padding-top: 0;
    font-size: 1.8rem;
  }
  .p-top__lead,
  .p-top__contact-body {
    font-size: 1.4rem;
  }
  .p-top__contact-body {
    line-height: 1.8;
  }
  .p-top__notes {
    font-size: 1.4rem;
  }
  .p-top__contact-title {
    font-size: 2.6rem;
  }
}
.u-en {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip-path: inset(50%);
  white-space: nowrap;
}

/*# sourceMappingURL=style.css.map */
