@charset "UTF-8";
/* ブレイクポイントと連動している container の幅になる。 */
/* containerにデフォルトで入っているpaddingを設定 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100vw;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

button {
  background: none; /* 背景色をクリア */
  color: inherit; /* 親要素から色を継承 */
  border: none; /* 境界線を除去 */
  padding: 0; /* 内部余白をクリア */
  margin: 0; /* 外部余白をクリア */
  font: inherit; /* 親要素からフォントスタイルを継承 */
  cursor: pointer; /* カーソルをポインターに設定 */
  outline: inherit; /* アウトラインを親要素から継承 */
  -webkit-appearance: none; /* Webkitブラウザ用のデフォルトスタイルを無効化 */
  -moz-appearance: none; /* Firefox用のデフォルトスタイルを無効化 */
  appearance: none; /* 他のブラウザ用のデフォルトスタイルを無効化 */
}

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

.l-wrapper {
  overflow-x: hidden;
  width: 100vw;
}

.l-container {
  padding-left: 28px;
  padding-right: 28px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .l-container {
    padding-left: 11px;
    padding-right: 11px;
  }
}

.l-container--pd-md {
  padding-left: 42px;
  padding-right: 42px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .l-container--pd-md {
    padding-left: 21px;
    padding-right: 21px;
  }
}

.u-show-sm {
  display: none !important;
}

.u-hide-sm {
  display: block !important;
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 768px) {
  .u-show-sm {
    display: block !important;
  }
  .u-hide-sm {
    display: none !important;
  }
}
.u-relative {
  position: relative;
}

* {
  scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/
  -ms-overflow-style: none; /*Internet Explore対応のスクロールバー非表示コード*/
}

*::-webkit-scrollbar {
  display: none; /*Google Chrome、Safari、Microsoft Edge対応のスクロールバー非表示コード*/
}

html {
  font-size: 62.5%;
}

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

@font-face {
  font-family: "TTNorms-pro-Bold";
  src: url("./fonts/TTNorms-Bold.otf") format("opentype");
}
body {
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: #191A1A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  font-variant-ligatures: no-common-ligatures;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.jp-fonts-main, body {
  font-family: "zen-kaku-gothic-new", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  font-style: normal;
}

::selection {
  background: #2389D3; /* WebKit/Blink Browsers */
  color: #fff;
}

::-moz-selection {
  background: #2389D3; /* Gecko Browsers */
  color: #fff;
}

.t-paragraph-m {
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .t-paragraph-m {
    font-size: 12px;
    line-height: 160%;
  }
}

.t-midashi-m {
  font-size: calc(22px / 2 + 22 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.02em;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .t-midashi-m {
    font-size: 16px;
  }
}

.t-red {
  color: #FF290C;
}

img {
  width: 100%;
}

body {
  overflow-x: hidden;
}

.c-header {
  border-bottom: 1px solid #191A1A;
  padding-left: 28px;
  padding-right: 28px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-header {
    padding-left: 11px;
    padding-right: 11px;
  }
}
.c-header .c-header__logo {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 22px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-header .c-header__logo {
    width: 66.6666vw;
    padding-top: 18px;
    padding-bottom: 4px;
    max-width: 320px;
  }
}
.c-header .c-header__logo img {
  width: 100%;
}
.c-header .c-header__content {
  display: flex;
  height: 72px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-header .c-header__content {
    height: auto;
    padding-bottom: 13px;
  }
}
.c-header .c-header__overview {
  display: flex;
  flex: 0 0 50%;
  padding-top: 12px;
  border-right: 1px solid #191A1A;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-header .c-header__overview {
    flex-direction: column;
    border-right: none;
    padding-top: 0;
  }
}
.c-header .c-header__year {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  margin-right: 15px;
  font-weight: 700;
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-header .c-header__year {
    margin-right: 0;
    margin-bottom: 0;
    font-size: 15px;
  }
}
.c-header .c-headerDate__bar {
  display: block;
  margin-top: calc(15px + 1.171875vw);
  margin-left: calc(-13px - 1.015625vw);
  margin-right: 8px;
  height: 3px;
  width: 3.2vw;
  background-color: #191A1A;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-header .c-headerDate__bar {
    width: 30px;
    height: 2px;
    margin-top: 24px;
    margin-right: 4px;
    margin-left: -22px;
  }
}
.c-header .c-headerDate {
  display: flex;
}
.c-header .c-headerDate__date {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  display: flex;
  align-items: flex-start;
}
.c-header .c-headerDate__date .c-headerDate__date-num {
  font-size: calc(38px / 2 + 38 / 2 * 100vw / 1280);
  font-weight: 600;
  line-height: 100%; /* 38px */
  letter-spacing: 0;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-header .c-headerDate__date .c-headerDate__date-num {
    font-size: 30px;
  }
}
.c-header .c-headerDate__date .c-headerDate__date-day {
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-header .c-headerDate__date .c-headerDate__date-day {
    font-size: 10px;
  }
}
.c-header .c-headerDate__date-day {
  font-size: calc(12px / 2 + 12 / 2 * 100vw / 1280);
  font-weight: 700;
  margin-left: 1px;
}
.c-header .c-header__location {
  display: flex;
  margin-left: 35px;
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  line-height: 1.3;
  font-weight: 700;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-header .c-header__location {
    font-size: 12px;
    line-height: 125%;
    margin-left: 0;
    margin-top: 3px;
  }
}

.c-header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  padding-left: 60px;
  margin-top: -12px;
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  font-weight: 700;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-header__menu {
    padding-left: 10px;
    align-items: flex-end;
  }
}
.c-header__menu .c-header__menu-list {
  display: flex;
}
.c-header__menu .c-header__menu-list .c-header__menu-item {
  margin-right: 45px;
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
}
.c-header__menu .c-header__menu-list .c-header__menu-item:hover {
  color: #2389D3;
}
.c-header__menu .c-header__entry-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 55px;
  background-color: #191A1A;
  color: #fff;
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-header__menu .c-header__entry-link {
    width: 100%;
    height: 60px;
    font-size: 13px;
  }
}
.c-header__menu .c-header__entry-link:hover {
  background-color: #2389D3;
}

.c-headerMenu .c-headerMenu__button {
  position: fixed;
  z-index: 10;
  top: 10px;
  right: 10px;
  background-color: #191A1A;
  height: 54px;
  width: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-headerMenu .c-headerMenu__button span {
  width: 18px;
  height: 2px;
  background-color: #fff;
}
.c-headerMenu .c-headerMenu__button span:not(:last-child) {
  margin-bottom: 4px;
}
.c-headerMenu .c-headerMenu__button.open span:nth-child(1) {
  transform: translate(1px, 6px) rotate(45deg);
}
.c-headerMenu .c-headerMenu__button.open span:nth-child(2) {
  opacity: 0;
}
.c-headerMenu .c-headerMenu__button.open span:nth-child(3) {
  transform: translate(1px, -6px) rotate(-45deg);
}

@keyframes fade-in {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
.c-headerMenu__content {
  display: none;
  position: fixed;
  z-index: 9;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background-color: #191A1A;
  color: #fff;
  animation-duration: 0.3s;
  transition-duration: 0.3s;
}
.c-headerMenu__content.open {
  display: block;
  animation: fade-in 0.3s ease-in-out 1 both;
}
.c-headerMenu__content .c-headerMenu__content-inner {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.c-headerMenu__content .c-headerMenu__content-inner .c-headerMenu__content-top {
  padding-top: 10px;
}
.c-headerMenu__content .c-headerMenu__content-inner .c-headerMenu__content-bottom {
  padding-bottom: 20px;
  text-align: center;
}
.c-headerMenu__content .c-headerMenu__content-inner .c-headerMenu__label {
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.7;
}
.c-headerMenu__content .c-headerMenu__content-inner .c-headerMenu__list {
  margin-top: 60px;
  width: 100%;
  flex: 1 1 100px;
}
.c-headerMenu__content .c-headerMenu__content-inner .c-headerMenu__list .c-headerMenu__item a {
  display: block;
  padding: 12px 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 100%;
  color: #fff;
}
.c-headerMenu__content .c-headerMenu__content-inner .c-headerMenu__entry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  background-color: #fff;
  color: #191A1A;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
}
.c-headerMenu__content .c-headerMenu__content-inner .c-headerMenu__howto {
  display: block;
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  padding: 10px;
}
.c-headerMenu__content .c-headerMenu__content-inner .c-headerMenu__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.c-headerMenu__content .c-headerMenu__content-inner .c-headerMenu__sns .c-headerMenu__sns-item {
  padding: 10px;
}
.c-headerMenu__content .c-headerMenu__content-inner .c-headerMenu__sns .c-headerMenu__sns-item img {
  width: 100%;
  vertical-align: baseline;
}
.c-headerMenu__content .c-headerMenu__content-inner .c-headerMenu__sns .c-headerMenu__sns-item .yt {
  width: 28px;
  margin-right: 10px;
}
.c-headerMenu__content .c-headerMenu__content-inner .c-headerMenu__sns .c-headerMenu__sns-item .ig {
  width: 25px;
  margin-right: 11px;
}
.c-headerMenu__content .c-headerMenu__content-inner .c-headerMenu__sns .c-headerMenu__sns-item .fb {
  width: 26px;
}

.c-headerSub {
  border-bottom: 1px solid #191A1A;
  padding-left: 28px;
  padding-right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-headerSub {
    display: block;
    padding-left: 11px;
    padding-right: 11px;
    height: auto;
  }
}
.c-headerSub .c-headerSub__left {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-headerSub .c-headerSub__left {
    display: block;
    padding-top: 13px;
    padding-bottom: 30px;
  }
}
.c-headerSub .c-headerSub__right {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.c-headerSub .c-headerSub__logo {
  width: 300px;
  width: calc(300px / 2 + 300 / 2 * 100vw / 1280);
  margin-right: 30px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-headerSub .c-headerSub__logo {
    width: calc(100vw - 90px);
  }
}
.c-headerSub .c-headerSub__logo img {
  width: 100%;
  vertical-align: baseline;
}
.c-headerSub .c-headerSub__content {
  display: flex;
  height: 72px;
}
.c-headerSub .c-headerSub__overview {
  display: flex;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-headerSub .c-headerSub__overview {
    display: block;
  }
}
.c-headerSub .c-headerSub__year {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  margin-right: 12px;
  font-weight: 700;
  font-size: calc(12px / 2 + 12 / 2 * 100vw / 1280);
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-headerSub .c-headerSub__year {
    font-size: 13px;
    margin-bottom: 1px;
  }
}
.c-headerSub .c-headerSubDate__bar {
  display: block;
  margin-top: calc(9.5px + 0.7421875vw);
  margin-left: calc(-13px - 1.015625vw);
  margin-right: 8px;
  height: 2px;
  width: 3.2vw;
  background-color: #191A1A;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-headerSub .c-headerSubDate__bar {
    width: 34px;
    height: 2px;
    margin-right: 3px;
    margin-top: 17px;
    margin-left: -22px;
  }
}
.c-headerSub .c-headerSubDate {
  display: flex;
}
.c-headerSub .c-headerSubDate__date {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  display: flex;
  align-items: flex-start;
}
.c-headerSub .c-headerSubDate__date .c-headerSubDate__date-num {
  font-size: calc(24px / 2 + 24 / 2 * 100vw / 1280);
  font-weight: 600;
  line-height: 100%; /* 38px */
  letter-spacing: 0;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-headerSub .c-headerSubDate__date .c-headerSubDate__date-num {
    font-size: 22px;
  }
}
.c-headerSub .c-headerSubDate__date-day {
  font-size: calc(12px / 2 + 12 / 2 * 100vw / 1280);
  font-weight: 700;
  margin-left: 1px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-headerSub .c-headerSubDate__date-day {
    font-size: 10px;
  }
}
.c-headerSub .c-headerSub__location {
  display: flex;
  margin-left: 35px;
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  line-height: 1.3;
  font-weight: 700;
}

.c-headerSub__menu {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  font-weight: 700;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-headerSub__menu {
    display: none;
  }
}
.c-headerSub__menu .c-headerSub__menu-list {
  display: flex;
}
.c-headerSub__menu .c-headerSub__menu-list .c-headerSub__menu-item {
  margin-right: 45px;
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  transition-duration: 0.3s;
}
.c-headerSub__menu .c-headerSub__menu-list .c-headerSub__menu-item:hover {
  color: #2389D3;
}
.c-headerSub__menu .c-headerSub__menu-list .c-headerSub__menu-item.is-current {
  position: relative;
}
.c-headerSub__menu .c-headerSub__menu-list .c-headerSub__menu-item.is-current:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #191A1A;
}
.c-headerSub__menu .c-headerSub__entry-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 55px;
  background-color: #191A1A;
  color: #fff;
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  transition-duration: 0.3s;
}
.c-headerSub__menu .c-headerSub__entry-link:hover {
  background-color: #2389D3;
}

.c-subPageMainVisual {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-subPageMainVisual {
    height: 66.666vw;
  }
}

.c-subPageMainVisual__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 560px;
  object-fit: cover;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-subPageMainVisual__image {
    left: 50%;
    margin-left: -50%;
    height: 80vw;
  }
}

.c-pageTitle {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-pageTitle__text {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  font-size: calc(50px / 2 + 50 / 2 * 100vw / 1280);
  font-weight: 600;
  text-align: center;
}

.c-footer {
  width: 100vw;
  background-image: url(../images/footer-visual.jpg);
  background-size: cover;
  background-position: center center;
  color: #fff;
  background-color: #000;
}

.c-footer__grid-container {
  display: grid;
  grid-template-columns: repeat(4, 25%);
  padding-top: 42px;
  padding-bottom: 22px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__grid-container {
    grid-template-columns: repeat(2, 50%);
    padding-bottom: 18px;
  }
}
.c-footer__grid-container .c-footer__contact {
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__grid-container .c-footer__contact {
    grid-column: 1/span 2;
  }
}
.c-footer__grid-container .c-footer__social {
  grid-column: 2/span 2;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__grid-container .c-footer__social {
    grid-column: 1/span 1;
  }
}
.c-footer__grid-container .c-footer__nav {
  grid-column: 4/span 1;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__grid-container .c-footer__nav {
    grid-column: 2/span 1;
  }
}
.c-footer__grid-container .c-footer__info {
  grid-column: 1/span 4;
}
.c-footer__grid-container .c-footer__copyright {
  grid-column: 1/span 1;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__grid-container .c-footer__copyright {
    grid-column: 1/span 1;
  }
}
.c-footer__grid-container .c-footer__smallLinks {
  grid-column: 4/span 1;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__grid-container .c-footer__smallLinks {
    grid-column: 2/span 1;
  }
}

.c-footer__title {
  font-size: calc(12px / 2 + 12 / 2 * 100vw / 1280);
  font-weight: 600;
  margin-bottom: 16px;
  color: #BBB;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__title {
    font-size: 11px;
    margin-bottom: 13px;
  }
}

.c-footer__contact {
  margin-bottom: 44px;
}
.c-footer__contact .c-footer__contact-tel {
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  font-weight: 600;
  display: flex;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.c-footer__contact .c-footer__contact-tel:hover {
  color: #2389D3;
}
@media screen and (max-width: 768px) {
  .c-footer__contact .c-footer__contact-tel {
    font-size: 16px;
  }
}
.c-footer__contact .c-footer__contact-tel .c-footer__contact-tel__icon {
  width: 18px;
  width: calc(18px / 2 + 18 / 2 * 100vw / 1280);
  margin-left: 1.2em;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.c-footer__contact .c-footer__contact-tel .c-footer__contact-tel__icon img {
  aspect-ratio: 1/1;
}
.c-footer__contact .c-footer__contact-tel .c-footer__contact-tel__icon svg .b {
  stroke: #fff;
}
@media screen and (max-width: 768px) {
  .c-footer__contact .c-footer__contact-tel .c-footer__contact-tel__icon {
    width: 18px;
  }
}

.c-footer__social-list {
  display: flex;
  align-items: center;
}
.c-footer__social-list .c-footer__social-item {
  margin-right: 40px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__social-list .c-footer__social-item {
    margin-right: 27px;
  }
}
.c-footer__social-list .c-footer__social-item.yt {
  width: 26px;
  width: calc(26px / 2 + 26 / 2 * 100vw / 1280);
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__social-list .c-footer__social-item.yt {
    width: 26px;
  }
}
.c-footer__social-list .c-footer__social-item.ig {
  width: 23px;
  width: calc(23px / 2 + 23 / 2 * 100vw / 1280);
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__social-list .c-footer__social-item.ig {
    width: 23px;
  }
}
.c-footer__social-list .c-footer__social-item.fb {
  width: 24px;
  width: calc(24px / 2 + 24 / 2 * 100vw / 1280);
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__social-list .c-footer__social-item.fb {
    width: 24px;
  }
}
.c-footer__social-list .c-footer__social-item:last-of-type {
  margin-right: 0;
}
.c-footer__social-list .c-footer__social-item a:hover {
  opacity: 0.7;
}
.c-footer__social-list .c-footer__social-item a img {
  width: 100%;
}

.c-footer__nav {
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__nav {
    margin-top: 0;
  }
}
.c-footer__nav .c-footer__nav-list {
  margin-top: -0.5em;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__nav .c-footer__nav-list {
    margin-top: -0.3em;
  }
}
.c-footer__nav .c-footer__nav-list .c-footer__nav-item {
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__nav .c-footer__nav-list .c-footer__nav-item {
    font-size: 13px;
    line-height: 240%;
  }
}
.c-footer__nav .c-footer__nav-list .c-footer__nav-item:hover {
  color: #2389D3;
}
.c-footer__nav .c-footer__nav-item--entry {
  padding-top: 14px;
}

.c-footer__info {
  margin-top: 72px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__info {
    margin-top: 96px;
  }
}
.c-footer__info .c-footer__info__desc {
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  font-weight: 700;
  line-height: 150%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.c-footer__info .c-footer__info__desc .en {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .c-footer__info .c-footer__info__desc {
    font-size: 12px;
  }
}
.c-footer__info .c-footer__info__logo {
  margin-top: 32px;
  width: 100%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__info .c-footer__info__logo {
    margin-top: 24px;
    width: 260px;
  }
}
.c-footer__info .c-footer__info__entry {
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__info .c-footer__info__entry {
    margin-top: 24px;
  }
}

.c-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__bottom {
    padding-top: 36px;
  }
}

.c-footer__copyright {
  padding-top: 18px;
  font-size: calc(10px / 2 + 10 / 2 * 100vw / 1280);
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  color: #D3D6D8;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__copyright {
    font-size: 10px;
    padding-top: 32px;
  }
}

.c-footer__smallLinks {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-footer__smallLinks {
    display: block;
    padding-top: 32px;
  }
}
.c-footer__smallLinks .c-footer__smallLink {
  font-size: calc(10px / 2 + 10 / 2 * 100vw / 1280);
  color: #D3D6D8;
  font-weight: 700;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.c-footer__smallLinks .c-footer__smallLink:not(:last-of-type) {
  margin-right: 2em;
}
.c-footer__smallLinks .c-footer__smallLink:hover {
  color: #fff;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .c-footer__smallLinks .c-footer__smallLink {
    font-size: 10px;
    margin-bottom: 1.2em;
  }
}

.c-sponsors {
  background-color: #D3D6D8;
}
.c-sponsors .c-sponsors__flex-container {
  display: flex;
  align-items: flex-start;
  padding-top: 48px;
  padding-bottom: 48px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-sponsors .c-sponsors__flex-container {
    display: block;
    padding-top: 32px;
    padding-bottom: 36px;
  }
}
.c-sponsors .c-sponsors__flex-container .c-sponsors__title {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  flex: 0 0 25%;
  font-size: calc(20px / 2 + 20 / 2 * 100vw / 1280);
  font-weight: 600;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-sponsors .c-sponsors__flex-container .c-sponsors__title {
    font-size: 14px;
    margin-bottom: 36px;
    text-align: center;
  }
}
.c-sponsors .c-sponsors__flex-container .c-sponsors__content {
  flex: 0 0 75%;
}
.c-sponsors .c-sponsors__suporters {
  display: flex;
  margin-left: 25%;
  padding-top: 24px;
  padding-bottom: 18px;
  border-top: 1px solid #AAA;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-sponsors .c-sponsors__suporters {
    display: block;
    margin-left: 0;
    padding-top: 30px;
    padding-bottom: 36px;
  }
}
.c-sponsors .c-sponsors__suporters .c-sponsors__suporters-title {
  flex: 0 0 33.333%;
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  font-size: calc(13px / 2 + 13 / 2 * 100vw / 1280);
  font-weight: 600;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-sponsors .c-sponsors__suporters .c-sponsors__suporters-title {
    font-size: 11px;
    margin-bottom: 12px;
  }
}
.c-sponsors .c-sponsors__suporters .c-sponsors__suporters-list {
  flex: 0 0 calc(66.6666% + 12px);
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
}
.c-sponsors .c-sponsors__suporters .c-sponsors__suporters-list .c-sponsors__suporters-item {
  font-size: 11px;
  color: #626262;
  margin-left: 12px;
  margin-bottom: 6px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-sponsors .c-sponsors__suporters .c-sponsors__suporters-list .c-sponsors__suporters-item {
    font-size: 10px;
    margin-bottom: 2px;
  }
}

.c-sectionTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-sectionTitle .c-sectionTitle-en {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 120%; /* 60px */
  font-size: calc(50px / 2 + 50 / 2 * 100vw / 1280);
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-sectionTitle .c-sectionTitle-en {
    font-size: 32px;
  }
}
.c-sectionTitle .c-sectionTitle-ja {
  margin-top: 11px;
  font-size: calc(16px / 2 + 16 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-sectionTitle .c-sectionTitle-ja {
    font-size: 11px;
    margin-top: 5px;
  }
}

.c-ticker {
  display: flex;
  overflow: hidden;
  width: 100vw;
}

.c-ticker__container {
  position: relative;
  width: 100vw;
  height: 46vh;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-ticker__container {
    height: 240px;
  }
}
.c-ticker__container .c-ticker__top {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  animation: ticker-slow 120s infinite linear 1s both;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-ticker__container .c-ticker__top {
    animation-duration: 30s;
  }
}
.c-ticker__container .c-ticker__top img, .c-ticker__container .c-ticker__top source, .c-ticker__container .c-ticker__top picture {
  flex: 0 0 2400px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-ticker__container .c-ticker__top img, .c-ticker__container .c-ticker__top source, .c-ticker__container .c-ticker__top picture {
    flex-basis: 1600px;
  }
}
.c-ticker__container .c-ticker__text {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 104px;
  display: flex;
  animation: ticker-slow 45s infinite linear 1s both;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-ticker__container .c-ticker__text {
    margin-top: 88px;
    animation-duration: 22s;
  }
}
.c-ticker__container .c-ticker__text img {
  flex: 0 0 1200px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-ticker__container .c-ticker__text img {
    flex-basis: 800px;
  }
}
.c-ticker__container .c-ticker__base {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  animation: ticker-slow 120s infinite linear 1s both;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-ticker__container .c-ticker__base {
    animation-duration: 30s;
  }
}
.c-ticker__container .c-ticker__base img, .c-ticker__container .c-ticker__base source, .c-ticker__container .c-ticker__base picture {
  flex: 0 0 2400px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-ticker__container .c-ticker__base img, .c-ticker__container .c-ticker__base source, .c-ticker__container .c-ticker__base picture {
    flex-basis: 1600px;
  }
}

@keyframes ticker-slow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.c-specTitle__en {
  font-weight: 700;
}

.c-button-md {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  position: relative;
  background-color: #191A1A;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 24px;
  height: 70px;
  width: 100%;
  color: #fff;
  font-size: calc(16px / 2 + 16 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-button-md {
    font-size: 12px;
    height: 64px;
  }
}
.c-button-md .icon {
  position: absolute;
  top: 27px;
  right: 20px;
  transition-duration: 0.4s;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-button-md .icon {
    width: 19px;
    top: 25px;
  }
}
.c-button-md:hover {
  background-color: #2389D3;
}
.c-button-md:hover .icon {
  transform: rotate(315deg);
  transition-timing-function: ease-out;
}
.c-button-md:hover .icon > img {
  transform: translate(15px, 0) rotateX(360deg);
  transition-delay: 0.3s;
  transition-duration: 0.5s;
}

.c-button-small {
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 45px;
  border: 1px solid #191A1A;
  padding-left: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.c-button-small:hover {
  background-color: #D3D6D8;
}
.c-button-small .c-button-small__icon {
  position: absolute;
  top: 13px;
  right: 15px;
  display: block;
  width: 15px;
}
.c-button-small .c-button-small__icon img {
  width: 100%;
}

.topNews {
  padding-top: 22px;
  display: flex;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topNews {
    display: block;
    padding-top: 12px;
  }
}
.topNews .topNews__title {
  flex: 0 0 25vw;
  height: 38px;
  padding-left: 12px;
  display: flex;
  align-items: center;
  background-color: #191A1A;
  color: #fff;
  font-weight: 500;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topNews .topNews__title {
    font-size: 13px;
    height: 26px;
    padding-left: 8px;
  }
}
.topNews .topNews__body {
  margin-left: 32px;
  margin-top: -6px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topNews .topNews__body {
    padding: 8px;
    margin-left: 0;
    margin-top: 0;
    font-size: 11px;
  }
}

.topVisual {
  margin-top: 28px;
  position: relative;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topVisual {
    margin-top: 12px;
  }
}
.topVisual img, .topVisual source, .topVisual picture {
  width: 100%;
  aspect-ratio: 611/268;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topVisual img, .topVisual source, .topVisual picture {
    aspect-ratio: 1/1;
  }
}

.topSponsors {
  display: flex;
  align-items: center;
  margin-top: 28px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topSponsors {
    margin-top: 36px;
    flex-direction: column;
    align-items: center;
  }
}
.topSponsors .topSponsors__title {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  font-weight: 600;
  flex: 0 0 20%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topSponsors .topSponsors__title {
    font-size: 12px;
  }
}
.topSponsors .topSponsors__body {
  flex: 0 0 80%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topSponsors .topSponsors__body {
    margin-top: 20px;
    width: 80vw;
  }
}
.topSponsors .topSponsors__body img {
  width: 100%;
}

.topStatement {
  margin-top: 175px;
  padding-left: 50%;
  font-size: calc(22px / 2 + 22 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 44px */
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topStatement {
    margin-top: 100px;
    padding-left: 10px;
    padding-left: 15vw;
    font-size: 14px;
    line-height: 185%;
  }
}
.topStatement p {
  margin-top: 28px;
  width: 100%;
  overflow: hidden;
}
.topStatement p span {
  white-space: nowrap;
}

.c-js-statementAnimation-child.js-animated {
  animation: textWidthAnimation 1s ease-out both;
  animation-timing-function: cubic-bezier(0.33, 0.2, 0.35, 1);
}

.c-js-statementAnimation-child {
  opacity: 1;
}

.c-js-statementAnimation-child--copied {
  opacity: 0;
  color: #191A1A;
  overflow: hidden;
}

.c-js-statementAnimation-child {
  display: block;
}
.c-js-statementAnimation-child > span {
  display: block;
}

@keyframes textWidthAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.topImage1 {
  position: relative;
  width: 33.3333vw;
  margin-top: -20vw;
  aspect-ratio: 3/4;
  overflow: hidden;
  transition-duration: 2s;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topImage1 {
    margin-top: 100px;
    width: 60vw;
  }
}
.topImage1 .inner {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.topImage1 img, .topImage1 source, .topImage1 picture {
  width: 100%;
}
.topImage1.js-inviewAnimation-target.js-inviewAnimation-fire {
  opacity: 1 !important;
}

.topImage2 {
  position: relative;
  z-index: 1;
  width: 40vw;
  margin-top: -6.25vw;
  margin-left: 50vw;
  aspect-ratio: 16/9;
  overflow: hidden;
  transition-duration: 1s;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topImage2 {
    margin-top: 75px;
    width: 75vw;
    margin-left: 25vw;
  }
}
.topImage2 .inner {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.topImage2 img, .topImage2 source, .topImage2 picture {
  width: 100%;
}
.topImage2.js-inviewAnimation-target.js-inviewAnimation-fire {
  opacity: 1 !important;
}

.topSchedule {
  position: relative;
  padding-top: 220px;
  padding-bottom: 320px;
  margin-top: -100px;
  background: linear-gradient(180deg, #2389D3 0%, #0062DE 69.18%);
  color: #fff;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topSchedule {
    margin-top: -21vw;
    padding-top: 150px;
    padding-bottom: 200px;
  }
}

.topSchedule__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 120px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topSchedule__list {
    grid-template-columns: 1fr 1fr;
    gap: 32px 10px;
    margin-top: 72px;
  }
}
.topSchedule__list .topSchedule__list-item .topSchedule__list-item__visual {
  vertical-align: bottom;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.topSchedule__list .topSchedule__list-item .topSchedule__list-item__text {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  padding: 13px 16px 15px;
  background-color: #D3D6D8;
  color: #191A1A;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topSchedule__list .topSchedule__list-item .topSchedule__list-item__text {
    padding: 12px;
  }
}
.topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__text__top {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__text__bottom {
  margin-top: 32px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__text__bottom {
    margin-top: 24px;
  }
}
.topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__date {
  font-size: calc(26px / 2 + 26 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__date {
    font-size: 18px;
  }
}
.topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__day {
  margin-top: 3px;
  font-size: calc(11px / 2 + 11 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  opacity: 0.7;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__day {
    font-size: 10px;
  }
}
.topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__icon {
  width: 14px;
  height: 14px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__icon img {
  width: 100%;
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  .topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__icon {
    width: 12px;
    height: 12px;
  }
}
.topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__title {
  font-size: calc(30px / 2 + 30 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__title {
    font-size: 20px;
  }
}
.topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__location {
  margin-top: 3px;
  font-size: calc(12px / 2 + 12 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  font-family: "zen-kaku-gothic-new", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  opacity: 0.7;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topSchedule__list .topSchedule__list-item .topSchedule__list-item__text .topSchedule__list-item__location {
    font-size: 11px;
  }
}

.topSchedule__note {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  text-align: center;
  color: #fff;
  font-size: calc(18px / 2 + 18 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topSchedule__note {
    margin-top: 45px;
    font-size: 14px;
  }
}

.topSchedule__button {
  position: relative;
  z-index: 1;
  margin: 32px auto 0;
  width: 25vw;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topSchedule__button {
    margin-top: 30px;
    width: 60vw;
    font-size: 12px;
  }
}

.topDecorationCircle {
  position: absolute;
  z-index: 0;
  left: -860px;
  width: 1100px;
  bottom: -250px;
  animation: infinitive-rotation 45s infinite linear 1s both;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topDecorationCircle {
    width: 550px;
    left: -400px;
    bottom: -60px;
    animation-duration: 75s;
  }
}
.topDecorationCircle img {
  width: 100%;
}

.topEntry {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100% 100%;
  margin-top: -120px;
  height: 33vw;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topEntry {
    display: block;
    height: auto;
    margin-top: -100px;
  }
}
.topEntry .topEntry__left {
  background-color: #191A1A;
  color: #fff;
  padding-left: 52px;
  padding-right: 24px;
  padding-top: 45px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transition-duration: 0.3s;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topEntry .topEntry__left {
    padding: 15px 23px 21px;
    aspect-ratio: 4/3;
  }
}
.topEntry .topEntry__right {
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.topEntry .topEntry__right img, .topEntry .topEntry__right source, .topEntry .topEntry__right picture {
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  .topEntry .topEntry__right {
    aspect-ratio: 4/3;
  }
}
.topEntry .topEntry__visual-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.topEntry .topEntry__visual-container .topEntry__button {
  z-index: 2;
  position: absolute;
  width: 45%;
  right: 40px;
  bottom: 54px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topEntry .topEntry__visual-container .topEntry__button {
    width: 60%;
    right: 18px;
    bottom: 18px;
  }
}
.topEntry .topEntry__visual-container .topEntry__circle {
  position: absolute;
  bottom: -32px;
  right: -58px;
  z-index: 1;
  width: 250px;
  height: 250px;
  transition-duration: 0.3s;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topEntry .topEntry__visual-container .topEntry__circle {
    width: 180px;
    height: 180px;
    bottom: -44px;
    right: -52px;
  }
}
.topEntry .topEntry__visual-container .topEntry__circle .topEntry__circle-inner {
  transition-duration: 0.3s;
}
.topEntry .topEntry__visual-container .topEntry__circle .topEntry__circle-inner > svg {
  position: relative;
  animation: infinitive-rotation 45s infinite linear 1s both;
}
.topEntry .topEntry__visual-container .topEntry__circle .topEntry__circle-inner > svg path {
  fill: #191A1A;
}
@keyframes infinitive-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.topEntry .topEntry__visual-container .topEntry__circle .topEntry__circle__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.topEntry .topEntry__visual-container .topEntry__circle .topEntry__circle__arrow .topEntry__circle__arrow-inner {
  transition-duration: 0.4s;
}
.topEntry .topEntry__visual-container .topEntry__circle .topEntry__circle__arrow .topEntry__circle__arrow-inner > svg {
  position: relative;
  width: 32px;
  height: 24px;
}
.topEntry .topEntry__visual-container .topEntry__visual {
  position: relative;
  height: 100%;
  overflow: hidden;
  filter: saturate(0);
  transition-duration: 0.3s;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topEntry .topEntry__visual-container .topEntry__visual {
    aspect-ratio: 4/3;
    filter: saturate(1);
  }
}
.topEntry .topEntry__visual-container .topEntry__visual .topEntry__visual-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition-duration: 1.2s;
}
.topEntry .topEntry__visual-container .topEntry__visual img, .topEntry .topEntry__visual-container .topEntry__visual source, .topEntry .topEntry__visual-container .topEntry__visual picture {
  width: 100%;
}
.topEntry .topEntry__title {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  font-size: calc(50px / 2 + 50 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  transition-duration: 0.3s;
}
.topEntry .topEntry__body {
  margin-top: 40px;
  transition-duration: 0.3s;
}
.topEntry .topEntry__body h3 {
  font-size: calc(16px / 2 + 16 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topEntry .topEntry__body h3 {
    font-size: 13px;
  }
}
.topEntry .topEntry__body .topEntry__body-list {
  margin-top: 28px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topEntry .topEntry__body .topEntry__body-list {
    margin-top: 12px;
  }
}
.topEntry .topEntry__body .topEntry__body-list-item {
  margin-top: 10px;
  display: flex;
  font-size: calc(16px / 2 + 16 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topEntry .topEntry__body .topEntry__body-list-item {
    display: block;
    font-size: 13px;
    margin-top: 5px;
  }
}
.topEntry .topEntry__body .topEntry__body-list-item .left {
  margin-right: 10px;
  width: 80px;
  width: calc(80px / 2 + 80 / 2 * 100vw / 1280);
}
@media screen and (max-width: 768px) {
  .topEntry .topEntry__body .topEntry__body-list-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .topEntry .topEntry__body .topEntry__body-list-item .left {
    width: auto;
    margin-right: 0;
    margin-bottom: 1px;
    width: 100%px;
    width: calc(100%px / 2 + 100% / 2 * 100vw / 1280);
    font-weight: 600;
  }
}
@media (hover: hover) {
  .topEntry:hover .topEntry__left {
    background-color: #000;
    padding-left: 64px;
  }
  .topEntry:hover .topEntry__title {
    color: #2389D3;
  }
  .topEntry:hover .topEntry__body {
    color: #2389D3;
  }
  .topEntry:hover .topEntry__visual {
    filter: saturate(1);
  }
  .topEntry:hover .topEntry__visual .topEntry__visual-inner {
    transform: scale(1.06);
    transition-timing-function: ease-out;
  }
  .topEntry:hover .topEntry__circle {
    transform: scale(1.15);
  }
  .topEntry:hover .topEntry__circle .topEntry__circle-inner {
    transform-origin: center center;
  }
  .topEntry:hover .topEntry__circle .topEntry__circle-inner > svg path {
    fill: #2389D3;
    transition-duration: 0.3s;
    stroke: #2389D3;
  }
  .topEntry:hover .topEntry__circle__arrow .topEntry__circle__arrow-inner {
    transform: rotate(315deg);
    transition-timing-function: ease-out;
  }
  .topEntry:hover .topEntry__circle__arrow .topEntry__circle__arrow-inner > svg {
    transform: translate(15px, 0) rotateX(360deg);
    transition-delay: 0.3s;
    transition-duration: 0.5s;
  }
}
@keyframes circle-hover-scale {
  0% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  25% {
    transform: scale(1.1);
    animation-timing-function: ease-in;
  }
  50% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  75% {
    transform: scale(0.9);
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}

.topTicker {
  margin-top: 180px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .topTicker {
    margin-top: 100px;
  }
}

.aboutStatement {
  border-bottom: 1px solid #191A1A;
}

.aboutStatement__content {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 320px;
  padding-top: 32px;
  padding-bottom: 45px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutStatement__content {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.aboutStatement__content .aboutStatement__text {
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutStatement__content .aboutStatement__text {
    margin-top: 15px;
  }
}

.aboutScoring {
  padding-top: 70px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoring {
    padding-top: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.aboutScoring__header {
  padding-bottom: 45px;
  border-bottom: 1px solid #191A1A;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoring__header {
    border-bottom-width: 0px;
    padding-bottom: 80px;
  }
}

.aboutScoring__p {
  margin-top: 86px;
  font-size: calc(20px / 2 + 20 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoring__p {
    font-size: 14px;
    margin-top: 48px;
  }
}

.aboutScoring__content {
  border-bottom: 1px solid #191A1A;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoring__content {
    border-bottom-width: 0px;
  }
}

.aboutScoreBlocks {
  display: grid;
  grid-template-columns: 50% 50%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoreBlocks {
    display: block;
  }
}

.aboutScoreBlocks__block {
  padding: 26px 26px 80px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.aboutScoreBlocks__block:not(:nth-of-type(1)) {
  border-left: 1px solid #191A1A;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoreBlocks__block:not(:nth-of-type(1)) {
    border-width: 0px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .aboutScoreBlocks__block {
    padding: 0 10px 0;
  }
}

.aboutScoreBlocks__block__title {
  display: flex;
  align-items: flex-start;
}
.aboutScoreBlocks__block__title .aboutScoreBlocks__block__title-index {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #191A1A;
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  color: #fff;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoreBlocks__block__title .aboutScoreBlocks__block__title-index {
    font-size: 11px;
    width: 36px;
    height: 36px;
  }
}
.aboutScoreBlocks__block__title .aboutScoreBlocks__block__title-text {
  margin-left: 22px;
  padding-top: 7px;
  font-size: calc(24px / 2 + 24 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoreBlocks__block__title .aboutScoreBlocks__block__title-text {
    font-size: 16px;
  }
}

.aboutScoreBlocks__block__p {
  padding-left: 70px;
  margin-top: 31px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoreBlocks__block__p {
    padding-left: 60px;
    margin-top: 9px;
  }
}

.aboutScoreBlocks__block__graph {
  max-width: 720px;
  padding-left: 36px;
  padding-right: 36px;
  margin-top: 60px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoreBlocks__block__graph {
    margin-top: 36px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.aboutScoreBlocks__block__judgeEvent {
  padding-left: 16px;
  padding-right: 16px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoreBlocks__block__judgeEvent {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.aboutScoreBlocks__block__judgeEvent .aboutScoreBlocks__block__judgeEvent__image {
  margin-top: 100px;
  height: 240px;
  object-fit: cover;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoreBlocks__block__judgeEvent .aboutScoreBlocks__block__judgeEvent__image {
    margin-top: 40px;
    height: 200px;
  }
}
.aboutScoreBlocks__block__judgeEvent .aboutScoreBlocks__block__judgeEvent__title {
  margin-top: 30px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoreBlocks__block__judgeEvent .aboutScoreBlocks__block__judgeEvent__title {
    margin-top: 18px;
    font-size: 15px;
  }
}
.aboutScoreBlocks__block__judgeEvent .aboutScoreBlocks__block__judgeEvent__text {
  margin-top: 16px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutScoreBlocks__block__judgeEvent .aboutScoreBlocks__block__judgeEvent__text {
    margin-top: 10px;
  }
}

.aboutImagin {
  position: relative;
  margin-top: 200px;
  padding-bottom: 200px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutImagin {
    margin-top: 120px;
    padding-bottom: 100px;
  }
}
.aboutImagin .aboutImagin__title {
  z-index: 1;
  position: absolute;
  top: 88px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutImagin .aboutImagin__title {
    font-size: 15px;
    top: 60px;
  }
}
.aboutImagin .aboutImagin__visual {
  height: 56.25vw;
  overflow: hidden;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutImagin .aboutImagin__visual {
    height: 100vw;
  }
}
.aboutImagin .aboutImagin__visual img {
  width: 100%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutImagin .aboutImagin__visual img {
    height: 130%;
    object-fit: cover;
  }
}

.aboutTeam {
  border-top: 1px solid #191A1A;
}

.aboutTeam__title {
  padding-top: 100px;
  padding-bottom: 120px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutTeam__title {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.aboutTeam__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-top: 1px solid #191A1A;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutTeam__list {
    flex-wrap: wrap;
  }
}
.aboutTeam__list .aboutTeam__item {
  flex: 1 0 25%;
  border-right: 1px solid #191A1A;
  border-left: 1px solid #191A1A;
  border-bottom: 1px solid #191A1A;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.aboutTeam__list .aboutTeam__item:not(:last-child) {
  margin-right: -1px;
}
@media screen and (max-width: 768px) {
  .aboutTeam__list .aboutTeam__item {
    flex: 1 0 50%;
    border-left-width: 0px;
    border-right-width: 0px;
    margin-right: 0;
  }
  .aboutTeam__list .aboutTeam__item:nth-child(2n) {
    border-left-width: 1px;
  }
  .aboutTeam__list .aboutTeam__item:nth-child(2n-1) {
    border-right-width: 1px;
    margin-right: -1px;
  }
}

.aboutMember__text {
  position: relative;
  padding-top: 28px;
  padding-left: 28px;
  padding-right: 28px;
  min-height: 20vw;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutMember__text {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 8px;
  }
}

.aboutMember__visual {
  aspect-ratio: 1/1;
}
.aboutMember__visual img {
  width: 100%;
}

.aboutMember__name {
  font-size: calc(22px / 2 + 22 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutMember__name {
    font-size: 16px;
  }
}
.aboutMember__name .aboutMember__name-en {
  color: #2389D3;
  font-size: calc(12px / 2 + 12 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  display: block;
  margin-bottom: 6px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutMember__name .aboutMember__name-en {
    font-size: 10px;
  }
}

.aboutMember__home {
  padding-bottom: 0.5em;
  display: inline-block;
}

.aboutMember__desc {
  margin-top: 8em;
  font-size: calc(13px / 2 + 13 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutMember__desc {
    font-size: 10px;
    margin-top: 5em;
  }
}
.aboutMember__desc.open {
  -webkit-line-clamp: unset;
}

.aboutMember__open {
  font-size: calc(12px / 2 + 12 / 2 * 100vw / 1280);
  margin-top: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  padding-bottom: 25px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.aboutMember__open img {
  width: 11px;
  margin-left: 6px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutMember__open img {
    width: 10px;
  }
}
.aboutMember__open:hover .label {
  color: #2389D3;
}
@media screen and (max-width: 768px) {
  .aboutMember__open {
    padding-bottom: 15px;
    font-size: 10px;
  }
}

.aboutTree {
  padding-bottom: 180px;
}
.aboutTree .aboutTree__header {
  padding-top: 120px;
  padding-bottom: 100px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutTree .aboutTree__header {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.aboutTree .aboutTree__block1 {
  display: flex;
  align-items: flex-start;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutTree .aboutTree__block1 {
    display: block;
  }
}
.aboutTree .aboutTree__block1 .aboutTreeVisual {
  flex: 0 0 50vw;
  aspect-ratio: 4/5;
  overflow: hidden;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.aboutTree .aboutTree__block1 .aboutTreeVisual img {
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .aboutTree .aboutTree__block1 .aboutTreeVisual {
    width: 66.6666vw;
  }
}
.aboutTree .aboutTree__block1 .aboutTree__block1__text {
  padding-left: 16vw;
  padding-right: 48px;
  padding-top: 180px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutTree .aboutTree__block1 .aboutTree__block1__text {
    padding-top: 60px;
    padding-left: 13.333vw;
    padding-right: 13.333vw;
  }
}
.aboutTree .aboutTree__block1 .aboutTree__block1__text .aboutTree__title1 {
  font-size: calc(24px / 2 + 24 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutTree .aboutTree__block1 .aboutTree__block1__text .aboutTree__title1 {
    font-size: 16px;
  }
}
.aboutTree .aboutTree__block1 .aboutTree__block1__text .aboutTree__p1 {
  margin-top: 57px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutTree .aboutTree__block1 .aboutTree__block1__text .aboutTree__p1 {
    margin-top: 40px;
  }
}
.aboutTree .aboutTree__title2 {
  margin-top: 160px;
  padding-left: 110px;
  font-size: calc(24px / 2 + 24 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutTree .aboutTree__title2 {
    margin-top: 80px;
    padding-left: 13.333vw;
    padding-right: 8vw;
  }
}
.aboutTree .aboutTree__p2 {
  margin-left: 50vw;
  padding-right: 17vw;
  margin-top: 80px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .aboutTree .aboutTree__p2 {
    margin-left: 0;
    margin-top: 40px;
    padding-left: 13.333vw;
    padding-right: 13.333vw;
  }
}

.infoGeneral {
  padding-bottom: 100px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoGeneral {
    padding-bottom: 60px;
  }
}

.infoGeneral__header {
  padding-top: 45px;
  padding-bottom: 50px;
  border-bottom: 1px solid #191A1A;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoGeneral__header {
    padding-top: 21px;
    padding-bottom: 24px;
  }
}

.infoGeneral__content {
  display: grid;
  grid-template-columns: 50% 50%;
  padding-top: 44px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoGeneral__content {
    display: block;
    padding-top: 16px;
  }
}
.infoGeneral__content .infoGeneral__right {
  margin-top: -24px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoGeneral__content .infoGeneral__right {
    margin-top: 54px;
  }
}

.infoGeneral__table {
  width: 100%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoGeneral__table {
    display: block;
  }
}

.c-infoRow {
  display: flex;
  padding-top: 24px;
  padding-bottom: 24px;
  text-align: left;
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  border-bottom: 1px solid #ccc;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-infoRow {
    font-size: 12px;
    display: block;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.c-infoRow .c-infoRow__title {
  flex-basis: 140px;
  flex-basis: calc(140px / 2 + 140 / 2 * 100vw / 1280);
  flex-shrink: 0;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-infoRow .c-infoRow__title {
    flex-basis: 120px;
    font-weight: 600;
  }
}
.c-infoRow .c-infoRow__content {
  flex: 1 0 100px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.c-infoRow .c-infoRow__content > a {
  color: #888980;
  text-decoration: underline;
}
.c-infoRow .c-infoRow__content > a:hover {
  color: #2389D3;
}
@media screen and (max-width: 768px) {
  .c-infoRow .c-infoRow__content {
    margin-top: 12px;
  }
}
.c-infoRow .c-infoRow__content .c-infoRow__content__note {
  margin-top: 6px;
  color: #828282;
  font-size: calc(13px / 2 + 13 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-infoRow .c-infoRow__content .c-infoRow__content__note {
    margin-top: 4px;
    font-size: 10px;
  }
}

.c-infoRowNested .c-infoRowNested__item {
  display: flex;
  margin-bottom: 8px;
}
.c-infoRowNested .c-infoRowNested__item .c-infoRowNested__item__head {
  flex: 0 0 160px;
  flex-basis: 160px;
  flex-basis: calc(160px / 2 + 160 / 2 * 100vw / 1280);
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-infoRowNested .c-infoRowNested__item .c-infoRowNested__item__head {
    flex-basis: 120px;
  }
}
.c-infoRowNested .c-infoRowNested__item .c-infoRowNested__item__body {
  flex: 1 1 100%;
}
.c-infoRowNested .c-infoRowNested__item .c-infoRowNested__item__entryLink {
  margin-top: 26px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-infoRowNested .c-infoRowNested__item .c-infoRowNested__item__entryLink {
    margin-top: 18px;
  }
}

.infoEnglish__button {
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: calc(14px / 2 + 14 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  color: #2389D3;
  transition-duration: 0.3s;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoEnglish__button {
    font-size: 12px;
  }
}
.infoEnglish__button .icon {
  width: 13px;
  width: calc(13px / 2 + 13 / 2 * 100vw / 1280);
  margin-right: 20px;
  margin-left: 20px;
  transition-duration: 0.3s;
}
.infoEnglish__button .icon img {
  width: 100%;
}
.infoEnglish__button:hover {
  cursor: pointer;
  color: #191A1A;
  background-color: #D3D6D8;
}
.infoEnglish__button:hover .icon {
  transform: translateY(6px);
}
.infoEnglish__button.is-open .icon {
  transform: rotate(180deg);
}

.infoEnglish__container {
  max-height: 0;
  overflow: hidden;
  transition-duration: 0.5s;
  border-bottom: 1px solid #ccc;
}
.infoEnglish__container .infoEnglish__content {
  opacity: 0;
  transition-duration: 1s;
  padding-bottom: 24px;
}
.infoEnglish__container.is-open {
  max-height: 1000px;
}
.infoEnglish__container.is-open .infoEnglish__content {
  opacity: 1;
}

.c-EnglishTableRow {
  display: flex;
  padding-top: 16px;
  padding-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  text-align: left;
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-EnglishTableRow {
    display: block;
    font-size: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.c-EnglishTableRow .c-EnglishTableRow__title {
  flex-basis: 140px;
  flex-basis: calc(140px / 2 + 140 / 2 * 100vw / 1280);
  flex-shrink: 0;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-EnglishTableRow .c-EnglishTableRow__title {
    flex-basis: 140px;
    font-weight: 600;
  }
}
.c-EnglishTableRow .c-EnglishTableRow__content {
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-EnglishTableRow .c-EnglishTableRow__content {
    margin-top: 12px;
    padding-left: 2em;
  }
}
.c-EnglishTableRow .c-EnglishTableRow__content .c-EnglishTableRow__content__note {
  margin-top: 6px;
  color: #828282;
  font-size: calc(13px / 2 + 13 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-EnglishTableRow .c-EnglishTableRow__content .c-EnglishTableRow__content__note {
    font-size: 11px;
  }
}

.c-EnglishTableNested .c-EnglishTableNested__item {
  display: flex;
  margin-bottom: 8px;
}
.c-EnglishTableNested .c-EnglishTableNested__item .c-EnglishTableNested__item__head {
  flex: 0 0 160px;
  flex-basis: 160px;
  flex-basis: calc(160px / 2 + 160 / 2 * 100vw / 1280);
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-EnglishTableNested .c-EnglishTableNested__item .c-EnglishTableNested__item__head {
    flex-basis: 120px;
  }
}
.c-EnglishTableNested .c-EnglishTableNested__item .c-EnglishTableNested__item__body {
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .c-EnglishTableNested .c-EnglishTableNested__item .c-EnglishTableNested__item__body {
    margin-top: 16px;
  }
}

.infoCategory {
  border-top: 1px solid #191A1A;
}
.infoCategory .infoCategory__header {
  padding-top: 65px;
  padding-bottom: 65px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoCategory .infoCategory__header {
    padding-top: 48px;
    padding-bottom: 30px;
  }
}

.infoCategory__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 100px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoCategory__tabs {
    height: 70px;
    gap: 10px;
  }
}
.infoCategory__tabs .infoCategory__tab {
  position: relative;
  background-color: #D3D6D8;
  margin-top: 6px;
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  font-size: calc(18px / 2 + 18 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  transition-duration: 0.15s;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoCategory__tabs .infoCategory__tab {
    font-size: 13px;
    line-height: 140%;
  }
}
.infoCategory__tabs .infoCategory__tab > .jp {
  display: block;
  font-size: calc(12px / 2 + 12 / 2 * 100vw / 1280);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoCategory__tabs .infoCategory__tab > .jp {
    font-size: 10px;
    margin-top: 1px;
    line-height: 140%;
  }
}
.infoCategory__tabs .infoCategory__tab.is-active {
  margin-top: 0;
  background-color: #191A1A;
  color: #fff;
}
.infoCategory__tabs .infoCategory__tab.is-active:hover {
  background-color: #191A1A;
  cursor: unset;
}
.infoCategory__tabs .infoCategory__tab:hover {
  background-color: #9da4a8;
}
.infoCategory__tabs .infoCategory__tab:after {
  display: block;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  right: 0;
  border-width: 16px;
  border-style: solid;
  border-color: #fff #fff transparent transparent;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoCategory__tabs .infoCategory__tab:after {
    border-width: 9px;
  }
}

.infoCategory__content-wrapper {
  border: 1px solid #191A1A;
}

.infoCategory__content-item {
  display: none;
}
.infoCategory__content-item.is-shown {
  max-height: unset;
  display: block;
  opacity: 1;
}

.infoTabContent {
  display: grid;
  grid-template-columns: 50% 50%;
  padding-top: 44px;
  padding-bottom: 120px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoTabContent {
    display: block;
    padding-top: 16px;
    padding-bottom: 60px;
  }
}
.infoTabContent .infoTabContent__right {
  margin-top: -24px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoTabContent .infoTabContent__right {
    margin-top: 54px;
  }
}

.infoTabContent__table {
  width: 100%;
}

.infoSchedule {
  border-top: 1px solid #191A1A;
  padding-top: 36px;
  padding-bottom: 120px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoSchedule {
    padding-top: 16px;
    padding-bottom: 60px;
  }
}
.infoSchedule .infoSchedule__content {
  margin-top: 80px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoSchedule .infoSchedule__content {
    margin-top: 64px;
  }
}
.infoSchedule .infoSchedule__row {
  display: flex;
  margin-top: 36px;
  border-top: 1px solid #ccc;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoSchedule .infoSchedule__row {
    display: block;
    margin-top: 24px;
  }
}
.infoSchedule .infoSchedule__row .infoSchedule__row__day {
  display: flex;
  flex: 0 0 50%;
  padding-top: 24px;
  padding-bottom: 24px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoSchedule .infoSchedule__row .infoSchedule__row__day {
    padding-bottom: 10px;
  }
}
.infoSchedule .infoSchedule__row .infoSchedule__row__day .infoSchedule__row__day__num {
  font-size: calc(20px / 2 + 20 / 2 * 100vw / 1280);
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  width: 90px;
  line-height: 150%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoSchedule .infoSchedule__row .infoSchedule__row__day .infoSchedule__row__day__num {
    font-size: 14px;
    width: 90px;
  }
}
.infoSchedule .infoSchedule__row .infoSchedule__row__day .infoSchedule__row__day__title {
  font-size: calc(18px / 2 + 18 / 2 * 100vw / 1280);
  font-weight: 600;
  line-height: 150%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoSchedule .infoSchedule__row .infoSchedule__row__day .infoSchedule__row__day__title {
    font-size: 13px;
  }
}
.infoSchedule .infoSchedule__row .infoSchedule__row__table {
  flex: 0 0 50%;
}
.infoSchedule .infoSchedule__row .infoSchedule__row__table-row {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding-top: 24px;
  padding-bottom: 24px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.infoSchedule .infoSchedule__row .infoSchedule__row__table-row.no-border {
  border-width: 0px;
}
@media screen and (max-width: 768px) {
  .infoSchedule .infoSchedule__row .infoSchedule__row__table-row {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.infoSchedule .infoSchedule__row .infoSchedule__row__table-row .infoSchedule__row__table-row__num {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  flex-basis: 140px;
  flex-basis: calc(140px / 2 + 140 / 2 * 100vw / 1280);
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .infoSchedule .infoSchedule__row .infoSchedule__row__table-row .infoSchedule__row__table-row__num {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .infoSchedule .infoSchedule__row .infoSchedule__row__table-row .infoSchedule__row__table-row__num {
    flex: 0 0 90px;
  }
}
.infoSchedule .infoSchedule__row .infoSchedule__row__table-row .nfoSchedule__row__table-row__title {
  flex: 1 1 100px;
}

.infoTicker {
  margin-top: 120px;
}

.entryintro {
  border-top: 1px solid #191A1A;
}
.entryintro .entryintro__title {
  padding-top: 42px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryintro .entryintro__title {
    padding-top: 16px;
  }
}
.entryintro .entryintro__p {
  margin-top: 24px;
  width: 50%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.entryintro .entryintro__p a {
  color: #2389D3;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .entryintro .entryintro__p {
    width: 100%;
    margin-top: 15px;
  }
}

.entryStep {
  margin-top: 120px;
}

.entryStep__block {
  position: relative;
  padding-bottom: 160px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryStep__block {
    padding-bottom: 120px;
  }
}
.entryStep__block .entryStep__block__bar {
  display: block;
  position: absolute;
  left: 12px;
  top: 48px;
  bottom: 25px;
  border-left: 1px solid #000;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryStep__block .entryStep__block__bar {
    left: 4px;
    top: 42px;
  }
}
.entryStep__block .entryStep__block__bar__icon {
  position: absolute;
  top: 50%;
  left: -7px;
  width: 13px;
  transform: translateY(-50%);
}
.entryStep__block .entryStep__block__bar__icon img {
  width: 100%;
}

.entryStep__block__head {
  position: relative;
}
.entryStep__block__head .entryStep__block__head__index {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  position: absolute;
  top: -10px;
  left: -4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 26px;
  font-weight: 600;
  line-height: 80%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryStep__block__head .entryStep__block__head__index {
    font-size: 18px;
    left: -6px;
  }
}
.entryStep__block__head .entryStep__block__head__index span {
  margin-bottom: 12px;
  font-size: calc(11px / 2 + 11 / 2 * 100vw / 1280);
  font-weight: 600;
  line-height: 100%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryStep__block__head .entryStep__block__head__index span {
    margin-bottom: 8px;
    font-size: 10px;
  }
}
.entryStep__block__head .entryStep__block__head__title {
  display: inline-block;
  padding-left: 84px;
  font-size: calc(26px / 2 + 26 / 2 * 100vw / 1280);
  font-weight: 700;
  line-height: 160%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
.entryStep__block__head .entryStep__block__head__title:after {
  display: block;
  content: "";
  height: 3px;
  width: 100%;
  background-color: #191A1A;
}
@media screen and (max-width: 768px) {
  .entryStep__block__head .entryStep__block__head__title {
    padding-left: 35px;
    font-size: 18px;
  }
}

.entryStep__block__content {
  display: grid;
  grid-template-columns: 50% 50%;
  margin-top: 91px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryStep__block__content {
    margin-top: 50px;
    display: block;
    padding-left: 32px;
    padding-right: 8px;
  }
}
.entryStep__block__content .entryStep__block__content__left {
  padding-right: 70px;
  padding-left: 84px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryStep__block__content .entryStep__block__content__left {
    padding-left: 0;
    padding-right: 0;
  }
}
.entryStep__block__content .entryStep__block__content__right {
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryStep__block__content .entryStep__block__content__right {
    margin-top: 40px;
  }
}
.entryStep__block__content .entryStep__block__content__title {
  font-size: calc(22px / 2 + 22 / 2 * 100vw / 1280);
  font-weight: 700;
  line-height: 160%;
}
.entryStep__block__content .entryStep__block__content__note {
  margin-top: 36px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryStep__block__content .entryStep__block__content__note {
    margin-top: 27px;
  }
}
.entryStep__block__content .entryStep__block__content__note .entryStep__block__content__note-item {
  position: relative;
  margin-top: 15px;
  padding-left: 1.2em;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryStep__block__content .entryStep__block__content__note .entryStep__block__content__note-item {
    margin-top: 10px;
  }
}
.entryStep__block__content .entryStep__block__content__note .entryStep__block__content__note-item:before {
  position: absolute;
  left: 0;
  display: inline-block;
  content: "＊";
  margin-right: 5px;
}
.entryStep__block__content .entryStep__block__content__note .entryStep__block__content__note-item a {
  color: #2389D3;
  text-decoration: underline;
}

.entryHowtoLink {
  margin-top: 45px;
  width: 200px;
  padding-left: 1.2em;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryHowtoLink {
    margin-top: 24px;
  }
}

.entryPrepareText {
  position: relative;
}
.entryPrepareText .entryPrepareText__title {
  margin-bottom: 1em;
}
.entryPrepareText .entryPrepareText__button {
  width: 160px;
  margin-left: auto;
  margin-top: 10px;
}
.entryPrepareText > textarea {
  width: 100%;
  height: 38em;
  border: #ccc 1px solid;
  padding: 2em;
  background-color: #D3D6D8;
}

.entryLinks {
  padding-left: 70px;
  padding-right: 70px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryLinks {
    padding-left: 0;
    padding-right: 0;
  }
}

.entryLinks__note {
  margin-bottom: 8px;
  text-align: center;
}
.entryLinks__note img {
  width: 15px;
  vertical-align: middle;
}
.entryLinks__note.active {
  font-weight: 700;
  color: #2389D3;
}

.entryExternalLink {
  background-color: #bdc2c5;
  height: 90px;
  padding-left: 24px;
  padding-right: 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition-duration: 0.3s;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryExternalLink {
    height: 72px;
    margin-bottom: 24px;
  }
}
.entryExternalLink.active {
  background-color: #191A1A;
  pointer-events: auto;
}
.entryExternalLink.active .entryExternalLink__labelSub {
  opacity: 0.5;
}
.entryExternalLink:hover {
  background-color: #2389D3;
}
.entryExternalLink:hover svg .arrow {
  transition-timing-function: ease-out;
  transition-duration: 0.5s;
}
.entryExternalLink:hover svg .arrow .arrow-inner {
  transform: translate(8px, -8px) rotate3d(-1, 1, 0, 360deg);
}
.entryExternalLink .entryExternalLink__label {
  color: #fff;
  flex: 1 1 50%;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryExternalLink .entryExternalLink__label {
    font-size: 12px;
  }
}
.entryExternalLink .entryExternalLink__labelSub {
  color: #fff;
  opacity: 1;
  margin-right: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryExternalLink .entryExternalLink__labelSub {
    font-size: 12px;
  }
}
.entryExternalLink .entryExternalLink__icon svg {
  overflow: visible !important;
  width: 20px;
  vertical-align: bottom;
  transition-duration: 0.3s;
}
.entryExternalLink .entryExternalLink__icon svg .arrow {
  transform-origin: center center;
}
.entryExternalLink .entryExternalLink__icon svg .arrow .arrow-inner {
  transform-origin: center center;
  transition-duration: 0.4s;
}

.entryHowto__blocks {
  padding-bottom: 160px;
  margin-top: 120px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryHowto__blocks {
    margin-top: 80px;
  }
}

.entryHowto__block {
  margin-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #191A1A;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryHowto__block {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}
.entryHowto__block .entryHowto__block__head__title {
  font-size: calc(26px / 2 + 26 / 2 * 100vw / 1280);
  font-weight: 700;
  line-height: 160%;
}
.entryHowto__block .entryHowto__block__content {
  display: grid;
  grid-template-columns: 50% 50%;
  margin-top: 54px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryHowto__block .entryHowto__block__content {
    margin-top: 40px;
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
}
.entryHowto__block .entryHowto__block__content.image-lg {
  grid-template-columns: 40% 60%;
}
.entryHowto__block .entryHowto__block__content .entryHowto__block__content__left {
  padding-right: 80px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryHowto__block .entryHowto__block__content .entryHowto__block__content__left {
    padding-right: 0;
  }
}
.entryHowto__block .entryHowto__block__content .entryHowto__block__content__right {
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryHowto__block .entryHowto__block__content .entryHowto__block__content__right {
    margin-top: 40px;
  }
}
.entryHowto__block .entryHowto__block__content .entryHowto__block__content__title {
  font-size: calc(18px / 2 + 18 / 2 * 100vw / 1280);
  font-weight: 700;
  line-height: 160%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryHowto__block .entryHowto__block__content .entryHowto__block__content__title {
    font-size: 12px;
  }
}
.entryHowto__block .entryHowto__block__content .entryHowto__block__content__textarea {
  margin-top: 100px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryHowto__block .entryHowto__block__content .entryHowto__block__content__textarea {
    margin-top: 40px;
  }
}
.entryHowto__block .entryHowto__block__content .entryHowto__block__content__note {
  margin-top: 36px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryHowto__block .entryHowto__block__content .entryHowto__block__content__note {
    margin-top: 27px;
  }
}
.entryHowto__block .entryHowto__block__content .entryHowto__block__content__note .entryHowto__block__content__note-item {
  position: relative;
  margin-top: 15px;
  padding-left: 1.2em;
  font-size: calc(15px / 2 + 15 / 2 * 100vw / 1280);
  font-weight: 500;
  line-height: 180%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .entryHowto__block .entryHowto__block__content .entryHowto__block__content__note .entryHowto__block__content__note-item {
    margin-top: 10px;
  }
}
.entryHowto__block .entryHowto__block__content .entryHowto__block__content__note .entryHowto__block__content__note-item:before {
  position: absolute;
  left: 0;
  display: inline-block;
  content: "＊";
  margin-right: 5px;
}

.entryHowto__images .entryHowto__image {
  border: 1px solid #191A1A;
}
.entryHowto__images .entryHowto__image:not(:first-of-type) {
  margin-top: 36px;
}
.entryHowto__images .entryHowto__image img {
  vertical-align: bottom;
}

.entryHowto__keitai {
  font-size: calc(12px / 2 + 12 / 2 * 100vw / 1280);
  margin-top: 18px;
  padding: 1em;
  line-height: 160%;
  background-color: #e9eaeb;
}
.entryHowto__keitai a {
  color: #2389D3;
  text-decoration: underline;
}

.results {
  border-top: 1px solid #191A1A;
  padding-top: 40px;
  padding-bottom: 160px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .results {
    padding-top: 24px;
    padding-bottom: 80px;
  }
}

.results__year {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  margin-bottom: 40px;
  margin-top: 120px;
  font-size: calc(48px / 2 + 48 / 2 * 100vw / 1280);
  font-weight: 600;
  line-height: 160%;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .results__year {
    margin-bottom: 24px;
    margin-top: 72px;
    font-size: 30px;
  }
}

.results__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 16px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .results__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
  }
}
.results__list .results__list-item embed {
  width: 100%;
  aspect-ratio: 1/1.414;
}
.results__list .results__list-item .results__list-item__thumb {
  width: 100%;
  border: 1px solid #191A1A;
}
.results__list .results__list-item .results__list-item__title {
  font-size: calc(26px / 2 + 26 / 2 * 100vw / 1280);
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .results__list .results__list-item .results__list-item__title {
    font-size: 20px;
  }
}
.results__list .results__list-item .results__list-item__button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(13px / 2 + 13 / 2 * 100vw / 1280);
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 24px;
  background-color: #191A1A;
  width: 148px;
  height: 24px;
  color: #fff;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .results__list .results__list-item .results__list-item__button {
    font-size: 12px;
    margin-top: 12px;
  }
}
.results__list .results__list-item .results__list-item__button:hover {
  background-color: #2389D3;
}
.results__list .results__list-item .results__list-item__button .results__list-item__button-icon {
  width: 18px;
  width: calc(18px / 2 + 18 / 2 * 100vw / 1280);
  margin-left: 6px;
  /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}
@media screen and (max-width: 768px) {
  .results__list .results__list-item .results__list-item__button .results__list-item__button-icon {
    width: 16px;
  }
}

.plicy {
  border-top: 1px solid #191A1A;
  padding-top: 120px;
  padding-bottom: 160px;
}

.guideline {
  border-top: 1px solid #191A1A;
  padding-top: 120px;
  padding-bottom: 160px;
}

/*# sourceMappingURL=style.css.map */
