@charset "UTF-8";
/*
 *
 */
:root {
  --color-white: #fff;
  --color-navy: #212840;
  --color-yellow: #ffc43c;
  --color-green: #C9DBD3;
  --color-grey: #aeaeae;
  --color-orange: #E63E32;
  --font-family-japanese: "M PLUS 1p", sans-serif;
  --font-family-english: "Roboto", sans-serif;
  --line-height: 1.8;
  --sp-margin: 20px;
  --transition-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
  --space0: var(--sp-margin);
  --space1: calc(var(--sp-margin) * 2);
  --space2: calc(var(--sp-margin) * 2.5);
  --space3: calc(var(--sp-margin) * 3.5);
  --space4: calc(var(--sp-margin) * 4);
  --space5: calc(var(--sp-margin) * 4.5);
  --space6: calc(var(--sp-margin) * 5);
  --space7: calc(var(--sp-margin) * 6);
}

body, dd, dl, dt, figure, h1, h2, h3, h4, h5, h6, html, ol, p, ul {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: 400;
}

ul, li, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
}

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

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

h1, h2, h3, h4, h5 {
  font-feature-settings: "palt";
}

address {
  font-style: normal;
}

button {
  appearance: none;
  font-size: inherit;
  font-family: inherit;
  border: none;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

body {
  line-break: normal;
  overflow-wrap: break-word;
  -ms-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
  line-break: strict;
  font-family: var(--font-family-japanese);
  line-height: var(--line-height);
  scroll-padding-top: 6.25rem;
  padding-top: 6.25rem;
}
@media screen and (max-width: 64em) {
  body {
    padding-top: 0;
  }
}
body.menu--open {
  overflow: hidden;
}

a {
  text-decoration: none;
}

nav a {
  text-decoration: none;
}

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

svg {
  max-width: 100%;
  max-height: 100%;
}

iframe {
  width: 100%;
}

ol {
  margin-left: 20px;
}

ol, ol li {
  list-style: decimal;
}

.myswiper-button-prev,
.myswiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 125px;
  height: 90px;
  border-radius: 90px;
  background-color: var(--color-yellow);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  z-index: 10;
  padding: 0 30px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.2s;
}
.myswiper-button-prev svg,
.myswiper-button-next svg {
  width: 15px;
  height: 30px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.64px;
}
.myswiper-button-prev:hover,
.myswiper-button-next:hover {
  background-color: var(--color-navy);
}
@media screen and (max-width: 40em) {
  .myswiper-button-prev,
.myswiper-button-next {
    width: 70px;
    height: 60px;
    padding: 0 20px;
  }
}

.myswiper-button-prev {
  left: -50px;
  justify-content: flex-end;
}
@media screen and (max-width: 40em) {
  .myswiper-button-prev {
    left: -20px;
  }
}

.myswiper-button-next {
  right: -50px;
}
@media screen and (max-width: 40em) {
  .myswiper-button-next {
    right: -20px;
  }
}

.l-pagetop {
  height: 60px;
}
.l-pagetop a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-yellow);
}
.l-pagetop a svg {
  width: 33px;
  height: 16px;
  fill: none;
  stroke: #212840;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.81px;
}

.l-footer {
  padding-top: 5rem;
  padding-bottom: 2.8125rem;
  background-color: var(--color-navy);
  color: #fff;
}
.l-footer a, .l-footer button {
  color: #fff;
}
.l-footer .copyright {
  margin-top: 2.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 64em) {
  .l-footer {
    padding-bottom: 10rem;
  }
  .l-footer .copyright {
    font-size: 12px;
  }
}

.l-footer-inner {
  display: flex;
}
@media screen and (max-width: 64em) {
  .l-footer-inner {
    flex-wrap: wrap;
  }
}

.l-footer-top {
  width: 38%;
  border-right: 1px solid #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (max-width: 64em) {
  .l-footer-top {
    width: 100%;
    border-right: none;
    padding: 0;
    margin-bottom: 3.75rem;
    text-align: center;
  }
}

.l-footer-nav {
  width: 31%;
  font-size: 0.875rem;
  padding-top: 30px;
  padding-bottom: 30px;
}
.l-footer-nav ul li a, .l-footer-nav ul li button {
  display: inline-block;
  line-height: 2.4;
  transition: opacity 0.2s;
}
.l-footer-nav ul li a:hover, .l-footer-nav ul li button:hover {
  opacity: 0.5;
}
@media screen and (max-width: 64em) {
  .l-footer-nav {
    width: 50%;
    padding: 0;
  }
}

.l-footer-nav--1 {
  padding-left: 80px;
}
@media screen and (max-width: 64em) {
  .l-footer-nav--1 {
    padding-left: 0;
  }
}

.l-footer-logo {
  max-width: 243px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 40em) {
  .l-footer-logo {
    width: 50%;
    margin-bottom: 3.75rem;
  }
}

.l-footer-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space1);
}
.l-footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
}
.l-footer-sns a svg {
  width: 28px;
  height: 28px;
  fill: #212840;
}

.l-footer-thanks {
  display: -ms-grid;
  display: grid;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.l-footer-thanks > * a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-sizing: border-box;
}

.l-footer-thans--medium {
  margin-bottom: 30px;
  -ms-grid-columns: (minmax(0, 280px))[3];
  grid-template-columns: repeat(3, minmax(0, 280px));
  place-content: center;
}
@media screen and (max-width: 40em) {
  .l-footer-thans--medium {
    gap: 10px;
    -ms-grid-columns: (minmax(0, 280px))[1];
    grid-template-columns: repeat(1, minmax(0, 280px));
  }
}

.l-footer-thanks--small {
  -ms-grid-columns: (minmax(0, 180px))[8];
  grid-template-columns: repeat(8, minmax(0, 180px));
  place-content: center;
}
@media screen and (max-width: 40em) {
  .l-footer-thanks--small {
    -ms-grid-columns: (minmax(0, 135px))[2];
    grid-template-columns: repeat(2, minmax(0, 135px));
    gap: 10px;
  }
}

.l-header {
  width: 100%;
  height: 6.25rem;
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 80em) {
  .l-header {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 64em) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-green);
    display: none;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .l-header.show {
    display: block;
  }
  .menu--open .l-header {
    opacity: 1;
  }
}

.l-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 64em) {
  .l-header-inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 50px;
    padding-bottom: 150px;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    gap: 30px;
    overflow: scroll;
    position: relative;
    z-index: 10;
  }
}

.l-header-logo {
  width: 206px;
  height: 110px;
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header-logo img {
  width: 154px;
  height: 78px;
}
@media screen and (max-width: 64em) {
  .l-header-logo {
    flex-direction: column;
    background-color: transparent;
  }
  .l-header-logo img {
    width: 194px;
    height: 100px;
  }
}

.l-header .l-header-logo--start {
  display: block;
}

.l-header-logo--start {
  width: 84px;
  height: 45px;
  margin-left: 28px;
  display: none;
}
@media screen and (max-width: 64em) {
  .l-header-logo--start {
    position: fixed;
    top: 16px;
    left: 16px;
    width: 64px;
    height: auto;
    margin-left: 0;
    z-index: 100;
    display: block;
  }
}

.l-header-copy {
  display: none;
}
@media screen and (max-width: 64em) {
  .l-header-copy {
    display: block;
    text-align: center;
  }
}

.l-header-nav {
  padding-right: 30px;
  gap: 30px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 80em) {
  .l-header-nav {
    gap: 20px;
  }
}
@media screen and (max-width: 64em) {
  .l-header-nav {
    padding-right: 0;
    flex-direction: column;
  }
}

.l-header-nav-menu ul li a {
  display: block;
  line-height: 6.25rem;
  padding: 0 0.9375rem;
  transition: color 0.2s, background-color 0.2s;
}
.l-header-nav-menu ul li a:hover {
  background-color: var(--color-yellow);
}
@media screen and (max-width: 80em) {
  .l-header-nav-menu ul li a {
    padding: 0 0.625rem;
    font-size: 14px;
  }
}
@media screen and (max-width: 64em) {
  .l-header-nav-menu ul li a {
    line-height: 3.125rem;
    text-align: center;
    border-bottom: 1px solid #fff;
  }
}

@media screen and (max-width: 64em) {
  .l-header-nav-btn {
    display: none;
  }
}

.l-header-btn {
  display: none;
}
.l-header-btn span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  margin-left: -10px;
}
.l-header-btn span:nth-child(1) {
  top: calc(50% - 4px);
}
.l-header-btn span:nth-child(2) {
  top: calc(50% + 4px);
}
.menu--open .l-header-btn span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.menu--open .l-header-btn span:nth-child(2) {
  top: 50%;
  transform: rotate(-45deg);
}
@media screen and (max-width: 64em) {
  .l-header-btn {
    display: block;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-color: var(--color-navy);
    position: fixed;
    top: 0.625rem;
    right: 0.625rem;
    z-index: 501;
  }
}
@media screen and (max-width: 40em) {
  .l-header-btn {
    width: 2.75rem;
    height: 2.75rem;
    top: 0.625rem;
    right: 0.625rem;
  }
}

.l-sp-banner {
  display: none;
}
@media screen and (max-width: 64em) {
  .l-sp-banner {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 10px;
    box-sizing: border-box;
    z-index: 501;
    color: #fff;
    background-color: var(--color-navy);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.4s;
  }
  .l-sp-banner .c-btn-yellow-square {
    width: 100%;
    margin-top: 0;
    flex-grow: 1;
  }
  .l-sp-banner .c-btn-yellow-square a {
    height: 100%;
    font-size: 14px;
  }
  .is--scrolled .l-sp-banner, .menu--open .l-sp-banner {
    transform: translateY(0);
  }
}

.l-modal-btns {
  position: fixed;
  right: 0;
  top: 20%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
}
.l-modal-btns button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  width: 70px;
  padding-top: 25px;
  padding-bottom: 25px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: all 0.2s;
}
.l-modal-btns button span {
  display: block;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1;
}
.l-modal-btns button:hover {
  opacity: 0.6;
}
@media screen and (max-width: 40em) {
  .l-modal-btns {
    top: 15%;
  }
  .l-modal-btns button {
    width: 50px;
    height: 130px;
    padding-top: 10px;
    padding-bottom: 10px;
    white-space: nowrap;
    font-size: 0.75rem;
  }
  .l-modal-btns button span {
    transform: translateX(-50%);
  }
}

button.l-modal-btns-1 {
  background-color: #E63E32;
  color: #fff;
}

button.l-modal-btns-2 {
  background-color: #ffc43c;
  color: #E63E32;
}

.l-modal {
  position: fixed;
  top: 0;
  width: 85.71428571%;
  left: 14.28571429%;
  height: 100vh;
  z-index: 2001;
  color: #fff;
  overflow: scroll;
  display: none;
  opacity: 0;
  transition: opacity 0.1s;
}
.modal--open .l-modal {
  opacity: 1;
}
.l-modal.show {
  display: block;
}
.l-modal#Modal-1 {
  color: #fff;
  background-color: rgba(230, 62, 50, 0.9019607843);
}
.l-modal#Modal-2 {
  color: #E63E32;
  background-color: rgba(255, 196, 60, 0.9019607843);
}
@media screen and (max-width: 40em) {
  .l-modal {
    width: calc(100% - 20px);
    left: 20px;
  }
}

.l-modal-inner {
  padding: 120px 14%;
}
.l-modal-inner > * + * {
  margin-top: 2em;
}
.l-modal-inner > * + h4 {
  margin-top: 1.5em;
}
.l-modal-inner > h4 + * {
  margin-top: 0.5em;
}
.l-modal-inner p small {
  display: inline-block;
  line-height: 1.6;
}
.l-modal-inner h2 {
  font-size: 2.25rem;
  line-height: 1;
  font-weight: bold;
}
.l-modal-inner h3 {
  font-size: 1.5rem;
  line-height: 1;
}
.l-modal-inner h4 {
  font-size: 1.125rem;
}
.l-modal-inner figure {
  margin-block: 3em;
}
.l-modal-inner hr {
  margin-block: 2em;
  border: none;
  height: 1px;
  border-top: 1px solid currentColor;
}
.l-modal-inner table th {
  padding-right: 1em;
  font-weight: normal;
}
.l-modal-inner .term {
  margin-block: 2em;
  font-size: 1.5rem;
}
.l-modal-inner .term strong {
  font-size: 2.25rem;
  font-weight: normal;
}
@media screen and (max-width: 40em) {
  .l-modal-inner {
    padding: 100px 20px;
    font-size: 0.875rem;
  }
  .l-modal-inner h2 {
    font-size: 1.5rem;
  }
  .l-modal-inner h3 {
    font-size: 1.125rem;
  }
  .l-modal-inner h4 {
    font-size: 0.875rem;
  }
  .l-modal-inner figure {
    max-width: 220px;
    margin-inline: auto;
  }
  .l-modal-inner figure img {
    width: 100%;
    height: auto;
  }
  .l-modal-inner .term {
    font-size: 1.125rem;
  }
  .l-modal-inner .term strong {
    font-size: 1.5rem;
  }
  .l-modal-inner table, .l-modal-inner tr, .l-modal-inner th, .l-modal-inner td {
    display: block;
  }
  .l-modal-inner table tr {
    margin-top: 0.5em;
  }
}

.l-modal-close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 40px;
  right: 40px;
  cursor: pointer;
  background-color: transparent;
}
.l-modal-close::before, .l-modal-close::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
}
.l-modal-close::before {
  transform: rotate(45deg);
}
.l-modal-close::after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 40em) {
  .l-modal-close {
    top: 20px;
    right: 20px;
  }
}

.l-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s, visibility 0.4s;
}
.l-splash img {
  width: 300px;
  height: 200px;
  animation: splash 2s cubic-bezier(0.68, -0.6, 0.32, 1.6) alternate forwards;
}
.hide--splash .l-splash {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 40em) {
  .l-splash img {
    width: 160px;
    height: 90px;
  }
}

@keyframes splash {
  0% {
    opacity: 0;
    transform: translate(-40px, 0);
  }
  40% {
    opacity: 1;
    transform: translate(0, 0);
  }
  60% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(40px, 0);
  }
}
.p-home-main {
  position: relative;
  width: 100%;
  height: calc(100vh - 110px - 90px);
  max-height: 860px;
}
.p-home-main h1 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 220px;
  left: 16%;
  font-size: min(3vmin, 40px);
  z-index: 10;
  white-space: nowrap;
  text-shadow: 5px 5px 3px rgba(0, 0, 0, 0.3);
  font-family: "Hiragino Sans", sans-serif;
}
.p-home-main::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgba(33, 40, 64, 0.1882352941);
  z-index: 5;
}
@media screen and (max-width: 64em) {
  .p-home-main h1 {
    top: 36vw;
  }
}
@media screen and (max-width: 40em) {
  .p-home-main {
    min-height: inherit;
    max-height: inherit;
    height: calc(100vh - 100px);
  }
  .p-home-main h1 {
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    top: auto;
    bottom: 100px;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    font-size: 18px;
  }
}

.p-home-main-splogo {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 10;
  width: 51.733333335%;
  transform: translate(-50%, 0);
  display: none;
}
@media screen and (max-width: 64em) {
  .p-home-main-splogo {
    display: block;
  }
}

.p-home-main-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48.33%;
  max-width: 928px;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 40em) {
  .p-home-main-logo {
    width: 64%;
    max-width: 277px;
  }
}

.p-home-main-image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.p-home-main-image .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.p-home-main-image-item {
  font-size: 0;
  width: 100%;
  height: 100%;
}
.p-home-main-image-item figure {
  width: 100%;
  height: 100%;
}
.p-home-main-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 64em) {
  .p-home-main-image-item--1 img {
    object-position: 50% 50%;
  }
}

.p-home-main-detail {
  width: 68.75rem;
  height: 5.625rem;
  padding: 0.625rem;
  box-sizing: border-box;
  border-radius: 60px;
  color: var(--color-white);
  background-color: var(--color-navy);
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translate(-50%);
  z-index: 10;
}
.p-home-main-detail .detail {
  flex-grow: 1;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.p-home-main-detail .head {
  width: 14.375rem;
  height: 4.375rem;
  border-radius: 60px 0 0 60px;
  background-color: var(--color-yellow);
}
.p-home-main-detail .date span {
  margin-left: 0.625rem;
}
.p-home-main-detail .place {
  padding-left: 1.25rem;
}
@media screen and (max-width: 64em) {
  .p-home-main-detail {
    width: 90%;
    height: 3.75rem;
    padding: 0.3125rem;
  }
  .p-home-main-detail .detail {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .p-home-main-detail .head {
    width: 7.5rem;
    height: 3.125rem;
  }
  .p-home-main-detail .place {
    padding-top: 0.3125rem;
    padding-left: 0;
  }
}
@media screen and (max-width: 40em) {
  .p-home-main-detail {
    width: calc(100% - 40px);
    bottom: 20px;
  }
}

.p-home-content {
  margin-top: 8.75rem;
  margin-bottom: 8.75rem;
  position: relative;
}
.p-home-content:before {
  content: "";
  width: 160px;
  height: 128px;
  background-image: url(/assets/img/illust-2.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50px;
  left: 0;
  animation: anime1 2s ease-in-out alternate infinite;
}
@media screen and (max-width: 64em) {
  .p-home-content {
    margin-top: 15.625rem;
    margin-bottom: 5rem;
  }
  .p-home-content:before {
    top: -150px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 40em) {
  .p-home-content {
    margin-top: 12.5rem;
  }
  .p-home-content:before {
    width: 90px;
    top: -100px;
  }
}

.p-home-content-text {
  margin-top: 1.25rem;
}

.p-home-about {
  margin: 0 auto;
  margin-bottom: 8.75rem;
  margin-top: -7.5rem;
  padding-top: 7.5rem;
}
@media screen and (max-width: 40em) {
  .p-home-about {
    margin-bottom: 1.875rem;
    padding-bottom: 5rem;
    margin-top: -3.75rem;
    padding-top: 3.75rem;
  }
}

.p-home-about-content-text {
  margin-top: 2.5rem;
  flex-grow: 1;
}
@media screen and (max-width: 40em) {
  .p-home-about-content-text {
    margin-top: 1.875rem;
    margin-bottom: 1.25rem;
  }
}

.p-home-about-image {
  width: 48.1818181818%;
}
@media screen and (max-width: 64em) {
  .p-home-about-image {
    margin: auto;
  }
}
@media screen and (max-width: 40em) {
  .p-home-about-image {
    width: 80%;
  }
}

.p-home-different {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  position: relative;
  background-color: #FFBF3C;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
}
@media screen and (max-width: 40em) {
  .p-home-different {
    padding-top: 3.75rem;
    padding-bottom: 6.25rem;
  }
}

@media screen and (max-width: 40em) {
  .p-home-different-boxes {
    padding-inline: 1.25rem;
  }
}

.p-home-different-box-image {
  width: 35%;
}
.p-home-different-box-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}
@media screen and (max-width: 40em) {
  .p-home-different-box-image {
    width: 75%;
  }
}

.p-home-different-box-content {
  width: 65%;
}
.p-home-different-box-content h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}
.p-home-different-box-content h4 {
  margin-top: 5px;
}
.p-home-different-box-content h4 span {
  font-size: 20px;
  font-weight: bold;
  background-color: var(--color-yellow);
}
.p-home-different-box-content h4 + * {
  margin-top: 20px;
}
.p-home-different-box-content ol {
  padding-left: 1.5em;
}
.p-home-different-box-content ol li {
  list-style-type: decimal;
}
.p-home-different-box-content ul {
  padding-left: 1.5em;
}
.p-home-different-box-content ul li {
  list-style-type: disc;
}
@media screen and (max-width: 40em) {
  .p-home-different-box-content {
    width: 100%;
    font-size: 14px;
  }
  .p-home-different-box-content h3 {
    font-size: 18px;
  }
  .p-home-different-box-content h4 {
    margin-top: 10px;
  }
  .p-home-different-box-content h4 span {
    font-size: 16px;
  }
}

.p-home-different-box-content-list {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid var(--color-navy);
  font-size: 14px;
  position: relative;
  margin-left: -20px;
}
.p-home-different-box-content-list > p {
  font-size: 18px;
  position: absolute;
  top: -0.5em;
  left: 20px;
  width: max-content;
  padding-inline: 10px;
  background-color: #fff;
  z-index: 10;
  line-height: 1;
}
@media screen and (max-width: 40em) {
  .p-home-different-box-content-list {
    margin-left: 0;
  }
}

.p-home-flow {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 40em) {
  .p-home-flow {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}

.p-home-flow-wrap {
  margin-top: 3.125rem;
  margin-bottom: 9.6875rem;
  position: relative;
}
.p-home-flow-wrap:after {
  content: "";
  display: block;
  background-image: url(/assets/img/illust-3.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 212px;
  height: 132px;
  position: absolute;
  bottom: -60px;
  left: 20px;
}
@media screen and (max-width: 40em) {
  .p-home-flow-wrap {
    margin-bottom: 5rem;
  }
  .p-home-flow-wrap:after {
    width: 106px;
    height: 66px;
    bottom: -30px;
  }
}

.p-home-flow-list li {
  width: 25%;
  position: relative;
}
.p-home-flow-list li:nth-child(even) {
  color: var(--color-navy);
}
.p-home-flow-list li:nth-child(even) .p-home-flow-list-num {
  color: var(--color-navy);
}
@media screen and (max-width: 40em) {
  .p-home-flow-list li {
    width: 70vw;
    padding: 0.625rem;
  }
}

.p-home-flow-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 1.875rem 0.9375rem 1.875rem 1.875rem;
  box-sizing: border-box;
}
.p-home-flow-content > * + * {
  margin-top: 1.25rem;
}

.p-home-flow-image {
  position: relative;
  z-index: 0;
  font-size: 0;
}

.p-home-flow-list-num {
  font-family: var(--font-family-english);
}

.p-home-flow-detail {
  margin-top: 3.75rem;
  border-radius: 10px;
  overflow: hidden;
}
.p-home-flow-detail .c-table-list {
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 40em) {
  .p-home-flow-detail {
    margin-top: 2.5rem;
  }
}

.p-home-flow-award {
  margin-top: 7.5rem;
  text-align: center;
}
.p-home-flow-award > * + * {
  margin-top: 30px;
}
.p-home-flow-award h3 {
  font-size: 28px;
}
.p-home-flow-award figure {
  max-width: 248px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 40em) {
  .p-home-flow-award {
    margin-top: 3.75rem;
  }
  .p-home-flow-award h3 {
    font-size: 20px;
  }
  .p-home-flow-award figure {
    max-width: 40%;
  }
}

.p-home-award-corporate {
  margin-top: 80px;
  text-align: center;
}
.p-home-award-corporate > p {
  font-size: 28px;
  color: #212840;
  font-weight: bold;
  line-height: 1.6;
}
.p-home-award-corporate > p + * {
  margin-top: 40px;
}

.p-home-award-corporate-list {
  display: flex;
  justify-content: center;
  gap: 35px;
}
.p-home-award-corporate-list li {
  width: 280px;
  line-height: 1;
}
.p-home-award-corporate-list li a {
  display: block;
  color: currentColor;
}
.p-home-award-corporate-list figcaption {
  margin-top: 1em;
  font-size: 12px;
}
@media screen and (max-width: 40em) {
  .p-home-award-corporate-list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .p-home-award-corporate-list li {
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }
}

.p-home-gallery {
  padding-top: 3.75rem;
  margin-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 40em) {
  .p-home-gallery {
    margin-bottom: 1.875rem;
  }
}

.p-home-rule {
  padding-top: 7.5rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 40em) {
  .p-home-rule {
    padding-top: 3.75rem;
    padding-bottom: 7.5rem;
  }
}

.p-home-case {
  padding-top: 7.5rem;
  position: relative;
}
.p-home-case section + section {
  padding-top: 7.5rem;
}
@media screen and (max-width: 40em) {
  .p-home-case section + section {
    padding-top: 3.75rem;
  }
}
@media screen and (max-width: 40em) {
  .p-home-case {
    padding-top: 3.75rem;
  }
}

.p-home-case-list {
  gap: 40px;
}
.p-home-case-list li {
  width: calc((100% - 40px) / 2);
  padding: 1.875rem;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--color-white);
}
.p-home-case-list li .p-home-case-item-img {
  position: relative;
}
.p-home-case-list li .p-home-case-item-num {
  width: 133px;
  height: 50px;
  background-color: var(--color-yellow);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.p-home-case-list li .p-home-case-item-title {
  margin-top: 3.125rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 40em) {
  .p-home-case-list {
    gap: 20px;
  }
  .p-home-case-list li {
    width: 100%;
  }
}

.p-home-voice-list {
  padding-bottom: 15rem;
  position: relative;
}
.p-home-voice-list li {
  padding: 1.875rem;
  background-color: var(--color-white);
  border-radius: 10px;
}
.p-home-voice-list li + li {
  margin-top: 1.875rem;
}
.p-home-voice-list:after {
  content: "";
  width: 150px;
  height: 82px;
  background-image: url(/assets/img/illust-4.svg);
  position: absolute;
  bottom: 30px;
  right: 143px;
  animation: anime1 2s ease-in-out alternate infinite;
}
@media screen and (max-width: 40em) {
  .p-home-voice-list {
    padding-bottom: 11.25rem;
  }
}

.p-home-voice-image {
  width: 23.8862559242%;
  font-size: 0;
}
.p-home-voice-image img {
  border-radius: 8px;
}
@media screen and (max-width: 40em) {
  .p-home-voice-image {
    width: auto;
  }
}

.p-home-voice-contents {
  width: 75.8293838863%;
}
@media screen and (max-width: 40em) {
  .p-home-voice-contents {
    width: 100%;
  }
}

.p-home-voice-title {
  margin-bottom: 2rem;
  padding: 0.9375rem 1.25rem;
  background-color: var(--color-navy);
}
@media screen and (max-width: 40em) {
  .p-home-voice-title {
    padding: 0.625rem 0.9375rem;
  }
}

.p-home-voice-detail {
  margin-bottom: 1.25rem;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid var(--color-grey);
}
.p-home-voice-detail p {
  padding: 0 1.25rem;
  position: relative;
}
.p-home-voice-detail p + p:before {
  content: "";
  width: 1.4173px;
  height: 30px;
  background-color: var(--color-grey);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 40em) {
  .p-home-voice-detail p {
    padding: 0;
  }
  .p-home-voice-detail p + p:before {
    display: none;
  }
}

.p-home-qa {
  padding-top: 7.5rem;
  position: relative;
}
@media screen and (max-width: 40em) {
  .p-home-qa {
    padding-top: 3.75rem;
  }
}

.p-home-qa-list {
  margin-top: 5rem;
}
.p-home-qa-list li {
  background-color: var(--color-green);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.p-home-qa-list li .js-accordion-btn {
  padding: 1.875rem 2.5rem;
  color: var(--color-navy);
  position: relative;
  display: block;
  transition: background-color 0.2s;
}
.p-home-qa-list li .js-accordion-btn:hover {
  background-color: var(--color-yellow);
}
.p-home-qa-list li .js-accordion-btn:before, .p-home-qa-list li .js-accordion-btn:after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(/assets/img/img-plus.svg);
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 40em) {
  .p-home-qa-list li .js-accordion-btn {
    padding: 0.625rem 2.5rem 0.625rem 0.625rem;
  }
  .p-home-qa-list li .js-accordion-btn:before, .p-home-qa-list li .js-accordion-btn:after {
    right: 10px;
    width: 15px;
    height: 15px;
    background-size: contain;
  }
}
.p-home-qa-list li + li {
  margin-top: 1.875rem;
}
@media screen and (max-width: 40em) {
  .p-home-qa-list {
    margin-top: 2.5rem;
  }
  .p-home-qa-list li + li {
    margin-top: 1.25rem;
  }
}

.js-accordion-content {
  background-color: #fff;
}
.js-accordion-content > div {
  padding: 1.875rem 2.5rem;
  border: 1px solid var(--color-green);
  border-radius: 0 0 10px 10px;
  box-sizing: border-box;
}

.p-home-information {
  margin-top: 7.5rem;
  margin-bottom: 10rem;
  position: relative;
}
.p-home-information:after {
  content: "";
  width: 160px;
  height: 110px;
  background-image: url(/assets/img/illust-5.svg);
  position: absolute;
  top: 0px;
  left: 20%;
  animation: anime1 2s ease-in-out alternate infinite;
}
@media screen and (max-width: 40em) {
  .p-home-information {
    margin-top: 5rem;
    margin-bottom: 7.5rem;
  }
  .p-home-information:after {
    width: 80px;
    height: 55px;
    left: 10px;
    top: -40px;
  }
}

.p-home-information-list {
  gap: 100px;
  margin-top: 3.75rem;
}
.p-home-information-list li {
  width: calc((100% - 100px) / 2);
  line-height: 1.6;
}
.p-home-information-list li > * + * {
  margin-top: 1.25rem;
}
.p-home-information-list li figure {
  width: 120px;
  height: 120px;
  margin: auto;
}
.p-home-information-list li figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}
@media screen and (max-width: 64em) {
  .p-home-information-list {
    gap: 60px 40px;
  }
  .p-home-information-list li {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 40em) {
  .p-home-information-list {
    gap: 40px 20px;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .p-home-information-list li {
    width: calc((100% - 20px) / 2);
    margin: auto;
  }
  .p-home-information-list li figure {
    width: 80px;
    height: 80px;
  }
}

.p-home-partner {
  padding-top: 5rem;
  padding-bottom: 22.5rem;
  position: relative;
}
.p-home-partner:after {
  content: "";
  width: 305px;
  height: 158px;
  background-image: url(/assets/img/illust-6.svg);
  background-repeat: no-repeat;
  position: absolute;
  bottom: 108px;
  left: 30%;
  animation: anime2 2s ease-in-out alternate infinite;
}
@media screen and (max-width: 40em) {
  .p-home-partner {
    padding-top: 2.5rem;
    padding-bottom: 11.25rem;
  }
  .p-home-partner:after {
    width: 150px;
    left: 40px;
    bottom: -40px;
  }
}

.p-home-partner-list {
  position: relative;
  margin-top: 3.75rem;
  border: 1px solid var(--color-navy);
  border-radius: 10px;
  overflow: hidden;
}
.p-home-partner-list a {
  color: inherit;
  text-decoration: underline;
  display: inline;
}
.p-home-partner-list a:hover {
  text-decoration: none;
}
.swiper-gallery .swiper-slide {
  max-width: 480px;
}

.p-message-list {
  margin-top: 3.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.p-message-list + * {
  margin-top: 3.75rem;
}
.p-message-list > div {
  width: calc((100% - 40px) / 2);
  border: 1px solid var(--color-navy);
  border-radius: 10px;
  padding: 40px 30px;
  position: relative;
  box-sizing: border-box;
}
.p-message-list > div h3 {
  width: max-content;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-green);
  padding: 0 1em;
  font-size: 23px;
}
@media screen and (max-width: 40em) {
  .p-message-list > div {
    width: 100%;
    padding: 30px 15px 20px;
    font-size: 14px;
  }
  .p-message-list > div h3 {
    font-size: 20px;
  }
}

@keyframes anime1 {
  0% {
    transform: translate(0, -5px);
  }
  100% {
    transform: translate(0, 5px);
  }
}
@keyframes anime2 {
  0% {
    transform: translate(-10px, 0);
  }
  100% {
    transform: translate(10px, 0);
  }
}
.p-home-news {
  padding-top: 3.125rem;
}

.p-home-volunteer {
  padding-top: 6rem;
  padding-bottom: 11.25rem;
  position: relative;
}
@media screen and (max-width: 40em) {
  .p-home-volunteer {
    padding-top: 3.75rem;
    padding-bottom: 7.5rem;
  }
}

.p-home-supporting {
  margin-top: -6.25rem;
  padding-top: 6.25rem;
}
@media screen and (max-width: 40em) {
  .p-home-supporting {
    margin-top: 0rem;
    padding-top: 0rem;
  }
}

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

.align-center-block > * {
  margin-left: auto;
  margin-right: auto;
}

.align-right {
  text-align: right;
}

.align-right-block > * {
  margin-left: auto;
}

.align-left {
  text-align: left;
}

.align-left-block > * {
  margin-right: auto;
}

@media screen and (max-width: 64em) {
  .tablet\:align-center {
    text-align: center;
  }
  .tablet\:align-right {
    text-align: right;
  }
  .tablet\:align-left {
    text-align: left;
  }
  .tablet\:align-center-block > * {
    margin-left: auto;
    margin-right: auto;
  }
  .tablet\:align-right-block > * {
    margin-left: auto;
  }
  .tablet\:align-left-block > * {
    margin-right: auto;
  }
}
@media screen and (max-width: 40em) {
  .sp\:align-center {
    text-align: center;
  }
  .sp\:align-right {
    text-align: right;
  }
  .sp\:align-left {
    text-align: left;
  }
  .sp\:align-center-block {
    margin-left: auto;
    margin-right: auto;
  }
  .sp\:align-right-block {
    margin-left: auto;
  }
  .sp\:align-left-block {
    margin-right: auto;
  }
}
[class*=ratio-] {
  width: 100%;
  object-fit: cover;
}

.ratio-16\:9 {
  aspect-ratio: 16/9;
}

.ratio-4\:3 {
  aspect-ratio: 4/3;
}

.ratio-3\:2 {
  aspect-ratio: 3/2;
}

.ratio-1\:1 {
  aspect-ratio: 1/1;
}

@media screen and (max-width: 64em) {
  .tablet\:ratio-16\:9 {
    aspect-ratio: 16/9;
  }
  .tablet\:ratio-4\:3 {
    aspect-ratio: 4/3;
  }
  .tablet\:ratio-3\:2 {
    aspect-ratio: 3/2;
  }
  .tablet\:ratio-1\:1 {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 40em) {
  .sp\:ratio-16\:9 {
    aspect-ratio: 16/9;
  }
  .sp\:ratio-4\:3 {
    aspect-ratio: 4/3;
  }
  .sp\:ratio-3\:2 {
    aspect-ratio: 3/2;
  }
  .sp\:ratio-1\:1 {
    aspect-ratio: 1/1;
  }
}
.c-section-title {
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}
.c-section-title.-nospace {
  margin-top: 0;
}
.c-section-title:first-child {
  margin-top: 0;
}
@media screen and (max-width: 40em) {
  .c-section-title {
    margin-top: 1.5625rem;
    margin-bottom: 1.5625rem;
  }
}

.c-section-title-jp {
  padding-bottom: 1.5625rem;
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1.3;
  position: relative;
  color: var(--color-navy);
}
.c-section-title-jp span {
  color: var(--color-yellow);
}
.c-section-title-jp.-line-center:after {
  content: "";
  width: 50px;
  height: 7px;
  background-image: url(/assets/img/line.svg);
  background-repeat: repeat-x;
  background-size: cover;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}
.c-section-title-jp.-line-left:after {
  content: "";
  width: 50px;
  height: 7px;
  background-image: url(/assets/img/line.svg);
  background-repeat: repeat-x;
  background-size: cover;
  position: absolute;
  bottom: 6px;
  left: 0;
}
@media screen and (max-width: 64em) {
  .c-section-title-jp.-line-left:after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 40em) {
  .c-section-title-jp {
    font-size: 1.375rem;
  }
}

.c-section-title-en {
  margin-bottom: 0.625rem;
  font-family: var(--font-family-english);
  font-size: 1.25rem;
  line-height: 1.2;
}

.c-text {
  font-size: 1rem;
  line-height: 1.9;
}
.c-text a {
  color: var(--color-navy);
  text-decoration: underline;
}
.c-text a:hover {
  text-decoration: none;
}
@media screen and (max-width: 40em) {
  .c-text {
    font-size: 0.875rem;
  }
}

.c-white {
  color: var(--color-white);
}

.c-navy {
  color: var(--color-navy);
}

.c-yellow {
  color: var(--color-yellow);
}

.c-green {
  color: var(--color-green);
}

.c-orange {
  color: var(--color-orange);
}

.c-btn-yellow {
  position: absolute;
  right: 60px;
  bottom: 60px;
  z-index: 10;
}
.c-btn-yellow a {
  display: flex;
  align-items: center;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  color: var(--color-navy);
  background-color: var(--color-yellow);
  background-image: url(/assets/img/illust-1.svg);
  background-repeat: no-repeat;
  background-size: 62px 40px;
  background-position: center 40px;
  position: relative;
  text-align: center;
  transition: color 0.2s, background-color 0.2s;
}
.c-btn-yellow a:before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  border: 3px dotted var(--color-white);
  border-radius: 50%;
}
.c-btn-yellow a:after {
  content: "参加する！";
  position: absolute;
  bottom: 54px;
  left: 50%;
  transform: translateX(calc(-50% + 5px));
  font-size: 22px;
  white-space: nowrap;
}
.c-btn-yellow a:hover {
  color: var(--color-navy);
  background-color: var(--color-green);
}
@media screen and (max-width: 40em) {
  .c-btn-yellow {
    display: none;
  }
}

.c-btn-navy a {
  display: flex;
  width: 139.3043px;
  height: 62.6087px;
  color: var(--color-white);
  background-color: var(--color-navy);
  transition: color 0.2s, background-color 0.2s;
}
.c-btn-navy a:hover {
  color: var(--color-navy);
  background-color: var(--color-green);
}

.c-btn-yellow-square {
  margin-top: 5.3125rem;
}
.c-btn-yellow-square a {
  width: 100%;
  height: 6.25rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--color-navy);
  background-color: var(--color-yellow);
  position: relative;
  box-shadow: 0 8px 0 var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background-color 0.2s;
}
.c-btn-yellow-square a span {
  display: inline-block;
  padding-left: 80px;
  position: relative;
}
.c-btn-yellow-square a span:before {
  content: "";
  width: 62px;
  height: 40px;
  background-image: url(/assets/img/illust-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-btn-yellow-square a:after {
  content: "";
  width: 18px;
  height: 36px;
  background-image: url(/assets/img/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
}
.c-btn-yellow-square a:hover {
  background-color: var(--color-green);
}
@media screen and (max-width: 40em) {
  .c-btn-yellow-square {
    margin-top: 2.5rem;
  }
  .c-btn-yellow-square a {
    height: 50px;
    font-size: 14px;
  }
  .c-btn-yellow-square a span {
    display: block;
    width: 100%;
    padding-left: 0;
    line-height: 1.2;
  }
  .c-btn-yellow-square a span:before {
    width: 30px;
    height: 20px;
    left: 20px;
  }
  .c-btn-yellow-square a:after {
    width: 9px;
    height: 18px;
    right: 20px;
  }
}

.c-btn-white-red a {
  width: 100%;
  height: 6.25rem;
  font-size: 1.25rem;
  color: #E63E32;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  transition: all 0.2s;
}
.c-btn-white-red a:hover {
  background-color: transparent;
  color: #fff;
}

.c-btn-red a {
  width: 100%;
  height: 6.25rem;
  font-size: 1.25rem;
  color: #fff;
  background-color: #E63E32;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E63E32;
  transition: all 0.2s;
}
.c-btn-red a:hover {
  background-color: transparent;
  color: #E63E32;
}

.c-table-title {
  padding: 0 1.875rem;
  height: 60px;
  font-size: 1.125rem;
  line-height: 1;
  background-color: var(--color-navy);
}

.c-table-list {
  padding: 2.1875rem;
  background-color: var(--color-white);
}
.c-table-list li {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--color-grey);
}
.c-table-list li:last-child {
  border-bottom: none;
}
.c-table-list .head {
  width: 4.6875rem;
  border-right: 1px solid var(--color-grey);
  box-sizing: border-box;
}
.c-table-list .detail {
  width: calc(100% - 75px);
  padding-left: 1.5625rem;
}
@media screen and (max-width: 40em) {
  .c-table-list {
    padding: 1.25rem;
  }
  .c-table-list .head {
    width: 3.125rem;
    line-height: 1.6;
  }
  .c-table-list .detail {
    padding-left: 0.625rem;
    line-height: 1.6;
  }
}

.c-outer {
  background-color: var(--color-green);
  position: relative;
  z-index: 2;
}
.c-outer + * {
  position: relative;
  z-index: 3;
}

.c-notice-outer {
  margin-top: 5rem;
  padding: 3.75rem;
  border: 2px solid var(--color-navy);
  position: relative;
  border-radius: 10px;
}
.c-notice-outer h3 {
  white-space: nowrap;
  padding: 0 1.5625rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  background-color: var(--color-white);
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 40em) {
  .c-notice-outer {
    margin-top: 3.75rem;
    padding: 3.125rem 1.25rem 1.25rem 1.25rem;
  }
  .c-notice-outer h3 {
    padding: 0.625rem;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 40em) {
  .sp\:c-overflow {
    overflow-x: scroll;
  }
  .sp\:c-overflow > * {
    width: max-content;
    flex-wrap: nowrap;
  }
  .l-wrap .sp\:c-overflow {
    margin-left: calc(-1 * var(--sp-margin));
    margin-right: calc(-1 * var(--sp-margin));
    padding-left: var(--sp-margin);
  }
  .l-wrap .sp\:c-overflow > * {
    padding-right: var(--sp-margin);
  }
}

.c-wave {
  width: 100%;
  height: 40px;
  position: absolute;
  top: -38px;
  left: 0;
  overflow: hidden;
  background-repeat: repeat-x;
  background-size: 1000px 100%;
  background-position: -200px 0;
  animation: wave 10s linear infinite;
}
.c-wave.-blue {
  background-image: url("../img/wave-1.png");
}
.c-wave.-white {
  background-image: url("../img/wave-2.png");
}
@media screen and (max-width: 40em) {
  .c-wave {
    animation-duration: 24s;
  }
}

@keyframes wave {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1476px 0;
  }
}
.c-bubbles {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-bubbles-contents {
  position: relative;
  z-index: 2;
}

.c-bubbles-filter {
  position: relative;
}
.c-bubbles-filter:before {
  content: "";
  display: block;
  height: 50px;
  left: 0;
  background: linear-gradient(180deg, var(--color-green), rgba(53, 185, 201, 0));
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.c-date-banner {
  display: flex;
  justify-content: center;
  gap: 1em;
}
.c-date-banner .head {
  width: 80px;
  font-size: 9px;
  text-align: center;
  color: var(--color-navy);
  background-color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-date-banner .detail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.4;
  gap: 0 10px;
}
.c-date-banner .date {
  font-size: 15px;
  font-weight: bold;
}
.c-date-banner .date small {
  margin-left: 0.5em;
}
.c-date-banner .place {
  font-size: 10px;
}

.c-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 6px 6px rgba(52, 52, 52, 0.1607843137);
}
@media screen and (max-width: 40em) {
  .c-box {
    padding: 28px 20px;
  }
}

.c-box-header {
  text-align: center;
  font-size: 32px;
  padding: 20px;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media screen and (max-width: 40em) {
  .c-box-header {
    font-size: 24px;
  }
}

.c-box-header--red {
  background-color: #E52D1A;
}

.c-box-header--yellow {
  background-color: #FFBF3C;
}

.c-box-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 40px 60px;
  box-shadow: 0 6px 6px rgba(52, 52, 52, 0.1607843137);
}
@media screen and (max-width: 40em) {
  .c-box-content {
    padding: 40px 20px;
  }
}

.c-box-header {
  text-align: center;
  font-size: 32px;
  padding: 20px;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media screen and (max-width: 40em) {
  .c-box-header {
    font-size: 24px;
  }
}

.c-box-header--red {
  background-color: #E52D1A;
}

.c-box-header--yellow {
  background-color: #FFBF3C;
}

.c-box-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 40px 60px;
  box-shadow: 0 6px 6px rgba(52, 52, 52, 0.1607843137);
}
@media screen and (max-width: 40em) {
  .c-box-content {
    padding: 40px 20px;
  }
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.item-baseline {
  align-items: baseline;
}

.item-center {
  align-items: center;
}

.item-start {
  align-items: flex-start;
}

.item-end {
  align-items: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-around {
  justify-content: space-around;
}

.direction-column {
  flex-direction: column;
}

.direction-column-reverse {
  flex-direction: column-reverse;
}

.direction-row {
  flex-direction: row;
}

.direction-row-reverse {
  flex-direction: row-reverse;
}

.flex-grow\:0 {
  flex-grow: 0;
}

.flex-grow\:1 {
  flex-grow: 1;
}

.flex-grow\:2 {
  flex-grow: 2;
}

.flex-grow\:3 {
  flex-grow: 3;
}

.order\:1 {
  order: 1;
}

.order\:2 {
  order: 2;
}

.order\:3 {
  order: 3;
}

.order\:4 {
  order: 4;
}

.order\:5 {
  order: 5;
}

@media screen and (min-width: 64.00001em) {
  .pc-only\:flex {
    display: flex;
  }
  .pc-only\:flex-wrap {
    flex-wrap: wrap;
  }
  .pc-only\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .pc-only\:item-baseline {
    align-items: baseline;
  }
  .pc-only\:item-center {
    align-items: center;
  }
  .pc-only\:item-start {
    align-items: flex-start;
  }
  .pc-only\:item-end {
    align-items: flex-end;
  }
  .pc-only\:justify-start {
    justify-content: flex-start;
  }
  .pc-only\:justify-center {
    justify-content: center;
  }
  .pc-only\:justify-end {
    justify-content: flex-end;
  }
  .pc-only\:justify-between {
    justify-content: space-between;
  }
  .pc-only\:justify-around {
    justify-content: space-around;
  }
  .pc-only\:direction-column {
    flex-direction: column;
  }
  .pc-only\:direction-column-reverse {
    flex-direction: column-reverse;
  }
  .pc-only\:direction-row {
    flex-direction: row;
  }
  .pc-only\:direction-row-reverse {
    flex-direction: row-reverse;
  }
  .pc-only\:flex-grow\:0 {
    flex-grow: 0;
  }
  .pc-only\:flex-grow\:1 {
    flex-grow: 1;
  }
  .pc-only\:flex-grow\:2 {
    flex-grow: 2;
  }
  .pc-only\:flex-grow\:3 {
    flex-grow: 3;
  }
  .pc-only\:order\:1 {
    order: 1;
  }
  .pc-only\:order\:2 {
    order: 2;
  }
  .pc-only\:order\:3 {
    order: 3;
  }
  .pc-only\:order\:4 {
    order: 4;
  }
  .pc-only\:order\:5 {
    order: 5;
  }
}
@media screen and (max-width: 80em) {
  .pc\:flex {
    display: flex;
  }
  .pc\:flex-wrap {
    flex-wrap: wrap;
  }
  .pc\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .pc\:item-baseline {
    align-items: baseline;
  }
  .pc\:item-center {
    align-items: center;
  }
  .pc\:item-start {
    align-items: flex-start;
  }
  .pc\:item-end {
    align-items: flex-end;
  }
  .pc\:justify-start {
    justify-content: flex-start;
  }
  .pc\:justify-center {
    justify-content: center;
  }
  .pc\:justify-end {
    justify-content: flex-end;
  }
  .pc\:justify-between {
    justify-content: space-between;
  }
  .pc\:justify-around {
    justify-content: space-around;
  }
  .pc\:direction-column {
    flex-direction: column;
  }
  .pc\:direction-column-reverse {
    flex-direction: column-reverse;
  }
  .pc\:direction-row {
    flex-direction: row;
  }
  .pc\:direction-row-reverse {
    flex-direction: row-reverse;
  }
  .pc\:flex-grow\:0 {
    flex-grow: 0;
  }
  .pc\:flex-grow\:1 {
    flex-grow: 1;
  }
  .pc\:flex-grow\:2 {
    flex-grow: 2;
  }
  .pc\:flex-grow\:3 {
    flex-grow: 3;
  }
  .pc\:order\:1 {
    order: 1;
  }
  .pc\:order\:2 {
    order: 2;
  }
  .pc\:order\:3 {
    order: 3;
  }
  .pc\:order\:4 {
    order: 4;
  }
  .pc\:order\:5 {
    order: 5;
  }
}
@media screen and (max-width: 64em) {
  .tablet\:flex {
    display: flex;
  }
  .tablet\:flex-wrap {
    flex-wrap: wrap;
  }
  .tablet\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .tablet\:item-baseline {
    align-items: baseline;
  }
  .tablet\:item-center {
    align-items: center;
  }
  .tablet\:item-start {
    align-items: flex-start;
  }
  .tablet\:item-end {
    align-items: flex-end;
  }
  .tablet\:justify-start {
    justify-content: flex-start;
  }
  .tablet\:justify-center {
    justify-content: center;
  }
  .tablet\:justify-end {
    justify-content: flex-end;
  }
  .tablet\:justify-between {
    justify-content: space-between;
  }
  .tablet\:justify-around {
    justify-content: space-around;
  }
  .tablet\:direction-column {
    flex-direction: column;
  }
  .tablet\:direction-column-reverse {
    flex-direction: column-reverse;
  }
  .tablet\:direction-row {
    flex-direction: row;
  }
  .tablet\:direction-row-reverse {
    flex-direction: row-reverse;
  }
  .tablet\:flex-grow\:0 {
    flex-grow: 0;
  }
  .tablet\:flex-grow\:1 {
    flex-grow: 1;
  }
  .tablet\:flex-grow\:2 {
    flex-grow: 2;
  }
  .tablet\:flex-grow\:3 {
    flex-grow: 3;
  }
  .tablet\:order\:1 {
    order: 1;
  }
  .tablet\:order\:2 {
    order: 2;
  }
  .tablet\:order\:3 {
    order: 3;
  }
  .tablet\:order\:4 {
    order: 4;
  }
  .tablet\:order\:5 {
    order: 5;
  }
}
@media screen and (max-width: 40em) {
  .sp\:flex {
    display: flex;
  }
  .sp\:flex-wrap {
    flex-wrap: wrap;
  }
  .sp\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .sp\:item-baseline {
    align-items: baseline;
  }
  .sp\:item-center {
    align-items: center;
  }
  .sp\:item-start {
    align-items: flex-start;
  }
  .sp\:item-end {
    align-items: flex-end;
  }
  .sp\:justify-start {
    justify-content: flex-start;
  }
  .sp\:justify-center {
    justify-content: center;
  }
  .sp\:justify-end {
    justify-content: flex-end;
  }
  .sp\:justify-between {
    justify-content: space-between;
  }
  .sp\:justify-around {
    justify-content: space-around;
  }
  .sp\:direction-column {
    flex-direction: column;
  }
  .sp\:direction-column-reverse {
    flex-direction: column-reverse;
  }
  .sp\:direction-row {
    flex-direction: row;
  }
  .sp\:direction-row-reverse {
    flex-direction: row-reverse;
  }
  .sp\:flex-grow\:0 {
    flex-grow: 0;
  }
  .sp\:flex-grow\:1 {
    flex-grow: 1;
  }
  .sp\:flex-grow\:2 {
    flex-grow: 2;
  }
  .sp\:flex-grow\:3 {
    flex-grow: 3;
  }
  .sp\:order\:1 {
    order: 1;
  }
  .sp\:order\:2 {
    order: 2;
  }
  .sp\:order\:3 {
    order: 3;
  }
  .sp\:order\:4 {
    order: 4;
  }
  .sp\:order\:5 {
    order: 5;
  }
}
:root {
  --scale-3: calc(var(--scale0) * 0.625);
  --scale-2: calc(var(--scale0) * 0.75);
  --scale-1: calc(var(--scale0) * 0.875);
  --scale0: 1rem;
  --scale1: calc(var(--scale0) * 1.125);
  --scale2: calc(var(--scale0) * 1.25);
  --scale3: calc(var(--scale0) * 1.375);
  --scale4: calc(var(--scale0) * 1.5);
  --scale5: calc(var(--scale0) * 1.625);
  --scale6: calc(var(--scale0) * 1.75);
  --scale7: calc(var(--scale0) * 1.875);
  --scale8: calc(var(--scale0) * 2.375);
  --scale9: calc(var(--scale0) * 2.5);
  --scale10: calc(var(--scale0) * 2.75);
}

.font-family\:ja {
  font-family: var(--font-family-japanese);
}

.font-family\:en {
  font-family: var(--font-family-english);
}

.font-size\:-2 {
  font-size: var(--scale-2);
}

.font-size\:-1 {
  font-size: var(--scale-1);
}

.font-size\:0 {
  font-size: var(--scale0);
}

.font-size\:1 {
  font-size: var(--scale1);
}

.font-size\:2 {
  font-size: var(--scale2);
}

.font-size\:3 {
  font-size: var(--scale3);
}

.font-size\:4 {
  font-size: var(--scale4);
}

.font-size\:5 {
  font-size: var(--scale5);
}

.font-size\:6 {
  font-size: var(--scale6);
}

.font-size\:7 {
  font-size: var(--scale7);
}

.font-size\:8 {
  font-size: var(--scale8);
}

.font-size\:9 {
  font-size: var(--scale9);
}

.font-size\:10 {
  font-size: var(--scale10);
}

.fw-medium {
  font-weight: 500;
}

.fw-bold {
  font-weight: bold;
}

.fw-exbold {
  font-weight: 800;
}

@media screen and (max-width: 80em) {
  .pc\:font-size\:-1 {
    font-size: var(--scale-1);
  }
  .pc\f ont-size\:0 {
    font-size: var(--scale0);
  }
  .pc\f ont-size\:1 {
    font-size: var(--scale1);
  }
  .pc\f ont-size\:2 {
    font-size: var(--scale2);
  }
  .pc\f ont-size\:3 {
    font-size: var(--scale3);
  }
  .pc\f ont-size\:4 {
    font-size: var(--scale4);
  }
  .pc\f ont-size\:5 {
    font-size: var(--scale5);
  }
  .pc\f ont-size\:6 {
    font-size: var(--scale6);
  }
  .pc\f ont-size\:7 {
    font-size: var(--scale7);
  }
  .pc\f ont-size\:8 {
    font-size: var(--scale8);
  }
  .pc\f ont-size\:9 {
    font-size: var(--scale9);
  }
  .pc\f ont-size\:10 {
    font-size: var(--scale10);
  }
}
@media screen and (max-width: 64em) {
  .tablet\:font-size\:-3 {
    font-size: var(--scale-3);
  }
  .tablet\:font-size\:-2 {
    font-size: var(--scale-2);
  }
  .tablet\:font-size\:-1 {
    font-size: var(--scale-1);
  }
  .tablet\:font-size\:0 {
    font-size: var(--scale0);
  }
  .tablet\:font-size\:1 {
    font-size: var(--scale1);
  }
  .tablet\:font-size\:2 {
    font-size: var(--scale2);
  }
  .tablet\:font-size\:3 {
    font-size: var(--scale3);
  }
  .tablet\:font-size\:4 {
    font-size: var(--scale4);
  }
  .tablet\:font-size\:5 {
    font-size: var(--scale5);
  }
  .tablet\:font-size\:6 {
    font-size: var(--scale6);
  }
  .tablet\:font-size\:7 {
    font-size: var(--scale7);
  }
}
@media screen and (max-width: 40em) {
  .sp\:font-size\:-4 {
    font-size: var(--scale-4);
  }
  .sp\:font-size\:-3 {
    font-size: var(--scale-3);
  }
  .sp\:font-size\:-2 {
    font-size: var(--scale-2);
  }
  .sp\:font-size\:-1 {
    font-size: var(--scale-1);
  }
  .sp\:font-size\:0 {
    font-size: var(--scale0);
  }
  .sp\:font-size\:1 {
    font-size: var(--scale1);
  }
  .sp\:font-size\:2 {
    font-size: var(--scale2);
  }
  .sp\:font-size\:3 {
    font-size: var(--scale3);
  }
  .sp\:font-size\:4 {
    font-size: var(--scale4);
  }
  .sp\:font-size\:5 {
    font-size: var(--scale5);
  }
  .sp\:font-size\:6 {
    font-size: var(--scale6);
  }
  .sp\:font-size\:7 {
    font-size: var(--scale7);
  }
}
.gap\:-5 {
  gap: var(--space-5);
}

.gap\:-4 {
  gap: var(--space-4);
}

.gap\:-3 {
  gap: var(--space-3);
}

.gap\:-2 {
  gap: var(--space-2);
}

.gap\:-1 {
  gap: var(--space-1);
}

.gap\:0 {
  gap: var(--space0);
}

.gap\:1 {
  gap: var(--space1);
}

.gap\:2 {
  gap: var(--space2);
}

.gap\:3 {
  gap: var(--space3);
}

.gap\:4 {
  gap: var(--space4);
}

.gap\:5 {
  gap: var(--space5);
}

.no-gap {
  gap: 0;
}

@media screen and (max-width: 80em) {
  .pc\:gap\:-5 {
    gap: var(--space-5);
  }
  .pc\:gap\:-4 {
    gap: var(--space-4);
  }
  .pc\:gap\:-3 {
    gap: var(--space-3);
  }
  .pc\:gap\:-2 {
    gap: var(--space-2);
  }
  .pc\:gap\:-1 {
    gap: var(--space-1);
  }
  .pc\:gap\:0 {
    gap: var(--space0);
  }
  .pc\:gap\:1 {
    gap: var(--space1);
  }
  .pc\:gap\:2 {
    gap: var(--space2);
  }
  .pc\:gap\:3 {
    gap: var(--space3);
  }
  .pc\:gap\:4 {
    gap: var(--space4);
  }
  .pc\:gap\:5 {
    gap: var(--space5);
  }
  .pc\:no-gap {
    gap: 0;
  }
}
@media screen and (max-width: 64em) {
  .tablet\:gap\:-5 {
    gap: var(--space-5);
  }
  .tablet\:gap\:-4 {
    gap: var(--space-4);
  }
  .tablet\:gap\:-3 {
    gap: var(--space-3);
  }
  .tablet\:gap\:-2 {
    gap: var(--space-2);
  }
  .tablet\:gap\:-1 {
    gap: var(--space-1);
  }
  .tablet\:gap\:0 {
    gap: var(--space0);
  }
  .tablet\:gap\:1 {
    gap: var(--space1);
  }
  .tablet\:gap\:2 {
    gap: var(--space2);
  }
  .tablet\:gap\:3 {
    gap: var(--space3);
  }
  .tablet\:gap\:4 {
    gap: var(--space4);
  }
  .tablet\:gap\:5 {
    gap: var(--space5);
  }
  .tablet\:no-gap {
    gap: 0;
  }
}
@media screen and (max-width: 40em) {
  .sp\:gap\:-5 {
    gap: var(--space-5);
  }
  .sp\:gap\:-4 {
    gap: var(--space-4);
  }
  .sp\:gap\:-3 {
    gap: var(--space-3);
  }
  .sp\:gap\:-2 {
    gap: var(--space-2);
  }
  .sp\:gap\:-1 {
    gap: var(--space-1);
  }
  .sp\:gap\:0 {
    gap: var(--space0);
  }
  .sp\:gap\:1 {
    gap: var(--space1);
  }
  .sp\:gap\:2 {
    gap: var(--space2);
  }
  .sp\:gap\:3 {
    gap: var(--space3);
  }
  .sp\:gap\:4 {
    gap: var(--space4);
  }
  .sp\:gap\:5 {
    gap: var(--space5);
  }
  .sp\:no-gap {
    gap: 0;
  }
}
.l-grid {
  display: flex;
  flex-wrap: wrap;
}
.l-grid.-c2 {
  margin: -1.25rem;
}
.l-grid.-c2 > * {
  width: calc((100% - 80px) / 2);
  margin: 1.25rem;
}
.l-grid.-c3 {
  margin: -1.25rem;
}
.l-grid.-c3 > * {
  width: calc((100% - 120px) / 3);
  margin: 1.25rem;
}
@media screen and (max-width: 40em) {
  .l-grid.-c3 > * {
    width: calc((100% - 120px) / 3);
    margin: 0.3125rem;
  }
}
.l-grid.-c4 {
  margin: 0 -1.25rem;
}
.l-grid.-c4 > * {
  width: calc((100% - 160px) / 4);
  margin: 1.25rem;
}
@media screen and (max-width: 64em) {
  .l-grid.-c4 {
    margin: -0.625rem;
  }
  .l-grid.-c4 > * {
    width: calc((100% - 40px) / 2);
    margin: 0.625rem;
  }
}
@media screen and (max-width: 40em) {
  .l-grid.-c2 {
    margin: 0;
  }
  .l-grid.-c2 > * {
    width: 100%;
    margin: 0;
  }
  .l-grid.-c2 > * + * {
    margin-top: var(--space2);
  }
  .l-grid.-c3 {
    margin-left: 0;
    margin-right: 0;
  }
  .l-grid.-c3 > * {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .l-grid.-c3 > * + * {
    margin-top: var(--space2);
  }
}

.js-readMoreContainer {
  opacity: 0;
  transition: 0.3s var(--transition-timing-function);
}
.js-readMoreContainer.show {
  opacity: 1;
}

.js-readMoreItem {
  display: none;
}

.js-accordion-btn {
  cursor: pointer;
}

.js-accordion-content {
  height: 0;
  overflow: hidden;
  transition: all 0.2s var(--transition-timing-function);
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 0.2s var(--transition-timing-function);
}

.letter-spacing\:1 {
  letter-spacing: 0.025em;
}

.letter-spacing\:2 {
  letter-spacing: 0.05em;
}

.line-height\:1 {
  line-height: 1;
}

.line-height\:2 {
  line-height: 1.2;
}

.line-height\:3 {
  line-height: 1.3;
}

.line-height\:4 {
  line-height: 1.5;
}

.line-height\:5 {
  line-height: 1.6;
}

.line-height\:6 {
  line-height: 1.7;
}

.line-height\:7 {
  line-height: 1.8;
}

.line-height\:8 {
  line-height: 1.9;
}

.line-height\:9 {
  line-height: 2;
}

.line-height\:10 {
  line-height: 2.3;
}

@media screen and (max-width: 40em) {
  .sp\:line-height\:1 {
    line-height: 1;
  }
  .sp\:line-height\:2 {
    line-height: 1.2;
  }
  .sp\:line-height\:3 {
    line-height: 1.3;
  }
  .sp\:line-height\:4 {
    line-height: 1.5;
  }
  .sp\:line-height\:5 {
    line-height: 1.6;
  }
  .sp\:line-height\:6 {
    line-height: 1.7;
  }
  .sp\:line-height\:7 {
    line-height: 1.8;
  }
  .sp\:line-height\:8 {
    line-height: 1.9;
  }
  .sp\:line-height\:9 {
    line-height: 2;
  }
  .sp\:line-height\:10 {
    line-height: 2.3;
  }
}
:root {
  --measure-1: 335px;
  --measure: 760px;
  --measure2: 960px;
  --measure3: 1160px;
}

[class*=max-width] {
  padding-right: var(--space2);
  padding-left: var(--space2);
  margin-left: auto;
  margin-right: auto;
}

.max-width\:0 {
  max-width: var(--measure);
}

.max-width\:1 {
  max-width: var(--measure2);
}

.max-width\:2 {
  max-width: var(--measure3);
}

@media screen and (max-width: 40em) {
  .sp:max-width\:-1 {
    max-width: var(--measure-1);
  }
  [class*=max-width] {
    padding-right: var(--sp-margin);
    padding-left: var(--sp-margin);
  }
}
.padding\:-5 {
  padding: var(--space-5);
}

.padding\:-4 {
  padding: var(--space-4);
}

.padding\:-3 {
  padding: var(--space-3);
}

.padding\:-2 {
  padding: var(--space-2);
}

.padding\:-1 {
  padding: var(--space-1);
}

.padding\:0 {
  padding: var(--space0);
}

.padding\:1 {
  padding: var(--space1);
}

.padding\:2 {
  padding: var(--space2);
}

.padding\:3 {
  padding: var(--space3);
}

.padding\:4 {
  padding: var(--space4);
}

.padding\:5 {
  padding: var(--space5);
}

.no-padding {
  padding: 0;
}

@media screen and (min-width: 64.00001em) {
  .pc-only\:padding\:-5 {
    padding: var(--space-5);
  }
  .pc-only\:padding\:-4 {
    padding: var(--space-4);
  }
  .pc-only\:padding\:-3 {
    padding: var(--space-3);
  }
  .pc-only\:padding\:-2 {
    padding: var(--space-2);
  }
  .pc-only\:padding\:-1 {
    padding: var(--space-1);
  }
  .pc-only\:padding\:0 {
    padding: var(--space0);
  }
  .pc-only\:padding\:1 {
    padding: var(--space1);
  }
  .pc-only\:padding\:2 {
    padding: var(--space2);
  }
  .pc-only\:padding\:3 {
    padding: var(--space3);
  }
  .pc-only\:padding\:4 {
    padding: var(--space4);
  }
  .pc-only\:padding\:5 {
    padding: var(--space5);
  }
  .pc-only\:no-padding {
    padding: 0;
  }
}
@media screen and (max-width: 64em) {
  .tablet\:padding\:-5 {
    padding: var(--space-5);
  }
  .tablet\:padding\:-4 {
    padding: var(--space-4);
  }
  .tablet\:padding\:-3 {
    padding: var(--space-3);
  }
  .tablet\:padding\:-2 {
    padding: var(--space-2);
  }
  .tablet\:padding\:-1 {
    padding: var(--space-1);
  }
  .tablet\:padding\:0 {
    padding: var(--space0);
  }
  .tablet\:padding\:1 {
    padding: var(--space1);
  }
  .tablet\:padding\:2 {
    padding: var(--space2);
  }
  .tablet\:padding\:3 {
    padding: var(--space3);
  }
  .tablet\:padding\:4 {
    padding: var(--space4);
  }
  .tablet\:padding\:5 {
    padding: var(--space5);
  }
  .tablet\:no-padding {
    padding: 0;
  }
}
@media screen and (max-width: 40em) {
  .sp\:padding\:-5 {
    padding: var(--space-5);
  }
  .sp\:padding\:-4 {
    padding: var(--space-4);
  }
  .sp\:padding\:-3 {
    padding: var(--space-3);
  }
  .sp\:padding\:-2 {
    padding: var(--space-2);
  }
  .sp\:padding\:-1 {
    padding: var(--space-1);
  }
  .sp\:padding\:0 {
    padding: var(--space0);
  }
  .sp\:padding\:1 {
    padding: var(--space1);
  }
  .sp\:padding\:2 {
    padding: var(--space2);
  }
  .sp\:padding\:3 {
    padding: var(--space3);
  }
  .sp\:padding\:4 {
    padding: var(--space4);
  }
  .sp\:padding\:5 {
    padding: var(--space5);
  }
  .sp\:no-padding {
    padding: 0;
  }
}
.padding-top\:-5 {
  padding-top: var(--space-5);
}

.padding-top\:-4 {
  padding-top: var(--space-4);
}

.padding-top\:-3 {
  padding-top: var(--space-3);
}

.padding-top\:-2 {
  padding-top: var(--space-2);
}

.padding-top\:-1 {
  padding-top: var(--space-1);
}

.padding-top\:0 {
  padding-top: var(--space0);
}

.padding-top\:1 {
  padding-top: var(--space1);
}

.padding-top\:2 {
  padding-top: var(--space2);
}

.padding-top\:3 {
  padding-top: var(--space3);
}

.padding-top\:4 {
  padding-top: var(--space4);
}

.padding-top\:5 {
  padding-top: var(--space5);
}

.no-padding {
  padding-top: 0;
}

@media screen and (min-width: 64.00001em) {
  .pc-only\:padding-top\:-5 {
    padding-top: var(--space-5);
  }
  .pc-only\:padding-top\:-4 {
    padding-top: var(--space-4);
  }
  .pc-only\:padding-top\:-3 {
    padding-top: var(--space-3);
  }
  .pc-only\:padding-top\:-2 {
    padding-top: var(--space-2);
  }
  .pc-only\:padding-top\:-1 {
    padding-top: var(--space-1);
  }
  .pc-only\:padding-top\:0 {
    padding-top: var(--space0);
  }
  .pc-only\:padding-top\:1 {
    padding-top: var(--space1);
  }
  .pc-only\:padding-top\:2 {
    padding-top: var(--space2);
  }
  .pc-only\:padding-top\:3 {
    padding-top: var(--space3);
  }
  .pc-only\:padding-top\:4 {
    padding-top: var(--space4);
  }
  .pc-only\:padding-top\:5 {
    padding-top: var(--space5);
  }
  .pc-only\:no-padding {
    padding-top: 0;
  }
}
@media screen and (max-width: 64em) {
  .tablet\:padding-top\:-5 {
    padding-top: var(--space-5);
  }
  .tablet\:padding-top\:-4 {
    padding-top: var(--space-4);
  }
  .tablet\:padding-top\:-3 {
    padding-top: var(--space-3);
  }
  .tablet\:padding-top\:-2 {
    padding-top: var(--space-2);
  }
  .tablet\:padding-top\:-1 {
    padding-top: var(--space-1);
  }
  .tablet\:padding-top\:0 {
    padding-top: var(--space0);
  }
  .tablet\:padding-top\:1 {
    padding-top: var(--space1);
  }
  .tablet\:padding-top\:2 {
    padding-top: var(--space2);
  }
  .tablet\:padding-top\:3 {
    padding-top: var(--space3);
  }
  .tablet\:padding-top\:4 {
    padding-top: var(--space4);
  }
  .tablet\:padding-top\:5 {
    padding-top: var(--space5);
  }
  .tablet\:no-padding {
    padding-top: 0;
  }
}
@media screen and (max-width: 40em) {
  .sp\:padding-top\:-5 {
    padding-top: var(--space-5);
  }
  .sp\:padding-top\:-4 {
    padding-top: var(--space-4);
  }
  .sp\:padding-top\:-3 {
    padding-top: var(--space-3);
  }
  .sp\:padding-top\:-2 {
    padding-top: var(--space-2);
  }
  .sp\:padding-top\:-1 {
    padding-top: var(--space-1);
  }
  .sp\:padding-top\:0 {
    padding-top: var(--space0);
  }
  .sp\:padding-top\:1 {
    padding-top: var(--space1);
  }
  .sp\:padding-top\:2 {
    padding-top: var(--space2);
  }
  .sp\:padding-top\:3 {
    padding-top: var(--space3);
  }
  .sp\:padding-top\:4 {
    padding-top: var(--space4);
  }
  .sp\:padding-top\:5 {
    padding-top: var(--space5);
  }
  .sp\:no-padding {
    padding-top: 0;
  }
}
.rte {
  line-height: 2;
}
.rte > * + * {
  margin-top: 2em;
}
.rte .has-small-font-size {
  font-size: var(--scale-1);
}
.rte .has-normal-font-size {
  font-size: var(--scale0);
}
.rte .has-medium-font-size {
  font-size: var(--scale1);
}
.rte .has-large-font-size {
  font-size: var(--scale2);
}
.rte .has-huge-font-size {
  font-size: var(--scale3);
}
.rte .has-text-align-left {
  text-align: left;
}
.rte .has-text-align-center {
  text-align: center;
}
.rte .has-text-align-right {
  text-align: right;
}
.rte .alignleft > * {
  margin-right: auto;
}
.rte .aligncenter > * {
  margin-right: auto;
  margin-left: auto;
}
.rte .alignright > * {
  margin-left: auto;
}
.rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6 {
  margin-top: 2em;
  margin-bottom: 0.5em;
  line-height: 1.6;
  font-weight: bold;
}
.rte h1 {
  font-size: var(--scale2);
}
.rte h2 {
  font-size: var(--scale1);
}
.rte h3 {
  font-size: var(--scale0);
}
.rte > figure {
  margin-top: 4em;
  margin-bottom: 4em;
}
.rte small {
  display: block;
  line-height: 1.4;
  margin-top: 5px;
}
.rte hr {
  height: 1px;
  appearance: none;
  margin: 2em 0;
  background-color: var(--color-border3);
  width: 100%;
  border: none;
}
.rte iframe {
  max-width: 100%;
}
.rte a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.rte a:hover {
  text-decoration: none;
}
.rte blockquote {
  padding: var(--space0) var(--space1);
  background-color: var(--color-background2);
  line-height: 2;
}
.rte blockquote strong {
  font-size: 1.2em;
}
.rte blockquote cite {
  font-style: normal;
}
.rte dl dt {
  margin-bottom: 0.5em;
}
.rte dl dd + dt {
  margin-top: 2em;
}
.rte figcaption {
  margin-top: 5px;
  font-size: 0.8em;
}
.rte .wp-block-table {
  width: 100%;
}
.rte .wp-block-image {
  max-width: 100%;
}
.rte .is-style-rounded {
  border-radius: 4px;
}
.rte .blocks-gallery-grid {
  display: flex;
  flex-wrap: wrap;
}
.columns-2 .rte .blocks-gallery-grid {
  margin: -1.25rem;
}
.columns-2 .rte .blocks-gallery-grid .blocks-gallery-item {
  width: calc((100% - 80px) / 2);
  margin: 1.25rem;
}
.columns-3 .rte .blocks-gallery-grid {
  margin: -1.25rem;
}
.columns-3 .rte .blocks-gallery-grid .blocks-gallery-item {
  width: calc((100% - 120px) / 3);
  margin: 1.25rem;
}
.columns-4 .rte .blocks-gallery-grid {
  margin: -1.25rem;
}
.columns-4 .rte .blocks-gallery-grid .blocks-gallery-item {
  width: calc((100% - 160px) / 4);
  margin: 1.25rem;
}
@media screen and (max-width: 64em) {
  .columns-3 .rte .blocks-gallery-grid .blocks-gallery-item {
    width: calc((100% - 60px) / 2);
  }
  .columns-4 .rte .blocks-gallery-grid {
    margin: -0.625rem;
  }
  .columns-4 .rte .blocks-gallery-grid .blocks-gallery-item {
    width: calc((100% - 40px) / 2);
    margin: 0.625rem;
  }
}
@media screen and (max-width: 40em) {
  .columns-2 .rte .blocks-gallery-grid {
    margin: 0;
  }
  .columns-2 .rte .blocks-gallery-grid .blocks-gallery-item {
    width: 100%;
    margin: 0;
  }
  .columns-2 .rte .blocks-gallery-grid .blocks-gallery-item + * {
    margin-top: 40px;
  }
  .columns-3 .rte .blocks-gallery-grid {
    margin-left: 0;
    margin-right: 0;
  }
  .columns-3 .rte .blocks-gallery-grid .blocks-gallery-item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.rte .wp-block-columns {
  display: flex;
  gap: var(--space2);
}
.rte .wp-block-buttons {
  display: flex;
  gap: var(--space2);
  justify-content: center;
}
.rte .wp-block-media-text {
  display: flex;
  justify-content: space-between;
}
.rte .wp-block-media-text.has-media-on-the-right {
  flex-direction: row-reverse;
}
@media screen and (max-width: 40em) {
  .rte .wp-block-media-text {
    flex-direction: column;
  }
  .rte .wp-block-media-text.has-media-on-the-right {
    flex-direction: column;
  }
}
.rte .wp-block-media-text__media,
.rte .wp-block-media-text__content {
  width: calc(50% - 20px);
}
@media screen and (max-width: 40em) {
  .rte .wp-block-media-text__media,
.rte .wp-block-media-text__content {
    width: auto;
  }
}
.rte .wp-block-embed-youtube {
  text-align: center;
}
@media screen and (max-width: 40em) {
  .rte .has-large-font-size {
    font-size: 2em;
  }
}

.stack\:0 > * + * {
  margin-top: var(--space0);
}

.stack\:1 > * + * {
  margin-top: var(--space1);
}

.stack\:2 > * + * {
  margin-top: var(--space2);
}

.stack\:3 > * + * {
  margin-top: var(--space3);
}

.stack\:4 > * + * {
  margin-top: var(--space4);
}

.stack\:5 > * + * {
  margin-top: var(--space5);
}

.stack\:6 > * + * {
  margin-top: var(--space6);
}

.stack\:7 > * + * {
  margin-top: var(--space7);
}

@media screen and (max-width: 80em) {
  .pc\:stack\:0 > * + * {
    margin-top: var(--space0);
  }
  .pc\:stack\:1 > * + * {
    margin-top: var(--space1);
  }
  .pc\:stack\:2 > * + * {
    margin-top: var(--space2);
  }
  .pc\:stack\:3 > * + * {
    margin-top: var(--space3);
  }
  .pc\:stack\:4 > * + * {
    margin-top: var(--space4);
  }
  .pc\:stack\:5 > * + * {
    margin-top: var(--space5);
  }
  .pc\:stack\:6 > * + * {
    margin-top: var(--space6);
  }
  .pc\:stack\:7 > * + * {
    margin-top: var(--space7);
  }
  .pc\:no-stack > * + * {
    margin-top: 0;
  }
}
@media screen and (max-width: 64em) {
  .tablet\:stack\:0 > * + * {
    margin-top: var(--space0);
  }
  .tablet\:stack\:1 > * + * {
    margin-top: var(--space1);
  }
  .tablet\:stack\:2 > * + * {
    margin-top: var(--space2);
  }
  .tablet\:stack\:3 > * + * {
    margin-top: var(--space3);
  }
  .tablet\:stack\:4 > * + * {
    margin-top: var(--space4);
  }
  .tablet\:stack\:5 > * + * {
    margin-top: var(--space5);
  }
  .tablet\:stack\:6 > * + * {
    margin-top: var(--space6);
  }
  .tablet\:stack\:7 > * + * {
    margin-top: var(--space7);
  }
  .tablet\:no-stack > * + * {
    margin-top: 0;
  }
}
@media screen and (max-width: 40em) {
  .sp\:stack\:0 > * + * {
    margin-top: var(--space0);
  }
  .sp\:stack\:1 > * + * {
    margin-top: var(--space1);
  }
  .sp\:stack\:2 > * + * {
    margin-top: var(--space2);
  }
  .sp\:stack\:3 > * + * {
    margin-top: var(--space3);
  }
  .sp\:stack\:4 > * + * {
    margin-top: var(--space4);
  }
  .sp\:stack\:5 > * + * {
    margin-top: var(--space5);
  }
  .sp\:stack\:6 > * + * {
    margin-top: var(--space6);
  }
  .sp\:stack\:7 > * + * {
    margin-top: var(--space7);
  }
  .sp\:no-stack > * + * {
    margin-top: 0;
  }
}
.svg-icon-arrow {
  fill: none;
  stroke: var(--color-accent);
  stroke-miterlimit: 10;
}

.display-none {
  display: none;
}

@media screen and (max-width: 64em) {
  .tablet\:display-none {
    display: none;
  }
}

@media screen and (max-width: 40em) {
  .sp\:display-none {
    display: none;
  }
}

.display-block {
  display: block;
}

@media screen and (max-width: 64em) {
  .tablet\:display-block {
    display: block;
  }
}

@media screen and (max-width: 40em) {
  .sp\:display-block {
    display: block;
  }
}

.display-contents {
  display: contents;
}

@media screen and (max-width: 64em) {
  .tablet\:display-contents {
    display: contents;
  }
}

@media screen and (max-width: 40em) {
  .sp\:display-contents {
    display: contents;
  }
}

.space-nowrap {
  white-space: nowrap;
}

.u-wrap {
  max-width: 68.75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: relative;
}
@media screen and (max-width: 40em) {
  .u-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.u-wrap2 {
  margin-left: 255px;
  margin-right: 255px;
  padding-left: auto;
  padding-right: auto;
  position: relative;
}
@media screen and (max-width: 64em) {
  .u-wrap2 {
    margin-left: 0;
    margin-right: 0;
  }
}

.u-wrap-min {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: relative;
}
@media screen and (max-width: 40em) {
  .u-wrap-min {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.width\:1 {
  width: 1%;
}

.width\:2 {
  width: 2%;
}

.width\:3 {
  width: 3%;
}

.width\:4 {
  width: 4%;
}

.width\:5 {
  width: 5%;
}

.width\:6 {
  width: 6%;
}

.width\:7 {
  width: 7%;
}

.width\:8 {
  width: 8%;
}

.width\:9 {
  width: 9%;
}

.width\:10 {
  width: 10%;
}

.width\:11 {
  width: 11%;
}

.width\:12 {
  width: 12%;
}

.width\:13 {
  width: 13%;
}

.width\:14 {
  width: 14%;
}

.width\:15 {
  width: 15%;
}

.width\:16 {
  width: 16%;
}

.width\:17 {
  width: 17%;
}

.width\:18 {
  width: 18%;
}

.width\:19 {
  width: 19%;
}

.width\:20 {
  width: 20%;
}

.width\:21 {
  width: 21%;
}

.width\:22 {
  width: 22%;
}

.width\:23 {
  width: 23%;
}

.width\:24 {
  width: 24%;
}

.width\:25 {
  width: 25%;
}

.width\:26 {
  width: 26%;
}

.width\:27 {
  width: 27%;
}

.width\:28 {
  width: 28%;
}

.width\:29 {
  width: 29%;
}

.width\:30 {
  width: 30%;
}

.width\:31 {
  width: 31%;
}

.width\:32 {
  width: 32%;
}

.width\:33 {
  width: 33%;
}

.width\:34 {
  width: 34%;
}

.width\:35 {
  width: 35%;
}

.width\:36 {
  width: 36%;
}

.width\:37 {
  width: 37%;
}

.width\:38 {
  width: 38%;
}

.width\:39 {
  width: 39%;
}

.width\:40 {
  width: 40%;
}

.width\:41 {
  width: 41%;
}

.width\:42 {
  width: 42%;
}

.width\:43 {
  width: 43%;
}

.width\:44 {
  width: 44%;
}

.width\:45 {
  width: 45%;
}

.width\:46 {
  width: 46%;
}

.width\:47 {
  width: 47%;
}

.width\:48 {
  width: 48%;
}

.width\:49 {
  width: 49%;
}

.width\:50 {
  width: 50%;
}

.width\:51 {
  width: 51%;
}

.width\:52 {
  width: 52%;
}

.width\:53 {
  width: 53%;
}

.width\:54 {
  width: 54%;
}

.width\:55 {
  width: 55%;
}

.width\:56 {
  width: 56%;
}

.width\:57 {
  width: 57%;
}

.width\:58 {
  width: 58%;
}

.width\:59 {
  width: 59%;
}

.width\:60 {
  width: 60%;
}

.width\:61 {
  width: 61%;
}

.width\:62 {
  width: 62%;
}

.width\:63 {
  width: 63%;
}

.width\:64 {
  width: 64%;
}

.width\:65 {
  width: 65%;
}

.width\:66 {
  width: 66%;
}

.width\:67 {
  width: 67%;
}

.width\:68 {
  width: 68%;
}

.width\:69 {
  width: 69%;
}

.width\:70 {
  width: 70%;
}

.width\:71 {
  width: 71%;
}

.width\:72 {
  width: 72%;
}

.width\:73 {
  width: 73%;
}

.width\:74 {
  width: 74%;
}

.width\:75 {
  width: 75%;
}

.width\:76 {
  width: 76%;
}

.width\:77 {
  width: 77%;
}

.width\:78 {
  width: 78%;
}

.width\:79 {
  width: 79%;
}

.width\:80 {
  width: 80%;
}

.width\:81 {
  width: 81%;
}

.width\:82 {
  width: 82%;
}

.width\:83 {
  width: 83%;
}

.width\:84 {
  width: 84%;
}

.width\:85 {
  width: 85%;
}

.width\:86 {
  width: 86%;
}

.width\:87 {
  width: 87%;
}

.width\:88 {
  width: 88%;
}

.width\:89 {
  width: 89%;
}

.width\:90 {
  width: 90%;
}

.width\:91 {
  width: 91%;
}

.width\:92 {
  width: 92%;
}

.width\:93 {
  width: 93%;
}

.width\:94 {
  width: 94%;
}

.width\:95 {
  width: 95%;
}

.width\:96 {
  width: 96%;
}

.width\:97 {
  width: 97%;
}

.width\:98 {
  width: 98%;
}

.width\:99 {
  width: 99%;
}

.width\:100 {
  width: 100%;
}

@media screen and (min-width: 64.00001em) {
  .pc-only\:width\:1 {
    width: 1%;
  }
  .pc-only\:width\:2 {
    width: 2%;
  }
  .pc-only\:width\:3 {
    width: 3%;
  }
  .pc-only\:width\:4 {
    width: 4%;
  }
  .pc-only\:width\:5 {
    width: 5%;
  }
  .pc-only\:width\:6 {
    width: 6%;
  }
  .pc-only\:width\:7 {
    width: 7%;
  }
  .pc-only\:width\:8 {
    width: 8%;
  }
  .pc-only\:width\:9 {
    width: 9%;
  }
  .pc-only\:width\:10 {
    width: 10%;
  }
  .pc-only\:width\:11 {
    width: 11%;
  }
  .pc-only\:width\:12 {
    width: 12%;
  }
  .pc-only\:width\:13 {
    width: 13%;
  }
  .pc-only\:width\:14 {
    width: 14%;
  }
  .pc-only\:width\:15 {
    width: 15%;
  }
  .pc-only\:width\:16 {
    width: 16%;
  }
  .pc-only\:width\:17 {
    width: 17%;
  }
  .pc-only\:width\:18 {
    width: 18%;
  }
  .pc-only\:width\:19 {
    width: 19%;
  }
  .pc-only\:width\:20 {
    width: 20%;
  }
  .pc-only\:width\:21 {
    width: 21%;
  }
  .pc-only\:width\:22 {
    width: 22%;
  }
  .pc-only\:width\:23 {
    width: 23%;
  }
  .pc-only\:width\:24 {
    width: 24%;
  }
  .pc-only\:width\:25 {
    width: 25%;
  }
  .pc-only\:width\:26 {
    width: 26%;
  }
  .pc-only\:width\:27 {
    width: 27%;
  }
  .pc-only\:width\:28 {
    width: 28%;
  }
  .pc-only\:width\:29 {
    width: 29%;
  }
  .pc-only\:width\:30 {
    width: 30%;
  }
  .pc-only\:width\:31 {
    width: 31%;
  }
  .pc-only\:width\:32 {
    width: 32%;
  }
  .pc-only\:width\:33 {
    width: 33%;
  }
  .pc-only\:width\:34 {
    width: 34%;
  }
  .pc-only\:width\:35 {
    width: 35%;
  }
  .pc-only\:width\:36 {
    width: 36%;
  }
  .pc-only\:width\:37 {
    width: 37%;
  }
  .pc-only\:width\:38 {
    width: 38%;
  }
  .pc-only\:width\:39 {
    width: 39%;
  }
  .pc-only\:width\:40 {
    width: 40%;
  }
  .pc-only\:width\:41 {
    width: 41%;
  }
  .pc-only\:width\:42 {
    width: 42%;
  }
  .pc-only\:width\:43 {
    width: 43%;
  }
  .pc-only\:width\:44 {
    width: 44%;
  }
  .pc-only\:width\:45 {
    width: 45%;
  }
  .pc-only\:width\:46 {
    width: 46%;
  }
  .pc-only\:width\:47 {
    width: 47%;
  }
  .pc-only\:width\:48 {
    width: 48%;
  }
  .pc-only\:width\:49 {
    width: 49%;
  }
  .pc-only\:width\:50 {
    width: 50%;
  }
  .pc-only\:width\:51 {
    width: 51%;
  }
  .pc-only\:width\:52 {
    width: 52%;
  }
  .pc-only\:width\:53 {
    width: 53%;
  }
  .pc-only\:width\:54 {
    width: 54%;
  }
  .pc-only\:width\:55 {
    width: 55%;
  }
  .pc-only\:width\:56 {
    width: 56%;
  }
  .pc-only\:width\:57 {
    width: 57%;
  }
  .pc-only\:width\:58 {
    width: 58%;
  }
  .pc-only\:width\:59 {
    width: 59%;
  }
  .pc-only\:width\:60 {
    width: 60%;
  }
  .pc-only\:width\:61 {
    width: 61%;
  }
  .pc-only\:width\:62 {
    width: 62%;
  }
  .pc-only\:width\:63 {
    width: 63%;
  }
  .pc-only\:width\:64 {
    width: 64%;
  }
  .pc-only\:width\:65 {
    width: 65%;
  }
  .pc-only\:width\:66 {
    width: 66%;
  }
  .pc-only\:width\:67 {
    width: 67%;
  }
  .pc-only\:width\:68 {
    width: 68%;
  }
  .pc-only\:width\:69 {
    width: 69%;
  }
  .pc-only\:width\:70 {
    width: 70%;
  }
  .pc-only\:width\:71 {
    width: 71%;
  }
  .pc-only\:width\:72 {
    width: 72%;
  }
  .pc-only\:width\:73 {
    width: 73%;
  }
  .pc-only\:width\:74 {
    width: 74%;
  }
  .pc-only\:width\:75 {
    width: 75%;
  }
  .pc-only\:width\:76 {
    width: 76%;
  }
  .pc-only\:width\:77 {
    width: 77%;
  }
  .pc-only\:width\:78 {
    width: 78%;
  }
  .pc-only\:width\:79 {
    width: 79%;
  }
  .pc-only\:width\:80 {
    width: 80%;
  }
  .pc-only\:width\:81 {
    width: 81%;
  }
  .pc-only\:width\:82 {
    width: 82%;
  }
  .pc-only\:width\:83 {
    width: 83%;
  }
  .pc-only\:width\:84 {
    width: 84%;
  }
  .pc-only\:width\:85 {
    width: 85%;
  }
  .pc-only\:width\:86 {
    width: 86%;
  }
  .pc-only\:width\:87 {
    width: 87%;
  }
  .pc-only\:width\:88 {
    width: 88%;
  }
  .pc-only\:width\:89 {
    width: 89%;
  }
  .pc-only\:width\:90 {
    width: 90%;
  }
  .pc-only\:width\:91 {
    width: 91%;
  }
  .pc-only\:width\:92 {
    width: 92%;
  }
  .pc-only\:width\:93 {
    width: 93%;
  }
  .pc-only\:width\:94 {
    width: 94%;
  }
  .pc-only\:width\:95 {
    width: 95%;
  }
  .pc-only\:width\:96 {
    width: 96%;
  }
  .pc-only\:width\:97 {
    width: 97%;
  }
  .pc-only\:width\:98 {
    width: 98%;
  }
  .pc-only\:width\:99 {
    width: 99%;
  }
  .pc-only\:width\:100 {
    width: 100%;
  }
}
@media screen and (max-width: 64em) {
  .tablet\:width\:1 {
    width: 1%;
  }
  .tablet\:width\:2 {
    width: 2%;
  }
  .tablet\:width\:3 {
    width: 3%;
  }
  .tablet\:width\:4 {
    width: 4%;
  }
  .tablet\:width\:5 {
    width: 5%;
  }
  .tablet\:width\:6 {
    width: 6%;
  }
  .tablet\:width\:7 {
    width: 7%;
  }
  .tablet\:width\:8 {
    width: 8%;
  }
  .tablet\:width\:9 {
    width: 9%;
  }
  .tablet\:width\:10 {
    width: 10%;
  }
  .tablet\:width\:11 {
    width: 11%;
  }
  .tablet\:width\:12 {
    width: 12%;
  }
  .tablet\:width\:13 {
    width: 13%;
  }
  .tablet\:width\:14 {
    width: 14%;
  }
  .tablet\:width\:15 {
    width: 15%;
  }
  .tablet\:width\:16 {
    width: 16%;
  }
  .tablet\:width\:17 {
    width: 17%;
  }
  .tablet\:width\:18 {
    width: 18%;
  }
  .tablet\:width\:19 {
    width: 19%;
  }
  .tablet\:width\:20 {
    width: 20%;
  }
  .tablet\:width\:21 {
    width: 21%;
  }
  .tablet\:width\:22 {
    width: 22%;
  }
  .tablet\:width\:23 {
    width: 23%;
  }
  .tablet\:width\:24 {
    width: 24%;
  }
  .tablet\:width\:25 {
    width: 25%;
  }
  .tablet\:width\:26 {
    width: 26%;
  }
  .tablet\:width\:27 {
    width: 27%;
  }
  .tablet\:width\:28 {
    width: 28%;
  }
  .tablet\:width\:29 {
    width: 29%;
  }
  .tablet\:width\:30 {
    width: 30%;
  }
  .tablet\:width\:31 {
    width: 31%;
  }
  .tablet\:width\:32 {
    width: 32%;
  }
  .tablet\:width\:33 {
    width: 33%;
  }
  .tablet\:width\:34 {
    width: 34%;
  }
  .tablet\:width\:35 {
    width: 35%;
  }
  .tablet\:width\:36 {
    width: 36%;
  }
  .tablet\:width\:37 {
    width: 37%;
  }
  .tablet\:width\:38 {
    width: 38%;
  }
  .tablet\:width\:39 {
    width: 39%;
  }
  .tablet\:width\:40 {
    width: 40%;
  }
  .tablet\:width\:41 {
    width: 41%;
  }
  .tablet\:width\:42 {
    width: 42%;
  }
  .tablet\:width\:43 {
    width: 43%;
  }
  .tablet\:width\:44 {
    width: 44%;
  }
  .tablet\:width\:45 {
    width: 45%;
  }
  .tablet\:width\:46 {
    width: 46%;
  }
  .tablet\:width\:47 {
    width: 47%;
  }
  .tablet\:width\:48 {
    width: 48%;
  }
  .tablet\:width\:49 {
    width: 49%;
  }
  .tablet\:width\:50 {
    width: 50%;
  }
  .tablet\:width\:51 {
    width: 51%;
  }
  .tablet\:width\:52 {
    width: 52%;
  }
  .tablet\:width\:53 {
    width: 53%;
  }
  .tablet\:width\:54 {
    width: 54%;
  }
  .tablet\:width\:55 {
    width: 55%;
  }
  .tablet\:width\:56 {
    width: 56%;
  }
  .tablet\:width\:57 {
    width: 57%;
  }
  .tablet\:width\:58 {
    width: 58%;
  }
  .tablet\:width\:59 {
    width: 59%;
  }
  .tablet\:width\:60 {
    width: 60%;
  }
  .tablet\:width\:61 {
    width: 61%;
  }
  .tablet\:width\:62 {
    width: 62%;
  }
  .tablet\:width\:63 {
    width: 63%;
  }
  .tablet\:width\:64 {
    width: 64%;
  }
  .tablet\:width\:65 {
    width: 65%;
  }
  .tablet\:width\:66 {
    width: 66%;
  }
  .tablet\:width\:67 {
    width: 67%;
  }
  .tablet\:width\:68 {
    width: 68%;
  }
  .tablet\:width\:69 {
    width: 69%;
  }
  .tablet\:width\:70 {
    width: 70%;
  }
  .tablet\:width\:71 {
    width: 71%;
  }
  .tablet\:width\:72 {
    width: 72%;
  }
  .tablet\:width\:73 {
    width: 73%;
  }
  .tablet\:width\:74 {
    width: 74%;
  }
  .tablet\:width\:75 {
    width: 75%;
  }
  .tablet\:width\:76 {
    width: 76%;
  }
  .tablet\:width\:77 {
    width: 77%;
  }
  .tablet\:width\:78 {
    width: 78%;
  }
  .tablet\:width\:79 {
    width: 79%;
  }
  .tablet\:width\:80 {
    width: 80%;
  }
  .tablet\:width\:81 {
    width: 81%;
  }
  .tablet\:width\:82 {
    width: 82%;
  }
  .tablet\:width\:83 {
    width: 83%;
  }
  .tablet\:width\:84 {
    width: 84%;
  }
  .tablet\:width\:85 {
    width: 85%;
  }
  .tablet\:width\:86 {
    width: 86%;
  }
  .tablet\:width\:87 {
    width: 87%;
  }
  .tablet\:width\:88 {
    width: 88%;
  }
  .tablet\:width\:89 {
    width: 89%;
  }
  .tablet\:width\:90 {
    width: 90%;
  }
  .tablet\:width\:91 {
    width: 91%;
  }
  .tablet\:width\:92 {
    width: 92%;
  }
  .tablet\:width\:93 {
    width: 93%;
  }
  .tablet\:width\:94 {
    width: 94%;
  }
  .tablet\:width\:95 {
    width: 95%;
  }
  .tablet\:width\:96 {
    width: 96%;
  }
  .tablet\:width\:97 {
    width: 97%;
  }
  .tablet\:width\:98 {
    width: 98%;
  }
  .tablet\:width\:99 {
    width: 99%;
  }
  .tablet\:width\:100 {
    width: 100%;
  }
}
@media screen and (max-width: 40em) {
  .sp\:width\:1 {
    width: 1%;
  }
  .sp\:width\:2 {
    width: 2%;
  }
  .sp\:width\:3 {
    width: 3%;
  }
  .sp\:width\:4 {
    width: 4%;
  }
  .sp\:width\:5 {
    width: 5%;
  }
  .sp\:width\:6 {
    width: 6%;
  }
  .sp\:width\:7 {
    width: 7%;
  }
  .sp\:width\:8 {
    width: 8%;
  }
  .sp\:width\:9 {
    width: 9%;
  }
  .sp\:width\:10 {
    width: 10%;
  }
  .sp\:width\:11 {
    width: 11%;
  }
  .sp\:width\:12 {
    width: 12%;
  }
  .sp\:width\:13 {
    width: 13%;
  }
  .sp\:width\:14 {
    width: 14%;
  }
  .sp\:width\:15 {
    width: 15%;
  }
  .sp\:width\:16 {
    width: 16%;
  }
  .sp\:width\:17 {
    width: 17%;
  }
  .sp\:width\:18 {
    width: 18%;
  }
  .sp\:width\:19 {
    width: 19%;
  }
  .sp\:width\:20 {
    width: 20%;
  }
  .sp\:width\:21 {
    width: 21%;
  }
  .sp\:width\:22 {
    width: 22%;
  }
  .sp\:width\:23 {
    width: 23%;
  }
  .sp\:width\:24 {
    width: 24%;
  }
  .sp\:width\:25 {
    width: 25%;
  }
  .sp\:width\:26 {
    width: 26%;
  }
  .sp\:width\:27 {
    width: 27%;
  }
  .sp\:width\:28 {
    width: 28%;
  }
  .sp\:width\:29 {
    width: 29%;
  }
  .sp\:width\:30 {
    width: 30%;
  }
  .sp\:width\:31 {
    width: 31%;
  }
  .sp\:width\:32 {
    width: 32%;
  }
  .sp\:width\:33 {
    width: 33%;
  }
  .sp\:width\:34 {
    width: 34%;
  }
  .sp\:width\:35 {
    width: 35%;
  }
  .sp\:width\:36 {
    width: 36%;
  }
  .sp\:width\:37 {
    width: 37%;
  }
  .sp\:width\:38 {
    width: 38%;
  }
  .sp\:width\:39 {
    width: 39%;
  }
  .sp\:width\:40 {
    width: 40%;
  }
  .sp\:width\:41 {
    width: 41%;
  }
  .sp\:width\:42 {
    width: 42%;
  }
  .sp\:width\:43 {
    width: 43%;
  }
  .sp\:width\:44 {
    width: 44%;
  }
  .sp\:width\:45 {
    width: 45%;
  }
  .sp\:width\:46 {
    width: 46%;
  }
  .sp\:width\:47 {
    width: 47%;
  }
  .sp\:width\:48 {
    width: 48%;
  }
  .sp\:width\:49 {
    width: 49%;
  }
  .sp\:width\:50 {
    width: 50%;
  }
  .sp\:width\:51 {
    width: 51%;
  }
  .sp\:width\:52 {
    width: 52%;
  }
  .sp\:width\:53 {
    width: 53%;
  }
  .sp\:width\:54 {
    width: 54%;
  }
  .sp\:width\:55 {
    width: 55%;
  }
  .sp\:width\:56 {
    width: 56%;
  }
  .sp\:width\:57 {
    width: 57%;
  }
  .sp\:width\:58 {
    width: 58%;
  }
  .sp\:width\:59 {
    width: 59%;
  }
  .sp\:width\:60 {
    width: 60%;
  }
  .sp\:width\:61 {
    width: 61%;
  }
  .sp\:width\:62 {
    width: 62%;
  }
  .sp\:width\:63 {
    width: 63%;
  }
  .sp\:width\:64 {
    width: 64%;
  }
  .sp\:width\:65 {
    width: 65%;
  }
  .sp\:width\:66 {
    width: 66%;
  }
  .sp\:width\:67 {
    width: 67%;
  }
  .sp\:width\:68 {
    width: 68%;
  }
  .sp\:width\:69 {
    width: 69%;
  }
  .sp\:width\:70 {
    width: 70%;
  }
  .sp\:width\:71 {
    width: 71%;
  }
  .sp\:width\:72 {
    width: 72%;
  }
  .sp\:width\:73 {
    width: 73%;
  }
  .sp\:width\:74 {
    width: 74%;
  }
  .sp\:width\:75 {
    width: 75%;
  }
  .sp\:width\:76 {
    width: 76%;
  }
  .sp\:width\:77 {
    width: 77%;
  }
  .sp\:width\:78 {
    width: 78%;
  }
  .sp\:width\:79 {
    width: 79%;
  }
  .sp\:width\:80 {
    width: 80%;
  }
  .sp\:width\:81 {
    width: 81%;
  }
  .sp\:width\:82 {
    width: 82%;
  }
  .sp\:width\:83 {
    width: 83%;
  }
  .sp\:width\:84 {
    width: 84%;
  }
  .sp\:width\:85 {
    width: 85%;
  }
  .sp\:width\:86 {
    width: 86%;
  }
  .sp\:width\:87 {
    width: 87%;
  }
  .sp\:width\:88 {
    width: 88%;
  }
  .sp\:width\:89 {
    width: 89%;
  }
  .sp\:width\:90 {
    width: 90%;
  }
  .sp\:width\:91 {
    width: 91%;
  }
  .sp\:width\:92 {
    width: 92%;
  }
  .sp\:width\:93 {
    width: 93%;
  }
  .sp\:width\:94 {
    width: 94%;
  }
  .sp\:width\:95 {
    width: 95%;
  }
  .sp\:width\:96 {
    width: 96%;
  }
  .sp\:width\:97 {
    width: 97%;
  }
  .sp\:width\:98 {
    width: 98%;
  }
  .sp\:width\:99 {
    width: 99%;
  }
  .sp\:width\:100 {
    width: 100%;
  }
}