.body-introduction {
  background-color: #2b2b2b;
  box-sizing: border-box;
}

.body-introduction * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body-introduction ul,
.body-introduction li {
  list-style: none;
}

.body-introduction img {
  display: block;
  line-height: 1;
}

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

@media (min-width: 768px) {
  .u-spOnly {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-pcOnly {
    display: none !important;
  }
}

/*
   * タイピング対象の1文字ずつを包むspan。
   * 最初から全文字をこの状態でDOMに置いておくことで、
   * 折り返し位置は最初から最終形と同じまま変わらない。
   * (visibility: hidden は「表示しない」だけでレイアウト上の幅は確保される)
   */
.js-typewriter .ty-c {
  visibility: hidden;
}
.js-typewriter .ty-c.ty-visible {
  visibility: visible;
}

/*
   * タイピング中のカーソル。
   * 文中に実体として挿入すると、その数pxぶんが行末ギリギリの位置で
   * 折り返し判定に影響してしまうことがあるため、
   * position: absolute でテキストの流れから完全に外して重ねる。
   */
.js-typewriter {
  position: relative;
}
.ty-cursor {
  position: absolute;
  width: 2px;
  background: currentColor;
  pointer-events: none;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

.p-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

@media (min-width: 768px) {
  .p-header {
    background-color: rgba(43, 43, 43, 0.6);
    backdrop-filter: blur(10px);
  }

  .p-header__logo {
    position: relative;
  }

  .p-header__logo .u-pcOnly {
    opacity: 0;
    position: absolute;
    inset: 0;
  }
}

.p-header__logo {
  display: block;
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .p-header__logo {
    transition: opacity 0.3s;
  }

  .p-header__logo:hover {
    opacity: 0.8;
  }
}

@media (max-width: 767px) {
  .p-header__logo {
    width: 120px;
  }
}

@media (min-width: 768px) {
  .p-header__logo {
    width: 158px;
  }
}

.p-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .p-header__wrap {
    padding: 12.5px 16px;
    background-color: #fffbf4;
  }
}

@media (min-width: 768px) {
  .p-header__wrap {
    padding: 14px 32px;
  }
}

@media (min-width: 768px) {
  .p-header__nav {
    display: flex;
    align-items: center;
    gap: 42px;
  }
}

.p-header__lang {
  position: relative;
}

.p-header__langSwitch {
  display: flex !important;
  align-items: center;
  gap: 4px;
  border: none !important;
  padding: 0 !important;
}

.p-header__langSwitch:link,
.p-header__langSwitch:hover,
.p-header__langSwitch:focus,
.p-header__langSwitch:visited,
.p-header__langSwitch:active {
  background-color: transparent !important;
}

.p-header__langSwitch > *,
.p-header__langSwitch img {
  display: block;
  line-height: 1;
}

.p-header__langSwitch .text {
  font-weight: bold;
}

@media (max-width: 767px) {
  .p-header__langSwitch .icon-globe {
    width: 10px;
  }

  .p-header__langSwitch .icon-flag {
    width: 16px;
  }

  .p-header__langSwitch .text {
    font-size: 10px;
    color: #2b2b2b;
  }

  .p-header__langSwitch .icon-chevron {
    width: 14px;
  }
}

@media (min-width: 768px) {
  .p-header__langSwitch .icon-globe {
    position: relative;
    width: 15px;
  }

  .p-header__langSwitch .icon-globe .u-pcOnly {
    opacity: 0;
    position: absolute;
    inset: 0;
  }

  .p-header__langSwitch .icon-flag {
    width: 18px;
  }

  .p-header__langSwitch .text {
    font-size: 14px;
    color: white;
  }

  .p-header__langSwitch .icon-chevron {
    position: relative;
    width: 14px;
  }

  .p-header__langSwitch .icon-chevron .u-pcOnly {
    opacity: 0;
    position: absolute;
    inset: 0;
  }
}

.p-header__langList {
  position: absolute;
  top: calc(100% + 8px);
  background-color: rgba(43, 43, 43, 0.8);
  border-radius: 8px;
  display: none;
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    display 0.16s ease allow-discrete;
}

.p-header__langList.is-open {
  display: block;
  opacity: 1;
  transform: scale(1);
}

@starting-style {
  .p-header__langList.is-open {
    opacity: 0;
    transform: scale(0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-header__langList {
    transition: none;
  }
}

.p-header__langList li {
  line-height: 1.8;
}

.p-header__langList li:not(:last-child) {
  margin-bottom: 4px;
}

.p-header__langList a {
  display: flex;
  align-items: center;
  color: white;
  font-weight: bold;
  white-space: nowrap;
}

.p-header__langList a span,
.p-header__langList a span img {
  display: block;
}

.p-header__langList a.is-current {
  color: #f7c914;
}

@media (hover: hover) and (pointer: fine) {
  .p-header__langList a {
    transition: color 0.3s;
  }

  .p-header__langList a:hover {
    color: #f7c914;
  }
}

.p-header__langList a .icon-flag {
  flex-shrink: 0;
  width: 16px;
}

@media (max-width: 767px) {
  .p-header__langList {
    right: 0;
    padding: 10px 14px;
    font-size: 10px;
  }

  .p-header__langList a .icon-flag {
    margin-right: 4px;
  }
}

@media (min-width: 768px) {
  .p-header__langList {
    left: 0;
    padding: 12px 16px;
    background-color: rgba(49, 54, 56, 0.9);
    font-size: 14px;
  }

  .p-header__langList a .icon-flag {
    margin-right: 6px;
  }
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .p-header {
    transition: background-color 0.2s;
  }

  .p-header:hover {
    background-color: #fffbf4;
  }

  .p-header:hover .p-header__logo .u-pcOnly,
  .p-header:hover .p-header__langSwitch .icon-globe .u-pcOnly,
  .p-header:hover .p-header__langSwitch .icon-chevron .u-pcOnly {
    opacity: 1;
  }

  .p-header:hover .p-header__langSwitch .text {
    color: #2b2b2b;
  }
}

.c-searchBtn {
  position: relative;
  display: block;
  width: fit-content;
  text-transform: uppercase;
}

.c-searchBtn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 100%;
  transform: skewY(-15deg);
  transform-origin: top right;
  background-color: #9c2b34;
  z-index: 0;
}

.c-searchBtn > span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  min-height: 48px;
  padding: 2px 12px 4px;
  background-color: #e63946;
  color: white;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  z-index: 1;
}

@media (max-width: 767px) {
  .c-searchBtn {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .c-searchBtn {
    width: fit-content;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-searchBtn > span,
  .c-searchBtn::before {
    transition: background-color 0.2s;
  }

  .c-searchBtn:hover > span {
    color: white;
    background-color: #1b8c90;
  }

  .c-searchBtn:hover::before {
    background-color: #146e71;
  }
}

.p-main {
  position: relative;
  width: 100%;
  height: 100svh;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.p-search {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 12px 24px;
  background-color: rgba(43, 43, 43, 0.6);
  z-index: 100;
}

.p-footer {
  position: relative;
  width: 100%;
  scroll-snap-align: start;
}

.p-footer__main {
  background-color: #5b5b5b;
}

@media (max-width: 767px) {
  .p-footer {
    padding-bottom: 72px;
  }

  .p-footer__main {
    padding: 34px 24px;
  }
}

@media (min-width: 768px) {
  .p-footer__main {
    padding: 24px 32px;
  }

  .p-footer__mainInner {
    max-width: 980px;
    margin: 0 auto;
  }
}

.p-footer__upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-footer__logo {
  display: block;
  width: 150px;
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .p-footer__logo {
    transition: opacity 0.3s;
  }

  .p-footer__logo:hover {
    opacity: 0.8;
  }
}

.p-footer__social {
  display: flex;
  gap: 10px;
}

.p-footer__social li {
  width: 24px;
}

@media (hover: hover) and (pointer: fine) {
  .p-footer__social li a {
    transition: opacity 0.3s;
  }

  .p-footer__social li a:hover {
    opacity: 0.8;
  }
}

.p-footer__lower {
  margin-top: 18px;
}

.p-footer__flags {
  display: flex;
  gap: 10px;
}

.p-footer__flags li {
  width: 32px;
}

.p-footer__copyright {
  display: block;
  padding: 8px;
  color: white;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .p-footer__copyright {
    font-size: 10px;
  }
}

.p-section {
  position: relative;
  width: 100%;
  scroll-snap-align: start;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.p-section strong {
  color: #f7c914;
}

.p-section__sp,
.p-section__pc {
  position: relative;
}

.p-section__sp .textImg,
.p-section__pc .textImg {
  position: absolute;
  inset: 0;
}

.p-section__content p:not(:last-child) {
  margin-bottom: 1em;
}

.p-section__window {
  display: none;
}

.p-section__text {
  text-shadow: 0 4px 0 #1b8c90;
}

@media (min-width: 1024px) {
  .p-section__window {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 270px;
    height: 277.5px;
    overflow: hidden;
  }

  .p-section__window .bg,
  .p-section__window .hero,
  .p-section__window .clouds {
    position: absolute;
    inset: 0;
  }

  .p-section__window .hero {
    transition: transform 0.5s ease-out;
    transform: translateY(20%);
  }

  .p-section:not(.is-outview, .is-inview) .p-section__window .hero {
    transform: translateY(20%);
  }

  .p-section:is(.is-inview):not(.is-outview) .p-section__window .hero {
    transform: translateY(0);
  }

  .p-section.is-inview.is-outview .p-section__window .hero {
    transform: translateY(20%);
  }
}

@media (max-width: 767px) {
  .p-section {
    padding: 72px 24px;
  }

  .p-section__content {
    max-width: 390px;
  }

  .p-section__text {
    font-size: 18px;
    line-height: 1.6;
  }
}

@media (min-width: 768px) {
  .p-section__content {
    position: relative;
    width: 100%;
    max-width: 2500px;
  }

  .p-section__text {
    font-size: 34px;
    line-height: 1.6;
  }
}

@media (min-width: 768px) and (max-height: 900px) {
  .p-section {
    padding: 76px 32px 32px;
  }
}

@media (min-width: 768px) and (min-height: 901px) {
  .p-section {
    padding: 76px 32px;
  }
}

.p-section--1 .p-section__sp {
  margin: -42px -28%;
}

.p-section--1 .p-section__pc {
  margin: -64px -7%;
}

.p-section--2 .p-section__sp {
  margin: 0 -13%;
}

.p-section--2 .p-section__pc {
  width: 40%;
  max-width: 573.5px;
}

.p-section--1 .textImg {
  transform: scale(0);
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.p-section--1.is-inview .textImg {
  transform: scale(1);
}

.p-section--1 .placeholder {
  display: block;
}

.p-section--1 .screen {
  position: absolute;
  inset: 0;
  background-color: rgba(43, 43, 43, 0.74);
  opacity: 0;
}

.p-section .layer {
  opacity: 0;
}

.p-section .layer:not(.layer-1) {
  position: absolute;
  inset: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes go-up {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  80% {
    opacity: 1;
    transform: translateY(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(1);
  }
}

@keyframes hero-enter {
  0% {
    opacity: 0;
    transform: translate(300px, -500px) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes hero-enter-type2 {
  0% {
    opacity: 0;
    transform: translate(-100px, -100px) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes hero-enter-type3 {
  0% {
    opacity: 0;
    transform: translate(-300px, 500px) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes hero-enter-type4 {
  0% {
    opacity: 0;
    transform: translate(300px, 500px) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@media (max-width: 767px) {
  .p-section--1 .layer-1 {
    animation: go-up 0.2s 0.2s forwards;
  }

  .p-section--1.is-inview .layer-2 {
    animation: pop-in 0.4s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .p-section--1 .layer-3 {
    animation: go-up 0.2s 1.4s forwards;
  }

  .p-section--1.is-inview .layer-4 {
    animation: pop-in 0.4s 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .p-section--1 .layer-5 {
    animation: go-up 0.2s 2.6s forwards;
  }

  .p-section--1.is-inview .layer-6 {
    animation: pop-in 0.4s 2.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .p-section--1.is-inview .screen {
    animation: fade-in 1s 3.6s forwards;
  }

  .p-section--1.is-inview .layer-7 {
    animation: hero-enter 0.4s 4.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .p-section--1.is-inview .layer-8 {
    animation: pop-in 1.2s 4.8s cubic-bezier(0.34, 2, 0.64, 1) forwards;
  }
}

@media (min-width: 768px) {
  .p-section--1 .layer-1 {
    animation: go-up 0.2s 0.2s forwards;
  }

  .p-section--1.is-inview .layer-2 {
    animation: pop-in 0.4s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .p-section--1 .layer-3 {
    animation: go-up 0.2s 1.4s forwards;
  }

  .p-section--1.is-inview .layer-4 {
    animation: pop-in 0.4s 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .p-section--1 .layer-5 {
    animation: go-up 0.2s 2.6s forwards;
  }

  .p-section--1.is-inview .layer-6 {
    animation: pop-in 0.4s 2.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .p-section--1.is-inview .layer-7 {
    animation: fade-in 1.6s 3.2s forwards;
  }

  .p-section--1.is-inview .layer-8 {
    animation: hero-enter 0.4s 4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .p-section--1.is-inview .screen {
    animation: fade-in 1s 4.2s forwards;
  }

  .p-section--1.is-inview .layer-9 {
    animation: pop-in 1.2s 4.6s cubic-bezier(0.34, 2, 0.64, 1) forwards;
  }

  .p-section.p-section--1 .p-section__window {
    transition: opacity 0.3s;
    transition-delay: 3.3s;
  }

  .p-section.p-section--1.is-inview .p-section__window {
    opacity: 0;
  }

  .p-section.p-section--1 .p-section__window .hero {
    transform: translateY(0);
  }

  .p-section.p-section--1.is-inview .p-section__window .hero {
    transform: translateY(20%);
    transition-delay: 3s;
  }
}

.p-section--2 .p-section__pc,
.p-section--2 .p-section__sp {
  position: relative;
}

.p-section--2.is-inview .layer-1 {
  animation: fade-in 1s forwards;
}

.p-section--2.is-inview .layer-2 {
  animation: hero-enter-type2 0.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 767px) {
  .p-section--2 .p-section__content {
    margin-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .p-section--2 .p-section__content {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p-section--2 .p-section__text {
    width: 60%;
    max-width: 624px;
    padding-left: 24px;
  }
}

.p-section--3 .p-section__pc {
  max-width: 960px;
  margin: 0 auto;
}

.p-section--3 .p-section__sp {
  margin: 0 -3%;
}

@media (min-width: 768px) {
  .p-section--3 .p-section__text {
    width: fit-content;
    max-width: 810px;
    margin: 24px auto 0;
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .p-section--3 .p-section__text {
    margin-top: 24px;
  }
}

.p-section--4 .p-section__sp {
  margin: 0 -11%;
}

.p-section--4 .p-section__pc {
  margin: 0 -3%;
}

.p-section--4 .textImg {
  transform: scale(0.6);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.p-section--4.is-inview .textImg {
  transform: scale(1);
}

.p-section--4.is-inview .layer-1 {
  animation: fade-in 0.3s forwards;
}

.p-section--4.is-inview .layer-2 {
  animation: hero-enter-type4 0.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.p-section--4.is-inview .layer-3 {
  animation: pop-in 0.6s 0.5s cubic-bezier(0.34, 2, 0.64, 1) forwards;
}

@media (min-width: 768px) {
  .p-section--4 .p-section__content {
    max-width: 1200px;
  }
}

.p-section--5 .p-section__pc {
  max-width: 945px;
  margin: 0 auto;
}

.p-section--5 .p-section__sp {
  margin: 0 -4%;
}

@media (min-width: 768px) {
  .p-section--5 .p-section__text {
    width: fit-content;
    max-width: 810px;
    margin: 24px auto 0;
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .p-section--5 .p-section__text {
    margin-top: 24px;
  }
}

.p-section--6 .p-section__sp {
  margin: 0 -21%;
}

.p-section--6 .p-section__pc {
  margin: 0 -4%;
}

.p-section--6 .textImg {
  transform: scale(0.6);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.p-section--6.is-inview .textImg {
  transform: scale(1);
}

.p-section--6.is-inview .layer-1 {
  animation: fade-in 0.3s forwards;
}

.p-section--6.is-inview .layer-2 {
  animation: hero-enter-type3 0.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.p-section--6.is-inview .layer-3 {
  animation: pop-in 0.6s 0.5s cubic-bezier(0.34, 2, 0.64, 1) forwards;
}

@media (min-width: 768px) {
  .p-section--6 .p-section__content {
    max-width: 1200px;
  }
}

.p-section--7 .p-section__pc {
  max-width: 752.5px;
  margin: 0 auto;
}

.p-section--7 .p-section__sp {
  margin: 0 -4%;
}

@media (min-width: 768px) {
  .p-section--7 .p-section__text {
    width: fit-content;
    max-width: 810px;
    margin: 24px auto 0;
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .p-section--7 .p-section__text {
    margin-top: 24px;
  }
}

.p-section--8 .p-section__sp {
  margin: 0 -14%;
}

.p-section--8 .p-section__pc {
  margin: 0 -4%;
}

.p-section--8 .textImg {
  transform: scale(0.6);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.p-section--8.is-inview .textImg {
  transform: scale(1);
}

.p-section--8.is-inview .layer-1 {
  animation: fade-in 0.3s forwards;
}

.p-section--8.is-inview .layer-2 {
  animation: hero-enter-type4 0.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.p-section--8.is-inview .layer-3 {
  animation: pop-in 0.6s 0.5s cubic-bezier(0.34, 2, 0.64, 1) forwards;
}

@media (min-width: 768px) {
  .p-section--8 .p-section__content {
    max-width: 1112px;
  }
}

.p-section.p-section--9 {
  display: block;
  height: auto;
}

.p-section--9 .p-section__content {
  margin: 0 auto;
}

.p-section--9 .p-section__sp {
  position: relative;
  aspect-ratio: 402/930;
  margin: 0 -8%;
}

.p-section--9 .p-section__pc {
  position: relative;
  aspect-ratio: 1322/534;
  margin: 0 -5%;
}

.p-section--9 .layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.p-section--9.is-inview .layer {
  opacity: 1;
}

.p-section--9.is-inview .layer-group-1 {
  transition-delay: 0s;
}

.p-section--9.is-inview .layer-group-2 {
  transition-delay: 0.2s;
}

.p-section--9.is-inview .layer-group-3 {
  transition-delay: 0.4s;
}

.p-section--9 h3 span {
  margin: 0 auto;
}

.p-section--9 .p-section__btn {
  display: grid;
  transition: opacity 1s;
  opacity: 0;
  transition-delay: 1s;
}

.p-section--9.is-inview .p-section__btn {
  opacity: 1;
}

.p-section--9 .p-section__btn a {
  position: relative;
  display: block;
}

.p-section--9 .p-section__btn a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.p-section--9 .p-section__btn a.btn-blue::before {
  background-color: #f7c914;
}

.p-section--9 .p-section__btn a.btn-yellow::before {
  background-color: #e63946;
}

.p-section--9 .p-section__btn a span {
  position: relative;
  transition: all 0.3s;
}

.p-section--9 .p-section__btn a:active span {
  top: 4px;
  right: -4px;
}

@media (max-width: 767px) {
  .p-section--9 .p-section__content {
    width: 100%;
    padding: 72px 0;
  }

  .p-section--9 h3 {
    margin-bottom: 24px;
  }

  .p-section--9 h3 span.u-spOnly {
    display: block;
  }

  .p-section--9 .p-section__text {
    margin-top: 56px;
  }

  .p-section--9 .p-section__btn {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
    max-width: 338px;
    margin: 32px auto 0;
  }

  .p-section--9 .p-section__btn a {
    display: block;
  }

  .p-section--9 .p-section__btn a span.u-spOnly {
    display: block;
  }

  .p-section--9 .p-section__btn a::before {
    top: 5px;
    right: -4px;
  }
}

@media (min-width: 768px) {
  .p-section--9 .p-section__content {
    max-width: 1196px;
    padding: 100px 0;
  }

  .p-section--9 h3 {
    margin-bottom: 24px;
  }

  .p-section--9 h3 span.u-pcOnly {
    display: block;
  }

  .p-section--9 .p-section__text {
    margin-top: 64px;
    font-size: 26px;
    text-align: center;
  }

  .p-section--9 .p-section__btn {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    max-width: 810px;
    margin: 36px auto 0;
  }

  .p-section--9 .p-section__btn a span.u-pcOnly {
    position: relative;
    display: block;
  }

  .p-section--9 .p-section__btn a span.u-pcOnly > span {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.2s;
  }

  .p-section--9 .p-section__btn a::before {
    top: 10px;
    right: -6px;
  }
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .p-section--9 .p-section__btn a:hover span.u-pcOnly > span {
    opacity: 1;
  }
}
