@charset "UTF-8";
/*!
Theme Name: myproject-2024
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: myproject-2024
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

myproject-2024 is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/* fonts */
/* ==========================================================================
 #Foundation
========================================================================== */
/***
  Base CSS:
  The new CSS reset - version 1.8.4 (last updated 14.2.2023)
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

body {
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

a,
button {
  cursor: pointer;
}

ol,
ul,
menu {
  list-style: none;
}

video {
  -webkit-filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
          filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}

video:focus-visible {
  outline: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

img,
picture,
svg,
video,
iframe {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  border: none;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-webkit-input-placeholder {
  color: unset;
}

::-moz-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/* #Typography
----------------------------------------------------------------- */
body,
html {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7320644217vw;
}
@media screen and (min-width: 1366px) {
  body,
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px ) {
  body,
  html {
    font-size: 2.6666666667vw;
  }
}

b,
strong,
.bold {
  font-weight: 700;
}

/* #base
----------------------------------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
body.is-loaded {
  opacity: 1;
}
body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-align: left;
}

svg {
  width: 100%;
  height: auto;
}

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

a {
  display: block;
  text-decoration: none;
}

ul li {
  list-style: none;
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

/* ==========================================================================
 #Layout
========================================================================== */
/* #wrapper
----------------------------------------------------------------- */
.l-wrapper {
  width: 100dvw;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding-top: 12.8rem;
  background: #f2f1f1;
  color: #00004b;
}
@media screen and (max-width: 767px ) {
  .l-wrapper {
    padding-top: 8.5rem;
  }
}

/* #header
----------------------------------------------------------------- */
.l-header {
  width: 100dvw;
  height: auto;
  background: #f2f1f1;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.l-header.is-hide {
  -webkit-transform: translateY(-105%);
          transform: translateY(-105%);
}
.l-header__inner {
  width: 136rem;
  height: 12.8rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 2.8rem;
}
@media screen and (max-width: 767px ) {
  .l-header__inner {
    width: 37.5rem;
    height: 8.5rem;
  }
}
.l-header__logo {
  width: 23.3rem;
  height: auto;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.l-header__logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .l-header__logo {
    width: 12.7rem;
  }
}
.l-header__logo a {
  display: block;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.7rem;
     -moz-column-gap: 2.7rem;
          column-gap: 2.7rem;
}
.l-header__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10rem;
  height: 3rem;
  background: #ffffff;
  border: min(2px, 0.3rem) solid #f63c42;
  border-top-right-radius: min(6px, 0.6rem);
  -webkit-box-shadow: min(6px, 0.6rem) min(-6px, -0.6rem) 0 #f63c42;
          box-shadow: min(6px, 0.6rem) min(-6px, -0.6rem) 0 #f63c42;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  color: #00004b;
  text-transform: uppercase;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 800;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header__list a:hover {
  -webkit-box-shadow: 0 0 0 #f63c42;
          box-shadow: 0 0 0 #f63c42;
  -webkit-transform: translateY(min(-3px, -0.4rem));
          transform: translateY(min(-3px, -0.4rem));
}
.l-header__list a.inactive {
  opacity: 0.5;
  pointer-events: none;
}
.l-header__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.2rem;
     -moz-column-gap: 2.2rem;
          column-gap: 2.2rem;
  margin-left: 2.7rem;
}
.l-header__sns a {
  display: block;
  width: 2.7rem;
  height: auto;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.l-header__sns a:hover {
  opacity: 0.7;
}
.l-header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10rem;
  height: 3rem;
  background: #ffffff;
  border: min(2px, 0.3rem) solid #f63c42;
  border-top-right-radius: min(6px, 0.6rem);
  -webkit-box-shadow: min(6px, 0.6rem) min(-6px, -0.6rem) 0 #f63c42;
          box-shadow: min(6px, 0.6rem) min(-6px, -0.6rem) 0 #f63c42;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  color: #00004b;
  text-transform: uppercase;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 800;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header__button:hover {
  -webkit-box-shadow: 0 0 0 #f63c42;
          box-shadow: 0 0 0 #f63c42;
  -webkit-transform: translateY(min(-3px, -0.4rem));
          transform: translateY(min(-3px, -0.4rem));
}
.l-header__button {
  margin-left: 2rem;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
}
.l-header__button .line {
  width: 2.3rem;
  height: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header__button .line span {
  width: 100%;
  height: 0.2rem;
  background: #000000;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header__button .line span:first-of-type {
  -webkit-transform: translate(0, 0) rotate(0deg);
          transform: translate(0, 0) rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.l-header__button .line span:nth-of-type(2) {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-header__button .line span:last-of-type {
  -webkit-transform: translate(0, 0) rotate(0deg);
          transform: translate(0, 0) rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.l-header__button.is-open .line span:first-of-type {
  -webkit-transform: translate(0, calc((1.1rem - 2px) / 2)) rotate(30deg);
          transform: translate(0, calc((1.1rem - 2px) / 2)) rotate(30deg);
}
.l-header__button.is-open .line span:nth-of-type(2) {
  opacity: 0;
}
.l-header__button.is-open .line span:last-of-type {
  -webkit-transform: translate(0, calc((-1.1rem + 2px) / 2)) rotate(-30deg);
          transform: translate(0, calc((-1.1rem + 2px) / 2)) rotate(-30deg);
}

/* #footer
----------------------------------------------------------------- */
.l-footer__top {
  padding-block: 4.5rem 3.3rem;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .l-footer__top {
    padding-block: 5.7rem 2.5rem;
  }
}
.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px ) {
  .l-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2rem;
  }
}
.l-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.8rem;
}
@media screen and (max-width: 767px ) {
  .l-footer__list {
    row-gap: 2rem;
  }
}
.l-footer__list > li > a {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .l-footer__list > li > a {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
.l-footer__list:nth-of-type(2) {
  margin-top: 7.2rem;
}
@media screen and (max-width: 767px ) {
  .l-footer__list:nth-of-type(2) {
    margin-top: 0;
  }
}
.l-footer__list a {
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.l-footer__list a:hover {
  opacity: 0.7;
}
.l-footer__list a.inactive {
  opacity: 0.4;
  pointer-events: none;
}
.l-footer__subList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5rem;
  margin-top: 0.5rem;
}
.l-footer__subList a {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 767px ) {
  .l-footer__subList a {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
.l-footer__profile {
  margin-top: 3.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px ) {
  .l-footer__profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 1.8rem;
  }
}
.l-footer__logo {
  width: 11.2rem;
  height: auto;
}
@media screen and (max-width: 767px ) {
  .l-footer__logo {
    width: 15rem;
  }
}
.l-footer__info {
  margin-left: 3.8rem;
  padding-left: 3.8rem;
  border-left: 2px solid #000000;
}
@media screen and (max-width: 767px ) {
  .l-footer__info {
    margin-left: 0;
    padding-left: 0;
    border-left: 0px solid #000000;
    text-align: center;
  }
}
.l-footer__info h2 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .l-footer__info h2 {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5833333333;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-align: center;
  }
}
.l-footer__info address {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 1.3rem;
}
@media screen and (max-width: 767px ) {
  .l-footer__info address {
    margin-top: 0.8rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.1em;
    font-weight: 500;
    width: 85%;
    margin-inline: auto;
  }
}
.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  margin-top: 3.4rem;
}
@media screen and (max-width: 767px ) {
  .l-footer__sns {
    margin-top: 2rem;
    -webkit-column-gap: 2.3rem;
       -moz-column-gap: 2.3rem;
            column-gap: 2.3rem;
  }
}
.l-footer__sns a {
  display: block;
  width: 2.5rem;
  height: auto;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.l-footer__sns a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .l-footer__sns a {
    width: 3rem;
  }
}
.l-footer__caption {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 3rem;
  white-space: nowrap;
}
.l-footer__caption a {
  pointer-events: none;
  display: inline-block;
}
@media screen and (max-width: 767px ) {
  .l-footer__caption {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-top: 2.2rem;
  }
}
.l-footer__bottom {
  width: 100%;
  background: #ffffff;
  padding-block: 3.5rem;
}
@media screen and (max-width: 767px ) {
  .l-footer__bottom {
    padding-block: 2rem;
  }
}
.l-footer__copy {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .l-footer__copy {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}

/* ==========================================================================
 #Component
========================================================================== */
/* #c-
----------------------------------------------------------------- */
/* #c-borderButton
----------------------------------------------------------------- */
.c-borderButton {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  border-radius: 100vmax;
  border: min(3px, 0.5rem) solid #3bdcff;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  background: #ffffff;
  color: #00004b;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-borderButton:hover {
  background: #3bdcff;
  color: #ffffff;
}
@media screen and (max-width: 767px ) {
  .c-borderButton {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}
.c-borderButton--inactive {
  pointer-events: none;
  opacity: 0.4;
}

/* #c-button
----------------------------------------------------------------- */
.c-button {
  width: 31.5rem;
  height: 5rem;
  border-radius: 100vmax;
  display: -ms-grid;
  display: grid;
  place-content: center;
  text-align: center;
  border: 4px solid #f63c42;
  background-color: #f63c42;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-button:hover {
  background: #ffffff;
  color: #f63c42;
}
.c-button--white {
  border: 4px solid #ffffff;
  background-color: #ffffff;
  color: #f63c42;
}
.c-button--white:hover {
  background: #f63c42;
  color: #ffffff;
}
@media screen and (max-width: 767px ) {
  .c-button {
    width: 22.5rem;
    height: 4.1rem;
  }
}
.c-button span {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .c-button span {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2857142857;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}

/* #c-button
----------------------------------------------------------------- */
.c-postButton {
  width: 26.4rem;
  height: 5rem;
  border-radius: 100vmax;
  border: 4px solid #3bdcff;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px ) {
  .c-postButton {
    width: 16.5rem;
    height: 3rem;
  }
}
.c-postButton span {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 0.9444444444;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .c-postButton span {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.c-postButton::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  border-right: 1.2rem solid #000000;
  left: 3rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px ) {
  .c-postButton::before {
    border-top: 0.6rem solid transparent;
    border-bottom: 0.6rem solid transparent;
    border-right: 1rem solid #000000;
    left: 2rem;
  }
}
.c-postButton:hover {
  background-color: #3bdcff;
  color: #ffffff;
}
.c-postButton:hover:before {
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  border-right: 1.2rem solid #ffffff;
}
.c-postButton--award::before {
  display: none;
}

/* #c-teachersTitle
----------------------------------------------------------------- */
.c-teachersTitle {
  width: 31.5rem;
  margin-inline: auto;
  background-color: #ffffff;
  height: 5rem;
  border: 4px solid #f63c42;
  display: -ms-grid;
  display: grid;
  place-content: center;
  border-radius: 100vmax;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px ) {
  .c-teachersTitle {
    width: 22.5rem;
    height: 4.1rem;
  }
}
.c-teachersTitle span {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .c-teachersTitle span {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2142857143;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.c-teachersTitle--small span {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.2666666667;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .c-teachersTitle--small span {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}

/* #c-tabList
----------------------------------------------------------------- */
.c-tabList {
  width: 89rem;
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
  -ms-grid-columns: 13.8rem 6rem 1fr;
  grid-template-columns: 13.8rem 1fr;
}
@media screen and (max-width: 767px ) {
  .c-tabList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 34.5rem;
    row-gap: 2rem;
  }
}
.c-tabList__title h3 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .c-tabList__title h3 {
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2.0625;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.c-tabList__title p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.75;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .c-tabList__title p {
    text-align: center;
    font-size: 10px;
    font-size: 1rem;
    line-height: 2.1;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.c-tabList__inner {
  width: 70rem;
  gap: 1.8rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 16rem 1.8rem 16rem 1.8rem 16rem 1.8rem 16rem;
  grid-template-columns: repeat(4, 16rem);
}
@media screen and (max-width: 767px ) {
  .c-tabList__inner {
    width: 31rem;
    -ms-grid-columns: 14rem 2.6rem 14rem;
    grid-template-columns: repeat(2, 14rem);
    -webkit-column-gap: 2.6rem;
       -moz-column-gap: 2.6rem;
            column-gap: 2.6rem;
    margin-inline: auto;
  }
}
.c-tabList__tabItemInner {
  width: 16rem;
  height: 4.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  padding-inline: 1em;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .c-tabList__tabItemInner {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0.15em;
    font-weight: 700;
    width: 14rem;
    height: 4rem;
  }
}

/* #c-dropdown
----------------------------------------------------------------- */
.c-dropdown {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-dropdown::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 0.8rem solid #000000;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  top: 0;
  bottom: 0;
  margin-block: auto;
  right: 0.6rem;
}
@media screen and (max-width: 767px ) {
  .c-dropdown::before {
    right: 0.8rem;
  }
}
.c-dropdown__inner {
  width: 11rem;
  height: 3rem;
  border-top-right-radius: 0.6rem;
  border: 2px solid #f63c42;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding-left: 0.8rem;
}
/* #c-pagination
----------------------------------------------------------------- */
.c-pagination {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px ) {
  .c-pagination {
    margin-top: 1.7rem;
  }
}
.c-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem;
}
@media screen and (max-width: 767px ) {
  .c-pagination__list {
    width: 34.5rem;
    margin-inline: auto;
    gap: 1.1rem;
  }
}
.c-pagination__item > a, .c-pagination__item > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3rem;
  height: 2rem;
  background-color: #3bdcff;
  border-top-right-radius: 1rem;
  color: #ffffff;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .c-pagination__item > a, .c-pagination__item > span {
    width: 2.5rem;
    height: 2rem;
    border-top-right-radius: 0.4rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.c-pagination__item > a.next, .c-pagination__item > a.prev, .c-pagination__item > a.first, .c-pagination__item > a.last, .c-pagination__item > span.next, .c-pagination__item > span.prev, .c-pagination__item > span.first, .c-pagination__item > span.last {
  width: auto;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3bdcff;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.c-pagination__item > a.next .icon, .c-pagination__item > a.prev .icon, .c-pagination__item > span.next .icon, .c-pagination__item > span.prev .icon {
  width: 1rem;
}
.c-pagination__item > a.first .icon, .c-pagination__item > a.last .icon, .c-pagination__item > span.first .icon, .c-pagination__item > span.last .icon {
  width: 1.8rem;
}
.c-pagination__item > a:hover, .c-pagination__item > span {
  background-color: #00004b;
  color: #ffffff;
}
.c-pagination__item .text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-inline: 0.3rem;
}

/* #c-drawer
----------------------------------------------------------------- */
.c-drawer {
  position: fixed;
  width: 100dvw;
  height: auto;
  top: 12.8rem;
  background: #f2f1f1;
  z-index: 100;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  pointer-events: none;
}
.c-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 767px ) {
  .c-drawer {
    top: 8.5rem;
  }
}
.c-drawer__inner {
  width: 122.6rem;
  height: auto;
  margin-inline: auto;
  padding-block: 6rem;
  border-top: 3px solid #f63c42;
  border-bottom: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .c-drawer__inner {
    width: 34.5rem;
    padding-block: 2.5rem 2rem;
  }
}
.c-drawer__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20rem 4rem 20rem 4rem 20rem 4rem 20rem;
  grid-template-columns: repeat(4, 20rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  row-gap: 2.7rem;
}
@media screen and (max-width: 767px ) {
  .c-drawer__list {
    -ms-grid-columns: 16rem 2rem 16rem;
    grid-template-columns: repeat(2, 16rem);
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    row-gap: 0.8rem;
  }
}
.c-drawer__list a {
  width: 20rem;
  height: 7rem;
  padding-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1rem;
  position: relative;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.c-drawer__list a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .c-drawer__list a {
    width: 16rem;
    height: 6rem;
    row-gap: 0.6rem;
  }
}
.c-drawer__list a img {
  width: 16.9rem;
  height: auto;
}
@media screen and (max-width: 767px ) {
  .c-drawer__list a img {
    width: 13.4rem;
  }
}
.c-drawer__list a span {
  text-align: center;
  color: #00004b;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 800;
}
.c-drawer__list a.soon {
  pointer-events: none;
}
.c-drawer__list a.soon img,
.c-drawer__list a.soon span {
  opacity: 0.3;
}
.c-drawer__list a.soon:after {
  content: "12月頃OPEN";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: #00004b;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.c-drawer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 3.5rem;
     -moz-column-gap: 3.5rem;
          column-gap: 3.5rem;
  margin-top: 2rem;
}
.c-drawer__sns a {
  display: block;
  width: 3.1rem;
  height: auto;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.c-drawer__sns a:hover {
  opacity: 0.7;
}
body.is-drawerOpen {
  width: 100vw;
  height: 100dvh;
  position: fixed;
}

/* #c-
----------------------------------------------------------------- */
.c-marquee {
  width: 100%;
  height: 4rem;
  background: #f63c42;
}
.c-marquee__item {
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 12.5px;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 600;
  -webkit-column-gap: 0.7rem;
     -moz-column-gap: 0.7rem;
          column-gap: 0.7rem;
  padding-inline: 1.4rem;
  white-space: nowrap;
}
.c-marquee__item span {
  width: 8rem;
}
/* #c-postContent
----------------------------------------------------------------- */
.c-postContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3rem;
  width: 85rem;
  margin: 6rem auto 0 auto;
}
@media screen and (max-width: 767px ) {
  .c-postContent {
    width: 31.5rem;
    margin: 3rem auto 0 auto;
    row-gap: 2rem;
  }
}
.c-postContent * {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-weight: 400;
  word-break: break-all;
}
@media screen and (max-width: 767px ) {
  .c-postContent * {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}
.c-postContent p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 767px ) {
  .c-postContent p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}
.c-postContent img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.c-postContent h1,
.c-postContent h2 {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .c-postContent h1,
  .c-postContent h2 {
    font-size: 2.56rem;
  }
}
.c-postContent h3 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .c-postContent h3 {
    font-size: 2.24rem;
  }
}
.c-postContent h4 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .c-postContent h4 {
    font-size: 1.92rem;
  }
}
.c-postContent h5 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .c-postContent h5 {
    font-size: 1.6rem;
  }
}
.c-postContent h6 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .c-postContent h6 {
    font-size: 1.28rem;
  }
}
.c-postContent pre {
  white-space: pre-wrap;
  word-break: break-all;
}
.c-postContent a {
  display: inline-block;
  color: #71c7dd;
  text-decoration: underline;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.c-postContent a:hover {
  opacity: 0.7;
}
.c-postContent a:hover {
  text-decoration: none;
}
.c-postContent img.aligncenter {
  margin-inline: auto;
}
.c-postContent img.alignright {
  margin-inline: auto 0;
}
.c-postContent strong {
  font-weight: 800;
}
.c-postContent em {
  font-style: italic;
}
.c-postContent del {
  text-decoration: line-through;
}
.c-postContent hr {
  display: block;
  width: 100%;
  height: 1px;
  background: #00004b;
}
.c-postContent ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 0.3em;
     -moz-column-gap: 0.3em;
          column-gap: 0.3em;
}
.c-postContent ul li:before {
  content: "";
  display: block;
  width: 0.8em;
  height: auto;
  aspect-ratio: 1/1;
  margin-top: 0.6em;
  border-radius: 100vmax;
  background: #00004b;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-postContent ol {
  padding-left: 1.5em;
}
.c-postContent ol li {
  list-style-type: decimal;
}
.c-postContent blockquote {
  display: block;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.6em 1.5em;
  background: #f3efe6;
  border-left: 0.5rem solid #6e7887;
  color: #6e7887;
  font-style: italic;
}

/* #c-title
----------------------------------------------------------------- */
.c-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .c-title {
    row-gap: 1rem;
  }
}
.c-title h2 {
  height: auto;
}
.c-title p {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: #00004b;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .c-title p {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.6363636364;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}

/* #c-summitCard
----------------------------------------------------------------- */
.c-summitCard {
  width: 100%;
  height: auto;
  border: 3px solid #f63c42;
  padding: 0 2rem;
}
@media screen and (max-width: 767px ) {
  .c-summitCard {
    padding: 0 1.4rem;
  }
}
.c-summitCard__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 0.9rem;
}
@media screen and (max-width: 767px ) {
  .c-summitCard__top {
    padding-block: 0.5rem;
  }
}
.c-summitCard__title {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .c-summitCard__title {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.c-summitCard__button {
  width: 12.7rem;
  height: 2.4rem;
  border-radius: 100vmax;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.1rem;
     -moz-column-gap: 1.1rem;
          column-gap: 1.1rem;
  background: #f63c42;
  border: 2px solid #f63c42;
  color: #ffffff;
  font-size: 9px;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-summitCard__button:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1.2rem;
  background: #ffffff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-summitCard__button:hover {
  color: #f63c42;
  background: #ffffff;
}
.c-summitCard__button:hover::after {
  background: #f63c42;
}
.c-summitCard__bottom {
  padding-block: 0.9rem;
  border-top: 3px solid #f63c42;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px ) {
  .c-summitCard__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}
.c-summitCard__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 66.6%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px ) {
  .c-summitCard__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.c-summitCard__date {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-inline: 0.5rem;
}
@media screen and (max-width: 767px ) {
  .c-summitCard__date {
    width: 100%;
    padding: 0;
  }
}
.c-summitCard__date span {
  color: #f63c42;
}
.c-summitCard__place {
  color: #f63c42;
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-inline: 0.5rem;
}
@media screen and (max-width: 767px ) {
  .c-summitCard__place {
    width: 100%;
    padding: 0;
  }
}
.c-summitCard__area {
  min-width: 8rem;
  width: 33.3%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-inline: 0.5rem;
}
@media screen and (max-width: 767px ) {
  .c-summitCard__area {
    width: 100%;
    padding: 0;
  }
}

/* #c-banners
----------------------------------------------------------------- */
.c-banners {
  width: 100%;
  background: #f2f1f1;
  padding-block: 3.2rem;
}
@media screen and (max-width: 767px ) {
  .c-banners {
    padding-block: 1.5rem;
  }
}
.c-banners__list {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: 35.5rem 8rem 35.5rem 8rem 35.5rem;
  grid-template-columns: repeat(3, 35.5rem);
  -webkit-column-gap: 8rem;
     -moz-column-gap: 8rem;
          column-gap: 8rem;
}
@media screen and (max-width: 767px ) {
  .c-banners__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 34.5rem;
    row-gap: 1.5rem;
    margin-inline: auto;
  }
}
.c-banners__list li {
  width: 35.5rem;
  height: 6rem;
}
@media screen and (max-width: 767px ) {
  .c-banners__list li {
    width: 34.5rem;
  }
}
.c-banners__list a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  row-gap: 0;
  position: relative;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-banners__list a:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.c-banners__list a.inactive {
  opacity: 0.3;
  pointer-events: none;
}
.c-banners__list a.inactive {
  pointer-events: none;
  opacity: 0.4;
}
.c-banners__list li:nth-of-type(1) a {
  background: #ffd210;
}
.c-banners__list li:nth-of-type(2) a {
  background: #f36f00;
}
.c-banners__list li:nth-of-type(3) a {
  background: #4cebff;
}
.c-banners__text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.3em;
  font-weight: 800;
  color: #3e3a39;
  text-align: center;
}
.c-banners__text--white {
  color: #ffffff;
}
.c-banners__caption {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.c-banners__arrow {
  width: 0.7rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  margin-block: auto;
  top: 0;
  bottom: 0;
  right: 1.3rem;
}

/* #c-gotop
----------------------------------------------------------------- */
.c-gotop {
  width: 5.6rem;
  height: 5.6rem;
  display: block;
  position: absolute;
  top: 1rem;
  right: calc((100dvw - 136.6rem) / 2 + 18.5rem);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-gotop:hover {
  -webkit-transform: translateY(-0.8rem);
          transform: translateY(-0.8rem);
}
@media screen and (max-width: 767px ) {
  .c-gotop {
    right: 2rem;
  }
}

/* #js-scrollEffect
----------------------------------------------------------------- */
.js-scrollEffect--title,
.js-loadEffect--title {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.js-scrollEffect--title > span,
.js-loadEffect--title > span {
  position: relative;
  top: 10rem;
  -webkit-transition: top 0.6s cubic-bezier(0.4, 0.64, 0.68, 1) 0.1s;
  transition: top 0.6s cubic-bezier(0.4, 0.64, 0.68, 1) 0.1s;
}
.js-scrollEffect--title.is-action > span,
.js-loadEffect--title.is-action > span {
  top: 0;
}
.js-scrollEffect--fadeInUp,
.js-loadEffect--fadeInUp {
  will-change: opacity, transform;
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  -webkit-transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-scrollEffect--fadeInUp.is-action,
.js-loadEffect--fadeInUp.is-action {
  opacity: 1 !important;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.js-scrollEffect--fadeInSlide,
.js-loadEffect--fadeInSlide {
  will-change: opacity, transform;
  opacity: 0;
  -webkit-transform: translate(-1rem, -1rem);
          transform: translate(-1rem, -1rem);
  -webkit-transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js-scrollEffect--fadeInSlide.is-action,
.js-loadEffect--fadeInSlide.is-action {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.js-scrollEffect--fadeIn,
.js-loadEffect--fadeIn {
  will-change: opacity;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.76, 0.05, 0.86, 0.06);
  transition: opacity 0.4s cubic-bezier(0.76, 0.05, 0.86, 0.06);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-scrollEffect--fadeIn.is-action,
.js-loadEffect--fadeIn.is-action {
  opacity: 1 !important;
}
.js-scrollEffect--slideIn,
.js-loadEffect--slideIn {
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  -webkit-transition: clip-path 1.2s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 1.2s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.js-scrollEffect--slideIn.is-action,
.js-loadEffect--slideIn.is-action {
  clip-path: inset(0 0 0 0);
}
.js-scrollEffect--slideIn2,
.js-loadEffect--slideIn2 {
  clip-path: polygon(0 0, 0 0%, 0% 0);
  will-change: clip-path;
  -webkit-transition: clip-path 1.1s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: clip-path 1.1s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.js-scrollEffect--slideIn2.is-action,
.js-loadEffect--slideIn2.is-action {
  clip-path: polygon(0 0, 0 200%, 200% 0);
}
.js-scrollEffect--bounceInDown,
.js-loadEffect--bounceInDown {
  opacity: 0;
  -webkit-transform: translate3d(0, -6rem, 0) scaleY(1.2);
          transform: translate3d(0, -6rem, 0) scaleY(1.2);
}
.js-scrollEffect--bounceInDown.is-action,
.js-loadEffect--bounceInDown.is-action {
  -webkit-animation: bounceInDown 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: bounceInDown 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -6rem, 0) scaleY(1.2);
            transform: translate3d(0, -6rem, 0) scaleY(1.2);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 1rem, 0) scaleY(0.9);
            transform: translate3d(0, 1rem, 0) scaleY(0.9);
  }
  75% {
    opacity: 1;
    -webkit-transform: translate3d(0, -1rem, 0) scaleY(0.95);
            transform: translate3d(0, -1rem, 0) scaleY(0.95);
  }
  90% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0.5rem, 0) scaleY(0.985);
            transform: translate3d(0, 0.5rem, 0) scaleY(0.985);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -6rem, 0) scaleY(1.2);
            transform: translate3d(0, -6rem, 0) scaleY(1.2);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 1rem, 0) scaleY(0.9);
            transform: translate3d(0, 1rem, 0) scaleY(0.9);
  }
  75% {
    opacity: 1;
    -webkit-transform: translate3d(0, -1rem, 0) scaleY(0.95);
            transform: translate3d(0, -1rem, 0) scaleY(0.95);
  }
  90% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0.5rem, 0) scaleY(0.985);
            transform: translate3d(0, 0.5rem, 0) scaleY(0.985);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
  }
}
/* ==========================================================================
 #Project
========================================================================== */
/* #p-
----------------------------------------------------------------- */
/* #p-homeMv
----------------------------------------------------------------- */
.p-homeMv {
  width: 100%;
  background: #ffffff;
}
.p-homeMv__inner {
  width: 136rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-homeMv__inner {
    width: 37.5rem;
    padding-top: 1.5rem;
  }
}
.p-homeMv__side {
  width: 6.8rem;
  height: auto;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 5.6666666667;
  letter-spacing: 0.15em;
  font-weight: 800;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-homeMv__main {
  width: 100%;
  padding-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
@media screen and (max-width: 767px ) {
  .p-homeMv__main {
    width: 34.5rem;
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 1.5rem;
    flex-direction: column;
    row-gap: 1.5rem;
  }
}
.p-homeMv__slider {
  width: 70rem;
  height: 54rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px ) {
  .p-homeMv__slider {
    width: 100%;
    height: 26.5rem;
  }
}
.p-homeMv__sliderTrack {
  height: 100%;
  border: min(3px, 0.5rem) solid #f63c42;
  border-top-right-radius: 1rem;
  position: relative;
}
.p-homeMv__sliderImage {
  width: 100%;
  height: 100%;
  padding: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-homeMv__sliderImage {
    padding: 1rem;
  }
}
.p-homeMv__sliderImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-homeMv__sliderTitle {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #f63c42;
  color: #ffffff;
  padding: 3rem 4rem;
  border-top-right-radius: 2rem;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-homeMv__sliderTitle {
    padding: 1.5rem;
    font-size: 1rem;
    border-top-right-radius: 1rem;
  }
}
.p-homeMv__nav {
  width: 50rem;
  height: 54rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px ) {
  .p-homeMv__nav {
    width: 100%;
    height: auto;
  }
}
.p-homeMv__list {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 23.8rem 2.5rem 23.8rem;
  grid-template-columns: repeat(2, 23.8rem);
  gap: 2.5rem;
}
@media screen and (max-width: 767px ) {
  .p-homeMv__list {
    -ms-grid-columns: 16.5rem 1.5rem 16.5rem;
    grid-template-columns: repeat(2, 16.5rem);
    gap: 1.5rem;
  }
}
.p-homeMv__item a {
  width: 23.8rem;
  height: 25.7rem;
  border-top-right-radius: 2rem;
  border-width: min(3px, 0.5rem);
  border-style: solid;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px ) {
  .p-homeMv__item a {
    border-top-right-radius: 1rem;
    width: 16.5rem;
    height: 17.8rem;
    padding: 1.1rem;
  }
}
.p-homeMv__item--red a {
  border-color: #f63c42;
}
.p-homeMv__item--red a .p-homeMv__itemTitle {
  border-color: #f63c42;
  -webkit-box-shadow: min(6px, 0.6rem) min(-6px, -0.6rem) 0 #f63c42;
          box-shadow: min(6px, 0.6rem) min(-6px, -0.6rem) 0 #f63c42;
}
.p-homeMv__item--yellow a {
  border-color: #f4ca23;
}
.p-homeMv__item--yellow a .p-homeMv__itemTitle {
  border-color: #f4ca23;
  -webkit-box-shadow: min(6px, 0.6rem) min(-6px, -0.6rem) 0 #f4ca23;
          box-shadow: min(6px, 0.6rem) min(-6px, -0.6rem) 0 #f4ca23;
}
.p-homeMv__item--orange a {
  border-color: #e66c10;
}
.p-homeMv__item--orange a .p-homeMv__itemTitle {
  border-color: #e66c10;
  -webkit-box-shadow: min(6px, 0.6rem) min(-6px, -0.6rem) 0 #e66c10;
          box-shadow: min(6px, 0.6rem) min(-6px, -0.6rem) 0 #e66c10;
}
.p-homeMv__item--blue a {
  border-color: #71c7dd;
}
.p-homeMv__item--blue a .p-homeMv__itemTitle {
  border-color: #71c7dd;
  -webkit-box-shadow: min(6px, 0.6rem) min(-6px, -0.6rem) 0 #71c7dd;
          box-shadow: min(6px, 0.6rem) min(-6px, -0.6rem) 0 #71c7dd;
}
.p-homeMv__item--inactive {
  pointer-events: none;
  opacity: 0.4;
}
.p-homeMv__itemImage {
  width: 100%;
  height: 100%;
}
.p-homeMv__itemImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-homeMv__itemTitle {
  width: 14.5rem;
  height: 6.7rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.4545454545;
  letter-spacing: 0.15em;
  font-weight: 800;
  border-top-right-radius: 1rem;
  border-width: min(3px, 0.5rem);
  border-style: solid;
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: #ffffff;
}
@media screen and (max-width: 767px ) {
  .p-homeMv__itemTitle {
    font-size: 1rem;
    width: 13.3rem;
    height: 4.6rem;
    left: 0.8rem;
    bottom: 0.8rem;
  }
}
.p-homeMv .splide__pagination {
  bottom: -2.3rem;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-homeMv .splide__pagination {
    display: none;
  }
}
.p-homeMv .splide__pagination__page {
  margin: 0;
  padding: 0;
  width: 1rem;
  height: 1rem;
  background: #dcdddd;
}
.p-homeMv .splide__pagination__page.is-active {
  background: #9fa0a0;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-homeMv__itemTitle {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0rem);
          transform: translateY(0rem);
}
.p-homeMv__itemImage {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-homeMv__item a:hover .p-homeMv__itemImage {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.p-homeMv__item--red a:hover .p-homeMv__itemTitle {
  -webkit-box-shadow: 0 0 0 #f63c42;
          box-shadow: 0 0 0 #f63c42;
  -webkit-transform: translateY(min(-6px, -0.6rem));
          transform: translateY(min(-6px, -0.6rem));
}
.p-homeMv__item--yellow a:hover .p-homeMv__itemTitle {
  -webkit-box-shadow: 0 0 0 #f4ca23;
          box-shadow: 0 0 0 #f4ca23;
  -webkit-transform: translateY(min(-6px, -0.6rem));
          transform: translateY(min(-6px, -0.6rem));
}
.p-homeMv__item--orange a:hover .p-homeMv__itemTitle {
  -webkit-box-shadow: 0rem 0rem 0 #e66c10;
          box-shadow: 0rem 0rem 0 #e66c10;
  -webkit-transform: translateY(min(-6px, -0.6rem));
          transform: translateY(min(-6px, -0.6rem));
}
.p-homeMv__item--blue a:hover .p-homeMv__itemTitle {
  -webkit-box-shadow: 0rem 0rem 0 #71c7dd;
          box-shadow: 0rem 0rem 0 #71c7dd;
  -webkit-transform: translateY(min(-6px, -0.6rem));
          transform: translateY(min(-6px, -0.6rem));
}

/* #p-homePickup
----------------------------------------------------------------- */
.p-homePickup {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}
.p-homePickup__inner {
  width: 122.6rem;
  margin-inline: auto;
  padding-block: 6.3rem;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-homePickup__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-homePickup__title h2 {
  width: 29.5rem;
}
@media screen and (max-width: 767px ) {
  .p-homePickup__title h2 {
    width: 14.8rem;
  }
}
.p-homePickup__slider {
  margin-top: 6.3rem;
}
@media screen and (max-width: 767px ) {
  .p-homePickup__slider {
    margin-top: 4rem;
  }
}
.p-homePickup__item {
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px ) {
  .p-homePickup__item {
    padding-inline: 1.5rem;
  }
}
.p-homePickup__item > a, .p-homePickup__item > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  width: 26rem;
  height: 9.3rem;
  padding: 1rem;
  border: 2px solid #f63c42;
  border-top-right-radius: 1rem;
  -webkit-box-shadow: 0.8rem -0.8rem 0 #f63c42;
          box-shadow: 0.8rem -0.8rem 0 #f63c42;
  -webkit-transform: translate(0rem, 0rem);
          transform: translate(0rem, 0rem);
}
@media screen and (max-width: 767px ) {
  .p-homePickup__item > a, .p-homePickup__item > div {
    -webkit-column-gap: 1.2rem;
       -moz-column-gap: 1.2rem;
            column-gap: 1.2rem;
    width: 21.8rem;
    height: 7.8rem;
    -webkit-box-shadow: 0.6rem -0.6rem 0 #f63c42;
            box-shadow: 0.6rem -0.6rem 0 #f63c42;
  }
}
.p-homePickup__item > a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-homePickup__item > a:hover {
  -webkit-box-shadow: 0rem 0rem 0 #f63c42;
          box-shadow: 0rem 0rem 0 #f63c42;
  -webkit-transform: translate(0.8rem, -0.8rem);
          transform: translate(0.8rem, -0.8rem);
}
.p-homePickup__item span {
  width: 7.3rem;
  height: auto;
  aspect-ratio: 1;
  background: #f2f1f1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px ) {
  .p-homePickup__item span {
    width: 6.1rem;
  }
}
.p-homePickup__item span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-homePickup__item h3 {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-homePickup__item h3 {
    font-size: 1rem;
  }
}
.p-homePickup .splide__track {
  overflow: visible;
}

/* #p-homeAbout
----------------------------------------------------------------- */
.p-homeAbout__inner {
  width: 122.6rem;
  margin-inline: auto;
  padding-block: 6.8rem;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-homeAbout__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-homeAbout__title h2 {
  width: 52.7rem;
}
@media screen and (max-width: 767px ) {
  .p-homeAbout__title h2 {
    width: 26.3rem;
  }
}
.p-homeAbout__subtitle {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2272727273;
  letter-spacing: 0.15em;
  font-weight: 900;
  margin-top: 4.6rem;
}
@media screen and (max-width: 767px ) {
  .p-homeAbout__subtitle {
    margin-top: 1.7rem;
    font-size: 1.5rem;
  }
}
.p-homeAbout__text {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-homeAbout__text {
    font-size: 1rem;
  }
}
.p-homeAbout__text--02 {
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-homeAbout__text--02 {
    margin-top: 2.5rem;
  }
}
.p-homeAbout__image {
  width: 75.9rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-homeAbout__image {
    width: 34.5rem;
    margin-top: 2.5rem;
  }
}
.p-homeAbout__button {
  width: 50rem;
  height: 5rem;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 900;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-homeAbout__button {
    margin-top: 2rem;
    width: 26.5rem;
    height: 3rem;
    font-size: 1rem;
  }
}

/* #p-homeAward
----------------------------------------------------------------- */
.p-homeAward {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}
.p-homeAward__inner {
  width: 122.6rem;
  margin-inline: auto;
  padding-block: 6.8rem 6rem;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-homeAward__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-homeAward__title h2 {
  width: 47.1rem;
}
@media screen and (max-width: 767px ) {
  .p-homeAward__title h2 {
    width: 23.5rem;
  }
}
.p-homeAward__button {
  width: 50rem;
  height: 5rem;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 900;
  margin-top: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-homeAward__button {
    width: 26.5rem;
    height: 3rem;
    font-size: 1rem;
    margin-top: 2.5rem;
  }
}
.p-homeAward .splide__track {
  overflow: visible;
}
.p-homeAward .splide__pagination {
  bottom: -1.5rem;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-homeAward .splide__pagination {
    bottom: -0.6rem;
  }
}
.p-homeAward .splide__pagination__page {
  margin: 0;
  padding: 0;
  width: 1rem;
  height: 1rem;
  background: #dcdddd;
}
.p-homeAward .splide__pagination__page.is-active {
  background: #9fa0a0;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* #p-homeCollabo
----------------------------------------------------------------- */
.p-homeCollabo {
  width: 100%;
  background: #ffffff;
}
.p-homeCollabo__inner {
  width: 122.6rem;
  margin-inline: auto;
  padding-block: 6.8rem;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-homeCollabo__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-homeCollabo__title h2 {
  width: 56.7rem;
}
@media screen and (max-width: 767px ) {
  .p-homeCollabo__title h2 {
    width: 28.3rem;
  }
}
.p-homeCollabo__list {
  width: 100%;
  margin-top: 6.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 3.4rem;
     -moz-column-gap: 3.4rem;
          column-gap: 3.4rem;
  row-gap: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px ) {
  .p-homeCollabo__list {
    display: -ms-grid;
    display: grid;
    margin-top: 2.5rem;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.p-homeCollabo__list a {
  width: 21.8rem;
  display: block;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-homeCollabo__list a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .p-homeCollabo__list a {
    width: 100%;
  }
}
.p-homeCollabo__list a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 218/120;
}
.p-homeCollabo__list a span {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 700;
}

/* #p-homeOthers
----------------------------------------------------------------- */
.p-homeOthers {
  width: 100%;
}
.p-homeOthers__inner {
  width: 122.6rem;
  margin-inline: auto;
  padding-block: 6.8rem;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-homeOthers__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-homeOthers__title h2 {
  width: 27.7rem;
}
@media screen and (max-width: 767px ) {
  .p-homeOthers__title h2 {
    width: 13.8rem;
  }
}
.p-homeOthers__list {
  width: 100%;
  margin-top: 4.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25rem 6.3rem 25rem 6.3rem 25rem;
  grid-template-columns: repeat(3, 25rem);
  -webkit-column-gap: 6.3rem;
     -moz-column-gap: 6.3rem;
          column-gap: 6.3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px ) {
  .p-homeOthers__list {
    margin-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 4rem;
  }
}
.p-homeOthers__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 3.1rem;
}
.p-homeOthers__list a.inactive {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (max-width: 767px ) {
  .p-homeOthers__list a {
    row-gap: 1.2rem;
  }
}
.p-homeOthers__list a:hover .p-homeOthers__button {
  background: #3bdcff;
  color: #ffffff;
}
.p-homeOthers__logo {
  width: 20.5rem;
  height: auto;
}
@media screen and (max-width: 767px ) {
  .p-homeOthers__logo {
    width: 16.7rem;
  }
}
.p-homeOthers__button {
  width: 25rem;
  height: 5rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-homeOthers__button {
    width: 18.4rem;
    height: 4.5rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-homeOthers .c-banners {
  background: #ffffff;
}

/* #p-aboutTop
----------------------------------------------------------------- */
.p-aboutTop {
  width: 100%;
  background: #ffffff;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutTop {
    padding-bottom: 1.2rem;
  }
}
.p-aboutTop__title {
  padding-block: 2.2rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutTop__title {
    padding-block: 2rem;
  }
}
.p-aboutTop__title h1 {
  margin-inline: auto;
  display: block;
  width: 11.1rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutTop__title h1 {
    width: 9.2rem;
  }
}
.p-aboutTop__title p {
  text-align: center;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutTop__title p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-aboutTop__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-aboutTop__inner {
    width: 34.5rem;
  }
}
.p-aboutTop__slider {
  width: 100%;
  height: auto;
}
.p-aboutTop__image {
  width: 100%;
  height: auto;
}

/* #p-aboutNavi
----------------------------------------------------------------- */
.p-aboutNavi {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 12.8rem;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 767px ) {
  .p-aboutNavi {
    top: 8.5rem;
  }
}
.p-aboutNavi__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutNavi__inner {
    width: 34.5rem;
    padding-block: 2rem;
  }
}
.p-aboutNavi__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5.5rem;
     -moz-column-gap: 5.5rem;
          column-gap: 5.5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutNavi__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.2rem;
  }
}
.p-aboutNavi__item a {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 900;
  text-transform: uppercase;
  width: 26.5rem;
  height: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutNavi__item a {
    height: 2.5rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-aboutNavi {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-aboutNavi.is-hide {
  opacity: 0;
  pointer-events: none;
}

/* #p-aboutWhats
----------------------------------------------------------------- */
.p-aboutWhats {
  width: 100%;
  overflow: hidden;
}
.p-aboutWhats__inner {
  width: 122.6rem;
  margin-inline: auto;
  padding-block: 6.8rem;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-aboutWhats__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-aboutWhats__title h2 {
  width: 52.7rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutWhats__title h2 {
    width: 26.3rem;
  }
}
.p-aboutWhats__subtitle {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2272727273;
  letter-spacing: 0.15em;
  font-weight: 900;
  margin-top: 4.6rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutWhats__subtitle {
    margin-top: 1.7rem;
    font-size: 1.5rem;
  }
}
.p-aboutWhats__text {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutWhats__text {
    font-size: 1rem;
  }
}
.p-aboutWhats__text--02 {
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutWhats__text--02 {
    margin-top: 2.5rem;
  }
}
.p-aboutWhats__image {
  width: 75.9rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutWhats__image {
    width: 34.5rem;
    margin-top: 2.5rem;
  }
}
.p-aboutWhats__main {
  margin-top: 8rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutWhats__main {
    margin-top: 3rem;
  }
}
.p-aboutWhats .splide__track {
  overflow: visible;
}
.p-aboutWhats .splide__pagination {
  bottom: -1.5rem;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutWhats .splide__pagination {
    bottom: -0.6rem;
  }
}
.p-aboutWhats .splide__pagination__page {
  margin: 0;
  padding: 0;
  width: 1rem;
  height: 1rem;
  background: #dcdddd;
}
.p-aboutWhats .splide__pagination__page.is-active {
  background: #9fa0a0;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* #p-aboutFlow
----------------------------------------------------------------- */
.p-aboutFlow {
  width: 100%;
}
.p-aboutFlow__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 7.5rem 8.5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__inner {
    width: 100%;
    padding-block: 2.4rem 4rem;
    position: relative;
    border-top: 0px solid #f63c42;
  }
  .p-aboutFlow__inner:before {
    content: "";
    display: block;
    width: 28rem;
    height: 2px;
    background: #f63c42;
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    top: 0;
  }
}
.p-aboutFlow__title {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2272727273;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__title {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-aboutFlow__content {
  margin-top: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__content {
    margin-top: 4.8rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-aboutFlow__item {
  position: relative;
}
.p-aboutFlow__item--01 {
  width: 55.8rem;
  height: 53.4rem;
  background: url(./images/about/flow_image01.png) no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__item--01 {
    width: 34.5rem;
    height: 24.9rem;
    background: url(./images/about/flow_image01_sp.png) no-repeat center/contain;
  }
}
.p-aboutFlow__item--01 .p-aboutFlow__itemTitle {
  padding-top: 13.5rem;
  margin-left: 2.4rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__item--01 .p-aboutFlow__itemTitle {
    padding-top: 4.6rem;
    margin-left: 3.4rem;
  }
}
.p-aboutFlow__item--01 .p-aboutFlow__itemFukidashi {
  right: 3.3rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__item--01 .p-aboutFlow__itemFukidashi {
    right: -1rem;
  }
}
.p-aboutFlow__item--01 .p-aboutFlow__itemText {
  margin-left: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__item--01 .p-aboutFlow__itemText {
    margin-left: 5.5rem;
  }
}
.p-aboutFlow__item--02 {
  width: 47.4rem;
  height: 53.4rem;
  background: url(./images/about/flow_image02.png) no-repeat center/contain;
  margin-left: -1.8rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__item--02 {
    width: 34.5rem;
    height: 21.6rem;
    background: url(./images/about/flow_image02_sp.png) no-repeat center/contain;
    margin-left: 0;
    margin-top: -1rem;
  }
}
.p-aboutFlow__item--02 .p-aboutFlow__itemTitle {
  padding-top: 12.5rem;
  margin-left: 0.7rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__item--02 .p-aboutFlow__itemTitle {
    padding-top: 4.1rem;
    margin-left: 2.5rem;
  }
}
.p-aboutFlow__item--02 .p-aboutFlow__itemFukidashi {
  right: -5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__item--02 .p-aboutFlow__itemFukidashi {
    right: -1rem;
  }
}
.p-aboutFlow__item--02 .p-aboutFlow__itemText {
  margin-left: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__item--02 .p-aboutFlow__itemText {
    margin-left: 2.5rem;
  }
}
.p-aboutFlow__itemTitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.3043478261;
  letter-spacing: 0.05em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__itemTitle {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-aboutFlow__itemFukidashi {
  width: 15.1rem;
  height: auto;
  position: absolute;
  z-index: 10;
  top: -4.5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__itemFukidashi {
    width: 7.7rem;
    top: -4.5rem;
  }
}
.p-aboutFlow__itemText {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6875;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutFlow__itemText {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-top: 1.2rem;
  }
}

/* #p-aboutBusiness
----------------------------------------------------------------- */
.p-aboutBusiness {
  width: 100%;
}
.p-aboutBusiness__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 8.5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutBusiness__inner {
    width: 100%;
    padding-block: 2.4rem 4rem;
    position: relative;
    border-top: 0px solid #f63c42;
  }
  .p-aboutBusiness__inner:before {
    content: "";
    display: block;
    width: 28rem;
    height: 2px;
    background: #f63c42;
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    top: 0;
  }
}
.p-aboutBusiness__title h2 {
  text-align: center;
  font-size: 31px;
  font-size: 3.1rem;
  line-height: 1.064516129;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-aboutBusiness__title h2 {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-aboutBusiness__title p {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutBusiness__title p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-aboutBusiness__list {
  margin-top: 2.6rem;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: 31.4rem 4.2rem 31.4rem 4.2rem 31.4rem;
  grid-template-columns: repeat(3, 31.4rem);
  gap: 4.2rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutBusiness__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2rem;
    row-gap: 2.2rem;
    width: 34.5rem;
    margin-inline: auto;
  }
}
.p-aboutBusiness__item {
  width: 100%;
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  border: min(3px, 0.5rem) solid #f63c42;
  border-top-right-radius: 4.3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 4;
  grid-row: span 4;
  row-gap: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutBusiness__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.2rem;
  }
}
.p-aboutBusiness__image {
  width: 23.5rem;
  margin-inline: auto;
  padding-block: 2.2rem;
  border-bottom: 2px solid #f63c42;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px ) {
  .p-aboutBusiness__image {
    width: 26rem;
    padding-block: 1.5rem;
  }
}
.p-aboutBusiness__text {
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.3846153846;
  letter-spacing: 0.05em;
  font-weight: 800;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px ) {
  .p-aboutBusiness__text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.05em;
    font-weight: 800;
  }
}
.p-aboutBusiness__subtitle {
  text-align: center;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px ) {
  .p-aboutBusiness__subtitle {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.05em;
    font-weight: 900;
  }
}

/* #p-aboutRelation
----------------------------------------------------------------- */
.p-aboutRelation {
  width: 100%;
}
.p-aboutRelation__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 8.5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutRelation__inner {
    width: 100%;
    padding-block: 2.4rem 4rem;
    position: relative;
    border-top: 0px solid #f63c42;
  }
  .p-aboutRelation__inner:before {
    content: "";
    display: block;
    width: 28rem;
    height: 2px;
    background: #f63c42;
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    top: 0;
  }
}
.p-aboutRelation__title h2 {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2272727273;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-aboutRelation__title h2 {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-aboutRelation__title p {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutRelation__title p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-aboutRelation__content {
  width: 104.3rem;
  height: auto;
  margin-inline: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutRelation__content {
    width: 34.6rem;
    margin-top: 1.2rem;
  }
}
.p-aboutRelation__list {
  margin-top: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 3.5rem;
     -moz-column-gap: 3.5rem;
          column-gap: 3.5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutRelation__list {
    margin-top: 4.5rem;
    row-gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-aboutRelation__item a {
  width: 32rem;
  height: 6.5rem;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.2941176471;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-aboutRelation__item a {
    width: 26.5rem;
    height: 4.5rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 800;
  }
}

/* #p-aboutHistory
----------------------------------------------------------------- */
.p-aboutHistory {
  background: #ffffff;
}
.p-aboutHistory__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 7rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__inner {
    width: 34.5rem;
  }
}
.p-aboutHistory__title h2 {
  margin-inline: auto;
  display: block;
  width: 30.3rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__title h2 {
    width: 15.1rem;
  }
}
.p-aboutHistory__title p {
  text-align: center;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__title p {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-top: 0.6rem;
  }
}
.p-aboutHistory__block {
  width: 104rem;
  margin-inline: auto;
  padding-block: 3.5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__block {
    width: 100%;
    padding-block: 2rem;
  }
}
.p-aboutHistory__blockTitle {
  width: 100%;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2272727273;
  letter-spacing: 0.15em;
  font-weight: 900;
  text-align: center;
  border-bottom: max(2px, 0.2rem) solid #00004b;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__blockTitle {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-inline: 3rem;
    margin-inline: auto;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
    padding-bottom: 1rem;
  }
}
.p-aboutHistory__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-top: 1.5rem;
    text-align: center;
  }
}
.p-aboutHistory__text a {
  display: inline-block;
  color: #3baaff;
  text-decoration: underline;
}
.p-aboutHistory__text a:hover {
  text-decoration: none;
}
.p-aboutHistory__image {
  margin-top: 5rem;
  width: 100%;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__image {
    margin-top: 2.5rem;
  }
}
.p-aboutHistory__caption {
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.0714285714;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__caption {
    text-align: center;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-top: 0.3rem;
  }
}
.p-aboutHistory__subtitle {
  text-align: center;
  margin-top: 5rem;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.4210526316;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__subtitle {
    margin-top: 2.5rem;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-aboutHistory__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__list {
    row-gap: 1.5rem;
    margin-top: 2rem;
  }
}
.p-aboutHistory__item a {
  text-align: center;
  width: 66rem;
  height: 5rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.1em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__item a {
    width: 26rem;
    height: 4.5rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 800;
  }
}
.p-aboutHistory__item a.small {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.1em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__item a.small {
    height: 6.2rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 800;
  }
}
.p-aboutHistory__map {
  width: 98.2rem;
  margin-inline: auto;
  margin-top: 9.3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 26rem 1fr 26rem;
  grid-template-columns: 26rem 1fr 26rem;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 31.5rem;
    margin-top: 3rem;
    row-gap: 1.6rem;
  }
}
.p-aboutHistory__mapImage {
  width: 42.2rem;
  height: auto;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__mapImage {
    width: 30rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: absolute;
    opacity: 0.1;
    top: 0;
    bottom: 0;
    margin-block: auto;
  }
}
.p-aboutHistory__mapBlock {
  width: 100%;
  height: auto;
}
.p-aboutHistory__mapBlock--01 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.p-aboutHistory__mapBlock--02 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.p-aboutHistory__mapBlock--03 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}
.p-aboutHistory__mapBlock--04 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.p-aboutHistory__mapBlock--05 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.p-aboutHistory__mapBlock--06 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}
.p-aboutHistory__mapBlock h3 {
  width: 20rem;
  padding-left: 0.9rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0.15em;
  font-weight: 800;
  border-bottom: 2.8px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__mapBlock h3 {
    font-size: 10px;
    font-size: 1rem;
    line-height: 2.6;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__mapBlock ul {
    margin-top: 0.4rem;
  }
}
.p-aboutHistory__mapBlock li {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__mapBlock li {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 2.1111111111;
    letter-spacing: 0.05em;
    font-weight: 800;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__mapBlock--01, .p-aboutHistory__mapBlock--03, .p-aboutHistory__mapBlock--05 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__mapBlock--01 h3, .p-aboutHistory__mapBlock--03 h3, .p-aboutHistory__mapBlock--05 h3 {
    text-align: right;
  }
}
@media screen and (max-width: 767px ) {
  .p-aboutHistory__mapBlock--01 li, .p-aboutHistory__mapBlock--03 li, .p-aboutHistory__mapBlock--05 li {
    text-align: right;
  }
}

/* #p-aboutPeople
----------------------------------------------------------------- */
.p-aboutPeople__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 7rem 8rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutPeople__inner {
    width: 34.5rem;
    padding-block: 3rem 3.6rem;
  }
}
.p-aboutPeople__title h2 {
  width: 47rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutPeople__title h2 {
    width: 23.5rem;
  }
}
.p-aboutPeople__block {
  width: 104rem;
  padding-top: 6rem;
  margin-top: 6.5rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-aboutPeople__block {
    width: 100%;
    padding-top: 3rem;
    margin-top: 4rem;
  }
}
.p-aboutPeople__block:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #00004b;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 0;
}
@media screen and (max-width: 767px ) {
  .p-aboutPeople__block:before {
    width: 28rem;
  }
}
.p-aboutPeople__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutPeople__subtitle {
    row-gap: 0.6rem;
  }
}
.p-aboutPeople__subtitle h3 {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2272727273;
  letter-spacing: 0.15em;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-aboutPeople__subtitle h3 {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-aboutPeople__subtitle p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-aboutPeople__subtitle p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-aboutPeople__link {
  margin-top: 2.5rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 100%;
  height: 28rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-aboutPeople__link {
    margin-top: 1.7rem;
    height: 9.2rem;
  }
}
.p-aboutPeople__link:hover .p-aboutPeople__linkImage {
  scale: 1.05;
}
.p-aboutPeople__linkImage {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  scale: 1;
  -webkit-transition: scale 0.4s;
  transition: scale 0.4s;
}
.p-aboutPeople__linkText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px ) {
  .p-aboutPeople__linkText {
    row-gap: 0.5rem;
  }
}
.p-aboutPeople__linkText--01 {
  width: 64.8rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutPeople__linkText--01 {
    width: 14.1rem;
  }
}
.p-aboutPeople__linkText--02 {
  width: 57.1rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutPeople__linkText--02 {
    width: 22.8rem;
  }
}
.p-aboutPeople__linkText span {
  color: #ffffff;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-aboutPeople__linkText span {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}

/* #p-aboutCollabo
----------------------------------------------------------------- */
.p-aboutCollabo {
  width: 100%;
  background: #ffffff;
}
.p-aboutCollabo__inner {
  width: 122.6rem;
  margin-inline: auto;
  padding-block: 6.8rem;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-aboutCollabo__inner {
    width: 34.5rem;
    padding-block: 2.5rem 4rem;
  }
}
.p-aboutCollabo__title h2 {
  width: 56.7rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutCollabo__title h2 {
    width: 28.3rem;
  }
}
.p-aboutCollabo__list {
  width: 100%;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 3.4rem;
     -moz-column-gap: 3.4rem;
          column-gap: 3.4rem;
  row-gap: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px ) {
  .p-aboutCollabo__list {
    display: -ms-grid;
    display: grid;
    margin-top: 2.5rem;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.p-aboutCollabo__list a {
  width: 21.8rem;
  display: block;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-aboutCollabo__list a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .p-aboutCollabo__list a {
    width: 100%;
  }
}
.p-aboutCollabo__list a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 218/120;
}
.p-aboutCollabo__list a span {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.p-aboutCollabo__button {
  width: 50rem;
  height: 5rem;
  margin-inline: auto;
  margin-top: 6rem;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-aboutCollabo__button {
    width: 26.5rem;
    height: 4.5rem;
    margin-top: 3rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-aboutCollabo__subtitle {
  margin-top: 3.5rem;
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2272727273;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-aboutCollabo__subtitle {
    margin-top: 2rem;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-aboutCollabo__text {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutCollabo__text {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-top: 0.5rem;
  }
}
.p-aboutCollabo__block {
  margin-top: 7.5rem;
  padding-top: 3rem;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-aboutCollabo__block {
    margin-top: 3.5rem;
    padding-top: 1rem;
  }
}
.p-aboutCollabo__block:before {
  content: "";
  display: block;
  width: 104rem;
  height: max(0.3rem, 3px);
  background: #00004b;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-aboutCollabo__block:before {
    width: 28rem;
  }
}
.p-aboutCollabo__members {
  width: 87.6rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4.2rem 7.2rem;
  margin-top: 4.2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px ) {
  .p-aboutCollabo__members {
    width: 100%;
    gap: 4rem 1.5rem;
    margin-top: 4rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.p-aboutCollabo__member {
  width: 16.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
}
.p-aboutCollabo__member h4 {
  text-align: center;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.0588235294;
  letter-spacing: 0.05em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-aboutCollabo__member h4 {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.05em;
    font-weight: 900;
  }
}
.p-aboutCollabo__member p {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 4.8rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutCollabo__member p {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    letter-spacing: 0.05em;
    font-weight: 700;
    height: 4.5rem;
  }
}
.p-aboutCollabo__member div {
  width: 100%;
}

/* #p-aboutUs
----------------------------------------------------------------- */
.p-aboutUs {
  width: 100%;
}
.p-aboutUs__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 6.5rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutUs__inner {
    width: 34.5rem;
    padding-block: 3rem 4.5rem;
  }
}
.p-aboutUs__title h2 {
  width: 33.8rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutUs__title h2 {
    width: 16.9rem;
  }
}
.p-aboutUs__logo {
  display: block;
  width: 43.7rem;
  height: auto;
  margin-inline: auto;
  margin-top: 8.3rem;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-aboutUs__logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .p-aboutUs__logo {
    width: 15.8rem;
    margin-top: 3.4rem;
  }
}
.p-aboutUs__text {
  text-align: center;
  margin-top: 7.5rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-aboutUs__text {
    margin-top: 3rem;
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-aboutUs__block {
  margin-top: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutUs__block {
    margin-top: 3rem;
  }
}
.p-aboutUs__blockTitle {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2272727273;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-aboutUs__blockTitle {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-aboutUs__blockText {
  text-align: center;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-aboutUs__blockText {
    margin-top: 0.5rem;
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-aboutUs__list {
  margin-top: 3rem;
  width: 104rem;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 23rem 4rem 23rem 4rem 23rem 4rem 23rem;
  grid-template-columns: repeat(4, 23rem);
  gap: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-aboutUs__list {
    width: 100%;
    -ms-grid-columns: 16.5rem 1.5rem 16.5rem;
    grid-template-columns: repeat(2, 16.5rem);
    margin-top: 3.5rem;
    gap: 3.5rem 1.5rem;
  }
}
.p-aboutUs__item {
  width: 100%;
}
.p-aboutUs__item a {
  display: block;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-aboutUs__item a:hover {
  opacity: 0.7;
}
.p-aboutUs__item span {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-aboutUs__item span {
    font-size: 10px;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}

/* #p-studentsTop
----------------------------------------------------------------- */
.p-studentsTop {
  width: 100%;
  background: #ffffff;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsTop {
    padding-bottom: 0;
  }
}
.p-studentsTop__title {
  padding-block: 2.2rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsTop__title {
    padding-block: 2rem;
  }
}
.p-studentsTop__title h1 {
  margin-inline: auto;
  display: block;
  width: 17.2rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsTop__title h1 {
    width: 14.4rem;
  }
}
.p-studentsTop__title p {
  text-align: center;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsTop__title p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-studentsTop__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-studentsTop__inner {
    width: 34.5rem;
  }
}
.p-studentsTop__slider {
  width: 100%;
  height: auto;
}
.p-studentsTop__image {
  width: 100%;
  height: auto;
}

/* #p-studentsWhat
----------------------------------------------------------------- */
.p-studentsWhat__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 7rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsWhat__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-studentsWhat__title h2 {
  width: 52.6rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsWhat__title h2 {
    width: 26.3rem;
  }
}
.p-studentsWhat__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4.3rem;
     -moz-column-gap: 4.3rem;
          column-gap: 4.3rem;
  margin-top: 7rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsWhat__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.2rem;
    margin-top: 2.2rem;
  }
}
.p-studentsWhat__image {
  width: 45rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsWhat__image {
    width: 100%;
  }
}
.p-studentsWhat__subtitle {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.4545454545;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-studentsWhat__subtitle {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
    text-align: center;
  }
}
.p-studentsWhat__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsWhat__text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-top: 1.5rem;
    text-align: center;
  }
}
.p-studentsWhat__button {
  width: 50rem;
  height: 5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsWhat__button {
    width: 26.5rem;
    height: 3rem;
    margin-top: 2rem;
  }
}

/* #p-studentsOpportunities
----------------------------------------------------------------- */
.p-studentsOpportunities {
  background: #ffffff;
}
.p-studentsOpportunities__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 7rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-studentsOpportunities__title h2 {
  width: 52rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__title h2 {
    width: 26rem;
  }
}
.p-studentsOpportunities__subtitle {
  text-align: center;
  font-size: 31px;
  font-size: 3.1rem;
  line-height: 1.3225806452;
  letter-spacing: 0.15em;
  font-weight: 900;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__subtitle {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
    margin-top: 2.5rem;
  }
}
.p-studentsOpportunities__text {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-top: 1rem;
  }
}
.p-studentsOpportunities__voiceTitle {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  letter-spacing: 0.15em;
  font-weight: 900;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__voiceTitle {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
    margin-top: 2.5rem;
  }
}
.p-studentsOpportunities__voiceList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__voiceList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
  }
}
.p-studentsOpportunities__voiceList li {
  position: relative;
  width: 50.5rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__voiceList li {
    width: 100%;
  }
  .p-studentsOpportunities__voiceList li:nth-of-type(even) p {
    left: auto;
    right: 1.5rem;
  }
}
.p-studentsOpportunities__voiceList p {
  width: 35rem;
  position: absolute;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6428571429;
  letter-spacing: 0.1em;
  font-weight: 800;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  top: 0;
  bottom: 0;
  margin-block: auto;
  left: 3.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__voiceList p {
    width: 25rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 800;
    left: 1.5rem;
  }
}
.p-studentsOpportunities__list {
  width: 103.4rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 3.8rem;
     -moz-column-gap: 3.8rem;
          column-gap: 3.8rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__list {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem 2rem;
    margin-top: 2rem;
  }
}
.p-studentsOpportunities__list li {
  width: 23rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__list li {
    width: 16rem;
  }
}
.p-studentsOpportunities__list li > a, .p-studentsOpportunities__list li > div {
  display: block;
  width: 100%;
  height: auto;
}
.p-studentsOpportunities__list li > a {
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-studentsOpportunities__list li > a:hover {
  opacity: 0.7;
}
.p-studentsOpportunities__list p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__list p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-top: 0.6rem;
  }
}
.p-studentsOpportunities__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4.3rem;
     -moz-column-gap: 4.3rem;
          column-gap: 4.3rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.2rem;
    margin-top: 2.2rem;
  }
}
.p-studentsOpportunities__columnImage {
  width: 45rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__columnImage {
    width: 100%;
  }
}
.p-studentsOpportunities__columnText {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__columnText {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-top: 1.5rem;
    text-align: center;
  }
}
.p-studentsOpportunities__columnButton {
  width: 50rem;
  height: 5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__columnButton {
    width: 26.5rem;
    height: 3rem;
    margin-top: 2rem;
  }
}
.p-studentsOpportunities__border {
  display: block;
  width: 104rem;
  height: 2px;
  background: #00004b;
  margin-inline: auto;
  margin-top: 8.5rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsOpportunities__border {
    width: 28rem;
    margin-top: 3rem;
  }
}

/* #p-studentsPeople
----------------------------------------------------------------- */
.p-studentsPeople__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 7rem 8rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsPeople__inner {
    width: 34.5rem;
    padding-block: 3rem 3.6rem;
  }
}
.p-studentsPeople__title h2 {
  width: 47rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsPeople__title h2 {
    width: 23.5rem;
  }
}
.p-studentsPeople__block {
  width: 104rem;
  padding-top: 6rem;
  margin-top: 6.5rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-studentsPeople__block {
    width: 100%;
    padding-top: 3rem;
    margin-top: 4rem;
  }
}
.p-studentsPeople__block:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #00004b;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 0;
}
@media screen and (max-width: 767px ) {
  .p-studentsPeople__block:before {
    width: 28rem;
  }
}
.p-studentsPeople__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsPeople__subtitle {
    row-gap: 0.6rem;
  }
}
.p-studentsPeople__subtitle h3 {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2272727273;
  letter-spacing: 0.15em;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-studentsPeople__subtitle h3 {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-studentsPeople__subtitle p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-studentsPeople__subtitle p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-studentsPeople__link {
  margin-top: 2.5rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 100%;
  height: 28rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-studentsPeople__link {
    margin-top: 1.7rem;
    height: 9.2rem;
  }
}
.p-studentsPeople__link:hover .p-studentsPeople__linkImage {
  scale: 1.05;
}
.p-studentsPeople__linkImage {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  scale: 1;
  -webkit-transition: scale 0.4s;
  transition: scale 0.4s;
}
.p-studentsPeople__linkText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px ) {
  .p-studentsPeople__linkText {
    row-gap: 0.5rem;
  }
}
.p-studentsPeople__linkText--01 {
  width: 64.8rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsPeople__linkText--01 {
    width: 14.1rem;
  }
}
.p-studentsPeople__linkText--02 {
  width: 57.1rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsPeople__linkText--02 {
    width: 22.8rem;
  }
}
.p-studentsPeople__linkText span {
  color: #ffffff;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-studentsPeople__linkText span {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}

/* #p-studentsAbout
----------------------------------------------------------------- */
.p-studentsAbout {
  width: 100%;
  background: #ffffff;
}
.p-studentsAbout__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 6.5rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsAbout__inner {
    width: 34.5rem;
    padding-block: 3rem 4.5rem;
  }
}
.p-studentsAbout__title h2 {
  width: 33.8rem;
}
@media screen and (max-width: 767px ) {
  .p-studentsAbout__title h2 {
    width: 16.9rem;
  }
}
.p-studentsAbout__logo {
  display: block;
  width: 43.7rem;
  height: auto;
  margin-inline: auto;
  margin-top: 8.3rem;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-studentsAbout__logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .p-studentsAbout__logo {
    width: 15.8rem;
    margin-top: 3.4rem;
  }
}
.p-studentsAbout__text {
  text-align: center;
  margin-top: 7.5rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-studentsAbout__text {
    margin-top: 1.6rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}

/* #p-teachers
----------------------------------------------------------------- */
.p-teachers {
  background: url(./images/teachers/bg_image.jpg) repeat top center/131.6rem auto;
}
.p-teachers__title {
  padding-top: 2.2rem;
}
@media screen and (max-width: 767px ) {
  .p-teachers__title {
    padding-top: 2rem;
  }
}
.p-teachers__title h1 {
  margin-inline: auto;
  display: block;
  width: 18.7rem;
}
@media screen and (max-width: 767px ) {
  .p-teachers__title h1 {
    width: 15.6rem;
  }
}
.p-teachers__title p {
  text-align: center;
  display: block;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: #ffffff;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px ) {
  .p-teachers__title p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-teachers__main {
  width: 130.6rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-teachers__main {
    width: 34.5rem;
    row-gap: 1.5rem;
  }
}

/* #p-teachersTop
----------------------------------------------------------------- */
.p-teachersTop {
  width: 100%;
}
.p-teachersTop__inner {
  margin-top: 2.2rem;
  background-color: #fffef2;
  padding-block: 6.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px ) {
  .p-teachersTop__inner {
    margin-top: 1.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.6rem 1.5rem 2rem 1.5rem;
  }
}
.p-teachersTop__image {
  width: 54rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersTop__image {
    width: 100%;
  }
}
.p-teachersTop__info {
  width: 47.8rem;
  font-family: "Noto Sans JP", sans-serif;
  margin-left: 5.6rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersTop__info {
    width: 100%;
    margin-left: 0;
  }
}
.p-teachersTop__title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-teachersTop__title {
    margin-top: 2.4rem;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.6153846154;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-teachersTop__text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.75;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-teachersTop__text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-teachersTop__text span {
  display: block;
  margin-top: 1.6rem;
}
.p-teachersTop__button {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersTop__button {
    margin-inline: auto;
  }
}
.p-teachersTop__caption {
  margin-top: 3rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.75;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-teachersTop__caption {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-teachersTop__caption a {
  display: inline-block;
  color: #3baaff;
  text-decoration: underline;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-teachersTop__caption a:hover {
  opacity: 0.7;
}
.p-teachersTop__caption a.inactive {
  pointer-events: none;
  opacity: 0.4;
}

/* #p-teachersMiddle
----------------------------------------------------------------- */
.p-teachersMiddle {
  width: 100%;
  padding: 4.4rem 0 5.6rem 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px ) {
  .p-teachersMiddle {
    padding: 2.5rem 0;
  }
}
.p-teachersMiddle__title {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-teachersMiddle__title {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 0.8333333333;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-teachersMiddle__list {
  margin-top: 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersMiddle__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1.8rem;
    row-gap: 1.6rem;
  }
}
.p-teachersMiddle__item {
  width: 31.4rem;
  padding: 2.5rem 0 0 0;
  border: 4px solid #f63c42;
  border-top-right-radius: 4.7rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersMiddle__item {
    padding: 0.5rem 0 0 0;
  }
}
.p-teachersMiddle__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 26rem;
  height: 47rem;
  margin-inline: auto;
  padding-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersMiddle__info {
    height: auto;
    padding: 2rem 0 2rem 0;
  }
}
.p-teachersMiddle__number {
  width: 100%;
  text-align: center;
  font-size: 65px;
  font-size: 6.5rem;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 800;
  padding-bottom: 3.2rem;
  border-bottom: 2px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-teachersMiddle__number {
    padding-bottom: 2.4rem;
    font-size: 56px;
    font-size: 5.6rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-teachersMiddle__infoTitle {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersMiddle__infoTitle {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 2.2;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-top: 1.6rem;
  }
}
.p-teachersMiddle__text {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-top: 2.6rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersMiddle__text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 800;
    margin-top: 1.6rem;
  }
}
.p-teachersMiddle__caption {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersMiddle__caption {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 800;
    margin-top: 2.4rem;
  }
}
.p-teachersMiddle__image {
  background-color: #f63c42;
  width: 100%;
  padding: 3rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
.p-teachersMiddle__image img {
  width: 100%;
  height: auto;
}

/* #p-teachersThird
----------------------------------------------------------------- */
.p-teachersThird {
  width: 100%;
  padding: 4.4rem 0 5.6rem 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px ) {
  .p-teachersThird {
    padding: 2rem 0 3.6rem 0;
  }
}
.p-teachersThird__title {
  margin-top: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersThird__title {
    margin-top: 0;
  }
}
.p-teachersThird__listTitle {
  padding: 8rem 1.9rem 5rem 1.9rem;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.2380952381;
  letter-spacing: 0.15em;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersThird__listTitle {
    margin-inline: auto;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2.1666666667;
    letter-spacing: 0.15em;
    font-weight: 800;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    padding: 4.5rem 0 2.5rem 0;
  }
}
.p-teachersThird__list {
  width: 104rem;
  margin-inline: auto;
  margin-top: -2.4rem;
  background-color: #fffef2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 2px solid #f63c42;
  border-bottom: 2px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-teachersThird__list {
    width: 31.5rem;
    border-top: 2.5px solid #f63c42;
    border-bottom: 2.5px solid #f63c42;
  }
}
.p-teachersThird__list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3rem 1.9rem;
  border-top: 2px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-teachersThird__list dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 0;
    border-top: 2.5px solid #f63c42;
  }
}
.p-teachersThird__list dt {
  width: 22rem;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-teachersThird__list dt {
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-teachersThird__list dd {
  width: 100%;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.15em;
  font-weight: 800;
  word-break: break-all;
}
@media screen and (max-width: 767px ) {
  .p-teachersThird__list dd {
    margin-top: 1rem;
    text-align: center;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-teachersThird__caption {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 6.3rem;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-teachersThird__caption {
    margin-top: 2.4rem;
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-teachersThird__button {
  margin-inline: auto;
  margin-top: 5.3rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersThird__button {
    margin-top: 2.4rem;
  }
}

/* #p-teachersBanner
----------------------------------------------------------------- */
.p-teachersBanner {
  width: 100%;
  background-color: #fffef2;
  padding: 4.5rem 0;
}
@media screen and (max-width: 767px ) {
  .p-teachersBanner {
    margin-top: 0;
    padding: 3rem 0;
  }
}
.p-teachersBanner__text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.15em;
  font-weight: 800;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-teachersBanner__text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-teachersBanner__text a {
  display: inline-block;
  color: #3baaff;
  text-decoration: underline;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-teachersBanner__text a:hover {
  opacity: 0.7;
}

/* #p-teachersArea
----------------------------------------------------------------- */
.p-teachersArea {
  width: 100%;
  background-color: #ffffff;
  padding: 4.5rem 0 5.5rem 0;
}
@media screen and (max-width: 767px ) {
  .p-teachersArea {
    padding: 1.5rem 0 1.5rem 0;
  }
}
.p-teachersArea__text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.15em;
  font-weight: 800;
  text-align: center;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersArea__text {
    margin-top: 1rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-teachersArea__text a {
  display: inline-block;
  color: #3baaff;
  text-decoration: underline;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-teachersArea__text a:hover {
  opacity: 0.7;
}
.p-teachersArea__text span {
  display: block;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2.1666666667;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersArea__text span {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-top: 2rem;
  }
}
.p-teachersArea__content {
  width: 104rem;
  background-color: #fffef2;
  border-top: 2px solid #f63c42;
  border-bottom: 2px solid #f63c42;
  margin-inline: auto;
  margin-top: -2.4rem;
  padding: 3.8rem 0 11rem 0;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-teachersArea__content {
    width: 31.5rem;
    border-bottom: none;
    padding: 3.8rem 0 4rem 0;
  }
}
.p-teachersArea__map {
  width: 98.2rem;
  margin-inline: auto;
  margin-top: 9.3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 26rem 1fr 26rem;
  grid-template-columns: 26rem 1fr 26rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersArea__map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 31.5rem;
    margin-top: 3rem;
    row-gap: 1.6rem;
  }
}
.p-teachersArea__mapImage {
  width: 42.2rem;
  height: auto;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
}
@media screen and (max-width: 767px ) {
  .p-teachersArea__mapImage {
    width: 30rem;
    position: absolute;
    opacity: 0.1;
    top: 37rem;
  }
}
.p-teachersArea__mapBlock {
  width: 100%;
  height: auto;
}
.p-teachersArea__mapBlock--01 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.p-teachersArea__mapBlock--02 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.p-teachersArea__mapBlock--03 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}
.p-teachersArea__mapBlock--04 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.p-teachersArea__mapBlock--05 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.p-teachersArea__mapBlock--06 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}
.p-teachersArea__mapBlock h3 {
  width: 20rem;
  padding-left: 0.9rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0.15em;
  font-weight: 800;
  border-bottom: 2.8px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-teachersArea__mapBlock h3 {
    font-size: 10px;
    font-size: 1rem;
    line-height: 2.6;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
@media screen and (max-width: 767px ) {
  .p-teachersArea__mapBlock ul {
    margin-top: 0.4rem;
  }
}
.p-teachersArea__mapBlock li {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px ) {
  .p-teachersArea__mapBlock li {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 2.1111111111;
    letter-spacing: 0.05em;
    font-weight: 800;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px ) {
  .p-teachersArea__mapBlock--01, .p-teachersArea__mapBlock--03, .p-teachersArea__mapBlock--05 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px ) {
  .p-teachersArea__mapBlock--01 h3, .p-teachersArea__mapBlock--03 h3, .p-teachersArea__mapBlock--05 h3 {
    text-align: right;
  }
}
@media screen and (max-width: 767px ) {
  .p-teachersArea__mapBlock--01 li, .p-teachersArea__mapBlock--03 li, .p-teachersArea__mapBlock--05 li {
    text-align: right;
  }
}

/* #p-teachersBottom
----------------------------------------------------------------- */
.p-teachersBottom {
  width: 100%;
  padding: 4.4rem 0 5.6rem 0;
}
@media screen and (max-width: 767px ) {
  .p-teachersBottom {
    padding: 1.4rem 0 3.5rem 0;
  }
}
.p-teachersBottom__image {
  width: 38.8rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-teachersBottom__image {
    width: 23.4rem;
  }
}
.p-teachersBottom__text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: #ffffff;
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-teachersBottom__text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-teachersBottom__button {
  margin-top: 3rem;
  margin-inline: auto;
}

/* #p-cheersTop
----------------------------------------------------------------- */
.p-cheersTop {
  width: 100%;
  background: #ffffff;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersTop {
    padding-bottom: 0;
  }
}
.p-cheersTop__title {
  padding-block: 2.2rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersTop__title {
    padding-block: 2rem;
  }
}
.p-cheersTop__title h1 {
  margin-inline: auto;
  display: block;
  width: 13.9rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersTop__title h1 {
    width: 11.6rem;
  }
}
.p-cheersTop__title p {
  text-align: center;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersTop__title p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-cheersTop__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-cheersTop__inner {
    width: 34.5rem;
  }
}
.p-cheersTop__image {
  width: 100%;
  height: auto;
}

/* #p-cheersMessage
----------------------------------------------------------------- */
.p-cheersMessage {
  background: #ffffff;
}
.p-cheersMessage__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 7rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersMessage__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-cheersMessage__title h2 {
  width: 32rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersMessage__title h2 {
    width: 16rem;
  }
}
.p-cheersMessage__title p {
  line-height: 1.5;
}
@media screen and (max-width: 767px ) {
  .p-cheersMessage__title p {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
    margin-top: 1rem;
  }
}
.p-cheersMessage__main {
  padding-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersMessage__main {
    padding-top: 1rem;
  }
}
.p-cheersMessage__subtitle {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.4545454545;
  letter-spacing: 0.15em;
  font-weight: 900;
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-cheersMessage__subtitle {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
    text-align: center;
    margin-top: 2.5rem;
  }
}
.p-cheersMessage__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-cheersMessage__text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-top: 2.5rem;
    text-align: center;
  }
}
.p-cheersMessage__button {
  width: 50rem;
  height: 5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersMessage__button {
    width: 26.5rem;
    height: 3rem;
    margin-top: 3rem;
  }
}

/* #p-cheersMatters
----------------------------------------------------------------- */
.p-cheersMatters {
  width: 100%;
}
.p-cheersMatters__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 7rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersMatters__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-cheersMatters__title h2 {
  width: 54rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersMatters__title h2 {
    width: 27rem;
  }
}
.p-cheersMatters__subtitle {
  text-align: center;
  margin-top: 5rem;
  font-size: 31px;
  font-size: 3.1rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-cheersMatters__subtitle {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
    margin-top: 2.5rem;
  }
}
.p-cheersMatters__list {
  margin-top: 5rem;
  width: 104rem;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 31.4rem 4.9rem 31.4rem 4.9rem 31.4rem;
  grid-template-columns: repeat(3, 31.4rem);
  -webkit-column-gap: 4.9rem;
     -moz-column-gap: 4.9rem;
          column-gap: 4.9rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersMatters__list {
    width: 31.4rem;
    margin-top: 2.5rem;
    -ms-grid-columns: (31.4rem)[1];
    grid-template-columns: repeat(1, 31.4rem);
    row-gap: 2rem;
  }
}
.p-cheersMatters__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 4;
  grid-row: span 4;
  border: 3px solid #f63c42;
  border-top-right-radius: 5.3rem;
  overflow: hidden;
}
@media screen and (max-width: 767px ) {
  .p-cheersMatters__item {
    display: block;
  }
}
.p-cheersMatters__image {
  width: 100%;
}
.p-cheersMatters__text01 {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 31px;
  font-size: 3.1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-cheersMatters__text01 {
    margin-top: 3rem;
  }
}
.p-cheersMatters__text01 span {
  font-size: 63px;
  font-size: 6.3rem;
  line-height: 0.6666666667;
  letter-spacing: 0em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-cheersMatters__text01 span {
    font-size: 48px;
    font-size: 4.8rem;
    line-height: 0.875;
    letter-spacing: 0em;
    font-weight: 800;
  }
}
.p-cheersMatters__text02 {
  margin-top: 2rem;
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.0909090909;
  letter-spacing: 0.05em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-cheersMatters__text02 {
    margin-top: 2rem;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.05em;
    font-weight: 800;
  }
}
.p-cheersMatters__text03 {
  margin-top: 1.2rem;
  padding-inline: 2.5rem;
  padding-bottom: 2.5rem;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-cheersMatters__text03 {
    margin-top: 1rem;
    padding-inline: 1.5rem;
    padding-bottom: 3rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-cheersMatters__button {
  width: 50rem;
  height: 5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersMatters__button {
    width: 26.5rem;
    height: 3rem;
    margin-top: 3rem;
  }
}

/* #p-cheersVoice
----------------------------------------------------------------- */
.p-cheersVoice {
  width: 100%;
  overflow: hidden;
}
.p-cheersVoice__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 8.5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersVoice__inner {
    width: 100%;
    padding-block: 2.4rem 4rem;
    position: relative;
    border-top: 0px solid #f63c42;
  }
  .p-cheersVoice__inner:before {
    content: "";
    display: block;
    width: 28rem;
    height: 2px;
    background: #f63c42;
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    top: 0;
  }
}
.p-cheersVoice__title {
  text-align: center;
  font-size: 31px;
  font-size: 3.1rem;
  line-height: 1.064516129;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-cheersVoice__title {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-cheersVoice__slider {
  margin-top: 5rem;
  visibility: visible !important;
}
.p-cheersVoice .splide__track {
  overflow: visible;
}
.p-cheersVoice__item {
  padding-inline: 5.5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersVoice__item {
    padding-inline: 2.5rem;
  }
}
.p-cheersVoice__list {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.p-cheersVoice__itemInner {
  display: block;
  width: 45.5rem;
  height: 100%;
  padding-block: 3rem;
  border: 2px solid #f63c42;
  background-color: #ffffff;
  border-radius: 1rem;
  -webkit-box-shadow: 1.5rem -1.5rem 0 #f63c42;
          box-shadow: 1.5rem -1.5rem 0 #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-cheersVoice__itemInner {
    width: 30.4rem;
    padding-block: 1.5rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 1rem -1rem 0 #f63c42;
            box-shadow: 1rem -1rem 0 #f63c42;
  }
}
.p-cheersVoice__itemName {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-cheersVoice__itemName {
    font-size: 1.7rem;
  }
}
.p-cheersVoice__itemImage {
  margin-top: 2rem;
  width: 21rem;
  height: auto;
  aspect-ratio: 1/1;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-cheersVoice__itemImage {
    margin-top: 1rem;
    width: 14rem;
  }
}
.p-cheersVoice__itemImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-cheersVoice__itemTitle {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
  font-weight: 900;
  text-align: center;
  width: 36.5rem;
  margin-inline: auto;
  border-bottom: 2px solid #f63c42;
  padding-bottom: 1.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersVoice__itemTitle {
    width: 24.3rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-weight: 900;
  }
}
.p-cheersVoice__itemText {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 36.5rem;
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersVoice__itemText {
    width: 24.3rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}

/* #p-cheersBusiness
----------------------------------------------------------------- */
.p-cheersBusiness {
  width: 100%;
}
.p-cheersBusiness__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 8.5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersBusiness__inner {
    width: 100%;
    padding-block: 2.4rem 4rem;
    position: relative;
    border-top: 0px solid #f63c42;
  }
  .p-cheersBusiness__inner:before {
    content: "";
    display: block;
    width: 28rem;
    height: 2px;
    background: #f63c42;
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    top: 0;
  }
}
.p-cheersBusiness__title h2 {
  text-align: center;
  font-size: 31px;
  font-size: 3.1rem;
  line-height: 1.064516129;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-cheersBusiness__title h2 {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-cheersBusiness__title p {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersBusiness__title p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-cheersBusiness__list {
  margin-top: 2.6rem;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: 31.4rem 4.2rem 31.4rem 4.2rem 31.4rem;
  grid-template-columns: repeat(3, 31.4rem);
  gap: 4.2rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersBusiness__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2rem;
    row-gap: 2.2rem;
    width: 34.5rem;
    margin-inline: auto;
  }
}
.p-cheersBusiness__item {
  width: 100%;
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  border: min(3px, 0.5rem) solid #f63c42;
  border-top-right-radius: 4.3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 4;
  grid-row: span 4;
  row-gap: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersBusiness__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.2rem;
  }
}
.p-cheersBusiness__image {
  width: 23.5rem;
  margin-inline: auto;
  padding-block: 2.2rem;
  border-bottom: 2px solid #f63c42;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px ) {
  .p-cheersBusiness__image {
    width: 26rem;
    padding-block: 1.5rem;
  }
}
.p-cheersBusiness__text {
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.3846153846;
  letter-spacing: 0.05em;
  font-weight: 800;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px ) {
  .p-cheersBusiness__text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.05em;
    font-weight: 800;
  }
}
.p-cheersBusiness__subtitle {
  text-align: center;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px ) {
  .p-cheersBusiness__subtitle {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.05em;
    font-weight: 900;
  }
}

/* #p-cheersCommunity
----------------------------------------------------------------- */
.p-cheersCommunity {
  width: 100%;
  background: #ffffff;
}
.p-cheersCommunity__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 7rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersCommunity__inner {
    width: 34.5rem;
    padding-block: 4rem;
  }
}
.p-cheersCommunity__title {
  text-align: center;
  font-size: 31px;
  font-size: 3.1rem;
  line-height: 1.064516129;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-cheersCommunity__title {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-cheersCommunity__image {
  width: 104rem;
  height: auto;
  margin-inline: auto;
  margin-top: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersCommunity__image {
    width: 100dvw;
    margin-top: 3rem;
    margin-left: -1.5rem;
  }
}
.p-cheersCommunity__text {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-cheersCommunity__text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
.p-cheersCommunity__list {
  margin-top: 2.6rem;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: 32rem 4rem 32rem 4rem 32rem;
  grid-template-columns: repeat(3, 32rem);
  gap: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersCommunity__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3rem;
    row-gap: 2.2rem;
    width: 26.5rem;
    margin-inline: auto;
  }
}
.p-cheersCommunity__item {
  width: 100%;
}
.p-cheersCommunity__item a {
  width: 100%;
  height: 6.5rem;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.3529411765;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-cheersCommunity__item a {
    height: 4.5rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
.p-cheersCommunity__item a span {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.9166666667;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-cheersCommunity__item a span {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}

/* #p-cheersImpact
----------------------------------------------------------------- */
.p-cheersImpact {
  width: 100%;
}
.p-cheersImpact__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 7rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-cheersImpact__title h2 {
  width: 49.4rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__title h2 {
    width: 24.7rem;
  }
}
.p-cheersImpact__title p {
  line-height: 1.5;
}
.p-cheersImpact__block {
  width: 104rem;
  margin-inline: auto;
  margin-top: 8rem;
  background: #ffffff;
  border-top: 3px solid #f63c42;
  padding-block: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__block {
    width: 32rem;
    margin-inline: auto;
    margin-top: 4rem;
    padding-block: 3rem;
  }
}
.p-cheersImpact__blockTitle {
  text-align: center;
  font-size: 31px;
  font-size: 3.1rem;
  line-height: 1.2580645161;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__blockTitle {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-cheersImpact__blockText {
  text-align: center;
  margin-top: 4rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__blockText {
    margin-top: 2rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-cheersImpact__blockImage {
  width: 85rem;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__blockImage {
    width: 100%;
    margin-top: 3rem;
  }
}
.p-cheersImpact__jichi {
  width: 73.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__jichi {
    width: 28rem;
  }
}
.p-cheersImpact__jichiItem {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 2px solid #00004b;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__jichiItem {
    padding-top: 3rem;
    margin-top: 3rem;
  }
}
.p-cheersImpact__jichiItem:first-of-type {
  padding-top: 0rem;
  border-top: 0px solid #00004b;
}
.p-cheersImpact__jichiKen {
  padding: 0.5rem 1.5rem;
  border: 2px solid #00004b;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.15em;
  font-weight: 900;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__jichiKen {
    padding: 0.2rem 1rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-cheersImpact__jichiName {
  margin-top: 3rem;
  padding-left: 1.5rem;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2727272727;
  letter-spacing: 0.1em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__jichiName {
    margin-top: 1.5rem;
    padding-left: 0.75rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 900;
  }
}
.p-cheersImpact__jichiLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
  padding-left: 1.5rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__jichiLink {
    margin-top: 1.5rem;
    padding-left: 0.75rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-cheersImpact__jichiLink a {
  color: #71c7dd;
  text-decoration: underline;
  word-break: break-all;
}
.p-cheersImpact__jichiLink a:hover {
  text-decoration: none;
}
.p-cheersImpact__jichiLink span {
  white-space: nowrap;
}
.p-cheersImpact__jichiDl:first-of-type {
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__jichiDl:first-of-type {
    margin-top: 1.5rem;
  }
}
.p-cheersImpact__jichiDl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__jichiDl {
    padding-left: 0.75rem;
  }
}
.p-cheersImpact__jichiDl dt,
.p-cheersImpact__jichiDl dd {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__jichiDl dt,
  .p-cheersImpact__jichiDl dd {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-cheersImpact__jichiDl dt {
  white-space: nowrap;
}
.p-cheersImpact__box {
  width: 88.5rem;
  margin-inline: auto;
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 2px solid #00004b;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__box {
    width: 29rem;
    padding-top: 3rem;
    margin-top: 3rem;
  }
}
.p-cheersImpact__box:first-of-type {
  padding-top: 0rem;
  border-top: 0px solid #00004b;
}
.p-cheersImpact__boxTitle {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2727272727;
  letter-spacing: 0.15em;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__boxTitle {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-cheersImpact__button {
  width: 50rem;
  height: 6rem;
  margin-inline: auto;
  margin-top: 8rem;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__button {
    width: 26.5rem;
    height: 4.5rem;
    margin-top: 3rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-cheersImpact__collabo {
  width: 100%;
  margin-top: 6.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 3.4rem;
     -moz-column-gap: 3.4rem;
          column-gap: 3.4rem;
  row-gap: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__collabo {
    display: -ms-grid;
    display: grid;
    margin-top: 2.5rem;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.p-cheersImpact__collabo a {
  width: 21.8rem;
  display: block;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-cheersImpact__collabo a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__collabo a {
    width: 100%;
  }
}
.p-cheersImpact__collabo a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 218/120;
}
.p-cheersImpact__collabo a span {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.p-cheersImpact__map {
  width: 100%;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 26rem 1fr 26rem;
  grid-template-columns: 26rem 1fr 26rem;
  position: relative;
  margin-top: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 29rem;
    margin-top: 3rem;
    row-gap: 1.6rem;
  }
}
.p-cheersImpact__mapImage {
  width: 33.1rem;
  height: auto;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__mapImage {
    width: 29rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: absolute;
    opacity: 0.1;
    top: 0;
    bottom: 0;
    margin-block: auto;
  }
}
.p-cheersImpact__mapBlock {
  width: 100%;
  height: auto;
}
.p-cheersImpact__mapBlock--01 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.p-cheersImpact__mapBlock--02 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.p-cheersImpact__mapBlock--03 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}
.p-cheersImpact__mapBlock--04 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.p-cheersImpact__mapBlock--05 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.p-cheersImpact__mapBlock--06 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}
.p-cheersImpact__mapBlock h3 {
  width: 20rem;
  padding-left: 0.9rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0.15em;
  font-weight: 800;
  border-bottom: 2.8px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__mapBlock h3 {
    font-size: 10px;
    font-size: 1rem;
    line-height: 2.6;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__mapBlock ul {
    margin-top: 0.4rem;
  }
}
.p-cheersImpact__mapBlock li {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__mapBlock li {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 2.1111111111;
    letter-spacing: 0.05em;
    font-weight: 800;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__mapBlock--01, .p-cheersImpact__mapBlock--03, .p-cheersImpact__mapBlock--05 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__mapBlock--01 h3, .p-cheersImpact__mapBlock--03 h3, .p-cheersImpact__mapBlock--05 h3 {
    text-align: right;
  }
}
@media screen and (max-width: 767px ) {
  .p-cheersImpact__mapBlock--01 li, .p-cheersImpact__mapBlock--03 li, .p-cheersImpact__mapBlock--05 li {
    text-align: right;
  }
}

/* #p-cheersFaq
----------------------------------------------------------------- */
.p-cheersFaq {
  width: 100%;
}
.p-cheersFaq__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 7rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-cheersFaq__title h2 {
  width: 14rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__title h2 {
    width: 7rem;
  }
}
.p-cheersFaq__block {
  width: 104rem;
  margin-inline: auto;
  background: #ffffff;
  padding-block: 5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__block {
    width: 31.5rem;
    padding-block: 2.5rem;
    margin-top: 2.5rem;
  }
}
.p-cheersFaq__qa {
  width: 77rem;
  margin-inline: auto;
  margin-top: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__qa {
    margin-top: 2rem;
    width: 29rem;
  }
}
.p-cheersFaq__qa:first-of-type {
  margin-top: 0;
}
.p-cheersFaq__q {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2727272727;
  letter-spacing: 0.1em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__q {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-cheersFaq__a {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__a {
    margin-top: 0.75rem;
  }
}
.p-cheersFaq__aText {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding-left: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__aText {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 900;
    padding-left: 1rem;
  }
}
.p-cheersFaq__toggle {
  width: 100%;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__toggle {
    margin-top: 1rem;
  }
}
.p-cheersFaq__toggle:first-of-type {
  margin-top: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__toggle:first-of-type {
    margin-top: 2.5rem;
  }
}
.p-cheersFaq__toggleTitle {
  width: 100%;
  height: 3.8rem;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  border: 3px solid #f63c42;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__toggleTitle {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 800;
    height: 3.5rem;
  }
}
.p-cheersFaq__toggleTitle::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 1.6rem;
  height: 1.9rem;
  background: #f63c42;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__toggleTitle::before {
    width: 1.3rem;
    height: 1.5rem;
  }
}
.p-cheersFaq__toggleTitle.is-open::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.p-cheersFaq__toggleContent {
  height: 0;
  overflow: hidden;
  width: 100%;
  -webkit-transition: height 1s;
  transition: height 1s;
  margin-inline: auto;
  background-color: #fffef2;
}
.p-cheersFaq__subtitle {
  text-align: center;
  width: 50rem;
  margin-inline: auto;
  border-bottom: 2px solid #00004b;
  padding-block: 5rem 1.5rem;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 900;
  margin-top: 8rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__subtitle {
    width: 27rem;
    margin-top: 3rem;
    padding-block: 2rem 1.5rem;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.05em;
    font-weight: 900;
  }
}
.p-cheersFaq__subtitle:first-of-type {
  margin-top: 0;
}
.p-cheersFaq__text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 68rem;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.05em;
    font-weight: 700;
    width: 26.5rem;
    margin-top: 4rem;
  }
}
.p-cheersFaq__text a {
  color: #71c7dd;
  text-decoration: underline;
}
.p-cheersFaq__text a:hover {
  text-decoration: none;
}
.p-cheersFaq__text--center {
  text-align: center;
}
.p-cheersFaq__column {
  display: -ms-grid;
  display: grid;
  width: 68rem;
  margin-inline: auto;
  -ms-grid-columns: 30rem 6rem 30rem;
  grid-template-columns: repeat(2, 30rem);
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__column {
    width: 26.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    row-gap: 2rem;
    margin-top: 3rem;
  }
}
.p-cheersFaq__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__item {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-cheersFaq__itemTitle {
  background: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 1rem 3rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.0714285714;
  letter-spacing: 0.05em;
  font-weight: 900;
  text-align: center;
  border: 2px solid #00004b;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__itemTitle {
    padding: 0.5rem 1.5rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 900;
  }
}
.p-cheersFaq__itemTitle span {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__itemTitle span {
    font-size: 1rem;
  }
}
.p-cheersFaq__itemText {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.0714285714;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__itemText {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-top: 1.5rem;
  }
}
.p-cheersFaq__itemText span {
  color: #f63c42;
}
.p-cheersFaq__itemCaption {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__itemCaption {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-top: 1.5rem;
  }
}
.p-cheersFaq__box {
  width: 68rem;
  margin-inline: auto;
  margin-top: 4rem;
  padding-block: 3rem;
  background: #ffffff;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__box {
    width: 27rem;
    margin-top: 2rem;
    padding-block: 2rem;
  }
}
.p-cheersFaq__boxTitle {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.0714285714;
  letter-spacing: 0.05em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__boxTitle {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
    font-weight: 900;
  }
}
.p-cheersFaq__boxTitle span {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__boxTitle span {
    display: block;
    font-size: 1rem;
  }
}
.p-cheersFaq__boxColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9.6rem;
     -moz-column-gap: 9.6rem;
          column-gap: 9.6rem;
  margin-top: 3rem;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__boxColumn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 5rem;
    margin-top: 2rem;
  }
}
.p-cheersFaq__boxColumn:before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border-top: 2px solid #00004b;
  border-right: 2px solid #00004b;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin-block: auto;
  left: 43.5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__boxColumn:before {
    width: 1.6rem;
    height: 1.6rem;
    top: 12rem;
    bottom: auto;
    margin-inline: auto;
    left: 0;
    right: 0;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}
.p-cheersFaq__boxColumn dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__boxColumn dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.75rem;
    margin-top: 0;
  }
}
.p-cheersFaq__boxColumn dt {
  background: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0.5rem 1rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 900;
  text-align: center;
  border: 2px solid #00004b;
  width: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__boxColumn dt {
    padding: 0.5rem 1rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 900;
  }
}
.p-cheersFaq__boxColumn dd {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 100%;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__boxColumn dd {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-align: center;
  }
}
.p-cheersFaq__boxColumn p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.p-cheersFaq__boxColumnInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__boxColumnInner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
.p-cheersFaq__boxCaption {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__boxCaption {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-top: 0.5rem;
  }
}
.p-cheersFaq__bottom {
  margin-top: 8rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__bottom {
    margin-top: 3rem;
    padding-bottom: 1rem;
  }
}
.p-cheersFaq__toggleClose {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-cheersFaq__toggleClose {
    font-size: 1rem;
  }
}

/* #p-cheersDonation
----------------------------------------------------------------- */
.p-cheersDonation {
  width: 100%;
}
.p-cheersDonation__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 7rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersDonation__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-cheersDonation__title h2 {
  width: 34.7rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersDonation__title h2 {
    width: 18rem;
  }
}
.p-cheersDonation__buttons {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersDonation__buttons {
    row-gap: 1.5rem;
    margin-top: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-cheersDonation__button {
  width: 33.5rem;
  height: 6.5rem;
  margin: 0;
}
@media screen and (max-width: 767px ) {
  .p-cheersDonation__button {
    width: 26.5rem;
    height: 3rem;
  }
}
.p-cheersDonation__text {
  margin-top: 5rem;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-cheersDonation__text {
    margin-top: 2.5rem;
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}

/* #p-cheersOther
----------------------------------------------------------------- */
.p-cheersOther {
  width: 100%;
  background: #ffffff;
}
.p-cheersOther__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 7rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersOther__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-cheersOther__title h2 {
  width: 42rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersOther__title h2 {
    width: 21rem;
  }
}
.p-cheersOther__text {
  margin-top: 5rem;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-cheersOther__text {
    margin-top: 1.5rem;
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-cheersOther__column {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33.5rem 6rem 33.5rem;
  grid-template-columns: repeat(2, 33.5rem);
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
  margin-top: 6rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px ) {
  .p-cheersOther__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 5rem;
  }
}
.p-cheersOther__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
@media screen and (max-width: 767px ) {
  .p-cheersOther__item {
    display: block;
  }
}
.p-cheersOther__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5.2rem;
     -moz-column-gap: 5.2rem;
          column-gap: 5.2rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersOther__sns {
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }
}
.p-cheersOther__sns a {
  width: 6.7rem;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-cheersOther__sns a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .p-cheersOther__sns a {
    width: 4.5rem;
  }
}
.p-cheersOther__caption {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.0714285714;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersOther__caption {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-top: 1.5rem;
  }
}
.p-cheersOther__button {
  width: 33.5rem;
  height: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersOther__button {
    width: 26.5rem;
    height: 3rem;
  }
}

/* #p-cheersAbout
----------------------------------------------------------------- */
.p-cheersAbout {
  width: 100%;
}
.p-cheersAbout__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 6.5rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersAbout__inner {
    width: 34.5rem;
    padding-block: 3rem 4.5rem;
  }
}
.p-cheersAbout__title h2 {
  width: 33.8rem;
}
@media screen and (max-width: 767px ) {
  .p-cheersAbout__title h2 {
    width: 16.9rem;
  }
}
.p-cheersAbout__logo {
  display: block;
  width: 43.7rem;
  height: auto;
  margin-inline: auto;
  margin-top: 8.3rem;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-cheersAbout__logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .p-cheersAbout__logo {
    width: 15.8rem;
    margin-top: 3.4rem;
  }
}
.p-cheersAbout__text {
  text-align: center;
  margin-top: 7.5rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-cheersAbout__text {
    margin-top: 3rem;
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}

/* #p-cheersSticky
----------------------------------------------------------------- */
.p-cheersSticky {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  right: 0;
  bottom: 35%;
  z-index: 50;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.p-cheersSticky.is-hide {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.p-cheersSticky--inactive {
  display: none;
}
@media screen and (max-width: 767px ) {
  .p-cheersSticky {
    bottom: 5%;
  }
}
.p-cheersSticky__link {
  width: 18.5rem;
  height: 8.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.5rem;
  background: #f63c42;
  border: 4px solid #00004b;
  border-right: 0px solid #00004b;
  border-top-left-radius: 100vmax;
  border-bottom-left-radius: 100vmax;
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 767px ) {
  .p-cheersSticky__link {
    width: 13rem;
    height: 6.7rem;
    row-gap: 0.3rem;
  }
}
.p-cheersSticky__link:hover {
  -webkit-transform: translateX(1.5rem);
          transform: translateX(1.5rem);
}
@media screen and (max-width: 767px ) {
  .p-cheersSticky__link:hover {
    -webkit-transform: translateX(1rem);
            transform: translateX(1rem);
  }
}
.p-cheersSticky__link img {
  width: 13rem;
  height: auto;
}
@media screen and (max-width: 767px ) {
  .p-cheersSticky__link img {
    width: 10rem;
  }
}
.p-cheersSticky__link span {
  text-align: center;
  color: #ffffff;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.3636363636;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-cheersSticky__link span {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 1.4444444444;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}

/* #p-articleSingle
----------------------------------------------------------------- */
.p-articleSingleMain__title {
  width: 14.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-articleSingleMain__title {
    width: 12rem;
  }
}
.p-articleSingleMain__main {
  width: 104rem;
  margin: 3.5rem auto 0 auto;
  background-color: #fffef2;
  padding-block: 3rem 5rem;
}
@media screen and (max-width: 767px ) {
  .p-articleSingleMain__main {
    width: 34.5rem;
    margin: 2rem auto 0 auto;
    padding-block: 2.6rem 4.7rem;
  }
}
.p-articleSingleMain__headData {
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #f63c42;
  text-align: right;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.15em;
  font-weight: 800;
  padding-right: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-articleSingleMain__headData {
    padding-bottom: 0;
    border-bottom: 3px solid #f63c42;
    font-size: 10px;
    font-size: 1rem;
    line-height: 2.6;
    letter-spacing: 0.15em;
    font-weight: 800;
    padding-right: 2rem;
  }
}
.p-articleSingleMain__headInfo {
  width: 85rem;
  margin: 4rem auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-articleSingleMain__headInfo {
    width: 31.5rem;
    margin: 2.5rem auto 0 auto;
  }
}
.p-articleSingleMain__infoDate {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-articleSingleMain__infoDate {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 2.1818181818;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-articleSingleMain__infoCategory {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}
@media screen and (max-width: 767px ) {
  .p-articleSingleMain__infoCategory {
    -webkit-column-gap: 1.2rem;
       -moz-column-gap: 1.2rem;
            column-gap: 1.2rem;
  }
}
.p-articleSingleMain__infoCategory li {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-articleSingleMain__infoCategory li {
    font-size: 10px;
    font-size: 1rem;
    line-height: 2.4;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-articleSingleMain__infoTitle {
  width: 85rem;
  margin-inline: auto;
  margin-top: 3rem;
  border-left: 3px solid #00004b;
  padding-left: 0.8em;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.3181818182;
  letter-spacing: 0.1em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-articleSingleMain__infoTitle {
    width: 31.5rem;
    margin: 2.5rem auto 0 auto;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-articleSingleMain__button {
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-articleSingleMain__button {
    margin-top: 2.5rem;
  }
}

/* #p-articlesingleBottom
----------------------------------------------------------------- */
.p-articlesingleBottom {
  width: 104rem;
  margin: 4rem auto 0rem auto;
  padding-block: 8rem 11rem;
  background-color: #fffef2;
  border-top: 2px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-articlesingleBottom {
    width: 34.5rem;
    margin: 2rem auto 0rem auto;
    padding-block: 2.5rem 5rem;
    border-top: 1.4px solid #f63c42;
  }
}
.p-articlesingleBottom__title {
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 0.9428571429;
  letter-spacing: 0.15em;
  font-weight: 800;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-articlesingleBottom__title {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.5384615385;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-articlesingleBottom__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8rem 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 8rem;
     -moz-column-gap: 8rem;
          column-gap: 8rem;
  row-gap: 7.6rem;
  width: 85rem;
  margin: 10.2rem auto 0 auto;
}
@media screen and (max-width: 767px ) {
  .p-articlesingleBottom__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 4.8rem;
    width: 30.6rem;
    margin: 5rem auto 0 auto;
  }
}
.p-articlesingleBottom__item {
  position: relative;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-articlesingleBottom__item:hover {
  opacity: 0.7;
}
.p-articlesingleBottom__item a {
  width: 100%;
  height: 100%;
}
.p-articlesingleBottom__itemBg {
  position: absolute;
  background-color: #f63c42;
  border-top-right-radius: 1.2rem;
  width: 100%;
  height: 115%;
  top: -3.3rem;
  left: 1.2rem;
  padding: 0.6rem 1.7rem;
}
@media screen and (max-width: 767px ) {
  .p-articlesingleBottom__itemBg {
    border-top-right-radius: 1rem;
    width: 99%;
    height: 121%;
    padding: 1rem 1.7rem;
  }
}
.p-articlesingleBottom__itemBg span {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: #ffffff;
}
@media screen and (max-width: 767px ) {
  .p-articlesingleBottom__itemBg span {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-articlesingleBottom__itemWrap {
  border: 3px solid #f63c42;
  border-top-right-radius: 0.9rem;
  padding: 1rem 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  height: 100%;
}
@media screen and (max-width: 767px ) {
  .p-articlesingleBottom__itemWrap {
    border: 2px solid #f63c42;
    border-top-right-radius: 0.7rem;
    padding: 1rem;
  }
}
.p-articlesingleBottom__itemImage {
  width: 10.7rem;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px ) {
  .p-articlesingleBottom__itemImage {
    width: 8.6rem;
  }
}
.p-articlesingleBottom__itemImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-articlesingleBottom__itemInfo {
  width: 21.8rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px ) {
  .p-articlesingleBottom__itemInfo {
    width: 17.6rem;
  }
}
.p-articlesingleBottom__infoText {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-articlesingleBottom__infoText {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}
.p-articlesingleBottom__infoCategory {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem 0.8rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0.15em;
  font-weight: 700;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px ) {
  .p-articlesingleBottom__infoCategory {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-articlesingleBottom__tablist {
  margin: 8.9rem auto 0 auto;
}
@media screen and (max-width: 767px ) {
  .p-articlesingleBottom__tablist {
    margin: 4rem auto 0 auto;
  }
}

/* #p-article
----------------------------------------------------------------- */
.p-article__title {
  padding-top: 2.2rem;
}
@media screen and (max-width: 767px ) {
  .p-article__title {
    padding-top: 2rem;
  }
}
.p-article__title h1,
.p-article__title h2 {
  margin-inline: auto;
  display: block;
  width: 18.7rem;
}
@media screen and (max-width: 767px ) {
  .p-article__title h1,
  .p-article__title h2 {
    width: 15.6rem;
  }
}
.p-article__title p {
  text-align: center;
  display: block;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px ) {
  .p-article__title p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-article__top {
  width: 130.6rem;
  margin-inline: auto;
  margin-top: 4.7rem;
  background-color: #fffef2;
  padding-block: 5.8rem;
}
@media screen and (max-width: 767px ) {
  .p-article__top {
    width: 37.5rem;
    padding-block: 2rem;
    margin-top: 2.5rem;
  }
}
.p-article__toptab {
  margin: 0 auto;
}
.p-article__toptab--02 {
  margin-top: 8.9rem;
}
@media screen and (max-width: 767px ) {
  .p-article__toptab--02 {
    margin-top: 4rem;
  }
}

/* #p-articleList
----------------------------------------------------------------- */
.p-articleList {
  width: 104rem;
  margin-inline: auto;
  margin-top: 9rem;
}
@media screen and (max-width: 767px ) {
  .p-articleList {
    width: 34.5rem;
    margin-top: 0;
  }
}
.p-articleList__listInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-articleList__listInner {
    row-gap: 2rem;
  }
}
.p-articleList__listItem {
  background-color: #fffef2;
  border-top: 3px solid #f63c42;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-articleList__listItem:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .p-articleList__listItem {
    padding: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-articleList__image {
  width: 41rem;
  aspect-ratio: 410/260;
}
@media screen and (max-width: 767px ) {
  .p-articleList__image {
    width: 31.5rem;
    height: 16rem;
    aspect-ratio: 107/108;
  }
}
.p-articleList__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-articleList__info {
  width: 54rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-articleList__info {
    width: 31.5rem;
  }
}
.p-articleList__time {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-articleList__time {
    border-bottom: 2px solid #f63c42;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 2.1818181818;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-articleList__title {
  border-top: 2px solid #f63c42;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 0.8rem;
  padding-top: 1.2rem;
}
@media screen and (max-width: 767px ) {
  .p-articleList__title {
    border-top: none;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-articleList__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-top: auto;
}
@media screen and (max-width: 767px ) {
  .p-articleList__category {
    margin-top: 4.5rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 2.4;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}

/* #p-summitTop
----------------------------------------------------------------- */
.p-summitTop {
  width: 100%;
  background: url(./images/summit/top_bg_other.jpg) repeat-x center/auto 100%;
  padding-block: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-summitTop {
    padding-block: 1.5rem;
  }
}
.p-summitTop__inner {
  width: 122.6rem;
  height: 54rem;
  background: #ffffff;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-summitTop__inner {
    width: 34.5rem;
    height: auto;
    padding-block: 1rem;
  }
}
.p-summitTop__category {
  text-align: center;
  color: #f63c42;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.056em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-summitTop__category {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.056em;
    font-weight: 700;
  }
}
.p-summitTop__logo {
  width: 57.4rem;
  height: auto;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-summitTop__logo {
    width: 18.7rem;
    margin-top: 0.5rem;
  }
}
.p-summitTop__title {
  text-align: center;
  font-size: 80px;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-top: 2.2rem;
  color: #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-summitTop__title {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 800;
    margin-top: 2.2rem;
  }
}
.p-summitTop__area {
  margin-top: 4.5rem;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 5.6rem;
  border-radius: 2.8rem;
  padding-inline: 1.2em;
  color: #ffffff;
  background: #f63c42;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px ) {
  .p-summitTop__area {
    margin-top: 2.5rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.15em;
    font-weight: 700;
    min-height: 2.5rem;
    border-radius: 100vmax;
    padding-inline: 0.5rem 1.2em;
    min-width: 14.5rem;
    max-width: 90%;
    text-align: center;
  }
}
.p-summitTop--advanced {
  background: url(./images/summit/top_bg_advanced.jpg) repeat-x center/auto 100%;
}
.p-summitTop--advanced .p-summitTop__category {
  color: #71c7dd;
}
.p-summitTop--advanced .p-summitTop__title {
  color: #71c7dd;
}
.p-summitTop--advanced .p-summitTop__area {
  background: #71c7dd;
}
.p-summitTop--zenkoku {
  background: url(./images/summit/top_bg_zenkoku.jpg) repeat-x center/auto 100%;
}

/* #p-summitInfo
----------------------------------------------------------------- */
.p-summitInfo {
  width: 100%;
  background: #ffffff;
  padding-block: 3.2rem;
}
@media screen and (max-width: 767px ) {
  .p-summitInfo {
    padding-block: 1.5rem;
  }
}
.p-summitInfo__inner {
  width: 94rem;
  height: auto;
  margin-inline: auto;
  background: #fffdf0;
  padding: 4rem 8.5rem 3.4rem 8.5rem;
}
@media screen and (max-width: 767px ) {
  .p-summitInfo__inner {
    width: 34.5rem;
    padding: 1.5rem 1.5rem 2.5rem;
  }
}
.p-summitInfo__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px ) {
  .p-summitInfo__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.p-summitInfo__headKikan {
  width: 100%;
  height: 3.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid #f63c42;
  color: #f63c42;
  padding-inline: 2rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.15em;
  font-weight: 700;
  background: #ffffff;
}
@media screen and (max-width: 767px ) {
  .p-summitInfo__headKikan {
    height: auto;
    padding: 0.2rem 0.5rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-summitInfo__headFee {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12rem;
  height: 3.8rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
  background: #f63c42;
  color: #ffffff;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-summitInfo__headFee {
    width: auto;
    height: auto;
    padding: 0.2rem 1.5rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-summitInfo__table {
  margin-top: 2.8rem;
  width: 100%;
  border-bottom: 1px solid #00004b;
}
@media screen and (max-width: 767px ) {
  .p-summitInfo__table {
    margin-top: 1.5rem;
  }
}
.p-summitInfo__table dl {
  border-top: 1px solid #00004b;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #00004b;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.056em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-summitInfo__table dl {
    padding: 0.2rem 0.5rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.056em;
    font-weight: 700;
  }
}
.p-summitInfo__table dt {
  width: 12rem;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px ) {
  .p-summitInfo__table dt {
    width: 9.5rem;
  }
}
.p-summitInfo__table dd {
  width: 100%;
  padding-left: 2rem;
  word-break: break-all;
}
@media screen and (max-width: 767px ) {
  .p-summitInfo__table dd {
    padding-left: 0.5rem;
  }
}
.p-summitInfo__entry {
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-summitInfo__entry {
    margin-top: 1.5rem;
    row-gap: 1rem;
  }
}
.p-summitInfo__entry p {
  color: #00004b;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.056em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-summitInfo__entry p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.056em;
    font-weight: 700;
  }
}
.p-summitInfo__entry a {
  width: 48.4rem;
  height: 5rem;
  border-radius: 100vmax;
  display: -ms-grid;
  display: grid;
  place-content: center;
  border: 4px solid #3bdcff;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  background: #ffffff;
}
@media screen and (max-width: 767px ) {
  .p-summitInfo__entry a {
    width: 26.5rem;
    height: 2.6rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}

/* #p-summitList
----------------------------------------------------------------- */
.p-summitList {
  width: 100%;
  background: #ffffff;
}
.p-summitList__inner {
  width: 122.6rem;
  margin-inline: auto;
  padding-block: 6.3rem 10.5rem;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-summitList__inner {
    width: 34.5rem;
    padding-block: 3rem;
  }
}
.p-summitList__title h2 {
  width: 30.3rem;
}
@media screen and (max-width: 767px ) {
  .p-summitList__title h2 {
    width: 15rem;
  }
}
.p-summitList__smallTitle {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  border-bottom: 3px solid #00004b;
  padding-bottom: 4rem;
  width: 77rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-summitList__smallTitle {
    width: 28rem;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 700;
    padding-bottom: 1.5rem;
  }
}
.p-summitList__block {
  padding-block: 5.5rem 6rem;
  border-top: 3px solid #00004b;
  width: 77rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-summitList__block {
    padding-block: 2.5rem;
    width: 34.5rem;
  }
}
.p-summitList__block:first-of-type {
  border-top: 0px;
}
.p-summitList__blockTitle {
  text-align: center;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-summitList__blockTitle {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-summitList__blockList {
  margin-top: 1.5rem;
  display: -ms-grid;
  display: grid;
  width: 100%;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  -ms-grid-columns: 11.5rem 1.5rem 11.5rem 1.5rem 11.5rem 1.5rem 11.5rem 1.5rem 11.5rem 1.5rem 11.5rem;
  grid-template-columns: repeat(6, 11.5rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px ) {
  .p-summitList__blockList {
    margin-top: 1rem;
    gap: 1rem;
    -ms-grid-columns: 9.5rem 1rem 9.5rem 1rem 9.5rem;
    grid-template-columns: repeat(3, 9.5rem);
  }
}
.p-summitList__blockList li {
  width: 100%;
  height: 2.8rem;
  border-radius: 100vmax;
  background: #00004b;
  border: 2px solid #00004b;
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: #ffffff;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px ) {
  .p-summitList__blockList li {
    height: 2.3rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-summitList__blockList li:hover, .p-summitList__blockList li.is-active {
  background: #ffffff;
  color: #00004b;
}
.p-summitList__blockMain {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-summitList__blockMain {
    row-gap: 1.5rem;
  }
}
.p-summitList__blockFoot {
  margin-top: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-summitList__blockFoot {
    margin-top: 1.5rem;
  }
}
.p-summitList__blockFoot a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 5rem;
  padding-inline: 2em;
  border-radius: 100vmax;
  display: -ms-grid;
  display: grid;
  place-content: center;
  border: 4px solid #3bdcff;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  background: #ffffff;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-summitList__blockFoot a {
    height: 2.6rem;
    padding-inline: 1em;
    white-space: nowrap;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-summitList__blockFoot p {
  color: #00004b;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.9166666667;
  letter-spacing: 0.15em;
  font-weight: 800;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-summitList__blockFoot p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-top: 1rem;
  }
}

/* #p-summitPartner
----------------------------------------------------------------- */
.p-summitPartner {
  width: 100%;
  background: #ffffff;
  padding-block: 8.5rem 3rem;
}
.p-summitPartner__title {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.0454545455;
  letter-spacing: 0.05em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-summitPartner__title {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.05em;
    font-weight: 800;
  }
}
.p-summitPartner__block01 {
  margin-top: 2rem;
  width: 77rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-summitPartner__block01 {
    width: 28rem;
  }
}
.p-summitPartner__block01 a,
.p-summitPartner__block01 span {
  display: block;
  width: 77rem;
  height: auto;
  aspect-ratio: 770/385;
}
@media screen and (max-width: 767px ) {
  .p-summitPartner__block01 a,
  .p-summitPartner__block01 span {
    width: 28rem;
  }
}
.p-summitPartner__block01 a img,
.p-summitPartner__block01 span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-summitPartner__block01 a {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-summitPartner__block01 a:hover {
  opacity: 0.7;
}
.p-summitPartner__block02 {
  margin-top: 3.2rem;
  width: 77rem;
  height: auto;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px ) {
  .p-summitPartner__block02 {
    margin-top: 1rem;
    width: 28rem;
    gap: 0.6rem;
  }
}
.p-summitPartner__block02 a,
.p-summitPartner__block02 span {
  display: block;
  width: 37rem;
  height: auto;
  aspect-ratio: 770/385;
}
@media screen and (max-width: 767px ) {
  .p-summitPartner__block02 a,
  .p-summitPartner__block02 span {
    width: 13.5rem;
  }
}
.p-summitPartner__block02 a img,
.p-summitPartner__block02 span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-summitPartner__block02 a {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-summitPartner__block02 a:hover {
  opacity: 0.7;
}
.p-summitPartner__block03 {
  margin-top: 3.2rem;
  width: 77rem;
  height: auto;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px ) {
  .p-summitPartner__block03 {
    width: 28rem;
    margin-top: 1rem;
    gap: 0.6rem;
  }
}
.p-summitPartner__block03 a,
.p-summitPartner__block03 span {
  display: block;
  width: 23.5rem;
  height: auto;
  aspect-ratio: 770/385;
}
@media screen and (max-width: 767px ) {
  .p-summitPartner__block03 a,
  .p-summitPartner__block03 span {
    width: 8.6rem;
  }
}
.p-summitPartner__block03 a img,
.p-summitPartner__block03 span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-summitPartner__block03 a {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-summitPartner__block03 a:hover {
  opacity: 0.7;
}
.p-summitPartner__block04 {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px ) {
  .p-summitPartner__block04 {
    margin-top: 2.5rem;
  }
}
.p-summitPartner__block04 p {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #000000;
}
@media screen and (max-width: 767px ) {
  .p-summitPartner__block04 p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 600;
  }
}

/* #p-awardTop
----------------------------------------------------------------- */
.p-awardTop__title {
  padding-top: 2.2rem;
}
@media screen and (max-width: 767px ) {
  .p-awardTop__title {
    padding-top: 2rem;
  }
}
.p-awardTop__title h1 {
  margin-inline: auto;
  display: block;
  width: 12.8rem;
}
@media screen and (max-width: 767px ) {
  .p-awardTop__title h1 {
    width: 10.6rem;
  }
}
.p-awardTop__title p {
  text-align: center;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px ) {
  .p-awardTop__title p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-awardTop__fv {
  margin-top: 2rem;
  position: relative;
}
.p-awardTop__fvItem {
  width: 86rem;
}
@media screen and (max-width: 767px ) {
  .p-awardTop__fvItem {
    width: 38rem;
  }
}
.p-awardTop__fvCatch {
  position: absolute;
  top: 14rem;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media screen and (max-width: 767px ) {
  .p-awardTop__fvCatch {
    top: 12.5rem;
  }
}
.p-awardTop__fvCatchTitle {
  font-size: 53px;
  font-size: 5.3rem;
  line-height: 1.3962264151;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.8);
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px ) {
  .p-awardTop__fvCatchTitle {
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.8);
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.3333333333;
    letter-spacing: 0.1em;
    font-weight: 800;
  }
}
.p-awardTop__fvCatchLogo {
  width: 31.8rem;
  margin-inline: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-awardTop__fvCatchLogo {
    width: 22rem;
    margin-top: 5.5rem;
  }
}
.p-awardTop__fvBottom {
  width: 88rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 44rem 44rem;
  grid-template-columns: 44rem 44rem;
  margin: 3rem auto;
  border: 4px solid #3bdcff;
  background-color: #fffef2;
  padding-block: 1rem;
}
@media screen and (max-width: 767px ) {
  .p-awardTop__fvBottom {
    width: 34.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 2.5rem auto;
    padding: 0 1.2rem;
  }
}
.p-awardTop__fvInfo {
  text-align: center;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.5882352941;
  letter-spacing: 0.15em;
  font-weight: 800;
}
.p-awardTop__fvInfo:nth-child(2) {
  border-left: 4px solid #3bdcff;
}
@media screen and (max-width: 767px ) {
  .p-awardTop__fvInfo:nth-child(2) {
    border-left: 0px solid #3bdcff;
    border-top: 4px solid #3bdcff;
  }
}
@media screen and (max-width: 767px ) {
  .p-awardTop__fvInfo {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.4166666667;
    letter-spacing: 0.15em;
    font-weight: 800;
    padding-block: 1.2rem;
  }
}
.p-awardTop__note {
  text-align: center;
  padding-block: 5rem;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.5238095238;
  letter-spacing: 0.1em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-awardTop__note {
    padding-block: 3rem;
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.6363636364;
    letter-spacing: 0.1em;
    font-weight: 800;
  }
}

/* #p-awardAbout
----------------------------------------------------------------- */
.p-awardAbout {
  background-color: #fffef2;
}
.p-awardAbout__inner {
  padding-block: 7rem 7.8rem;
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-awardAbout__inner {
    width: 34.5rem;
    padding-block: 2.5rem 5rem;
  }
}
.p-awardAbout__title h2 {
  width: 82.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-awardAbout__title h2 {
    width: 23.5rem;
  }
}
.p-awardAbout__text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-awardAbout__text {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-awardAbout__contentWrap {
  width: 100%;
  margin-top: 7rem;
}
@media screen and (max-width: 767px ) {
  .p-awardAbout__contentWrap {
    overflow-x: scroll;
    margin-top: 3rem;
  }
}
.p-awardAbout__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 37.7rem 5rem 37.7rem 5rem 37.7rem;
  grid-template-columns: repeat(3, 37.7rem);
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-awardAbout__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 23.2rem 3.5rem 23.2rem 3.5rem 23.2rem;
    grid-template-columns: repeat(3, 23.2rem);
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
    padding: 0 6.5rem 2rem;
  }
}
.p-awardAbout__contentInner {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
}
.p-awardAbout__contentInner h3 {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.5217391304;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-align: center;
  margin-top: auto;
}
@media screen and (max-width: 767px ) {
  .p-awardAbout__contentInner h3 {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.3333333333;
    letter-spacing: 0.1em;
    font-weight: 800;
  }
}
.p-awardAbout__contentInner p {
  margin-top: 2rem;
  height: 11.3rem;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.6923076923;
  letter-spacing: 0.1em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-awardAbout__contentInner p {
    margin-top: 1rem;
    height: auto;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 800;
  }
}
.p-awardAbout__contentImage {
  margin-top: 4rem;
  width: 36.5rem;
  height: 24.5rem;
  border: 2.25px solid #f63c42;
  border-radius: 0.6rem;
  background-color: #ffffff;
  padding: 2rem;
  -webkit-box-shadow: 2rem -2rem 0 #f63c42;
          box-shadow: 2rem -2rem 0 #f63c42;
  overflow: hidden;
}
@media screen and (max-width: 767px ) {
  .p-awardAbout__contentImage {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    -webkit-box-shadow: 1.5rem -1.5rem 0 #f63c42;
            box-shadow: 1.5rem -1.5rem 0 #f63c42;
    margin-top: 2.2rem;
  }
}
.p-awardAbout__contentImage img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-awardAbout__video {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5.5rem;
  margin-inline: auto;
  -webkit-column-gap: 6.6rem;
     -moz-column-gap: 6.6rem;
          column-gap: 6.6rem;
}
@media screen and (max-width: 767px ) {
  .p-awardAbout__video {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3.7rem;
  }
}
.p-awardAbout__videoTitle {
  width: 48.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-awardAbout__videoTitle {
    width: 27.5rem;
  }
}
.p-awardAbout__videoWrapper {
  width: 58rem;
  height: auto;
  margin-top: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px ) {
  .p-awardAbout__videoWrapper {
    width: 33rem;
    margin-top: 1rem;
  }
}
.p-awardAbout__videoWrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 58/32;
}

/* #p-awardSchedule
----------------------------------------------------------------- */
.p-awardSchedule {
  width: 100%;
  background-color: #ffffff;
}
.p-awardSchedule__inner {
  padding-block: 6.7rem;
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__inner {
    width: 34.5rem;
    padding-block: 2.8rem 4rem;
  }
}
.p-awardSchedule__title h2 {
  width: 83.2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__title h2 {
    width: 18.6rem;
  }
}
.p-awardSchedule__text {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__text {
    margin-top: 2.6rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-awardSchedule__image {
  width: 126.6rem;
  margin: 4.5rem auto 0 auto;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__image {
    width: 28rem;
    margin: 3.3rem auto 0;
  }
}
.p-awardSchedule__infoWrap {
  width: 77rem;
  margin: 4.5rem auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__infoWrap {
    width: 34.5rem;
    margin: 3rem auto 0;
  }
}
.p-awardSchedule__info {
  width: 100%;
}
.p-awardSchedule__infoButton {
  width: 100%;
  height: 3.8rem;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  border: 3px solid #f63c42;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__infoButton {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-weight: 800;
    height: 3.5rem;
  }
}
.p-awardSchedule__infoButton::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 1.6rem;
  height: 1.9rem;
  background: #f63c42;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__infoButton::before {
    width: 1.3rem;
    height: 1.5rem;
  }
}
.p-awardSchedule__infoButton.is-open::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.p-awardSchedule__infoContent {
  height: 0;
  overflow: hidden;
  width: 100%;
  -webkit-transition: height 1s;
  transition: height 1s;
  margin-inline: auto;
  background-color: #fffef2;
}
.p-awardSchedule__infoContent dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 2px solid #00004b;
  padding-block: 3.6rem 6rem;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__infoContent dl {
    width: 28rem;
    margin-inline: auto;
    padding-block: 2.2rem 3.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.5rem;
  }
}
.p-awardSchedule__infoContent dt {
  width: 11rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0.056em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__infoContent dt {
    width: 100%;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.056em;
    font-weight: 700;
  }
}
.p-awardSchedule__infoContent dd {
  width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.056em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__infoContent dd {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.056em;
    font-weight: 700;
  }
}
.p-awardSchedule__infoContent a {
  display: inline-block;
  color: #3baaff;
  text-decoration: underline;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-awardSchedule__infoContent a:hover {
  opacity: 0.7;
}
.p-awardSchedule__infoContentInner {
  width: 100%;
  padding: 2rem 1.7rem;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__infoContentInner {
    padding: 2rem 1.5rem;
  }
}
.p-awardSchedule__infoContentHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__infoContentHead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 4rem;
  }
}
.p-awardSchedule__infoContentHeadKikan {
  width: 100%;
  height: 3.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid #f63c42;
  padding-inline: 2rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.15em;
  font-weight: 700;
  background: #ffffff;
}
.p-awardSchedule__infoContentHeadKikan span {
  color: #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__infoContentHeadKikan {
    height: auto;
    padding: 0.2rem 0.5rem;
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-awardSchedule__infoContentHeadFee {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12rem;
  height: 3.8rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
  background: #f63c42;
  color: #ffffff;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__infoContentHeadFee {
    width: auto;
    height: auto;
    padding: 0.2rem 1.5rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-awardSchedule__infoClose {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.056em;
  font-weight: 700;
  margin-inline: auto;
  cursor: pointer;
  display: block;
}
.p-awardSchedule__button {
  margin: 8rem auto 0 auto;
}
@media screen and (max-width: 767px ) {
  .p-awardSchedule__button {
    width: 26.5rem;
    margin-top: 2rem;
  }
}

/* #p-awardSummits
----------------------------------------------------------------- */
.p-awardSummits {
  width: 100%;
  background-color: #fffef2;
}
.p-awardSummits__inner {
  padding-block: 6.7rem;
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-awardSummits__inner {
    width: 34.5rem;
    padding-block: 2.8rem 5rem;
  }
}
.p-awardSummits__title h2 {
  margin-inline: auto;
  width: 30.2rem;
}
@media screen and (max-width: 767px ) {
  .p-awardSummits__title h2 {
    width: 15.1rem;
  }
}
.p-awardSummits__content {
  width: 100%;
  min-height: 55rem;
  margin-inline: auto;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (37rem)[2];
  grid-template-columns: repeat(2, 37rem);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px ) {
  .p-awardSummits__content {
    margin-top: 3.4rem;
    min-height: 0;
    -ms-grid-columns: (16.5rem)[2];
    grid-template-columns: repeat(2, 16.5rem);
  }
}
.p-awardSummits__mapImage {
  width: 41.7rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 2rem;
}
.p-awardSummits__mapBlock {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.4rem;
}
@media screen and (max-width: 767px ) {
  .p-awardSummits__mapBlock {
    row-gap: 1rem;
  }
}
.p-awardSummits__mapBlock a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: 2px solid #f68684;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
@media screen and (max-width: 767px ) {
  .p-awardSummits__mapBlock a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-awardSummits__mapBlock a:hover {
  border: 2px solid #f63c42;
}
.p-awardSummits__mapBlock a:hover .p-awardSummits__area {
  background-color: #f63c42;
}
.p-awardSummits__area {
  width: 14rem;
  color: #ffffff;
  background-color: #f68684;
  display: -ms-grid;
  display: grid;
  place-content: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.7142857143;
  letter-spacing: 0.05em;
  font-weight: 700;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px ) {
  .p-awardSummits__area {
    width: 100%;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 0.3rem 0.5rem;
    place-content: flex-start;
  }
}
.p-awardSummits__data {
  width: 23rem;
  padding-inline: 1.2rem;
  color: #009bca;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding-block: 0.8rem;
}
@media screen and (max-width: 767px ) {
  .p-awardSummits__data {
    width: 100%;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 0.3rem 0.5rem;
  }
}
.p-awardSummits__online {
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-awardSummits__online {
    margin-top: 3.5rem;
  }
}
.p-awardSummits__online h3 {
  text-align: center;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-awardSummits__online h3 {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-awardSummits__onlineContent {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 41rem 1.4rem 41rem;
  grid-template-columns: repeat(2, 41rem);
  gap: 3rem 1.4rem;
  margin-inline: auto;
  width: 84rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px ) {
  .p-awardSummits__onlineContent {
    width: 34rem;
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-awardSummits__onlineInfo {
  width: 41rem;
  border: 2px solid #f68684;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  display: -ms-grid;
  display: grid;
  gap: 0;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
.p-awardSummits__onlineInfo:hover {
  border: 2px solid #f63c42;
}
.p-awardSummits__onlineInfo:hover h4 {
  background-color: #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-awardSummits__onlineInfo {
    width: 100%;
  }
}
.p-awardSummits__onlineInfo h4 {
  text-align: center;
  padding: 0.8rem 1rem;
  background-color: #f68684;
  color: #ffffff;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px ) {
  .p-awardSummits__onlineInfo h4 {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}
.p-awardSummits__onlineInfo p {
  padding-block: 1.2rem;
  color: #009bca;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5833333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  background-color: #ffffff;
}
@media screen and (max-width: 767px ) {
  .p-awardSummits__onlineInfo p {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 1.7777777778;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}

/* #p-awardArchives
----------------------------------------------------------------- */
.p-awardArchives {
  width: 100%;
  overflow: hidden;
  background-color: #fffef2;
}
.p-awardArchives__inner {
  padding-block: 7rem 7.8rem;
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives__inner {
    width: 34.5rem;
    padding-block: 2.5rem 5rem;
  }
}
.p-awardArchives__title h2 {
  width: 36rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives__title h2 {
    width: 18rem;
  }
}
.p-awardArchives__subTitle {
  text-align: center;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives__subTitle {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.3636363636;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-top: 3rem;
  }
}
.p-awardArchives__subTitle span {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives__subTitle span {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}
.p-awardArchives__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 2rem;
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives__buttons {
    margin-top: 2.5rem;
    row-gap: 1.2rem;
  }
}
.p-awardArchives__buttons a {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 37rem;
  height: 5rem;
  border-radius: 100vmax;
  border: 3px solid #3bdcff;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-inline: auto;
  background: #ffffff;
  color: #00004b;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives__buttons a {
    width: 26.5rem;
    height: 3rem;
    font-size: 1rem;
  }
}
.p-awardArchives__buttons a:hover {
  background: #3bdcff;
  color: #ffffff;
}
.p-awardArchives .splide__pagination {
  bottom: 0;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives .splide__pagination {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
.p-awardArchives .splide__pagination__page {
  margin: 0;
  padding: 0;
  width: 1rem;
  height: 1rem;
  background: #dcdddd;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives .splide__pagination__page {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.p-awardArchives .splide__pagination__page.is-active {
  background: #9fa0a0;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-awardArchives__supporter {
  width: 100%;
  height: auto;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives__supporter {
    margin-top: 1.5rem;
  }
}
.p-awardArchives__supporter ul {
  width: 92rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives__supporter ul {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 15.5rem 1rem 15.5rem;
    grid-template-columns: repeat(2, 15.5rem);
    gap: 1rem;
  }
}
.p-awardArchives__supporter li {
  width: 20rem;
  height: 30rem;
  border: 3px solid #f63c42;
  background: #ffffff;
  border-top-right-radius: 1rem;
  padding: 1.2rem 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
  cursor: pointer;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives__supporter li {
    width: 100%;
    height: 23.5rem;
    row-gap: 0.5rem;
  }
}
.p-awardArchives__supporter li:hover .p-awardArchives__supporterButton {
  background: #3bdcff;
  color: #ffffff;
}
.p-awardArchives__supporterName {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives__supporterName {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.1666666667;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}
.p-awardArchives__supporterJob {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives__supporterJob {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 1.3333333333;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}
.p-awardArchives__supporterImage {
  width: 100%;
  height: auto;
  aspect-ratio: 165/135;
}
.p-awardArchives__supporterButton {
  width: 11rem;
  height: 2.8rem;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px ) {
  .p-awardArchives__supporterButton {
    margin-top: 0.5rem;
  }
}

/* #p-awardSlider
----------------------------------------------------------------- */
.p-awardSlider {
  margin-top: 5rem;
  padding-bottom: 4.3rem;
}
@media screen and (max-width: 767px ) {
  .p-awardSlider {
    margin-top: 3.2rem;
    padding-bottom: 3.3rem;
  }
}
.p-awardSlider .splide__track {
  overflow: visible;
}
.p-awardSlider__item {
  padding-inline: 3.5rem;
}
@media screen and (max-width: 767px ) {
  .p-awardSlider__item {
    padding-inline: 1.4rem;
  }
}
.p-awardSlider__itemInner {
  display: block;
  width: 36.5rem;
  height: 100%;
  padding: 2rem;
  border: 2px solid #f63c42;
  background-color: #ffffff;
  border-radius: 1rem;
  -webkit-box-shadow: 1.5rem -1.5rem 0 #f63c42;
          box-shadow: 1.5rem -1.5rem 0 #f63c42;
  cursor: pointer;
}
@media screen and (max-width: 767px ) {
  .p-awardSlider__itemInner {
    width: 21.2rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 1rem -1rem 0 #f63c42;
            box-shadow: 1rem -1rem 0 #f63c42;
  }
}
.p-awardSlider__itemInner:hover .p-awardSlider__itemButton {
  background: #3bdcff;
  color: #ffffff;
}
.p-awardSlider__itemTitle {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-awardSlider__itemTitle {
    font-size: 1.2rem;
  }
}
.p-awardSlider__itemSubtitle {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-top: 1rem;
  color: #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-awardSlider__itemSubtitle {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.05em;
    font-weight: 700;
    height: 2.6rem;
    margin-top: 1rem;
  }
}
.p-awardSlider__itemImage {
  margin-top: 1.5rem;
  width: 100%;
  height: auto;
  aspect-ratio: 325/205;
}
@media screen and (max-width: 767px ) {
  .p-awardSlider__itemImage {
    margin-top: 1rem;
  }
}
.p-awardSlider__itemImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-awardSlider__itemText {
  text-align: center;
  height: 3.8rem;
  margin-top: 1rem;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.4615384615;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-awardSlider__itemText {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-weight: 700;
    height: 2.8rem;
  }
}
.p-awardSlider__itemButton {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.8rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-awardSlider__itemButton {
    font-size: 8px;
    font-size: 0.8rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 0.3rem 1rem;
    margin-top: 1rem;
  }
}

/* #p-awardSponsor
----------------------------------------------------------------- */
.p-awardSponsor {
  background-color: #ffffff;
}
.p-awardSponsor__inner {
  padding-block: 3.8rem 4.8rem;
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-awardSponsor__inner {
    width: 34.5rem;
    padding-block: 3rem 5rem;
  }
}
.p-awardSponsor__title {
  text-align: center;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 800;
  padding-bottom: 3.6rem;
  width: 77rem;
  margin-inline: auto;
  border-bottom: 3px solid #00004b;
}
@media screen and (max-width: 767px ) {
  .p-awardSponsor__title {
    width: 28rem;
    padding-bottom: 3rem;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.1666666667;
    letter-spacing: 0.15em;
    font-weight: 800;
  }
}
.p-awardSponsor__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5rem;
  -webkit-column-gap: 7.5rem;
     -moz-column-gap: 7.5rem;
          column-gap: 7.5rem;
}
@media screen and (max-width: 767px ) {
  .p-awardSponsor__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 3.5rem;
    row-gap: 3.5rem;
  }
}
.p-awardSponsor__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 26rem;
  height: auto;
  row-gap: 0.5rem;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-awardSponsor__list a:hover {
  opacity: 0.7;
}
.p-awardSponsor__list span {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.p-awardSponsor__button {
  margin-top: 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 5rem;
  padding-inline: 1em;
}
@media screen and (max-width: 767px ) {
  .p-awardSponsor__button {
    height: 2.6rem;
    margin-top: 3.5rem;
  }
}

/* #p-awardEntry
----------------------------------------------------------------- */
.p-awardEntry {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  right: 0;
  bottom: 35%;
  z-index: 50;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.p-awardEntry.is-hide {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.p-awardEntry--inactive {
  display: none;
}
@media screen and (max-width: 767px ) {
  .p-awardEntry {
    bottom: 5%;
  }
}
.p-awardEntry__link {
  width: 18.5rem;
  height: 10.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.5rem;
  background: #f63c42;
  border: 4px solid #00004b;
  border-right: 0px solid #00004b;
  border-top-left-radius: 100vmax;
  border-bottom-left-radius: 100vmax;
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 767px ) {
  .p-awardEntry__link {
    width: 13rem;
    height: 9.7rem;
    row-gap: 0.3rem;
  }
}
.p-awardEntry__link:hover {
  -webkit-transform: translateX(1.5rem);
          transform: translateX(1.5rem);
}
@media screen and (max-width: 767px ) {
  .p-awardEntry__link:hover {
    -webkit-transform: translateX(1rem);
            transform: translateX(1rem);
  }
}
.p-awardEntry__link img {
  width: 12.2rem;
  height: auto;
}
@media screen and (max-width: 767px ) {
  .p-awardEntry__link img {
    width: 10rem;
  }
}
.p-awardEntry__link span {
  text-align: center;
  color: #ffffff;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.3636363636;
  letter-spacing: 0.1em;
  font-weight: 700;
  width: 14rem;
  text-align: left;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-awardEntry__link span {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 1.4444444444;
    letter-spacing: 0.1em;
    font-weight: 700;
    width: 10rem;
  }
}
.p-awardEntry__notice {
  width: 17rem;
  height: 8rem;
  border-top-left-radius: 100vmax;
  border-bottom-left-radius: 100vmax;
  padding-top: 3rem;
  background: #00004b;
  margin-right: 0;
  margin-left: auto;
  margin-top: -2.4rem;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px ) {
  .p-awardEntry__notice {
    width: 12rem;
    height: 6rem;
    padding-top: 1.8rem;
    margin-top: -1.6rem;
  }
}
.p-awardEntry__notice p {
  text-align: center;
  color: #ffffff;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.3636363636;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-awardEntry__notice p {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 1.4444444444;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}

/* #p-entryThanks
----------------------------------------------------------------- */
.p-entryThanks {
  position: relative;
  width: 100%;
  padding-block: 20rem;
}
@media screen and (max-width: 767px ) {
  .p-entryThanks {
    padding: 4rem 0 5rem 0;
  }
}
.p-entryThanks__inner {
  width: 72rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-entryThanks__inner {
    width: 34.5rem;
  }
}
.p-entryThanks__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 3rem;
  background: #a47b1a;
  font-size: 1.8rem;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.3em;
  font-weight: 800;
  color: #ffffff;
}
@media screen and (max-width: 767px ) {
  .p-entryThanks__title {
    font-size: 1.4rem;
    padding: 0.5rem 1.5rem;
  }
}
.p-entryThanks__text {
  margin-top: 6rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-entryThanks__text {
    font-size: 1.2rem;
    margin-top: 3rem;
  }
}
.p-entryThanks__text a {
  display: inline-block;
  text-decoration: underline;
  color: #71c7dd;
}
.p-entryThanks__button {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 0.9090909091;
  letter-spacing: 0em;
  font-weight: 700;
  margin-top: 8rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-entryThanks__button {
    font-size: 1.8rem;
    margin-top: 6rem;
  }
}

/* #p-modal
----------------------------------------------------------------- */
.p-modal {
  width: 100vw;
  height: 100dvh;
  overflow: scroll;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  background-color: rgba(35, 24, 21, 0.47);
  backdrop-filter: blur(5px);
  padding-block: 9.5rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px ) {
  .p-modal {
    padding-block: 5rem;
    display: block;
  }
}
.p-modal__archive {
  width: 100rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 6.7rem 3.5rem 2.7rem;
  background: #fffff0;
  border: 3px solid #f63c42;
  border-radius: 1rem;
  display: -ms-grid;
  display: grid;
  -webkit-box-shadow: 1.5rem -1.5rem 0 #f63c42;
          box-shadow: 1.5rem -1.5rem 0 #f63c42;
  position: relative;
  -ms-grid-columns: 41.5rem 45rem;
  grid-template-columns: 41.5rem 45rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-rows: auto -webkit-max-content auto auto;
  -ms-grid-rows: auto max-content auto auto;
  grid-template-rows: auto -webkit-max-content auto auto;
  grid-template-rows: auto max-content auto auto;
}
.p-modal__archive > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-modal__archive > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.p-modal__archive > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.p-modal__archive > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
.p-modal__archive > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.p-modal__archive > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}
.p-modal__archive > *:nth-child(7) {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.p-modal__archive > *:nth-child(8) {
  -ms-grid-row: 4;
  -ms-grid-column: 2;
}
@media screen and (max-width: 767px ) {
  .p-modal__archive {
    margin-left: 1.5rem;
    width: 33.5rem;
    padding: 5rem 2.2rem 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 1.2rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0.8rem -0.8rem 0 #f63c42;
            box-shadow: 0.8rem -0.8rem 0 #f63c42;
  }
}
.p-modal__archiveName {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.4666666667;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-modal__archiveName {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.1666666667;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-modal__archiveName span {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-modal__archiveName span {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}
.p-modal__archiveSubtitle {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.4666666667;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 2.6rem;
}
@media screen and (max-width: 767px ) {
  .p-modal__archiveSubtitle {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.4166666667;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-top: 0;
  }
}
.p-modal__archiveText {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4/5;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.4615384615;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-modal__archiveText {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
.p-modal__archiveImage01 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-modal__archiveImage01 {
    margin-top: 0;
  }
}
.p-modal__archiveImage02 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
.p-modal__archiveImage03 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  grid-row: 3/5;
  margin-top: 4rem;
}
.p-modal__supporter {
  width: 66.5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  background: #fffff0;
  border: 3px solid #f63c42;
  border-top-right-radius: 3rem;
  padding: 4.6rem 4.6rem 11rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 23.7rem 1.8rem 1fr;
  grid-template-columns: 23.7rem 1fr;
  -ms-grid-rows: 21rem -webkit-max-content 1fr;
  -ms-grid-rows: 21rem max-content 1fr;
  grid-template-rows: 21rem -webkit-max-content 1fr;
  grid-template-rows: 21rem max-content 1fr;
  position: relative;
  -webkit-column-gap: 1.8rem;
     -moz-column-gap: 1.8rem;
          column-gap: 1.8rem;
}
.p-modal__supporter > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-modal__supporter > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-modal__supporter > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.p-modal__supporter > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}
.p-modal__supporter > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.p-modal__supporter > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
@media screen and (max-width: 767px ) {
  .p-modal__supporter {
    width: 34.5rem;
    padding: 4.5rem 2.5rem 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top-right-radius: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.5rem;
  }
}
.p-modal__supporterName {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  font-size: 39px;
  font-size: 3.9rem;
  line-height: 1.0512820513;
  letter-spacing: 0.3em;
  font-weight: 800;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px ) {
  .p-modal__supporterName {
    text-align: center;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1;
    letter-spacing: 0.3em;
    font-weight: 800;
    text-align: center;
  }
}
.p-modal__supporterJob {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-modal__supporterJob {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-align: center;
  }
}
.p-modal__supporterImage {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  width: 100%;
  height: auto;
}
.p-modal__supporterText {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.4615384615;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-modal__supporterText {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 0;
  }
}
.p-modal__close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 4.8rem;
  height: 4.8rem;
  cursor: pointer;
  -webkit-transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-modal__close:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .p-modal__close {
    right: 1rem;
    top: 1rem;
    width: 3.2rem;
    height: 3.2rem;
  }
}
.p-modal__close span {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  inset: 0;
  margin: auto;
  -webkit-transform-origin: center;
          transform-origin: center;
  background: #f63c42;
}
.p-modal__close span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-modal__close span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-modal {
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  visibility: hidden;
  pointer-events: none;
}
.p-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

body.is-modalOpen {
  width: 100vw;
  height: 100dvh;
  position: fixed;
}

/* #p-mainBottom
----------------------------------------------------------------- */
.p-mainBottom {
  width: 100%;
  height: auto;
  background: #ffffff;
}
.p-mainBottom__inner {
  padding-block: 8rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 35rem 14rem 35rem;
  grid-template-columns: 35rem 35rem;
  -webkit-column-gap: 14rem;
     -moz-column-gap: 14rem;
          column-gap: 14rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 3px solid #f63c42;
  width: 122.6rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-mainBottom__inner {
    width: 34.5rem;
    padding-block: 4.5rem 3.5rem;
    -ms-grid-columns: 19.5rem;
    grid-template-columns: 19.5rem;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .p-mainBottom__inner > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-mainBottom__inner > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}
.teachers .p-mainBottom__inner {
  border-top: 0px solid #f63c42;
}
.p-mainBottom__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 4;
  grid-row: span 4;
}
@media screen and (max-width: 767px ) {
  .p-mainBottom__item {
    -ms-grid-row-span: 2;
    grid-row: span 2;
    margin-top: 4rem;
  }
  .p-mainBottom__item:first-of-type {
    margin-top: 0;
  }
}
.p-mainBottom__title {
  margin: auto;
  width: 31.4rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 767px ) {
  .p-mainBottom__title {
    width: 19.5rem;
  }
}
.p-mainBottom__subtitle {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #00004b;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-mainBottom__subtitle {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.6363636364;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-mainBottom__text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #00004b;
  text-align: center;
  margin-top: 2.5rem;
}
.p-mainBottom__button {
  width: 35rem;
  height: 5rem;
  border-radius: 100vmax;
  display: -ms-grid;
  display: grid;
  place-content: center;
  border: 4px solid #3bdcff;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  background: #ffffff;
  color: #00004b;
  margin-inline: auto;
  margin-top: 3rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-mainBottom__button:hover {
  background: #3bdcff;
  color: #ffffff;
}
@media screen and (max-width: 767px ) {
  .p-mainBottom__button {
    width: 18.5rem;
    height: auto;
    padding-block: 0.6rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.15em;
    font-weight: 700;
  }
}
.p-mainBottom__button--inactive {
  pointer-events: none;
}

/* #p-otherProjects
----------------------------------------------------------------- */
.p-otherProjects {
  background: #ffffff;
  width: 100%;
  overflow: hidden;
}
.p-otherProjects__inner {
  width: 122.6rem;
  margin-inline: auto;
  border-top: 3px solid #f63c42;
  padding-block: 6rem 9rem;
}
@media screen and (max-width: 767px ) {
  .p-otherProjects__inner {
    width: 34.5rem;
    padding-block: 2.8rem 4rem;
  }
}
.p-otherProjects__title {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2272727273;
  letter-spacing: 0.15em;
  font-weight: 900;
}
@media screen and (max-width: 767px ) {
  .p-otherProjects__title {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.15em;
    font-weight: 900;
  }
}
.p-otherProjects__slider {
  margin-top: 6rem;
}
@media screen and (max-width: 767px ) {
  .p-otherProjects__slider {
    margin-top: 4rem;
  }
}
.p-otherProjects .splide__track {
  overflow: visible;
}
.p-otherProjects__list {
  -webkit-column-gap: 5.2rem;
     -moz-column-gap: 5.2rem;
          column-gap: 5.2rem;
}
@media screen and (max-width: 767px ) {
  .p-otherProjects__list {
    -webkit-column-gap: 3.7rem;
       -moz-column-gap: 3.7rem;
            column-gap: 3.7rem;
  }
}
.p-otherProjects__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 4;
  grid-row: span 4;
  width: 26.5rem;
  height: 100%;
  padding: 1rem;
  border: 2px solid #f63c42;
  background-color: #ffffff;
  border-radius: 0.8rem;
  -webkit-box-shadow: 1rem -1rem 0 #f63c42;
          box-shadow: 1rem -1rem 0 #f63c42;
  cursor: pointer;
}
@media screen and (max-width: 767px ) {
  .p-otherProjects__item {
    width: 21.2rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 1rem -1rem 0 #f63c42;
            box-shadow: 1rem -1rem 0 #f63c42;
  }
}
.p-otherProjects__item:hover .p-otherProjects__itemButton {
  background: #3bdcff;
  color: #ffffff;
}
.p-otherProjects__itemTitle {
  height: max(5.5rem, 4em);
}
@media screen and (max-width: 767px ) {
  .p-otherProjects__itemTitle {
    height: max(4.5rem, 4em);
  }
}
.p-otherProjects__itemTitle p {
  text-align: center;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 800;
}
@media screen and (max-width: 767px ) {
  .p-otherProjects__itemTitle p {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 1.4444444444;
    letter-spacing: 0.05em;
    font-weight: 800;
  }
}
.p-otherProjects__itemTitle h3 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
  font-weight: 900;
  text-align: center;
  margin-top: 0.5rem;
  color: #f63c42;
}
@media screen and (max-width: 767px ) {
  .p-otherProjects__itemTitle h3 {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.05em;
    font-weight: 900;
  }
}
.p-otherProjects__itemImage {
  margin-top: 1.2rem;
  width: 100%;
  height: auto;
  aspect-ratio: 227/143;
}
@media screen and (max-width: 767px ) {
  .p-otherProjects__itemImage {
    margin-top: 1rem;
  }
}
.p-otherProjects__itemImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-otherProjects__itemButton {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4rem 1.6rem;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px ) {
  .p-otherProjects__itemButton {
    font-size: 7px;
    font-size: 0.7rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 800;
    padding: 0.3rem 1rem;
    margin-top: 0.6rem;
  }
}

/* #p-404
----------------------------------------------------------------- */
.p-404 {
  position: relative;
  width: 100%;
  padding-block: 20rem;
}
@media screen and (max-width: 767px ) {
  .p-404 {
    padding: 4rem 0 5rem 0;
  }
}
.p-404__title {
  width: 60rem;
  height: auto;
}
@media screen and (max-width: 767px ) {
  .p-404__title {
    width: 18rem;
  }
}
.p-404__text {
  margin-top: 3rem;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 700;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px ) {
  .p-404__text {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
    margin-top: 6rem;
  }
}
.p-404__button {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 0.9090909091;
  letter-spacing: 0em;
  font-weight: 700;
  margin-top: 8rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-404__button {
    font-size: 1.8rem;
    margin-top: 6rem;
  }
}

/* ==========================================================================
 #Utility
========================================================================== */
/* #pcsp
----------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .u-pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-spNone {
    display: none !important;
  }
}