@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

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

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

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

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* ------------------------------------------
base
------------------------------------------ */
html {
  font-size: 62.5%;
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-size: contain;
  color: #1a1a1a;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, "Yu Gothic", Meiryo,
    メイリオ, "MS PGothic", Osaka, sans-serif;
  word-break: break-all;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1032px) {
  body {
    font-size: 1.4rem;
  }
}
body *::before,
body *::after {
  margin: 0;
  box-sizing: border-box;
}
body.is-overlay {
  overflow: hidden;
}
@media (any-hover: none) and (pointer: coarse) and (max-width: 1032px) {
  @supports (-webkit-touch-callout: none) {
    body.is-overlay {
      position: fixed;
      width: 100%;
    }
  }
}

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

a {
  color: #333;
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
}
button:hover {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
ul,
ol,
dl,
p,
table,
div,
span,
a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-word;
}

b {
  font-weight: 600;
}

em,
strong {
  font-style: normal;
  font-weight: 600;
}

ul li,
ol li {
  list-style-type: none;
}

address {
  font-style: normal;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
}

input,
button,
select {
  font-family: arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, "Yu Gothic", Meiryo,
    メイリオ, "MS PGothic", Osaka, sans-serif;
}

mark {
  background-color: initial;
}

button,
input,
select,
textarea {
  color: inherit;
  -webkit-text-fill-color: currentColor;
  -webkit-appearance: none;
}

select {
  background-color: inherit;
}

.grecaptcha-badge {
  visibility: hidden;
}

.l-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100vh;
}
.l-wrapper__skip {
  position: absolute;
  opacity: 0;
  top: -100%;
  left: -100%;
  font-size: 1.4rem;
}
.l-wrapper--login {
  background-image: url(/assets/images/bg_gradation.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-color: #fff;
  border-bottom: 0;
}
@media screen and (max-width: 1032px) {
  .l-wrapper--login {
    background-image: url(/assets/images/bg_gradation_tb.jpg);
  }
}
.l-wrapper--login .l-header {
  background: none;
  border-bottom: 0;
  min-height: 83px;
}
@media screen and (max-width: 1032px) {
  .l-wrapper--login .l-header {
    min-height: 68px;
  }
}
.l-wrapper--login .l-main {
  background-image: url(/assets/images/bg_gradation.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-color: #fff;
  border-bottom: 0;
}
@media screen and (max-width: 1032px) {
  .l-wrapper--login .l-main {
    background-image: url(/assets/images/bg_gradation_tb.jpg);
  }
}

.l-wrapper-full {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 16px 28px 0;
}
@media screen and (max-width: 1032px) {
  .l-wrapper-full {
    padding: 16px 24px 0;
  }
}

.l-header {
  background-image: url(/assets/images/bg_header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
}
.l-header__inner {
  padding: 20px 28px 0 28px;
}
@media screen and (max-width: 1032px) {
  .l-header__inner {
    padding: 16px 15px;
  }
}
.l-header__inner__logo {
  height: 56px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1032px) {
  .l-header__inner__logo {
    height: 32px;
  }
  .l-header__inner__logo img {
    height: 32px;
    width: auto;
  }
  .l-header__inner__logo--jr img {
    height: 24px;
  }
}
.l-header__inner__logo > a {
  display: inline-block;
}
@media screen and (max-width: 1032px) {
  .l-header__inner__logo > a {
    padding: 0 5px;
  }
}
.l-header__menu {
  display: none;
}
@media screen and (max-width: 1032px) {
  .l-header__menu {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.l-header__menu__inner {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
}
.l-header__menu__inner > span {
  display: flex;
  align-items: center;
  padding: 16px 24px 15px 50px;
  height: 63px;
}
.l-header__menu__inner > span::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% + 8px);
  left: 15px;
  transform: translate(0, -50%);
  width: 24px;
  height: 2px;
  background-color: #002471;
  border-radius: 2px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.l-header__menu__inner::before,
.l-header__menu__inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(0, -50%);
  width: 24px;
  height: 2px;
  background-color: #002471;
  transition: transform 0.2s ease;
  border-radius: 2px;
}
.l-header__menu__inner::before {
  top: calc(50% - 8px);
}
.l-header__nav {
  display: flex;
}
@media screen and (max-width: 1032px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__utility {
  display: flex;
  align-items: center;
  position: absolute;
  top: 35px;
  right: 28px;
}
.l-header__utility__item + .l-header__utility__item {
  margin-left: 27px;
}
.l-header__utility__item > a,
.l-header__utility__item > button {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  padding: 5px 5px 5px 26px;
  position: relative;
  transition: 0.3s ease opacity;
}
.l-header__utility__item > a:hover,
.l-header__utility__item > a:focus,
.l-header__utility__item > button:hover,
.l-header__utility__item > button:focus {
  opacity: 0.8;
}
.l-header__utility__item > a::before,
.l-header__utility__item > button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 20px;
}
.l-header__utility__item--help > a::before {
  background-image: url(/assets/images/icon_help.svg);
}
.l-header__utility__item--lang > button::before {
  background-image: url(/assets/images/icon_lang.svg);
}
.l-header__utility__item--logout > button::before {
  background-image: url(/assets/images/icon_logout.svg);
}
.l-header__utility__item--guide > a::before {
  background-image: url(/assets/images/icon_guide.svg);
}
.l-header__list {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.l-header__list__item > a,
.l-header__list__item > button {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  color: #1a1a1a;
  padding: 17px 27px;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s ease background-color, 0.3s ease color;
}
.l-header__list__item > a:hover,
.l-header__list__item > a:focus,
.l-header__list__item > button:hover,
.l-header__list__item > button:focus {
  background-color: #e5ecf4;
  color: #002471;
}
.l-header__list__item__sub {
  position: relative;
}
.l-header__list__item.is-active > a,
.l-header__list__item.is-active > button {
  color: #fff;
  background-color: #004196;
}
.l-header__list__item.is-active > a[aria-expanded="true"],
.l-header__list__item.is-active > button[aria-expanded="true"] {
  background-color: #e5ecf4;
  color: #002471;
}
.l-header__list__item.is-active
  > a[aria-expanded="true"]
  .l-header__list__item__btn__inner::before,
.l-header__list__item.is-active
  > a[aria-expanded="true"]
  .l-header__list__item__btn__inner::after,
.l-header__list__item.is-active
  > button[aria-expanded="true"]
  .l-header__list__item__btn__inner::before,
.l-header__list__item.is-active
  > button[aria-expanded="true"]
  .l-header__list__item__btn__inner::after {
  background-color: #002471;
}
.l-header__list__item.is-active > a[aria-expanded="true"]:hover,
.l-header__list__item.is-active > a[aria-expanded="true"]:focus,
.l-header__list__item.is-active > button[aria-expanded="true"]:hover,
.l-header__list__item.is-active > button[aria-expanded="true"]:focus {
  color: #fff;
  background-color: #004196;
}
.l-header__list__item.is-active
  > a[aria-expanded="true"]:hover
  .l-header__list__item__btn__inner::before,
.l-header__list__item.is-active
  > a[aria-expanded="true"]:hover
  .l-header__list__item__btn__inner::after,
.l-header__list__item.is-active
  > a[aria-expanded="true"]:focus
  .l-header__list__item__btn__inner::before,
.l-header__list__item.is-active
  > a[aria-expanded="true"]:focus
  .l-header__list__item__btn__inner::after,
.l-header__list__item.is-active
  > button[aria-expanded="true"]:hover
  .l-header__list__item__btn__inner::before,
.l-header__list__item.is-active
  > button[aria-expanded="true"]:hover
  .l-header__list__item__btn__inner::after,
.l-header__list__item.is-active
  > button[aria-expanded="true"]:focus
  .l-header__list__item__btn__inner::before,
.l-header__list__item.is-active
  > button[aria-expanded="true"]:focus
  .l-header__list__item__btn__inner::after {
  background-color: #fff;
}
.l-header__list__item.is-active > a:hover,
.l-header__list__item.is-active > a:focus,
.l-header__list__item.is-active > button:hover,
.l-header__list__item.is-active > button:focus {
  color: #fff;
  background-color: #003283;
}
.l-header__list__item.is-active .l-header__list__item__btn__inner::before,
.l-header__list__item.is-active .l-header__list__item__btn__inner::after {
  background-color: #fff;
}
.l-header__list__item__btn__inner {
  padding-right: 10px;
  position: relative;
}
.l-header__list__item__btn__inner::before,
.l-header__list__item__btn__inner::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  top: 50%;
  background-color: #002471;
  transition: 0.4s ease background-color;
}
.l-header__list__item__btn__inner::before {
  border-radius: 0 0 3px 3px;
  transform: translate(0, -50%) rotate(135deg);
  right: -2px;
}
.l-header__list__item__btn__inner::after {
  border-radius: 0 0 3px 3px;
  transform: translate(0, -50%) rotate(-135deg);
  right: -8px;
}
.l-header__list__sub {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  width: 200px;
  top: 100%;
  left: 0;
  margin-top: -10px;
  transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
  z-index: 2;
}
.l-header__list__sub.is-active {
  margin-top: 0;
  visibility: visible;
  opacity: 1;
}
.l-header__list__sub__item > a {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  background-color: #004196;
  padding: 12px 24px;
  transition: 0.3s ease background-color;
}
.l-header__list__sub__item > a:hover,
.l-header__list__sub__item > afocus {
  background-color: #003283;
}
.l-header__tb {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: #004196;
  color: #fff;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-header__tb.is-active {
  visibility: visible;
  opacity: 1;
}
.l-header__tb__close {
  text-align: right;
}
.l-header__tb__close__btn {
  width: 58px;
  height: 64px;
  color: rgba(0, 0, 0, 0);
  font-size: 1rem;
  position: relative;
}
.l-header__tb__close__btn::before,
.l-header__tb__close__btn::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 31px;
  border-radius: 3px;
  top: 50%;
  right: 28px;
  background-color: #fff;
}
.l-header__tb__close__btn::before {
  transform: translate(0, -50%) rotate(135deg);
}
.l-header__tb__close__btn::after {
  transform: translate(0, -50%) rotate(-135deg);
}
.l-header__tb__close__btn:focus {
  outline-color: #fff;
}
.l-header__tb__inner {
  padding: 0 40px 56px;
}
.l-header__tb__logo {
  height: 49px;
  display: flex;
  align-items: center;
}
.l-header__tb__logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 49px;
}
.l-header__tb__logo--jr {
  height: 39px;
}
.l-header__tb__logo--jr a {
  width: 289px;
  height: 39px;
}
.l-header__tb__list {
  margin-top: 24px;
}
.l-header__tb__list__item {
  display: flex;
}
.l-header__tb__list__item + .l-header__tb__list__item {
  border-top: 1px solid #003283;
}
.l-header__tb__list__item--help > a span,
.l-header__tb__list__item--help > button span,
.l-header__tb__list__item--lang > a span,
.l-header__tb__list__item--lang > button span,
.l-header__tb__list__item--logout > a span,
.l-header__tb__list__item--logout > button span,
.l-header__tb__list__item--guide > a span,
.l-header__tb__list__item--guide > button span {
  padding-left: 33px;
  display: block;
  position: relative;
}
.l-header__tb__list__item--help > a span::before,
.l-header__tb__list__item--help > button span::before,
.l-header__tb__list__item--lang > a span::before,
.l-header__tb__list__item--lang > button span::before,
.l-header__tb__list__item--logout > a span::before,
.l-header__tb__list__item--logout > button span::before,
.l-header__tb__list__item--guide > a span::before,
.l-header__tb__list__item--guide > button span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.l-header__tb__list__item--help > a span::before {
  background: url(/assets/images/icon_help_white.svg) no-repeat;
  background-size: contain;
}
.l-header__tb__list__item--lang > button span::before {
  background: url(/assets/images/icon_lang_white.svg) no-repeat;
  background-size: contain;
}
.l-header__tb__list__item--logout > button span::before {
  background: url(/assets/images/icon_logout_white.svg) no-repeat;
  background-size: contain;
}
.l-header__tb__list__item--guide > a span::before {
  background: url(/assets/images/icon_guide_white.svg) no-repeat;
  background-size: contain;
}
.l-header__tb__list__item > a,
.l-header__tb__list__item > button {
  flex: 1;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  min-height: 68px;
  margin: 0 -40px;
  padding: 0 40px;
  position: relative;
}
.l-header__tb__list__item > a::before,
.l-header__tb__list__item > a::after,
.l-header__tb__list__item > button::before,
.l-header__tb__list__item > button::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background-color: #fff;
  right: 50px;
}
.l-header__tb__list__item > a::before,
.l-header__tb__list__item > button::before {
  border-radius: 0 0 3px 3px;
  transform: translate(0, -50%) rotate(45deg);
  top: calc(50% + 3px);
}
.l-header__tb__list__item > a::after,
.l-header__tb__list__item > button::after {
  border-radius: 3px 3px 0 0;
  transform: translate(0, -50%) rotate(-45deg);
  top: calc(50% - 3px);
}

.l-footer {
  border-top: 1px solid #d9d9d9;
  background-color: #fff;
  padding: 32px 0 30px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1032px) {
  .l-footer {
    padding: 24px 0;
  }
}
.l-footer.is-search {
  padding-bottom: 110px;
}
.l-footer__inner {
  max-width: 1246px;
  width: 100%;
  padding: 0 23px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1032px) {
  .l-footer__inner {
    position: relative;
  }
}
.l-footer__inner__lyt {
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media screen and (max-width: 1032px) {
  .l-footer__inner__lyt {
    width: 100%;
  }
}
.l-footer__inner__lyt__text {
  margin-top: 8px;
}
@media screen and (max-width: 1032px) {
  .l-footer__inner__lyt__text {
    width: 100%;
    margin-top: 26px;
  }
}
@media screen and (max-width: 1032px) {
  .l-footer__inner__logo {
    position: absolute;
    top: 0;
    left: 24px;
    max-width: 172px;
  }
}
.l-footer__inner__logo > a {
  transition: 0.3s ease opacity;
}
.l-footer__inner__logo > a:hover,
.l-footer__inner__logo > a:focus {
  opacity: 0.8;
}
.l-footer__list {
  display: flex;
}
@media screen and (max-width: 1032px) {
  .l-footer__list {
    padding-top: 3px;
  }
}
.l-footer__list__item + .l-footer__list__item {
  margin-left: 23px;
}
.l-footer__list__item > a {
  font-size: 1.3rem;
  font-weight: 300;
  color: #1a1a1a;
  padding: 5px;
  transition: 0.3s ease opacity;
}
.l-footer__list__item > a:hover,
.l-footer__list__item > a:focus {
  opacity: 0.7;
}
.l-footer__text {
  color: #4d4d4d;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  text-align: right;
}
@media screen and (max-width: 1032px) {
  .l-footer__text {
    text-align: left;
  }
}
.l-footer__copy {
  text-align: right;
  line-height: 1;
  margin-top: 2px;
}
@media screen and (max-width: 1032px) {
  .l-footer__copy {
    text-align: left;
  }
}
.l-footer__copy > small {
  color: #808080;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
}

.l-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fafafa;
  position: relative;
}
.l-main--encyc {
  background-image: url(/assets/images/bg_gradation.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  padding-bottom: 80px;
}
@media screen and (max-width: 1032px) {
  .l-main--encyc {
    padding-bottom: 56px;
    background-image: url(/assets/images/bg_gradation_tb.jpg);
  }
}

.l-content {
  flex: 1;
  max-width: 1120px;
  width: 100%;
  padding: 0 20px;
  margin: 32px auto 80px;
}
@media screen and (max-width: 1032px) {
  .l-content {
    padding: 0 24px;
    margin: 24px auto 56px;
  }
}
.l-content--small {
  max-width: 840px;
}
@media screen and (max-width: 1032px) {
  .l-content > .p-lyt-content:first-child {
    margin-top: 0;
  }
}
.l-content--full {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1032px) {
  .l-content--full {
    margin: 0;
    padding: 0;
  }
}
.l-content--full > .p-lyt-header--col {
  margin-top: 16px;
}
.l-content.p-lyt-result {
  margin-top: 8px;
}
.l-content > .p-noresult {
  margin-top: 40px;
}

.c-hdg-lv1 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
}
@media screen and (max-width: 1032px) {
  .c-hdg-lv1 {
    font-size: 2.8rem;
  }
}
.c-hdg-lv1 + a.c-btn-prev {
  display: inline-block;
}
.c-hdg-lv1 + .c-btn-prev {
  margin-top: 24px;
}

.c-hdg-lv2 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1a1a1a;
  padding-left: 24px;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.c-hdg-lv2 > label,
.c-hdg-lv2 > span {
  line-height: 1.5;
}
@media screen and (max-width: 1032px) {
  .c-hdg-lv2 {
    font-size: 2rem;
    padding-left: 20px;
  }
}
.c-hdg-lv2::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  min-height: 44px;
  height: 100%;
  background-color: #004196;
}
@media screen and (max-width: 1032px) {
  .c-hdg-lv2::before {
    width: 6px;
  }
}

.c-hdg-lv2-simple {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1a1a1a;
}
.c-hdg-lv2-simple__sub {
  margin-left: 24px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #1a1a1a;
}
.c-hdg-lv2-simple__sub__num {
  font-weight: 600;
  padding-left: 5px;
  font-family: arial, sans-serif;
  font-size: 1.6rem;
}

.c-hdg-lv2-link {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 64px;
}
.c-hdg-lv2-link a,
.c-hdg-lv2-link button {
  color: #002471;
  text-decoration: underline;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.c-hdg-lv2-link a:hover,
.c-hdg-lv2-link a:focus,
.c-hdg-lv2-link button:hover,
.c-hdg-lv2-link button:focus {
  text-decoration: none;
}
.c-hdg-lv2-link + .c-text {
  margin-top: 12px;
}

.c-hdg-lv3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 20px;
}
@media screen and (max-width: 1032px) {
  .c-hdg-lv3 {
    font-size: 1.6rem;
  }
}

.c-hdg-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1a1a1a;
  white-space: nowrap;
}
.c-hdg-timeline__num {
  font-size: 6.4rem;
  font-family: arial, sans-serif;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 1032px) {
  .c-hdg-timeline__num {
    font-size: 4.8rem;
  }
}
.c-hdg-timeline__sub {
  font-size: 1.6rem;
  font-weight: 300;
  margin-top: 5px;
}
@media screen and (max-width: 1032px) {
  .c-hdg-timeline__sub {
    font-size: 1.4rem;
    margin-top: 3px;
  }
}

.c-hdg-page {
  font-size: 2.4rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin-top: 24px;
}
.c-hdg-page + .p-lyt-header {
  margin-top: 16px;
}

.c-hdg-page-lv2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin-top: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1a1a1a;
}

.c-hdg-page-lv3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin-top: 24px;
}

.c-hdg-page-lv4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin-top: 24px;
}

.c-hdg-page-lv5 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin-top: 24px;
}

.c-text {
  margin-top: 24px;
  font-size: 1.6rem;
  color: #1a1a1a;
  line-height: 1.8;
}
.c-text + .p-table,
.c-text + .p-table-scroll-tb,
.c-text + .p-table-scroll {
  margin-top: 12px;
}

.c-text-lead {
  font-size: 1.6rem;
  color: #1a1a1a;
  line-height: 1.8;
  font-weight: 600;
}
.c-text-lead + .c-hdg-page {
  margin-top: 8px;
}

.c-text-notice {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-top: 12px;
}

.c-text-sign {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 64px;
  text-align: right;
}

.c-text-crumb {
  display: flex;
  font-size: 1.4rem;
}
.c-text-crumb__item + .c-text-crumb__item {
  padding-left: 17px;
  position: relative;
}
.c-text-crumb__item + .c-text-crumb__item::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 14px;
  background-color: #d9d9d9;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}

.c-text-print {
  display: none;
  margin-top: 24px;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.5;
}

.c-text-year {
  font-family: arial, sans-serif;
  font-size: 1.4rem;
  white-space: nowrap;
}
.p-lyt-content__secondary .c-text-year {
  font-size: 1.1rem;
  letter-spacing: -0.03rem;
}

.c-btn {
  height: 56px;
  font-size: 1.4rem;
  font-weight: 600;
  border: 1px solid;
  border-radius: 8px;
  transition: 0.3s ease color, 0.3s ease border-color, 0.3s ease
    background-color;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}
.c-btn--small {
  height: 44px;
}
.c-btn--full {
  width: 100%;
}
.c-btn--primary {
  color: #fff;
  background-color: #cc4500;
  border-color: #ebb599;
}
.c-btn--primary:hover,
.c-btn--primary:focus {
  background-color: #fff;
  border-color: #cc4500;
  color: #cc4500;
}
.c-btn--primary:disabled {
  background-color: #b2b2b2 !important;
  border-color: #b2b2b2 !important;
  color: #fff !important;
  box-shadow: none;
  pointer-events: none;
}
.c-btn--secondary {
  color: #fff;
  background-color: #004196;
  border-color: #7396c5;
}
.c-btn--secondary:hover,
.c-btn--secondary:focus {
  background-color: #fff;
  border-color: #004196;
  color: #002471;
}
.c-btn--secondary:disabled {
  background-color: #b2b2b2 !important;
  border-color: #b2b2b2 !important;
  color: #fff !important;
  box-shadow: none;
  pointer-events: none;
}
.c-btn--tertiary {
  color: #1a1a1a;
  background-color: #fff;
  border-color: #b2b2b2;
}
.c-btn--tertiary:hover,
.c-btn--tertiary:focus {
  background-color: #e5ecf4;
}
.c-btn--tertiary:disabled {
  background-color: #fff !important;
  border-color: #e5e5e5 !important;
  color: #b2b2b2 !important;
  pointer-events: none;
  box-shadow: none;
}
.c-btn--modal {
  min-width: 240px;
  width: 100%;
  height: 44px;
  font-size: 1.4rem;
}
.c-btn--modal.c-btn--tertiary {
  font-size: 1.6rem;
}
.c-btn--fixed {
  min-width: 320px;
  width: 100%;
  font-size: 1.8rem;
}
.c-btn--search > span {
  position: relative;
  padding-left: 28px;
}
.c-btn--search > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(/assets/images/icon_search_white.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.c-btn--search:hover > span::before,
.c-btn--search:focus > span::before {
  transform: translateY(-50%);
  background: url(/assets/images/icon_search_orange.svg) no-repeat;
  background-size: contain;
}
.c-btn--list > span {
  position: relative;
  padding-left: 28px;
}
.c-btn--list > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(/assets/images/icon_list_white.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.c-btn--list:hover > span::before,
.c-btn--list:focus > span::before {
  transform: translateY(-50%);
  background: url(/assets/images/icon_list_blue.svg) no-repeat;
  background-size: contain;
}
.c-btn--plus > span {
  position: relative;
  padding-left: 20px;
}
.c-btn--plus > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(/assets/images/icon_plus.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin-top: 1px;
}
.c-btn--cross > span {
  position: relative;
  padding-left: 28px;
}
.c-btn--cross > span::before,
.c-btn--cross > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background-color: #002471;
}
.c-btn--cross > span::before {
  transform: translateY(-50%) rotate(45deg);
}
.c-btn--cross > span::after {
  transform: translateY(-50%) rotate(-45deg);
}
.c-btn--cross:disabled > span::before,
.c-btn--cross:disabled > span::after {
  background-color: #b2b2b2 !important;
}
.c-btn--login {
  width: 100%;
  height: 64px;
  font-size: 1.8rem;
  border-width: 2px;
}
.c-btn--etc {
  background-color: #fff;
  border-color: #004196;
  color: #002471;
}
.c-btn--etc:hover,
.c-btn--etc:focus {
  color: #fff;
  background-color: #004196;
  border-color: #004196;
}
.c-btn--ip {
  background-color: #1278c4;
  border-color: #1278c4;
}
.c-btn--ip:hover,
.c-btn--ip:focus {
  background-color: #fff;
  border-color: #1278c4;
  color: #0a58ad;
}
.c-btn--device {
  background-color: #596fbc;
  border-color: #596fbc;
}
.c-btn--device:hover,
.c-btn--device:focus {
  background-color: #fff;
  border-color: #596fbc;
  color: #3c50a3;
}
.c-btn--access {
  background-color: #a651a3;
  border-color: #a651a3;
}
.c-btn--access:hover,
.c-btn--access:focus {
  background-color: #fff;
  border-color: #a651a3;
  color: #893586;
}

a.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-btn-simple {
  font-size: 1.6rem;
  font-weight: 300;
  font-family: arial, sans-serif;
  color: #1a1a1a;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #b2b2b2;
  padding: 6px 14px;
  min-width: 64px;
  transition: 0.3s ease background-color;
}
.c-btn-simple--small {
  font-size: 1.2rem;
  padding: 6px 9px;
  min-width: 46px;
}
.c-btn-simple--side {
  font-size: 1.2rem;
  padding: 6px 9px;
  min-width: 30px;
  white-space: nowrap;
}
.c-btn-simple:hover,
.c-btn-simple:focus {
  background-color: #e5ecf4;
}

.c-btn-detail {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px 15px 14px;
  border: 1px solid #b2b2b2;
  font-size: 1.6rem;
  font-weight: 600;
  transition: 0.3s ease background-color;
}
@media screen and (max-width: 1032px) {
  .c-btn-detail {
    font-size: 1.4rem;
    padding: 14px 12px 13px 10px;
  }
}
.c-btn-detail:hover,
.c-btn-detail:focus {
  background-color: #e5ecf4;
}
.c-btn-detail__item {
  padding-left: 22px;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 1032px) {
  .c-btn-detail__item {
    padding-left: 20px;
  }
}
.c-btn-detail__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(/assets/images/icon_detail.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.c-btn-detail--small {
  font-size: 1.4rem;
  padding: 9px 10px;
}
@media screen and (max-width: 1032px) {
  .c-btn-detail--small {
    font-size: 1.4rem;
    padding: 9px 10px;
  }
}

.c-btn-select {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px 15px 14px;
  border: 1px solid #b2b2b2;
  font-size: 1.6rem;
  font-weight: 600;
  transition: 0.3s ease background-color;
}
@media screen and (max-width: 1032px) {
  .c-btn-select {
    font-size: 1.4rem;
    padding: 14px 12px 13px 10px;
  }
}
.c-btn-select:hover,
.c-btn-select:focus {
  background-color: #e5ecf4;
}
.c-btn-select__item {
  padding-left: 22px;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 1032px) {
  .c-btn-select__item {
    padding-left: 20px;
  }
}
.c-btn-select__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(/assets/images/icon_checked_blue.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.c-btn-select--small {
  font-size: 1.4rem;
  padding: 9px 10px;
}
@media screen and (max-width: 1032px) {
  .c-btn-select--small {
    font-size: 1.4rem;
    padding: 9px 10px;
  }
}

.c-btn-tag {
  background-color: #004196;
  border: 1px solid #004196;
  border-radius: 40px;
  padding: 6px 29px 6px 9px;
  position: relative;
  transition: 0.3s ease background-color;
}
@media screen and (max-width: 1032px) {
  .c-btn-tag {
    padding: 9px 29px 9px 9px;
  }
}
.c-btn-tag__text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  transition: 0.3s ease color;
}
.c-btn-tag__text--keyword::before {
  content: "#";
}
.c-btn-tag__delete {
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: rgba(0, 0, 0, 0);
  width: 16px;
  height: 16px;
  background-color: #fff;
  display: inline-block;
  border-radius: 50%;
  transition: 0.3s ease background-color;
}
.c-btn-tag__delete::before,
.c-btn-tag__delete::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 8px;
  border-radius: 2px;
  top: 50%;
  right: 7px;
  background-color: #004196;
  transition: 0.3s ease background-color;
}
.c-btn-tag__delete::before {
  transform: translate(0, -50%) rotate(135deg);
}
.c-btn-tag__delete::after {
  transform: translate(0, -50%) rotate(-135deg);
}
.c-btn-tag:hover,
.c-btn-tag:focus {
  background-color: #fff;
}
.c-btn-tag:hover > .c-btn-tag__text,
.c-btn-tag:focus > .c-btn-tag__text {
  color: #002471;
}
.c-btn-tag:hover > .c-btn-tag__delete,
.c-btn-tag:focus > .c-btn-tag__delete {
  background-color: #002471;
}
.c-btn-tag:hover > .c-btn-tag__delete::before,
.c-btn-tag:hover > .c-btn-tag__delete::after,
.c-btn-tag:focus > .c-btn-tag__delete::before,
.c-btn-tag:focus > .c-btn-tag__delete::after {
  background-color: #fff;
}

.c-btn-image {
  min-width: 20px;
  transition: 0.3s ease opacity;
}
.c-btn-image:hover,
.c-btn-image:focus {
  opacity: 0.8;
}
.c-btn-image:disabled {
  opacity: 0.3;
  cursor: default;
}

.c-btn-print {
  padding-left: 20px;
  position: relative;
}
.c-btn-print::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(/assets/images/icon_print.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.c-btn-print span {
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: underline;
  line-height: 1.6;
  color: #002471;
  white-space: nowrap;
}
.c-btn-print:hover span,
.c-btn-print:focus span {
  text-decoration: none;
}

.c-btn-prev {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  padding-left: 20px;
  transition: 0.3s ease color;
  position: relative;
}
.c-btn-prev:hover,
.c-btn-prev:focus {
  color: #002471;
}
.c-btn-prev::before,
.c-btn-prev::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 10px;
  background-color: #002471;
}
.c-btn-prev::before {
  border-radius: 3px 3px 0 0;
  transform: translate(0, -50%) rotate(135deg);
  left: 4px;
  margin-top: 3px;
}
.c-btn-prev::after {
  border-radius: 0 0 3px 3px;
  transform: translate(0, -50%) rotate(-135deg);
  left: 4px;
  margin-top: -3px;
}
.c-btn-prev + .c-text-crumb {
  margin-left: 16px;
}

.c-btn-next {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  padding-left: 20px;
  transition: 0.3s ease color;
  position: relative;
}
.c-btn-next:hover,
.c-btn-next:focus {
  color: #002471;
}
.c-btn-next::before,
.c-btn-next::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 10px;
  background-color: #002471;
}
.c-btn-next::before {
  border-radius: 3px 3px 0 0;
  transform: translate(0, -50%) rotate(45deg);
  left: 4px;
  margin-top: 3px;
}
.c-btn-next::after {
  border-radius: 0 0 3px 3px;
  transform: translate(0, -50%) rotate(135deg);
  left: 4px;
  margin-top: -3px;
}
.c-btn-next + .c-text-crumb {
  margin-left: 16px;
}

.c-btn-pdf {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #b2b2b2;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
  transition: 0.3s ease background-color;
}
.c-btn-pdf:hover,
.c-btn-pdf:focus {
  background-color: #e5ecf4;
}

.c-btn-block {
  background-color: #fff;
  border: 1px solid #b2b2b2;
  color: #002471;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 13px 48px 13px 16px;
  border-radius: 8px;
  min-height: 52px;
  width: 100%;
  text-align: left;
  position: relative;
  transition: 0.3s ease background-color;
}
.c-btn-block:hover,
.c-btn-block:focus {
  background-color: #e5ecf4;
}
.c-btn-block::before,
.c-btn-block::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 10px;
  background-color: #002471;
}
.c-btn-block::before {
  border-radius: 3px 3px 0 0;
  transform: translate(0, -50%) rotate(45deg);
  right: 20px;
  margin-top: 3px;
}
.c-btn-block::after {
  border-radius: 0 0 3px 3px;
  transform: translate(0, -50%) rotate(135deg);
  right: 20px;
  margin-top: -3px;
}
@media screen and (max-width: 1032px) {
  .c-btn-block + .p-lyt-detail__item {
    margin-top: 32px;
  }
}

.c-link {
  color: #002471;
  text-decoration: underline;
}
.c-link:hover,
.c-link:focus {
  text-decoration: none;
}

button.c-link {
  text-align: left;
  line-height: 1.5;
}

.c-search {
  display: flex;
  position: relative;
}
.c-search__label {
  position: relative;
}
.c-search__label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: url(/assets/images/icon_search.svg) no-repeat;
  background-size: contain;
  width: 19px;
  height: 19px;
  pointer-events: none;
}
.c-search__input {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 19px 50px 18px 40px;
  border: 1px solid #b2b2b2;
  font-size: 1.6rem;
  color: #1a1a1a;
  box-shadow: none;
  transition: 0.3s ease box-shadow;
}
@media screen and (max-width: 1032px) {
  .c-search__input {
    padding: 19px 50px 18px 40px;
  }
}
.c-search__input::placeholder {
  color: #666;
  font-weight: 300;
}
.c-search__input:focus {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}
.c-search__btn {
  background-color: #cc4500;
  color: #fff;
  border-radius: 0 8px 8px 0;
  padding: 15px 15px 14px;
  border: 1px solid #db7d4d;
  font-size: 1.6rem;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s ease background-color;
}
.c-search__btn:hover,
.c-search__btn:focus {
  background-color: #db7d4d;
}
@media screen and (max-width: 1032px) {
  .c-search__btn {
    padding: 14px 12px 13px;
    font-size: 1.4rem;
  }
}
.c-search__delete {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: transparent;
  font-size: 1px;
  background: #4d4d4d;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease opacity;
}
.c-search__delete::before,
.c-search__delete::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  border-radius: 3px;
  top: 50%;
  right: 9px;
  background-color: #fff;
}
.c-search__delete::before {
  transform: translate(0, -50%) rotate(135deg);
}
.c-search__delete::after {
  transform: translate(0, -50%) rotate(-135deg);
}
.c-search--box .c-search__input {
  min-width: 248px;
  padding: 15px 15px 14px 40px;
  border-radius: 8px 0 0 8px;
  border-right: 0;
}
@media screen and (max-width: 1032px) {
  .c-search--box .c-search__input {
    width: 184px;
    min-width: 184px;
    padding: 14px 12px 13px 40px;
  }
}
.c-search--small .c-search__input {
  padding: 8px 32px 8px 32px;
  font-size: 1.4rem;
}
.c-search--small .c-search__label::before {
  left: 9px;
  width: 16px;
  height: 16px;
}
.c-search--small .c-search__delete {
  width: 16px;
  height: 16px;
  right: 10px;
}
.c-search--small .c-search__delete::before,
.c-search--small .c-search__delete::after {
  width: 2px;
  height: 8px;
  right: 7px;
}

.c-search__label:has(.c-search__input:not(:placeholder-shown))
  + .c-search__delete {
  visibility: visible;
  opacity: 1;
}

.c-swipe {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (max-width: 1032px) {
  .c-swipe {
    display: block;
  }
}
.p-lyt-ratings-party--long .c-swipe {
  top: 34%;
  height: auto;
}
.c-swipe.is-active {
  cursor: default;
  z-index: 10;
}
.c-swipe.is-active img {
  opacity: 1;
}
@keyframes swipeAnim {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(calc(-50% - 10px), -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
.c-swipe img {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s ease opacity;
  pointer-events: none;
  animation: swipeAnim 1s infinite ease-in-out;
}

.c-input-text {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 14px 12px;
  height: 48px;
  border: 1px solid #b2b2b2;
  font-size: 1.6rem;
  color: #1a1a1a;
  box-shadow: none;
  transition: 0.3s ease box-shadow;
}
@media screen and (max-width: 1032px) {
  .c-input-text {
    padding: 14px 12px;
    height: 44px;
  }
}
.c-input-text::placeholder {
  color: #666;
  font-weight: 300;
}
.c-input-text:focus {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}
.c-input-text--small {
  height: 36px;
}

.c-input-login {
  background-color: #f8f8f8;
  border: 1px solid #b2b2b2;
  border-radius: 8px;
  position: relative;
  transition: 0.3s ease border-color;
}
.c-input-login:has(.is-error) {
  border-color: #c24040;
}
.c-input-login__item {
  appearance: none;
  -moz-appearance: none;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 8px;
  font-size: 1.6rem;
  padding: 15px 16px;
  line-height: 1.6;
  width: 100%;
  transition: 0.3s ease background-color;
}
.c-input-login__item.is-error {
  background-color: #f9ecec;
}
.c-input-login__password {
  position: absolute;
  top: 50%;
  right: 0;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-input-login__password img {
  width: 20px;
  height: 20px;
}
.c-input-login + .p-login__hdg {
  margin-top: 24px;
}

.c-check__label {
  position: relative;
  padding-left: 36px;
  font-size: 1.6rem;
  font-weight: 300;
  display: inline-block;
  cursor: pointer;
}
.c-check__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background-color: #f8f8f8;
  border: 1px solid #b2b2b2;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  transition: 0.3s ease background-color;
}
.c-check__label::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/assets/images/icon_checked.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 16px;
  height: 12px;
  opacity: 0;
  transition: 0.3s ease opacity;
}
.c-check__input {
  -moz-appearance: none;
  appearance: none;
  position: absolute;
}
.c-check__input:focus + .c-check__label::before {
  border: 2px solid #7396c5;
}
.c-check__input:checked + .c-check__label::before {
  background-color: #004196;
  border-color: #7396c5;
}
.c-check__input:checked + .c-check__label::after {
  opacity: 1;
}
.c-check__input:disabled + .c-check__label {
  cursor: default;
  color: #b2b2b2;
}
.c-check__input:disabled + .c-check__label::before {
  background-color: #f8f8f8;
  border-color: #e5e5e5;
}
.c-check--middle .c-check__label {
  padding-left: 26px;
}
.c-check--middle .c-check__label::before {
  width: 18px;
  height: 18px;
}
.c-check--middle .c-check__label::after {
  left: 3px;
  width: 12px;
  height: 10px;
}
.c-check--small .c-check__label {
  padding-left: 26px;
}
.c-check--small .c-check__label::before {
  width: 16px;
  height: 16px;
}
.c-check--small .c-check__label::after {
  left: 3px;
  width: 10px;
  height: 8px;
}

.c-check-single {
  width: 24px;
  height: 24px;
  position: relative;
  font-size: 1.6rem;
  font-weight: 300;
  cursor: pointer;
}
.c-check-single::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background-color: #f8f8f8;
  border: 1px solid #b2b2b2;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  transition: 0.3s ease background-color;
}
.c-check-single::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/assets/images/icon_checked.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 16px;
  height: 12px;
  opacity: 0;
  transition: 0.3s ease opacity;
}
.c-check-single .c-check-single__input {
  -moz-appearance: none;
  appearance: none;
  position: absolute;
}
.c-check-single:has(.c-check-single__input:focus)::before {
  border: 2px solid #7396c5;
}
.c-check-single:has(.c-check-single__input:checked)::before {
  background-color: #004196;
  border-color: #7396c5;
}
.c-check-single:has(.c-check-single__input:checked)::after {
  opacity: 1;
}
.c-check-single:has(.c-check-single__input:disabled)::before {
  background-color: #f8f8f8;
  border-color: #e5e5e5;
}
.c-check-single--middle::before {
  width: 18px;
  height: 18px;
}
.c-check-single--middle::after {
  left: 3px;
  width: 12px;
  height: 10px;
}
.c-check-single--small::before {
  width: 16px;
  height: 16px;
}
.c-check-single--small::after {
  left: 3px;
  width: 10px;
  height: 8px;
}

.c-select {
  position: relative;
  display: inline-block;
  border: 1px solid #b2b2b2;
  border-radius: 8px;
  background-color: #f8f8f8;
}
.c-select-label {
  padding-right: 20px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #4d4d4d;
  display: inline-block;
  white-space: nowrap;
}
.c-select-label--small {
  font-size: 1.2rem;
  padding-right: 12px;
}
.c-select::before {
  position: absolute;
  top: 50%;
  right: 12px;
  display: block;
  width: 0;
  height: 0;
  border-top: 5px solid #1a1a1a;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-radius: 2px;
  content: "";
  pointer-events: none;
  transform: translateY(-50%);
}
.c-select select {
  -moz-appearance: none;
  appearance: none;
  padding: 0 24px 0 12px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  height: 48px;
  background-color: #f8f8f8;
}
.c-select select:focus {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}
.c-select.is-disabled {
  border-color: #e5e5e5;
  background-color: #f8f8f8;
}
.c-select.is-disabled::before {
  border-top-color: #b2b2b2;
}
.c-select.is-disabled + label {
  color: #b2b2b2;
}
.c-select--middle select {
  height: 44px;
}
.c-select--small select {
  height: 36px;
  font-size: 1.4rem;
}
.c-select--presence select {
  min-width: 96px;
}
.c-select--presence.c-select--presence select {
  min-width: 80px;
}

.c-pagenation {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1;
}
.c-pagenation::before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #e5ecf4;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  transition: 0.2s ease-out transform, 0.3s ease-out opacity;
}
.c-pagenation:hover::before,
.c-pagenation:focus::before {
  opacity: 1;
}
.c-pagenation--num {
  font-family: arial, sans-serif;
  font-size: 1.4rem;
  color: #1a1a1a;
  font-weight: 300;
}
.c-pagenation--num.is-active {
  color: #fff;
  font-weight: 600;
}
.c-pagenation--num.is-active::before {
  background-color: #004196;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.c-pagenation--icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-pagenation:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.c-pagenation-num__label {
  font-size: 1.4rem;
  padding-right: 8px;
}
.c-pagenation-num__total {
  padding-left: 6px;
  position: relative;
  font-size: 1.6rem;
}
.c-pagenation-num__total::before {
  content: "/";
  padding-right: 6px;
}

mark.c-mark {
  background-color: #66ffff;
}
mark.c-mark--color1 {
  background-color: #66ffff;
}
mark.c-mark--color2 {
  background-color: #ffff33;
}
mark.c-mark--color3 {
  background-color: #66ff33;
}
mark.c-mark--color4 {
  background-color: #ff6666;
}
mark.c-mark--color5 {
  background-color: #9999ff;
}
mark.c-mark--color6 {
  background-color: #ff9933;
}
mark.c-mark--color7 {
  background-color: #669900;
}
mark.c-mark--color8 {
  background-color: #ff3333;
}
mark.c-mark--color9 {
  background-color: #0099ff;
}
mark.c-mark--color10 {
  background-color: #cccc66;
}
mark.c-mark--color11 {
  background-color: #339966;
}
mark.c-mark-text {
  color: #f00;
}

span.c-mark {
  background-color: initial;
}

.p-article {
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid #d9d9d9;
}
.p-article + .p-article {
  margin-top: 64px;
}
.p-article__main {
  margin-top: 32px;
}
.p-article__main > :first-child {
  margin-top: 0;
}
.p-article__main > :last-child {
  margin-bottom: 0;
}
.p-article__main__history p,
.p-article__main__direct p {
  margin-top: 24px;
  font-size: 1.6rem;
  color: #1a1a1a;
  line-height: 1.8;
}

.p-article-label__head {
  display: flex;
  align-items: center;
}
.p-article-label__date {
  font-size: 1.4rem;
  color: #4d4d4d;
  margin-right: 5px;
  white-space: nowrap;
}
.p-article-label__tag {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  padding: 0 3px;
  border-radius: 2px;
}
.p-article-label__tag--mainichi {
  background-color: #0078c6;
}
.p-article-label__tag--economist {
  background-color: #c2191f;
}
.p-article-label__tag--themainichi {
  background-color: #0078c6;
}
.p-article-label__tag--elementary {
  background-color: #0078c6;
}
.p-article-label__info {
  margin-top: 8px;
  font-size: 1.4rem;
  color: #4d4d4d;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-login {
  width: 484px;
  margin: 0 auto;
  padding: 117px 0;
}
.p-login__inner {
  padding: 64px 42px 24px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
@media screen and (max-width: 1032px) {
  .p-login__inner {
    padding: 64px 40px 24px;
  }
}
.p-login__inner__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 1032px) {
  .p-login__inner__logo {
    margin-bottom: 32px;
  }
}
.p-login__inner__logo__text {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-login__inner__logo__text__sub {
  font-size: 1.3rem;
  font-weight: 600;
  border: 1px solid;
  border-radius: 2px;
  margin-left: 6px;
  line-height: 1;
  padding: 3px 4px 2px;
  margin-top: -1px;
}
.p-login__inner__logo + .p-login__alert {
  margin-top: -10px;
}
.p-login__inner__main__block + .p-login__inner__main__block {
  margin-top: 24px;
}
.p-login__inner__main__block + .p-login__btn {
  margin-top: 24px;
}
.p-login__inner__main > :first-child {
  margin-top: 0;
}
.p-login__inner__main > :first-child.p-login__inner__main__block {
  margin-top: -10px;
}
.p-login__inner__main > :last-child {
  margin-bottom: 0;
}
.p-login__link {
  margin-top: 20px;
  text-align: center;
}
.p-login__link .c-link {
  font-weight: 600;
}
.p-login__btn {
  margin-top: 40px;
}
.p-login__hdg {
  font-size: 1.6rem;
  color: #4d4d4d;
  font-weight: 600;
}
.p-login__hdg + .c-input-login {
  margin-top: 8px;
}
.p-login__text {
  text-align: center;
  font-size: 1.4rem;
  color: #1a1a1a;
  line-height: 1.6;
  margin-top: 32px;
  margin-left: -24px;
  margin-right: -24px;
  letter-spacing: -0.07em;
  font-weight: 300;
  white-space: nowrap;
}
.p-login__text + .p-login__btn {
  margin-top: 12px;
}
.p-login__error {
  font-size: 1.4rem;
  color: #c24040;
  margin-top: 8px;
}
.p-login__error[aria-hidden="true"] {
  display: none;
}
.p-login__alert {
  background-color: #f9ecec;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 34px;
}
.p-login__alert__hdg {
  padding-left: 23px;
  position: relative;
}
.p-login__alert__hdg::before {
  content: "";
  display: block;
  position: absolute;
  width: 19px;
  height: 19px;
  background: url(/assets/images/icon_alert.svg) no-repeat;
  background-size: contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-login__alert__hdg strong {
  font-size: 1.4rem;
  font-weight: 600;
  color: #c24040;
  line-height: 1.5;
}
.p-login__alert__text {
  font-size: 1.2rem;
  font-weight: 300;
  color: #c24040;
  line-height: 1.5;
  margin-top: 6px;
}
.p-login--ip .p-login__inner__logo__text {
  color: #0a58ad;
}
.p-login--ip .p-login__inner__logo__text__sub {
  color: #0a58ad;
  border-color: #0a58ad;
}
.p-login--device .p-login__inner__logo__text {
  color: #3c50a3;
}
.p-login--device .p-login__inner__logo__text__sub {
  color: #3c50a3;
  border-color: #3c50a3;
}
.p-login--access {
  padding: 83px 0;
}
.p-login--access .p-login__inner__logo__text {
  color: #893586;
}
.p-login--access .p-login__inner__logo__text__sub {
  color: #893586;
  border-color: #893586;
}

.p-link-top {
  position: fixed;
  right: 30px;
  bottom: 36px;
}
@media screen and (max-width: 1032px) {
  .p-link-top {
    right: 20px;
    bottom: 25px;
  }
}
.p-link-top.is-hidden .p-link-top__item {
  opacity: 0;
  visibility: hidden;
}
.p-link-top.is-bottom {
  position: absolute;
}
.p-link-top__item {
  width: 130px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  color: #002471;
  font-family: arial, sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  border-radius: 20px;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  visibility: visible;
  opacity: 1;
  transition: 0.2s ease background-color, 0.2s ease opacity, 0.2s ease
    visibility;
}
.p-link-top__item:hover,
.p-link-top__item:focus {
  background-color: #e5ecf4;
}
.p-link-top__item::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/assets/images/icon_arrow_top.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -1px;
}
.p-link-top.is-banner {
  bottom: 125px;
}
@media screen and (max-width: 1032px) {
  .p-link-top.is-banner {
    bottom: 116px;
  }
}
.p-link-top.is-banner.is-bottom {
  bottom: 25px;
}

.p-lyt-header + .p-lyt-header {
  margin-top: 16px;
}
.p-lyt-header--col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-lyt-header--line {
  display: flex;
  align-items: center;
  gap: 24px;
}
.p-lyt-header--start {
  align-items: flex-start;
}
.p-lyt-header--full {
  padding: 24px 28px 16px;
}
.p-lyt-header__col + .p-lyt-header__col {
  margin-left: 10px;
}
.p-lyt-header__col--line {
  display: flex;
}
.p-lyt-header__col__line {
  display: flex;
}
.p-lyt-header__col__line > :nth-child(n) {
  margin-left: 8px;
}
.p-lyt-header__col__line > :first-child {
  margin-left: 0;
}
.p-lyt-header__col > .c-hdg-page {
  margin-top: 0;
}
.p-lyt-header__sub {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1a1a1a;
}

.p-lyt-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-lyt-between > :first-child {
  margin-top: 0;
}

.p-lyt-content {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 0 40px;
}
.p-lyt-content__primary {
  flex: 1;
}
.p-lyt-content__secondary {
  width: 240px;
}

.p-lyt-result__inner--col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-lyt-result__inner--end {
  justify-content: flex-end;
  margin-top: 8px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-result__inner--single {
    justify-content: flex-end;
  }
}
.p-lyt-result__inner + .p-lyt-result__inner {
  margin-top: 12px;
}
.p-lyt-result__inner__item {
  display: flex;
  flex-direction: column;
  align-self: baseline;
}
.p-lyt-result__inner__item > .p-list-pagenation {
  margin-top: 0;
}
.p-lyt-result__inner__item--col {
  flex-direction: row;
  gap: 8px;
}
.p-lyt-result__inner + .p-lyt-result__content {
  margin-top: 16px;
}
.p-lyt-result--full {
  background-color: #f4f4f4;
}
.p-lyt-result__content > :first-child {
  margin-top: 24px;
}
.p-lyt-result__unit {
  text-align: right;
  font-size: 1.6rem;
  font-weight: 300;
}
.p-lyt-result__unit span {
  margin-left: 6px;
}
.p-lyt-result__unit + .c-hdg-lv2-link {
  margin-top: 12px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-result__unit {
    margin-bottom: 8px;
  }
}

.p-lyt-detail {
  display: flex;
  justify-content: space-between;
}
.p-lyt-detail__primary {
  background-color: #f4f4f4;
  flex: 1;
  padding: 40px;
  overflow-x: hidden;
}
@media screen and (max-width: 1032px) {
  .p-lyt-detail__primary {
    padding: 24px 24px 56px;
  }
}
.p-lyt-detail__secondary {
  background-color: #fff;
  width: 320px;
  padding: 24px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-detail__secondary {
    display: none;
  }
}
.p-lyt-detail__secondary__hdg {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
}
.p-lyt-detail__hdg {
  font-size: 3.2rem;
  font-weight: 600;
  color: #1a1a1a;
}
@media screen and (max-width: 1032px) {
  .p-lyt-detail__hdg {
    font-size: 2.8rem;
  }
}
.p-lyt-detail__unit {
  text-align: right;
  margin-top: -16px;
  margin-bottom: 6px;
  font-size: 1.6rem;
  font-weight: 300;
}
.p-lyt-detail__unit span {
  margin-left: 6px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-detail__unit {
    margin-top: 0;
    margin-bottom: 16px;
  }
}
.p-lyt-detail__item + .p-lyt-detail__item {
  margin-top: 64px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-detail__item + .p-lyt-detail__item {
    margin-top: 56px;
  }
}
.p-lyt-detail__info {
  margin-top: 32px;
}
.p-lyt-detail__info__item {
  display: flex;
  border-bottom: 1px solid #d9d9d9;
  align-items: baseline;
  padding: 12px 0;
}
.p-lyt-detail__info__col {
  padding-top: 12px;
}
.p-lyt-detail__info__hdg {
  font-size: 1.6rem;
  font-weight: 600;
  color: #4d4d4d;
  width: 104px;
}
.p-lyt-detail__info__text {
  font-size: 1.6rem;
  color: #1a1a1a;
}
.p-lyt-detail__info__more {
  margin-top: 8px;
  position: relative;
}
.p-lyt-detail__info__more__text {
  font-size: 1.6rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-lyt-detail__info__more__text.is-active {
  display: block;
  overflow: visible;
}
.p-lyt-detail__info__more__text__item {
  display: block;
}
.p-lyt-detail__info__more__btn {
  font-size: 1.6rem;
  position: absolute;
  bottom: 5px;
  right: 0;
  background-color: #fff;
}
.p-lyt-detail__info__more__btn.is-hidden {
  display: none;
}
.p-lyt-detail__info__more__btn span {
  color: #002471;
  text-decoration: underline;
}
.p-lyt-detail__info__more__btn span:hover,
.p-lyt-detail__info__more__btn span:focus {
  text-decoration: none;
}
.p-lyt-detail__info__more__btn::before {
  content: "…";
  text-decoration: none;
  color: #1a1a1a;
}
.p-lyt-detail__info__more__btn:after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 18px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
  top: 0;
  left: -10px;
}
.p-lyt-detail__info--wide .p-lyt-detail__info__hdg {
  width: 120px;
}
.p-lyt-detail__info--wide .p-lyt-detail__info__col {
  display: flex;
}
.p-lyt-detail__info--wide .p-lyt-detail__info__more {
  flex: 1;
}
.p-lyt-detail__info--wide .p-lyt-detail__info__more__text {
  -webkit-line-clamp: 4;
}

.p-lyt-utility--between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-lyt-utility--between .p-lyt-utility__item > :first-child {
  margin-top: 0;
}
.p-lyt-utility + .p-lyt-header {
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid #d9d9d9;
}

.p-lyt-ratings {
  background-color: #f4f4f4;
  position: relative;
  height: 100%;
  padding: 24px 40px 40px;
}
.p-lyt-ratings--long {
  padding: 40px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-ratings--long {
    padding: 24px 24px 40px;
  }
}
.p-lyt-ratings--scroll::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
  pointer-events: none;
  transition: 0.3s ease opacity;
  opacity: 0;
  z-index: 1;
}
.p-lyt-ratings--scroll.is-overlay::before {
  opacity: 1;
}
.p-lyt-ratings--scroll .p-lyt-ratings__inner {
  margin-right: -40px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-ratings--scroll .p-lyt-ratings__inner {
    margin-right: -24px;
  }
}
.p-lyt-ratings--scroll .p-lyt-ratings__inner__item {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 10px;
  padding-right: 40px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-ratings--scroll .p-lyt-ratings__inner__item {
    padding-right: 24px;
  }
}
.p-lyt-ratings--scroll .p-lyt-ratings__inner__item__graph {
  overflow-x: auto;
}
.p-lyt-ratings--scroll .p-lyt-ratings__inner__item::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.p-lyt-ratings--scroll .p-lyt-ratings__inner__item::-webkit-scrollbar-track {
  background: #e5e5e5;
  border-radius: 10px;
}
.p-lyt-ratings--scroll .p-lyt-ratings__inner__item::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
.p-lyt-ratings--scroll
  .p-lyt-ratings__inner__item::-webkit-scrollbar-thumb:hover {
  background: #333;
}
.p-lyt-ratings__note {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  margin-top: -22px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-ratings__note {
    margin-top: -8px;
  }
}

.p-lyt-ratings-cabinet {
  background-color: #f4f4f4;
  position: relative;
  height: 100%;
  padding: 24px 40px 40px;
  overflow-x: hidden;
}
.p-lyt-ratings-cabinet--long {
  padding: 24px 40px 40px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-ratings-cabinet--long {
    padding: 24px 24px 40px;
  }
}
.p-lyt-ratings-cabinet--scroll::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
  pointer-events: none;
  transition: 0.3s ease opacity;
  opacity: 0;
  z-index: 2;
}
.p-lyt-ratings-cabinet--scroll.is-overlay::before {
  opacity: 1;
}
.p-lyt-ratings-cabinet--scroll .p-lyt-ratings-cabinet__inner {
  margin-left: -40px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-ratings-cabinet--scroll .p-lyt-ratings-cabinet__inner {
    margin-left: -24px;
  }
}
.p-lyt-ratings-cabinet--scroll .p-lyt-ratings-cabinet__inner__item {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 10px;
  padding-left: 40px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-ratings-cabinet--scroll .p-lyt-ratings-cabinet__inner__item {
    padding-left: 24px;
  }
}
.p-lyt-ratings-cabinet--scroll .p-lyt-ratings-cabinet__inner__item--right {
  direction: rtl;
}
.p-lyt-ratings-cabinet--scroll .p-lyt-ratings-cabinet__inner__item__graph {
  overflow-x: auto;
}
.p-lyt-ratings-cabinet--scroll
  .p-lyt-ratings-cabinet__inner__item::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.p-lyt-ratings-cabinet--scroll
  .p-lyt-ratings-cabinet__inner__item::-webkit-scrollbar-track {
  background: #e5e5e5;
  border-radius: 10px;
}
.p-lyt-ratings-cabinet--scroll
  .p-lyt-ratings-cabinet__inner__item::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
.p-lyt-ratings-cabinet--scroll
  .p-lyt-ratings-cabinet__inner__item::-webkit-scrollbar-thumb:hover {
  background: #333;
}
.p-lyt-ratings-cabinet__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-ratings-cabinet__head {
    padding: 0;
  }
}
.p-lyt-ratings-cabinet__graph {
  position: relative;
}

.p-lyt-ratings-party {
  background-color: #f4f4f4;
  position: relative;
  height: 100%;
  padding: 24px 40px 40px;
  overflow-x: hidden;
  z-index: 1;
}
.p-lyt-ratings-party .recharts-responsive-container {
  position: relative;
  z-index: 1;
}
.p-lyt-ratings-party__note {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  margin-top: -14px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-ratings-party__note {
    margin-top: -10px;
    margin-bottom: 28px;
  }
}
.p-lyt-ratings-party--long {
  padding: 24px 40px 40px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-ratings-party--long {
    padding: 24px 24px 40px;
  }
}
.p-lyt-ratings-party--scroll::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
  pointer-events: none;
  transition: 0.3s ease opacity;
  opacity: 0;
  z-index: 2;
}
.p-lyt-ratings-party--scroll.is-overlay::before {
  opacity: 1;
}
.p-lyt-ratings-party--scroll .p-lyt-ratings-party__inner {
  margin-right: -40px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-ratings-party--scroll .p-lyt-ratings-party__inner {
    margin-right: -24px;
  }
}
.p-lyt-ratings-party--scroll .p-lyt-ratings-party__inner__item {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 10px;
  padding-right: 40px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-ratings-party--scroll .p-lyt-ratings-party__inner__item {
    padding-left: 24px;
  }
}
.p-lyt-ratings-party--scroll .p-lyt-ratings-party__inner__item__graph {
  overflow-x: auto;
}
.p-lyt-ratings-party--scroll
  .p-lyt-ratings-party__inner__item::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.p-lyt-ratings-party--scroll
  .p-lyt-ratings-party__inner__item::-webkit-scrollbar-track {
  background: #e5e5e5;
  border-radius: 10px;
}
.p-lyt-ratings-party--scroll
  .p-lyt-ratings-party__inner__item::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
.p-lyt-ratings-party--scroll
  .p-lyt-ratings-party__inner__item::-webkit-scrollbar-thumb:hover {
  background: #333;
}
.p-lyt-ratings-party__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 36px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-ratings-party__head {
    padding: 0 0 32px;
  }
}
.p-lyt-ratings-party__graph {
  position: relative;
}

.p-lyt-wide {
  display: flex;
  justify-content: space-between;
  min-height: 100vh;
}
@media screen and (max-width: 1032px) {
  .p-lyt-wide {
    min-height: 60vh;
  }
}
.p-lyt-wide__primary {
  background-color: #f4f4f4;
  flex: 1;
  overflow-x: hidden;
  height: auto;
}
.p-lyt-wide__primary__notice {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1a1a1a;
}
.p-lyt-wide__primary__notice .p-noresult {
  margin-top: 0;
}
.p-lyt-wide__secondary {
  background-color: #fff;
  width: 280px;
}
@media screen and (max-width: 1032px) {
  .p-lyt-wide__secondary {
    display: none;
  }
}
.p-lyt-wide__list {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.p-lyt-wide__list::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.p-lyt-wide__list::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.p-lyt-wide__list::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
.p-lyt-wide__list::-webkit-scrollbar-thumb:hover {
  background: #333;
}
.p-lyt-wide__list__item__btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 16px 52px 16px 40px;
  position: relative;
  border-bottom: 1px solid #d9d9d9;
  background-color: rgba(255, 255, 255, 0);
  transition: 0.3s ease background-color, 0.3s ease border-color;
}
.p-lyt-wide__list__item__btn::before,
.p-lyt-wide__list__item__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 2px;
  height: 7px;
  background-color: #1a1a1a;
}
.p-lyt-wide__list__item__btn::before {
  border-radius: 0 0 3px 3px;
  transform: translate(0, -50%) rotate(45deg);
  right: 24px;
  margin-top: 2px;
}
.p-lyt-wide__list__item__btn::after {
  border-radius: 0 0 3px 3px;
  transform: translate(0, -50%) rotate(135deg);
  right: 24px;
  margin-top: -2px;
}
.p-lyt-wide__list__item__btn__hdg {
  color: #1a1a1a;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  transition: 0.3s ease color;
}
.p-lyt-wide__list__item__btn__text {
  color: #4d4d4d;
  font-size: 1.4rem;
  margin-top: 4px;
}
.p-lyt-wide__list__item__btn:hover,
.p-lyt-wide__list__item__btn:focus,
.p-lyt-wide__list__item__btn.is-active {
  background-color: #e5ecf4;
}
.p-lyt-wide__list__item__btn:hover .p-lyt-wide__list__item__btn__hdg,
.p-lyt-wide__list__item__btn:focus .p-lyt-wide__list__item__btn__hdg,
.p-lyt-wide__list__item__btn.is-active .p-lyt-wide__list__item__btn__hdg {
  color: #002471;
}

.p-list-articles {
  border-bottom: 1px solid #d9d9d9;
}
.p-list-articles__item {
  border-top: 1px solid #d9d9d9;
  background-color: #fff;
  position: relative;
  transition: 0.3s ease background-color;
}
.p-list-articles__item:has(.c-check-single__input:checked) {
  background-color: #f2f5fa;
}
.p-list-articles__item__num {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f0f0f0;
  color: #1a1a1a;
  font-size: 1.4rem;
  padding: 3px 4px;
  line-height: 1;
}
.p-list-articles__item__num label {
  cursor: pointer;
}
.p-list-articles__item__main {
  display: flex;
}
.p-list-articles__item__main__num {
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.p-list-articles__item__main__check {
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-list-articles__item__main__text {
  flex: 1;
  padding: 24px 0 24px 16px;
}
.p-list-articles__item__main__text--history {
  padding: 12px 16px;
}
.p-list-articles__item__main__pdf {
  width: 92px;
  display: flex;
  justify-content: center;
  padding-top: 24px;
}
.p-list-articles__hdg {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-list-articles__hdg__link {
  color: #002471;
  text-decoration: underline;
}
.p-list-articles__hdg__link:hover,
.p-list-articles__hdg__link:focus {
  text-decoration: none;
}
.p-list-articles__label {
  margin-top: 8px;
  display: flex;
  align-items: center;
}
.p-list-articles__label__date {
  font-size: 1.4rem;
  color: #4d4d4d;
  margin-right: 5px;
  white-space: nowrap;
}
.p-list-articles__label__tag {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  padding: 0 3px;
  border-radius: 2px;
}
.p-list-articles__label__tag--mainichi {
  background-color: #0078c6;
}
.p-list-articles__label__tag--economist {
  background-color: #c2191f;
}
.p-list-articles__label__tag--themainichi {
  background-color: #0078c6;
}
.p-list-articles__label__tag--elementary {
  background-color: #0078c6;
}
.p-list-articles__label__info {
  margin-left: 8px;
  font-size: 1.4rem;
  color: #4d4d4d;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-list-articles__desc {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-list-articles__desc--history {
  display: block;
  overflow: visible;
}

.p-list-col__item + .p-list-col__item {
  margin-top: 12px;
}

.p-list-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.p-list-row__item {
  white-space: nowrap;
}

.p-list-check {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
}
.p-list-check--col4 {
  gap: 16px 0;
}
.p-list-check--col4 .p-list-check__item {
  width: 25%;
}
.p-list-check--week {
  gap: 20px;
}
.p-list-check--middle {
  gap: 24px;
}
.p-list-check--media {
  gap: 40px;
}

.p-list-select {
  display: flex;
  gap: 24px;
}
.p-list-select__item label {
  font-size: 1.4rem;
  padding-right: 8px;
}

.p-list-link {
  margin-top: 32px;
}
.p-list-link__item {
  display: block;
}
.p-list-link__item + .p-list-link__item {
  margin-top: 24px;
}

.p-list-media {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 3%;
}
.p-list-media__item {
  width: 22.75%;
}
.p-list-media__item__link {
  display: flex;
  flex-direction: column-reverse;
}
.p-list-media__item__link__text {
  color: #002471;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: underline;
  margin-top: 8px;
}
.p-list-media__item__link__img {
  background-color: #dadada;
  width: 100%;
  height: 258px;
  overflow: hidden;
}
.p-list-media__item__link__img img {
  width: 100%;
  aspect-ratio: 182 / 129;
  object-fit: contain;
  height: 100%;
  transform: scale(1);
  transition: 0.3s ease transform;
}
.p-list-media__item__link:hover .p-list-media__item__link__text,
.p-list-media__item__link:focus .p-list-media__item__link__text {
  text-decoration: none;
}
.p-list-media__item__link:hover .p-list-media__item__link__img img,
.p-list-media__item__link:focus .p-list-media__item__link__img img {
  transform: scale(1.1363);
}

.p-list-pagenation {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.p-list-pagenation__inner {
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-list-pagenation__inner__item--prev {
  margin-right: 6px;
}
.p-list-pagenation__inner__item--next {
  margin-left: 6px;
}

.p-list-keyword__hdg {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4d4d4d;
}
.p-list-keyword__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}
.p-list-keyword__inner__item {
  font-size: 1.4rem;
  color: #002471;
  line-height: 1.6;
  white-space: nowrap;
}

.p-loading {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.p-loading + * {
  margin-top: 0;
  padding-top: 0;
}
.p-loading--top {
  align-items: flex-start;
}
.p-loading__inner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  background: conic-gradient(
    from 0deg,
    rgba(0, 188, 223, 0.94) 0%,
    #00bcdf 15%,
    #4e80c9 50%,
    #e84398 85%,
    #00bcdf 100%
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 7px),
    #000 calc(100% - 7px)
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 7px),
    #000 calc(100% - 7px)
  );
}
.p-loading--graph {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(244, 244, 244, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.p-loading--graph.is-active {
  opacity: 1;
  pointer-events: auto;
}
.p-loading--graph .p-loading__inner {
  margin-top: -378px;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.p-noresult {
  margin-top: 64px;
}
.p-noresult__inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.p-noresult__inner__text {
  font-size: 1.6rem;
  color: #1a1a1a;
  font-weight: 300;
  line-height: 1.6;
}

.p-media {
  margin-top: 24px;
}

.p-modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.25);
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease opacity, 0.3s ease visibility;
}
@media screen and (max-width: 1032px) {
  .p-modal {
    align-items: end;
  }
}
.p-modal.is-active {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1032px) {
  .p-modal.is-active .p-modal__inner {
    transform: translateY(0);
  }
}
.p-modal__header {
  width: 100%;
  height: 68px;
  display: flex;
  justify-content: end;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
}
.p-modal__close {
  width: 96px;
  height: 68px;
  color: rgba(0, 0, 0, 0);
  font-size: 1rem;
  border-radius: 0 16px 0 0;
  position: relative;
}
.p-modal__close::before,
.p-modal__close::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  border-radius: 3px;
  top: 50%;
  right: 47px;
  background-color: #1a1a1a;
}
.p-modal__close::before {
  transform: translate(0, -50%) rotate(135deg);
}
.p-modal__close::after {
  transform: translate(0, -50%) rotate(-135deg);
}
.p-modal__inner {
  max-width: 1040px;
  width: 100%;
  margin: 24px 0;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1032px) {
  .p-modal__inner {
    margin: 24px 0 0;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: 0.3s linear transform;
  }
}
.p-modal__main {
  padding: 0 40px 100px;
  max-height: calc(100vh - 116px);
  max-height: calc(100dvh - 116px);
  height: 100%;
  overflow-y: auto;
  flex: 1;
}
@media screen and (max-width: 1032px) {
  .p-modal__main {
    max-height: calc(100vh - 154px);
    max-height: calc(100dvh - 154px);
  }
}
.p-modal__main > :first-child {
  margin-top: 0;
}
@media screen and (max-width: 1032px) {
  .p-modal__main {
    padding: 0 32px 100px;
  }
}
.p-modal__main--thin {
  padding: 0 24px 100px;
}
@media screen and (max-width: 1032px) {
  .p-modal__main--thin {
    padding: 0 24px 100px;
  }
}
.p-modal__footer {
  background: rgba(0, 0, 0, 0.65);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 68px;
  padding: 0 40px;
  z-index: 1;
}
@media screen and (max-width: 1032px) {
  .p-modal__footer {
    padding: 0 32px;
  }
}
.p-modal__footer__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.p-modal__footer__list--reverse {
  flex-direction: row-reverse;
}
.p-modal__footer__list__item {
  margin: 0 8px;
}
.p-modal__hdg {
  font-size: 1.8rem;
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1032px) {
  .p-modal--calendar {
    align-items: center;
  }
}
.p-modal--calendar .p-modal__header {
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 10px;
}
.p-modal--calendar .p-modal__header__hdg {
  flex: 1;
  padding-left: 76px;
  display: inline-flex;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
}
.p-modal--calendar .p-modal__close {
  width: 76px;
  height: 68px;
}
.p-modal--calendar .p-modal__close::before,
.p-modal--calendar .p-modal__close::after {
  right: 38px;
}
.p-modal--calendar .p-modal__inner {
  max-width: 464px;
  border-radius: 8px;
}
.p-modal--calendar .p-modal__main {
  padding: 0;
  max-height: 100%;
  height: auto;
  overflow: hidden;
  flex: 1;
}

.p-modal-encyc {
  padding: 0 40px;
}
@media screen and (max-width: 1032px) {
  .p-modal-encyc {
    padding: 0;
  }
}
.p-modal-encyc__hdg {
  font-size: 3.2rem;
  color: #1a1a1a;
  font-weight: 600;
}
.p-modal-encyc__sub {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 12px;
}
.p-modal-encyc__sub__info__date {
  font-size: 1.4rem;
  font-weight: 300;
  color: #4d4d4d;
}
.p-modal-encyc__sub__info__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
  margin-top: 4px;
}
.p-modal-encyc__sub__info__list > li {
  font-size: 1.4rem;
  font-weight: 300;
  color: #4d4d4d;
}
.p-modal-encyc__sub__info__list__keyword::before {
  content: "#";
  display: inline-block;
}
.p-modal-encyc__main {
  margin-top: 24px;
}
.p-modal-encyc__main > :first-child {
  margin-top: 0;
}
.p-modal-encyc__main > :last-child {
  margin-bottom: 0;
}
.p-modal-encyc__text {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.6;
  margin-top: 64px;
}
@media screen and (max-width: 1032px) {
  .p-modal-encyc__text {
    margin-top: 40px;
  }
}
.p-modal-encyc__img {
  margin: 64px auto 0;
  width: 100%;
}
@media screen and (max-width: 1032px) {
  .p-modal-encyc__img {
    margin: 40px auto 0;
  }
}
.p-modal-encyc__img__inner {
  display: flex;
  justify-content: center;
}
.p-modal-encyc__img__figure {
  margin: 0 auto;
}
.p-modal-encyc__img__caption {
  font-size: 1.4rem;
  font-weight: 300;
  color: #4d4d4d;
  margin-top: 8px;
}
.p-modal-encyc__img__caption2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-top: 8px;
}
.p-modal-encyc__img img {
  margin: 0 auto;
}
.p-modal-encyc__movie {
  margin-top: 64px;
}
@media screen and (max-width: 1032px) {
  .p-modal-encyc__movie {
    margin-top: 40px;
  }
}
.p-modal-encyc__movie video {
  width: 100%;
}
.p-modal-encyc__copy {
  margin-top: 64px;
}
@media screen and (max-width: 1032px) {
  .p-modal-encyc__copy {
    margin-top: 40px;
  }
}
.p-modal-encyc__copy__text small {
  font-size: 1.2rem;
  font-weight: 300;
  color: #4d4d4d;
  line-height: 1.5;
}
@media screen and (max-width: 1032px) {
  .p-modal-encyc {
    align-items: end;
  }
}

.p-over {
  margin-top: 24px;
  text-align: center;
  line-height: 1.6;
  font-size: 1.6rem;
  font-weight: 300;
}
.p-over__link {
  color: #002471;
  text-decoration: underline;
  margin-top: 2px;
  display: inline-block !important;
}
.p-over__link:hover,
.p-over__link:focus {
  text-decoration: none;
}

.p-search-keyword__input {
  margin-top: 20px;
}
.p-search-keyword__add {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.p-search-keyword__add + .p-search-keyword__add {
  margin-top: 16px;
}
@media screen and (max-width: 1032px) {
  .p-search-keyword__add {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.p-search-keyword__add__text {
  color: #4d4d4d;
  font-size: 1.6rem;
  font-weight: 300;
}
.p-search-keyword__add__list {
  display: flex;
  gap: 8px;
}
.p-search-keyword__add__list--select {
  gap: 40px;
}
.p-search-keyword__add__list__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1032px) {
  .p-search-keyword__add__list__item {
    display: flex;
    align-items: center;
  }
}
.p-search-keyword__add--half .p-search-keyword__add__list {
  width: 100%;
}
.p-search-keyword__add--half .p-search-keyword__add__list__item {
  width: 50%;
}
.p-search-keyword__add--half .c-btn-simple--side {
  width: 100%;
}
.p-search-keyword--side .p-search-keyword__input {
  margin-top: 16px;
}
.p-search-keyword--side .p-search-keyword__add {
  gap: 8px;
}
.p-search-keyword--side .p-search-keyword__add__list {
  gap: 4px;
}
.p-search-keyword--side
  .p-search-keyword__add__list.p-search-keyword__add__list--select {
  display: block;
}
.p-search-keyword--side .p-search-keyword__add__text {
  font-size: 1.2rem;
}
.p-search-keyword--side .p-search-keyword__add__list--select {
  width: 100%;
}
.p-search-keyword--side
  .p-search-keyword__add__list--select
  .p-search-keyword__add__list__item {
  justify-content: space-between;
}
.p-search-keyword--side
  .p-search-keyword__add__list--select
  .p-search-keyword__add__list__item
  + .p-search-keyword__add__list__item {
  margin-top: 8px;
}
.p-search-keyword--side
  .p-search-keyword__add__list--select
  .p-search-keyword__add__list__item
  .c-select-label {
  font-size: 1.2rem;
  padding-right: 10px;
}
.p-search-keyword--side
  .p-search-keyword__add__list--select
  .p-search-keyword__add__list__item
  .c-select--presence
  select {
  min-width: 108px;
  height: 36px;
  font-size: 1.4rem;
}
.p-search-keyword + .p-lyt-between {
  margin-top: 40px;
}

.p-search-date {
  margin-top: 20px;
}
.p-search-date__list {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.p-search-date__list + .p-search-date__list {
  margin-top: 12px;
}
.p-search-date__list__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-search-date__list__item > :last-child {
  margin-left: 12px;
}
.p-search-date__list__item > :last-child:first-child {
  margin-left: 0;
}
.p-search-date__list__item .c-select {
  flex: 1;
}
.p-search-date__list__item.u-width-calendar {
  position: relative;
}

.p-search-date-side {
  margin-top: 12px;
}
.p-search-date-side__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.p-search-date-side__list + .p-search-date-side__list {
  margin-top: 8px;
}
.p-search-date-side__list__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-search-date-side__list__item > :last-child {
  margin-left: 8px;
}
.p-search-date-side__list__item > :last-child:first-child {
  margin-left: 0;
}
.p-search-date-side__list__item .c-select {
  flex: 1;
}
.p-search-date-side__list__item .c-select select {
  font-size: 1.4rem;
  height: 36px;
}

.p-search-page {
  margin-top: 20px;
}
.p-search-page__label {
  display: flex;
  align-items: center;
}
.p-search-page__label__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #4d4d4d;
  margin-right: 24px;
  white-space: nowrap;
}
@media screen and (max-width: 1032px) {
  .p-search-page__label__title {
    min-width: 96px;
  }
}
.p-search-page__label__unit {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-left: 12px;
  white-space: nowrap;
}
.p-search-page__label__select {
  margin-left: 12px;
}
.p-search-page__item {
  display: flex;
  align-items: center;
}
.p-search-page__item:first-child {
  margin-right: 40px;
}
.p-search-page--side {
  margin-top: 16px;
}
.p-search-page--side .p-search-page__label {
  flex-wrap: wrap;
  align-items: center;
}
.p-search-page--side .p-search-page__label__title {
  font-size: 1.2rem;
  margin-right: 0;
  width: 100%;
  margin-bottom: 8px;
}
.p-search-page--side .p-search-page__label__unit {
  font-size: 1.3rem;
  margin-left: 8px;
}
.p-search-page--side .p-search-page__label__select {
  margin-top: 8px;
  margin-left: 0;
  width: 100%;
}
.p-search-page--side .p-search-page__label__select.c-select select {
  font-size: 1.4rem;
  height: 36px;
}
.p-search-page--side .c-input-text {
  height: 36px;
  font-size: 1.4rem;
  padding: 4px 12px;
  width: 75%;
}
.p-search-page--side .c-check--small .c-check__label {
  font-size: 1.4rem;
  padding-left: 22px;
}
.p-search-page--side .p-list-check--week {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.p-search-page--side .p-list-check--middle {
  gap: 8px 20px;
}
.p-search-page--side .u-width-author {
  width: 100%;
}
.p-search-page--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1032px) {
  .p-search-page--between {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-search-page--between .p-search-page__item + .p-search-page__item {
    margin-top: 16px;
  }
}
.p-search-page + .p-lyt-between {
  margin-top: 40px;
}

.p-search-target {
  display: flex;
  align-items: center;
}
.p-search-target__text {
  color: #4d4d4d;
  font-size: 1.6rem;
  font-weight: 600;
  margin-right: 18px;
}
.p-search-target__list {
  display: flex;
}
.p-search-target__list__item + .p-search-target__list__item {
  margin-left: 18px;
}
@media screen and (max-width: 1032px) {
  .p-search-target__list__item + .p-search-target__list__item {
    margin-left: 18px;
  }
}
.p-search-target--side .p-search-target__text {
  font-size: 1.2rem;
  white-space: nowrap;
  margin-right: 16px;
}
.p-search-target--side
  .p-search-target__list__item
  + .p-search-target__list__item {
  margin-left: 16px;
}
.p-search-target--side .c-check__label {
  padding-left: 20px;
  font-size: 1.4rem;
  display: inline-block;
}
.p-search-target--side .p-list-check--media {
  gap: 8px;
}

.p-radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.p-radio-list__item {
  display: flex;
  flex-direction: column-reverse;
}
.p-radio-list__item input {
  -moz-appearance: none;
  appearance: none;
  position: absolute;
}
.p-radio-list__item input:focus + label {
  border-color: #004196;
}
.p-radio-list__item input:checked + label {
  color: #fff;
  border-color: #004196;
  background-color: #004196;
  padding-right: 37px;
}
.p-radio-list__item input:checked + label .p-radio-list__item__delete {
  display: block;
}
.p-radio-list__item label {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b2b2b2;
  background-color: #f8f8f8;
  color: #1a1a1a;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease background-color, 0.3s ease border-color, 0.3s ease
    color;
}
.p-radio-list__item label:hover,
.p-radio-list__item label:focus {
  color: #002471;
  border-color: #002471;
  background-color: #fff;
}
.p-radio-list__item__delete {
  display: none;
  color: transparent;
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: rgba(0, 0, 0, 0);
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s ease background-color;
}
.p-radio-list__item__delete::before,
.p-radio-list__item__delete::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 8px;
  border-radius: 2px;
  top: 50%;
  right: 7px;
  background-color: #004196;
  transition: 0.3s ease background-color;
}
.p-radio-list__item__delete::before {
  transform: translate(0, -50%) rotate(135deg);
}
.p-radio-list__item__delete::after {
  transform: translate(0, -50%) rotate(-135deg);
}
.p-radio-list--genre .p-radio-list__item label {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 14px 15px;
}
.p-radio-list--keyword .p-radio-list__item label {
  font-size: 1.4rem;
  font-weight: 300;
  padding: 9px 11px;
}
.p-radio-list--keyword .p-radio-list__item label > :first-child::before {
  content: "#";
  display: inline-block;
}
.p-radio-list--keyword .p-radio-list__item input:checked + label {
  padding-right: 33px;
}
.p-radio-list--period {
  gap: 12px;
}
.p-radio-list--period .p-radio-list__item label {
  font-size: 1.6rem;
  font-weight: 300;
  padding: 14px 15px;
  background-color: #fff;
}
.p-radio-list--period .p-radio-list__item input:checked + label {
  font-weight: 600;
  padding-right: 15px;
}
.p-radio-list--period + .p-search-date__list {
  margin-top: 16px;
}
.p-radio-list--period.p-radio-list--side {
  gap: 8px;
}
.p-radio-list--period.p-radio-list--side .p-radio-list__item label {
  font-size: 1.4rem;
  padding: 9px 11px;
}
.p-radio-list--period.p-radio-list--side
  .p-radio-list__item
  input:checked
  + label {
  padding-right: 11px;
}
.p-radio-list--era {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.p-radio-list--era .p-radio-list__item label {
  font-size: 1.6rem;
  font-weight: 300;
  height: 100%;
  padding: 14px 15px;
  background-color: #fff;
}
.p-radio-list--era .p-radio-list__item input:checked + label {
  font-weight: 600;
  padding-right: 15px;
}
.p-radio-list--era + .p-search-date__list {
  margin-top: 16px;
}
.p-radio-list--era.p-radio-list--side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.p-radio-list--era.p-radio-list--side .p-radio-list__item {
  max-width: 100%;
}
.p-radio-list--era.p-radio-list--side .p-radio-list__item label {
  padding: 8px 10px;
  font-size: 1.4rem;
}
.p-radio-list--era.p-radio-list--side
  .p-radio-list__item
  input:checked
  + label {
  padding-right: 10px;
}

.p-fixed-content {
  background: rgba(0, 0, 0, 0.65);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 88px;
  padding: 0 40px;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease opacity, 0.3s ease visibility;
}
.p-fixed-content.is-active {
  visibility: visible;
  opacity: 1;
}
.p-fixed-content__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.p-fixed-content__list--reverse {
  flex-direction: row-reverse;
}
.p-fixed-content__list__item {
  margin: 0 12px;
}

.p-fixed-scaling {
  width: 64px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 50%;
  right: 40px;
  transform: translateY(calc(-50% + 30px));
  z-index: 2;
}
@media screen and (max-width: 1032px) {
  .p-fixed-scaling {
    right: 24px;
  }
}
.p-fixed-scaling__list
  > .p-fixed-scaling__list__item:first-child
  .p-fixed-scaling__list__item__btn {
  border-radius: 8px 8px 0 0;
}
.p-fixed-scaling__list
  > .p-fixed-scaling__list__item:last-child
  .p-fixed-scaling__list__item__btn {
  border-radius: 0 0 8px 8px;
}
.p-fixed-scaling__list__item__btn {
  background-color: #4d4d4d;
  color: #fff;
  width: 64px;
  height: 84px;
  border: 1px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease background-color;
}
.p-fixed-scaling__list__item__btn:hover,
.p-fixed-scaling__list__item__btn:focus {
  background-color: #666;
}
.p-fixed-scaling__list__item__label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  padding-top: 14px;
}
.p-fixed-scaling__list__item
  + .p-fixed-scaling__list__item
  .p-fixed-scaling__list__item__btn {
  border-top: 0;
}

.p-encyc-result {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1032px) {
  .p-encyc-result {
    padding: 16px 24px 0;
  }
}
.p-encyc-result__inner {
  position: absolute;
  top: 16px;
  left: 28px;
  max-width: calc(50% - 120px);
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 1032px) {
  .p-encyc-result__inner {
    position: static;
    max-width: 100%;
  }
}
.p-encyc-result__text {
  font-size: 1.4rem;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  padding-right: 7px;
}
.p-encyc-result__text--word {
  padding-right: 12px;
}
.p-encyc-result__text b {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}
.p-encyc-result__info {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.p-encyc-result__num {
  font-size: 1.4rem;
  padding-left: 20px;
  position: relative;
  flex-shrink: 0;
}
.p-encyc-result__num::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 16px;
  background-color: #1a1a1a;
  top: 50%;
  left: 6px;
  transform: rotate(25deg) translateY(-50%);
}
.p-encyc-result__num b {
  font-size: 1.6rem;
  font-family: arial, sans-serif;
  padding: 0 6px;
}

.p-encyc-header {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-height: 122px;
  position: sticky;
  top: 0;
  z-index: 1;
  background-image: url(/assets/images/bg_gradation.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}
@media screen and (max-width: 1032px) {
  .p-encyc-header {
    flex-direction: column;
    justify-content: center;
    min-height: 94px;
    background-image: url(/assets/images/bg_gradation_tb.jpg);
  }
}
.p-encyc-header__tag__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-encyc-header__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 16px 28px;
}
@media screen and (max-width: 1032px) {
  .p-encyc-header__wrapper {
    padding: 16px 24px;
  }
}
.p-encyc-header__year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.p-encyc-header__year__hdg {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1a1a1a;
  white-space: nowrap;
}
.p-encyc-header__year__hdg__num {
  font-size: 6.4rem;
  font-family: arial, sans-serif;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 1032px) {
  .p-encyc-header__year__hdg__num {
    font-size: 4.8rem;
  }
}
.p-encyc-header__year__hdg__sub {
  font-size: 1.6rem;
  font-weight: 300;
  margin-top: 5px;
}
@media screen and (max-width: 1032px) {
  .p-encyc-header__year__hdg__sub {
    font-size: 1.4rem;
    margin-top: 3px;
  }
}
.p-encyc-header__movie {
  display: flex;
  align-items: center;
  height: 36px;
}
.p-encyc-header__movie__item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.p-encyc-header__movie__item__text > span {
  font-size: 1.6rem;
  color: #1a1a1a;
  padding-left: 22px;
  position: relative;
}
.p-encyc-header__movie__item__text > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(/assets/images/icon_movie.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 12px;
}
.p-encyc-header__movie__item__check {
  width: 60px;
  height: 36px;
  border-radius: 40px;
  margin-left: 16px;
  display: inline-block;
  position: relative;
  background: #b2b2b2;
  border: 1px solid #d9d9d9;
  display: inline-block;
  transition: 0.3s ease background-color, 0.3s ease border-color;
}
.p-encyc-header__movie__item__check:has(input:checked) {
  background: #004196;
  border-color: #7396c5;
}
.p-encyc-header__movie__item__check__item {
  position: absolute;
  top: 0;
  left: 0;
  -moz-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 2px 0 rgba(26, 26, 26, 0.3);
  cursor: pointer;
  transform: translateX(0);
  transition: 0.3s ease transform;
}
.p-encyc-header__movie__item__check__item:checked {
  transform: translateX(22px);
}

.p-encyc-year {
  position: sticky;
  right: 0;
  top: 120px;
  display: flex;
  justify-content: end;
  max-height: 540px;
  height: 100%;
}
.p-encyc-year__list {
  position: sticky;
  width: 60px;
  top: 120px;
  right: 0;
}
@media screen and (max-width: 1280px) {
  .p-encyc-year__list {
    width: 70px;
  }
}
.p-encyc-year__list__item {
  display: flex;
  align-items: center;
  justify-content: end;
}
.p-encyc-year__list__item + .p-encyc-year__list__item {
  margin-top: 10px;
}
.p-encyc-year__link {
  color: #1a1a1a;
  font-family: arial, sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  transition: 0.3s ease transform, 0.3s ease color;
  height: 36px;
  display: flex;
  align-items: center;
}
.p-encyc-year__link:hover,
.p-encyc-year__link:focus {
  transform: scale(1.3333);
  color: #002471;
}
.p-encyc-year__link.is-active {
  transform: scale(1.3333);
  color: #002471;
}
.p-encyc-year__link.is-disabled {
  color: #b2b2b2;
  pointer-events: none;
}

.p-encyc-timeline {
  position: relative;
  padding: 0 28px 80px;
  z-index: 0;
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline {
    padding: 0 24px 80px;
  }
}
.p-encyc-timeline__inner {
  flex: 1;
  padding-left: 60px;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__inner {
    padding-left: 70px;
  }
}
.p-encyc-timeline__item {
  scroll-margin-top: 12px;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__item {
    scroll-margin-top: 5px;
  }
}
.p-encyc-timeline__item + .p-encyc-timeline__item {
  margin-top: 36px;
}
.p-encyc-timeline__item::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.p-encyc-timeline__item::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.p-encyc-timeline__item::-webkit-scrollbar {
  width: 12px;
}
.p-encyc-timeline__item::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0);
}
.p-encyc-timeline__item::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0);
}
.p-encyc-timeline__main {
  max-width: 1168px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.p-encyc-timeline__main::before {
  content: "";
  background-color: #b2b2b2;
  width: 4px;
  height: calc(100% + 40px);
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.p-encyc-timeline__panel {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  border: 1px solid #d9d9d9;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
  max-width: 520px;
  width: 89.0410958904%;
  height: 132px;
  line-height: 1.5;
  position: relative;
  transition: 0.3s ease background-color;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__panel {
    flex-direction: column-reverse;
    height: 252px;
  }
}
.p-encyc-timeline__panel::before,
.p-encyc-timeline__panel::after {
  content: "";
  position: absolute;
}
.p-encyc-timeline__panel::before {
  max-width: 64px;
  width: 12.3287671233%;
  height: 2px;
  background-color: #b2b2b2;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  transition: 0.3s ease background-color;
}
.p-encyc-timeline__panel::after {
  width: 16px;
  height: 16px;
  background-color: #b2b2b2;
  border: 1px solid #b2b2b2;
  border-radius: 50%;
  top: 50%;
  transform: translateX(-6px) translateY(-50%) scale(1);
  left: 112.3287671233%;
  transition: none;
}
.p-encyc-timeline__panel:hover,
.p-encyc-timeline__panel:focus {
  background-color: #f2f5fa;
}
.p-encyc-timeline__panel:hover .p-encyc-timeline__info__item__hdg,
.p-encyc-timeline__panel:focus .p-encyc-timeline__info__item__hdg {
  text-decoration: none;
}
.p-encyc-timeline__panel:hover::before,
.p-encyc-timeline__panel:focus::before {
  background-color: #004196;
}
.p-encyc-timeline__panel:hover::after,
.p-encyc-timeline__panel:focus::after {
  background-color: #004196;
  border-color: #7396c5;
  transform: translateX(-6px) translateY(-50%) scale(2);
  transition: 0.3s ease transform, 0.3s ease background-color, 0.3s ease
    border-color;
}
.p-encyc-timeline__panel:hover .p-encyc-timeline__image img,
.p-encyc-timeline__panel:focus .p-encyc-timeline__image img {
  transform: scale(1.1363);
}
.p-encyc-timeline__list {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.p-encyc-timeline__list__item {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-encyc-timeline__list.is-left .p-encyc-timeline__list__item:nth-child(even) {
  align-items: flex-end;
  margin-top: 40px;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__list.is-left
    .p-encyc-timeline__list__item:nth-child(even) {
    margin-top: 24px;
  }
}
.p-encyc-timeline__list.is-left
  .p-encyc-timeline__list__item:nth-child(even)
  .p-encyc-timeline__panel::before {
  left: initial;
  right: 100%;
}
.p-encyc-timeline__list.is-left
  .p-encyc-timeline__list__item:nth-child(even)
  .p-encyc-timeline__panel::after {
  left: initial;
  right: 112.3287671233%;
  transform: translateX(7px) translateY(-50%) scale(1);
}
.p-encyc-timeline__list.is-left
  .p-encyc-timeline__list__item:nth-child(even)
  .p-encyc-timeline__panel:hover::after,
.p-encyc-timeline__list.is-left
  .p-encyc-timeline__list__item:nth-child(even)
  .p-encyc-timeline__panel:focus::after {
  transform: translateX(7px) translateY(-50%) scale(2);
}
.p-encyc-timeline__list.is-left .p-encyc-timeline__list__item:nth-child(odd) {
  margin-top: -40px;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__list.is-left .p-encyc-timeline__list__item:nth-child(odd) {
    margin-top: -102px;
  }
}
.p-encyc-timeline__list.is-left .p-encyc-timeline__list__item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__list.is-left .p-encyc-timeline__list__item:first-child {
    margin-top: 0;
  }
}
.p-encyc-timeline__list.is-left .p-encyc-timeline__list__item:nth-child(2) {
  margin-top: 83px;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__list.is-left .p-encyc-timeline__list__item:nth-child(2) {
    margin-top: 126px;
  }
}
.p-encyc-timeline__list.is-right .p-encyc-timeline__list__item:nth-child(even) {
  align-items: flex-end;
  margin-top: 40px;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__list.is-right
    .p-encyc-timeline__list__item:nth-child(even) {
    margin-top: 24px;
  }
}
.p-encyc-timeline__list.is-right
  .p-encyc-timeline__list__item:nth-child(even)
  .p-encyc-timeline__panel::before {
  left: initial;
  right: 100%;
}
.p-encyc-timeline__list.is-right
  .p-encyc-timeline__list__item:nth-child(even)
  .p-encyc-timeline__panel::after {
  left: initial;
  right: 112.3287671233%;
  transform: translateX(7px) translateY(-50%) scale(1);
}
.p-encyc-timeline__list.is-right
  .p-encyc-timeline__list__item:nth-child(even)
  .p-encyc-timeline__panel:hover::after,
.p-encyc-timeline__list.is-right
  .p-encyc-timeline__list__item:nth-child(even)
  .p-encyc-timeline__panel:focus::after {
  transform: translateX(7px) translateY(-50%) scale(2);
}
.p-encyc-timeline__list.is-right .p-encyc-timeline__list__item:nth-child(odd) {
  margin-top: -40px;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__list.is-right
    .p-encyc-timeline__list__item:nth-child(odd) {
    margin-top: -102px;
  }
}
.p-encyc-timeline__list.is-right .p-encyc-timeline__list__item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__list.is-right .p-encyc-timeline__list__item:first-child {
    margin-top: 0;
  }
}
.p-encyc-timeline__list.is-right .p-encyc-timeline__list__item:nth-child(2) {
  margin-top: 0;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__list.is-right .p-encyc-timeline__list__item:nth-child(2) {
    margin-top: 0;
  }
}
.p-encyc-timeline__list--scroll .p-encyc-timeline__list__item {
  scroll-margin-top: 122px !important;
  width: 50% !important;
  margin-top: 0 !important;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__list--scroll .p-encyc-timeline__list__item {
    scroll-margin-top: 95px !important;
  }
}
.p-encyc-timeline__list--scroll .p-encyc-timeline__list__item.is-right {
  align-items: flex-end;
  margin-top: 40px;
  left: 50% !important;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__list--scroll .p-encyc-timeline__list__item.is-right {
    margin-top: 24px;
  }
}
.p-encyc-timeline__list--scroll
  .p-encyc-timeline__list__item.is-right
  .p-encyc-timeline__panel::before {
  left: initial;
  right: 100%;
}
.p-encyc-timeline__list--scroll
  .p-encyc-timeline__list__item.is-right
  .p-encyc-timeline__panel::after {
  left: initial;
  right: 112.3287671233%;
  transform: translateX(7px) translateY(-50%) scale(1);
}
.p-encyc-timeline__list--scroll
  .p-encyc-timeline__list__item.is-right
  .p-encyc-timeline__panel:hover::after,
.p-encyc-timeline__list--scroll
  .p-encyc-timeline__list__item.is-right
  .p-encyc-timeline__panel:focus::after {
  transform: translateX(7px) translateY(-50%) scale(2);
}
.p-encyc-timeline__list--scroll .p-encyc-timeline__list__item.is-left {
  margin-top: -40px;
  align-items: flex-start;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__list--scroll .p-encyc-timeline__list__item.is-left {
    margin-top: -102px;
  }
}
.p-encyc-timeline__list--scroll .p-encyc-timeline__list__item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__list--scroll .p-encyc-timeline__list__item:first-child {
    margin-top: 0;
  }
}
.p-encyc-timeline__list--scroll .p-encyc-timeline__list__item:nth-child(2) {
  margin-top: 83px;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__list--scroll .p-encyc-timeline__list__item:nth-child(2) {
    margin-top: 126px;
  }
}
.p-encyc-timeline__info {
  border-left: 1px solid #d9d9d9;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 1033px) and (max-width: 1280px) {
  .p-encyc-timeline__info {
    padding: 12px;
  }
}
.p-encyc-timeline__info__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.p-encyc-timeline__info__item__hdg {
  font-size: 1.8rem;
  font-weight: 600;
  color: #002471;
  text-decoration: underline;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 1033px) and (max-width: 1280px) {
  .p-encyc-timeline__info__item__hdg {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__info__item__hdg {
    line-height: 1.3;
  }
}
.p-encyc-timeline__info__item__date {
  font-size: 1.4rem;
  font-weight: 300;
  color: #4d4d4d;
  margin-top: 3px;
}
@media screen and (min-width: 1033px) and (max-width: 1280px) {
  .p-encyc-timeline__info__item__date {
    font-size: 1.2rem;
  }
}
.p-encyc-timeline__info__item__movie {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-top: 3px;
  padding-left: 20px;
  position: relative;
}
@media screen and (min-width: 1033px) and (max-width: 1280px) {
  .p-encyc-timeline__info__item__movie {
    font-size: 1.2rem;
  }
}
.p-encyc-timeline__info__item__movie::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(/assets/images/icon_movie.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 12px;
}
.p-encyc-timeline__info__category {
  font-size: 1.4rem;
  font-weight: 300;
  background-color: #e5ecf4;
  color: #1a1a1a;
  border-radius: 20px;
  padding: 2px 7px;
  position: absolute;
  right: 16px;
  bottom: 16px;
  white-space: nowrap;
}
@media screen and (min-width: 1033px) and (max-width: 1280px) {
  .p-encyc-timeline__info__category {
    font-size: 1.2rem;
    right: 12px;
    bottom: 12px;
  }
}
.p-encyc-timeline__image {
  overflow: hidden;
  background-color: #dadada;
  width: 176px;
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .p-encyc-timeline__image {
    width: 100%;
    height: 120px;
  }
}
.p-encyc-timeline__image img {
  width: 100%;
  aspect-ratio: 176 / 132;
  object-fit: contain;
  height: 100%;
  transform: scale(1);
  transition: 0.3s ease transform;
}
.p-encyc-timeline__info {
  flex: 1;
  width: 100%;
  height: 100%;
}

.p-encyc-undefined {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.p-encyc-undefined__text {
  font-size: 2.4rem;
  font-weight: 600;
  color: #1a1a1a;
}
.p-encyc-undefined__text span {
  padding-right: 10px;
}
.p-encyc-undefined__sub {
  font-size: 1.6rem;
  font-weight: 300;
  color: #4d4d4d;
  margin-top: 12px;
}

.p-error {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  height: 100%;
  display: flex;
}
@media screen and (max-width: 1280px) {
  .p-error {
    padding: 120px 40px;
  }
}
.p-error__inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 96px 11.1111111111%;
  background-color: #fff;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1280px) {
  .p-error__inner {
    flex-direction: column-reverse;
    padding: 64px 10.5263157895%;
    gap: 64px;
  }
}
@media screen and (max-width: 1280px) {
  .p-error__img {
    max-width: 278px;
  }
}
.p-error__main {
  flex: 1;
}
.p-error__main__title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
}
@media screen and (max-width: 1280px) {
  .p-error__main__title {
    text-align: center;
  }
}
.p-error__main__text {
  font-size: 1.6rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-top: 16px;
}
@media screen and (max-width: 1280px) {
  .p-error__main__text {
    text-align: center;
    line-height: 1.6;
  }
}
.p-error__main__list {
  margin-top: 24px;
  display: flex;
  gap: 24px;
}
.p-error__main__list__item {
  width: 100%;
}

.p-panel {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
  margin-top: 32px;
}
.p-panel__inner {
  padding: 24px 32px;
}
@media screen and (max-width: 1280px) {
  .p-panel__inner {
    padding: 24px;
  }
}
.p-panel__inner > :first-child {
  margin-top: 0;
}
.p-panel__head {
  padding: 24px 32px 20px;
}
@media screen and (max-width: 1280px) {
  .p-panel__head {
    padding: 24px 24px 20px;
  }
}
.p-panel__head > :first-child {
  margin-top: 0;
}
.p-panel__main {
  border-top: 1px solid #d9d9d9;
  border-radius: 0 0 8px 8px;
}
@media screen and (max-width: 1280px) {
  .p-panel__main {
    border-top: 0;
  }
}
.p-panel__main__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .p-panel__main__table col {
    width: 100% !important;
  }
}
.p-panel__main__table th,
.p-panel__main__table td {
  vertical-align: top;
}
.p-panel__main__table th {
  width: 360px;
  padding: 20px 32px;
  border-right: 1px solid #d9d9d9;
  background-color: #f0f0f0;
  text-align: left;
}
@media screen and (max-width: 1280px) {
  .p-panel__main__table th + .p-panel__main__table__sub {
    border-top: 0 !important;
  }
}
.p-panel__main__table td {
  padding: 20px;
}
.p-panel__main__table .p-panel__main__table__sub {
  padding: 20px;
}
@media screen and (max-width: 1280px) {
  .p-panel__main__table .p-panel__main__table__sub {
    border-top: 1px dashed #ccc !important;
    background-color: #fff;
    padding: 16px 24px;
  }
  .p-panel__main__table .p-panel__main__table__sub + td {
    border-top: 0 !important;
    padding-left: 60px;
    padding-right: 60px;
  }
}
.p-panel__main__table--col th {
  width: 180px;
}
@media screen and (max-width: 1280px) {
  .p-panel__main__table th {
    border-right: 0;
  }
  .p-panel__main__table th,
  .p-panel__main__table td {
    display: block;
    width: 100%;
    padding: 16px 24px;
  }
}
.p-panel__main__table tbody > tr:not(:first-child) th,
.p-panel__main__table tbody > tr:not(:first-child) td {
  border-top: 1px solid #d9d9d9;
}
@media screen and (max-width: 1280px) {
  .p-panel__main__table tbody > tr:not(:first-child) th,
  .p-panel__main__table tbody > tr:not(:first-child) td {
    border-top: 0;
  }
}

.p-panel-list {
  width: 100%;
  background-color: #fff;
  margin-top: 16px;
  border-bottom: 1px solid #d9d9d9;
}
.p-panel-list__item {
  border-top: 1px solid #d9d9d9;
}
.p-panel-list__item__link {
  display: block;
  font-size: 1.6rem;
  color: #002471;
  font-weight: 600;
  text-decoration: underline;
  padding: 15px 20px;
}
.p-panel-list__item__link:hover,
.p-panel-list__item__link:focus {
  text-decoration: none;
}
.p-panel-list__toggle {
  border-top: 1px solid #d9d9d9;
  margin: 0;
  padding: 0 20px;
}
.p-panel-list__toggle__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-panel-list__toggle__item a {
  flex: 1;
}
.p-panel-list__toggle__btn {
  width: 40px;
  height: 40px;
  border: 1px solid #7396c5;
  background-color: #004196;
  border-radius: 8px;
  color: transparent;
  font-size: 1rem;
  margin-right: -12px;
  position: relative;
  transition: 0.3s ease background-color, 0.3s ease border-color;
}
.p-panel-list__toggle__btn::before,
.p-panel-list__toggle__btn::after {
  transition: 0.3s ease transform, 0.3s ease opacity, 0.3s ease background-color;
}
.p-panel-list__toggle__btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.p-panel-list__toggle__btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) rotate(90deg);
}
.p-panel-list__toggle__btn:hover {
  background-color: #fff;
  border-color: #004196;
}
.p-panel-list__toggle__btn:hover::before,
.p-panel-list__toggle__btn:hover::after {
  background-color: #004196;
}
.p-panel-list__toggle__list {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transform-origin: top;
  transition: 0.3s ease-out opacity, 0.2s ease-out transform;
  padding: 0 40px;
}
.p-panel-list__toggle__list__item {
  padding-left: 20px;
  position: relative;
}
.p-panel-list__toggle__list__item::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 2px;
  background-color: #002471;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
}
.p-panel-list__toggle__list__item a {
  display: block;
  font-size: 1.6rem;
  color: #002471;
  font-weight: 600;
  text-decoration: underline;
  padding: 16px 0;
}
.p-panel-list__toggle__list__item a:hover,
.p-panel-list__toggle__list__item a:focus {
  text-decoration: none;
}
.p-panel-list__toggle__list__item + .p-panel-list__toggle__list__item {
  border-top: 1px solid rgba(217, 217, 217, 0.7);
}
.p-panel-list__toggle.is-animate .p-panel-list__toggle__list {
  opacity: 0;
  display: block;
}
.p-panel-list__toggle.is-active .p-panel-list__toggle__btn::before {
  transform: translate3d(-50%, -50%, 0) rotate(90deg);
  opacity: 0;
}
.p-panel-list__toggle.is-active .p-panel-list__toggle__btn:after {
  transform: translate3d(-50%, -50%, 0) rotate(180deg);
}
.p-panel-list__toggle.is-active .p-panel-list__toggle__list {
  opacity: 1;
  display: block;
  transform: translateY(0);
}

.p-panel-search {
  background-color: #f8f8f8;
  border: 1px solid #d9d9d9;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.p-panel-search__hdg {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  padding: 11px 16px;
  background-color: #e5e5e5;
}
.p-panel-search__item + .p-panel-search__item {
  border-top: 1px solid #d9d9d9;
}
.p-panel-search__item:last-child {
  border-radius: 0 0 4px 4px;
}
.p-panel-search__item__head__hdg__btn {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  background-color: #f0f0f0;
  width: 100%;
  text-align: left;
  padding: 12px 48px 12px 16px;
  position: relative;
}
.p-panel-search__item__head__hdg__btn::before,
.p-panel-search__item__head__hdg__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #1a1a1a;
  transition: 0.3s ease opacity, 0.3s ease transform;
}
.p-panel-search__item__head__hdg__btn::before {
  right: 17px;
  transform: rotate(90deg) translateY(-50%);
  margin-top: -1px;
}
.p-panel-search__item__head__hdg__btn::after {
  right: 16px;
  transform: rotate(0deg) translateY(-50%);
}
.p-panel-search__item__head__hdg__btn.is-active::before {
  right: 16px;
  transform: rotate(180deg) translateY(-50%);
}
.p-panel-search__item__head__hdg__btn.is-active::after {
  right: 17px;
  transform: rotate(90deg) translateY(-50%);
  margin-top: -1px;
  opacity: 0;
}
.p-panel-search__item__default {
  padding: 16px;
}
.p-panel-search__item__main {
  display: none;
  padding: 16px;
}
.p-panel-search__item__main.is-active {
  display: block;
}
.p-panel-search__item__main > :first-child {
  margin-top: 0;
}
.p-panel-search__item__main .p-tab__item > :first-child {
  margin-top: 16px;
}

.p-party-label {
  padding-left: 18px;
  position: relative;
  display: flex;
  align-items: center;
}
.p-party-label__color {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: #fff;
}
.p-party-label__name {
  font-size: 1.4rem;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1;
}
.p-graph-party__tooltip .p-party-label__name {
  color: #fff;
}
@media screen and (max-width: 1032px) {
  .p-graph-party__tooltip .p-party-label__name {
    font-size: 1.2rem;
  }
}
.p-party-label__num {
  font-family: arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  padding-left: 5px;
}
@media screen and (max-width: 1032px) {
  .p-party-label__num {
    font-size: 1.2rem;
  }
}

.p-grid {
  display: grid;
  gap: 40px;
  margin-top: 24px;
}
.p-grid + .p-grid {
  margin-top: 40px;
}
.p-grid--col3 {
  grid-template-columns: repeat(3, 1fr);
}
.p-grid--col2 {
  grid-template-columns: repeat(2, 1fr);
}

.p-tab {
  flex: 1;
}
.p-tab__item {
  display: none;
}
.p-tab__item.is-active {
  display: block;
}

.p-tab-list {
  display: flex;
  gap: 8px;
}
.p-tab-list__item__btn {
  background-color: #fff;
  border: 1px solid #004196;
  color: #1a1a1a;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 15px 21px;
  line-height: 1;
  transition: 0.3s ease background-color, 0.3s ease color;
  min-width: 100px;
}
.p-tab-list__item__btn:hover,
.p-tab-list__item__btn:focus {
  background-color: #e5ecf4;
  color: #002471;
}
.p-tab-list__item__btn.is-active {
  background-color: #004196;
  border: 1px solid #7396c5;
  color: #fff;
}
.p-tab-list__item__btn.is-active::before {
  background-color: #fff;
}
.p-tab-list__item__btn--select {
  padding-right: 36px;
  position: relative;
}
.p-tab-list__item__btn--select::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 8px;
  height: 6px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #1a1a1a;
}
.p-tab-list__item__select {
  background-color: #fff;
  border: 1px solid #004196;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}
.p-tab-list__item__select__item {
  height: 47px;
  display: flex;
  align-items: center;
}
.p-tab-list__item__select__item + .p-tab-list__item__select__item {
  border-top: 1px solid #d9d9d9;
}
.p-tab-list__item__select__item a,
.p-tab-list__item__select__item button {
  color: #1a1a1a;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 15px 36px 15px 20px;
  font-family: arial, sans-serif;
  transition: 0.3s ease background-color, 0.3s ease color;
}
.p-tab-list__item__select__item a:hover,
.p-tab-list__item__select__item a:focus,
.p-tab-list__item__select__item button:hover,
.p-tab-list__item__select__item button:focus {
  background-color: #e5ecf4;
  color: #002471;
}
.p-tab-list__item--select {
  display: flex;
  flex-direction: column;
  position: relative;
}
.p-tab-list__item--select .p-tab-list__item__btn {
  transition: 0.3s ease border-radius;
}
.p-tab-list__item--select .p-tab-list__item__select {
  transition: 0.3s ease opacity, 0.2s ease transform;
}
.p-tab-list__item--select.is-active .p-tab-list__item__btn {
  border-radius: 8px 8px 0 0;
}
.p-tab-list__item--select.is-active .p-tab-list__item__select {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.p-tab-list__item--info {
  margin-top: 32px;
  width: 100%;
  align-items: flex-start;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}
.p-tab-list__item--info .p-tab-list__item__select__item {
  height: auto;
}
.p-tab-list__item--info .p-tab-list__item__select__item a,
.p-tab-list__item--info .p-tab-list__item__select__item button {
  color: #002471;
  background-color: #f4f4f4;
  font-size: 1.4rem;
  line-height: 1.6;
  text-decoration: underline;
  padding: 16px;
  position: relative;
}
.p-tab-list__item--info .p-tab-list__item__select__item a:hover,
.p-tab-list__item--info .p-tab-list__item__select__item a:focus,
.p-tab-list__item--info .p-tab-list__item__select__item button:hover,
.p-tab-list__item--info .p-tab-list__item__select__item button:focus {
  text-decoration: none;
}
.p-tab-list__item--info .p-tab-list__item__select__item__pdf {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-align: left;
}
.p-tab-list__item--info .p-tab-list__item__select__item__pdf__icon {
  width: 30px;
}
.p-tab-list__item--info .p-tab-list__item__select__item__pdf__icon img {
  position: absolute;
  top: 20px;
  left: 16px;
}
.p-tab-list__item--info .p-tab-list__item__btn {
  width: 100%;
  text-align: left;
  line-height: 1.6;
  padding: 14px 36px 14px 16px;
  border-color: #b2b2b2;
  transition: 0.3s ease border-radius, 0.3s ease background-color;
}
.p-tab-list__item--info .p-tab-list__item__select {
  border-top: 1px solid #b2b2b2;
  border-color: #b2b2b2;
  top: calc(100% - 1px);
  z-index: 1;
  overflow-y: auto;
  max-height: 100vh;
}
.p-tab-list__item--info .p-tab-list__item__select::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.p-tab-list__item--info .p-tab-list__item__select::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.p-tab-list__item--info .p-tab-list__item__select::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
.p-tab-list__item--info
  .p-tab-list__item__select::-webkit-scrollbar-thumb:hover {
  background: #333;
}
.p-tab-list__item--info .p-tab-list__item__btn--select::before {
  width: 11px;
  height: 8px;
  background-color: #002471;
  border-radius: 2px;
}
.p-tab-list__item--menu {
  width: 100%;
  padding: 0 24px 16px;
  position: relative;
}
.p-tab-list__item--menu .p-tab-list__item__btn {
  width: 100%;
  text-align: left;
  border: 1px solid #b2b2b2;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 17px 24px 17px 64px;
  line-height: 1;
  transition: 0.3s ease background-color, 0.3s ease color, 0.3s ease
    border-radius;
  position: relative;
}
.p-tab-list__item--menu .p-tab-list__item__btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 24px;
  background-color: #d9d9d9;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
}
.p-tab-list__item--menu .p-tab-list__item__btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5.5px solid rgba(0, 0, 0, 0);
  border-right: 5.5px solid rgba(0, 0, 0, 0);
  border-top: 9px solid #002471;
  border-radius: 2px;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.p-tab-list__item--menu .p-tab-list__item__btn__name {
  font-size: 1.6rem;
  color: #002471;
  font-weight: 600;
}
.p-tab-list__item--menu .p-tab-list__item__btn__date {
  font-size: 1.4rem;
  color: #4d4d4d;
  font-weight: 300;
  margin-left: 12px;
}
.p-tab-list__item--menu .p-tab-list__item__select {
  border-color: #b2b2b2;
  border-top: 0;
  width: calc(100% - 48px);
  top: calc(100% - 17px);
  z-index: 10;
  max-height: 50vh;
  overflow-y: auto;
  transition: 0.3s ease opacity, 0.2s ease transform;
}
.p-tab-list__item--menu .p-tab-list__item__select::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.p-tab-list__item--menu .p-tab-list__item__select::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.p-tab-list__item--menu .p-tab-list__item__select::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
.p-tab-list__item--menu
  .p-tab-list__item__select::-webkit-scrollbar-thumb:hover {
  background: #333;
}
.p-tab-list__item--menu
  .p-tab-list__item__select
  .p-tab-list__item__select__item__btn {
  text-align: left;
  padding: 17px 16px;
  position: relative;
}
.p-tab-list__item--menu
  .p-tab-list__item__select
  .p-tab-list__item__select__item__btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #b2b2b2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-tab-list__item--menu .p-tab-list__item__select .p-tab-list__item__btn__name {
  color: #1a1a1a;
}
.p-tab-list__item--menu
  .p-tab-list__item__select
  .p-tab-list__item__btn--select::before {
  width: 11px;
  height: 8px;
  background-color: #002471;
  border-radius: 2px;
}
.p-tab-list__item--menu .p-tab-list__item__select__item {
  height: 52px;
}
.p-tab-list__item--menu
  .p-tab-list__item__select__item
  + .p-tab-list__item__select__item {
  border-top: none;
}
.p-tab-list__item--menu.is-active .p-tab-list__item__btn {
  border-radius: 8px 8px 0 0;
}
.p-tab-list__item--menu.is-active .p-tab-list__item__select {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (max-width: 1032px) {
  .p-tab-list--yoron .p-tab-list__item__btn {
    padding: 14px 12px 13px;
    font-size: 1.4rem;
    white-space: nowrap;
    min-height: 46px;
    min-width: 94px;
  }
}

.p-tab-btn--line {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1032px) {
  .p-tab-btn--line {
    gap: 16px;
  }
}
.p-tab-btn__hdg {
  font-size: 1.6rem;
  color: #4d4d4d;
  font-weight: 600;
  white-space: nowrap;
}
.p-tab-btn__inner {
  display: flex;
}
.p-tab-btn__item {
  border: 1px solid #b2b2b2;
  color: #1a1a1a;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  padding: 9px 10px;
  min-width: 100px;
  transition: 0.3s ease background-color, 0.3s ease color;
}
.p-tab-btn__item + .p-tab-btn__item {
  border-left: 0;
}
.p-tab-btn__item:first-child {
  border-radius: 8px 0 0 8px;
  border-right: 0;
}
.p-tab-btn__item:last-child {
  border-radius: 0 8px 8px 0;
  border-left: 0;
}
.p-tab-btn__item:hover,
.p-tab-btn__item:focus {
  background-color: #e5ecf4;
}
.p-tab-btn__item.is-active {
  background-color: #004196;
  color: #fff;
}
.p-tab-btn--hdg .p-tab-btn__item {
  padding: 12px 8px;
  min-width: 88px;
}
.p-tab-btn--full .p-tab-btn__inner .p-tab-btn__item {
  min-width: 50%;
}

.p-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d9d9d9;
  background-color: #fff;
}
.p-table__thead td,
.p-table__thead th {
  background-color: #002471;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 14px;
  border: 1px solid #d9d9d9;
}
.p-table__tbody > tr:nth-child(even) {
  background-color: #fafafa;
}
.p-table__tbody th,
.p-table__tbody td {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1a1a1a;
  padding: 13px 16px;
  border: 1px solid #d9d9d9;
}
.p-table--detail .p-table__thead > tr td,
.p-table--detail .p-table__thead > tr th {
  width: 72px;
}
.p-table--detail .p-table__thead > tr > :first-child {
  width: auto;
}
.p-table--ratings .p-table__thead > tr td,
.p-table--ratings .p-table__thead > tr th {
  width: 64px;
}
.p-table--ratings .p-table__thead > tr > :first-child {
  min-width: 360px;
}
.p-table--ratings.p-table--scroll .p-table__thead > tr td,
.p-table--ratings.p-table--scroll .p-table__thead > tr th {
  min-width: 64px;
}
.p-table--ratings.p-table--scroll .p-table__thead > tr > :first-child {
  min-width: 360px;
}
.p-table .is-focus th,
.p-table .is-focus td {
  background-color: #fbff95;
}

.p-table-simple {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  margin-top: 24px;
  border: 1px solid #d9d9d9;
}
@media screen and (max-width: 1280px) {
  .p-table-simple col {
    width: 100% !important;
  }
}
.p-table-simple th {
  width: 360px;
  padding: 20px 32px;
  background-color: #f0f0f0;
  border-right: 1px solid #d9d9d9;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 1280px) {
  .p-table-simple th {
    padding: 16px 24px;
  }
}
@media screen and (max-width: 1280px) {
  .p-table-simple th + .p-table-simple__sub {
    border-top: 0 !important;
  }
}
.p-table-simple td {
  padding: 20px;
}
@media screen and (max-width: 1280px) {
  .p-table-simple td {
    padding: 16px 24px;
  }
}
.p-table-simple__tbody > tr:last-child > :first-child {
  border-radius: 0 0 0 8px;
}
@media screen and (max-width: 1280px) {
  .p-table-simple__tbody > tr:last-child > :first-child {
    border-radius: 0;
  }
}
.p-table-simple__tbody > tr:last-child > :last-child {
  border-radius: 0 0 8px 0;
}
@media screen and (max-width: 1280px) {
  .p-table-simple__tbody > tr:last-child > :last-child {
    border-radius: 0 0 8px 8px;
  }
}
.p-table-simple__tbody > tr:first-child > :first-child {
  border-radius: 8px 0 0 0;
}
@media screen and (max-width: 1280px) {
  .p-table-simple__tbody > tr:first-child > :first-child {
    border-radius: 8px 8px 0 0;
  }
}
.p-table-simple__tbody > tr:first-child > :last-child {
  border-radius: 0 8px 0 0;
}
@media screen and (max-width: 1280px) {
  .p-table-simple__tbody > tr:first-child > :last-child {
    border-radius: 0;
  }
}
.p-table-simple__tbody > tr:not(:first-child) th,
.p-table-simple__tbody > tr:not(:first-child) td {
  border-top: 1px solid #d9d9d9;
}
@media screen and (max-width: 1280px) {
  .p-table-simple__tbody > tr:not(:first-child) th,
  .p-table-simple__tbody > tr:not(:first-child) td {
    border-top: 0;
  }
}
.p-table-simple__tbody > tr:not(:first-child) th,
.p-table-simple__tbody > tr:not(:first-child) td {
  border-top: 1px solid #d9d9d9;
}
@media screen and (max-width: 1280px) {
  .p-table-simple__tbody > tr:not(:first-child) th,
  .p-table-simple__tbody > tr:not(:first-child) td {
    border-top: 0;
  }
}
@media screen and (max-width: 1280px) {
  .p-table-simple__tbody th {
    border-right: 0;
  }
  .p-table-simple__tbody th,
  .p-table-simple__tbody td {
    display: block;
    width: 100%;
    padding: 16px 24px;
  }
}
.p-table-simple--col th {
  width: 180px;
}
.p-table-simple .p-table-simple__sub {
  padding: 20px;
}
@media screen and (max-width: 1280px) {
  .p-table-simple .p-table-simple__sub {
    border-top: 1px dashed #ccc !important;
    background-color: #fff;
    padding: 16px 24px;
  }
  .p-table-simple .p-table-simple__sub + td {
    border-top: 0 !important;
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 1280px) {
  .p-table-simple th,
  .p-table-simple td {
    display: block;
    width: 100%;
    padding: 16px 18px;
  }
}

.p-table-other {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  margin-top: 40px;
}
.p-table-other thead td,
.p-table-other thead th {
  background-color: #666;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 12px;
  border: 1px solid #d9d9d9;
  text-align: left;
  vertical-align: middle;
}
.p-table-other tbody > tr:nth-child(even) {
  background-color: #fafafa;
}
.p-table-other tbody th,
.p-table-other tbody td {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4;
  color: #1a1a1a;
  padding: 12px;
  border: 1px solid #d9d9d9;
  text-align: left;
  vertical-align: middle;
}

.p-table-scroll {
  margin-right: -40px;
}
@media screen and (max-width: 1032px) {
  .p-table-scroll {
    margin-right: -24px;
  }
}
.p-table-scroll .p-table {
  width: 100%;
  overflow-x: auto;
}
.p-table-scroll .p-table--scroll {
  width: auto;
}
.p-table-scroll__inner {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 10px;
  padding-right: 40px;
}
.p-table-scroll__inner::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.p-table-scroll__inner::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 10px;
}
.p-table-scroll__inner::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
.p-table-scroll__inner::-webkit-scrollbar-thumb:hover {
  background: #333;
}

@media screen and (max-width: 1280px) {
  .p-table-scroll-tb {
    margin-right: -24px;
  }
  .p-table-scroll-tb .p-table {
    min-width: 100%;
    overflow-x: auto;
    width: auto;
  }
  .p-table-scroll-tb__inner {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
    padding-right: 24px;
  }
  .p-table-scroll-tb__inner::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  .p-table-scroll-tb__inner::-webkit-scrollbar-track {
    background: #d9d9d9;
    border-radius: 10px;
  }
  .p-table-scroll-tb__inner::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
  }
  .p-table-scroll-tb__inner::-webkit-scrollbar-thumb:hover {
    background: #333;
  }
  .p-table-scroll-tb .p-table--detail .p-table__thead > tr > :first-child {
    min-width: 370px;
  }
  .p-table-scroll-tb .p-table--detail .p-table__thead > tr td,
  .p-table-scroll-tb .p-table--detail .p-table__thead > tr th {
    min-width: 72px;
  }
}
.p-text-result {
  font-size: 1.4rem;
  font-weight: 300;
  color: #1a1a1a;
}
.p-text-result b {
  font-size: 1.6rem;
  font-family: arial, sans-serif;
  padding: 0 5px;
}
.p-text-result__inner {
  display: flex;
  align-items: center;
}
.p-text-result__num {
  padding-left: 20px;
  position: relative;
}
.p-text-result__num::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 16px;
  background-color: #1a1a1a;
  top: 50%;
  left: 6px;
  transform: rotate(25deg) translateY(-50%);
}
.p-text-result__info b.p-text-result__info__word {
  font-size: 1.4rem;
  font-family: arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, "Yu Gothic", Meiryo,
    メイリオ, "MS PGothic", Osaka, sans-serif;
  padding: 0 12px 0 0;
}

.p-datepicker.react-datepicker {
  font-size: 1.6rem;
  color: #1a1a1a;
  border: 0;
  width: 100%;
}
.p-datepicker
  .react-datepicker__header:not(.react-datepicker__header--has-time-select) {
  border-top-right-radius: 0;
}
.p-datepicker .react-datepicker__month {
  margin: 0;
  text-align: center;
  padding: 0 40px 16px;
}
.p-datepicker .react-datepicker__month-container {
  width: 100%;
}
.p-datepicker .react-datepicker__header {
  text-align: center;
  background-color: rgba(0, 0, 0, 0) !important;
  border-bottom: 0;
  border-top-left-radius: 0;
  padding: 0;
  position: relative;
}
.p-datepicker .react-datepicker__day-names {
  white-space: nowrap;
  margin: 0 40px;
}
.p-datepicker .react-datepicker__day-name,
.p-datepicker .react-datepicker__day,
.p-datepicker .react-datepicker__time-name {
  color: #1a1a1a;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  padding: 10px;
  margin: 2px 4px;
  line-height: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.p-datepicker .react-datepicker__day-name {
  font-weight: 600;
  color: #4d4d4d;
}
.p-datepicker .react-datepicker__day--outside-month {
  color: #b2b2b2;
}
.p-datepicker .react-datepicker__day--selected,
.p-datepicker .react-datepicker__day--in-selecting-range,
.p-datepicker .react-datepicker__day--in-range,
.p-datepicker .react-datepicker__month-text--selected,
.p-datepicker .react-datepicker__month-text--in-selecting-range,
.p-datepicker .react-datepicker__month-text--in-range,
.p-datepicker .react-datepicker__quarter-text--selected,
.p-datepicker .react-datepicker__quarter-text--in-selecting-range,
.p-datepicker .react-datepicker__quarter-text--in-range,
.p-datepicker .react-datepicker__year-text--selected,
.p-datepicker .react-datepicker__year-text--in-selecting-range,
.p-datepicker .react-datepicker__year-text--in-range {
  border-radius: 50%;
  background-color: #004196 !important;
  color: #fff;
  font-weight: 600;
}
.p-datepicker .react-datepicker__day--keyboard-selected,
.p-datepicker .react-datepicker__month-text--keyboard-selected,
.p-datepicker .react-datepicker__quarter-text--keyboard-selected,
.p-datepicker .react-datepicker__year-text--keyboard-selected {
  border-radius: 50%;
  background-color: #e5ecf4;
  color: #1a1a1a;
}
.p-datepicker .react-datepicker__day:not([aria-disabled="true"]):hover,
.p-datepicker .react-datepicker__month-text:not([aria-disabled="true"]):hover,
.p-datepicker .react-datepicker__quarter-text:not([aria-disabled="true"]):hover,
.p-datepicker .react-datepicker__year-text:not([aria-disabled="true"]):hover {
  border-radius: 50%;
  background-color: #e5ecf4;
}
.p-datepicker .p-datepicker__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
.p-datepicker .p-datepicker__select {
  display: flex;
}
.p-datepicker .p-datepicker__select .c-select {
  background-color: #fff;
  border: 0;
}
.p-datepicker .p-datepicker__select select {
  -moz-appearance: none;
  appearance: none;
  border: 0;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #fff;
  text-align: right;
  padding-right: 30px;
}
.p-datepicker .p-datepicker__select__year {
  min-width: 92px;
}
.p-datepicker .p-datepicker__select__month {
  min-width: 70px;
  margin-left: 5px;
}
.p-datepicker .p-datepicker__btn {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0);
  width: 48px;
  height: 48px;
  position: relative;
}
.p-datepicker .p-datepicker__btn--prev::before {
  content: "";
  display: block;
  position: absolute;
  background: url("/assets/images/icon_prev.svg");
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  background-size: contain;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
.p-datepicker .p-datepicker__btn--next::before {
  content: "";
  display: block;
  position: absolute;
  background: url("/assets/images/icon_next.svg");
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  background-size: contain;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.p-datepicker .p-datepicker__btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #e5ecf4;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  transition: 0.2s ease-out transform, 0.3s ease-out opacity;
}
.p-datepicker .p-datepicker__btn:hover::after,
.p-datepicker .p-datepicker__btn:focus::after {
  opacity: 1;
}

.p-graph-dot {
  background-color: #005eea;
  color: #fff;
  border-radius: 2px;
  font-family: arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-graph-cabinet__ylabel {
  font-size: 1.4rem;
  font-family: arial, sans-serif;
  text-align: right;
}
.p-graph-cabinet__ylabel--right {
  text-align: left;
}
.p-graph-cabinet__xlabel {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  font-weight: 300;
  color: #002471;
  position: relative;
  line-height: 1.5;
  text-align: left;
}
.p-graph-cabinet__xlabel.is-focus {
  background-color: #fbff95;
  outline: none;
}
.p-graph-cabinet__xlabel::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #002471;
}
.p-graph-cabinet__xlabel:hover::before {
  content: none;
}
.p-graph-cabinet__xlabel:focus {
  background-color: #fbff95;
  outline: none;
}
.p-graph-cabinet__legend {
  display: flex;
  gap: 24px;
}
.p-graph-cabinet__legend__item {
  font-size: 1.6rem;
  font-weight: 300;
  color: #1a1a1a;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 1032px) {
  .p-graph-cabinet__legend__item {
    font-size: 1.4rem;
  }
}
.p-graph-cabinet__legend__item::before {
  content: "";
  display: block;
  position: absolute;
  width: 32px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-graph-cabinet__legend__item--support::before {
  height: 4px;
  background-color: #005eea;
}
.p-graph-cabinet__legend__item--oppose::before {
  height: 4px;
  background-color: #d71a8b;
}
.p-graph-cabinet__legend__item--unknown::before {
  height: 12px;
  background-color: #ccc;
}
.p-graph-cabinet__zoom {
  display: flex;
  gap: 0;
  align-items: center;
}
.p-graph-cabinet__zoom > :first-child.p-graph-cabinet__zoom__btn {
  border-radius: 8px 0 0 8px;
}
.p-graph-cabinet__zoom > :last-child.p-graph-cabinet__zoom__btn {
  border-radius: 0 8px 8px 0;
}
.p-graph-cabinet__zoom__btn {
  background-color: #4d4d4d;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  width: 100px;
  height: 56px;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s ease background-color;
}
.p-graph-cabinet__zoom__btn:hover {
  background-color: #666;
}
.p-graph-cabinet__zoom__btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.p-graph-cabinet__zoom__btn:disabled:hover,
.p-graph-cabinet__zoom__btn:disabled:focus {
  background-color: #ccc;
}

.p-graph-party {
  z-index: 2;
}
.p-graph-party__ylabel {
  font-size: 1.4rem;
  font-family: arial, sans-serif;
  text-align: right;
}
.p-graph-party__ylabel--right {
  text-align: left;
}
.p-graph-party__xlabel {
  font-weight: 300;
  color: #002471;
  position: relative;
  text-decoration: underline;
  line-height: 1.5;
  text-align: left;
}
.p-graph-party__xlabel.is-focus {
  background-color: #fbff95;
  outline: none;
}
.p-graph-party__xlabel:hover {
  text-decoration: none;
}
.p-graph-party__xlabel:focus {
  background-color: #fbff95;
  outline: none;
}
.p-graph-party__tooltip {
  z-index: 11;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 16px 24px;
  border-radius: 4px;
  color: #fff;
  direction: ltr;
}
@media screen and (max-width: 1032px) {
  .p-graph-party__tooltip {
    padding: 16px 16px;
  }
}
.p-graph-party__tooltip__wrap {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1032px) {
  .p-graph-party__tooltip__wrap {
    gap: 10px;
  }
}
.p-graph-party__tooltip__label {
  font-size: 1.4rem;
  font-weight: 600;
}
@media screen and (max-width: 1032px) {
  .p-graph-party__tooltip__label {
    font-size: 1.2rem;
  }
}
.p-graph-party__tooltip__list {
  max-width: 744px;
  width: 100%;
  margin-top: 8px;
}
.p-graph-party__tooltip__list li {
  width: 100%;
  height: 22px;
  font-size: 1.4rem;
  font-weight: 300;
  white-space: nowrap;
}
@media screen and (max-width: 1032px) {
  .p-graph-party__tooltip__list li {
    font-size: 1.2rem;
    height: 16px;
  }
}
.p-graph-party__tooltip__list li + li {
  margin-top: 6px;
}
.p-graph-party__legend__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.u-mt-0 {
  margin-top: 0px;
}

.u-mt-5 {
  margin-top: 5px;
}

.u-mt-10 {
  margin-top: 10px;
}

.u-mt-15 {
  margin-top: 15px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mt-25 {
  margin-top: 25px;
}

.u-mt-30 {
  margin-top: 30px;
}

.u-mt-35 {
  margin-top: 35px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mt-45 {
  margin-top: 45px;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mt-55 {
  margin-top: 55px;
}

.u-mt-60 {
  margin-top: 60px;
}

.u-mt-65 {
  margin-top: 65px;
}

.u-mt-70 {
  margin-top: 70px;
}

.u-mt-75 {
  margin-top: 75px;
}

.u-mt-80 {
  margin-top: 80px;
}

.u-mt-85 {
  margin-top: 85px;
}

.u-mt-90 {
  margin-top: 90px;
}

.u-mt-95 {
  margin-top: 95px;
}

.u-mt-100 {
  margin-top: 100px;
}

.u-mt-105 {
  margin-top: 105px;
}

.u-mt-110 {
  margin-top: 110px;
}

.u-mt-115 {
  margin-top: 115px;
}

.u-mt-120 {
  margin-top: 120px;
}

.u-ml-0 {
  margin-left: 0px;
}

.u-ml-5 {
  margin-left: 5px;
}

.u-ml-10 {
  margin-left: 10px;
}

.u-ml-15 {
  margin-left: 15px;
}

.u-ml-20 {
  margin-left: 20px;
}

.u-ml-25 {
  margin-left: 25px;
}

.u-ml-30 {
  margin-left: 30px;
}

.u-ml-35 {
  margin-left: 35px;
}

.u-ml-40 {
  margin-left: 40px;
}

.u-ml-45 {
  margin-left: 45px;
}

.u-ml-50 {
  margin-left: 50px;
}

.u-ml-55 {
  margin-left: 55px;
}

.u-ml-60 {
  margin-left: 60px;
}

.u-ml-65 {
  margin-left: 65px;
}

.u-ml-70 {
  margin-left: 70px;
}

.u-ml-75 {
  margin-left: 75px;
}

.u-ml-80 {
  margin-left: 80px;
}

.u-ml-85 {
  margin-left: 85px;
}

.u-ml-90 {
  margin-left: 90px;
}

.u-ml-95 {
  margin-left: 95px;
}

.u-ml-100 {
  margin-left: 100px;
}

.u-ml-105 {
  margin-left: 105px;
}

.u-ml-110 {
  margin-left: 110px;
}

.u-ml-115 {
  margin-left: 115px;
}

.u-ml-120 {
  margin-left: 120px;
}

.u-mr-0 {
  margin-right: 0px;
}

.u-mr-5 {
  margin-right: 5px;
}

.u-mr-10 {
  margin-right: 10px;
}

.u-mr-15 {
  margin-right: 15px;
}

.u-mr-20 {
  margin-right: 20px;
}

.u-mr-25 {
  margin-right: 25px;
}

.u-mr-30 {
  margin-right: 30px;
}

.u-mr-35 {
  margin-right: 35px;
}

.u-mr-40 {
  margin-right: 40px;
}

.u-mr-45 {
  margin-right: 45px;
}

.u-mr-50 {
  margin-right: 50px;
}

.u-mr-55 {
  margin-right: 55px;
}

.u-mr-60 {
  margin-right: 60px;
}

.u-mr-65 {
  margin-right: 65px;
}

.u-mr-70 {
  margin-right: 70px;
}

.u-mr-75 {
  margin-right: 75px;
}

.u-mr-80 {
  margin-right: 80px;
}

.u-mr-85 {
  margin-right: 85px;
}

.u-mr-90 {
  margin-right: 90px;
}

.u-mr-95 {
  margin-right: 95px;
}

.u-mr-100 {
  margin-right: 100px;
}

.u-mr-105 {
  margin-right: 105px;
}

.u-mr-110 {
  margin-right: 110px;
}

.u-mr-115 {
  margin-right: 115px;
}

.u-mr-120 {
  margin-right: 120px;
}

.u-mb-0 {
  margin-bottom: 0px;
}

.u-mb-5 {
  margin-bottom: 5px;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-mb-15 {
  margin-bottom: 15px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-mb-25 {
  margin-bottom: 25px;
}

.u-mb-30 {
  margin-bottom: 30px;
}

.u-mb-35 {
  margin-bottom: 35px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

.u-mb-45 {
  margin-bottom: 45px;
}

.u-mb-50 {
  margin-bottom: 50px;
}

.u-mb-55 {
  margin-bottom: 55px;
}

.u-mb-60 {
  margin-bottom: 60px;
}

.u-mb-65 {
  margin-bottom: 65px;
}

.u-mb-70 {
  margin-bottom: 70px;
}

.u-mb-75 {
  margin-bottom: 75px;
}

.u-mb-80 {
  margin-bottom: 80px;
}

.u-mb-85 {
  margin-bottom: 85px;
}

.u-mb-90 {
  margin-bottom: 90px;
}

.u-mb-95 {
  margin-bottom: 95px;
}

.u-mb-100 {
  margin-bottom: 100px;
}

.u-mb-105 {
  margin-bottom: 105px;
}

.u-mb-110 {
  margin-bottom: 110px;
}

.u-mb-115 {
  margin-bottom: 115px;
}

.u-mb-120 {
  margin-bottom: 120px;
}

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

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

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

.u-valign-top {
  vertical-align: top;
}

.u-valign-middle {
  vertical-align: middle;
}

.u-valign-bottom {
  vertical-align: bottom;
}

.u-width-0 {
  width: 0% !important;
}

.u-width-5 {
  width: 5% !important;
}

.u-width-10 {
  width: 10% !important;
}

.u-width-15 {
  width: 15% !important;
}

.u-width-20 {
  width: 20% !important;
}

.u-width-25 {
  width: 25% !important;
}

.u-width-30 {
  width: 30% !important;
}

.u-width-35 {
  width: 35% !important;
}

.u-width-40 {
  width: 40% !important;
}

.u-width-45 {
  width: 45% !important;
}

.u-width-50 {
  width: 50% !important;
}

.u-width-55 {
  width: 55% !important;
}

.u-width-60 {
  width: 60% !important;
}

.u-width-65 {
  width: 65% !important;
}

.u-width-70 {
  width: 70% !important;
}

.u-width-75 {
  width: 75% !important;
}

.u-width-80 {
  width: 80% !important;
}

.u-width-85 {
  width: 85% !important;
}

.u-width-90 {
  width: 90% !important;
}

.u-width-95 {
  width: 95% !important;
}

.u-width-100 {
  width: 100% !important;
}

@media screen and (max-width: 1032px) {
  .u-width-tb-0 {
    width: 0% !important;
  }
  .u-width-tb-5 {
    width: 5% !important;
  }
  .u-width-tb-10 {
    width: 10% !important;
  }
  .u-width-tb-15 {
    width: 15% !important;
  }
  .u-width-tb-20 {
    width: 20% !important;
  }
  .u-width-tb-25 {
    width: 25% !important;
  }
  .u-width-tb-30 {
    width: 30% !important;
  }
  .u-width-tb-35 {
    width: 35% !important;
  }
  .u-width-tb-40 {
    width: 40% !important;
  }
  .u-width-tb-45 {
    width: 45% !important;
  }
  .u-width-tb-50 {
    width: 50% !important;
  }
  .u-width-tb-55 {
    width: 55% !important;
  }
  .u-width-tb-60 {
    width: 60% !important;
  }
  .u-width-tb-65 {
    width: 65% !important;
  }
  .u-width-tb-70 {
    width: 70% !important;
  }
  .u-width-tb-75 {
    width: 75% !important;
  }
  .u-width-tb-80 {
    width: 80% !important;
  }
  .u-width-tb-85 {
    width: 85% !important;
  }
  .u-width-tb-90 {
    width: 90% !important;
  }
  .u-width-tb-95 {
    width: 95% !important;
  }
  .u-width-tb-100 {
    width: 100% !important;
  }
  .u-width-tb-12 {
    width: 12% !important;
  }
  .u-width-tb-22 {
    width: 22% !important;
  }
  .u-width-tb-31 {
    width: 31% !important;
  }
}
.u-width-year {
  min-width: 28.1632653061% !important;
}
@media screen and (max-width: 1032px) {
  .u-width-year {
    min-width: 36.7897727273% !important;
  }
}

.u-width-date {
  min-width: 16.8367346939% !important;
}
@media screen and (max-width: 1032px) {
  .u-width-date {
    min-width: 20.7386363636% !important;
  }
}

.u-width-date-side {
  min-width: 40.8653846154% !important;
}

.u-width-date-tb {
  min-width: 16.8367346939% !important;
}
@media screen and (max-width: 1032px) {
  .u-width-date-tb {
    min-width: 26.8465909091% !important;
  }
}

.u-width-calendar {
  min-width: 2.8571428571% !important;
}
@media screen and (max-width: 1032px) {
  .u-width-calendar {
    min-width: 3.9772727273% !important;
  }
}

.u-width-min {
  max-width: 8.9795918367% !important;
  width: 100%;
}
@media screen and (max-width: 1032px) {
  .u-width-min {
    max-width: 12.5% !important;
    width: 100%;
  }
}

.u-width-author {
  width: 382px;
}
@media screen and (max-width: 1032px) {
  .u-width-author {
    min-width: 300px;
    width: 100%;
  }
}

.u-width-author-select {
  min-width: 20% !important;
}
@media screen and (max-width: 1032px) {
  .u-width-author-select {
    min-width: 25.4261363636% !important;
  }
}

.u-width-th {
  width: 180px;
}

.u-width-pagenum {
  width: 62px;
}

.u-width-cell {
  width: 72px;
}

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

.u-display-tb {
  display: none;
}
@media screen and (max-width: 1032px) {
  .u-display-tb {
    display: block !important;
  }
}

.u-display-lg {
  display: block;
}
@media screen and (max-width: 1033px) {
  .u-display-lg {
    display: none !important;
  }
}

.u-display-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html[lang="en"] .p-search-page--side .p-list-check--week {
  display: flex;
}
html[lang="en"] .p-text-result__num {
  padding-left: 0;
}
html[lang="en"] .p-text-result__num::before {
  content: none;
}
html[lang="en"] .p-login__text {
  letter-spacing: 0;
  font-weight: 300;
  white-space: normal;
  overflow-wrap: break-word;
}
html[lang="en"] .p-search-page__label__title {
  white-space: normal;
  overflow-wrap: break-word;
  min-width: 50px;
}

@media print {
  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  body.is-overlay {
    overflow: visible;
  }
  .l-main {
    background-color: initial;
  }
  #header,
  #header-nav,
  #footer,
  .l-wrapper-full,
  .p-encyc-result,
  .p-encyc-header,
  .p-encyc-timeline,
  .p-fixed-scaling,
  .p-lyt-utility,
  .c-btn-pdf,
  .c-btn-print,
  .u-print-none,
  .p-modal__close,
  .c-swipe,
  .p-graph-cabinet__zoom,
  .p-link-top {
    display: none;
  }
  .l-wrapper {
    padding-top: 10px;
    height: auto;
  }
  .l-content {
    margin: 0;
    padding: 0;
  }
  .p-media .konvajs-content {
    aspect-ratio: 800 / 1132;
    width: 100%;
    height: auto;
    display: block;
    max-height: 1000px;
  }
  .p-media .konvajs-content canvas {
    aspect-ratio: 800 / 1132;
    width: 100%;
    height: auto;
    display: block;
    max-height: 1000px;
  }
  .is-overlay .p-encyc-timeline {
    display: none;
  }
  .l-main--encyc {
    padding-bottom: 0;
    background: #fff;
  }
  .p-modal {
    position: static;
    width: 100%;
    height: 100%;
  }
  .p-modal:not(.is-active) {
    display: none;
  }
  .p-modal__header {
    display: none;
  }
  .p-modal__inner {
    max-width: 1040px;
    width: 100%;
    margin: 0;
    background-color: #fff;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }
  .p-modal__main {
    padding: 0;
    max-height: 100%;
    height: 100%;
    overflow-y: visible;
  }
  .l-main--encyc {
    background-image: none;
  }
  .p-modal-encyc {
    padding: 0;
  }
  .p-modal-encyc__sub__info__print {
    display: none;
  }
  .p-modal-encyc__movie {
    display: none;
  }
  .p-modal__footer {
    display: none;
  }
  .p-article {
    margin-top: 0;
    border-top: 0;
  }
  .p-article.p-article--list {
    display: none;
  }
  .p-article.p-article--list.p-article--print {
    display: block;
  }
  .c-text-print {
    display: block;
  }
  .p-lyt-detail--full {
    flex-direction: column-reverse;
  }
  .p-lyt-detail--full .p-lyt-detail__secondary {
    width: 100%;
  }
  .p-lyt-detail__primary {
    background-color: #fff;
  }
  .p-graph-cabinet {
    overflow: visible;
    transform: rotate(-90deg) scale(0.6);
  }
  .p-lyt-ratings-cabinet__graph {
    height: auto;
    min-height: auto;
  }
  .p-lyt-ratings-cabinet {
    background-color: initial;
    padding: 0;
  }
  .p-lyt-ratings-cabinet--scroll.is-overlay::before {
    opacity: 0;
  }
  .p-lyt-ratings-cabinet--scroll .p-lyt-ratings-cabinet__inner__item {
    overflow: visible;
  }
  .p-article + .p-article {
    margin-top: 0;
  }
  .p-lyt-wide {
    flex-direction: column;
  }
  .p-lyt-wide__secondary {
    width: 100%;
    height: 100%;
  }
  .p-lyt-wide__list {
    position: static;
    height: auto;
    overflow-y: visible;
    display: flex;
    flex-wrap: wrap;
  }
  .p-lyt-wide__list__item {
    width: 25%;
  }
  .p-lyt-wide__list__item__btn {
    padding: 10px 40px 10px 20px;
    text-align: left;
  }
  .p-lyt-ratings--scroll.is-overlay::before {
    opacity: 0;
  }
  .p-lyt-ratings--long {
    padding: 0;
  }
  .p-lyt-wide__primary {
    overflow: visible;
    background-color: #fff;
    position: relative;
  }
  .p-lyt-ratings {
    background-color: #fff;
  }
  .p-table-scroll {
    margin-right: 0;
    margin-top: 20px;
    transform: scale(0.7) !important;
    transform-origin: top left !important;
  }
  .p-table__tbody th,
  .p-table__tbody td {
    padding: 4px;
    font-size: 1em;
  }
  .p-table-scroll .p-table,
  .p-table-scroll__inner {
    overflow: visible;
    padding-right: 0;
  }
  .p-table--ratings.p-table--scroll .p-table__thead > tr > :first-child {
    min-width: 180px;
  }
  .p-table--ratings.p-table--scroll .p-table__thead > tr td,
  .p-table--ratings.p-table--scroll .p-table__thead > tr th {
    min-width: 80px;
    white-space: normal;
  }
  .p-lyt-ratings-party--scroll.is-overlay::before {
    opacity: 0;
  }
  .p-modal-encyc__img__caption {
    color: #1a1a1a;
  }
}
