@charset "UTF-8";

/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  background-repeat: no-repeat;
  /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  overflow-wrap: break-word;
  /* 3 */
  -moz-tab-size: 4;
  /* 4 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 4 */
  -webkit-tap-highlight-color: transparent;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 6 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit;
  /* 1 */
  height: 0;
  /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
  overflow: auto;
  /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(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.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse;
  /* 1 */
  border-color: inherit;
  /* 2 */
  text-indent: 0;
  /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

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

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0;
  /* 1 */
  resize: vertical;
  /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Restrict sizing to the page width in all browsers (opinionated).
 */
:where(iframe, img, input, video, select, textarea) {
  height: auto;
  max-width: 100%;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
:where(button, input, select, textarea) {
  background-color: transparent;
  /* 1 */
  border: 1px solid WindowFrame;
  /* 1 */
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  letter-spacing: inherit;
  /* 2 */
  padding: 0.25em 0.375em;
  /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(select) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center/1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */
:where(select[multiple]) {
  background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */
:where([type=color i], [type=range i]) {
  border-width: 0;
  padding: 0;
}

.is-fade-in-ready {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

.is-fade-in-ready.is-fade-in {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .is-fade-in-ready {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-tap-highlight-color: revert;
  cursor: revert;
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  line-break: strict;
  overflow-wrap: anywhere;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
}

li {
  list-style-type: none;
}

th {
  font-weight: inherit;
}

address {
  font-style: inherit;
}

fieldset {
  border: 0;
  min-width: 0;
}

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

h1 {
  margin: 0;
}

cite,
dfn,
em,
i,
var {
  font-style: inherit;
}

small {
  font-size: inherit;
}

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

button,
input,
select,
textarea {
  border: 0;
  padding: 0;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
}

button {
  touch-action: manipulation;
}

button:not(:disabled, [aria-disabled=true]) {
  cursor: pointer;
}

[hidden][hidden] {
  display: none !important;
}

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

svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

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

.u-d-none {
  display: none !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-inline-block {
  display: inline-block !important;
}

.u-d-block {
  display: block !important;
}

.u-d-grid {
  display: grid !important;
}

.u-d-table {
  display: table !important;
}

.u-d-table-row {
  display: table-row !important;
}

.u-d-table-cell {
  display: table-cell !important;
}

.u-d-flex {
  display: flex !important;
}

.u-d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 48em) {
  .u-d-md-none {
    display: none !important;
  }

  .u-d-md-inline {
    display: inline !important;
  }

  .u-d-md-inline-block {
    display: inline-block !important;
  }

  .u-d-md-block {
    display: block !important;
  }

  .u-d-md-grid {
    display: grid !important;
  }

  .u-d-md-table {
    display: table !important;
  }

  .u-d-md-table-row {
    display: table-row !important;
  }

  .u-d-md-table-cell {
    display: table-cell !important;
  }

  .u-d-md-flex {
    display: flex !important;
  }

  .u-d-md-inline-flex {
    display: inline-flex !important;
  }
}

.u-visually-hidden-focusable:not(:focus, :focus-within) {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  visibility: visible !important;
  opacity: 0% !important;
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  width: 4px !important;
  height: 4px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.u-visually-hidden {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  visibility: visible !important;
  opacity: 0% !important;
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  width: 4px !important;
  height: 4px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.c-footer {
  background-color: #355576;
  color: #fff;
}

.c-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 40px;
  min-height: 88px;
  padding: 15px 44px 25px 44px;
}

@media not all and (min-width: 48em) {
  .c-footer__inner {
    flex-direction: column;
    justify-content: center;
    row-gap: 29px;
    min-height: 202px;
    padding: 20px 24px 28px;
    text-align: center;
  }
}

.c-footer__company {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px clamp(15px, 2.3125vw, 37px);
  min-width: 0;
}

@media not all and (min-width: 48em) {
  .c-footer__company {
    flex-direction: column;
    width: 100%;
    row-gap: 14px;
  }
}

.c-footer__company-link {
  flex-shrink: 0;
  transition: opacity 0.5s ease;
}

@media (hover: hover) {
  .c-footer__company-link:hover {
    opacity: 0.7;
  }
}

.c-footer__company-logo {
  width: 216px;
}

@media not all and (min-width: 48em) {
  .c-footer__company-logo {
    max-width: 100%;
  }
}

.c-footer__corporate {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 37px;
  column-gap: 37px;
  row-gap: 15px;
  min-width: 0;
}

@media not all and (min-width: 48em) {
  .c-footer__corporate {
    justify-content: center;
    width: 100%;
  }
}

.c-footer__corporate-link {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.5s ease;
}

@media (hover: hover) {
  .c-footer__corporate-link:hover {
    opacity: 0.7;
  }
}

.c-footer__blank-icon {
  width: 13px;
}

.c-footer__copyright {
  flex-shrink: 0;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media not all and (min-width: 48em) {
  .c-footer__copyright {
    font-size: 12px;
    letter-spacing: 0.11em;
    white-space: normal;
  }
}

.p-hero {
  position: relative;
  background-color: #bee0f6;
  isolation: isolate;
  overflow: hidden;
}

.p-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/pages/index/hero_curve.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  pointer-events: none;
}

@media not all and (min-width: 48em) {
  .p-hero::before {
    background-image: url("../images/pages/index/hero_curve_sp.svg");
  }
}

.p-hero.is-bg-reveal-ready::before {
  clip-path: inset(0 100% 0 0);
}

.p-hero.is-bg-reveal-ready.is-bg-revealed:not(.is-bg-mask-releasing)::before {
  animation: hero-bg-reveal 3s cubic-bezier(0.215, 0.61, 0.355, 1) both, hero-bg-leading-mask 3s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

.p-hero.is-bg-reveal-ready.is-bg-revealed:not(.is-bg-reveal-done)::before {
  mask-image: linear-gradient(90deg, #000 0 calc(100% - 120px), transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 0% 100%;
  -webkit-mask-image: linear-gradient(90deg, #000 0 calc(100% - 120px), transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 0% 100%;
}

.p-hero.is-bg-mask-releasing:not(.is-bg-reveal-done)::before {
  clip-path: inset(0);
  animation: hero-bg-mask-release 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.p-hero.is-bg-reveal-ready.is-bg-revealed.is-bg-reveal-done::before {
  clip-path: inset(0);
}

@keyframes hero-bg-reveal {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0);
  }
}

@keyframes hero-bg-leading-mask {
  from {
    mask-size: 0% 100%;
    -webkit-mask-size: 0% 100%;
  }

  to {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }
}

@keyframes hero-bg-mask-release {
  from {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }

  to {
    mask-size: calc(100% + 120px) 100%;
    -webkit-mask-size: calc(100% + 120px) 100%;
  }
}

.p-hero::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  width: max(125vw, 2000px);
  height: 280px;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  background-color: #fff;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

@media not all and (min-width: 48em) {
  .p-hero::after {
    bottom: -62px;
    width: max(150vw, 865px);
    height: 147px;
  }
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  min-height: 1237px;
  padding-top: 59px;
  margin-inline: auto;
  text-align: center;
}

@media not all and (min-width: 48em) {
  .p-hero__inner {
    min-height: 562px;
    padding-top: 20px;
  }
}

.p-hero__inner::before {
  position: absolute;
  inset: -12% -8% 16%;
  z-index: 0;
  background: radial-gradient(circle at 45% 50%, rgba(255, 255, 255, 0.78) 0 29%, rgba(255, 255, 255, 0.5) 37%, transparent 58%), radial-gradient(circle at 74% 30%, rgba(255, 255, 255, 0.34) 0 12%, transparent 34%);
  content: "";
  filter: blur(22px);
  opacity: 0.86;
  pointer-events: none;
}

@media not all and (min-width: 48em) {
  .p-hero__inner::before {
    background: radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.9) 0 30%, rgba(255, 255, 255, 0.62) 55%, transparent 78%), radial-gradient(circle at 74% 30%, rgba(255, 255, 255, 0.34) 0 12%, transparent 34%);
  }
}

.p-hero__company-logo {
  position: relative;
  z-index: 4;
  display: block;
  width: 284px;
  margin-inline: auto;
}

@media not all and (min-width: 48em) {
  .p-hero__company-logo {
    width: 216px;
  }
}

.p-hero__visuals,
.p-hero__ornaments {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.p-hero__photo {
  position: absolute;
  display: block;
  max-width: none;
}

.p-hero__photo img {
  display: block;
  width: 100%;
}

.p-hero__photo--01 {
  top: 15%;
  left: 9.5%;
  width: 16.6%;
}

@media not all and (min-width: 48em) {
  .p-hero__photo--01 {
    top: 10.5%;
    left: -4%;
    width: 25.5%;
    max-width: 118px;
  }
}

.p-hero__photo--02 {
  top: 43.1%;
  left: -1.1%;
  width: 11.6%;
}

@media not all and (min-width: 48em) {
  .p-hero__photo--02 {
    top: 42%;
    left: -1.3%;
    width: 15.1%;
    max-width: 100px;
  }
}

.p-hero__photo--03 {
  top: 58.4%;
  left: 18.8%;
  width: 13.3%;
}

@media not all and (min-width: 48em) {
  .p-hero__photo--03 {
    top: 63.7%;
    left: -4%;
    width: 23%;
    max-width: 118px;
  }
}

.p-hero__photo--04 {
  top: 85.9%;
  left: 9.8%;
  width: 7.9%;
}

@media not all and (min-width: 48em) {
  .p-hero__photo--04 {
    top: 80.5%;
    left: 25.7%;
    width: 14.5%;
    max-width: 108px;
  }
}

.p-hero__photo--05 {
  top: 6.1%;
  right: 16.9%;
  width: 9.5%;
}

@media not all and (min-width: 48em) {
  .p-hero__photo--05 {
    top: 14.1%;
    right: 8%;
    width: 16.5%;
    max-width: 118px;
  }
}

.p-hero__photo--06 {
  top: 28.9%;
  right: 24.4%;
  width: 4.4%;
}

@media not all and (min-width: 48em) {
  .p-hero__photo--06 {
    display: none;
  }
}

.p-hero__photo--07 {
  top: 25.1%;
  right: -1.8%;
  width: 15.4%;
}

@media not all and (min-width: 48em) {
  .p-hero__photo--07 {
    top: 32.6%;
    right: -3.5%;
    width: 20%;
    max-width: 108px;
  }
}

.p-hero__photo--08 {
  top: 53.4%;
  right: 8.4%;
  width: 17.1%;
}

@media not all and (min-width: 48em) {
  .p-hero__photo--08 {
    top: 63%;
    right: -4%;
    width: 23%;
    max-width: 118px;
  }
}

.p-hero__photo--09 {
  top: 83%;
  right: 24.3%;
  width: 4.3%;
}

@media not all and (min-width: 48em) {
  .p-hero__photo--09 {
    top: auto;
    bottom: 1%;
    right: 21.8%;
    width: 12%;
    max-width: 118px;
  }
}

.p-hero__main {
  position: absolute;
  top: 335px;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(490px, 50vw, 700px);
  transform: translateX(-50%);
}

@media not all and (min-width: 48em) {
  .p-hero__main {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin-top: 88px;
    transform: none;
  }
}

.p-hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-hero__anniversary-logo {
  width: 79%;
}

@media not all and (min-width: 48em) {
  .p-hero__anniversary-logo {
    width: 51%;
  }
}

.p-hero__anniversary-copy {
  width: 100%;
  margin-top: 6.5%;
  margin-left: clamp(0px, (100vw - 980px) * 0.0667, 4%);
}

@media not all and (min-width: 48em) {
  .p-hero__anniversary-copy {
    width: 49%;
    margin-top: 5%;
    margin-left: 4%;
  }
}

.p-hero__description {
  color: #282828;
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-top: 26px;
}

@media not all and (min-width: 48em) {
  .p-hero__description {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 4%;
  }
}

.p-hero__dot {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0.62;
}

.p-hero__dot--red-large {
  top: 71.5%;
  right: 34.3%;
  width: 1.5%;
  aspect-ratio: 23.93/30.77;
  background-color: #ec3e50;
  transform: rotate(34deg);
}

@media not all and (min-width: 48em) {
  .p-hero__dot--red-large {
    top: 5.4%;
    left: 4.6%;
    width: 1.9%;
    transform: rotate(-22deg);
  }
}

.p-hero__dot--red-small {
  top: 37%;
  left: 29.6%;
  width: 0.75%;
  aspect-ratio: 1;
  background-color: #f46862;
}

@media not all and (min-width: 48em) {
  .p-hero__dot--red-small {
    top: 31.4%;
    left: 45%;
    width: 1.3%;
  }
}

.p-hero__dot--yellow {
  top: 16.7%;
  left: 27.7%;
  width: 1.55%;
  aspect-ratio: 24.77/31.85;
  background-color: #eeb75f;
  transform: rotate(34deg);
}

@media not all and (min-width: 48em) {
  .p-hero__dot--yellow {
    top: 50.7%;
    right: 7.8%;
    left: auto;
    width: 3.5%;
    aspect-ratio: 24.77/31.85;
  }
}

.p-hero__dot--green {
  top: 22.1%;
  left: 1.3%;
  width: 1.5%;
  aspect-ratio: 1;
  background-color: #7ebd6a;
  opacity: 0.7;
}

@media not all and (min-width: 48em) {
  .p-hero__dot--green {
    top: 33.2%;
    left: 3.3%;
    width: 2.5%;
  }
}

.p-hero__dot--blue {
  top: 17.7%;
  right: 9.6%;
  width: 1.15%;
  aspect-ratio: 18.32/30.14;
  background-color: #9fd0f7;
  transform: rotate(101deg);
}

@media not all and (min-width: 48em) {
  .p-hero__dot--blue {
    top: 28.5%;
    right: 16%;
    width: 1.55%;
  }
}

.p-hero__dot--pink {
  top: 12.4%;
  left: 5.9%;
  width: 1.2%;
  aspect-ratio: 19.37/26.29;
  background-color: #f46862;
  opacity: 0.7;
  transform: rotate(-22deg);
}

@media not all and (min-width: 48em) {
  .p-hero__dot--pink {
    top: 32.5%;
    left: 22%;
    width: 1%;
  }
}

.p-hero__dot--blue-left {
  top: 44%;
  left: 15.4%;
  width: 1.6%;
  aspect-ratio: 25.73/45;
  background-color: #52a8f2;
  filter: blur(2px);
  opacity: 0.7;
  transform: rotate(-38deg);
}

@media not all and (min-width: 48em) {
  .p-hero__dot--blue-left {
    top: 41.5%;
    left: 13.7%;
    width: 3%;
    transform: rotate(-48deg);
  }
}

.p-hero__dot--gray {
  top: 17.8%;
  right: 34.9%;
  width: 1.6%;
  aspect-ratio: 1;
  background-color: #b3cde4;
  filter: blur(2px);
  opacity: 0.7;
}

.p-hero__dot--blue-vertical {
  top: 31.9%;
  right: 20.5%;
  width: 0.7%;
  aspect-ratio: 11.18/23.66;
  background-color: #b3cde4;
  transform: rotate(-32deg);
}

@media not all and (min-width: 48em) {
  .p-hero__dot--blue-vertical {
    top: 47.5%;
    right: 15.5%;
    width: 1.5%;
    background-color: #9fd0f7;
    opacity: 0.7;
    transform: rotate(-80deg);
  }
}

.p-hero__dot--blue-small {
  top: 49%;
  right: 22.7%;
  width: 1%;
  aspect-ratio: 16.44/8.1;
  background-color: #76bbf4;
  opacity: 0.7;
  transform: rotate(-8deg);
}

.p-hero__dot--yellow-right {
  top: 52.9%;
  right: 3.3%;
  width: 1.8%;
  aspect-ratio: 28.28/63.88;
  background-color: #eca93e;
  filter: blur(2px);
  transform: rotate(45deg);
}

@media not all and (min-width: 48em) {
  .p-hero__dot--yellow-right {
    top: 51.5%;
    right: 8.3%;
    width: 2.8%;
  }
}

.p-hero__dot--green-right {
  top: 75.9%;
  right: 5.7%;
  width: 2.1%;
  aspect-ratio: 33.99/43.71;
  background-color: #8bce5b;
  filter: blur(2px);
  transform: rotate(38deg);
}

@media not all and (min-width: 48em) {
  .p-hero__dot--green-right {
    top: 77.9%;
    right: 27.7%;
    width: 2.1%;
    background-color: #eca93e;
    opacity: 0.7;
  }
}

.p-hero__dot--yellow-bottom {
  top: 79.1%;
  left: 7.6%;
  width: 0.9%;
  aspect-ratio: 14.04/24.56;
  background-color: #eca93e;
  filter: blur(2px);
  opacity: 0.7;
  transform: rotate(-100deg);
}

@media not all and (min-width: 48em) {

  .p-hero__dot--yellow,
  .p-hero__dot--gray,
  .p-hero__dot--blue-small,
  .p-hero__dot--yellow-bottom {
    display: none;
  }
}

.p-hero__scroll {
  position: absolute;
  left: 50%;
  z-index: 3;
  bottom: 255px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 58px;
  transform: translateX(-50%);
}

@media not all and (min-width: 48em) {
  .p-hero__scroll {
    bottom: 70px;
  }
}

.p-hero__scroll::after {
  display: block;
  width: 1px;
  height: 50px;
  margin-top: 13px;
  background-color: #98b3ca;
  content: "";
  animation: scroll 2s infinite;
}

@media not all and (min-width: 48em) {
  .p-hero__scroll::after {
    height: 30px;
    margin-top: 6px;
  }
}

.p-hero__scroll-text {
  width: 58px;
}

@media not all and (min-width: 48em) {
  .p-hero__scroll-text {
    width: 49px;
  }
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.p-message {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.p-message::before,
.p-message::after {
  position: absolute;
  z-index: 0;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}

.p-message::before {
  inset: 0;
  background-image: url("../images/pages/index/message_curve.svg");
  background-position: center 15%;
  background-size: 100% auto;
}

@media not all and (min-width: 48em) {
  .p-message::before {
    background-image: url("../images/pages/index/message_curve_sp.svg");
    background-position: center top 2.7%;
    background-size: 100%;
  }
}

.p-message.is-bg-before-reveal-ready::before {
  clip-path: inset(0 100% 0 0);
}

.p-message.is-bg-after-reveal-ready::after {
  clip-path: inset(0 0 0 100%);
}

.p-message.is-bg-before-reveal-ready.is-bg-before-revealed:not(.is-bg-before-mask-releasing)::before {
  animation: message-bg-reveal 3s cubic-bezier(0.215, 0.61, 0.355, 1) both, message-bg-leading-mask 3s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

.p-message.is-bg-before-reveal-ready.is-bg-before-revealed:not(.is-bg-before-reveal-done)::before {
  mask-image: linear-gradient(90deg, #000 0 calc(100% - 120px), transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 0% 100%;
  -webkit-mask-image: linear-gradient(90deg, #000 0 calc(100% - 120px), transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 0% 100%;
}

.p-message.is-bg-before-reveal-ready.is-bg-before-revealed.is-bg-before-reveal-done::before {
  clip-path: inset(0);
}

.p-message.is-bg-before-mask-releasing:not(.is-bg-before-reveal-done)::before {
  clip-path: inset(0);
  animation: message-bg-mask-release 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.p-message.is-bg-after-reveal-ready.is-bg-after-revealed:not(.is-bg-after-mask-releasing)::after {
  animation: message-bg-reveal-reverse 3s cubic-bezier(0.215, 0.61, 0.355, 1) both, message-bg-after-leading-mask 3s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

.p-message.is-bg-after-reveal-ready.is-bg-after-revealed:not(.is-bg-after-reveal-done)::after {
  mask-image: linear-gradient(90deg, transparent 0, #000 120px, #000 100%);
  mask-position: right center;
  mask-repeat: no-repeat;
  mask-size: 0% 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 120px, #000 100%);
  -webkit-mask-position: right center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 0% 100%;
}

.p-message.is-bg-after-mask-releasing:not(.is-bg-after-reveal-done)::after {
  clip-path: inset(0);
  animation: message-bg-after-mask-release 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.p-message.is-bg-after-reveal-ready.is-bg-after-revealed.is-bg-after-reveal-done::after {
  clip-path: inset(0);
}

@keyframes message-bg-reveal {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0);
  }
}

@keyframes message-bg-leading-mask {
  from {
    mask-size: 0% 100%;
    -webkit-mask-size: 0% 100%;
  }

  to {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }
}

@keyframes message-bg-mask-release {
  from {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }

  to {
    mask-size: calc(100% + 120px) 100%;
    -webkit-mask-size: calc(100% + 120px) 100%;
  }
}

@keyframes message-bg-reveal-reverse {
  from {
    clip-path: inset(0 0 0 100%);
  }

  to {
    clip-path: inset(0);
  }
}

@keyframes message-bg-after-leading-mask {
  from {
    mask-size: 0% 100%;
    -webkit-mask-size: 0% 100%;
  }

  to {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }
}

@keyframes message-bg-after-mask-release {
  from {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }

  to {
    mask-size: calc(100% + 120px) 100%;
    -webkit-mask-size: calc(100% + 120px) 100%;
  }
}

.p-message::after {
  inset: 0;
  background-image: url("../images/pages/index/slider_curve.svg");
  background-position: center bottom -13px;
  background-size: 100% auto;
}

@media not all and (min-width: 48em) {
  .p-message::after {
    background-image: url("../images/pages/index/slider_curve_sp.svg");
    background-position: center bottom -13px;
    background-size: 100%;
  }
}

.p-message__intro {
  position: relative;
  z-index: 1;
}

.p-message__intro-inner {
  padding-bottom: 120px;
}

@media not all and (min-width: 48em) {
  .p-message__intro-inner {
    padding: 35px 0 33px;
  }
}

.p-message__intro-ornaments {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: 1600px;
  margin-inline: auto;
  pointer-events: none;
}

@media not all and (min-width: 48em) {
  .p-message__intro-ornaments {
    max-width: none;
  }
}

.p-message__intro-dot {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.p-message__intro-dot--red {
  top: 3.9%;
  left: 9.5%;
  width: 2.2%;
  aspect-ratio: 35.4/19.67;
  background-color: #d30d29;
  opacity: 0.7;
  transform: rotate(18deg);
}

@media not all and (min-width: 48em) {
  .p-message__intro-dot--red {
    top: 3.5%;
    left: 6.2%;
    width: 2.3%;
    transform: rotate(-36deg);
  }
}

.p-message__intro-dot--pink {
  top: 9.5%;
  left: 17.4%;
  width: 0.75%;
  aspect-ratio: 12/8;
  background-color: #f46862;
  opacity: 0.7;
  transform: rotate(-30deg);
}

@media not all and (min-width: 48em) {
  .p-message__intro-dot--pink {
    display: none;
  }
}

.p-message__intro-dot--yellow {
  top: 12.1%;
  left: 33.7%;
  width: 0.84%;
  aspect-ratio: 13.4/23.43;
  background-color: #fcc66f;
  opacity: 0.7;
  transform: rotate(73deg);
}

@media not all and (min-width: 48em) {
  .p-message__intro-dot--yellow {
    top: 9%;
    left: 33.3%;
    width: 1.9%;
  }
}

.p-message__intro-dot--blue {
  top: 67%;
  right: 14%;
  width: 1.7%;
  aspect-ratio: 27.65/48.37;
  background-color: #52a8f2;
  filter: blur(5px);
  opacity: 0.7;
  transform: rotate(100deg);
}

@media not all and (min-width: 48em) {
  .p-message__intro-dot--blue {
    top: 53%;
    right: 12%;
    width: 2%;
    opacity: 1;
  }
}

.p-message__intro-card {
  position: relative;
  z-index: 1;
  width: 73%;
  max-width: 1160px;
  border: solid 30px #e4f1ff;
  border-radius: 73px;
  background-color: #fff;
  padding: 4.4% 5.3% 4.5% 5.6%;
  margin: auto;
}

@media not all and (min-width: 48em) {
  .p-message__intro-card {
    width: 89%;
    border-width: 14px;
    border-radius: 30px;
    padding: 48px 6% 40px;
  }
}

.p-message__intro-head {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

@media not all and (min-width: 48em) {
  .p-message__intro-head {
    flex-direction: column;
    align-items: flex-start;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}

.p-message__intro-subheading {
  width: 71px;
}

@media not all and (min-width: 48em) {
  .p-message__intro-subheading {
    width: 63px;
  }
}

.p-message__intro-title {
  margin-top: 8%;
}

@media not all and (min-width: 48em) {
  .p-message__intro-title {
    margin-top: 12px;
  }
}

.p-message__intro-title-image {
  max-width: 421px;
}

@media not all and (min-width: 48em) {
  .p-message__intro-title-image {
    width: 250px;
    max-width: 100%;
  }
}

.p-message__intro-label {
  width: 33%;
  max-width: 303px;
  margin-right: 16px;
  margin-left: auto;
}

@media not all and (min-width: 48em) {
  .p-message__intro-label {
    width: 162px;
    max-width: 60%;
    margin: 27px auto 0;
  }
}

.p-message__intro-text {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 5.6%;
}

@media not all and (min-width: 48em) {
  .p-message__intro-text {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.018em;
    margin-top: 30px;
  }
}

.p-message__president {
  position: relative;
  z-index: 1;
  margin-top: 59px;
}

@media not all and (min-width: 48em) {
  .p-message__president {
    margin-top: 0;
    padding-top: 53px;
  }
}

.p-message__president::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  width: max(125vw, 2000px);
  height: 280px;
  background-image: radial-gradient(ellipse 50% 100% at 50% 0, transparent calc(100% - 1px), #e4f1ff 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

@media not all and (min-width: 48em) {
  .p-message__president::after {
    width: max(125vw, 1300px);
  }
}

.p-message__president-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 320px;
}

@media not all and (min-width: 48em) {
  .p-message__president-inner {
    padding-bottom: 118px;
  }
}

.p-message__president-content {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 4.5%;
  column-gap: 4.5%;
  width: 73%;
  max-width: 1160px;
  margin: auto;
}

@media not all and (min-width: 48em) {
  .p-message__president-content {
    flex-direction: column;
    align-items: stretch;
    width: 88.3%;
  }
}

.p-message__president-body {
  margin-top: 14px;
  max-width: 49%;
}

@media not all and (min-width: 48em) {
  .p-message__president-body {
    order: 1;
    max-width: none;
    margin-top: 0;
  }
}

.p-message__president-heading {
  text-align: left;
}

.p-message__president-image {
  max-width: 48%;
}

@media not all and (min-width: 48em) {
  .p-message__president-image {
    order: 2;
    width: 81%;
    max-width: 270px;
    margin: 27px auto 0;
  }
}

.p-message__president-subheading {
  width: 108px;
}

@media not all and (min-width: 48em) {
  .p-message__president-subheading {
    width: 101px;
    margin: auto;
  }
}

.p-message__president-title-image {
  margin-top: 16px;
}

@media not all and (min-width: 48em) {
  .p-message__president-title-image {
    width: 235px;
    margin: 20px auto 0;
  }
}

.p-message__president-texts {
  margin-top: 29px;
}

@media not all and (min-width: 48em) {
  .p-message__president-texts {
    margin-top: 27px;
  }
}

.p-message__president-text {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 19px;
}

@media not all and (min-width: 48em) {
  .p-message__president-text {
    font-size: 14px;
    margin-top: 13px;
  }
}

.p-message__president-text:first-child {
  margin-top: 0;
}

.p-message__president-text--emphasis {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 13px;
  column-gap: 13px;
  flex-wrap: wrap;
  font-weight: 500;
  margin-top: 23px;
}

@media not all and (min-width: 48em) {
  .p-message__president-text--emphasis {
    display: block;
    margin-top: 20px;
  }
}

.p-message__president-name {
  font-size: 23px;
}

@media not all and (min-width: 48em) {
  .p-message__president-name {
    display: block;
    font-size: 19px;
    margin-top: -2px;
  }
}

.p-message__gallery {
  position: relative;
  margin-top: 142px;
  overflow-x: clip;
  overflow-y: visible;
}

@media not all and (min-width: 48em) {
  .p-message__gallery {
    margin-top: 75px;
  }
}

.p-message__gallery .splide__track {
  overflow: visible;
}

.p-message__gallery .splide__list {
  overflow: visible;
}

.p-message__gallery .splide__list>.splide__slide:has(.splide__slide--with-copy) {
  position: relative;
}

.p-message__gallery .splide__list>.splide__slide:has(.splide__slide--with-copy)::before {
  position: absolute;
  left: 41px;
  bottom: 102px;
  z-index: 2;
  width: min(72%, 129px);
  aspect-ratio: 129/262;
  background-image: url("../images/pages/index/slider_photo-before.png");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  pointer-events: none;
}

@media not all and (min-width: 48em) {
  .p-message__gallery .splide__list>.splide__slide:has(.splide__slide--with-copy)::before {
    left: 29px;
    bottom: 70px;
    width: 84px;
  }
}

.p-message__gallery .splide__list>.splide__slide:has(.splide__slide--with-copy)::after {
  position: absolute;
  left: -174px;
  bottom: -75px;
  z-index: 2;
  width: min(72%, 441px);
  aspect-ratio: 441/145;
  background-image: url("../images/pages/index/slider_photo-after.png");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  pointer-events: none;
}

@media not all and (min-width: 48em) {
  .p-message__gallery .splide__list>.splide__slide:has(.splide__slide--with-copy)::after {
    left: -89px;
    bottom: -33px;
    width: 233px;
  }
}

.p-message__gallery .splide__slide--col {
  overflow: hidden;
  border-radius: 10px;
}

.p-message__gallery .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-closing {
  position: relative;
  background-color: #e4f1ff;
}

.p-closing::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/pages/index/closing_curve.svg");
  background-position: center calc(100% - 68px);
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  pointer-events: none;
}

@media not all and (min-width: 48em) {
  .p-closing::before {
    background-image: url("../images/pages/index/closing_curve_sp.svg");
    background-position: center top -50px;
    background-size: 100%;
  }
}

.p-closing.is-bg-reveal-ready::before {
  clip-path: inset(0 100% 0 0);
}

.p-closing.is-bg-reveal-ready.is-bg-revealed:not(.is-bg-mask-releasing)::before {
  animation: closing-bg-reveal 3s cubic-bezier(0.215, 0.61, 0.355, 1) both, closing-bg-leading-mask 3s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

.p-closing.is-bg-reveal-ready.is-bg-revealed:not(.is-bg-reveal-done)::before {
  mask-image: linear-gradient(90deg, #000 0 calc(100% - 120px), transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 0% 100%;
  -webkit-mask-image: linear-gradient(90deg, #000 0 calc(100% - 120px), transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 0% 100%;
}

.p-closing.is-bg-mask-releasing:not(.is-bg-reveal-done)::before {
  clip-path: inset(0);
  animation: closing-bg-mask-release 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.p-closing.is-bg-reveal-ready.is-bg-revealed.is-bg-reveal-done::before {
  clip-path: inset(0);
}

@media (prefers-reduced-motion: reduce) {
  .p-closing.is-bg-reveal-ready::before {
    clip-path: inset(0);
  }

  .p-closing.is-bg-reveal-ready.is-bg-revealed::before {
    animation: none;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@keyframes closing-bg-reveal {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0);
  }
}

@keyframes closing-bg-leading-mask {
  from {
    mask-size: 0% 100%;
    -webkit-mask-size: 0% 100%;
  }

  to {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }
}

@keyframes closing-bg-mask-release {
  from {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }

  to {
    mask-size: calc(100% + 120px) 100%;
    -webkit-mask-size: calc(100% + 120px) 100%;
  }
}

.p-closing__page-top {
  position: absolute;
  top: -40px;
  left: 50%;
  z-index: 6;
  display: block;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  border: solid 3px #e4f1ff;
  transform: translateX(-50%);
  transition: opacity 0.5s ease;
}

@media not all and (min-width: 48em) {
  .p-closing__page-top {
    top: -32px;
    width: 60px;
    height: 60px;
    border-width: 2px;
  }
}

@media (hover: hover) {
  .p-closing__page-top:hover {
    opacity: 0.7;
  }
}

.p-closing__page-top::before,
.p-closing__page-top::after {
  position: absolute;
  left: 50%;
  background-color: #c81d3b;
  content: "";
}

.p-closing__page-top::before {
  top: 25px;
  width: 2px;
  height: 24px;
  transform: translateX(-50%);
}

@media not all and (min-width: 48em) {
  .p-closing__page-top::before {
    top: 22px;
    width: 2px;
    height: 16px;
  }
}

.p-closing__page-top::after {
  top: 27px;
  width: 17px;
  height: 17px;
  border-top: 2px solid #c81d3b;
  border-left: 2px solid #c81d3b;
  background-color: transparent;
  transform: translateX(-50%) rotate(45deg);
}

@media not all and (min-width: 48em) {
  .p-closing__page-top::after {
    top: 22px;
    width: 15px;
    height: 15px;
  }
}

.p-closing__content {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
  padding: 187px 0 30px;
  margin: auto;
  text-align: center;
  overflow-x: hidden;
}

@media not all and (min-width: 48em) {
  .p-closing__content {
    padding: 89px 0 63px;
  }
}

.p-closing__content::before {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 106%;
  height: 118px;
  background-image: url("../images/pages/index/closing_text.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

@media not all and (min-width: 48em) {
  .p-closing__content::before {
    width: 255%;
    left: 64%;
    height: 133px;
    background-image: url("../images/pages/index/closing_text_sp.png");
  }
}

.p-closing__logo {
  position: relative;
  z-index: 1;
  width: 185px;
}

@media not all and (min-width: 48em) {
  .p-closing__logo {
    width: 136px;
  }
}

.p-closing__copy {
  position: relative;
  z-index: 1;
  width: 500px;
  margin-top: 77px;
}

@media not all and (min-width: 48em) {
  .p-closing__copy {
    width: 180px;
    margin-top: 54px;
    margin-left: 12px;
  }
}

.p-closing__image {
  width: 100%;
  margin-top: -5px;
  pointer-events: none;
}