@charset "UTF-8";
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sassを使用しているので、cssファイルを直接編集しないでください。
先祖返りの原因となります。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* foundation/_reset.scss
-------------------------------------------------- */
/*-----------------------------------*/
/*-----------------------------------*/
/*-----------------------------------
	フォントスタイル
-----------------------------------*/
/*-----------------------------------
	スタイル
-----------------------------------*/
/*-----------------------------------
	トランジション
-----------------------------------*/
/*-----------------------------------
	矢印のホバーアニメーション
-----------------------------------*/
/*-----------------------------------
	ダウンロードアイコン
-----------------------------------*/
/*-----------------------------------
	画像のホバーアニメーション
-----------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button {
  margin: 0;
  padding: 0;
  width: initial;
  height: initial;
  font-size: 100%;
  font: inherit;
  color: inherit;
  line-height: inherit;
  vertical-align: baseline;
  background: initial;
  border: 0;
}

hgroup,
menu,
aside,
details,
header,
footer,
article,
main,
section,
nav,
figcaption,
figure,
em {
  display: block;
}

span {
  display: inline;
}

html {
  font-size: 62.5%;
}

*:focus {
  outline: none;
}

input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table th {
  background-clip: padding-box;
}

table td {
  word-break: break-all;
  background-clip: padding-box;
}

ul {
  list-style: none;
}

ol {
  padding-left: 1.2em;
}

i,
em {
  font-style: normal;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

*:not(table):not(tbody):not(thead):not(tfoot):not(tr) {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* foundation/_base.scss
-------------------------------------------------- */
body {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
  transition: opacity 0.8s ease 0.6s;
}

img,
svg {
  width: 100%;
  vertical-align: bottom;
}

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

a {
  white-space: wrap;
}

b {
  font-weight: 700;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

input,
select,
textarea {
  font-size: 16px;
  line-height: 1.75;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  overflow: auto;
  resize: none;
}

input::-ms-clear {
  visibility: hidden;
}

select::-ms-expand {
  display: none;
}

[data-hidden] {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  opacity: 0;
  transform: scale(0);
}

@media screen and (min-width: 1001px) {
  [data-device=sp] {
    display: none !important;
  }
  [data-device=tb] {
    display: none !important;
  }
  a[href^=tel] {
    pointer-events: none;
  }
}
@media screen and (max-width: 1000px) {
  [data-device=pc] {
    display: none !important;
  }
  [data-device=sp] {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  body {
    -webkit-overflow-scrolling: touch;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  [data-device=pc] {
    display: none !important;
  }
  [data-device=sp] {
    display: initial !important;
  }
}
/*-----------------------------------*/
/*-----------------------------------*/
/* Slider */
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 40%;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev {
  transform: translate(0, -50%) scale(-1, -1);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 1;
  background-image: url(../img/common/ico_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -40px;
}
@media screen and (max-width: 768px) {
  .slick-prev {
    left: 0px;
  }
}

[dir=rtl] .slick-prev {
  right: -40px;
  left: auto;
}
@media screen and (max-width: 768px) {
  [dir=rtl] .slick-prev {
    left: 0px;
  }
}

.slick-next {
  right: -40px;
}
@media screen and (max-width: 768px) {
  .slick-next {
    right: 0px;
  }
}

[dir=rtl] .slick-next {
  right: auto;
  left: -40px;
}
@media screen and (max-width: 768px) {
  [dir=rtl] .slick-next {
    right: 0px;
  }
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 50px;
}

.slick-dots {
  position: absolute;
  bottom: -32px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 8px;
  height: 8px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  text-align: center;
  background-color: #CFCFCF;
  border-radius: 50%;
  opacity: 0.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #151D77;
}

/*-----------------------------------*/
/*-----------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  height: 100%;
  line-height: 0;
  min-height: 1px;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* custom arrows */
.slick-arrow {
  width: 32px;
  height: 32px;
  top: 50%;
  z-index: 1;
}
@media screen and (min-width: 1001px) {
  .slick-arrow {
    transition: opacity ease-out 0.3s;
  }
  .slick-arrow:hover {
    opacity: 0.6;
  }
}
.slick-arrow::before {
  width: 100%;
  height: 100%;
  background: no-repeat center/contain;
  background-image: url(../img/common/slide_arrow.svg);
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-accordion {
  width: 100%;
}
.c-accordion__wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 1000px) {
  .c-accordion__wrapper {
    gap: 40px;
  }
}
.c-accordion__content {
  overflow: hidden;
}
.c-accordion__inner {
  padding-top: 80px;
}
@media screen and (max-width: 1000px) {
  .c-accordion__inner {
    padding-top: 40px;
  }
}
.c-accordion__summary {
  cursor: pointer;
}
.c-accordion__summary-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.c-accordion__summary-inner::after {
  content: "";
  display: block;
  width: 16px;
  height: 8px;
  background: no-repeat center/contain;
  background-image: url(../img/common/toggle_arrow_black.svg);
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translate(100%, -50%) rotate(180deg);
  transition: all 0.5s cubic-bezier(0.213, 0.62, 0.353, 1);
}
.c-accordion[open] .c-accordion__summary-inner::after {
  transform: translate(100%, -50%) rotate(0deg);
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.c-calendar__legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-calendar__legend-item::before {
  content: "■";
  font-size: 1rem;
}
.c-calendar__legend-item--match {
  color: #151D77;
}
.c-calendar__legend-item--match::before {
  color: #D0D1E3;
}
.c-calendar__legend-item--local {
  color: #7277AD;
}
.c-calendar__legend-item--local::before {
  color: #E7E8F1;
}
.c-calendar__legend-item--hosted {
  color: #c0392b;
}
.c-calendar__legend-item--hosted::before {
  color: #fde8e8;
}
.c-calendar__legend-item--event {
  color: #2e7d32;
}
.c-calendar__legend-item--event::before {
  color: #e8f5e9;
}
.c-calendar__group + .c-calendar__group {
  margin-top: 20px;
}
.c-calendar__title {
  margin-bottom: 8px;
}
.c-calendar__wrapper {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .c-calendar__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 90vw;
  }
}
.c-calendar__section + .c-calendar__section {
  margin-top: 6px;
}
.c-calendar__months {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
  min-width: 560px;
}
.c-calendar__month-placeholder {
  width: 66px;
  flex-shrink: 0;
}
.c-calendar__month-list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}
.c-calendar__month {
  background-color: #151D77;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 6px 4px;
  text-align: center;
  border-radius: 3px;
}
.c-calendar__row {
  display: flex;
  align-items: stretch;
  gap: 6px;
  min-width: 560px;
}
.c-calendar__label {
  width: 64px;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #7277AD;
  display: flex;
  align-items: center;
  gap: 2px;
  word-break: keep-all;
}
.c-calendar__label::before {
  content: "■";
  font-size: 0.8rem;
  color: #B8BBD6;
  flex-shrink: 0;
}
.c-calendar__bars {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  gap: 5px;
  min-height: 30px;
  padding: 5px 0;
}
.c-calendar__row + .c-calendar__row > .c-calendar__bars {
  border-top: 1px solid #D0D1E3;
}
.c-calendar__event {
  grid-column: var(--s)/var(--e);
  font-size: 1.1rem;
  padding: 5px 7px;
  border-radius: 3px;
  line-height: 1.4;
  background-color: #D0D1E3;
  color: #151D77;
  display: flex;
  align-items: center;
}
.c-calendar__row--hosted .c-calendar__label {
  color: #7a3535;
}
.c-calendar__row--hosted .c-calendar__label::before {
  color: #e8d6d6;
}
.c-calendar__row--hosted .c-calendar__event {
  background-color: #e8d6d6;
  color: #7a3535;
}
.c-calendar__row--local .c-calendar__label {
  color: #2d5e45;
}
.c-calendar__row--local .c-calendar__label::before {
  color: #d4e6dc;
}
.c-calendar__row--local .c-calendar__event {
  background-color: #d4e6dc;
  color: #2d5e45;
}
.c-calendar__row--event .c-calendar__label {
  color: #4a3870;
}
.c-calendar__row--event .c-calendar__label::before {
  color: #dbd6ec;
}
.c-calendar__row--event .c-calendar__event {
  background-color: #dbd6ec;
  color: #4a3870;
}
.c-calendar__community {
  margin-top: 16px;
  font-size: 1.3rem;
  line-height: 1.8;
  padding: 12px 16px;
  background-color: #E7E8F1;
  border-radius: 4px;
  color: #7277AD;
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-bg--blue {
  background-color: #E7E8F1;
}

.c-bg--pattern {
  position: relative;
}
.c-bg--pattern::before {
  content: "";
  display: block;
  width: 100%;
  background: no-repeat center/cover;
  background-image: url(../img/home/bg_01.png);
  padding-bottom: 28.33%;
  position: absolute;
  top: 0;
  left: 0;
}

.c-bg--img {
  background: no-repeat center/cover;
  background-image: url(../img/home/bg_02.png);
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
}
.c-breadcrumb__item {
  color: #CFCFCF;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}
.c-breadcrumb__item + .c-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #CFCFCF;
}
.c-breadcrumb__item > a {
  color: #111;
}
@media screen and (min-width: 1001px) {
  .c-breadcrumb__item > a {
    transition: opacity ease-out 0.3s;
  }
  .c-breadcrumb__item > a:hover {
    opacity: 0.6;
  }
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
  color: #fff;
  font-weight: 700;
  background-color: #151D77;
  border: none;
  cursor: pointer;
  padding: 16px 24px;
  transition: all 0.5s cubic-bezier(0.213, 0.62, 0.353, 1);
}
@media screen and (min-width: 1001px) {
  .c-btn:hover {
    background-color: #111;
  }
}
@media screen and (max-width: 1000px) {
  .c-btn {
    padding: 16px 8px;
  }
}
.c-btn--orange {
  background-color: #FF6F00;
}
@media screen and (min-width: 1001px) {
  .c-btn--orange:hover {
    background-color: #111;
  }
}
@media screen and (max-width: 1000px) {
  .c-btn--orange {
    min-width: 100%;
  }
}
.c-btn__container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .c-btn__container {
    margin-top: 40px;
  }
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-container {
  margin: 120px 0;
}
.c-container[class*=c-bg--] {
  margin: 0;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .c-container {
    margin: 40px 0;
  }
  .c-container[class*=c-bg--] {
    margin: 0;
    padding: 40px 0;
  }
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-division {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #B7B7B7;
  padding-bottom: 24px;
}
.c-division__img {
  width: 87px;
  height: 32px;
}
.c-division__text {
  white-space: nowrap;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-division__text {
    font-size: 16px;
  }
}
.c-division__text--large {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-division__text--large {
    font-size: 24px;
  }
}
.c-division__text--small {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.c-division__text--underline {
  border-bottom: 1px solid #B7B7B7;
}
.c-division__text.u-12 {
  color: #151D77;
}
.c-division__text.u-10 {
  color: #213DDA;
}
.c-division__text.u-08 {
  color: #21B2DA;
}
.c-division__text.u-06 {
  color: #585858;
}

/*-----------------------------------*/
/*-----------------------------------*/
@media screen and (min-width: 1001px) {
  .c-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
  }
  .c-fade__mv {
    opacity: 0;
    transition: all 0.8s ease-out;
  }
  .is-loaded .c-fade__mv {
    opacity: 1;
    transform: translateY(0);
  }
  .c-fade.is-start {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-01 {
  transition-delay: 0.4s;
}

.delay-02 {
  transition-delay: 0.6s;
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-flex {
  display: flex;
  --flex-gap: 0px;
  gap: var(--flex-gap);
}
.c-flex.gap-120 {
  --flex-gap: 120px;
}
.c-flex.gap-80 {
  --flex-gap: 80px;
}
.c-flex.gap-40 {
  --flex-gap: 40px;
}
.c-flex.flex-wrap {
  flex-wrap: wrap;
}
.c-flex .flex-shrink {
  flex-shrink: 0;
}
@media screen and (max-width: 1000px) {
  .c-flex {
    flex-wrap: wrap;
  }
  .c-flex.gap-120-sp {
    gap: 120px;
  }
  .c-flex.gap-80-sp {
    gap: 80px;
  }
  .c-flex.gap-40-sp {
    gap: 40px;
  }
  .c-flex.gap-0-sp {
    gap: 0;
  }
  .c-flex.nowrap-sp {
    flex-wrap: nowrap;
  }
  .c-flex.fd-cr-sp {
    flex-direction: column-reverse;
  }
}
.c-flex__2col {
  flex: 0 0 calc((100% - var(--flex-gap)) / 2);
  max-width: calc((100% - var(--flex-gap)) / 2);
}
@media screen and (max-width: 1000px) {
  .c-flex__2col {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-flex__2col--img {
    width: 100%;
  }
  .c-flex__2col--text {
    width: 100%;
  }
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-form {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.c-form__item {
  display: flex;
  gap: 40px;
}
.c-form__item + .c-form__item {
  margin-top: 16px;
}
@media screen and (max-width: 1000px) {
  .c-form__item {
    flex-direction: column;
    gap: 8px;
  }
}
.c-form__label {
  display: flex;
  flex-shrink: 0;
  width: 160px;
  font-weight: 700;
}
.c-form__label.required::after {
  content: "*";
  color: #ff0000;
  margin-left: 4px;
}
@media screen and (max-width: 1000px) {
  .c-form__label {
    width: 100%;
  }
}
.c-form__input {
  width: 100%;
}
.c-form__input input {
  width: 100%;
  border: 1px solid #111;
  border-radius: 3px;
  padding: 4px 16px;
}
.c-form__select {
  width: 100%;
  position: relative;
}
.c-form__select::after {
  content: "";
  width: 8px;
  height: 4px;
  background: no-repeat center/cover;
  background-image: url(../img/common/toggle_arrow_black.svg);
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%) rotate(180deg);
}
.c-form__select select {
  width: 100%;
  background-color: #fff;
  border: 1px solid #111;
  border-radius: 3px;
  padding: 4px 16px;
}
.c-form__date {
  width: 100%;
}
.c-form__date > p {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-form__date input {
  width: 100%;
  background-color: #fff;
  border: 1px solid #111;
  border-radius: 3px;
  padding: 4px 16px;
}
.c-form__textarea {
  width: 100%;
}
.c-form__textarea textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #111;
  border-radius: 3px;
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-indent {
  text-indent: 1em;
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-inner {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-list {
  list-style: outside;
  padding-left: 1em;
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.213, 0.62, 0.353, 1);
}
.c-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.c-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.c-modal__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 361px;
  margin: auto;
  padding: 32px;
  background-color: #fff;
  border-radius: 3px;
  transform: translateY(16px);
  transition: all 0.5s cubic-bezier(0.213, 0.62, 0.353, 1);
}
.c-modal.is-open .c-modal__content {
  transform: translateY(0);
}
.c-modal__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #151D77;
  cursor: pointer;
}
@media screen and (min-width: 1001px) {
  .c-modal__close {
    transition: opacity ease-out 0.3s;
  }
  .c-modal__close:hover {
    opacity: 0.6;
  }
}
.c-modal__close::before, .c-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: #fff;
}
.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .c-modal__close {
    top: 8px;
    right: 8px;
  }
}
.c-modal__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
  color: #151D77;
}
@media screen and (max-width: 768px) {
  .c-modal__title {
    font-size: 24px;
  }
}
.c-modal__list {
  display: flex;
  flex-direction: column;
}
.c-modal__row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px dashed #B7B7B7;
}
.c-modal__label {
  flex-shrink: 0;
  width: 56px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #231815;
}
.c-modal__value {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  color: #1d1d1d;
  word-break: break-word;
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-movie {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
}
.c-movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-name-list__wrapper {
  display: flex;
  gap: 24px;
}
.c-name-list__group {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 24px;
}
@media screen and (max-width: 1000px) {
  .c-name-list__group {
    flex-direction: column;
  }
}
.c-name-list__heading {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #B7B7B7;
}
.c-name-list__heading-item {
  display: flex;
  gap: 32px;
  width: calc(33.3333333333% - 16px);
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.c-name-list__heading-item--full {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.c-name-list__heading-item--2col {
  width: calc(50% - 12px);
}
.c-name-list__heading-item--2col > p {
  width: calc(50% - 16px);
}
@media screen and (max-width: 1000px) {
  .c-name-list__heading-item {
    width: 100%;
  }
  .c-name-list__heading-item--full {
    width: 100%;
  }
  .c-name-list__heading-item--2col {
    width: 100%;
  }
  .c-name-list__heading-item--2col > p {
    width: 100%;
  }
  .c-name-list__heading-item:nth-child(n+2), .c-name-list__heading-item:nth-child(n+3) {
    display: none;
  }
}
.c-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}
.c-name-list--2col {
  width: calc(50% - 12px);
}
.c-name-list--2col .c-name-list__item {
  width: 100%;
}
.c-name-list--3col {
  width: calc(33.333% - 16px);
}
.c-name-list--3col .c-name-list__item {
  width: 100%;
}
@media screen and (min-width: 1001px) {
  .c-name-list--2col .c-name-list__item:first-child {
    border-top: none;
    border-bottom: none;
  }
  .c-name-list--3col .c-name-list__item:first-child {
    border-top: none;
    border-bottom: none;
  }
}
@media screen and (max-width: 1000px) {
  .c-name-list--2col {
    width: 100%;
  }
  .c-name-list--2col .c-name-list__item:first-child {
    border-top: none;
  }
  .c-name-list--3col {
    width: 100%;
  }
  .c-name-list--3col .c-name-list__item:first-child {
    border-top: none;
  }
}
.c-name-list__item {
  display: flex;
  gap: 40px;
  width: calc(33.3333333333% - 16px);
  border-top: 1px solid #B7B7B7;
  border-bottom: 1px solid #B7B7B7;
  padding: 24px 0;
  margin-top: -1px;
}
.c-name-list__item--2col {
  width: calc(50% - 12px);
}
.c-name-list__item--2col > div, .c-name-list__item--2col > p {
  width: calc(50% - 20px);
}
@media screen and (max-width: 1000px) {
  .c-name-list__item {
    width: 100%;
  }
  .c-name-list__item--2col {
    width: 100%;
  }
  .c-name-list__item--2col > div, .c-name-list__item--2col > p {
    width: 100%;
  }
}
.c-name-list__number {
  width: 48px;
  text-align: center;
  font-weight: 700;
}
.c-name-list__kana {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}
.c-name-list__name.js-modal-open {
  display: inline-block;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media screen and (min-width: 1001px) {
  .c-name-list__name.js-modal-open {
    transition: opacity ease-out 0.3s;
  }
  .c-name-list__name.js-modal-open:hover {
    opacity: 0.6;
  }
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-oldboys-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #B7B7B7;
}
.c-oldboys-heading .c-division__text {
  border-bottom: none;
}
.c-oldboys-heading__movie {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
}
@media screen and (min-width: 1001px) {
  .c-oldboys-heading__movie {
    transition: opacity ease-out 0.3s;
  }
  .c-oldboys-heading__movie:hover {
    opacity: 0.6;
  }
}
.c-oldboys-heading__movie img {
  width: auto;
  height: 24px;
  display: block;
}
@media screen and (max-width: 768px) {
  .c-oldboys-heading__movie span {
    display: none;
  }
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-page__section + .c-page__section {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .c-page__section + .c-page__section {
    margin-top: 40px;
  }
}
.c-page__item + .c-page__item {
  margin-top: 40px;
}
.c-page__unit + .c-page__unit {
  margin-top: 24px;
}
.c-page__paragraph + .c-page__paragraph {
  margin-top: 16px;
}
.c-page__cell + .c-page__cell {
  margin-top: 8px;
}
.c-page__header {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  padding: 80px;
}
.c-page__header .c-title__underline {
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
  .c-page__header {
    padding: 40px 5%;
  }
}
.c-page__caption {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}
.c-page__lead {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-pagination {
  margin-top: 80px;
}
.c-pagination .nav-links {
  display: flex;
  justify-content: center;
}
.c-pagination .page-numbers {
  display: flex;
  align-items: center;
  color: #111;
  padding: 4px 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 1001px) {
  .c-pagination .page-numbers {
    transition: opacity ease-out 0.3s;
  }
  .c-pagination .page-numbers:hover {
    opacity: 0.6;
  }
}
.c-pagination .page-numbers.current {
  color: #B7B7B7;
  pointer-events: none;
}
.c-pagination .page-numbers.prev::before {
  content: "";
  width: 12px;
  height: 12px;
  background: no-repeat center/contain;
  background-image: url(../img/common/toggle_arrow_black.svg);
  border-radius: 50vh;
  transform: translate(2px, 0) rotate(-90deg);
}
.c-pagination .page-numbers.next::before {
  content: "";
  width: 12px;
  height: 12px;
  background: no-repeat center/contain;
  background-image: url(../img/common/toggle_arrow_black.svg);
  transform: translate(-2px, 0) rotate(90deg);
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-result {
  display: flex;
  flex-direction: column;
  gap: 80px;
  /*-----------------------------------
  	.p-result-title
  -----------------------------------*/
  /*-----------------------------------
  	.p-result-place
  -----------------------------------*/
  /*-----------------------------------
  	.p-result-category
  -----------------------------------*/
  /*-----------------------------------
  	.p-result-content
  -----------------------------------*/
  /*-----------------------------------
  	.p-result-score
  -----------------------------------*/
  /*-----------------------------------
  	.p-result-content
  -----------------------------------*/
}
.c-result-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-result-title {
    font-size: 24px;
  }
}
.c-result-place {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}
.c-result-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 32px;
  color: #fff;
  font-weight: 700;
  background-color: #151D77;
  border-radius: 5px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}
.c-result-content {
  background-color: #fff;
  padding: 40px 80px;
}
@media screen and (max-width: 1000px) {
  .c-result-content {
    padding: 40px 16px;
  }
}
.c-result-score {
  display: flex;
  justify-content: center;
  gap: 80px;
  border-bottom: 1px solid #B7B7B7;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.c-result-score__team {
  width: 235px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.c-result-score__team img {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.c-result-score__main {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-result-score__main {
    font-size: 32px;
  }
}
.c-result-score__sub {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-weight: 700;
}
.c-result-score__sub-item {
  width: 20px;
  text-align: center;
}
.c-result-score__sub-center {
  width: 80px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .c-result-score {
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .c-result-score__team {
    order: 1;
    width: calc(50% - 8px);
  }
  .c-result-score__wrapper {
    order: 2;
  }
}
.c-result-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.c-result-row__label {
  width: 160px;
  text-align: center;
  font-weight: 700;
  border: 1px solid #111;
  padding: 4px 0;
}
.c-result-row + .c-result-row {
  margin-top: 24px;
}
@media screen and (max-width: 1000px) {
  .c-result-row {
    flex-direction: column;
  }
  .c-result-row__label {
    width: 100%;
  }
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-select {
  display: flex;
  justify-content: flex-end;
}
.c-select__year {
  position: relative;
}
.c-select__year::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  position: absolute;
  top: 45%;
  right: 10px;
  transform: translateY(-50%) rotate(135deg);
}
.c-select__year > select {
  background-color: #fff;
  border: 1px solid #111;
  border-radius: 3px;
  padding: 4px 40px 4px 16px;
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-table {
  width: 100%;
}
.c-table th {
  width: 160px;
  font-weight: 700;
  border-bottom: 1px solid #B7B7B7;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 40px;
}
.c-table td {
  border-bottom: 1px solid #B7B7B7;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .c-table th {
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: none;
    padding-bottom: 8px;
  }
  .c-table td {
    display: block;
    width: 100%;
    padding-top: 0;
  }
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-text-link {
  display: inline-block;
  text-decoration: underline;
}
@media screen and (min-width: 1001px) {
  .c-text-link {
    transition: opacity ease-out 0.3s;
  }
  .c-text-link:hover {
    opacity: 0.6;
  }
}
.c-text-link__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/*-----------------------------------*/
/*-----------------------------------*/
.c-title {
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: 24px;
  }
}
.c-title--compact {
  margin-bottom: 24px;
}

.c-title__wide {
  font-weight: 700;
  margin-bottom: 80px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-title__wide {
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .c-title__wide {
    margin-bottom: 40px;
  }
}

.c-title__underline {
  text-align: center;
  color: #151D77;
  padding-bottom: 8px;
  position: relative;
  margin-bottom: 80px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-title__underline {
    font-size: 24px;
  }
}
.c-title__underline::after {
  content: "";
  width: 40px;
  height: 4px;
  background-color: #B8BBD6;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1000px) {
  .c-title__underline {
    margin-bottom: 40px;
  }
}

.c-title__border {
  border-bottom: 1px solid #B7B7B7;
  padding-bottom: 2px;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-title__border {
    font-size: 24px;
  }
}

.c-title__counter {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.c-title__counter::before {
  counter-increment: title-counter 1;
  content: counter(title-counter, decimal-leading-zero);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.5;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-title__counter::before {
    font-size: 32px;
  }
}
.u-12 .c-title__counter {
  color: #151D77;
}
.u-12 .c-title__counter::before {
  color: #151D77;
}
.u-10 .c-title__counter {
  color: #213DDA;
}
.u-10 .c-title__counter::before {
  color: #213DDA;
}
.u-08 .c-title__counter {
  color: #21B2DA;
}
.u-08 .c-title__counter::before {
  color: #21B2DA;
}
.u-06 .c-title__counter {
  color: #585858;
}
.u-06 .c-title__counter::before {
  color: #585858;
}

.counter-reset {
  counter-reset: title-counter 0;
}

/*-----------------------------------*/
/*-----------------------------------*/
.l-body {
  width: 100vw;
  overflow-x: hidden;
}

/*-----------------------------------*/
/*-----------------------------------*/
.l-footer {
  color: #fff;
  background-color: #111;
  padding: 120px 0;
  /*-----------------------------------
  	.l-footer-inner
  -----------------------------------*/
  /*-----------------------------------
  	.l-footer-emblem
  -----------------------------------*/
  /*-----------------------------------
  	.l-footer-copyright
  -----------------------------------*/
  /*-----------------------------------
  	.l-footer-menu
  -----------------------------------*/
  /*-----------------------------------
  	.l-footer-sns
  -----------------------------------*/
}
@media screen and (max-width: 1000px) {
  .l-footer {
    padding: 40px 0;
  }
}
.l-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0 200px;
}
.l-footer-emblem {
  display: flex;
  flex-direction: column;
  gap: 58px;
  width: 160px;
}
@media screen and (max-width: 1000px) {
  .l-footer-emblem {
    margin: 0 auto 40px auto;
  }
}
.l-footer-copyright {
  width: 100%;
  text-align: center;
  pointer-events: none;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (min-width: 1001px) {
  .l-footer-copyright {
    text-align: left;
    transform: translateY(-100%);
  }
}
@media screen and (max-width: 1000px) {
  .l-footer-copyright {
    margin-top: 40px;
  }
}
.l-footer-menu {
  display: flex;
  gap: 16px 40px;
}
.l-footer-menu__group + .l-footer-menu__group {
  margin-top: 16px;
}
.l-footer-menu__main {
  display: block;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (min-width: 1001px) {
  .l-footer-menu__main {
    transition: opacity ease-out 0.3s;
  }
  .l-footer-menu__main:hover {
    opacity: 0.6;
  }
}
.l-footer-menu__sub {
  display: block;
  padding-left: 12px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (min-width: 1001px) {
  .l-footer-menu__sub {
    transition: opacity ease-out 0.3s;
  }
  .l-footer-menu__sub:hover {
    opacity: 0.6;
  }
}
.l-footer-menu__sub + .l-footer-menu__sub {
  margin-top: 8px;
}
.l-footer-menu__sub::before {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  background: no-repeat center/contain;
  background-image: url(../img/common/toggle_arrow_white.svg);
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(-90deg);
}
@media screen and (min-width: 1001px) {
  .l-footer-menu {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .l-footer-menu {
    flex-direction: column;
    padding: 0 40px;
  }
}
.l-footer-sns {
  display: flex;
  gap: 16px;
}
.l-footer-sns__item {
  display: block;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 1001px) {
  .l-footer-sns__item {
    transition: opacity ease-out 0.3s;
  }
  .l-footer-sns__item:hover {
    opacity: 0.6;
  }
}
.l-footer-sns__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 1001px) {
  .l-footer-sns {
    margin-top: 0;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

/*-----------------------------------*/
/*-----------------------------------*/
.l-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  color: #fff;
  background-color: #151D77;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  /*-----------------------------------
  	.l-header-logo
  -----------------------------------*/
  /*-----------------------------------
  	.l-header-wrapper
  -----------------------------------*/
  /*-----------------------------------
  	.l-header-container
  -----------------------------------*/
  /*-----------------------------------
  	.l-header-menu
  -----------------------------------*/
  /*-----------------------------------
  	.l-header-toggle
  -----------------------------------*/
  /*-----------------------------------
  	.l-header-sns
  -----------------------------------*/
  /*-----------------------------------
  	.l-header-drawer
  -----------------------------------*/
}
@media screen and (max-width: 1000px) {
  .l-header {
    height: 56px;
  }
}
.l-header-logo {
  display: block;
  width: 232px;
}
@media screen and (max-width: 1000px) {
  .l-header-logo {
    width: 53px;
  }
}
.l-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1128px;
  height: 100%;
  background-color: #151D77;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .l-header-wrapper {
    justify-content: center;
  }
}
@media screen and (max-width: 1000px) {
  .l-header-container {
    width: 100%;
    height: 100%;
    background-color: #151D77;
    transform: translateY(-10%);
    position: fixed;
    top: 56px;
    right: 0;
    opacity: 0;
    pointer-events: none;
    padding-top: 80px;
    transition: all 0.5s cubic-bezier(0.213, 0.62, 0.353, 1);
    z-index: -1;
  }
  .l-header-container.is-drawer-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
.l-header-menu {
  display: flex;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .l-header-menu {
    flex-direction: column;
    width: 235px;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-header-menu__link {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 80px;
  cursor: pointer;
  padding: 0 20px;
}
@media screen and (min-width: 1001px) {
  .l-header-menu__link {
    transition: opacity ease-out 0.3s;
  }
  .l-header-menu__link:hover {
    opacity: 0.6;
  }
}
.is-open .l-header-menu__link {
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .l-header-menu__link {
    padding: 20px 0;
  }
}
.l-header-menu__link.toggle span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-header-menu__link.toggle span::after {
  content: "";
  display: block;
  width: 16px;
  height: 8px;
  background: no-repeat center/contain;
  background-image: url(../img/common/toggle_arrow_white.svg);
  transition: all 0.5s cubic-bezier(0.213, 0.62, 0.353, 1);
}
@media screen and (min-width: 1001px) {
  .l-header-menu__link.toggle:hover span::after, .l-header-menu__link.toggle.is-open span::after {
    transform: rotate(180deg);
  }
}
@media screen and (min-width: 1001px) {
  .l-header-menu__link.toggle:hover + .l-header-toggle__wrap {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
@media screen and (min-width: 1001px) {
  .l-header-toggle__wrap {
    display: flex;
    justify-content: center;
    gap: 80px;
    width: 100vw;
    background-color: #151D77;
    transform: translateY(-20%);
    padding: 80px 0;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.213, 0.62, 0.353, 1);
  }
  .l-header-toggle__wrap:hover {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.l-header-toggle {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 80px;
  max-width: 796px;
}
.l-header-toggle__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .l-header-toggle__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .l-header-toggle__title {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .l-header-toggle__item {
    width: calc(100% - 24px);
    margin-left: 24px;
  }
}
.l-header-toggle__link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 180px;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
  position: relative;
}
@media screen and (min-width: 1001px) {
  .l-header-toggle__link {
    transition: opacity ease-out 0.3s;
  }
  .l-header-toggle__link:hover {
    opacity: 0.6;
  }
}
.l-header-toggle__link::after {
  content: "";
  width: 16px;
  height: 16px;
  background: no-repeat center/cover;
  background-image: url(../img/common/header_arrow_white.svg);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.l-header-sns {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}
@media screen and (max-width: 1000px) {
  .l-header-sns {
    padding: 0;
    margin-top: 20px;
  }
}
.l-header-sns__item {
  display: block;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 1001px) {
  .l-header-sns__item {
    transition: opacity ease-out 0.3s;
  }
  .l-header-sns__item:hover {
    opacity: 0.6;
  }
}
.l-header-sns__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.l-header-drawer {
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  right: 0;
}
.l-header-drawer__line, .l-header-drawer__line--03, .l-header-drawer__line--02, .l-header-drawer__line--01 {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 50vh;
  position: absolute;
  transition: all 0.5s cubic-bezier(0.213, 0.62, 0.353, 1);
}
.l-header-drawer__line--01 {
  top: calc(50% - 8px);
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-header-drawer__line--02 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-header-drawer__line--03 {
  top: calc(50% + 8px);
  left: 50%;
  transform: translate(-50%, -50%);
}
.is-drawer-open .l-header-drawer__line--01 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.is-drawer-open .l-header-drawer__line--02 {
  opacity: 0;
}
.is-drawer-open .l-header-drawer__line--03 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 1001px) {
  .l-header-drawer {
    display: none;
  }
}

/*-----------------------------------*/
/*-----------------------------------*/
.l-main {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .l-main {
    margin-top: 56px;
  }
}

/*-----------------------------------*/
/*-----------------------------------*/
.p-home {
  /*-----------------------------------
  	.p-home-mv
  -----------------------------------*/
  /*-----------------------------------
  	.p-home-schedule
  -----------------------------------*/
  /*-----------------------------------
  	.p-home-about
  -----------------------------------*/
  /*-----------------------------------
  	.p-home-team
  -----------------------------------*/
  /*-----------------------------------
  	.p-home-contact
  -----------------------------------*/
  /*-----------------------------------
  	.p-home-partner
  -----------------------------------*/
}
.p-home-mv {
  width: 100%;
  padding-bottom: 46.66%;
  position: relative;
}
.p-home-mv__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-home-mv__title {
  width: 46.52%;
  position: absolute;
  top: 29.76%;
  left: 9.7%;
}
.p-home-mv__text {
  width: 45.83%;
  position: absolute;
  bottom: 5%;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .p-home-mv {
    padding-bottom: 119%;
  }
  .p-home-mv__title {
    width: 85.24%;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
  }
  .p-home-mv__text {
    width: 83.96%;
  }
}
.p-home-schedule {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  padding: 16px 0;
}
.p-home-about__img {
  width: 100%;
  margin: 80px 0;
}
.p-home-team__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.p-home-team__item {
  display: flex;
  gap: 32px;
  width: calc(50% - 20px);
}
.p-home-team__title {
  margin-bottom: 40px;
}
.p-home-team__btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 204px;
}
.p-home-team__btns .c-btn {
  min-width: 204px;
  padding: 16px 8px;
}
.p-home-team__btns.u-10 .c-btn {
  background-color: #213DDA;
  border: 1px solid #213DDA;
}
@media screen and (min-width: 1001px) {
  .p-home-team__btns.u-10 .c-btn:hover {
    color: #213DDA;
    background-color: #fff;
  }
}
.p-home-team__btns.u-8 .c-btn {
  background-color: #21B2DA;
  border: 1px solid #21B2DA;
}
@media screen and (min-width: 1001px) {
  .p-home-team__btns.u-8 .c-btn:hover {
    color: #21B2DA;
    background-color: #fff;
  }
}
.p-home-team__btns.u-6 .c-btn {
  background-color: #585858;
  border: 1px solid #585858;
}
@media screen and (min-width: 1001px) {
  .p-home-team__btns.u-6 .c-btn:hover {
    color: #585858;
    background-color: #fff;
  }
}
@media screen and (max-width: 1000px) {
  .p-home-team__list {
    flex-direction: column;
    gap: 80px;
  }
  .p-home-team__item {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }
  .p-home-team__title {
    margin-bottom: 24px;
  }
  .p-home-team__btns {
    width: 100%;
  }
  .p-home-team__btns .c-btn {
    width: 100%;
    min-width: unset;
  }
}
.p-home-contact__box {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
}
.p-home-contact__box--row {
  display: flex;
  gap: 80px;
}
.p-home-contact__row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.p-home-contact__2col {
  width: calc(50% - 20px);
}
.p-home-contact__img {
  max-width: 472px;
}
.p-home-contact__body {
  flex-shrink: 0;
  width: 496px;
}
.p-home-contact__tag {
  display: flex;
  gap: 16px;
}
.p-home-contact__tag-item {
  display: inline-block;
  background: rgba(251, 255, 0, 0.6);
  padding: 1px 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-home-contact__title {
  font-weight: 700;
  margin-bottom: 32px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-home-contact__title {
    font-size: 18px;
  }
}
.p-home-contact__title--center {
  text-align: center;
}
.p-home-contact__text {
  margin: 40px 0;
}
@media screen and (min-width: 1001px) {
  .p-home-contact__text {
    min-height: 87px;
  }
}
@media screen and (max-width: 1000px) {
  .p-home-contact__box {
    width: 100%;
    padding: 40px 16px;
  }
  .p-home-contact__box--row {
    flex-direction: column;
    gap: 24px;
  }
  .p-home-contact__img {
    width: 100%;
    max-width: 100%;
  }
  .p-home-contact__body {
    width: 100%;
  }
  .p-home-contact__tag {
    flex-wrap: wrap;
  }
  .p-home-contact__title {
    margin-bottom: 24px;
  }
  .p-home-contact__text {
    margin: 24px 0;
  }
}
.p-home-partner__list {
  display: flex;
  gap: 24px;
}
.p-home-partner__list-item {
  width: calc(25% - 18px);
}
@media screen and (max-width: 1000px) {
  .p-home-partner__list {
    flex-direction: column;
  }
  .p-home-partner__list-item {
    width: 100%;
  }
}

/*-----------------------------------*/
/*-----------------------------------*/
.p-news {
  /*-----------------------------------
  	.p-news-list
  -----------------------------------*/
  /*-----------------------------------
  	.p-news-tag
  -----------------------------------*/
  /*-----------------------------------
  	.p-news-report
  -----------------------------------*/
  /*-----------------------------------
  	.p-news-article（リッチエディタ出力）
  -----------------------------------*/
}
.p-news-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.p-news-list__item {
  position: relative;
}
.p-news-list__item .p-news-tag {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
  .p-news-list__item .p-news-tag {
    top: calc(69.3vw + 32px);
  }
}
.p-news-list__link {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid #B7B7B7;
  padding-bottom: 24px;
}
@media screen and (min-width: 1001px) {
  .p-news-list__link {
    transition: opacity ease-out 0.3s;
  }
  .p-news-list__link:hover {
    opacity: 0.6;
  }
}
.p-news-list__img {
  width: 240px;
  height: 185px;
  position: relative;
}
.p-news-list__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-news-list__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: calc(100% - 240px - 32px);
}
.p-news-list__info {
  display: flex;
  justify-content: space-between;
}
.p-news-list__date {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}
.p-news-list__title {
  color: #151D77;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .p-news-list {
    gap: 40px;
  }
  .p-news-list__link {
    flex-direction: column;
  }
  .p-news-list__img {
    width: 100%;
    padding-bottom: 77%;
  }
  .p-news-list__body {
    width: 100%;
  }
}
.p-news-tag {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.p-news-tag__item {
  position: relative;
  z-index: 1;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background-color: #151D77;
  border-radius: 5px;
  min-width: 56px;
  padding: 4px 8px;
  text-decoration: none;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (min-width: 1001px) {
  .p-news-tag__item {
    transition: opacity ease-out 0.3s;
  }
  .p-news-tag__item:hover {
    opacity: 0.6;
  }
}
.p-news-tag__item.preschool {
  background-color: #585858;
}
.p-news-tag__item.preschool {
  background-color: #585858;
}
.p-news-tag__item.grade-1st, .p-news-tag__item.grade-2nd {
  background-color: #21B2DA;
}
.p-news-tag__item.grade-3rd, .p-news-tag__item.grade-4th {
  background-color: #213DDA;
}
.p-news-tag__item.junior, .p-news-tag__item.satellite, .p-news-tag__item.top {
  background-color: #151D77;
}
.p-news-tag__item.report {
  background-color: #FF6F00;
}
.p-news-report {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.p-news-article {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  color: #111;
  word-break: break-word;
}
.p-news-article > * + * {
  margin-top: 1.5em;
}
.p-news-article > *:first-child {
  margin-top: 0;
}
.p-news-article h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 2em;
  padding-bottom: 0.4em;
  border-bottom: 2px solid #151D77;
}
@media screen and (max-width: 768px) {
  .p-news-article h2 {
    font-size: 18px;
  }
}
.p-news-article h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .p-news-article h3 {
    font-size: 16px;
  }
}
.p-news-article h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.5em;
}
.p-news-article p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}
.p-news-article a {
  color: #213DDA;
  text-decoration: underline;
}
@media screen and (min-width: 1001px) {
  .p-news-article a {
    transition: opacity ease-out 0.3s;
  }
  .p-news-article a:hover {
    opacity: 0.6;
  }
}
.p-news-article strong,
.p-news-article b {
  font-weight: 700;
}
.p-news-article em {
  font-style: italic;
}
.p-news-article ul,
.p-news-article ol {
  padding-left: 1.5em;
}
.p-news-article ul li + li,
.p-news-article ol li + li {
  margin-top: 0.5em;
}
.p-news-article ul {
  list-style: disc;
}
.p-news-article ol {
  list-style: decimal;
}
.p-news-article img {
  max-width: 100%;
  height: auto;
}
.p-news-article blockquote {
  padding: 16px 24px;
  background-color: #E7E8F1;
  border-left: 4px solid #B8BBD6;
  color: #585858;
}
.p-news-article hr {
  border: none;
  border-top: 1px solid #B7B7B7;
}
.p-news-article table {
  width: 100%;
  border-collapse: collapse;
}
.p-news-article table th,
.p-news-article table td {
  border: 1px solid #B7B7B7;
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
}
.p-news-article table th {
  background-color: #E7E8F1;
  font-weight: 700;
}

/*-----------------------------------*/
/*-----------------------------------*/
.p-schedule {
  /*-----------------------------------
    .p-schedule-tab
  -----------------------------------*/
  /*-----------------------------------
    .p-schedule-category
  -----------------------------------*/
  /*-----------------------------------
    .p-schedule-calendar
  -----------------------------------*/
}
.p-schedule-tab__heading {
  display: flex;
  align-items: center;
  gap: 32px;
}
.p-schedule-tab__heading-item {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-schedule-tab__heading-item::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: no-repeat center/cover;
  background-image: url(../img/schedule/calendar_icon.svg);
}
@media screen and (max-width: 1000px) {
  .p-schedule-tab__heading {
    flex-direction: column;
    gap: 16px;
  }
}
.p-schedule-tab__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .p-schedule-tab__menu {
    width: 312px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-schedule-tab__button {
  display: block;
  width: 88px;
  text-align: center;
  font-weight: 700;
  border: 1px solid;
  padding: 4px 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (min-width: 1001px) {
  .p-schedule-tab__button {
    transition: opacity ease-out 0.3s;
  }
  .p-schedule-tab__button:hover {
    opacity: 0.6;
  }
}
.p-schedule-tab__button.u-12 {
  color: #fff;
  border-color: #151D77;
  background-color: #151D77;
}
.p-schedule-tab__button.u-12.is-active {
  color: #151D77;
  background-color: #fff;
}
.p-schedule-tab__button.u-10 {
  color: #fff;
  border-color: #213DDA;
  background-color: #213DDA;
}
.p-schedule-tab__button.u-10.is-active {
  color: #213DDA;
  background-color: #fff;
}
.p-schedule-tab__button.u-08 {
  color: #fff;
  border-color: #21B2DA;
  background-color: #21B2DA;
}
.p-schedule-tab__button.u-08.is-active {
  color: #21B2DA;
  background-color: #fff;
}
.p-schedule-tab__button.u-06 {
  color: #fff;
  border-color: #585858;
  background-color: #585858;
}
.p-schedule-tab__button.u-06.is-active {
  color: #585858;
  background-color: #fff;
}
@media screen and (max-width: 1000px) {
  .p-schedule-tab__button.u-10.last {
    margin-right: 112px;
  }
}
.p-schedule-content {
  display: none;
}
.p-schedule-content.is-active {
  display: block;
}
.p-schedule-category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.p-schedule-category__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.p-schedule-category__item::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: no-repeat center/cover;
}
.p-schedule-category__item.official::before {
  background-image: url(../img/schedule/category_official.svg);
}
.p-schedule-category__item.category_invitation::before {
  background-image: url(../img/schedule/category_invitation.svg);
}
.p-schedule-category__item.category_practice::before {
  background-image: url(../img/schedule/category_practice.svg);
}
.p-schedule-category__item.category_event::before {
  background-image: url(../img/schedule/category_event.svg);
}
.p-schedule-calendar {
  margin-top: 40px;
}
.p-schedule-calendar iframe {
  width: 100%;
  height: 625px;
  border: none;
}

/*-----------------------------------*/
/*-----------------------------------*/
.u-ta-c {
  text-align: center !important;
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-r {
  text-align: right !important;
}

@media screen and (max-width: 768px) {
  .u-ta-c-sp {
    text-align: center !important;
  }
}
/*-----------------------------------*/
/*-----------------------------------*/
.u-d-block {
  display: block !important;
}

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

/*-----------------------------------*/
/*-----------------------------------*/
.u-fs-bigger {
  font-size: 16px;
}

/*-----------------------------------*/
/*-----------------------------------*/
.u-fw-500 {
  font-weight: 500 !important;
}

.u-fw-700 {
  font-weight: 700 !important;
}

/*-----------------------------------*/
/*-----------------------------------*/
.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-mt-0,
.u-my-0 {
  margin-top: 0px !important;
}

.u-mt-8,
.u-my-8 {
  margin-top: 8px !important;
}

.u-mt-16,
.u-my-16 {
  margin-top: 16px !important;
}

.u-mt-24,
.u-my-24 {
  margin-top: 24px !important;
}

.u-mt-32,
.u-my-32 {
  margin-top: 32px !important;
}

.u-mt-40,
.u-my-40 {
  margin-top: 40px !important;
}

.u-mt-48,
.u-my-48 {
  margin-top: 48px !important;
}

.u-mt-56,
.u-my-56 {
  margin-top: 56px !important;
}

.u-mt-64,
.u-my-64 {
  margin-top: 64px !important;
}

.u-mt-72,
.u-my-72 {
  margin-top: 72px !important;
}

.u-mt-80,
.u-my-80 {
  margin-top: 80px !important;
}

.u-mb-0,
.u-my-0 {
  margin-bottom: 0px !important;
}

.u-mb-8,
.u-my-8 {
  margin-bottom: 8px !important;
}

.u-mb-16,
.u-my-16 {
  margin-bottom: 16px !important;
}

.u-mb-24,
.u-my-24 {
  margin-bottom: 24px !important;
}

.u-mb-32,
.u-my-32 {
  margin-bottom: 32px !important;
}

.u-mb-40,
.u-my-40 {
  margin-bottom: 40px !important;
}

.u-mb-48,
.u-my-48 {
  margin-bottom: 48px !important;
}

.u-mb-56,
.u-my-56 {
  margin-bottom: 56px !important;
}

.u-mb-64,
.u-my-64 {
  margin-bottom: 64px !important;
}

.u-mb-72,
.u-my-72 {
  margin-bottom: 72px !important;
}

.u-mb-80,
.u-my-80 {
  margin-bottom: 80px !important;
}

.u-ml-0,
.u-mx-0 {
  margin-left: 0px !important;
}

.u-ml-8,
.u-mx-8 {
  margin-left: 8px !important;
}

.u-ml-16,
.u-mx-16 {
  margin-left: 16px !important;
}

.u-ml-24,
.u-mx-24 {
  margin-left: 24px !important;
}

.u-ml-32,
.u-mx-32 {
  margin-left: 32px !important;
}

.u-ml-40,
.u-mx-40 {
  margin-left: 40px !important;
}

.u-ml-48,
.u-mx-48 {
  margin-left: 48px !important;
}

.u-ml-56,
.u-mx-56 {
  margin-left: 56px !important;
}

.u-ml-64,
.u-mx-64 {
  margin-left: 64px !important;
}

.u-ml-72,
.u-mx-72 {
  margin-left: 72px !important;
}

.u-ml-80,
.u-mx-80 {
  margin-left: 80px !important;
}

.u-mr-0,
.u-mx-0 {
  margin-right: 0px !important;
}

.u-mr-8,
.u-mx-8 {
  margin-right: 8px !important;
}

.u-mr-16,
.u-mx-16 {
  margin-right: 16px !important;
}

.u-mr-24,
.u-mx-24 {
  margin-right: 24px !important;
}

.u-mr-32,
.u-mx-32 {
  margin-right: 32px !important;
}

.u-mr-40,
.u-mx-40 {
  margin-right: 40px !important;
}

.u-mr-48,
.u-mx-48 {
  margin-right: 48px !important;
}

.u-mr-56,
.u-mx-56 {
  margin-right: 56px !important;
}

.u-mr-64,
.u-mx-64 {
  margin-right: 64px !important;
}

.u-mr-72,
.u-mx-72 {
  margin-right: 72px !important;
}

.u-mr-80,
.u-mx-80 {
  margin-right: 80px !important;
}

@media screen and (max-width: 768px) {
  .u-mx-auto-sp {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .u-mt-0-sp,
  .u-my-0-sp {
    margin-top: 0px !important;
  }
  .u-mt-8-sp,
  .u-my-8-sp {
    margin-top: 8px !important;
  }
  .u-mt-16-sp,
  .u-my-16-sp {
    margin-top: 16px !important;
  }
  .u-mt-24-sp,
  .u-my-24-sp {
    margin-top: 24px !important;
  }
  .u-mt-32-sp,
  .u-my-32-sp {
    margin-top: 32px !important;
  }
  .u-mt-40-sp,
  .u-my-40-sp {
    margin-top: 40px !important;
  }
  .u-mt-48-sp,
  .u-my-48-sp {
    margin-top: 48px !important;
  }
  .u-mt-56-sp,
  .u-my-56-sp {
    margin-top: 56px !important;
  }
  .u-mt-64-sp,
  .u-my-64-sp {
    margin-top: 64px !important;
  }
  .u-mt-72-sp,
  .u-my-72-sp {
    margin-top: 72px !important;
  }
  .u-mt-80-sp,
  .u-my-80-sp {
    margin-top: 80px !important;
  }
  .u-mb-0-sp,
  .u-my-0-sp {
    margin-bottom: 0px !important;
  }
  .u-mb-8-sp,
  .u-my-8-sp {
    margin-bottom: 8px !important;
  }
  .u-mb-16-sp,
  .u-my-16-sp {
    margin-bottom: 16px !important;
  }
  .u-mb-24-sp,
  .u-my-24-sp {
    margin-bottom: 24px !important;
  }
  .u-mb-32-sp,
  .u-my-32-sp {
    margin-bottom: 32px !important;
  }
  .u-mb-40-sp,
  .u-my-40-sp {
    margin-bottom: 40px !important;
  }
  .u-mb-48-sp,
  .u-my-48-sp {
    margin-bottom: 48px !important;
  }
  .u-mb-56-sp,
  .u-my-56-sp {
    margin-bottom: 56px !important;
  }
  .u-mb-64-sp,
  .u-my-64-sp {
    margin-bottom: 64px !important;
  }
  .u-mb-72-sp,
  .u-my-72-sp {
    margin-bottom: 72px !important;
  }
  .u-mb-80-sp,
  .u-my-80-sp {
    margin-bottom: 80px !important;
  }
  .u-ml-0-sp,
  .u-mx-0-sp {
    margin-left: 0px !important;
  }
  .u-ml-8-sp,
  .u-mx-8-sp {
    margin-left: 8px !important;
  }
  .u-ml-16-sp,
  .u-mx-16-sp {
    margin-left: 16px !important;
  }
  .u-ml-24-sp,
  .u-mx-24-sp {
    margin-left: 24px !important;
  }
  .u-ml-32-sp,
  .u-mx-32-sp {
    margin-left: 32px !important;
  }
  .u-ml-40-sp,
  .u-mx-40-sp {
    margin-left: 40px !important;
  }
  .u-ml-48-sp,
  .u-mx-48-sp {
    margin-left: 48px !important;
  }
  .u-ml-56-sp,
  .u-mx-56-sp {
    margin-left: 56px !important;
  }
  .u-ml-64-sp,
  .u-mx-64-sp {
    margin-left: 64px !important;
  }
  .u-ml-72-sp,
  .u-mx-72-sp {
    margin-left: 72px !important;
  }
  .u-ml-80-sp,
  .u-mx-80-sp {
    margin-left: 80px !important;
  }
  .u-mr-0-sp,
  .u-mx-0-sp {
    margin-right: 0px !important;
  }
  .u-mr-8-sp,
  .u-mx-8-sp {
    margin-right: 8px !important;
  }
  .u-mr-16-sp,
  .u-mx-16-sp {
    margin-right: 16px !important;
  }
  .u-mr-24-sp,
  .u-mx-24-sp {
    margin-right: 24px !important;
  }
  .u-mr-32-sp,
  .u-mx-32-sp {
    margin-right: 32px !important;
  }
  .u-mr-40-sp,
  .u-mx-40-sp {
    margin-right: 40px !important;
  }
  .u-mr-48-sp,
  .u-mx-48-sp {
    margin-right: 48px !important;
  }
  .u-mr-56-sp,
  .u-mx-56-sp {
    margin-right: 56px !important;
  }
  .u-mr-64-sp,
  .u-mx-64-sp {
    margin-right: 64px !important;
  }
  .u-mr-72-sp,
  .u-mx-72-sp {
    margin-right: 72px !important;
  }
  .u-mr-80-sp,
  .u-mx-80-sp {
    margin-right: 80px !important;
  }
}
/*-----------------------------------*/
/*-----------------------------------*/
.u-pt-0 {
  padding-top: 0 !important;
}

@media screen and (max-width: 768px) {
  .u-px-0-sp {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.u-nowrap {
  white-space: nowrap !important;
}
