@charset "UTF-8";
:root {
  --scrollbar: 0;
}

html {
  font-size: 16px;
}

body, body * {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Niramit", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  background-color: #fff;
  color: #000;
  line-height: 1.7;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (max-width: 1023px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-sp {
    display: none !important;
  }
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.spacer {
  flex-grow: 1 !important;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}
table td > *:first-child {
  margin-top: 0;
}
table td > *:last-child {
  margin-bottom: 0;
}

table:not([class]) {
  margin: 1em 0;
}

section.has-anchor {
  pointer-events: none;
}
section.has-anchor * {
  pointer-events: auto;
}

.anchor-offset {
  padding-top: 150px;
  margin-top: -150px;
  pointer-events: none !important;
}
@media screen and (max-width: 1023px) {
  .anchor-offset {
    padding-top: 90px;
    margin-top: -90px;
  }
}

.l-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #881717;
  transition: 0.2s;
}
.l-header .l-header__topbar {
  padding: 13px 30px;
  color: #fff;
  line-height: 1;
  font-size: 0.875rem;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 1023px) {
  .l-header .l-header__topbar {
    padding: 10px 15px;
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 1380px) {
  .l-header .l-header__topbar {
    max-width: 1320px;
    margin: 0 auto;
    padding: 13px 0;
  }
}
.l-header .l-header__topbar::before {
  content: "";
  display: block;
  width: calc(100vw - var(--scrollbar));
  height: 100%;
  background-color: #6A0707;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.l-header .l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  transition: 0.2s;
}
@media screen and (max-width: 1023px) {
  .l-header .l-header__inner {
    padding: 16px 20px;
  }
}
@media screen and (min-width: 1380px) {
  .l-header .l-header__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 0;
  }
}
.l-header .l-header__inner .l-header__logo {
  width: 313px;
  margin: 0;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  transition: 0.2s;
}
@media screen and (max-width: 1023px) {
  .l-header .l-header__inner .l-header__logo {
    width: 226px;
  }
}
.l-header .l-header__inner .l-header__logo a {
  display: flex;
}
.l-header .l-header__inner .l-header__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition: 0.2s;
}
@media screen and (max-width: 1023px) {
  .l-header .l-header__inner .l-header__content {
    flex-direction: row;
    align-items: center;
  }
}
.l-header .l-header__inner .l-header__content .l-header__menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
@media screen and (max-width: 1023px) {
  .l-header .l-header__inner .l-header__content .l-header__menu ul {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 90px 20px 0;
    background-color: #fff;
  }
}
@media screen and (min-width: 1024px) {
  .l-header .l-header__inner .l-header__content .l-header__menu ul > li:first-child {
    display: none;
  }
}
.l-header .l-header__inner .l-header__content .l-header__menu ul li:not(.home):not(.about):not(.nav-sp) {
  margin-left: 45px;
}
@media screen and (max-width: 1023px) {
  .l-header .l-header__inner .l-header__content .l-header__menu ul li:not(.home):not(.about):not(.nav-sp) {
    margin-left: 0;
  }
}
.l-header .l-header__inner .l-header__content .l-header__menu ul li:not(.nav-sp) a {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .l-header .l-header__inner .l-header__content .l-header__menu ul li:not(.nav-sp) a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #464545;
    color: #fff;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 1023px) {
  .l-header .l-header__inner .l-header__content .l-header__menu ul li:not(.nav-sp) a::after {
    content: "";
    display: block;
    width: 24px;
    height: 15px;
    background: url("../img/common/arrow-right-white.svg") no-repeat center/contain;
  }
}
.l-header .l-header__inner .l-header__content .l-header__menu ul li.nav-sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header .l-header__inner .l-header__content .l-header__menu ul li.nav-sp {
    display: block;
    margin-top: 20px;
  }
  .l-header .l-header__inner .l-header__content .l-header__menu ul li.nav-sp a {
    display: inline-block;
    padding: 5px 20px;
    border: 1px solid #fff;
    border-radius: 2px;
    color: #fff;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header .l-header__inner .l-header__content .l-header__menu > ul.is-show-on-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
  }
}
.l-header .l-header__inner .l-header__content .l-header__menu .l-header__hamburger {
  position: relative;
  width: 40px;
  height: 25px;
  margin: 0;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
.l-header .l-header__inner .l-header__content .l-header__menu .l-header__hamburger span {
  background-color: #fff;
  border: none;
  border-radius: 100px;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.l-header .l-header__inner .l-header__content .l-header__menu .l-header__hamburger span:nth-of-type(2) {
  top: 11px;
}
.l-header .l-header__inner .l-header__content .l-header__menu .l-header__hamburger span:nth-of-type(3) {
  top: 22px;
}
@media screen and (min-width: 1024px) {
  .l-header .l-header__inner .l-header__content .l-header__menu .l-header__hamburger {
    display: none;
  }
}
.l-header .l-header__inner .l-header__content .l-header__menu .l-header__hamburger.is-active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
}
.l-header .l-header__inner .l-header__content .l-header__menu .l-header__hamburger.is-active .middle {
  opacity: 0;
}
.l-header .l-header__inner .l-header__content .l-header__menu .l-header__hamburger.is-active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
}

.l-header.is-scrolled .l-header__topbar {
  display: none;
}
.l-header.is-scrolled .l-header__inner {
  padding: 16px 30px;
}
@media screen and (max-width: 1023px) {
  .l-header.is-scrolled .l-header__inner {
    padding: 16px 20px;
  }
}
@media screen and (min-width: 1380px) {
  .l-header.is-scrolled .l-header__inner {
    padding: 16px 0;
  }
}
@media screen and (max-width: 1023px) {
  .l-header.is-scrolled .l-header__inner .l-header__content .l-header__menu ul {
    padding: 60px 20px 0;
  }
}

.l-main__content {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-main__content {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1280px) {
  .l-main__content {
    padding: 0;
    max-width: 1200px;
  }
}

.l-main {
  position: relative;
}

.l-main__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 2px solid #881717;
}
@media screen and (max-width: 1023px) {
  .l-main__heading {
    margin: 0 15px;
    padding-bottom: 20px;
  }
}
.l-main__heading h2 {
  display: flex;
  flex-direction: column;
  margin: 40px 0 0;
  text-align: center;
  font-size: 2.25rem;
  color: #881717;
}
@media screen and (max-width: 1023px) {
  .l-main__heading h2 {
    font-size: 2rem;
  }
}
.l-main__heading h2 .en {
  display: block;
  font-size: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .l-main__heading h2 .en {
    font-size: 1.125rem;
  }
}

.l-footer {
  padding: 0 0 30px;
  position: relative;
}
.l-footer .l-footer__content {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-footer .l-footer__content {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1280px) {
  .l-footer .l-footer__content {
    padding: 0;
    max-width: 1200px;
  }
}
.l-footer .l-footer__content .l-footer__gnav {
  padding: 12px 0 15px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer__content .l-footer__gnav {
    text-align: center;
  }
}
.l-footer .l-footer__content .l-footer__gnav ul {
  margin: -25px 0 0 -70px;
  padding: 0;
  list-style: none;
  display: flex;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer__content .l-footer__gnav ul {
    flex-direction: column;
    justify-content: center;
    margin: 0;
  }
}
.l-footer .l-footer__content .l-footer__gnav ul li {
  margin: 25px 0 0 70px;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer__content .l-footer__gnav ul li {
    margin: 0;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer__content .l-footer__gnav ul li:not(:last-child) {
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}
.l-footer .l-footer__content .l-footer__gnav ul li a {
  color: #fff;
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer__content .l-footer__gnav ul li a {
    font-size: 0.875rem;
  }
}
.l-footer .l-footer__content .l-footer__gnav::before {
  content: "";
  display: block;
  width: calc(100vw - var(--scrollbar));
  height: 100%;
  background-color: #363636;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.l-footer .l-footer__content .l-footer__menu {
  padding: 45px 0;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer__content .l-footer__menu {
    padding: 25px 0;
  }
}
.l-footer .l-footer__content .l-footer__menu ul {
  margin: -25px 0 0 -25px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer__content .l-footer__menu ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: -10px 0 0 -10px;
  }
}
.l-footer .l-footer__content .l-footer__menu ul li {
  width: calc((100% - 125px) / 5);
  margin: 25px 0 0 25px;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer__content .l-footer__menu ul li {
    width: calc((100% - 20px) / 2);
    margin: 10px 0 0 10px;
  }
}
@media screen and (min-width: 1280px) {
  .l-footer .l-footer__content .l-footer__menu ul li {
    width: 220px;
  }
}
.l-footer .l-footer__content .l-footer__menu ul li a {
  display: block;
  width: 100%;
  padding: 7px 0;
  border: 1px solid #363636;
  border-radius: 100px;
  text-align: center;
  color: #363636;
  font-weight: 700;
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer__content .l-footer__menu ul li a {
    font-size: 0.875rem;
  }
}
.l-footer .l-footer__content .l-footer__logo {
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer__content .l-footer__logo {
    margin: 20px 0;
  }
}
.l-footer .l-footer__content .l-footer__logo img {
  width: 523px;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer__content .l-footer__logo img {
    width: 300px;
  }
}
.l-footer .l-footer__content .l-footer__copyright {
  margin-top: 40px;
  text-align: center;
  font-size: 0.875rem;
}
@media screen and (max-width: 1023px) {
  .l-footer .l-footer__content .l-footer__copyright {
    margin-top: 45px;
    font-size: 0.75rem;
  }
}

.l-footer::before {
  content: "";
  display: block;
  width: calc(100vw - var(--scrollbar));
  height: 100%;
  background-color: #F7F7F7;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}

#to-pagetop a {
  display: block;
  width: 70px;
  height: 70px;
  background: url("../img/common/arrow-pagetop.svg") no-repeat center/contain;
  position: fixed;
  right: 20px;
  bottom: 40px;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 10;
}
@media screen and (min-width: 1380px) {
  #to-pagetop a {
    right: calc((100vw - var(--scrollbar) - 1200px) / 2 - 35px);
  }
}
@media screen and (max-width: 1023px) {
  #to-pagetop a {
    width: 45px;
    height: 45px;
  }
}

#to-pagetop:not(.is-visible) a {
  opacity: 0;
  transform: translateY(100%);
}

#to-pagetop.is-visible a {
  opacity: 1;
  transform: translateY(0);
}

#to-pagetop.is-fixed a {
  position: absolute;
  top: -35px;
  bottom: auto;
}
@media screen and (max-width: 1023px) {
  #to-pagetop.is-fixed a {
    top: -22.5px;
  }
}

body.article-text .l-footer::before {
  content: none;
}
body.article-text .l-footer .l-footer__content {
  border-top: 3px solid #D0D0D0;
}
body.article-text .l-footer .l-footer__content .l-footer__gnav {
  display: none;
}
body.article-text .l-footer .l-footer__content .l-footer__menu {
  display: none;
}
body.article-text .l-footer .l-footer__content .l-footer__logo {
  display: none;
}

.c-btns {
  display: flex;
}
.c-btns .c-btn {
  display: inline-flex;
  padding: 12px 40px 15px;
  border-radius: 100px;
  background-color: #881717;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1023px) {
  .c-btns .c-btn {
    font-size: 1.125rem;
  }
}

.c-btns.centering {
  justify-content: center;
}

.c-btns.right {
  justify-content: flex-end;
}

.p-articles__foot .c-btns .c-btn {
  padding: 15px 54px 17px;
  font-size: 1.125rem;
}

.p-article-text__foot .c-btns .c-btn {
  padding: 12px 24px 14px;
  border: 3px solid #881717;
  background-color: #fff;
  color: #881717;
  font-size: 1.125rem;
}

.c-contents-btns {
  margin-bottom: 30px;
}
.c-contents-btns ul {
  display: flex;
  flex-wrap: wrap;
  margin: -30px 0 0 -30px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .c-contents-btns ul {
    margin: -15px 0 0 -15px;
  }
}
.c-contents-btns ul li {
  display: flex;
  width: calc((100% - 90px) / 3);
  margin: 30px 0 0 30px;
}
@media screen and (max-width: 1023px) {
  .c-contents-btns ul li {
    width: calc(100% - 15px);
    margin: 15px 0 0 15px;
  }
}
.c-contents-btns ul li .c-contents-btn {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 5px;
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1023px) {
  .c-contents-btns ul li .c-contents-btn {
    font-size: 1.25rem;
  }
}

.c-table-scroll-wrapper {
  overflow: auto;
}
@media screen and (max-width: 1023px) {
  .c-table-scroll-wrapper {
    white-space: nowrap;
  }
}

.c-table-scroll-wrapper::-webkit-scrollbar {
  height: 5px;
}

.c-table-scroll-wrapper::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.c-table-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: #bcbcbc;
}

.c-table-race {
  border-collapse: separate;
  width: 100%;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  background-color: #FCFCFC;
  line-height: 1.3;
}
@media screen and (min-width: 1024px) {
  .c-table-race {
    width: calc(100% - 110px);
    margin: 0 auto;
  }
}
.c-table-race th, .c-table-race td {
  padding: 5px 20px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.c-table-race th:first-child, .c-table-race td:first-child {
  position: relative;
}
.c-table-race th:first-child::after, .c-table-race td:first-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #ccc;
  position: absolute;
  right: -3px;
  top: 0;
}
.c-table-race thead th {
  padding: 10px 20px;
  text-align: left;
  background-color: #A2A9B5;
  color: #fff;
  font-weight: 700;
}
.c-table-race thead th:first-child {
  text-align: center;
}
.c-table-race thead th.time {
  text-align: center;
}
.c-table-race tbody td {
  font-size: 1.5rem;
}
.c-table-race tbody td:first-child {
  text-align: center;
  color: #2669D5;
  font-weight: 700;
  font-size: 1.375rem;
}
.c-table-race tbody td.time {
  text-align: center;
}

body.schedule .c-table-race {
  border: 3px solid #89919F;
}
body.schedule .c-table-race tr:last-child td {
  border-bottom: 0;
}
body.schedule .c-table-race th:last-child, body.schedule .c-table-race td:last-child {
  border-right: 0;
}
@media screen and (max-width: 1023px) {
  body.schedule .c-table-race thead th {
    padding: 5px 20px;
  }
}
@media screen and (max-width: 1023px) {
  body.schedule .c-table-race tbody td {
    font-size: 1.25rem;
  }
}

.c-table-race__title {
  width: 100%;
  margin: 55px 0 0;
  padding: 0;
  color: #89919F;
  font-weight: 700;
  font-size: 1.875rem;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 1024px) {
  .c-table-race__title {
    width: calc(100% - 110px);
    margin: 55px auto 0;
  }
}

.c-media-gallery {
  margin: 0 0 40px -40px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .c-media-gallery {
    margin: 15px 0 30px -15px;
  }
}
.c-media-gallery .c-media-gallery__item img {
  width: 100%;
}

.c-media-gallery.column-2 .c-media-gallery__item {
  width: calc((100% - 80px) / 2);
  margin: 40px 0 0 40px;
}
@media screen and (max-width: 1023px) {
  .c-media-gallery.column-2 .c-media-gallery__item {
    width: 100%;
    margin: 15px 0 0 15px;
  }
}

.c-media-gallery.column-1 {
  flex-direction: column;
  align-items: center;
}
.c-media-gallery.column-1 .c-media-gallery__item {
  width: 680px;
  margin: 40px 0 0 40px;
}
@media screen and (max-width: 1023px) {
  .c-media-gallery.column-1 .c-media-gallery__item {
    width: calc(100% - 15px);
    margin: 15px 0 0 15px;
  }
}

.c-modal {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .c-modal {
    max-width: 90%;
  }
}
.c-modal .c-modal__close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #262D3B;
  border: 0;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .c-modal .c-modal__close {
    width: 36px;
    height: 36px;
  }
}
.c-modal .c-modal__close::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url("../img/common/icon-close-white.svg") no-repeat center/contain;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .c-modal .c-modal__close::before {
    width: 14px;
    height: 14px;
  }
}
.c-modal .c-modal__content {
  padding: 25px 35px;
}
@media screen and (max-width: 1023px) {
  .c-modal .c-modal__content {
    padding: 10px 15px;
  }
}

.mfp-content > .c-modal {
  margin-top: 15px;
}

.c-accordion {
  border-bottom: 1px solid #B0B0B0;
}
.c-accordion .c-accordion__item .c-accordion__header {
  display: flex;
  padding: 20px 68px 20px 15px;
  border-top: 1px solid #B0B0B0;
  font-weight: 700;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
}
@media screen and (max-width: 1023px) {
  .c-accordion .c-accordion__item .c-accordion__header {
    padding: 15px 58px 15px 0;
    line-height: 1.6;
    font-size: 1rem;
  }
}
.c-accordion .c-accordion__item .c-accordion__header .i-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 23px;
  height: 23px;
  transform: translateY(-50%);
  transform-origin: center center;
  transition-duration: 0.2s;
}
@media screen and (max-width: 1023px) {
  .c-accordion .c-accordion__item .c-accordion__header .i-box {
    right: 20px;
  }
}
.c-accordion .c-accordion__item .c-accordion__header .i-box .item-i {
  display: block;
  width: 23px;
  height: 23px;
}
.c-accordion .c-accordion__item .c-accordion__header .i-box .item-i::before,
.c-accordion .c-accordion__item .c-accordion__header .i-box .item-i::after {
  display: flex;
  content: "";
  width: 23px;
  height: 3px;
  border-radius: 100px;
  background-color: #658EF0;
  position: absolute;
  top: 10px;
  left: 0;
  transform: rotate(0deg);
  transform-origin: center center;
}
.c-accordion .c-accordion__item .c-accordion__header .i-box .item-i::before {
  width: 3px;
  height: 23px;
  top: 0;
  left: 10px;
}
.c-accordion .c-accordion__item .c-accordion__header::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.3em;
  height: 1.3em;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #423FBB;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .c-accordion .c-accordion__item .c-accordion__header::before {
    font-size: 1rem;
    transform: translateY(10%);
  }
}
.c-accordion .c-accordion__item .c-accordion__header.is-open .i-box {
  transform: translateY(-50%) rotate(-180deg);
  transform-origin: center center;
}
.c-accordion .c-accordion__item .c-accordion__header.is-open .i-box .item-i::before {
  content: none;
}
.c-accordion .c-accordion__item .c-accordion__header.is-stay .i-box .item-i::before {
  content: none;
}
.c-accordion .c-accordion__item .c-accordion__header.is-stay.is-open .i-box .item-i::before {
  content: "";
}
.c-accordion .c-accordion__item .c-accordion__content {
  display: flex;
  padding: 0 15px 25px;
}
@media screen and (max-width: 1023px) {
  .c-accordion .c-accordion__item .c-accordion__content {
    padding: 0 15px 20px 0;
  }
}
.c-accordion .c-accordion__item .c-accordion__content .c-accordion__inner p {
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .c-accordion .c-accordion__item .c-accordion__content .c-accordion__inner p {
    line-height: 1.6;
    font-size: 1rem;
  }
}
.c-accordion .c-accordion__item .c-accordion__content .c-accordion__inner > *:first-child {
  margin-top: 0;
}
.c-accordion .c-accordion__item .c-accordion__content .c-accordion__inner > *:last-child {
  margin-bottom: 0;
}
.c-accordion .c-accordion__item .c-accordion__content .c-accordion__inner a {
  color: #598FF7;
  text-decoration: underline;
}
.c-accordion .c-accordion__item .c-accordion__content::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.3em;
  height: 1.3em;
  margin-right: 10px;
  border-radius: 50%;
  color: #423FBB;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .c-accordion .c-accordion__item .c-accordion__content::before {
    font-size: 1rem;
    transform: translateY(10%);
  }
}

.p-about {
  margin: 0 80px;
  padding-bottom: 100px;
  border-bottom: 2px solid #C1C1C1;
}
@media screen and (max-width: 1023px) {
  .p-about {
    margin: 0 5px;
    padding-bottom: 50px;
  }
}
.p-about__logo {
  padding: 50px 0;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-about__logo {
    padding: 30px 0;
  }
}
.p-about__logo + p {
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-about__logo + p {
    font-size: 0.937rem !important;
  }
}
.p-about p {
  line-height: 2;
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .p-about p {
    font-size: 1rem;
  }
}
.p-about p a {
  color: #2C73C6;
  text-decoration: underline;
}
.p-about p + p {
  margin-top: 1.5em;
}
.p-about h3 {
  margin: 50px 0;
  text-align: center;
  font-size: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .p-about h3 {
    margin: 30px 0;
    font-size: 1.5rem;
  }
}

.p-about-committee {
  margin: 0 80px;
  padding-bottom: 100px;
  border-bottom: 2px solid #C1C1C1;
}
@media screen and (max-width: 1023px) {
  .p-about-committee {
    margin: 0 5px;
    padding-bottom: 50px;
  }
}
.p-about-committee h3 {
  margin: 50px 0 40px;
  text-align: center;
  font-size: 1.375rem;
}
@media screen and (max-width: 1023px) {
  .p-about-committee h3 {
    margin: 20px 0 30px;
    font-size: 1.25rem;
  }
}
.p-about-committee dl {
  margin: 0 150px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .p-about-committee dl {
    margin: 0 15px;
    flex-direction: column;
  }
}
.p-about-committee dl dt {
  margin: 0;
  padding: 0;
  width: 22%;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .p-about-committee dl dt {
    width: auto;
  }
}
.p-about-committee dl dd {
  margin: 0;
  padding: 0;
  width: 78%;
  color: #666;
}
@media screen and (max-width: 1023px) {
  .p-about-committee dl dd {
    width: auto;
  }
}
@media screen and (max-width: 1023px) {
  .p-about-committee dl dd:not(:last-child) {
    margin-bottom: 20px;
  }
}

.p-about-articles {
  margin: 0 80px;
  padding: 40px 0 100px;
}
@media screen and (max-width: 1023px) {
  .p-about-articles {
    margin: 0;
    padding: 20px 0 50px;
  }
}
.p-about-articles p {
  text-align: center;
  font-size: 1.375rem;
}
.p-about-articles p:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1023px) {
  .p-about-articles p {
    font-size: 0.875rem;
  }
}
.p-about-articles__categories {
  margin: 40px 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .p-about-articles__categories {
    margin: 10px 0 0 -15px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.p-about-articles__categories li {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .p-about-articles__categories li {
    margin: 15px 0 0 15px;
    width: calc((100% - 30px) / 2);
  }
}
.p-about-articles__categories li a {
  display: flex;
  justify-content: center;
  width: 170px;
  padding: 2px 0 5px;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 1.375rem;
}
@media screen and (max-width: 1023px) {
  .p-about-articles__categories li a {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .p-about-articles__categories li:not(:last-child) {
    margin-right: 23px;
  }
}
.p-about-articles__tags {
  margin: 40px 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .p-about-articles__tags {
    margin: 20px 0 10px -20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.p-about-articles__tags li {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .p-about-articles__tags li {
    margin: 5px 0 0 20px;
  }
}
.p-about-articles__tags li a {
  display: flex;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .p-about-articles__tags li a {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-about-articles__tags li:not(:last-child) {
    margin-right: 50px;
  }
}

.p-about-articles__categories li a.general {
  background-color: #BC8989;
}

.p-about-articles__categories li a.humanities {
  background-color: #C7AD70;
}

.p-about-articles__categories li a.science {
  background-color: #85B0D0;
}

.p-about-articles__categories li a.bio {
  background-color: #A194B9;
}

.p-about-articles__categories li a.medicine {
  background-color: #90B787;
}

.p-about {
  padding-bottom: 60px;
}
@media screen and (max-width: 1023px) {
  .p-about {
    padding-bottom: 50px;
  }
}
.p-about hr {
  border: none;
  border-top: 1px dashed #c1c1c1;
  margin: 50px 0 40px;
}
@media screen and (max-width: 1023px) {
  .p-about hr {
    margin: 38px 0 30px;
  }
}

.p-about-committee {
  padding-bottom: 60px;
}
@media screen and (max-width: 1023px) {
  .p-about-committee {
    padding-bottom: 48px;
  }
}
.p-about-committee__block {
  border-top: 1px dashed #c1c1c1;
  text-align: center;
  margin: 40px 150px 0;
  padding: 30px 0 0;
}
@media screen and (max-width: 1023px) {
  .p-about-committee__block {
    margin: 38px 15px 0;
    padding-top: 30px;
  }
}
.p-about-committee h4 {
  margin: 5px 0;
}
.p-about-committee p {
  margin: 5px 0;
}
.p-about-committee a {
  display: inline-block;
  margin-top: 4px;
}

.p-inquiry {
  margin: 0 80px;
  padding: 50px 0 140px;
}
@media screen and (max-width: 1023px) {
  .p-inquiry {
    margin: 0 5px;
    padding: 30px 0 95px;
  }
}
.p-inquiry__item {
  display: block;
  padding: 30px 50px;
  border: 1px solid #C1C1C1;
  border-radius: 10px;
}
@media screen and (max-width: 1023px) {
  .p-inquiry__item {
    padding: 15px 18px 20px;
  }
}
.p-inquiry__item:not(:last-child) {
  margin-bottom: 30px;
}
.p-inquiry__item h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #881717;
}
.p-inquiry__link {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: 10px;
  font-size: 1.125rem;
  cursor: pointer;
}
.p-inquiry__link-external::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("../img/common/icon-target-blank.svg") no-repeat center/contain;
  margin-right: 10px;
  transform: translateY(7.5%);
  flex-shrink: 0;
}
.p-inquiry__link-mail::before {
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  background: url("../img/common/icon-mail.svg") no-repeat center/contain;
  margin-right: 10px;
  transform: translateY(12.5%);
  flex-shrink: 0;
}

.p-articles-list {
  display: flex;
  flex-wrap: wrap;
  margin: -75px 0 0 -45px;
}
@media screen and (max-width: 1023px) {
  .p-articles-list {
    flex-direction: column;
    margin: -20px 0 0 -20px;
  }
}
.p-articles-list .p-articles-list__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 135px) / 3);
  margin: 75px 0 0 45px;
  padding: 20px;
  border: 1px solid #D0D0D0;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 1023px) {
  .p-articles-list .p-articles-list__item {
    width: calc(100% - 20px);
    margin: 20px 0 0 20px;
  }
}
.p-articles-list .p-articles-list__item .p-articles-list__thumbnail {
  aspect-ratio: 504/284;
}
.p-articles-list .p-articles-list__item .p-articles-list__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.p-articles-list .p-articles-list__item .p-articles-list__date {
  margin: 10px 0 5px;
  color: #B7B7B7;
  line-height: 1;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}
.p-articles-list .p-articles-list__item .p-articles-list__title {
  margin: 0 0 5px;
  color: #881717;
  font-weight: 700;
  font-size: 1.25rem;
}
.p-articles-list .p-articles-list__item .p-articles-list__description {
  line-height: 1.6;
}
.p-articles-list .p-articles-list__item .p-articles-list__spacer {
  flex-grow: 1 !important;
}
.p-articles-list .p-articles-list__item .p-articles-list__meta {
  margin: 20px 0 0 -20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1;
}
.p-articles-list .p-articles-list__item .p-articles-list__meta .p-articles-list__category {
  display: flex;
  align-items: center;
  margin: 10px 0 0 20px;
  padding: 8px 30px 10px;
  border-radius: 100px;
  color: #fff;
}
.p-articles-list .p-articles-list__item .p-articles-list__meta .p-articles-list__category a {
  color: #fff;
}
.p-articles-list .p-articles-list__item .p-articles-list__meta .p-articles-list__tag {
  display: flex;
  align-items: center;
  margin: 10px 0 0 20px;
}

.p-articles-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 90px;
}
.p-articles-pagination:last-child {
  padding-bottom: 50px;
}
.p-articles-pagination > *:not(:last-child) {
  margin-right: 18px;
}
.p-articles-pagination .p-articles-pagination__prev,
.p-articles-pagination .p-articles-pagination__next {
  display: flex;
  align-items: center;
}
.p-articles-pagination .p-articles-pagination__prev svg,
.p-articles-pagination .p-articles-pagination__next svg {
  width: 13px;
  fill: #881717;
}
.p-articles-pagination .p-articles-pagination__list {
  margin: 0 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.p-articles-pagination .p-articles-pagination__list li:not(:last-child) {
  margin-right: 15px;
}
.p-articles-pagination .p-articles-pagination__list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 35px;
  padding: 8px 4px;
  border: 1px solid #B7B7B7;
  border-radius: 2px;
  line-height: 1;
  font-family: "Sen";
  font-weight: 500;
  font-size: 1.375rem;
}
.p-articles-pagination .p-articles-pagination__list li a.current {
  background-color: #B7B7B7;
  color: #fff;
  pointer-events: none;
}

.p-article {
  margin: 50px 0;
  padding: 70px 80px;
  border: 1px solid #D0D0D0;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-article {
    margin: 25px 0 30px;
    padding: 0 0 40px;
    border: 0;
  }
  .p-article::after {
    content: "";
    display: block;
    margin: 0 -15px;
    width: calc(100vw - var(--scrollbar));
    height: 2px;
    background-color: #D0D0D0;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.p-article::before {
  content: "";
  display: block;
  width: 102px;
  height: 10px;
  background: url("../img/common/logo-watermark.svg") no-repeat center/contain;
  position: absolute;
  right: 15px;
  top: 20px;
}
@media screen and (max-width: 1023px) {
  .p-article::before {
    content: none;
  }
}
.p-article .p-article__heading h2 {
  margin: 0 0 20px;
  font-size: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__heading h2 {
    line-height: 1.3;
    font-size: 1.875rem;
  }
}
.p-article .p-article__heading .p-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: -10px 0 40px -20px;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__heading .p-article__meta {
    margin: -10px 5px 30px -15px;
  }
}
.p-article .p-article__heading .p-article__meta .p-article__date {
  margin: 10px 10px 0 20px;
  color: #B7B7B7;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__heading .p-article__meta .p-article__date {
    width: 100%;
    margin: 10px 0 0 20px;
    font-size: 1.125rem;
  }
}
.p-article .p-article__heading .p-article__meta .p-article__category {
  display: flex;
  align-items: center;
  margin: 10px 0 0 20px;
  padding: 8px 30px 10px;
  border-radius: 100px;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__heading .p-article__meta .p-article__category {
    padding: 7px 25px 9px;
    font-size: 1rem;
  }
}
.p-article .p-article__heading .p-article__meta .p-article__category a {
  color: #fff;
}
.p-article .p-article__heading .p-article__meta .p-article__tag {
  margin: 10px 0 0 20px;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__heading .p-article__meta .p-article__tag {
    font-size: 1rem;
  }
}
.p-article .p-article__movie {
  padding: 20px 40px;
  border-radius: 10px;
  background-color: #333;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__movie {
    margin: 0 -15px;
    padding: 5px 12px;
    border-radius: 0;
  }
}
.p-article .p-article__movie .p-article__movie-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.p-article .p-article__movie .p-article__movie-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-article .p-article__subtitles {
  margin-top: 14px;
  text-align: right;
  font-size: 1.375rem;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__subtitles {
    margin-top: 5px;
    font-size: 1.125rem;
  }
}
.p-article .p-article__subtitles a {
  color: #4769C6;
  font-weight: 700;
}
.p-article .p-article__subtitles a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 25px;
  background: url("../img/common/icon-text.svg") no-repeat center/contain;
  vertical-align: text-bottom;
  margin-right: 10px;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__subtitles a::before {
    width: 17px;
    height: 21px;
    margin-right: 5px;
  }
}
.p-article .p-article__text {
  margin-top: 35px;
  line-height: 2;
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__text {
    margin: 35px 5px 0;
  }
}
.p-article .p-article__profile {
  margin-top: 35px;
  padding: 25px 30px 25px 140px;
  border-radius: 4px;
  background-color: #F7F6F0;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__profile {
    padding: 60px 30px 40px;
  }
}
.p-article .p-article__profile::before {
  content: "Profile";
  display: inline-block;
  color: #9F9667;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.07em;
  position: absolute;
  left: 30px;
  top: 27px;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__profile::before {
    top: 20px;
  }
}
.p-article .p-article__profile .p-article__profile-name {
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__profile .p-article__profile-name {
    font-size: 1.375rem;
  }
}
.p-article .p-article__profile .p-article__profile-name .p-article__profile-position {
  margin-left: 14px;
  font-weight: 400;
  font-size: 0.875rem;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__profile .p-article__profile-name .p-article__profile-position {
    display: block;
    margin: 5px 0 0;
  }
}
.p-article .p-article__profile .p-article__profile-text {
  margin-top: 15px;
  line-height: 2;
  font-size: 0.875rem;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__profile .p-article__profile-text {
    margin: 30px 0 10px;
  }
}
.p-article .p-article__qa {
  margin: 0;
}
.p-article .p-article__qa dt {
  display: flex;
  margin: 30px 0 0;
  padding: 25px 30px;
  border-top: 2px solid #9F9667;
  color: #9F9667;
  font-weight: 700;
  font-size: 1.5rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__qa dt {
    padding: 20px 5px;
    font-size: 1.375rem;
  }
}
.p-article .p-article__qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  width: 34px;
  margin-right: 10px;
  color: #fff;
  font-size: 1.375rem;
  flex-shrink: 0;
}
.p-article .p-article__qa dt::after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #9F9667;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__qa dt::after {
    left: 5px;
    top: 25px;
  }
}
.p-article .p-article__qa dd {
  display: flex;
  margin: 0;
  padding: 0 30px;
  line-height: 2;
  font-size: 1.125rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-article .p-article__qa dd {
    padding: 0 5px;
  }
}
.p-article .p-article__qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  width: 34px;
  margin-right: 10px;
  color: #9F9667;
  line-height: 1.5;
  font-weight: 700;
  font-size: 1.375rem;
  flex-shrink: 0;
}

.p-article-related {
  margin-bottom: 160px;
}
.p-article-related h3 {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  color: #881717;
  font-weight: 400;
  font-size: 1rem;
  white-space: nowrap;
}
.p-article-related h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #881717;
  margin-left: 5px;
  transform: translateY(40%);
}

.p-articles {
  margin: 0;
  padding: 0 0 63px;
}
@media screen and (max-width: 1023px) {
  .p-articles {
    padding: 0 0 82px;
  }
}
.p-articles__heading h2 {
  margin: 50px 0 40px;
  padding: 8px 0 13px;
  border-top: 5px solid #B7B7B7;
  border-bottom: 2px solid #B7B7B7;
  text-align: center;
  line-height: 1;
  font-weight: 400;
  font-size: 1.5rem;
}
.p-articles__foot {
  margin: 60px 0 0;
  padding: 50px 0 0;
  border-top: 1px solid #B7B7B7;
}
@media screen and (max-width: 1023px) {
  .p-articles__foot {
    margin: 36px 0 0;
    padding: 30px 0 0;
  }
}
.p-articles .p-articles__list:first-child {
  margin-top: -30px;
}

.p-articles__list {
  display: flex;
  flex-wrap: wrap;
  margin: -70px 0 0 -37px;
}
@media screen and (max-width: 1023px) {
  .p-articles__list {
    margin: -50px 12px 0;
  }
}
.p-articles__list .p-articles__item {
  margin: 70px 0 0 37px;
  width: calc((100% - 148px) / 4);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .p-articles__list .p-articles__item {
    margin: 50px 0 0;
    width: 100%;
  }
}
.p-articles__list .p-articles__item .p-articles__thumbnail {
  aspect-ratio: 272/153;
}
.p-articles__list .p-articles__item .p-articles__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-articles__list .p-articles__item .p-articles__spacer {
  flex-grow: 1 !important;
}
.p-articles__list .p-articles__item .p-articles__title {
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 1.125rem;
}
.p-articles__list .p-articles__item .p-articles__date {
  margin: 15px 0 0;
  color: #B7B7B7;
  line-height: 1;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .p-articles__list .p-articles__item .p-articles__date {
    margin: 10px 0 0;
  }
}
.p-articles__list .p-articles__item .p-articles__meta {
  margin: 0 0 0 -20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1;
}
.p-articles__list .p-articles__item .p-articles__meta .p-articles__category {
  display: flex;
  align-items: center;
  margin: 10px 0 0 20px;
  padding: 8px 15px 10px;
  border-radius: 100px;
  color: #fff;
}
.p-articles__list .p-articles__item .p-articles__meta .p-articles__category a {
  color: #fff;
}
.p-articles__list .p-articles__item .p-articles__meta .p-articles__tag {
  display: flex;
  align-items: center;
  margin: 10px 0 0 20px;
}

.p-articles-list__category.general,
.p-article__category.general,
.p-articles__category.general {
  background-color: #BC8989;
}

.p-articles__heading h2.general {
  padding: 7px 0 12px;
  border-color: #BC8989;
  color: #BC8989;
  font-weight: 700;
  font-size: 1.625rem;
}

.p-articles-list__category.humanities,
.p-article__category.humanities,
.p-articles__category.humanities {
  background-color: #C7AD70;
}

.p-articles__heading h2.humanities {
  padding: 7px 0 12px;
  border-color: #C7AD70;
  color: #C7AD70;
  font-weight: 700;
  font-size: 1.625rem;
}

.p-articles-list__category.science,
.p-article__category.science,
.p-articles__category.science {
  background-color: #85B0D0;
}

.p-articles__heading h2.science {
  padding: 7px 0 12px;
  border-color: #85B0D0;
  color: #85B0D0;
  font-weight: 700;
  font-size: 1.625rem;
}

.p-articles-list__category.bio,
.p-article__category.bio,
.p-articles__category.bio {
  background-color: #A194B9;
}

.p-articles__heading h2.bio {
  padding: 7px 0 12px;
  border-color: #A194B9;
  color: #A194B9;
  font-weight: 700;
  font-size: 1.625rem;
}

.p-articles-list__category.medicine,
.p-article__category.medicine,
.p-articles__category.medicine {
  background-color: #90B787;
}

.p-articles__heading h2.medicine {
  padding: 7px 0 12px;
  border-color: #90B787;
  color: #90B787;
  font-weight: 700;
  font-size: 1.625rem;
}

.p-article-text {
  margin: 0;
  padding: 0 0 80px;
  counter-reset: num-block 0;
}
@media screen and (max-width: 1023px) {
  .p-article-text {
    padding: 0 0 40px;
  }
}
.p-article-text__logo {
  margin: 0;
  padding: 38px 0;
  border-bottom: 3px solid #D0D0D0;
  text-align: center;
  color: #6A0707;
  font-family: "Niramit";
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
}
.p-article-text__logo span {
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .p-article-text__logo {
    margin: 0 -15px;
    padding: 23px 0;
  }
}
.p-article-text__heading h2 {
  margin: 60px 80px 0;
  padding: 0 0 50px;
  border-bottom: 1px solid #D0D0D0;
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-article-text__heading h2 {
    margin: 30px 0 0;
    padding: 0 0 25px;
    font-size: 1.75rem;
  }
}
.p-article-text__block {
  counter-increment: num-block 1;
  margin: 30px 80px;
  padding: 0 0 30px;
  border-bottom: 1px solid #D0D0D0;
}
@media screen and (max-width: 1023px) {
  .p-article-text__block {
    margin: 30px 5px;
  }
}
.p-article-text__block h3 {
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
}
.p-article-text__block h3::before {
  content: "インタビュー項目" counter(num-block);
  display: block;
  margin: 0 0 5px;
  color: #9F9667;
  font-weight: 700;
  font-size: 0.875rem;
}
.p-article-text__block h3 + p {
  margin-top: 5px;
}
.p-article-text__block h3.is-en::before {
  content: "Topic " counter(num-block) ".";
}
.p-article-text__block p {
  margin-top: 2em;
  font-size: 1.125rem;
  line-height: 2;
}
.p-article-text__block p:last-child {
  margin-bottom: 0;
}
.p-article-text__foot {
  margin: 60px 0 0;
}
@media screen and (max-width: 1023px) {
  .p-article-text__foot {
    margin: 30px 0 0;
  }
}

.p-coming {
  margin: 0 80px;
  padding: 90px 0 250px;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .p-coming {
    margin: 0 5px;
    padding: 90px 0 150px;
    font-size: 1.125rem;
  }
}

.p-connect {
  margin: 0 80px 120px;
  padding-top: 30px;
  padding-bottom: 60px;
  border-bottom: 2px solid #C1C1C1;
}
@media screen and (max-width: 1023px) {
  .p-connect {
    margin: 0 5px 55px;
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.p-connect p {
  line-height: 2;
  font-size: 1.125rem;
}
.p-connect__note {
  margin-top: 30px;
}
@media screen and (max-width: 1023px) {
  .p-connect__note {
    margin-top: 0;
  }
}
.p-connect__note p {
  line-height: 1.75;
  font-size: 0.875rem;
}
@media screen and (max-width: 1023px) {
  .p-connect__note p {
    font-size: 0.937rem !important;
  }
}
.p-connect__note a {
  color: #2C73C6;
  text-decoration: underline;
}
.p-connect > a {
  background-color: #881717;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 60px;
  padding: 2px 0 5px;
  border-radius: 60px;
  color: #fff;
  font-weight: 700;
  font-size: 1.375rem;
  margin: 40px auto 0;
}
.p-connect__center {
  text-align: center;
  margin: 0;
}

.p-useful {
  margin: 0 80px;
  padding-top: 30px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .p-useful {
    margin: 0 5px 35px;
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.p-useful p {
  line-height: 2;
  font-size: 1.125rem;
}
.p-useful__box {
  border: 1px solid #D0D0D0;
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 50px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .p-useful__box {
    margin-bottom: 30px;
    padding: 15px 20px 40px;
  }
}
.p-useful h3 {
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 0;
  margin-bottom: -10px;
}
div .p-useful__note {
  line-height: 1.75;
  font-size: 0.875rem;
}
@media screen and (max-width: 1023px) {
  div .p-useful__note {
    font-size: 0.937rem !important;
    margin-top: 30px;
  }
}
.p-useful__relative {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 54px;
}
.p-useful__relative a {
  line-height: 2;
}
.p-useful a {
  color: #2C73C6;
  text-decoration: underline;
}

.p-home-carousel {
  padding: 58px 0 28px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-home-carousel {
    padding: 20px 15px 28px;
  }
}
@media screen and (min-width: 1024px) {
  .p-home-carousel .swiper {
    max-width: calc(100vw - var(--scrollbar) - 148px);
    margin: 0 auto;
  }
}
@media screen and (min-width: 1380px) {
  .p-home-carousel .swiper {
    max-width: 1200px;
  }
}
.p-home-carousel .swiper .swiper-slide {
  display: flex;
  height: auto;
}
.p-home-carousel .swiper .swiper-slide a {
  display: flex;
  flex-direction: column;
  padding: 42px 37px;
  border: 1px solid #D0D0D0;
  border-radius: 10px;
}
@media screen and (max-width: 1023px) {
  .p-home-carousel .swiper .swiper-slide a {
    padding: 20px;
  }
}
.p-home-carousel .swiper .swiper-slide a .p-home-carousel__thumbnail {
  aspect-ratio: 504/284;
}
.p-home-carousel .swiper .swiper-slide a .p-home-carousel__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.p-home-carousel .swiper .swiper-slide a .p-home-carousel__date {
  margin: 10px 0 5px;
  color: #B7B7B7;
  line-height: 1;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .p-home-carousel .swiper .swiper-slide a .p-home-carousel__date {
    font-size: 1rem;
  }
}
.p-home-carousel .swiper .swiper-slide a .p-home-carousel__title {
  margin: 0 0 5px;
  color: #881717;
  font-weight: 700;
  font-size: 1.75rem;
}
@media screen and (max-width: 1023px) {
  .p-home-carousel .swiper .swiper-slide a .p-home-carousel__title {
    font-size: 1.25rem;
  }
}
.p-home-carousel .swiper .swiper-slide a .p-home-carousel__description {
  line-height: 1.6;
  font-size: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .p-home-carousel .swiper .swiper-slide a .p-home-carousel__description {
    font-size: 0.875rem;
  }
}
.p-home-carousel .swiper .swiper-slide a .p-home-carousel__meta {
  margin: 15px 0 0 -20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1;
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .p-home-carousel .swiper .swiper-slide a .p-home-carousel__meta {
    font-size: 1rem;
  }
}
.p-home-carousel .swiper .swiper-slide a .p-home-carousel__meta .p-home-carousel__category {
  display: flex;
  align-items: center;
  margin: 15px 0 0 20px;
  padding: 8px 30px 10px;
  border-radius: 100px;
  color: #fff;
}
.p-home-carousel .swiper .swiper-slide a .p-home-carousel__meta .p-home-carousel__tag {
  display: flex;
  align-items: center;
  margin: 15px 0 0 20px;
}
.p-home-carousel .swiper-button-prev,
.p-home-carousel .swiper-button-next {
  width: 54px;
  height: 54px;
  background-size: contain;
  margin-top: 0;
}
@media screen and (max-width: 1023px) {
  .p-home-carousel .swiper-button-prev,
.p-home-carousel .swiper-button-next {
    top: auto;
    bottom: 13px;
    transform: translate(0, 0);
  }
}
.p-home-carousel .swiper-button-prev {
  background-image: url("../img/common/arrow-carousel-prev.svg");
}
@media screen and (max-width: 1023px) {
  .p-home-carousel .swiper-button-prev {
    left: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-home-carousel .swiper-button-prev {
    left: 10px;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1380px) {
  .p-home-carousel .swiper-button-prev {
    left: calc((100vw - var(--scrollbar) - 1200px) / 2 - 20px);
    transform: translate(-100%, -50%);
  }
}
.p-home-carousel .swiper-button-next {
  background-image: url("../img/common/arrow-carousel-next.svg");
}
@media screen and (max-width: 1023px) {
  .p-home-carousel .swiper-button-next {
    right: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-home-carousel .swiper-button-next {
    right: 10px;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1380px) {
  .p-home-carousel .swiper-button-next {
    right: calc((100vw - var(--scrollbar) - 1200px) / 2 - 20px);
    transform: translate(100%, -50%);
  }
}
.p-home-carousel .swiper-button-prev::after,
.p-home-carousel .swiper-button-next::after {
  display: none;
}
.p-home-carousel .swiper-pagination-bullets {
  position: static;
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .p-home-carousel .swiper-pagination-bullets {
    margin-top: 24px;
  }
}
.p-home-carousel .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 0 0 18px !important;
  background: #888 !important;
}
.p-home-carousel .swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.p-home-about {
  padding: 80px 0 100px;
  background-color: #F4F4F4;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-home-about {
    padding: 40px 0 50px;
  }
}
.p-home-about h2 {
  margin: 0;
  color: #881717;
  font-weight: 700;
  font-size: 3.625rem;
}
@media screen and (max-width: 1023px) {
  .p-home-about h2 {
    font-size: 2rem;
  }
}
.p-home-about h2 span {
  font-weight: 400;
}
.p-home-about h2 + p {
  line-height: 1.6;
  font-weight: 700;
  font-size: 3rem;
}
@media screen and (max-width: 1023px) {
  .p-home-about h2 + p {
    font-size: 1.375rem;
  }
}
.p-home-about h2 + p + p {
  line-height: 2.2;
  font-size: 1.375rem;
}
@media screen and (max-width: 1023px) {
  .p-home-about h2 + p + p {
    font-size: 1rem;
  }
}
.p-home-about h2 + p + p + .c-btns {
  margin-top: 50px;
}
@media screen and (max-width: 1023px) {
  .p-home-about h2 + p + p + .c-btns {
    margin-top: 30px;
  }
}

.p-home-articles {
  padding: 80px 0 100px;
}
@media screen and (max-width: 1023px) {
  .p-home-articles {
    padding: 40px 0 50px;
  }
}
.p-home-articles h2 {
  margin: 0;
  text-align: center;
  color: #881717;
  font-weight: 700;
  font-size: 3.625rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-home-articles h2 {
    font-size: 2rem;
  }
}
.p-home-articles h2 + p {
  text-align: center;
  font-size: 1.375rem;
}
@media screen and (max-width: 1023px) {
  .p-home-articles h2 + p {
    font-size: 0.875rem;
  }
}
.p-home-articles .p-home-articles__menu .p-home-articles__categories {
  margin: 40px 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .p-home-articles .p-home-articles__menu .p-home-articles__categories {
    margin: 10px 0 0 -15px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.p-home-articles .p-home-articles__menu .p-home-articles__categories li {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .p-home-articles .p-home-articles__menu .p-home-articles__categories li {
    margin: 15px 0 0 15px;
    width: calc((100% - 30px) / 2);
  }
}
.p-home-articles .p-home-articles__menu .p-home-articles__categories li a {
  display: flex;
  justify-content: center;
  width: 170px;
  padding: 2px 0 5px;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 1.375rem;
}
@media screen and (max-width: 1023px) {
  .p-home-articles .p-home-articles__menu .p-home-articles__categories li a {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .p-home-articles .p-home-articles__menu .p-home-articles__categories li:not(:last-child) {
    margin-right: 23px;
  }
}
.p-home-articles .p-home-articles__menu .p-home-articles__tags {
  margin: 40px 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .p-home-articles .p-home-articles__menu .p-home-articles__tags {
    margin: 20px 0 10px -20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.p-home-articles .p-home-articles__menu .p-home-articles__tags li {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .p-home-articles .p-home-articles__menu .p-home-articles__tags li {
    margin: 5px 0 0 20px;
  }
}
.p-home-articles .p-home-articles__menu .p-home-articles__tags li a {
  display: flex;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .p-home-articles .p-home-articles__menu .p-home-articles__tags li a {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-home-articles .p-home-articles__menu .p-home-articles__tags li:not(:last-child) {
    margin-right: 50px;
  }
}
.p-home-articles .p-articles-list {
  margin: -35px 0 75px -45px;
}
@media screen and (max-width: 1023px) {
  .p-home-articles .p-articles-list {
    margin: 0 0 35px -20px;
  }
}

.p-home-interviewers {
  padding: 80px 0 150px;
  background-color: #F7F6F0;
}
@media screen and (max-width: 1023px) {
  .p-home-interviewers {
    padding: 40px 0 50px;
  }
}
.p-home-interviewers h2 {
  margin: 0;
  text-align: center;
  color: #881717;
  font-weight: 700;
  font-size: 3.625rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-home-interviewers h2 {
    font-size: 2rem;
  }
}
.p-home-interviewers h2 + p {
  text-align: center;
  font-size: 1.375rem;
}
@media screen and (max-width: 1023px) {
  .p-home-interviewers h2 + p {
    font-size: 0.875rem;
  }
}
.p-home-interviewers .p-home-interviewers__list {
  margin: 60px 30px 0;
}
@media screen and (max-width: 1023px) {
  .p-home-interviewers .p-home-interviewers__list {
    margin: 30px 20px 0;
  }
}
.p-home-interviewers .p-home-interviewers__list ul {
  margin: -45px 0 0 -45px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.p-home-interviewers .p-home-interviewers__list ul li {
  margin: 45px 0 0 45px;
  width: calc((100% - 270px) / 6);
}
@media screen and (max-width: 1023px) {
  .p-home-interviewers .p-home-interviewers__list ul li {
    width: calc((100% - 90px) / 2);
  }
}
.p-home-interviewers .p-home-interviewers__list ul li a {
  display: flex;
  flex-direction: column;
}
.p-home-interviewers .p-home-interviewers__list ul li a .p-home-interviewers__photo {
  aspect-ratio: 1/1;
}
.p-home-interviewers .p-home-interviewers__list ul li a .p-home-interviewers__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100px;
}
.p-home-interviewers .p-home-interviewers__list ul li a .p-home-interviewers__name {
  margin-top: 10px;
  text-align: center;
  color: #881717;
}
@media screen and (max-width: 1023px) {
  .p-home-interviewers .p-home-interviewers__list ul li a .p-home-interviewers__name {
    font-size: 0.875rem;
  }
}

.p-home-carousel__category.general {
  background-color: #BC8989;
}

.p-home-articles__categories li a.general {
  background-color: #BC8989;
}

.p-home-carousel__category.humanities {
  background-color: #C7AD70;
}

.p-home-articles__categories li a.humanities {
  background-color: #C7AD70;
}

.p-home-carousel__category.science {
  background-color: #85B0D0;
}

.p-home-articles__categories li a.science {
  background-color: #85B0D0;
}

.p-home-carousel__category.bio {
  background-color: #A194B9;
}

.p-home-articles__categories li a.bio {
  background-color: #A194B9;
}

.p-home-carousel__category.medicine {
  background-color: #90B787;
}

.p-home-articles__categories li a.medicine {
  background-color: #90B787;
}

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