@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", serif;
  color: #111;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

.btn {
  display: inline-block;
  width: 190px;
  width: 11.875rem;
  height: 44px;
  height: 2.75rem;
  text-align: center;
  line-height: 44px;
  line-height: 2.75rem;
  color: #fff;
  background-color: #022A64;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn {
    font-size: 1rem;
    width: 12.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
  }
}

.btn::after {
  content: "";
  position: absolute;
  width: 7px;
  width: 0.4375rem;
  height: 12px;
  height: 0.75rem;
  background: url(../images/common/btn.webp) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 22px;
  right: 1.375rem;
}
@media screen and (min-width: 768px) {
  .btn::after {
    right: 1.25rem;
  }
}

.btn--white {
  color: #022A64;
  background-color: #fff;
}

.btn--white::after {
  background: url(../images/common/btn-white.webp) no-repeat center center/contain;
}

.common-bnr {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .common-bnr {
    margin-top: 0;
  }
}

.common-bnr a {
  display: inline-block;
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .common-bnr a {
    width: 31.125rem;
  }
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 299;
  background-color: #F5F5F5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .drawer-content {
    display: none;
  }
}

.drawer-content.is-active {
  opacity: 1;
  visibility: visible;
}

.drawer-content__box {
  padding: 25px;
  padding: 1.5625rem;
}

.drawer-content__logo {
  width: 42px;
  width: 2.625rem;
}

.drawer-content__logo a {
  display: block;
}

.drawer-content__logo svg {
  width: 100%;
}

.drawer-content__items {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.drawer-content__item a {
  display: block;
  font-weight: 900;
  color: #022A64;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.drawer-content__item:not(:first-child) {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.drawer-icon {
  width: 34px;
  width: 2.125rem;
  position: fixed;
  top: 19px;
  top: 1.1875rem;
  right: 20px;
  right: 1.25rem;
  z-index: 300;
  height: 35px;
  height: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bars {
  position: relative;
  height: inherit;
}

.drawer-icon__bar01,
.drawer-icon__bar02 {
  width: 100%;
  background-color: #70BC2E;
  height: 2px;
  left: 0;
  position: absolute;
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.drawer-icon__bar01 {
  top: 0;
}

.drawer-icon__bar02 {
  top: 10px;
  top: 0.625rem;
}

.drawer-icon.is-active .drawer-icon__bar01 {
  top: 5px;
  top: 0.3125rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.drawer-icon.is-active .drawer-icon__bar02 {
  top: 5px;
  top: 0.3125rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__open {
  font-family: "Noto Sans Arabic", sans-serif;
  text-align: center;
  font-weight: 600;
  color: #70BC2E;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0;
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
}

.drawer-icon__open.is-active {
  display: block;
}

.drawer-icon__close {
  font-family: "Noto Sans Arabic", sans-serif;
  text-align: center;
  font-weight: 600;
  color: #70BC2E;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0;
  display: none;
  bottom: 0;
  left: 0;
  position: absolute;
}

.drawer-icon__close.is-active {
  display: block;
}

.footer {
  background-color: #022A64;
  padding-top: 62px;
  padding-top: 3.875rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 3.5rem;
  }
}

.footer__inner {
  padding-bottom: 66px;
  padding-bottom: 4.125rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    width: 74.25rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 3.5rem;
  }
}

.footer__logo {
  width: 208px;
  width: 13rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.footer__items {
  margin-top: 56px;
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__item {
  margin-right: 34px;
  margin-right: 2.125rem;
  margin-bottom: 14px;
  margin-bottom: 0.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__item {
    margin-right: 0;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .footer__item:not(:first-child) {
    margin-left: 3.4375rem;
  }
}

.footer__item::after {
  content: "/";
  position: absolute;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  top: 0;
  right: -18px;
  right: -1.125rem;
}
@media screen and (min-width: 768px) {
  .footer__item::after {
    font-size: 1rem;
    right: -1.875rem;
  }
}

.footer__item:nth-child(10)::after,
.footer__item:nth-child(11)::after {
  content: none;
}

@media screen and (min-width: 768px) {
  .footer__item:nth-child(10) {
    margin-top: 0.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__item:nth-child(11) {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }
}

.footer__item a {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer__item a {
    font-size: 1rem;
  }
}

.footer__item:nth-child(11) a {
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
}

.footer__icons {
  margin-top: 60px;
  margin-top: 3.75rem;
  width: 224px;
  width: 14rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__icons {
    width: 100%;
  }
}

.footer__icon {
  width: 32px;
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__icon {
    width: 1.625rem;
  }
}

.footer__icon:not(:nth-child(4n+1)) {
  margin-left: 32px;
  margin-left: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__icon:not(:nth-child(4n+1)) {
    margin-left: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__icon:not(:first-child) {
    margin-left: 1.5rem;
  }
}

.footer__icon:nth-child(n+5) {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .footer__icon:nth-child(n+5) {
    margin-top: 0;
  }
}

.footer__icon a {
  display: block;
}

.footer__icon svg {
  width: 100%;
}

.footer__copy {
  display: block;
  text-align: center;
  color: #18212E;
  font-weight: 400;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0;
  background-color: #fff;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 126px;
  padding-bottom: 7.875rem;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    font-size: 0.75rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.genre-block {
  position: relative;
}

.genre-block__link {
  display: block;
}

.genre-block__category {
  color: #fff;
  padding: 3px 6px;
  padding: 0.1875rem 0.375rem;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  background-color: #B10000;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.genre-block__img {
  overflow: hidden;
}

.genre-block__img img {
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.genre-block__img:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/*
.genre-block__body {
    background-color: #fff;
    padding: rem(6) rem(12);
    @include mq (md) {
        padding: rem(26) rem(10) rem(10);
    }
}
*/
.genre-block__body {
  padding: 14px 12px 6px;
  padding: 0.875rem 0.75rem 0.375rem;
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* タイトル部分を高さ自動調整可能に */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .genre-block__body {
    padding: 1.0625rem 0.625rem 0.625rem;
  }
}

.genre-block__head {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #111;
}
@media screen and (min-width: 768px) {
  .genre-block__head {
    /*
    font-size: rem(21);
    */
    font-size: 1rem;
    line-height: 1.2;
  }
}

.genre-block__meta {
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .genre-block__meta {
    margin-top: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.genre-block__date {
  color: #999;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Alumni Sans", serif;
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .genre-block__date {
    margin-top: 0;
    font-size: 1.625rem;
  }
}

.genre-block__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.genre-block__icon {
  width: 10px;
  width: 0.625rem;
  margin-right: 8px;
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .genre-block__icon {
    width: 0.9375rem;
  }
}

.genre-block__icon a {
  display: block;
}

.genre {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  background-color: #D6D6D6;
}
@media screen and (min-width: 768px) {
  .genre {
    padding-top: 5rem;
  }
}

.genre__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .genre__inner {
    padding-left: 0;
    padding-right: 0;
    width: 72.75rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.genre__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .genre__lists {
    /*
    margin-top: rem(64);]*/
  }
}

.genre__list a {
  color: #111;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  padding-top: 7px;
  padding-top: 0.4375rem;
  cursor: pointer;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .genre__list a {
    font-size: 1rem;
  }
}

.genre__list a.is-active {
  color: #70BC2E;
  position: relative;
  border-top: 2px solid #70BC2E;
}

.genre__list a:hover {
  color: #70BC2E;
}

.genre__list:not(:first-child) {
  margin-left: 29px;
  margin-left: 1.8125rem;
}

/*
.genre__items {
    display: flex;
    flex-wrap: wrap;
    margin-top: rem(40);
}
.genre__item {
    width: calc(50% - 1.25rem / 2);
    @include mq (md) {
        width: calc(33.33333% - 0.8125rem * 2 / 3);
    }
}
*/
.genre__items {
  /*
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; 
  gap: rem(20);
  */
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .genre__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0.8125rem;
  }
}

.genre__item {
  /*
  width: calc(50% - 1.25rem / 2);
  */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* コンテンツのスペースを均等化 */
  height: 100%; /* 高さを統一 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングを含むボックスサイズ */
  background-color: #fff; /* 背景色を設定 */
}
@media screen and (min-width: 768px) {
  .genre__item {
    width: calc(33.33333% - 0.54167rem);
  }
}

.genre__item:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .genre__item:not(:first-child) {
    margin-top: 0;
  }
}

/*
.genre__item:nth-child(2n) {
    margin-left: rem(20);
}  
*/
.genre__item:nth-child(n+3) {
  /*
  margin-top: rem(20);
  */
}

@media screen and (min-width: 768px) {
  .genre__item:nth-child(3) {
    margin-top: 0;
  }
}

/*
.genre__item:not(:nth-child(3n + 1)) {
    @include mq (md) {
        margin-left: rem(13);
    }
}
.genre__item:nth-child(3n + 1) {
    @include mq (md) {
        margin-left: 0;
    }
}
.genre__item:nth-child(3) {
    @include mq (md) {
        margin-top: 0;
    }
}
.genre__item:nth-child(n + 4) {
    @include mq (md) {
        margin-top: rem(13);
    }
}
/*
.genre__item {
    width: calc(50% - 1.25rem / 2);
    @include mq (md) {
        width: calc(25% - 0.8125rem * 3 / 4);
    }
}
.genre__item:nth-child(2n) {
    margin-left: rem(20);
}
.genre__item:nth-child(n + 3) {
    margin-top: rem(20);
}
.genre__item:not(:nth-child(4n + 1)) {
    @include mq (md) {
        margin-left: rem(13);
    }
}
.genre__item:nth-child(4n + 1) {
    @include mq (md) {
        margin-left: 0;
    }
}
.genre__item:nth-child(3),
.genre__item:nth-child(4) {
    @include mq (md) {
        margin-top: 0;
    }
}
.genre__item:nth-child(n + 5) {
    @include mq (md) {
        margin-top: rem(13);
    }
}
*/
.header {
  padding-top: 19px;
  padding-top: 1.1875rem;
  background-color: #FCFEFF;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  /*
  padding-bottom: rem(17);
  */
  /*
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease 0s, visibility .3s ease 0s;
  */
}
@media screen and (min-width: 768px) {
  .header {
    padding-top: 0.75rem;
    /*
    padding-bottom: rem(44);
    */
  }
}

.header.is-active {
  opacity: 1;
  visibility: visible;
}

.header__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
}

@media screen and (min-width: 768px) {
  .header__box {
    width: 75rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 0.3125rem;
  }
}

.header__logo {
  width: 140px;
  width: 8.75rem;
}

.header__logo a {
  display: block;
}

.header__logo a svg {
  width: 100%;
}

.header__items {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-top: 0.625rem;
  }
}

.header__item:not(:first-child) {
  margin-left: 24px;
  margin-left: 1.5rem;
}

.header__item a {
  font-weight: 700;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #70BC2E;
}

.header__bnr {
  text-align: center;
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .header__bnr {
    margin-top: 2.875rem;
  }
}

.header__bnr a {
  display: inline-block;
  width: 249px;
  width: 15.5625rem;
}
@media screen and (min-width: 768px) {
  .header__bnr a {
    width: 31.125rem;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1490px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.league {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 84px;
  padding-bottom: 5.25rem;
}
@media screen and (min-width: 768px) {
  .league {
    padding-top: 5rem;
    padding-bottom: 6.75rem;
  }
}

.league__inner {
  padding-left: 23px;
  padding-left: 1.4375rem;
  padding-right: 23px;
  padding-right: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .league__inner {
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.league__title {
  text-align: center;
}

.league__title span {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #022A64;
  border-bottom: 0.125rem solid #022A64;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .league__title span {
    font-size: 2rem;
  }
}

.league__copy {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #000;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .league__copy {
    font-size: 1.125rem;
    margin-top: 0.75rem;
  }
}

.league__heaad-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .league__heaad-items {
    margin-top: 4rem;
  }
}

.league__heaad-item {
  background-color: #013683;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .league__heaad-item {
    background-color: #111;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }
}

.league__heaad-item.one {
  width: 50px;
  width: 3.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .league__heaad-item.one {
    width: 2.5rem;
  }
}

.league__heaad-item.one.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .league__heaad-item.one.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .league__heaad-item.one.u-mobile {
    display: none;
  }
}

.league__heaad-item.two {
  width: 66px;
  width: 4.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .league__heaad-item.two {
    width: 3.0625rem;
  }
}

.league__heaad-item.two.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .league__heaad-item.two.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .league__heaad-item.two.u-mobile {
    display: none;
  }
}

.league__heaad-item.three {
  width: 50px;
  width: 3.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .league__heaad-item.three {
    width: 5.25rem;
  }
}

.league__heaad-item.three.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .league__heaad-item.three.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .league__heaad-item.three.u-mobile {
    display: none;
  }
}

.league__heaad-item.four {
  width: 176px;
  width: 11rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .league__heaad-item.four {
    width: 5rem;
  }
}

.league__heaad-item.four.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .league__heaad-item.four.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .league__heaad-item.four.u-mobile {
    display: none;
  }
}

.league__heaad-item.five {
  width: 50px;
  width: 3.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .league__heaad-item.five {
    width: 26.9375rem;
  }
}

.league__heaad-item.five.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .league__heaad-item.five.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .league__heaad-item.five.u-mobile {
    display: none;
  }
}

.league__heaad-item.six {
  width: 316px;
  width: 19.75rem;
  max-width: 100%;
}

.league__heaad-item.six.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .league__heaad-item.six.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .league__heaad-item.six.u-mobile {
    display: none;
  }
}

.league__item {
  cursor: pointer;
  border-bottom: 2px solid #fff;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  background-color: #F5F5F5;
}

.league__item.is-away {
  background-color: #E2F2D5;
}

.league__item:hover {
  opacity: 0.5;
}

.league__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.league__list {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  text-align: center;
  padding-top: 9px;
  padding-top: 0.5625rem;
  padding-bottom: 9px;
  padding-bottom: 0.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.league__list.one {
  width: 50px;
  width: 3.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .league__list.one {
    width: 2.5rem;
  }
}

.league__list.one.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .league__list.one.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .league__list.one.u-mobile {
    display: none;
  }
}

.league__list.two {
  width: 66px;
  width: 4.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .league__list.two {
    width: 3.0625rem;
  }
}

.league__list.two.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .league__list.two.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .league__list.two.u-mobile {
    display: none;
  }
}

.league__list.three {
  width: 50px;
  width: 3.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .league__list.three {
    width: 5.25rem;
  }
}

.league__list.three.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .league__list.three.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .league__list.three.u-mobile {
    display: none;
  }
}

.league__list.four {
  width: 176px;
  width: 11rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .league__list.four {
    width: 5rem;
  }
}

.league__list.four.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .league__list.four.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .league__list.four.u-mobile {
    display: none;
  }
}

.league__list.five {
  width: 50px;
  width: 3.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .league__list.five {
    width: 26.9375rem;
  }
}

.league__list.five.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .league__list.five.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .league__list.five.u-mobile {
    display: none;
  }
}

.league__list.six {
  width: 316px;
  width: 19.75rem;
  max-width: 100%;
  text-align: left;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.league__list.six.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .league__list.six.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .league__list.six.u-mobile {
    display: none;
  }
}

.league__box-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .league__box-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.league__box-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .league__box-sp {
    display: none;
  }
}

.league__box-sp span {
  display: block;
}

.league__box-sp span:first-child {
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0;
  width: 60px;
  width: 3.75rem;
  max-width: 100%;
  text-align: right;
}

.league__box-sp span:nth-child(2) {
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0;
  width: 32px;
  width: 2rem;
  max-width: 100%;
}

.league__box-sp span:nth-child(3) {
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0;
  width: 60px;
  width: 3.75rem;
  max-width: 100%;
  text-align: left;
}

.league__box-left {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 183px;
  width: 11.4375rem;
  max-width: 100%;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.league__box-left img {
  width: 19px;
  width: 1.1875rem;
  margin-left: 4px;
  margin-left: 0.25rem;
}

.league__box-center {
  margin-left: 8px;
  margin-left: 0.5rem;
  margin-right: 8px;
  margin-right: 0.5rem;
  width: 50px;
  width: 3.125rem;
  max-width: 100%;
}

.league__box-right {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 183px;
  width: 11.4375rem;
  max-width: 100%;
  letter-spacing: 0;
}

.league__box-right img {
  margin-right: 4px;
  margin-right: 0.25rem;
  width: 19px;
  width: 1.1875rem;
}

.local-community-block__img img {
  height: auto;
}

.local-community-block__name {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #111;
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .local-community-block__name {
    font-size: 1rem;
  }
}

.local-community-block__btn {
  display: block;
  background-color: #022A64;
  width: 100%;
  height: 33px;
  height: 2.0625rem;
  line-height: 33px;
  line-height: 2.0625rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-top: 22px;
  margin-top: 1.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .local-community-block__btn {
    font-size: 1rem;
    height: 2.8125rem;
    line-height: 2.8125rem;
  }
}

.local-community-block__btn::after {
  content: "";
  position: absolute;
  width: 7px;
  width: 0.4375rem;
  height: 12px;
  height: 0.75rem;
  background: url(../images/common/btn.webp) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .local-community-block__btn::after {
    right: 1.875rem;
  }
}

.local-community {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 82px;
  padding-bottom: 5.125rem;
}
@media screen and (min-width: 768px) {
  .local-community {
    padding-top: 5rem;
    padding-bottom: 6.75rem;
  }
}

.local-community__inner {
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .local-community__inner {
    padding-left: 0;
    padding-right: 0;
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.local-community__head {
  color: #111;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .local-community__head {
    text-align: center;
    letter-spacing: 0;
  }
}

.local-community__copy {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #111;
}
@media screen and (min-width: 768px) {
  .local-community__copy {
    margin-top: 2.75rem;
    text-align: center;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.local-community__items {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.local-community__item {
  width: calc(50% - 0.625rem);
}
@media screen and (min-width: 768px) {
  .local-community__item {
    width: calc(20% - 0.8rem);
  }
}

.local-community__item:nth-child(2n) {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .local-community__item:not(:nth-child(5n+1)) {
    margin-left: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .local-community__item:nth-child(5n+1) {
    margin-left: 0;
  }
}

.local-community__item:nth-child(n+3) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .local-community__item:nth-child(3),
  .local-community__item:nth-child(4),
  .local-community__item:nth-child(5),
  .local-community__item:nth-child(6) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .local-community__item:nth-child(n+6) {
    margin-top: 1rem;
  }
}

.local-project-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.local-project-block__img {
  position: relative;
  width: 100%;
}

.local-project-block__img::before {
  content: "";
  display: block;
  padding-top: 80.2139037433%;
}

.local-project-block__img img {
  -o-object-position: center;
  height: 100%;
  left: 50%;
  object-position: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.local-project-block__name {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.local-project-block__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.local-project-block__label {
  width: calc(25% - 0.23438rem);
}
.local-project-block__label:not(:nth-child(4n+1)) {
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.local-project-block__btn {
  display: block;
  margin-top: 6px;
  margin-top: 0.375rem;
  background-color: #022A64;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
  height: 33px;
  height: 2.0625rem;
  line-height: 33px;
  line-height: 2.0625rem;
  font-weight: 700;
  position: relative;
  padding-right: 10px;
  padding-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .local-project-block__btn {
    font-size: 1rem;
    line-height: 2.8125rem;
    height: 2.8125rem;
  }
}

.local-project-block__btn::after {
  content: "";
  position: absolute;
  width: 7px;
  width: 0.4375rem;
  height: 12px;
  height: 0.75rem;
  background: url(../images/common/btn.webp) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .local-project-block__btn::after {
    right: 1.3125rem;
  }
}

.local-project__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .local-project__inner {
    padding-left: 0;
    padding-right: 0;
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.local-project__head {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  border-bottom: 2px solid #022A64;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .local-project__head {
    margin-top: 5rem;
  }
}

.local-project__items {
  margin-top: 60px;
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.local-project__item {
  width: calc(50% - 0.625rem);
}
@media screen and (min-width: 768px) {
  .local-project__item {
    width: calc(20% - 0.8rem);
  }
}

.local-project__item:nth-child(2n) {
  margin-left: 20px;
  margin-left: 1.25rem;
}

.local-project__item:nth-child(n+3) {
  margin-top: 37px;
  margin-top: 2.3125rem;
}

@media screen and (min-width: 768px) {
  .local-project__item:not(:nth-child(5n+1)) {
    margin-left: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .local-project__item:nth-child(5n+1) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .local-project__item:nth-child(n+6) {
    margin-top: 1.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .local-project__item:nth-child(2),
  .local-project__item:nth-child(3),
  .local-project__item:nth-child(4),
  .local-project__item:nth-child(5) {
    margin-top: 0;
  }
}

.local-project__btn {
  margin-top: 37px;
  margin-top: 2.3125rem;
  display: block;
  width: 190px;
  width: 11.875rem;
  height: 44px;
  height: 2.75rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 44px;
  line-height: 2.75rem;
  text-align: center;
  background-color: #022A64;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .local-project__btn {
    margin-top: 5rem;
    font-size: 1rem;
    width: 13.5625rem;
    height: 3.5rem;
    line-height: 3.5rem;
  }
}

.local-project__btn::after {
  content: "";
  position: absolute;
  width: 7px;
  width: 0.4375rem;
  height: 12px;
  height: 0.75rem;
  background: url(../images/common/btn.webp) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .local-project__btn::after {
    right: 1.25rem;
  }
}

.main-view {
  margin-top: 69px;
  margin-top: 4.3125rem;
  /*
  margin-top: rem(60);
  */
  /*
  padding-bottom: rme(60);
  */
}
@media screen and (min-width: 768px) {
  .main-view {
    margin-top: 4.1875rem;
    padding-bottom: 2.5rem;
  }
}

.match-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 400;
}

.match-modal__wrapper {
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  width: calc(100% - 3.125rem);
  height: calc(100% - 3.125rem);
  overflow-y: scroll;
  position: absolute;
  z-index: 401;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../images/common/match-modal-bg.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .match-modal__wrapper {
    width: 41.25rem;
    height: 37.5rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.match-modal_close {
  width: 24px;
  width: 1.5rem;
  position: absolute;
  top: 20px;
  top: 1.25rem;
  right: 20px;
  right: 1.25rem;
  cursor: pointer;
}

.match-modal-bg {
  position: fixed;
  z-index: 400;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .55);
  top: 0;
  left: 0;
}

.match-modal__box.unmatched {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

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

.match-modal__head span {
  font-weight: 900;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  display: inline-block;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid #fff;
  color: #fff;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .match-modal__head span {
    white-space: normal;
    white-space: initial;
  }
}

.match-modal__locate {
  margin-top: 21px;
  margin-top: 1.3125rem;
  font-weight: 500;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #CECECE;
}

.match-modal__date {
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.match-modal__btn {
  display: block;
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 190px;
  width: 11.875rem;
  height: 44px;
  height: 2.75rem;
  text-align: center;
  line-height: 44px;
  line-height: 2.75rem;
  background-color: #fff;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #022A64;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.match-modal__btn::after {
  content: "";
  position: absolute;
  width: 6px;
  width: 0.375rem;
  height: 12px;
  height: 0.75rem;
  background: url(../images/common/match-modal-arrow.webp) no-repeat center center/contain;
  right: 20px;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.match-modal__body {
  margin-top: 45px;
  margin-top: 2.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.match-modal__body-left {
  text-align: center;
}

.match-modal__body-left img {
  width: 50px;
  width: 3.125rem;
  display: inline-block;
}

.match-modal__body-left span {
  display: block;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.match-modal__body-center {
  margin-left: 14px;
  margin-left: 0.875rem;
  margin-right: 14px;
  margin-right: 0.875rem;
  font-weight: 600;
  color: #fff;
  font-size: 52px;
  font-size: 3.25rem;
  font-family: "Alumni Sans", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 8px;
  margin-left: 0.5rem;
  margin-right: 8px;
  margin-right: 0.5rem;
}

.match-modal__body-center span {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0 8px;
  margin: 0 0.5rem;
}

.match-modal__body-right {
  text-align: center;
}

.match-modal__body-right img {
  width: 50px;
  width: 3.125rem;
  display: inline-block;
}

.match-modal__body-right span {
  display: block;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.match-modal__box01 {
  margin-top: 34px;
  margin-top: 2.125rem;
  width: 580px;
  width: 36.25rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.match-modal__score {
  background-color: #022A64;
  text-align: center;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

.match-modal__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

.match-modal__item:nth-child(2n) {
  background-color: #022A64;
}

.match-modal__item-left {
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #fff;
  width: 117px;
  width: 7.3125rem;
  max-width: 100%;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .match-modal__item-left {
    width: 16.0625rem;
  }
}

.match-modal__item-center {
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #fff;
  width: 38px;
  width: 2.375rem;
  max-width: 100%;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .match-modal__item-center {
    width: 2.375rem;
  }
}

.match-modal__item-right {
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #fff;
  width: 117px;
  width: 7.3125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .match-modal__item-right {
    width: 16.0625rem;
  }
}

.match {
  padding-top: 80px;
  padding-top: 5rem;
}

.match__inner {
  padding-left: 23px;
  padding-left: 1.4375rem;
  padding-right: 23px;
  padding-right: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .match__inner {
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.match__title {
  text-align: center;
}

.match__title span {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 19px;
  font-size: 1.1875rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #022A64;
  border-bottom: 0.125rem solid #022A64;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .match__title span {
    font-size: 2rem;
  }
}

.match__head-items {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .match__head-items {
    margin-top: 4rem;
  }
}

.match__head-item {
  background-color: #111;
  height: 32px;
  height: 2rem;
  line-height: 32px;
  line-height: 2rem;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0;
  text-align: center;
}

.match__head-item.one {
  width: 50px;
  width: 3.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .match__head-item.one {
    width: 7.875rem;
  }
}

.match__head-item.two {
  width: 66px;
  width: 4.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .match__head-item.two {
    width: 5.25rem;
  }
}

.match__head-item.three {
  width: 50px;
  width: 3.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .match__head-item.three {
    width: 4.125rem;
  }
}

.match__head-item.four {
  width: 176px;
  width: 11rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .match__head-item.four {
    width: 26.9375rem;
  }
}

.match__head-item.five {
  width: 293px;
  width: 18.3125rem;
  max-width: 100%;
}

.match__item {
  cursor: pointer;
  border-bottom: 2px solid #fff;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.match__item:hover {
  opacity: 0.5;
}

.match__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.match__list {
  background-color: #F5F5F5;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  text-align: center;
  padding-top: 9px;
  padding-top: 0.5625rem;
  padding-bottom: 9px;
  padding-bottom: 0.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.match__list.one {
  width: 50px;
  width: 3.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .match__list.one {
    width: 7.875rem;
  }
}

.match__list.one.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .match__list.one.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .match__list.one.u-mobile {
    display: none;
  }
}

.match__list.two {
  width: 66px;
  width: 4.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .match__list.two {
    width: 5.25rem;
  }
}

@media screen and (min-width: 768px) {
  .match__list.two.u-mobile {
    display: none;
  }
}

.match__list.two.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .match__list.two.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.match__list.three {
  width: 50px;
  width: 3.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .match__list.three {
    width: 4.125rem;
  }
}

@media screen and (min-width: 768px) {
  .match__list.three.u-mobile {
    display: none;
  }
}

.match__list.three.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .match__list.three.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.match__list.four {
  width: 176px;
  width: 11rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .match__list.four {
    width: 26.9375rem;
  }
}

.match__list.five {
  display: none;
}
@media screen and (min-width: 768px) {
  .match__list.five {
    width: 18.3125rem;
    max-width: 100%;
    text-align: left;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.match__box-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .match__box-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.match__box-left {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 183px;
  width: 11.4375rem;
  max-width: 100%;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.match__box-left img {
  width: 19px;
  width: 1.1875rem;
  margin-left: 4px;
  margin-left: 0.25rem;
}

.match__box-center {
  margin-left: 8px;
  margin-left: 0.5rem;
  margin-right: 8px;
  margin-right: 0.5rem;
  width: 50px;
  width: 3.125rem;
  max-width: 100%;
}

.match__box-right {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 183px;
  width: 11.4375rem;
  max-width: 100%;
  letter-spacing: 0;
}

.match__box-right img {
  margin-right: 4px;
  margin-right: 0.25rem;
  width: 19px;
  width: 1.1875rem;
}

.match__box-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .match__box-sp {
    display: none;
  }
}

.match__box-sp span {
  display: block;
}

.match__box-sp span:first-child {
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0;
  width: 60px;
  width: 3.75rem;
  max-width: 100%;
  text-align: right;
}

.match__box-sp span:nth-child(2) {
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0;
  width: 32px;
  width: 2rem;
  max-width: 100%;
}

.match__box-sp span:nth-child(3) {
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0;
  width: 60px;
  width: 3.75rem;
  max-width: 100%;
  text-align: left;
}

.news {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 5rem;
    padding-bottom: 5rem;
    /*
    padding-bottom: rem(96);
    */
  }
}

@media screen and (min-width: 768px) {
  .news__bnr {
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.news-swiper-wrapper {
  /*
  margin-top: rem(40);
  */
  padding-left: 20px;
  padding-left: 1.25rem;
}

.news-swiper.swiper-horizontal {
  overflow-x: hidden;
}

.swiper-slide a {
  display: block;
}

.swiper-slide img {
  height: auto;
}

.news__head {
  font-weight: 700;
  color: #111;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 10px;
  margin: 0.625rem;
}

.news__items {
  display: none;
}
@media screen and (min-width: 768px) {
  .news__items {
    /*
    margin-top: rem(64);
    */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.news__item {
  width: 372px;
  width: 23.25rem;
  max-width: 100%;
}

.news__item a {
  display: block;
}

.news__img {
  overflow: hidden;
}

.news__img img {
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.news__img:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.news__item:not(:first-child) {
  margin-left: 24px;
  margin-left: 1.5rem;
}

.news__item h3 {
  margin-top: 14px;
  margin-top: 0.875rem;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  color: #111;
}

.page-top {
  width: 50px;
  width: 3.125rem;
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  display: none;
}
@media screen and (min-width: 768px) {
  .page-top {
    width: 4.0625rem;
    display: block;
  }
}

.page-top a {
  display: block;
}

.page-top-sp {
  width: 50px;
  width: 3.125rem;
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .page-top-sp {
    width: 4.0625rem;
    display: none !important;
  }
}

.page-top-sp a {
  display: block;
}

.pagination {
  text-align: center;
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 4rem;
  }
}

.page-numbers {
  display: inline-block;
  width: 31px;
  width: 1.9375rem;
  height: 31px;
  height: 1.9375rem;
  text-align: center;
  line-height: 31px;
  line-height: 1.9375rem;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .page-numbers {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
  }
}

.page-numbers.current {
  border-radius: 50%;
  background-color: #70BC2E;
  color: #fff;
}

.partner {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .partner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.partner_inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .partner_inner {
    padding: 0;
    padding-right: 0;
    width: 62.875rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.partner__title {
  text-align: center;
}
.partner__title span {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #022A64;
}
@media screen and (min-width: 768px) {
  .partner__title span {
    font-size: 2rem;
  }
}

.partner__items {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .partner__items {
    margin-top: 4rem;
  }
}

.partner__item {
  width: calc(33.33333% - 0.33333rem);
}
@media screen and (min-width: 768px) {
  .partner__item {
    width: calc(25% - 0.70313rem);
  }
}

.partner__item a {
  display: block;
}

.partner__item:not(:nth-child(3n+1)) {
  margin-left: 8px;
  margin-left: 0.5rem;
}
.partner__item:nth-child(n+4) {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .partner__item:not(:nth-child(4n+1)) {
    margin-left: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .partner__item:nth-child(4n+1) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .partner__item:nth-child(4) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .partner__item:nth-child(n+5) {
    margin-top: 1.5rem;
  }
}

.partner01 {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .partner01 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.partner01--bg {
  background-color: #F5F5F5;
}

.partner01__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .partner01__inner {
    padding: 0;
    padding-right: 0;
    width: 62.875rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.partner01__title {
  text-align: center;
}

.partner01__title span {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #022A64;
}
@media screen and (min-width: 768px) {
  .partner01__title span {
    font-size: 2rem;
  }
}

.partner01__items {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .partner01__items {
    margin-top: 4rem;
  }
}

.partner01__item {
  width: calc(33.33333% - 0.33333rem);
}
@media screen and (min-width: 768px) {
  .partner01__item {
    width: calc(20% - 0.8rem);
  }
}

.partner01__item:not(:nth-child(3n+1)) {
  margin-left: 8px;
  margin-left: 0.5rem;
}
.partner01__item:nth-child(n+4) {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .partner01__item:nth-child(5n+1) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .partner01__item:not(:nth-child(5n+1)) {
    margin-left: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .partner01__item:nth-child(4),
  .partner01__item:nth-child(5) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .partner01__item:nth-child(n+6) {
    margin-top: 1rem;
  }
}

.partner01__lists {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .partner01__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .partner01__list {
    margin-right: 1.25rem;
    margin-bottom: 0.625rem;
  }
}

.partner01__list a {
  display: block;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .partner01__list a {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .pickup {
    padding-bottom: 3.75rem;
    padding-bottom: 6.75rem;
  }
}

.pickup__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  padding-top: 25px;
  padding-top: 1.5625rem;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
  background-color: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .pickup__inner {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .pickup__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 75rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .pickup__item {
    width: calc(33.33333% - 1.66667rem);
  }
}

.pickup__item:not(:first-child) {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .pickup__item:not(:first-child) {
    margin-top: 0;
    margin-left: 2.5rem;
  }
}

.pickup__box01 a {
  display: block;
}

.pickup__img {
  overflow: hidden;
}

.pickup__img img {
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.pickup__img:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.pickup__box {
  margin-top: 8px;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pickup__head {
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.pickup__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pickup__published {
  font-weight: 500;
  color: #999;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Alumni Sans", serif;
}

.pickup__category {
  margin-left: 8px;
  margin-left: 0.5rem;
}

.pickup__category a {
  color: #fff;
  font-weight: 500;
  font-size: 10px;
  font-size: 0.625rem;
  /*
  background-color: #022A64;
  */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 4px;
  padding-left: 0.25rem;
  padding-right: 4px;
  padding-right: 0.25rem;
}

.pickup__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pickup__icon {
  width: 14px;
  width: 0.875rem;
}

.pickup__icon:not(:first-child) {
  margin-left: 4px;
  margin-left: 0.25rem;
}

.pickup__icon a {
  display: block;
}

.player-block {
  /*
  background: url(../images/common/player-block01.webp) no-repeat center center / cover;
  */
  aspect-ratio: 1;
  padding: 10px 10px 5px;
  padding: 0.625rem 0.625rem 0.3125rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .player-block {
    padding: 1.3125rem 0.9375rem 0.9375rem;
  }
}

.player-block__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.player-block__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  height: 100%;
}

.player-block__box01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.player-block img {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}

.player-block__number {
  font-weight: 900;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.08em;
  font-family: "Alumni Sans", serif;
  color: rgba(255, 255, 255, .7);
}
@media screen and (min-width: 768px) {
  .player-block__number {
    font-size: 3.125rem;
    line-height: 1;
  }
}

.player-block__name--en {
  color: #70BC2E;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  display: block;
  font-family: "Bebas Neue", sans-serif;
}
@media screen and (min-width: 768px) {
  .player-block__name--en {
    font-size: 0.9375rem;
  }
}

.player-block__name--ja {
  font-weight: 400;
  /*
  font-size: rem(20);
  */
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
}
@media screen and (min-width: 768px) {
  .player-block__name--ja {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 768px) {
  .player-block__name--ja.felipe {
    font-size: 1.5rem;
  }
}

.player-block__copy {
  font-weight: 400;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .player-block__copy {
    font-size: 1rem;
  }
}

.player-detail-box {
  position: relative;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .player-detail-box {
    padding-top: 5.9375rem;
    padding-bottom: 4.25rem;
    margin-top: 0.25rem;
    /*
    background: url(../images/common/player-detail-box-bg.webp) no-repeat center center / cover;
    */
    background: url(../images/common/player-detail-box-bg-big.webp) no-repeat center center/cover;
  }
}

.player-detail-box::after {
  /*
  @include mq (md) {
      content: "";
      position: absolute;
      width: rem(339);
      height: rem(517);
      background: url(../images/common/player-detail-box-icon-gray.webp) no-repeat center center / contain;
      right: 0;
      bottom: 0;
  }
  */
}

@media screen and (min-width: 768px) {
  .player-detail-box__inner {
    width: 73.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 60.75rem;
  }
}

.player-detail-box__left {
  min-height: 765px;
  min-height: 47.8125rem;
  padding-bottom: 75px;
  padding-bottom: 4.6875rem;
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
  background: url(../images/common/player-detail-box-left-bg.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .player-detail-box__left {
    background: none;
    width: 45.0625rem;
    max-width: 100%;
    min-height: auto;
    padding-bottom: 0;
    position: relative;
  }
}

.player-detail-box__box {
  position: relative;
  z-index: 1;
}

.player-detail-box__number {
  color: rgba(112, 188, 46, .4);
  font-weight: 700;
  font-style: italic;
  font-size: 240px;
  font-size: 15rem;
  letter-spacing: 0.03em;
  font-family: "Alumni Sans", serif;
  position: absolute;
  top: 0;
  left: 57%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  line-height: 0.7;
}
@media screen and (min-width: 768px) {
  .player-detail-box__number {
    font-size: 26.25rem;
    left: 43%;
    top: -3.4375rem;
  }
}

.player-detail-box__icon {
  width: 87px;
  width: 5.4375rem;
}
@media screen and (min-width: 768px) {
  .player-detail-box__icon {
    width: 6.8125rem;
  }
}

.player-detail-box__name {
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
  z-index: 1;
}

.player-detail-box__name--ja {
  display: block;
  font-weight: 700;
  font-size: 98px;
  font-size: 6.125rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: #fff;
  font-style: italic;
  text-shadow: 10px 10px 0 rgba(0, 1, 60, .4);
  text-shadow: 0.625rem 0.625rem 0 rgba(0, 1, 60, .4);
  position: relative;
  z-index: 1;
  margin-left: -5px;
  margin-left: -0.3125rem;
}
@media screen and (min-width: 768px) {
  .player-detail-box__name--ja {
    font-size: 7.25rem;
  }
}

.player-detail-box__name--ja.fiuza {
  font-size: 70px;
  font-size: 4.375rem;
}
@media screen and (min-width: 768px) {
  .player-detail-box__name--ja.fiuza {
    font-size: 6.125rem;
  }
}

.player-detail-box__name--ja.f78 {
  font-size: 78px;
  font-size: 4.875rem;
}
@media screen and (min-width: 768px) {
  .player-detail-box__name--ja.f78 {
    font-size: 6.125rem;
  }
}

.player-detail-box__name--en {
  display: block;
  font-weight: 400;
  font-size: 100px;
  font-size: 6.25rem;
  letter-spacing: 0;
  line-height: 0.8;
  color: rgba(2, 42, 100, .4);
  font-family: "Bebas Neue", sans-serif;
}
@media screen and (min-width: 768px) {
  .player-detail-box__name--en {
    font-size: 7.5rem;
  }
}

.player-detail-box__ballon {
  margin-left: -43px;
  margin-left: -2.6875rem;
  /*
  margin-top: rem(-88);
  */
}
@media screen and (min-width: 768px) {
  .player-detail-box__ballon {
    width: 31.8125rem;
    max-width: 100%;
    margin-left: -2.75rem;
    /*
    margin-top: rem(-88);
    */
    position: absolute;
    bottom: 4.5rem;
  }
}

.player-detail-box__img {
  position: absolute;
  top: 61px;
  top: 3.8125rem;
  width: 255px;
  width: 15.9375rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .player-detail-box__img {
    width: 23.1875rem;
    /*
    width: rem(263);
    */
    /*
    top: rem(-54);
    */
    top: 0;
  }
}

/*
.player-detail-box__img.nata {
    width: rem(191);
    top: rem(48);
    @include mq (md) {
        width: rem(251);
        top: rem(-80);
    }
}
*/
.player-detail-box__img.ikuma {
  width: 194px;
  width: 12.125rem;
  top: 42px;
  top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .player-detail-box__img.ikuma {
    width: 23.1875rem;
    top: -3.375rem;
  }
}

.player-detail-box__img.fiuza {
  width: 245px;
  width: 15.3125rem;
}
@media screen and (min-width: 768px) {
  .player-detail-box__img.fiuza {
    width: 23.1875rem;
  }
}

.player-detail-box__right {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .player-detail-box__right {
    padding-left: 0;
    padding-right: 0;
    width: 25rem;
    max-width: 100%;
  }
}

.player-detail-box__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .player-detail-box__dl {
    display: block;
  }
}

.player-detail-box__row {
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  border-top: 1px solid #999;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .player-detail-box__row {
    padding-left: 1rem;
  }
}

.player-detail-box__row--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.player-detail-box__row:first-child,
.player-detail-box__row:nth-child(2),
.player-detail-box__row:nth-child(3),
.player-detail-box__row:nth-child(4) {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .player-detail-box__row:first-child,
  .player-detail-box__row:nth-child(2),
  .player-detail-box__row:nth-child(3),
  .player-detail-box__row:nth-child(4) {
    width: 100%;
  }
}

.player-detail-box__row:first-child {
  border-top: 1px solid #999;
}
@media screen and (min-width: 768px) {
  .player-detail-box__row:first-child {
    border-top: none;
  }
}

.player-detail-box__row:last-child {
  /*
  border-bottom: 1px solid #999;
  */
}

.player-detail-box__dt {
  color: #70BC2E;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
}

.player-detail-box__dd {
  font-weight: 400;
  color: #111;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .player-detail-box__dd {
    color: #fff;
  }
}

.player-detail-box__dd--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
  margin-left: 1.25rem;
}

.player-detail-box__dd a {
  display: block;
  width: 58px;
  width: 3.625rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}

.player-detail-box__dd a:nth-child(2) {
  width: 62px;
  width: 3.875rem;
}
@media screen and (min-width: 768px) {
  .player-detail-box__dd a:nth-child(2) {
    width: 3.625rem;
  }
}

.player-detail-box__dd li {
  color: #111;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .player-detail-box__dd li {
    color: #fff;
  }
}

.player-detail-box__link {
  display: block;
  width: 259px;
  width: 16.1875rem;
  max-width: 100%;
  height: 44px;
  height: 2.75rem;
  text-align: center;
  line-height: 44px;
  line-height: 2.75rem;
  background-color: #022A64;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding-right: 20px;
  padding-right: 1.25rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .player-detail-box__link {
    /*
    margin-top: rem(60);
    */
    margin-top: 0;
  }
}

.player-detail-box__link::after {
  content: "";
  position: absolute;
  width: 7px;
  width: 0.4375rem;
  height: 12px;
  height: 0.75rem;
  background: url(../images/common/player-detail-box-link-after.webp) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
}

.player-detail {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

@media screen and (min-width: 768px) {
  .player-detail__box {
    background: url(../images/common/player-detail-bg_pc.webp) no-repeat center center/cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    overflow-y: hidden;
  }
}

@media screen and (min-width: 768px) {
  .player-detail__box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 8.125rem;
    left: 0;
    bottom: 0;
    background: url(../images/common/player-detail__box-before.webp) no-repeat center center/cover;
    z-index: 1;
  }
}

.player-detail__img01 {
  background: url(../images/common/player-detail-bg_sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .player-detail__img01 {
    background: none;
    width: 33.75rem;
    max-width: 100%;
    position: relative;
    z-index: 2;
    top: 1rem;
  }
}

.player-detail__body {
  background-color: #022A64;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  width: 340px;
  width: 21.25rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -54px;
  margin-top: -3.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .player-detail__body {
    margin-left: 0;
    margin-right: 0;
    width: 37.5rem;
    margin-top: 0;
    /*
    padding-right: rem(70);
    */
    padding-right: 5.6875rem;
    background: url(../images/common/player-detail-body-bg.webp) no-repeat center center/contain;
    /*
    margin-left: rem(-340);
    */
    margin-left: -20.125rem;
    margin-top: 3.125rem;
  }
}

.player-detail__copy {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .player-detail__copy {
    text-align: right;
  }
}

.player-detail__copy span {
  display: inline-block;
  min-width: 241px;
  min-width: 15.0625rem;
  font-weight: 400;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #005CA2;
  font-style: italic;
  padding-bottom: 3px;
  padding-bottom: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .player-detail__copy span {
    text-align: right;
    font-size: 1.5rem;
    min-width: 20.8125rem;
    text-align: center;
    padding-bottom: 0.5rem;
  }
}

.player-detail__name {
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .player-detail__name {
    text-align: right;
    font-size: 3.5rem;
  }
}

@media screen and (min-width: 768px) {
  .player-detail__name.f32 {
    font-size: 1.8125rem;
    padding-right: 2.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .player-detail__name.f48 {
    font-size: 3rem;
  }
}

.player {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .player {
    padding-top: 5rem;
    padding-bottom: 6.75rem;
  }
}

.player__inner {
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .player__inner {
    padding-left: 0;
    padding-right: 0;
    width: 68.75rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.player__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.player__tab a {
  width: 160px;
  width: 10rem;
  height: 44px;
  height: 2.75rem;
  text-align: center;
  line-height: 43px;
  line-height: 2.6875rem;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #022A64;
  background-color: #fff;
  border: 1px solid #022A64;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  display: block;
}

.player__tab.current a {
  background-color: #022A64;
  color: #fff;
}

.player__tab a:hover {
  background-color: #022A64;
  color: #fff;
}

.player__tab:not(:first-child) {
  margin-left: 20px;
  margin-left: 1.25rem;
}

.player__items {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .player__items {
    margin-top: 4rem;
  }
}

.player__item:not(:first-child) {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.player__head {
  text-align: center;
}

.player__head span {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid #022A64;
}
@media screen and (min-width: 768px) {
  .player__head span {
    font-size: 2rem;
  }
}

.player__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .player__lists {
    margin-top: 4rem;
  }
}

.player__list {
  /*
  width: calc(50% - 1.25rem / 2);
  */
  width: calc(50% - 0.3125rem);
}
@media screen and (min-width: 768px) {
  .player__list {
    width: calc(25% - 0.60938rem);
  }
}

.player__list:nth-child(2n) {
  /*
  margin-left: rem(20);
  */
  margin-left: 10px;
  margin-left: 0.625rem;
}

.player__list:nth-child(n+3) {
  /*
  margin-top: rem(20);
  */
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (min-width: 768px) {
  .player__list:nth-child(4n+1) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .player__list:not(:nth-child(4n+1)) {
    margin-left: 0.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .player__list:nth-child(3),
  .player__list:nth-child(4) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .player__list:nth-child(n+5) {
    margin-top: 0.8125rem;
  }
}

.premium-partner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .premium-partner {
    padding-top: 2.8125rem;
    padding-bottom: 5.25rem;
  }
}

.premium-partner__title {
  text-align: center;
  position: relative;
}

.premium-partner__title--en {
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .premium-partner__title--en {
    width: 76.625rem;
    max-width: 100%;
  }
}

.premium-partner__title--en svg {
  width: 100%;
}

.premium-partner__title--ja {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #022A64;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  position: absolute;
  top: 44%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .premium-partner__title--ja {
    margin-top: 0;
    font-size: 2rem;
  }
}

.premium-partner__inner {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .premium-partner__inner {
    margin-top: 4rem;
    padding-left: 0;
    padding-right: 0;
    width: 48.0625rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.premium-partner__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.premium-partner__item {
  width: calc(33.33333% - 0.33333rem);
}
@media screen and (min-width: 768px) {
  .premium-partner__item {
    width: calc(33.33333% - 1rem);
  }
}

.premium-partner__item a {
  display: block;
}

.premium-partner__item:not(:nth-child(3n+1)) {
  margin-left: 8px;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .premium-partner__item:not(:nth-child(3n+1)) {
    margin-left: 1.5rem;
  }
}

.premium-partner__item:nth-child(n+4) {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .premium-partner__item:nth-child(n+4) {
    margin-top: 1.5rem;
  }
}

.premium-partner__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 244px;
  width: 15.25rem;
  height: 44px;
  height: 2.75rem;
  text-align: center;
  line-height: 44px;
  line-height: 2.75rem;
  background-color: #022A64;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .premium-partner__btn {
    margin-top: 4rem;
    width: 16.6875rem;
    height: 3.5rem;
    line-height: 3.5rem;
    font-weight: 700;
    font-size: 1rem;
  }
}

.premium-partner__btn::after {
  content: "";
  position: absolute;
  width: 7px;
  width: 0.4375rem;
  height: 12px;
  height: 0.75rem;
  background: url(../images/common/btn.webp) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .premium-partner__btn::after {
    right: 1.0625rem;
  }
}

.privacy {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .privacy {
    padding-top: 5rem;
    padding-bottom: 6.75rem;
  }
}

.privacy__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .privacy__inner {
    padding-left: 0;
    padding-right: 0;
    width: 48rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.privacy__copy {
  color: #111;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.6;
}

.privacy__items {
  margin-top: 26px;
  margin-top: 1.625rem;
}

.privacy__item:not(:first-child) {
  margin-top: 26px;
  margin-top: 1.625rem;
}

.privacy__head {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  padding: 8px 4px;
  padding: 0.5rem 0.25rem;
  border-bottom: 1px solid #70BC2E;
}

.privacy__text {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 16px;
  margin-top: 1rem;
  padding-left: 4px;
  padding-left: 0.25rem;
  padding-right: 9px;
  padding-right: 0.5625rem;
}

.privacy__dl {
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
}

@media screen and (min-width: 768px) {
  .privacy__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .privacy__row:not(:first-child) {
    margin-top: 0.125rem;
  }
}

.privacy__dt {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
  height: 43px;
  height: 2.6875rem;
  line-height: 43px;
  line-height: 2.6875rem;
  background-color: #F5F5F5;
  padding-left: 4px;
  padding-left: 0.25rem;
}
@media screen and (min-width: 768px) {
  .privacy__dt {
    width: 7rem;
    height: auto;
    line-height: 1.6;
    padding: 0.625rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.privacy__dd {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  padding: 10px 4px;
  padding: 0.625rem 0.25rem;
}
@media screen and (min-width: 768px) {
  .privacy__dd {
    margin-left: 0.125rem;
    width: calc(100% - 7.125rem);
    padding: 0.625rem 1rem;
    border-bottom: 1px solid #F5F5F5;
  }
}

.privacy__dd a {
  text-decoration: underline;
}

.related-links {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .related-links {
    padding-top: 2.6875rem;
    padding-bottom: 5rem;
  }
}

.related-links__title {
  text-align: center;
  position: relative;
}

.related-links__title--en {
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .related-links__title--en {
    width: 60.4375rem;
  }
}

.related-links__title--en svg {
  width: 100%;
}

.related-links__title--ja {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #022A64;
  position: absolute;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .related-links__title--ja {
    margin-top: 0;
    font-size: 2rem;
  }
}

.related-links__inner {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .related-links__inner {
    margin-top: 4rem;
  }
}

.related-links__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .related-links__items {
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.related-links__item {
  width: calc(50% - 0.25rem);
}
@media screen and (min-width: 768px) {
  .related-links__item {
    width: calc(20% - 0.8rem);
  }
}

.related-links__item:nth-child(2n) {
  margin-left: 8px;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .related-links__item:nth-child(2n) {
    margin-left: 1rem;
  }
}

.related-links__item:nth-child(n+3) {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .related-links__item:nth-child(n+3) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .related-links__item:not(:first-child) {
    margin-left: 1rem;
  }
}

.related-links__item a {
  display: block;
}

.single {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .single {
    padding-top: 3.125rem;
  }
}

.single__inner {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .single__inner {
    padding-left: 0;
    padding-right: 0;
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 5rem;
  }
}

.single__box {
  background-color: #E2F2D5;
  padding: 24px;
  padding: 1.5rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.single__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single__date {
  color: #999;
  font-weight: 500;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Alumni Sans", serif;
}

.single__category {
  color: #fff;
  padding-left: 5px;
  padding-left: 0.3125rem;
  padding-right: 5px;
  padding-right: 0.3125rem;
  /*
  background-color: #70BC2E;
  */
  margin-left: 8px;
  margin-left: 0.5rem;
}

.single__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single__icon {
  width: 20px;
  width: 1.25rem;
}

.single__icon:not(:first-child) {
  margin-left: 6px;
  margin-left: 0.375rem;
}

.single__icon a {
  display: block;
}

.single__title {
  color: #111;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .single__title {
    font-size: 1.875rem;
  }
}

.single p {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}

/*
.single__box + p {
    margin-top: rem(30);
}
*/
.single figure + p {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.single h3 + p {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.single h4 + p {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.single h3 {
  background-color: #70BC2E;
  padding: 18px 16px;
  padding: 1.125rem 1rem;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0;
  color: #FCFEFF;
}

/*
.single p + h3 {
    margin-top: rem(50);
}
*/
.single figure + h3 {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.single p + h3 {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.single h4 {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  border-left: 3px solid #70BC2E;
}

.single figure + h4 {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.single p + h4 {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.single h3 + figure {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.single p + figure {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.single figure + figure {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.single__btn {
  display: block;
  margin-top: 32px;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #022A64;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  width: 190px;
  width: 11.875rem;
  height: 44px;
  height: 2.75rem;
  line-height: 44px;
  line-height: 2.75rem;
  text-align: center;
  padding-right: 20px;
  padding-right: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .single__btn {
    margin-top: 4rem;
    width: 14.625rem;
    height: 3.5rem;
    line-height: 3.5rem;
    font-size: 1rem;
  }
}

.single__btn::after {
  content: "";
  position: absolute;
  width: 7px;
  width: 0.4375rem;
  height: 12px;
  height: 0.75rem;
  background: url(../images/common/single-arrow.webp) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
}

.site-bnr {
  width: 97%;
  position: fixed;
  z-index: 100;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 29px;
  bottom: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .site-bnr {
    display: none !important;
  }
}

.site-bnr a {
  display: block;
}

.site-bnr-pc {
  display: none;
  width: 270px;
  width: 16.875rem;
  left: auto;
  right: 40px;
  right: 2.5rem;
  position: fixed;
  z-index: 100;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
  background-color: #fff;
  bottom: 121px;
  bottom: 7.5625rem;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .site-bnr-pc {
    display: block;
  }
}

.site-bnr-pc a {
  display: block;
  margin-top: 6px;
  margin-top: 0.375rem;
}

.site-bnr-pc__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-bnr-pc__icon {
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
}

.site-bnr-pc__text {
  margin-left: 6px;
  margin-left: 0.375rem;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  color: #06C654;
}

.site-bnr-pc__icon svg {
  width: 100%;
}

.site-bnr-pc__close {
  width: 65px;
  width: 4.0625rem;
  margin-left: auto;
  margin-top: 6px;
  margin-top: 0.375rem;
  cursor: pointer;
}

.social-impact {
  margin-top: 112px;
  margin-top: 7rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
}
@media screen and (min-width: 768px) {
  .social-impact {
    margin-top: 6.9375rem;
    padding-bottom: 6.75rem;
  }
}

.social-impact__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .social-impact__inner {
    padding-left: 0;
    padding-right: 0;
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.social-impact__head {
  text-align: center;
}
.social-impact__head span {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  padding-bottom: 11px;
  padding-bottom: 0.6875rem;
  border-bottom: 2px solid #022A64;
}
@media screen and (min-width: 768px) {
  .social-impact__head span {
    font-size: 2rem;
  }
}

.social-impact__items {
  /*
  margin-top: rem(110);
  */
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .social-impact__items {
    /*
    margin-top: rem(126);
    */
    margin-top: 3.5rem;
  }
}

.social-impact__item:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .social-impact__item:not(:first-child) {
    margin-top: 2rem;
  }
}

.social-impact__copy {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .social-impact__copy {
    margin-top: 5rem;
    text-align: center;
  }
}

.sociality-pdf {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 84px;
  padding-bottom: 5.25rem;
}
@media screen and (min-width: 768px) {
  .sociality-pdf {
    padding-top: 5rem;
    padding-bottom: 6.75rem;
  }
}

.sociality-pdf__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .sociality-pdf__inner {
    padding-left: 0;
    padding-right: 0;
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

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

.sociality-pdf__title span {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #022A64;
}
@media screen and (min-width: 768px) {
  .sociality-pdf__title span {
    font-size: 2rem;
  }
}

.sociality-pdf__copy {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sociality-pdf__copy {
    margin-top: 4rem;
  }
}

.sociality-pdf__pdf {
  margin-top: 20px;
  margin-top: 1.25rem;
  overflow-y: hidden;
}

.sociality-pdf__video {
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
  padding-top: 70.5882352941%;
}
@media screen and (min-width: 768px) {
  .sociality-pdf__video {
    margin-top: 2rem;
    padding-top: 56%;
  }
}

.sociality-pdf__video a {
  display: block;
}

.sociality-pdf__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sociality-solution {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .sociality-solution {
    padding-top: 5rem;
  }
}

.sociality-solution__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .sociality-solution__inner {
    padding-left: 0;
    padding-right: 0;
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.sociality-solution__head {
  color: #111;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sociality-solution__head {
    letter-spacing: 0;
    text-align: center;
  }
}

.sociality-solution__text {
  margin-top: 17px;
  margin-top: 1.0625rem;
  color: #111;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sociality-solution__text {
    margin-top: 2rem;
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0;
    text-align: center;
  }
}

.sociality-solution__copy {
  margin-top: 60px;
  margin-top: 3.75rem;
  font-weight: 900;
  color: #111;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sociality-solution__copy {
    letter-spacing: 0;
    text-align: center;
  }
}

.sociality-solution__box {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sociality-solution__box {
    margin-top: 2rem;
  }
}

.sociality-solution__copy01 {
  text-align: center;
  color: #111;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.sociality-solution__number {
  color: #111;
  font-weight: 900;
  font-size: 60px;
  font-size: 3.75rem;
  letter-spacing: 0.03em;
  text-align: center;
  font-family: "Alumni Sans", serif;
}
@media screen and (min-width: 768px) {
  .sociality-solution__number {
    text-align: center;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .sociality-solution__bnr {
    margin-top: 1.875rem;
  }
}

.sociality-solution__bnr a {
  display: block;
}

.sociality-solution__img {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .sociality-solution__img {
    margin-top: 1.875rem;
  }
}

.sociality-solution__name {
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}
.sociality-solution__copy02 {
  margin-top: 60px;
  margin-top: 3.75rem;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  color: #111;
}
@media screen and (min-width: 768px) {
  .sociality-solution__copy02 {
    margin-top: 5rem;
    text-align: center;
  }
}

.sociality-solution__youtube {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .sociality-solution__youtube {
    margin-top: 2.75rem;
  }
}

.sociality-solution__youtube-title {
  color: #111;
  font-weight: 900;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .sociality-solution__youtube-title {
    text-align: center;
    letter-spacing: 0;
  }
}

.sociality-solution__video {
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
  padding-top: 62%;
}
@media screen and (min-width: 768px) {
  .sociality-solution__video {
    margin-top: 2rem;
  }
}

.sociality-solution__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sociality-video {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .sociality-video {
    padding-top: 5rem;
  }
}

.sociality-video__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .sociality-video__inner {
    padding-left: 0;
    padding-right: 0;
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

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

.sociality-video__title span {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #022A64;
}
@media screen and (min-width: 768px) {
  .sociality-video__title span {
    font-size: 2rem;
  }
}

.sociality-video__items {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sociality-video__items {
    margin-top: 4rem;
  }
}

.sociality-video__item {
  position: relative;
  padding-top: 70.5882352941%;
}
@media screen and (min-width: 768px) {
  .sociality-video__item {
    margin-top: 4rem;
    padding-top: 56%;
  }
}

.sociality-video__item:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sociality-video__item:not(:first-child) {
    margin-top: 2rem;
  }
}

.sociality-video__item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sponsers {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  background-color: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .sponsers {
    padding-top: 2.6875rem;
    padding-bottom: 5rem;
  }
}

.sponsers__title {
  text-align: center;
  position: relative;
}

.sponsers__title--en {
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .sponsers__title--en {
    width: 83.375rem;
    max-width: 100%;
  }
}

.sponsers__title--en svg {
  width: 100%;
}

.sponsers__title-ja {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #022A64;
  position: absolute;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .sponsers__title-ja {
    margin-top: 0;
    font-size: 2rem;
  }
}

.sponsers__inner {
  margin-top: 19px;
  margin-top: 1.1875rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .sponsers__inner {
    padding-left: 0;
    padding-right: 0;
    margin-top: 4rem;
    width: 48.0625rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.sponsers__item:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sponsers__item:not(:first-child) {
    margin-top: 2rem;
  }
}

.sponsers__head {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .sponsers__head {
    font-size: 1.125rem;
  }
}

.sponsers__icons {
  margin-top: 10px;
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .sponsers__icons {
    margin-top: 0.875rem;
  }
}

.sponsers__icon {
  width: calc(33.33333% - 0.33333rem);
}
@media screen and (min-width: 768px) {
  .sponsers__icon {
    width: calc(33.33333% - 1rem);
  }
}

.sponsers__icon:not(:nth-child(3n+1)) {
  margin-left: 8px;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .sponsers__icon:not(:nth-child(3n+1)) {
    margin-left: 1.5rem;
  }
}

.sponsers__icon:nth-child(n+4) {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .sponsers__icon:nth-child(n+4) {
    margin-top: 1.5rem;
  }
}

.strategy-pdf {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .strategy-pdf {
    padding-top: 5rem;
  }
}

.strategy-pdf__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .strategy-pdf__inner {
    padding-left: 0;
    padding-right: 0;
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

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

.strategy-pdf__title span {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #022A64;
}
@media screen and (min-width: 768px) {
  .strategy-pdf__title span {
    font-size: 2rem;
  }
}

.strategy-pdf__copy {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .strategy-pdf__copy {
    margin-top: 4rem;
  }
}

.strategy-pdf__pdf {
  margin-top: 20px;
  margin-top: 1.25rem;
  overflow-x: hidden;
}

.strategy {
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .strategy {
    padding-top: 5rem;
  }
}

.strategy__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .strategy__inner {
    padding-left: 0;
    padding-right: 0;
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.strategy__title {
  text-align: center;
}
.strategy__title span {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #022A64;
}
@media screen and (min-width: 768px) {
  .strategy__title span {
    font-size: 2rem;
  }
}

.strategy__video {
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
  padding-top: 70.5882352941%;
}
@media screen and (min-width: 768px) {
  .strategy__video {
    margin-top: 4rem;
    padding-top: 56%;
  }
}

.strategy__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub-mv {
  background-color: #F5F5F5;
  padding-top: 135px;
  padding-top: 8.4375rem;
  padding-bottom: 36px;
  padding-bottom: 2.25rem;
}
@media screen and (min-width: 768px) {
  .sub-mv {
    padding-top: 6.375rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-mv--partner {
    padding-top: 8.3125rem;
    padding-bottom: 4.5625rem;
  }
}

.sub-mv--news {
  padding-top: 90px;
  padding-top: 5.625rem;
}

.sub-mv__title {
  text-align: center;
  position: relative;
}

.sub-mv__title--en {
  display: inline-block;
  width: 304px;
  width: 19rem;
}
@media screen and (min-width: 768px) {
  .sub-mv__title--en {
    width: 22.3125rem;
  }
}

.sub-mv__title--en-privacy {
  width: 314px;
  width: 19.625rem;
}
@media screen and (min-width: 768px) {
  .sub-mv__title--en-privacy {
    width: 22.3125rem;
  }
}

.sub-mv__title--en-news {
  width: 114px;
  width: 7.125rem;
}
@media screen and (min-width: 768px) {
  .sub-mv__title--en-news {
    width: 7.0625rem;
  }
}

.sub-mv__title--en-player {
  width: 323px;
  width: 20.1875rem;
}
@media screen and (min-width: 768px) {
  .sub-mv__title--en-player {
    width: 23.625rem;
  }
}

.sub-mv__title--en-player-detail {
  width: 146px;
  width: 9.125rem;
}
@media screen and (min-width: 768px) {
  .sub-mv__title--en-player-detail {
    width: 10.5rem;
  }
}

.sub-mv__title--en-partner {
  width: 204px;
  width: 12.75rem;
}
@media screen and (min-width: 768px) {
  .sub-mv__title--en-partner {
    width: 12.75rem;
  }
}

.sub-mv__title--en-strategy {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sub-mv__title--en-strategy {
    width: 29.625rem;
  }
}

.sub-mv__title--en-match {
  width: 133px;
  width: 8.3125rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .sub-mv__title--en-match {
    width: 9.5625rem;
  }
}

.sub-mv__title--en svg {
  width: 100%;
}

.sub-mv__title--ja {
  display: inline-block;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  color: #022A64;
  letter-spacing: 0.05em;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #022A64;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .sub-mv__title--ja {
    white-space: normal;
    white-space: initial;
    font-size: 2rem;
  }
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #111;
  color: #fff;
}

.to-top {
  width: 57px;
  width: 3.5625rem;
  position: fixed;
  bottom: 122px;
  bottom: 7.625rem;
  right: 20px;
  right: 1.25rem;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .to-top {
    right: 3.75rem;
    bottom: 3.75rem;
  }
}

.to-top a {
  display: block;
}

.top-about-us {
  background-color: #F5F5F5;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-about-us {
    padding-top: 2.75rem;
    padding-bottom: 3.5rem;
  }
}

.top-about-us__title {
  text-align: center;
  position: relative;
}

.top-about-us__title--en {
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .top-about-us__title--en {
    width: 39.125rem;
  }
}

.top-about-us__title--en svg {
  width: 100%;
}

.top-about-us__title--ja {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #022A64;
  position: absolute;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .top-about-us__title--ja {
    margin-top: 0;
    font-size: 2rem;
  }
}

.top-about-us__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .top-about-us__inner {
    padding-left: 0;
    padding-right: 0;
    width: 60.75rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-about-us__box {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-about-us__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4rem;
  }
}

.top-about-us__logo {
  width: 155px;
  width: 9.6875rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-about-us__logo {
    width: 21.875rem;
    margin-top: 0;
  }
}

.top-about-us__img {
  margin-top: 19px;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .top-about-us__img {
    margin-top: 0;
    margin-left: auto;
    width: 34.875rem;
    max-width: 100%;
  }
}

.top-about-us__dl {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-about-us__dl {
    margin-top: 4rem;
  }
}

.top-about-us__row {
  border-bottom: 1px dashed #CBCBCB;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .top-about-us__row {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.top-about-us__dt {
  font-weight: 500;
  color: #022A64;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-about-us__dt {
    width: 10.3125rem;
    font-size: 1rem;
  }
}

.top-about-us__dd {
  color: #111;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .top-about-us__dd {
    width: calc(100% - 10.3125rem);
    margin-top: 0;
    font-size: 1rem;
  }
}

.top-about-us__btn {
  display: block;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 263px;
  width: 16.4375rem;
  height: 44px;
  height: 2.75rem;
  line-height: 44px;
  line-height: 2.75rem;
  text-align: center;
  background-color: #022A64;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-about-us__btn {
    font-size: 1rem;
    width: 18.0625rem;
    height: 3.5rem;
    line-height: 3.5rem;
    margin-top: 4rem;
  }
}

.top-about-us__btn::after {
  content: "";
  position: absolute;
  width: 7px;
  width: 0.4375rem;
  height: 12px;
  height: 0.75rem;
  background: url(../images/common/btn.webp) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-about-us__btn::after {
    right: 1.25rem;
  }
}

.top-business {
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  background: url(../images/common/top-business-bg_sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .top-business {
    padding-top: 2.75rem;
    padding-bottom: 3.5rem;
    background: url(../images/common/top-business-bg_pc.webp) no-repeat center center/cover;
  }
}

.top-business__title {
  text-align: center;
  position: relative;
}

.top-business__title--en {
  width: 215px;
  width: 13.4375rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .top-business__title--en {
    width: 83.25rem;
    max-width: 100%;
  }
}

.top-business__title--en svg {
  width: 100%;
}

.top-business__title--ja {
  display: inline-block;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #fff;
  position: absolute;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  top: 43%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .top-business__title--ja {
    margin-top: 0;
    font-size: 2.75rem;
  }
}

.top-business__inner {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-business__inner {
    margin-top: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .top-business__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-business__copy {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-business__copy {
    font-size: 1.5rem;
    width: 31.25rem;
    max-width: 100%;
  }
}

.top-business__copy span {
  display: block;
}
@media screen and (min-width: 768px) {
  .top-business__copy span {
    font-size: 2rem;
  }
}

.top-business__img {
  margin-top: 15px;
  margin-top: 0.9375rem;
  margin-left: auto;
  margin-right: auto;
  width: 282px;
  width: 17.625rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .top-business__img {
    margin-top: 0;
    width: 41.1875rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.top-business__btn {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-business__btn {
    margin-top: 4rem;
  }
}

.top-competition {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 40px;
  padding-top: 2.5rem;
  background: url(../images/common/top-competition-bg_sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .top-competition {
    display: none;
    padding-top: 2.8125rem;
    padding-bottom: 3.5rem;
    background: url(../images/common/top-competition-bg_pc.webp) no-repeat center center/cover;
  }
}

@media screen and (min-width: 768px) {
  .top-competition__inner {
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-competition__title {
  text-align: center;
  position: relative;
}

.top-competition__title--en {
  width: 286px;
  width: 17.875rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .top-competition__title--en {
    width: 53.625rem;
  }
}

.top-competition__title--en svg {
  width: 100%;
}

.top-competition__title--ja {
  display: inline-block;
  color: #70BC2E;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #70BC2E;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .top-competition__title--ja {
    margin-top: 0;
    font-size: 2rem;
  }
}

.top-competition__img {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-competition__img {
    margin-top: 4rem;
  }
}

.top-competition__head {
  margin-top: 15px;
  margin-top: 0.9375rem;
  text-align: center;
  color: #111;
  font-weight: 900;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-competition__head {
    margin-top: 2.75rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.top-competition__copy {
  margin-top: 15px;
  margin-top: 0.9375rem;
  color: #111;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  width: 340px;
  width: 21.25rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .top-competition__copy {
    margin-top: 1rem;
    font-size: 1rem;
    width: auto;
    width: initial;
  }
}

.top-competition__btn {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-competition__btn {
    margin-top: 4rem;
  }
}

.top-content {
  padding-top: 56px;
  padding-top: 3.5rem;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
  display: none;
  background: url(../images/common/top-content-bg.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .top-content {
    display: block;
  }
}

.top-content__inner {
  width: 1200px;
  width: 75rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.top-content__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-content__item {
  cursor: pointer;
  height: 699px;
  height: 43.6875rem;
  padding: 20px 0;
  padding: 1.25rem 0;
  width: calc(33.33333% - 1rem);
  background: url(../images/common/top-content-item-bg.webp) no-repeat center center/cover;
  /*
  transition: opacity .3s ease 0s;
  */
}

/*
.top-content__item:hover {
    opacity: 0.7;
}
*/
.top-content__item:not(:first-child) {
  margin-left: 24px;
  margin-left: 1.5rem;
}

.top-content__title--02 {
  width: 360px;
  width: 22.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.top-content__title--03 {
  width: 360px;
  width: 22.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.top-content__img {
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 360px;
  width: 22.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.top-content__body {
  height: calc(100% - 16.5625rem);
  position: relative;
}

.top-content__head {
  font-weight: 900;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.6666666667;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.top-content__modal {
  position: absolute;
  top: -30px;
  top: -1.875rem;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: opacity 0.6s ease 0s, visibility 0.6s ease 0s;
          transform: opacity 0.6s ease 0s, visibility 0.6s ease 0s;
}

/*
.top-content__modal.is-show {
    opacity: 1;
    visibility: visible;
}
*/
.top-content__modal--01 {
  top: -109px;
  top: -6.8125rem;
  padding-top: 75px;
  padding-top: 4.6875rem;
  height: 509px;
  height: 31.8125rem;
}

.js-top-content01:hover .top-content__modal--01 {
  opacity: 1;
  visibility: visible;
}

.top-content__modal--02 {
  top: -135px;
  top: -8.4375rem;
  padding-top: 33px;
  padding-top: 2.0625rem;
  height: 541px;
  height: 33.8125rem;
}

.js-top-content02:hover .top-content__modal--02 {
  opacity: 1;
  visibility: visible;
}

.top-content__modal--03 {
  top: -104px;
  top: -6.5rem;
  padding-top: 27px;
  padding-top: 1.6875rem;
  height: 506px;
  height: 31.625rem;
}

.js-top-content03:hover .top-content__modal--03 {
  opacity: 1;
  visibility: visible;
}

.top-content__modal::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 132px;
  height: 8.25rem;
  background: url(../images/common/top-content-modal-bg.webp) no-repeat center center/cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.top-content__head01 {
  font-weight: 900;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.6666666667;
}

.top-content__modal-box {
  margin-top: 15px;
  margin-top: 0.9375rem;
  background-color: #18212E;
  height: calc(100% - 4.6875rem);
  padding-left: 12px;
  padding-left: 0.75rem;
  padding-right: 12px;
  padding-right: 0.75rem;
}

.top-content__explain {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
}

.top-content__link {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  margin-top: 0.9375rem;
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  background-color: #fff;
  height: 56px;
  height: 3.5rem;
  line-height: 56px;
  line-height: 3.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  color: #022A64;
  letter-spacing: 0.05em;
  position: relative;
}

.top-content__link--03 {
  margin-top: 64px;
  margin-top: 4rem;
}

.top-content__link::after {
  content: "";
  position: absolute;
  width: 7px;
  width: 0.4375rem;
  height: 12px;
  height: 0.75rem;
  background: url(../images/common/top-content-link-arrow.webp) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
}

.top-entertainment {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  background: url(../images/common/top-entertainment-bg_sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .top-entertainment {
    background: url(../images/common/top-entertainment-bg_pc.webp) no-repeat center center/cover;
    padding-top: 2.8125rem;
    padding-bottom: 3.5rem;
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .top-entertainment__inner {
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-entertainment__title {
  text-align: center;
  position: relative;
}

.top-entertainment__title--en {
  width: 345px;
  width: 21.5625rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .top-entertainment__title--en {
    width: 64.625rem;
  }
}

.top-entertainment__title--en svg {
  width: 100%;
}

.top-entertainment__title--ja {
  display: inline-block;
  color: #70BC2E;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #70BC2E;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .top-entertainment__title--ja {
    margin-top: 0;
    font-size: 2rem;
  }
}

.top-entertainment__img {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-entertainment__img {
    margin-top: 4rem;
  }
}

.top-entertainment__head {
  margin-top: 15px;
  margin-top: 0.9375rem;
  color: #111;
  font-weight: 900;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-entertainment__head {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    margin-top: 2.75rem;
    font-size: 1.25rem;
    line-height: 1.5;
    width: 32.4375rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-entertainment__copy {
  margin-top: 15px;
  margin-top: 0.9375rem;
  color: #111;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  width: 340px;
  width: 21.25rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .top-entertainment__copy {
    margin-top: 1rem;
    font-size: 1rem;
    width: auto;
    width: initial;
  }
}

.top-entertainment__btn {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-entertainment__btn {
    margin-top: 4rem;
  }
}

.top-news-block {
  padding: 10px;
  padding: 0.625rem;
  background-color: #18212E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .top-news-block {
    display: block;
  }
}

.top-news-block__img {
  width: 100px;
  width: 6.25rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-news-block__img {
    width: 100%;
  }
}

.top-news-block__img a {
  display: block;
}

.top-news-block__img img {
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.top-news-block__img:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.top-news-block__body {
  margin-left: 10px;
  margin-left: 0.625rem;
  width: calc(100% - 6.875rem);
}
@media screen and (min-width: 768px) {
  .top-news-block__body {
    margin-left: 0;
    width: 100%;
    margin-top: 0.9375rem;
  }
}

.top-news-block__published {
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: #A6A6A6;
}
@media screen and (min-width: 768px) {
  .top-news-block__published {
    font-size: 0.875rem;
  }
}

.top-news-block__title {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.top-news-block__title a {
  display: block;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-news-block__title a {
    font-size: 0.9375rem;
  }
}

.top-news-block__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .top-news-block__categories {
    margin-top: 1.4375rem;
  }
}

.top-news-block__category {
  display: inline-block;
  margin-right: 6px;
  margin-right: 0.375rem;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}
@media screen and (min-width: 768px) {
  .top-news-block__category {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

.top-news-block__category a {
  display: block;
  background-color: #070D16;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  color: #AEA658;
  padding-left: 4px;
  padding-left: 0.25rem;
  padding-right: 4px;
  padding-right: 0.25rem;
}
@media screen and (min-width: 768px) {
  .top-news-block__category a {
    font-size: 0.875rem;
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }
}

.top-news {
  background: url(../images/common/top-news-bg_sp.webp) no-repeat center center/cover;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 32px;
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .top-news {
    padding-top: 2.8125rem;
    padding-bottom: 5rem;
    background: url(../images/common/top-news-bg_pc.webp) no-repeat center center/cover;
  }
}

.top-news__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .top-news__inner {
    padding-left: 0;
    padding-right: 0;
    width: 87rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-news__title {
  text-align: center;
  position: relative;
}

.top-news__title--en {
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .top-news__title--en {
    width: 54.3125rem;
  }
}

.top-news__title--en svg {
  width: 100%;
}

.top-news__title--ja {
  display: inline-block;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 41%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .top-news__title--ja {
    margin-top: 0;
    font-size: 2rem;
  }
}

.top-news__items {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-news__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .top-news__item {
    width: calc(33.33333% - 0.83333rem);
  }
}

.top-news__item:not(:first-child) {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .top-news__item:not(:first-child) {
    margin-top: 0;
    margin-left: 1.25rem;
  }
}

.top-news__btn {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-news__btn {
    margin-top: 4rem;
  }
}

.top-official-goods {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .top-official-goods {
    padding-top: 2.8125rem;
    padding-bottom: 5rem;
  }
}

.top-official-goods__title {
  text-align: center;
  position: relative;
}

.top-official-goods__title--en {
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .top-official-goods__title--en {
    width: 64.8125rem;
  }
}

.top-official-goods__title--en svg {
  width: 100%;
}

.top-official-goods__title--ja {
  display: inline-block;
  color: #022A64;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #022A64;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  top: 41%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .top-official-goods__title--ja {
    margin-top: 0;
    font-size: 2rem;
  }
}

.top-official-goods__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .top-official-goods__inner {
    padding-left: 0;
    padding-right: 0;
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-official-goods__img {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-official-goods__img {
    margin-top: 4rem;
  }
}

.top-official-goods__items {
  margin-top: 10px;
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .top-official-goods__items {
    margin-top: 2.75rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-official-goods__item {
  width: 166px;
  width: 10.375rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .top-official-goods__item {
    width: 15.25rem;
  }
}

.top-official-goods__item:not(:first-child) {
  margin-left: 8px;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .top-official-goods__item:not(:first-child) {
    margin-left: 1.5rem;
  }
}

.top-official-goods__item a {
  display: block;
}

.top-official-goods__item p {
  margin-top: 5px;
  margin-top: 0.3125rem;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .top-official-goods__item p {
    margin-top: 0.4375rem;
    font-size: 0.875rem;
  }
}

.top-official-sns {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  background: url(../images/common/top-official-sns-bg_sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .top-official-sns {
    padding-top: 2.8125rem;
    padding-bottom: 4.875rem;
    background: url(../images/common/top-official-sns-bg_pc.webp) no-repeat center center/cover;
  }
}

.top-official-sns__title {
  text-align: center;
  position: relative;
}

.top-official-sns__title--en {
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .top-official-sns__title--en {
    width: 54.1875rem;
  }
}

.top-official-sns__title--en svg {
  width: 100%;
}

.top-official-sns__title--ja {
  display: inline-block;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #fff;
  position: absolute;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  top: 41%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .top-official-sns__title--ja {
    margin-top: 0;
    font-size: 2rem;
  }
}

.top-official-sns__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .top-official-sns__inner {
    padding-left: 0;
    padding-right: 0;
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-official-sns__line {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-official-sns__line {
    margin-top: 4rem;
  }
}

.top-official-sns__line a {
  display: block;
}

.top-official-sns__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-official-sns__item {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .top-official-sns__item {
    width: 33.3333333333%;
  }
}

@media screen and (min-width: 768px) {
  .top-official-sns__item img {
    height: 100%;
  }
}

.top-schedule-block {
  -webkit-box-shadow: 0 0 0.75rem rgba(2, 42, 100, .3);
          box-shadow: 0 0 0.75rem rgba(2, 42, 100, .3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  background-color: #fff;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
}

.top-schedule-block__date {
  font-family: "Alumni Sans", serif;
  background-color: #030810;
  color: #fff;
  font-weight: 900;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  padding-left: 11px;
  padding-left: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .top-schedule-block__date {
    font-size: 2.1875rem;
    letter-spacing: 0.05em;
  }
}

.top-schedule-block__date .f25 {
  font-family: "Alumni Sans", serif;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-schedule-block__date .f25 {
    font-size: 1.5625rem;
  }
}

.top-schedule-block__date .f20 {
  font-family: "Alumni Sans", serif;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .top-schedule-block__date .f20 {
    font-size: 1.25rem;
    margin-left: 0.375rem;
  }
}

.top-schedule-block__box {
  background-color: #fff;
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .top-schedule-block__box {
    padding-top: 0.8125rem;
    padding-bottom: 0.625rem;
  }
}

.top-schedule-block__box.is-active {
  /*
  background-color: #022A64;
  */
}

.top-schedule-block__time {
  width: 54px;
  width: 3.375rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .top-schedule-block__time {
    width: 4.375rem;
  }
}

.top-schedule-block__body {
  margin-top: 15px;
  margin-top: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .top-schedule-block__body {
    margin-top: 0.8125rem;
  }
}

.top-schedule-block__item {
  text-align: center;
}

.top-schedule-block__item img {
  /*
  width: rem(61);
  */
  height: 63px;
  height: 3.9375rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .top-schedule-block__item img {
    height: 5.875rem;
  }
}

.top-schedule-block__item h3 {
  font-weight: 700;
  font-size: 10px;
  font-size: 0.625rem;
  color: #022A64;
}
@media screen and (min-width: 768px) {
  .top-schedule-block__item h3 {
    font-size: 0.8125rem;
  }
}

.top-schedule-block__vs {
  font-family: "Alumni Sans", serif;
  font-weight: 900;
  color: #022A64;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0, 5em;
  margin-left: 0;
  margin-right: 0;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .top-schedule-block__vs {
    font-size: 2.25rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    margin-top: 1.6875rem;
  }
}

.top-schedule-block__link {
  background-color: #022A64;
  display: block;
  height: 44px;
  height: 2.75rem;
  line-height: 44px;
  line-height: 2.75rem;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  width: calc(100% - 0.5rem);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-schedule-block__link {
    font-size: 1.125rem;
    height: 3.5rem;
    line-height: 3.5rem;
  }
}

.top-schedule-block__link::after {
  content: "";
  position: absolute;
  width: 7px;
  width: 0.4375rem;
  height: 12px;
  height: 0.75rem;
  background: url(../images/common/btn.webp) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .top-schedule-block__link::after {
    right: 8.3125rem;
  }
}

.top-schedule {
  padding-top: 37px;
  padding-top: 2.3125rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-schedule {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
    display: none;
  }
}

.top-schedule__inner {
  padding-left: 25px;
  padding-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .top-schedule__inner {
    width: 90rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }
}

.top-schedule .swiper-horizontal {
  overflow-x: hidden;
}

.top-schedule__btn {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  position: relative;
}
.top-schedule .swiper-slide {
  height: auto;
}

.top-schedule-swiper-scrollbar {
  background-color: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .top-schedule-swiper-scrollbar {
    display: none;
  }
}

.top-schedule .swiper-scrollbar-drag {
  height: 4px;
  height: 0.25rem;
  background-color: #70BC2E;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.top-schedule01 {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: none;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .top-schedule01 {
    display: block;
  }
}

.top-schedule01__inner {
  width: 1392px;
  width: 87rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.top-schedule01__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-schedule01__item {
  width: calc(33.3333% - 1rem);
}

.top-schedule01__item:not(:first-child) {
  margin-left: 24px;
  margin-left: 1.5rem;
}

.top-schedule01__item a {
  display: block;
}

.top-schedule01__btn {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.top-social-impact {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  background: url(../images/common/top-social-impact-bg_sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .top-social-impact {
    display: none;
    padding-top: 2.8125rem;
    padding-bottom: 3.5rem;
    background: url(../images/common/top-social-impact-bg_pc.webp) no-repeat center center/cover;
  }
}

@media screen and (min-width: 768px) {
  .top-social-impact__inner {
    width: 62.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-social-impact__title {
  text-align: center;
  position: relative;
}

.top-social-impact__title--en {
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .top-social-impact__title--en {
    width: 61.8125rem;
  }
}

.top-social-impact__title--en svg {
  width: 100%;
}

.top-social-impact__title--ja {
  display: inline-block;
  color: #70BC2E;
  font-weight: 900;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #70BC2E;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  position: absolute;
  top: 43%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .top-social-impact__title--ja {
    margin-top: 0;
    font-size: 2rem;
  }
}

.top-social-impact__img {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-social-impact__img {
    margin-top: 4rem;
  }
}

.top-social-impact__meta {
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .top-social-impact__meta {
    padding-left: 0;
    padding-right: 0;
    margin-top: 2.75rem;
  }
}

.top-social-impact__head {
  font-weight: 900;
  color: #111;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-social-impact__head {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.top-social-impact__text {
  margin-top: 12px;
  margin-top: 0.75rem;
  color: #111;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  width: 340px;
  width: 21.25rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .top-social-impact__text {
    margin-top: 1rem;
    font-size: 1rem;
    width: auto;
    width: initial;
  }
}

.top-social-impact__btn {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-social-impact__btn {
    margin-top: 4rem;
  }
}

.top-staff {
  background-color: #F5F5F5;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 32px;
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .top-staff {
    padding-top: 2.8125rem;
    padding-bottom: 5rem;
  }
}

.top-staff__inner {
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-staff__inner {
    padding-left: 0;
    padding-right: 0;
    width: 87.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-staff__title {
  text-align: center;
  position: relative;
}

.top-staff__title--en {
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .top-staff__title--en {
    width: 58.0625rem;
  }
}

.top-staff__title--en svg {
  width: 100%;
}

.top-staff__title--ja {
  display: inline-block;
  color: #111;
  font-weight: 900;
  font-size: 19px;
  font-size: 1.1875rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #111;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .top-staff__title--ja {
    font-size: 2rem;
    margin-top: 0;
  }
}

.top-staff__img {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-staff__img {
    margin-top: 4rem;
  }
}

.top-staff__btn {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-staff__btn {
    margin-top: 4rem;
  }
}

.top-team-goals {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  background: url(../images/common/top-team-goals-bg_sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .top-team-goals {
    padding-top: 3.5625rem;
    padding-bottom: 4.3125rem;
    background: url(../images/common/top-team-goals-bg_pc.webp) no-repeat center center/cover;
  }
}

.top-team-goals__title {
  text-align: center;
  position: relative;
}

.team-goals__title--en {
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .team-goals__title--en {
    width: 49.375rem;
  }
}

.team-goals__title--en svg {
  width: 100%;
}

.top-team-goals__title--ja {
  display: inline-block;
  color: #fff;
  font-weight: 900;
  font-size: 19px;
  font-size: 1.1875rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .top-team-goals__title--ja {
    margin-top: 0;
    font-size: 2rem;
  }
}

.top-team-goals__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*
  justify-content: center;
  */
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-team-goals__box {
    margin-top: 4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-team-goals__img {
  width: 666px;
  width: 41.625rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .top-team-goals__img {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .top-team-goals__items {
    margin-top: 4rem;
    width: 23.3125rem;
    margin-left: 2.75rem;
    margin-top: 0;
  }
}

.top-team-goals__item:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-team-goals__item:not(:first-child) {
    margin-top: 1.6875rem;
  }
}

.top-team-goals__head {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0;
  padding-left: 25px;
  padding-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .top-team-goals__head {
    font-size: 1.375rem;
    padding-left: 0;
  }
}

.top-team-goals__head span {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .top-team-goals__head span {
    font-size: 1.375rem;
  }
}

.top-team-goals__item img {
  height: 44px;
  height: 2.75rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
@media screen and (min-width: 768px) {
  .top-team-goals__item img {
    height: 3.6875rem;
  }
}
/*# sourceMappingURL=styles.css.map */
