@charset "UTF-8";
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-weight: normal;
  font-size: 100%;
}

ul,
ol {
  list-style: none;
}

html {
  overflow: auto;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img,
iframe {
  border: 0;
  vertical-align: top;
}

img,
video {
  width: 100%;
  max-width: 100%;
  height: auto;
}

img {
  vertical-align: top;
  backface-visibility: hidden;
}

table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
}

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

input[type=text],
input[type=number],
input[type=email],
input[type=submit],
button,
select,
textarea {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  vertical-align: top;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  resize: vertical;
}

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

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

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

:root {
  --vh: ;
  --black: 0,0,0;
  --gray: 204,204,204;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3.4375rem;
}
html:not([lang=ja]) {
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  html {
    font-size: 1.4545454545vw;
  }
}

body {
  min-width: 320px;
  padding-top: 3.4375rem;
  color: rgba(var(--black));
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 768px) {
  body {
    padding-top: 5.625rem;
  }
}
@media screen and (min-width: 768px) and (hover: none) {
  body {
    -webkit-text-size-adjust: none;
  }
}
body.is-fixed {
  overflow: hidden;
}

/**
 * show hide
 */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/**
 * l-header
 */
.l-header {
  position: fixed;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3.4375rem;
  padding: 0.9375rem 0 0 1.3125rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background: #fff;
}
.l-header .l-header__logo {
  width: 16.25rem;
}
@media screen and (min-width: 768px) {
  .l-header {
    display: flex;
    gap: 0 1.875rem;
    justify-content: space-between;
    height: 5.625rem;
    padding: 1.3125rem 3.125rem 1.3125rem 1.6875rem;
    transition: padding 0.3s;
  }
  .l-header .l-header__logo {
    justify-content: flex-start;
    width: 18.75rem;
    transition: width 0.3s;
  }
  .l-header .l-header__link {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1365px) {
  .l-header {
    padding: 1.3125rem 1.5625rem;
  }
  .l-header .l-header__logo {
    width: 17.5rem;
  }
}

/**
 * l-burger
 */
.l-burger {
  position: absolute;
  top: 0.4375rem;
  right: 0.625rem;
  z-index: 101;
  width: 2.5rem;
  height: 2.5rem;
}
.l-burger .l-burger__line {
  position: absolute;
  top: calc(50% - 0.0625rem);
  left: 0.1875rem;
  width: 2.125rem;
  height: 0.3125rem;
  background: rgba(var(--black));
  transition: all 0.3s;
}
.l-burger .l-burger__line::before, .l-burger .l-burger__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: inherit;
  height: inherit;
  background: rgba(var(--black));
  transition: inherit;
}
.l-burger .l-burger__line::before {
  top: -0.625rem;
}
.l-burger .l-burger__line::after {
  top: 0.625rem;
}
.l-burger.is-open .l-burger__line {
  background: transparent;
}
.l-burger.is-open .l-burger__line::before {
  top: 0;
  height: 0.125rem;
  rotate: 225deg;
}
.l-burger.is-open .l-burger__line::after {
  top: 0;
  height: 0.125rem;
  rotate: 315deg;
}

@media screen and (min-width: 768px) {
  .l-burger {
    top: 1.25rem;
    right: 1.875rem;
    width: 3.4375rem;
  }
  .l-burger .l-burger__line {
    left: 0;
    width: 100%;
  }
}
/**
 * l-nav
 */
.l-nav {
  padding: 4.375rem 1.375rem;
  min-height: 100svh;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  background: #fff;
  transition: translate 0.3s;
  translate: 100%;
}
.l-nav.is-open {
  translate: 0;
}
.l-nav .l-nav__logo {
  width: 20.325rem;
}
.l-nav .l-nav__list {
  margin-top: 2rem;
  padding-left: 0.3125rem;
}
.l-nav .l-nav__item {
  padding: 0.75rem 0;
  display: block;
}
.l-nav .l-nav__item img {
  height: 1.6875rem;
  width: auto;
}
.l-nav .l-nav__sublist {
  padding-top: 0.75rem;
}
.l-nav .l-nav__sublist__item {
  padding: 0.375rem 0;
  display: block;
}
.l-nav .l-nav__sublist__item img {
  height: 1.125rem;
  width: auto;
}
.l-nav .l-nav__sublist__item:last-of-type {
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .l-nav {
    width: 25%;
  }
}
/**
 * l-footer
 */
.l-footer {
  position: relative;
  background: #fff;
}
.l-footer .l-footer__inner {
  padding-bottom: 1.75rem;
  text-align: center;
}
.l-footer .l-footer__logo {
  width: 20.1875rem;
  margin-inline: auto;
}
.l-footer .l-footer__contact {
  margin-top: 1.875rem;
}
.l-footer .l-footer__contact-link {
  position: relative;
  color: #4a4a4a;
}
.l-footer .l-footer__copyright {
  padding: 0.75rem;
  background: rgba(var(--black));
  color: #fff;
  font-size: 0.6875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-container:not(.-sp-only) .l-footer__inner {
    padding-bottom: 3rem;
  }
  .l-container:not(.-sp-only) .l-footer__logo {
    width: 40.625rem;
  }
  .l-container:not(.-sp-only) .l-footer__contact {
    margin-top: 3.4375rem;
  }
  .l-container:not(.-sp-only) .l-footer__copyright {
    padding: 0.75rem;
    font-size: 0.6875rem;
  }
  .l-footer .l-footer__contact-link::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.125rem;
    width: 0;
    height: 1px;
    background: #4a4a4a;
    transition: all 0.3s;
  }
  .l-footer .l-footer__contact-link:focus::before {
    right: 0;
    left: 0;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .l-footer .l-footer__contact-link {
    transition: all 0.3s;
  }
  .l-footer .l-footer__contact-link:hover::before {
    right: 0;
    left: 0;
    width: 100%;
  }
}

/**
 * l-container
 */
.l-container {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-container.-sp-only {
    max-width: 23.4375rem;
    margin-inline: auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  }
  .l-container.-sp-only .u-inner {
    padding-right: calc(22 * 1rem / 16);
    padding-left: calc(22 * 1rem / 16);
  }
}

/**
 * l-sub-kv
 */
.l-sub-kv {
  background: #eee;
  display: grid;
  place-items: center;
  height: 12.5rem;
}
@media screen and (min-width: 768px) {
  .l-sub-kv {
    height: 25rem;
  }
}

/**
 * l-pagetop
 */
.l-pagetop {
  opacity: 0;
  position: fixed;
  right: 0.625rem;
  bottom: 0.625rem;
  color: rgba(var(--black));
  transition: opacity 0.3s;
}
.l-pagetop.is-show {
  opacity: 1;
}
.l-pagetop .l-pagetop__link {
  display: block;
  display: grid;
  place-items: center;
  width: 2.1875rem;
  height: 2.1875rem;
  background: rgba(var(--black));
}
.l-pagetop .l-pagetop__link::before {
  content: "";
  clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  width: 0.625rem;
  height: 0.5rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .l-pagetop {
    right: 1.5625rem;
    bottom: 1.5625rem;
  }
  .l-pagetop .l-pagetop__link {
    width: 3.4375rem;
    height: 3.4375rem;
  }
  .l-pagetop .l-pagetop__link::before {
    width: 1rem;
    height: 0.75rem;
  }
  .l-pagetop .l-pagetop__link:focus {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .l-pagetop .l-pagetop__link {
    transition: all 0.3s;
  }
  .l-pagetop .l-pagetop__link:hover {
    opacity: 0.7;
  }
}

/**
 * c-archive01
 * トピックス
 */
.c-archive01 .c-archive01__item + .c-archive01__item {
  margin-top: 1.25rem;
}
.c-archive01 .c-archive01__link {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  border: 3px solid rgba(var(--black));
  border-radius: 0.625rem;
  background: rgba(var(--black));
  color: #fff;
}
.c-archive01 .c-archive01__img {
  width: 9.0625rem;
}
.c-archive01 .c-archive01__content {
  flex: 1;
  padding: 0.3125rem 0.625rem 0.3125rem 0.9375rem;
}
.c-archive01 .c-archive01__date {
  color: #e21010;
  font-weight: 800;
  font-size: 0.625rem;
}
.c-archive01 .c-archive01__head {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 800;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 768px) {
  .l-container:not(.-sp-only) .c-archive01 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3.125rem;
  }
  .l-container:not(.-sp-only) .c-archive01 .c-archive01__item + .c-archive01__item {
    margin-top: 0;
  }
  .l-container:not(.-sp-only) .c-archive01 .c-archive01__link {
    border: 5px solid rgba(var(--black));
  }
  .l-container:not(.-sp-only) .c-archive01 .c-archive01__img {
    width: 12.5rem;
  }
  .l-container:not(.-sp-only) .c-archive01 .c-archive01__content {
    padding: 0.75rem 1.25rem 0.625rem 1.875rem;
  }
  .l-container:not(.-sp-only) .c-archive01 .c-archive01__date {
    font-size: 1rem;
  }
  .l-container:not(.-sp-only) .c-archive01 .c-archive01__head {
    font-size: 1.125rem;
  }
  .c-archive01 .c-archive01__link:focus {
    background: #fff;
    color: rgba(var(--black));
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .c-archive01 .c-archive01__link {
    transition: all 0.3s;
  }
  .c-archive01 .c-archive01__link:hover {
    background: #fff;
    color: rgba(var(--black));
  }
}

/**
 * c-archive02
 * ブンブンジャー
 */
.c-archive02__item + .c-archive02__item {
  margin-top: 2.5rem;
}

.c-archive02__imgs {
  position: relative;
  aspect-ratio: 300/180;
}
.c-archive02__imgs.is-active .c-archive02__img:first-of-type {
  opacity: 0;
  z-index: 1;
}
.c-archive02__imgs.is-active .c-archive02__img:nth-of-type(2) {
  opacity: 1;
  z-index: 2;
}

.c-archive02__img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: opacity 0.1s;
}
.c-archive02__img:first-of-type {
  opacity: 1;
  z-index: 2;
}

.c-archive02__head {
  margin-top: 0.625rem;
  font-weight: 800;
  font-size: 1.125rem;
  text-align: center;
}

.c-archive02__btn {
  display: block;
  position: relative;
  width: 9rem;
  height: 2.75rem;
  margin-top: 0.625rem;
  padding-left: 3.75rem;
  border-radius: 9999px;
  background: #f16565;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  margin-inline: auto;
}
.c-archive02__btn.is-active {
  padding-right: 3.75rem;
  padding-left: 0;
  background: #f9d0d0;
}
.c-archive02__btn.is-active::before {
  left: calc(100% - 4.0625rem);
}
.c-archive02__btn::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.3125rem;
  width: 3.75rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: #fff;
  transition: left 0.3s;
}

@media screen and (min-width: 768px) {
  .l-container:not(.-sp-only) .c-archive02 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem 0.9375rem;
  }
  .l-container:not(.-sp-only) .c-archive02 .c-archive02__item + .c-archive02__item {
    margin-top: 0;
  }
}
/**
 * c-archive03
 * ナンバーワン
 */
.c-archive03__item + .c-archive03__item {
  margin-top: 2.5rem;
}

.c-archive03__imgs {
  position: relative;
  aspect-ratio: 300/180;
}
.c-archive03__imgs.is-active .c-archive03__img:first-of-type {
  opacity: 0;
  z-index: 1;
}
.c-archive03__imgs.is-active .c-archive03__img:nth-of-type(2) {
  opacity: 1;
  z-index: 2;
}

.c-archive03__img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: opacity 0.1s;
}
.c-archive03__img:first-of-type {
  opacity: 1;
  z-index: 2;
}

.c-archive03__head {
  margin-top: 0.625rem;
  font-weight: 800;
  font-size: 1.125rem;
  text-align: center;
}

.c-archive03__btn {
  display: block;
  position: relative;
  width: 9rem;
  height: 2.75rem;
  margin-top: 0.625rem;
  padding-left: 3.75rem;
  border-radius: 9999px;
  background: #77D05A;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  margin-inline: auto;
}
.c-archive03__btn.is-active {
  padding-right: 3.75rem;
  padding-left: 0;
  background: #baf5a6;
}
.c-archive03__btn.is-active::before {
  left: calc(100% - 4.0625rem);
}
.c-archive03__btn::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.3125rem;
  width: 3.75rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: #fff;
  transition: left 0.3s;
}

@media screen and (min-width: 768px) {
  .l-container:not(.-sp-only) .c-archive03 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem 0.9375rem;
  }
  .l-container:not(.-sp-only) .c-archive03 .c-archive03__item + .c-archive03__item {
    margin-top: 0;
  }
}
/**
 * c-archive04
 * ヒストリー
 */
.c-archive04 .c-archive04__item + .c-archive04__item {
  margin-top: 1.25rem;
}
.c-archive04 .c-archive04__link {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  border: 3px solid rgba(var(--black));
  border-radius: 0.625rem;
  background: rgba(var(--black));
  color: #fff;
}
.c-archive04 .c-archive04__img {
  width: 9.0625rem;
}
.c-archive04 .c-archive04__content {
  flex: 1;
  padding: 0.3125rem 0.625rem 0.3125rem 0.9375rem;
}
.c-archive04 .c-archive04__date {
  color: #e21010;
  font-weight: 800;
  font-size: 0.625rem;
}
.c-archive04 .c-archive04__head {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 800;
  box-orient: vertical;
  line-clamp: 3;
}
@media screen and (min-width: 768px) {
  .l-container:not(.-sp-only) .c-archive04 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3.125rem;
  }
  .l-container:not(.-sp-only) .c-archive04 .c-archive04__item + .c-archive04__item {
    margin-top: 0;
  }
  .l-container:not(.-sp-only) .c-archive04 .c-archive04__link {
    border: 5px solid rgba(var(--black));
  }
  .l-container:not(.-sp-only) .c-archive04 .c-archive04__img {
    width: 12.5rem;
  }
  .l-container:not(.-sp-only) .c-archive04 .c-archive04__content {
    padding: 0.75rem 1.25rem 0.625rem 1.875rem;
  }
  .l-container:not(.-sp-only) .c-archive04 .c-archive04__date {
    font-size: 1rem;
  }
  .l-container:not(.-sp-only) .c-archive04 .c-archive04__head {
    font-size: 1.125rem;
  }
  .c-archive04 .c-archive04__link:focus {
    background: #fff;
    color: rgba(var(--black));
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .c-archive04 .c-archive04__link {
    transition: all 0.3s;
  }
  .c-archive04 .c-archive04__link:hover {
    background: #fff;
    color: rgba(var(--black));
  }
}

/**
 * c-banner01
 * フッター上の横長バナー
 */
.c-banner01 {
  background: #f7f7f7;
  position: relative;
}
.c-banner01 .c-banner01__inner {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
.c-banner01 .c-banner01__list {
  width: 20rem;
  margin-inline: auto;
}
.c-banner01 .c-banner01__item + .c-banner01__item {
  margin-top: 0.9375rem;
}
.c-banner01 .c-banner01__link {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-container:not(.-sp-only) .c-banner01__inner {
    padding-top: 4.0625rem;
    padding-bottom: 4.0625rem;
  }
  .l-container:not(.-sp-only) .c-banner01__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    width: auto;
    justify-content: center;
  }
  .l-container:not(.-sp-only) .c-banner01__item {
    width: calc(33.33% - 0.8333333333rem);
  }
  .l-container:not(.-sp-only) .c-banner01__item + .c-banner01__item {
    margin-top: 0;
  }
  .c-banner01 .c-banner01__link:focus {
    box-shadow: 0 4px 10px 4px rgba(0, 0, 0, 0.3);
    filter: brightness(120%);
    overflow: hidden;
    border-radius: 0.5rem;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .c-banner01 .c-banner01__link {
    transition: all 0.3s;
  }
  .c-banner01 .c-banner01__link:hover {
    box-shadow: 0 4px 10px 4px rgba(0, 0, 0, 0.3);
    filter: brightness(120%);
    overflow: hidden;
    border-radius: 0.5rem;
  }
}

/**
 * c-banner02
 * フッター上の協賛企業のロゴ
 */
.c-banner02 {
  background: #fff;
  position: relative;
}
.c-banner02 .c-banner02__inner {
  padding-top: 3.125rem;
  padding-bottom: 2.625rem;
}
.c-banner02 .c-banner02__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 0.5rem;
  width: 20rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-container:not(.-sp-only) .c-banner02__inner {
    padding-top: 8.125rem;
    padding-bottom: 5.3125rem;
  }
  .l-container:not(.-sp-only) .c-banner02__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem 0.75rem;
    width: auto;
  }
  .c-banner02 .c-banner02__link {
    display: block;
  }
  .c-banner02 .c-banner02__link:focus {
    box-shadow: 0 2px 8px 2px rgba(0, 0, 0, 0.3);
    filter: brightness(120%);
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .c-banner02 .c-banner02__link {
    transition: all 0.3s;
  }
  .c-banner02 .c-banner02__link:hover {
    box-shadow: 0 2px 8px 2px rgba(0, 0, 0, 0.3);
    filter: brightness(120%);
  }
}

/**
 * c-box01
 * トップページで使用
 */
.c-box01 {
  border-radius: 0.625rem;
  overflow: hidden;
  background: #fff;
}
.c-box01 .c-box01__head {
  background: rgba(var(--black));
  padding: 0.9375rem 0;
  display: grid;
  place-items: center;
}
.c-box01 .c-box01__head img {
  width: auto;
  height: 1.75rem;
}
.c-box01 .c-box01__content {
  padding: 0.9375rem 0.9375rem 2.1875rem;
}
/**
 * c-btn01
 * 通常ボタン
 */
.c-btn01 .c-btn01__link {
  display: grid;
  width: 100%;
  max-width: 15.625rem;
  margin-inline: auto;
  place-items: center;
  border-radius: 9999px;
  background-color: rgba(var(--black)) !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 1.125rem;
  min-height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .l-container:not(.-sp-only) .c-btn01__link {
    font-size: 1.25rem;
    min-height: 3.75rem;
    max-width: 18.125rem;
  }
  .l-container:not(.-sp-only) .c-btn01__link:focus {
    max-width: 20rem;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .l-container:not(.-sp-only) .c-btn01__link {
    transition: all 0.3s;
  }
  .l-container:not(.-sp-only) .c-btn01__link:hover {
    max-width: 20rem;
  }
}
@media screen and (min-width: 768px) {
  .c-btn01 .c-btn01__link:focus {
    max-width: 20rem;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .c-btn01 .c-btn01__link {
    transition: all 0.3s;
  }
  .c-btn01 .c-btn01__link:hover {
    max-width: 20rem;
  }
}

/**
 * c-download01
 * せんたいクラフトのリスト
 */
.c-download01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem 0.9375rem;
}
.c-download01 .c-download01__item {
  display: flex;
  flex-direction: column;
}
.c-download01 .c-download01__head {
  flex-grow: 1;
  color: #f49605;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.c-download01 .c-download01__thumb {
  margin-top: 0.625rem;
  overflow: hidden;
  border: 1px solid #f49605;
  background: #ededed;
}
.c-download01 .c-download01__thumb img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 160/104;
}
@media screen and (min-width: 768px) {
  .l-container:not(.-sp-only) .c-download01 {
    gap: 3.125rem 2.8125rem;
  }
  .l-container:not(.-sp-only) .c-download01__head {
    font-size: 1.25rem;
  }
  .l-container:not(.-sp-only) .c-download01__thumb {
    margin-top: 1.25rem;
  }
  .c-download01 .c-download01__link:focus {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .c-download01 .c-download01__link {
    transition: all 0.3s;
  }
  .c-download01 .c-download01__link:hover {
    opacity: 0.7;
  }
}

/**
 * c-head02
 * 各下層ページのページタイトル
 */
.c-head02 {
  text-align: center;
}
.c-head02 img {
  width: auto;
  height: 2.125rem;
}
@media screen and (min-width: 768px) {
  .c-head02 img {
    height: 3.125rem;
  }
}

/**
 * c-pager01
 * プラグインで生成するページャ
 */
.c-pager01 {
  margin-top: 2.8125rem;
  margin-inline: auto;
}
.c-pager01 .wp-pagenavi {
  display: flex;
  justify-content: center;
}
.c-pager01 .wp-pagenavi span,
.c-pager01 .wp-pagenavi a {
  display: grid;
  place-items: center;
  width: 2.1875rem;
  height: 2.1875rem;
  margin: 0 0.25rem 0.375rem;
  border: 2px solid rgba(var(--black));
  background: rgba(var(--black));
  color: #fff;
  font-size: 0.75rem;
  text-decoration: none;
}
.c-pager01 .wp-pagenavi span.current {
  background: #e21010 !important;
  text-decoration: none;
}
.c-pager01 .wp-pagenavi a.previouspostslink {
  order: -1;
}
.c-pager01 .wp-pagenavi a.nextpostslink {
  order: 9999;
}
@media screen and (min-width: 768px) {
  .c-pager01 {
    margin-top: 3.75rem;
  }
  .c-pager01 span,
  .c-pager01 a {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.625rem 0.625rem;
    transition: 0.3s;
  }
  .c-pager01 a:hover {
    background: #e21010 !important;
    text-decoration: none;
  }
}

/**
 * layout
 */
.u-inner {
  padding-right: calc(22 * 1rem / 16);
  padding-left: calc(22 * 1rem / 16);
}
@media screen and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: calc(1100 * 1rem / 16);
    margin: auto;
    padding-right: calc(50 * 1rem / 16);
    padding-left: calc(50 * 1rem / 16);
  }
}

/**
 * hover
 */
.u-alpha {
  transition: opacity 0.3s;
}
.u-alpha:focus {
  opacity: 0.7;
}
@media (hover: hover) and (pointer: fine) {
  .u-alpha {
    transition: all 0.3s;
  }
  .u-alpha:hover {
    opacity: 0.7;
  }
}

/**
 * text
 */
.u-break {
  display: inline-block;
}

/**
 * font
 */
.u-bold {
  font-weight: 800;
}

.u-black {
  color: rgba(var(--black));
}

.u-gray {
  color: rgba(var(--gray));
}

.u-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  white-space: nowrap;
}

/*-----------------------------------------
** NEW icon
-----------------------------------------*/
.-new {
  position: relative;
}

.-new::after {
  content: "NEW";
  background: red;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 4px 1em 4px 1em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.-ic-new {
  position: relative;
}

.-ic-new::after {
  content: "";
  width: 50px;
  height: 50px;
  background: url(../images/common/ic-new.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .-ic-new::after {
    width: 50px;
    height: 50px;
  }
}
/*--------------------------------------------
* text-align
-------------------------------------------*/
.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.top {
  vertical-align: top;
}

.mid {
  vertical-align: middle;
}

.btm {
  vertical-align: bottom;
}

.block {
  display: block;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.line {
  line-height: 1.2;
}

/*--------------------------------------------
* width
-------------------------------------------*/
.w-10 {
  width: 15%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-90 {
  width: 90%;
}

/*--------------------------------------------
* font-size
-------------------------------------------*/
.font-25 {
  font-size: 25%;
}

.font-30 {
  font-size: 30%;
}

.font-35 {
  font-size: 35%;
}

.font-40 {
  font-size: 40%;
}

.font-50 {
  font-size: 50%;
}

.font-60 {
  font-size: 60%;
}

.font-70 {
  font-size: 70%;
}

.font-75 {
  font-size: 75%;
}

.font-80 {
  font-size: 80%;
}

.font-85 {
  font-size: 85%;
}

.font-90 {
  font-size: 90%;
}

.font-100 {
  font-size: 100%;
}

.font-110 {
  font-size: 110%;
}

.font-115 {
  font-size: 115%;
}

.font-120 {
  font-size: 120%;
}

.font-125 {
  font-size: 125%;
}

.font-130 {
  font-size: 130%;
}

.font-140 {
  font-size: 140%;
}

.font-150 {
  font-size: 150%;
}

.font-160 {
  font-size: 160%;
}

.font-170 {
  font-size: 170%;
}

.font-180 {
  font-size: 180%;
}

.font-190 {
  font-size: 190%;
}

.font-200 {
  font-size: 200%;
}

.font-210 {
  font-size: 210%;
}

.font-220 {
  font-size: 220%;
}

.font-230 {
  font-size: 230%;
}

.font-240 {
  font-size: 240%;
}

.font-250 {
  font-size: 250%;
}

/*--------------------------------------------
* margin-top
-------------------------------------------*/
.mt-5 {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------
* margin-bottom
-------------------------------------------*/
.mb-5 {
  margin-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-130 {
  margin-bottom: 130px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-200 {
  margin-bottom: 200px;
}

/*--------------------------------------------
* margin-left
-------------------------------------------*/
.ml-10 {
  margin-left: 10px;
}

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

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

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

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

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

/*--------------------------------------------
* margin-right
-------------------------------------------*/
.mr-10 {
  margin-right: 10px;
}

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

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

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

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

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

/*--------------------------------------------
* padding-top
-------------------------------------------*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-150 {
  padding-top: 150px;
}

/*--------------------------------------------
* padding-bottom
-------------------------------------------*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

/*--------------------------------------------
* padding-left
-------------------------------------------*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-230 {
  padding-left: 230px;
}

/*--------------------------------------------
* padding-right
-------------------------------------------*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-50 {
  padding-right: 50px;
}

/**
 * 背景色
 */
body.page-home {
  background: #EB59A8;
}
body.page-home .l-container {
  position: relative;
  background-color: inherit;
}
body.page-home .l-container::before {
  content: "";
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/index/bg_container01.png) repeat left top/18.75rem;
}
@media screen and (min-width: 768px) {
  body.page-home {
    position: relative;
  }
  body.page-home::before {
    content: "";
    opacity: 0.2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240.001%22%20viewBox%3D%220%200%2040%2040.001%22%3E%20%3Cpath%20id%3D%22%E4%BA%A4%E5%B7%AE_1%22%20data-name%3D%22%E4%BA%A4%E5%B7%AE%201%22%20d%3D%22M20301%2C12763Zm15-15a5%2C5%2C0%2C1%2C1%2C5%2C5A5%2C5%2C0%2C0%2C1%2C20316%2C12748Zm-20-20a5%2C5%2C0%2C1%2C1%2C5%2C5A5%2C5%2C0%2C0%2C1%2C20296%2C12728Zm40%2C0Z%22%20transform%3D%22translate(-20295.998%20-12723.002)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") repeat center/2.5rem auto;
  }
}

/**
 * p-index-carousel
 */
.p-index-carousel {
  position: relative;
  background: rgba(var(--black));
}
.p-index-carousel .p-index-carousel__pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  height: 2.1875rem;
  margin-inline: auto;
}
.p-index-carousel .p-index-carousel__pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 0.625rem;
  height: 0.625rem;
  margin: 0 0.3125rem;
  background: #fff;
}
.p-index-carousel .p-index-carousel__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #f00;
}

/**
 * about-modal
 * スーパー戦隊とはモーダル
 */
.about-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1001;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: opacity 0.6s, visibility 0.6s;
}
.about-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.about-modal .about-modal__inner {
  position: relative;
  max-height: 100vh;
  max-height: 100svh;
  padding: 3.75rem 1.25rem;
  overflow-y: auto;
  background: url(../images/index/bg_about-modal01.png) no-repeat #fff center/cover;
}
.about-modal .about-modal__img {
  margin-top: 1.875rem;
}
.about-modal .about-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .about-modal .about-modal__inner {
    max-height: 100svh;
    padding: 7.5rem 1.25rem;
  }
  .about-modal .about-modal__txt {
    width: 34.375rem;
    margin-inline: auto;
  }
  .about-modal .about-modal__img {
    width: 50rem;
    margin-top: 5.625rem;
    margin-inline: auto;
  }
  .about-modal .about-modal__close {
    width: 3.4375rem;
    height: 3.4375rem;
  }
}

.about-modal-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.6s, visibility 0.6s;
}
.about-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/**
 * p-index-news
 */
.p-index-news {
  position: relative;
  background: #f16565;
}
.p-index-news .p-index-news__inner {
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
}
.p-index-news .p-index-news__list {
  overflow: visible;
}
.p-index-news .p-index-news__link {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  border: 3px solid rgba(var(--black));
  border-radius: 0.625rem;
  background: rgba(var(--black));
  color: #fff;
}
.p-index-news .p-index-news__thumb {
  width: 6.5625rem;
}
.p-index-news .p-index-news__txt {
  flex: 1;
  padding: 0.3125rem 0.625rem;
}
.p-index-news .p-index-news__date {
  color: #e21010;
  font-weight: 800;
  font-size: 0.625rem;
  line-height: 1.5;
}
.p-index-news .p-index-news__title {
  display: -webkit-box;
  margin-top: 0.1875rem;
  overflow: hidden;
  font-weight: 800;
  font-size: 0.8125rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .p-index-news .p-index-news__link:focus {
    background: #fff;
    color: rgba(var(--black));
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .p-index-news .p-index-news__link {
    transition: all 0.3s;
  }
  .p-index-news .p-index-news__link:hover {
    background: #fff;
    color: rgba(var(--black));
  }
}

/**
 * p-index-monthly
 */
.p-index-monthly {
  position: relative;
}
.p-index-monthly .p-index-monthly__inner {
  padding-top: 0;
  padding-bottom: 3.75rem;
}
.p-index-monthly .p-index-monthly__head {
  margin: 0 -1.375rem;
}
.p-index-monthly .p-index-monthly__img {
  width: 20rem;
  margin-top: -0.75rem;
  margin-inline: auto;
}
.p-index-monthly .p-index-monthly__txt {
  margin-top: 1.5625rem;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: center;
}
.p-index-monthly .p-index-monthly__txt + .p-index-monthly__txt {
  margin-top: 0.625rem;
}

/**
 * p-index-download
 */
.p-index-download {
  margin-top: 2.8125rem;
}
.p-index-download .p-index-download__content {
  margin-top: 2.1875rem;
}
.p-index-download .p-index-download__txt {
  font-weight: 800;
  line-height: 1.6;
}
.p-index-download .p-index-download__btn {
  margin-top: 2.1875rem;
}

/**
 * p-index-video
 */
.p-index-video {
  margin-top: 2.5rem;
}
.p-index-video .p-index-video__sec + .p-index-video__sec {
  margin-top: 2.5rem;
}
.p-index-video .p-index-video__lead {
  width: 17.5rem;
  margin-inline: auto;
}
.p-index-video .p-index-video__slider {
  position: relative;
  margin-top: 1.25rem;
  margin-inline: auto;
}
.p-index-video .p-index-video__trigger {
  display: block;
  width: 15rem;
  overflow: hidden;
  border-radius: 0.625rem;
  margin-inline: auto;
}
.p-index-video .p-index-video__trigger::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.125rem;
  height: 1.9375rem;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_2133%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%202133%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2250.512%22%20height%3D%2231.57%22%20viewBox%3D%220%200%2050.512%2031.57%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_66%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2066%22%20transform%3D%22translate(0%200)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_32%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2032%22%20width%3D%2250.512%22%20height%3D%2231.57%22%20rx%3D%226%22%20fill%3D%22red%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_99%22%20data-name%3D%22%E3%83%91%E3%82%B9%2099%22%20d%3D%22M740.625%2C2555.1v16.235l12.628-8.118Z%22%20transform%3D%22translate(-720.105%20-2547.432)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100% auto;
  translate: -50% -50%;
}
.p-index-video .p-index-video__prev,
.p-index-video .p-index-video__next {
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background: rgba(var(--black));
  cursor: pointer;
  translate: 0 -50%;
}
.p-index-video .p-index-video__prev::before,
.p-index-video .p-index-video__next::before {
  content: "";
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  width: 0.4375rem;
  height: 0.5625rem;
  background: #fff;
}
.p-index-video .p-index-video__next {
  right: 0;
  left: auto;
}
.p-index-video .p-index-video__next::before {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.p-index-video .p-index-video__btn {
  margin-top: 2.1875rem;
}
.p-index-video .p-index-video__overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.6s, visibility 0.6s;
}
.p-index-video .p-index-video__overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.p-index-video .p-index-video__modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1001;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 62.5rem;
  max-height: 75vh;
  background: #fff;
  transition: opacity 0.6s, visibility 0.6s;
  aspect-ratio: 16/9;
}
.p-index-video .p-index-video__modal.is-open {
  opacity: 1;
  visibility: visible;
}
.p-index-video .p-index-video__modal iframe {
  display: none;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.p-index-video .p-index-video__close {
  position: absolute;
  top: -3.4375rem;
  right: 0;
  z-index: 1002;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-index-video .p-index-video__trigger:focus {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .p-index-video .p-index-video__trigger {
    transition: all 0.3s;
  }
  .p-index-video .p-index-video__trigger:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-index-video .p-index-video__close {
    top: -5.3125rem;
    width: 3.4375rem;
    height: 3.4375rem;
    cursor: pointer;
  }
}

/**
 * p-index-manners
 */
.p-index-manners {
  margin-top: 2.5rem;
}
.p-index-manners .p-index-manners__txt {
  font-weight: 800;
  letter-spacing: -0.05em;
}
.p-index-manners .p-index-manners__archive {
  margin-top: 2.1875rem;
}
.p-index-manners .p-index-manners__btn {
  margin-top: 2.1875rem;
}

/**
 * p-index-boonboomger
 */
.p-index-boonboomger {
  margin-top: 2.5rem;
}
.p-index-boonboomger .p-index-boonboomger__txt {
  font-weight: 800;
  letter-spacing: -0.05em;
}
.p-index-boonboomger .p-index-boonboomger__archive {
  margin-top: 2.1875rem;
}
.p-index-boonboomger .p-index-boonboomger__btn {
  margin-top: 2.1875rem;
}

/**
 * p-index-topics
 */
.p-index-topics {
  margin-top: 2.5rem;
}
.p-index-topics .p-index-topics__btn {
  margin-top: 2.1875rem;
}

/**
 * p-index-present
 */
.p-index-present {
  margin-top: 2.5rem;
}
.p-index-present .p-index-present__img {
  overflow: hidden;
  border-radius: 0.625rem;
}
.p-index-present .p-index-present__txt {
  margin-top: 0.9375rem;
  line-height: 1.6;
}
.p-index-present .p-index-present__head {
  font-weight: 800;
  font-size: 1.125rem;
}
.p-index-present .p-index-present__num {
  width: -moz-max-content;
  width: max-content;
  margin-top: 0.9375rem;
  padding: 0 1.875rem;
  border: 1px solid;
  border-radius: 0.3125rem;
}
.p-index-present .p-index-present__btn {
  margin-top: 2.1875rem;
}

.p-index__calender {
  border-top: 1px solid #D0D0D0;
  padding: 1.875rem 0 1rem;
  width: 18.75rem;
  margin: 0 auto;
}
.p-index__calender .p-index__calender__ttl {
  width: 6.75rem;
  margin: 0 auto 1.4375rem;
}

/**
 * p-index-bg
 * 毎月変えるPC表示時の左下追従画像
 */
.p-index-bg {
  position: fixed;
  right: calc((100% - 23.4375rem) * 0.5 + 23.4375rem);
  bottom: 1.4375rem;
  width: calc((100% - 23.4375rem) * 0.5);
  max-width: 27.5625rem;
  padding: 0 2.375rem;
}
.p-index-bg.-right {
  right: auto;
  bottom: 0.5rem;
  left: calc((100% - 23.4375rem) * 0.5 + 23.4375rem);
  width: calc((100% - 23.4375rem) * 0.5);
  max-width: 23.875rem;
  padding: 0 2.375rem;
}

/**
 * 背景色
 */
#boonboomger {
  position: relative;
  background: #fa7878;
}
#boonboomger::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236.927%22%20height%3D%2247.001%22%20viewBox%3D%220%200%2036.927%2047.001%22%3E%20%3Cpath%20id%3D%22%E4%BA%A4%E5%B7%AE_1%22%20data-name%3D%22%E4%BA%A4%E5%B7%AE%201%22%20d%3D%22M8818.843%2C12787h0ZM8831%2C12768.96a7.962%2C7.962%2C0%2C0%2C1%2C7.844-7.959h.239a7.962%2C7.962%2C0%2C1%2C1-8.083%2C7.959Zm7.278%2C3.332-1.26%2C1.744a5.359%2C5.359%2C0%2C0%2C0%2C1.945.367%2C5.422%2C5.422%2C0%2C0%2C0%2C1.948-.367l-1.271-1.744a.826.826%2C0%2C0%2C0-.678-.349A.848.848%2C0%2C0%2C0%2C8838.277%2C12772.292Zm3.827-2.777a.84.84%2C0%2C0%2C0-.421%2C1.295l1.3%2C1.794a5.4%2C5.4%2C0%2C0%2C0%2C1.416-3.644c0-.063-.008-.123-.011-.187Zm-8.585-.555a5.4%2C5.4%2C0%2C0%2C0%2C1.415%2C3.644l1.307-1.794a.844.844%2C0%2C0%2C0-.42-1.295l-2.291-.741C8833.53%2C12768.837%2C8833.52%2C12768.9%2C8833.52%2C12768.96Zm6.7-2.647a.849.849%2C0%2C0%2C0%2C1.105.806l2.4-.78a5.472%2C5.472%2C0%2C0%2C0-3.506-2.665Zm-6.015.025%2C2.394.78a.847.847%2C0%2C0%2C0%2C1.1-.806v-2.637A5.451%2C5.451%2C0%2C0%2C0%2C8834.2%2C12766.338ZM8811%2C12748.96a7.967%2C7.967%2C0%2C0%2C1%2C7.844-7.96h.239a7.962%2C7.962%2C0%2C1%2C1-8.083%2C7.96Zm7.282%2C3.332-1.268%2C1.744a5.344%2C5.344%2C0%2C0%2C0%2C3.894%2C0l-1.267-1.744a.841.841%2C0%2C0%2C0-1.359%2C0Zm3.823-2.777a.84.84%2C0%2C0%2C0-.421%2C1.295l1.307%2C1.8a5.421%2C5.421%2C0%2C0%2C0%2C1.412-3.646c0-.063-.011-.123-.011-.19Zm-8.581-.555a5.406%2C5.406%2C0%2C0%2C0%2C1.411%2C3.646l1.307-1.8a.841.841%2C0%2C0%2C0-.424-1.295l-2.287-.745C8813.53%2C12748.837%2C8813.523%2C12748.9%2C8813.523%2C12748.96Zm6.7-2.647a.848.848%2C0%2C0%2C0%2C1.105.8l2.4-.779a5.472%2C5.472%2C0%2C0%2C0-3.506-2.665Zm-6.015.025%2C2.4.779a.846.846%2C0%2C0%2C0%2C1.1-.8v-2.64A5.464%2C5.464%2C0%2C0%2C0%2C8814.2%2C12746.338Zm42.8%2C2.622Z%22%20transform%3D%22translate(-8810.499%20-12740.5)%22%20fill%3D%22%23f16565%22%20stroke%3D%22rgba(0%2C0%2C0%2C0)%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E") repeat center/3.125rem auto;
}

/**
 * p-boonboomger
 */
.p-boonboomger .p-boonboomger__inner {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
.p-boonboomger .p-boonboomger__img {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 0.625rem 0.625rem 0 0;
}
.p-boonboomger .p-boonboomger__content {
  padding: 0.9375rem 0.9375rem 3.125rem;
  border-radius: 0 0 0.625rem 0.625rem;
  background: #fff;
}
.p-boonboomger .p-boonboomger__txt {
  font-weight: 800;
  letter-spacing: -0.05em;
}
.p-boonboomger .p-boonboomger__archive {
  margin-top: 2.1875rem;
}
.p-boonboomger .p-boonboomger__btn {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-boonboomger .p-boonboomger__inner {
    padding-top: 5.9375rem;
    padding-bottom: 6.25rem;
  }
  .p-boonboomger .p-boonboomger__img {
    margin-top: 3.75rem;
  }
  .p-boonboomger .p-boonboomger__content {
    margin-top: -1px;
    padding: 0 3.125rem 4.375rem;
  }
  .p-boonboomger .p-boonboomger__txt {
    letter-spacing: 0;
    text-align: center;
  }
  .p-boonboomger .p-boonboomger__archive {
    margin-top: 3.125rem;
  }
  .p-boonboomger .p-boonboomger__btn {
    margin-top: 6.25rem;
  }
}

/**
 * 背景色
 */
#topics {
  position: relative;
  background: #6996f0;
}
#topics::before {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2239.999%22%20height%3D%2237.313%22%20viewBox%3D%220%200%2039.999%2037.313%22%3E%20%3Cpath%20id%3D%22%E4%BA%A4%E5%B7%AE_1%22%20data-name%3D%22%E4%BA%A4%E5%B7%AE%201%22%20d%3D%22M13922.666%2C12687Zm19-5.861c-1.951-4.734-3.5-6.27-8.235-8.236a.273.273%2C0%2C0%2C1-.17-.254.278.278%2C0%2C0%2C1%2C.17-.262c4.733-1.959%2C6.284-3.5%2C8.235-8.232a.289.289%2C0%2C0%2C1%2C.513%2C0c1.962%2C4.733%2C3.5%2C6.273%2C8.235%2C8.232a.282.282%2C0%2C0%2C1%2C.174.262.276.276%2C0%2C0%2C1-.174.254c-4.733%2C1.967-6.273%2C3.5-8.235%2C8.236a.277.277%2C0%2C0%2C1-.513%2C0Zm-19.262-19c-1.955-4.734-3.5-6.277-8.229-8.236a.289.289%2C0%2C0%2C1-.174-.212v-.088a.285.285%2C0%2C0%2C1%2C.174-.216c4.726-1.959%2C6.273-3.5%2C8.229-8.24a.286.286%2C0%2C0%2C1%2C.264-.15.27.27%2C0%2C0%2C1%2C.256.15c1.959%2C4.738%2C3.5%2C6.281%2C8.235%2C8.24a.278.278%2C0%2C0%2C1%2C0%2C.516c-4.733%2C1.959-6.276%2C3.5-8.235%2C8.236a.281.281%2C0%2C0%2C1-.255.173A.291.291%2C0%2C0%2C1%2C13922.4%2C12662.143Zm30.593-8.49a.243.243%2C0%2C0%2C1%2C0-.046v.088A.2.2%2C0%2C0%2C1%2C13953%2C12653.652Z%22%20transform%3D%22translate(-13913.5%20-12644.5)%22%20fill%3D%22%235c8ceb%22%20stroke%3D%22rgba(0%2C0%2C0%2C0)%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E") repeat center/3.125rem auto;
}

/**
 * p-topics
 */
.p-topics .p-topics__inner {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
.p-topics .p-topics__archive {
  margin-top: 2.5rem;
}
.p-topics .topics-archive-txt {
  color: #fff;
  margin-top: 2.8125rem;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-topics .topics-archive-txt {
    font-size: 0.875rem;
  }
}
.p-topics .p-topics__btn {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-topics .p-topics__inner {
    padding-top: 5.9375rem;
    padding-bottom: 6.25rem;
  }
  .p-topics .p-topics__archive {
    margin-top: 3.75rem;
  }
  .p-topics .p-topics__btn {
    margin-top: 3.75rem;
  }
}

#topics {
  /*----------------------------------------
  ** super-sentai-friends.com
  ** topics
  ----------------------------------------*/
  /* ------------------------------------ */
  /*----------------------------------------
  ** articles items list
  ----------------------------------------*/
  /*----------------------------------------
  ** articles detail
  ----------------------------------------*/
  /*----------------------------------------
  ** __bt
  ----------------------------------------*/
  /*-----------------------------------------
  ** img size
  -----------------------------------------*/
  /*yotube*/
  /* wallpaper download */
  /* 2020.7.31 */
  /* ------------------------- */
  /* ------------------------- */
  /* .-hiline::before {
    display: inline-block;
    content: "";
    width: 100%;
    height: 0.5em;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ffff00;
    z-index: -1;
  } */
  /* ------------------------- */
  /* ------------------------- */
  /* ------------------------- */
  /* ------------------------------------ */
  /* zenkaiger topics */
  /* _current-gear-link */
  /* -external-link */
  /* zenkai */
  /* rerated articles */
  /* .topics-matrix */
  /* new head ttl 2023.7.4 */
  /* new text box 2023.7.3 */
  /* メッセージ */
  /* 放送期間 */
}
#topics .topics-category {
  margin-top: 4.875rem;
  padding: 0 3.125rem;
}
@media screen and (max-width: 768px) {
  #topics .topics-category {
    margin-top: 0.625rem;
    padding: 0 0.9375rem;
  }
}
#topics .topics-category-head {
  width: 7.1875rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #topics .topics-category-head {
    width: 27%;
  }
}
#topics .topics-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem 1.25rem;
  margin-top: 2.3125rem;
}
@media screen and (max-width: 768px) {
  #topics .topics-category-list {
    gap: 0.625rem;
    margin-top: 2.0625rem;
  }
}
#topics .topics-category-item {
  width: calc(25% - 0.9375rem);
}
@media screen and (max-width: 768px) {
  #topics .topics-category-item {
    width: calc(50% - 0.3125rem);
  }
}
#topics .topics-category-link {
  display: grid;
  place-items: center;
  padding: 0.5rem 0;
  border: 2px solid #000;
  background-color: #fff;
  border-radius: 9999px;
  color: #000;
  font-weight: bold;
  font-size: 1.125rem;
  transition: background-color 0.3s, color 0.3s;
}
#topics .topics-category-link.-current {
  background: #000;
  color: #fff;
}
#topics .topics-category-link:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #topics .topics-category-link {
    padding: 0.75rem 0;
    font-size: 0.75rem;
  }
}
#topics .__topics-wrap {
  margin: 70px auto;
  position: relative;
}
#topics .__topics-wrap > *:not(.__elm-red) {
  position: relative;
  /* z-index: 2; */
}
#topics .__page-ttl {
  text-align: center;
  margin: 0 0 85px 0;
}
#topics .__page-ttl img {
  max-width: inherit;
  width: auto;
  height: 50px;
}
@media screen and (max-width: 768px) {
  #topics .__topics-wrap {
    margin: 35px auto;
  }
  #topics .__page-ttl {
    text-align: center;
    margin: 0 0 42px 0;
  }
  #topics .__page-ttl img {
    max-width: inherit;
    width: auto;
    height: 33px;
  }
}
#topics .__elm-red {
  width: 20%;
  position: absolute;
  top: -35px;
  /* right: -90px; */
  left: -30px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #topics .__elm-red {
    width: 22%;
    position: absolute;
    top: -20px;
    /* right: inherit; */
    /* left: -10px; */
    left: auto;
    right: 10px;
  }
}
#topics .__topics-article-item {
  width: 50%;
  padding: 0 10px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  #topics .__topics-article-item {
    width: 100%;
    padding: 0;
    margin: 0 0 15px 0;
  }
}
#topics .__topics-article-item > * {
  display: flex;
  border: 4px solid #000;
  border-radius: 10px;
  background: #000;
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
}
#topics .__topics-article-item > *:hover {
  background: #fff;
}
#topics .__topics-article-item-pic {
  width: 50%;
}
#topics .__topics-article-item-pic img {
  /* border-radius: 6px 0 0 6px; */
}
#topics .__topics-article-item-txt {
  width: 50%;
  padding: 20px;
  /* display: flex;
  flex-wrap: wrap;
  align-items: flex-start; */
}
@media screen and (max-width: 768px) {
  #topics .__topics-article-item-txt {
    padding: 5px 10px 0;
  }
}
#topics .__topics-article-txt-date {
  display: block;
  width: 100%;
  color: #d90303;
  margin: 0 0 10px 0;
  line-height: 1;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
#topics .__topics-article-txt-ttl {
  display: block;
  width: 100%;
  color: #fff;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #topics .__topics-article-txt-date {
    font-size: 0.8rem;
  }
  #topics .__topics-article-txt-ttl {
    display: block;
    width: 100%;
    color: #fff;
    margin: 0;
    font-size: 0.93rem;
  }
}
#topics a:hover .__topics-article-txt-date {
  color: #d90303;
}
#topics a:hover .__topics-article-txt-ttl {
  color: #000;
}
#topics .__article-head {
  background: #000;
  margin: 0 0 0 0;
  padding: 35px 35px 35px 35px;
  border-radius: 10px 10px 0 0;
}
#topics .__artcile-ttl {
  font-size: 1.86rem;
  line-height: 1.5;
  margin: 0 0 7px 0;
  color: #fff;
}
#topics .__article-date {
  font-size: 1.33rem;
  color: #d90303;
}
#topics .__article-body {
  background: #fff;
  color: #000;
  padding: 80px 80px 80px 80px;
  border-radius: 0 0 10px 10px;
  font-size: 1.06rem;
  line-height: 2;
}
#topics .__article-body p {
  margin: 0 0 50px 0;
}
#topics .__article-body p:last-of-type {
  margin-bottom: 0;
}
#topics .__article-body a {
  color: #d90303;
  text-decoration: underline;
}
#topics .__article-body a:hover {
  color: #d90303;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #topics .__article-head {
    background: #000;
    margin: 0 0 0 0;
    padding: 15px 15px 15px 15px;
    border-radius: 10px 10px 0 0;
  }
  #topics .__artcile-ttl {
    font-size: 1.26rem;
    line-height: 1.5;
    margin: 0 0 7px 0;
    color: #fff;
  }
  #topics .__article-date {
    font-size: 1rem;
    color: #d90303;
  }
  #topics .__article-body {
    background: #fff;
    color: #000;
    padding: 15px 15px 15px 15px;
    border-radius: 0 0 10px 10px;
    font-size: 1rem;
    line-height: 2;
  }
  #topics .__article-body p {
    margin: 0 0 30px 0;
  }
}
#topics .__bt {
  display: block;
  width: 300px;
  margin: 0 auto 0 auto;
  padding: 15px 10px 15px 10px;
  border: 2px solid #fff;
  background: #000;
  color: #fff;
  border-radius: 60px;
  text-align: center;
  text-decoration: none;
  font-size: 1.06rem;
  font-weight: 700;
  transition: 0.3s;
}
#topics .__bt:hover {
  width: 340px;
}
#topics .__bt img {
  width: auto;
  height: 18px;
}
@media screen and (max-width: 768px) {
  #topics .__bt {
    display: block;
    width: 240px;
    border-radius: 60px;
    transition: 0.3s;
    font-size: 0.93rem;
  }
  #topics .__bt:hover {
    width: 260px;
  }
  #topics .__bt img {
    width: auto;
    height: 16px;
  }
}
#topics .__size-L {
  max-width: 100%;
}
#topics .__size-M {
  max-width: 80%;
}
#topics .__size-S {
  max-width: 60%;
}
#topics .__size-XS {
  max-width: 30%;
}
#topics .__size-MS {
  width: 40%;
}
#topics .__2x {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  letter-spacing: -0.4em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#topics .__2x li {
  width: 50%;
  display: inline-block;
  letter-spacing: normal;
  margin-left: 0;
  margin-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: top;
}
#topics .__2x li img {
  max-width: 100% !important;
  height: auto;
}
#topics .__2x li span {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
}
#topics .__3x {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  letter-spacing: -0.4em;
}
#topics .__3x li {
  width: 33.3333333333%;
  display: inline-block;
  letter-spacing: normal;
  margin-left: 0;
  margin-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: top;
}
#topics .__3x li img {
  max-width: 100% !important;
  height: auto;
}
#topics .__3x li span {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 5px;
}
#topics .__4x {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 30px;
  letter-spacing: -0.4em;
}
#topics .__4x li {
  width: 25%;
  display: inline-block;
  /*float: left;*/
  letter-spacing: normal;
  margin-left: 0;
  margin-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: top;
}
#topics .__4x li img {
  max-width: 250px !important;
  width: auto;
  vertical-align: top;
  margin-bottom: 7px;
}
#topics .__4x.__bd li img {
  max-width: 100% !important;
  height: auto;
  vertical-align: top;
  margin-bottom: 7px;
}
#topics .__4x li span {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  #topics .__size-L {
    max-width: 100%;
  }
  #topics .__size-M {
    max-width: 100%;
  }
  #topics .__size-S {
    max-width: 80%;
    margin: 0 auto;
  }
  #topics .__size-XS {
    max-width: 70%;
    margin: 0 auto;
  }
  #topics .__size-MS {
    width: 80%;
  }
  #topics .__2x {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    letter-spacing: -0.4em;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  #topics .__2x li {
    width: 100%;
    display: inline-block;
    letter-spacing: normal;
    margin-left: 0;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    vertical-align: top;
  }
  #topics .__2x li img {
    max-width: 100% !important;
    height: auto;
  }
  #topics .__3x {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    letter-spacing: -0.4em;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  #topics .__3x li {
    width: 100%;
    display: inline-block;
    letter-spacing: normal;
    margin-left: 0;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    vertical-align: top;
  }
  #topics .__3x li img {
    max-width: 100% !important;
    height: auto;
  }
  #topics .__4x {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 10px;
    letter-spacing: -0.4em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #topics .__4x li {
    width: 50%;
    display: inline-block;
    /*float: left;*/
    letter-spacing: normal;
    margin-left: 0;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: top;
  }
  #topics .__4x li img {
    max-width: 100% !important;
    height: auto;
    vertical-align: top;
    margin-bottom: 7px;
  }
  #topics .__4x li span {
    display: block;
    font-size: 10px;
  }
}
#topics .__movie-wrap {
  margin: 0 auto 25px;
  width: 100%;
  max-width: 720px;
  position: relative;
  /*top: 50%;
  left: 0;
  transform: translateY(-50%);*/
}
#topics .__movie-wrap-inner {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
#topics .__movie-wrap-inner iframe {
  height: 100% !important;
  left: 0;
  position: absolute;
  top: 0;
  width: 100% !important;
}
#topics .__wp-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 100px -30px 0 -30px;
}
#topics .__wp-item {
  width: 50%;
  padding: 0 30px;
  margin: 0 0 60px 0;
}
#topics .__wp-item-ttl {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.2;
}
#topics .__wp-item-thumb {
  margin: 0 0 15px 0;
}
#topics .__wp-item-btn {
  width: 70%;
  margin: 0 auto;
}
#topics .__wp-item-btn a img {
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
#topics .__wp-item-btn a:hover img {
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.45));
  -webkit-filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.45));
}
@media screen and (max-width: 768px) {
  #topics .__wp-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0 0 0;
  }
  #topics .__wp-item {
    width: 100%;
    padding: 0;
    margin: 0 0 30px 0;
  }
  #topics .__wp-item-ttl {
    font-size: 1rem;
  }
  #topics .__wp-item-thumb {
    margin: 0 0 15px 0;
  }
  #topics .__wp-item-btn {
    width: 70%;
    margin: 0 auto;
  }
  #topics .__wp-item.-col-2 {
    width: 50%;
    padding: 0 10px;
    margin: 0 0 30px 0;
  }
}
#topics ._topics-pager {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
#topics ._topics-pager.-index {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto 50px;
}
#topics ._topics-pager > * {
  font-size: 0.93rem;
  padding: 0.4rem 1rem;
  margin: 0 10px 6px 10px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
#topics ._topics-pager > a {
  margin-bottom: 0.8rem;
}
#topics ._topics-pager > a,
#topics ._topics-pager > a:visited,
#topics ._topics-pager > a:active {
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 2px solid #000;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
#topics ._topics-pager > a:hover {
  background: #d90303;
  color: #fff;
  text-decoration: none;
}
#topics ._topics-pager > span,
#topics ._topics-pager > a.-dis {
  background: #d90303;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #topics ._topics-pager > a {
    margin-bottom: 0.5rem;
  }
  #topics ._topics-pager > * {
    font-size: 0.93rem;
    padding: 0.3rem 0.75rem;
    margin: 0 3px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
  }
}
#topics ._topics-pager .-dis {
  background: #d90303 !important;
  color: #fff;
  text-decoration: none;
  pointer-events: none;
}
#topics ._topics-next {
  background: #fff2e6;
  color: #4d4d4d;
  padding: 1rem 1rem 1rem 11rem;
  margin-top: 50px;
  font-weight: 700;
  position: relative;
}
#topics ._topics-next::before {
  content: ">> 次のページ";
  font-size: 0.93rem;
  font-weight: normal;
  text-align: left;
  width: 9em;
  height: auto;
  position: absolute;
  left: 15px;
  bottom: 50%;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
}
#topics ._topics-next a,
#topics ._topics-next a:visited,
#topics ._topics-next a:active {
  color: #4d4d4d;
  text-decoration: none;
}
#topics ._topics-next a:hover {
  color: #4d4d4d;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #topics ._topics-next {
    padding: 3rem 1em 1em;
    margin-top: 50px;
    text-align: center;
  }
  #topics ._topics-next::before {
    font-weight: normal;
    text-align: center;
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 10px;
    bottom: inherit;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
}
#topics .-orange {
  color: #ff6600;
}
#topics .-red {
  color: #ff0000;
}
#topics .-hiline {
  display: inline;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #ffff00 51%, #ffff00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffff00",GradientType=0 );
}
#topics ._highlight-ttl {
  margin-bottom: 1rem !important;
}
#topics ._highlight-list {
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
}
#topics ._highlight-item {
  text-indent: -1em;
  padding-left: 1em;
}
#topics ._highlight-item::before {
  content: "●";
  color: #ff6600;
}
@media screen and (max-width: 768px) {
  #topics ._highlight-list {
    margin: 0 0 30px;
  }
}
#topics ._topics-sp-ttl {
  border-left: 5px solid #ff6666;
  background: #fff2e6;
  font-size: 1.46rem;
  font-weight: 700;
  padding: 10px 15px;
  margin-bottom: 1rem !important;
}
#topics ._topics-slide {
  margin-bottom: 50px !important;
}
#topics ._topics-slide figure {
  margin: 0;
}
#topics ._topics-slide figcaption {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  #topics ._topics-sp-ttl {
    font-size: 1.26rem;
    padding: 5px 7px;
  }
}
#topics ._pic-set {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px 50px;
}
#topics ._pic-item {
  width: 33.3333333333%;
  padding: 0 25px;
}
#topics .-mb ._pic-item {
  margin: 0 0 50px 0;
}
#topics ._pic-item a {
  display: block;
  position: relative;
}
#topics ._pic-item a::after {
  content: "";
  width: 25px;
  height: 25px;
  background: #000 url(../img/topics/ic-zoom.png) center center no-repeat;
  background-size: 10px 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
#topics ._pic-item a:hover::after {
  background: #000 url(../img/topics/ic-zoom.png) center center no-repeat;
  background-size: 15px 15px;
}
@media screen and (max-width: 768px) {
  #topics ._pic-set {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px 50px;
  }
  #topics ._pic-item {
    width: 100%;
    padding: 0 25px;
    margin-bottom: 25px;
  }
  #topics .-mb ._pic-item {
    margin: 0 0 20px 0;
  }
}
#topics ._show-arichives {
  background: #f1f1f1;
  padding: 30px;
  margin: 0 0 30px 0;
  display: flex;
  flex-wrap: wrap;
}
#topics ._show-pic {
  max-width: 200px;
  margin: 0 30px 0 0;
}
#topics ._show-pic figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
}
#topics ._show-detail {
  width: calc(100% - 230px);
  color: #595959;
}
#topics ._show-detail-ttl {
  color: #ff6600;
  font-weight: 700;
  font-size: 1.33rem;
  margin: 0 0 30px 0;
}
#topics ._show-detail-ep {
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
#topics ._show-detail-ep li {
  text-indent: -4em;
  padding-left: 4em;
  border-bottom: 1px solid #595959;
}
#topics ._show-detail-ep li:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  #topics ._show-pic {
    max-width: 80%;
    margin: 0 auto 30px;
  }
  #topics ._show-detail {
    width: 100%;
  }
  #topics ._show-detail-ttl {
    font-size: 1.13rem;
    margin: 0 0 30px 0;
  }
}
#topics ._topics-notes {
  border: 1px solid #ff0000;
  padding: 15px;
  margin: 0 0 50px 0;
  color: #ff0000;
  text-align: center;
  font-size: 0.93rem;
}
#topics ._topics-notes a,
#topics ._topics-notes a:visited,
#topics ._topics-notes a:active {
  color: #213488;
}
#topics ._topics-notes a:hover {
  color: #213488;
  text-decoration: none;
}
#topics ._topics-ticket {
  border: 5px solid #ffa200;
  padding: 15px;
  margin: 0 0 50px 0;
  font-weight: 700;
}
#topics ._topics-ticket a {
  display: block;
  width: 500px;
  margin: 0 auto;
  text-indent: -1.5em;
  padding-left: 1.5em;
  color: #ff6600;
}
@media screen and (max-width: 768px) {
  #topics ._topics-ticket a {
    width: 85%;
  }
}
#topics .-iframe {
  padding: 15px;
  width: 100%;
  height: 250px;
  overflow-y: auto;
  border: 1px solid #ccc;
}
#topics .-bt-cp-post {
  display: block;
  width: 275px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  #topics .-bt-cp-post {
    width: 100%;
    margin: 15px auto 0;
  }
}
#topics a._current-gear-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 0 0 0 28px;
  background-image: url(../img/zenkaiger/ic-zen-link.png);
  background-position: left 9px;
  background-repeat: no-repeat;
  background-size: auto 16px;
  color: #df040b;
  text-decoration: none;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #topics a._current-gear-link {
    font-size: 16px;
    padding: 0 0 0 25px;
    background-position: left 3px;
    background-size: auto 20px;
  }
}
@media screen and (min-width: 769px) {
  #topics a._current-gear-link:hover {
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  #topics a._current-gear-link:active {
    color: #000;
  }
}
#topics a.-external-link {
  display: inline-block;
  font-size: 16px;
  /* font-weight: 700; */
  padding: 0 20px 0 0;
  margin: 0 5px 0 0;
  background-image: url(../img/topics/ic-link-external.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 15px;
  color: #df040b;
  text-decoration: none;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #topics a.-external-link {
    font-size: 16px;
    padding: 0 17px 0 0;
    background-position: right center;
    background-size: auto 13px;
  }
}
@media screen and (min-width: 769px) {
  #topics a.-external-link:hover {
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  #topics a.-external-link:active {
    color: #000;
  }
}
#topics .zenkai-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
#topics .zenkai-item {
  width: 50%;
  padding: 0 10px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  #topics .zenkai-item {
    width: 100%;
    padding: 0;
    margin: 0 0 10px 0;
  }
  #topics .zenkai-item:last-of-type {
    margin-bottom: 0;
  }
}
#topics .zenkai-item-link {
  display: flex;
  align-items: center;
  border: 2px solid #d6d6d6;
  padding: 15px;
  color: #000 !important;
  text-decoration: none !important;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #topics .zenkai-item-link {
    padding: 7px;
  }
}
@media screen and (min-width: 769px) {
  #topics .zenkai-item-link:hover {
    background-color: #fde5e5;
  }
}
@media screen and (max-width: 768px) {
  #topics .zenkai-item-link:active {
    background-color: #fde5e5;
  }
}
#topics .zenkai-thumb {
  display: block;
  width: 80px;
}
@media screen and (max-width: 768px) {
  #topics .zenkai-thumb {
    width: 60px;
  }
}
#topics .zenkai-thumb img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
#topics .zenkai-ttl {
  display: block;
  width: calc(100% - 80px);
  padding-left: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #topics .zenkai-ttl {
    width: calc(100% - 60px);
    padding-left: 10px;
    font-size: 14px;
  }
}
#topics .related-ttl {
  font-size: 24px;
  font-weight: 800;
  margin-top: 60px;
}
#topics .rerated-articles {
  display: flex;
  flex-wrap: wrap;
  margin: 25px -10px 0;
}
@media screen and (max-width: 768px) {
  #topics .related-ttl {
    font-size: 20px;
    margin-top: 30px;
  }
  #topics .rerated-articles {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
}
#topics .article-item {
  width: 50%;
  padding: 0 10px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  #topics .article-item {
    width: 100%;
    padding: 0 5px;
    margin: 0 0 10px 0;
  }
  #topics .article-item:last-of-type {
    margin-bottom: 0;
  }
}
#topics .article-item-link {
  display: flex;
  border: 2px solid #000;
  background-color: #000;
  text-decoration: none !important;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #topics .article-item-link:hover {
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  #topics .article-item-link:active {
    background-color: #fff;
  }
}
#topics .article-thumb {
  display: block;
  width: 180px;
}
@media screen and (max-width: 768px) {
  #topics .article-thumb {
    width: 140px;
  }
}
#topics .article-text {
  display: block;
  width: calc(100% - 180px);
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #topics .article-text {
    width: calc(100% - 140px);
    padding: 8px;
  }
}
#topics .article-date {
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #topics .article-date {
    font-size: 12px;
  }
}
#topics .article-ttl {
  display: block;
  line-height: 1.6;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #topics .article-item-link:hover .article-ttl {
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  #topics .article-item-link:active .article-ttl {
    color: #000;
  }
}
#topics .topics-matrix {
  padding: 25px 0 0 0;
  margin: 25px 0 0 0;
  border-top: 1px solid #dadada;
}
#topics .matrix-ttl {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 0 0;
}
@media screen and (max-width: 768px) {
  #topics .matrix-ttl {
    font-size: 16px;
  }
}
#topics .matrix-list {
  border-top: 1px dotted #acacac;
  margin: 20px 0 0 0;
}
#topics .matrix-item {
  display: flex;
  margin: 0;
  border-bottom: 1px dotted #acacac;
}
@media screen and (max-width: 768px) {
  #topics .matrix-item {
    flex-wrap: wrap;
  }
}
#topics .matrix-item-name {
  width: 20%;
  padding: 7px;
  margin: 0;
  background-color: #ececec;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #topics .matrix-item-name {
    width: 100%;
  }
}
#topics .matrix-item-info {
  width: 80%;
  padding: 7px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #topics .matrix-item-info {
    width: 100%;
  }
}
#topics .-md {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #topics .-md {
    font-size: 14px;
  }
}
#topics .-sm {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #topics .-sm {
    font-size: 12px;
  }
}
#topics .matrix-list-notes {
  color: #d90303;
  margin: 25px 0 0 0;
}
#topics .notes-ttl {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
  #topics .notes-ttl {
    font-size: 12px;
  }
}
#topics .notes-txt {
  font-size: 14px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #topics .notes-txt {
    font-size: 12px;
  }
}
#topics .h-bp-ttl {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 15px;
  margin-bottom: 20px;
  background: #2a68e5;
  background: linear-gradient(135deg, #2a68e5 0%, #a437e0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#2a68e5", endColorstr="#a437e0",GradientType=1 );
}
@media screen and (max-width: 768px) {
  #topics .h-bp-ttl {
    font-size: 16px;
    padding: 10px 13px;
  }
}
#topics .b-bp-box {
  position: relative;
  display: inline-block;
  padding: 15px 18px;
  width: 100%;
  margin-bottom: 1em;
  background-color: #ebebeb;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #topics .b-bp-box {
    padding: 10px 13px;
    font-size: 14px;
  }
}
#topics .b-bp-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #2acce5 0%, #2f2491 55%, #2a68e5 100%) border-box border-box;
  -webkit-mask: linear-gradient(#ebebeb 0 0) padding-box, linear-gradient(#ebebeb 0 0) border-box;
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#ebebeb 0 0) padding-box, linear-gradient(#ebebeb 0 0) border-box;
          mask: linear-gradient(#ebebeb 0 0) padding-box, linear-gradient(#ebebeb 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
#topics .__article-ttl-detail {
  font-size: 1.33rem;
  line-height: 1;
  margin: 0 0 0 0;
  color: #fff;
  text-align: left;
}
#topics .__message-detail {
  /* display: flex; */
  margin: 0 0 40px 0;
  padding: 0 0 40px 0;
  border-bottom: 1px dashed #666;
}
#topics .__message-detail:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  /* padding-bottom: 0; */
}
@media screen and (max-width: 768px) {
  #topics .__article-ttl-detail {
    font-size: 1.06rem;
  }
}
#topics .__message-detail-head {
  display: flex;
  align-items: center;
}
#topics .__message-detail-pic {
  width: 150px;
}
#topics .__message-detail-pic img {
  border-radius: 50%;
}
#topics .__message-detail-txt {
  width: calc(100% - 150px);
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  #topics .__message-detail-pic {
    width: 80px;
    margin: 0 auto 20px;
  }
  #topics .__message-detail-txt {
    width: calc(100% - 80px);
    padding-left: 15px;
  }
}
#topics .__message-detail-role {
  font-size: 1.33rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}
#topics .__message-detail-name {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  margin: 0 0 20px 0;
}
#topics .__message-detail-comment {
  font-size: 1.06rem;
  line-height: 2;
  width: calc(100% - 180px);
  margin: 0 0 0 auto;
}
#topics .__message-detail-comment p {
  margin: 0 0 0 0;
}
#topics .is-indent {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  #topics .__message-detail-role {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  #topics .__message-detail-name {
    font-size: 1.33rem;
    line-height: 1;
    font-weight: 900;
    margin: 0 0 20px 0;
  }
  #topics .__message-detail-comment {
    /* display: none; */
    font-size: 1rem;
    line-height: 2;
    width: 100%;
    margin: 0 0 0 0;
  }
}
#topics .topics__broadcastdate {
  font-weight: 700;
  text-align: center;
  background-color: #dcdcdc;
  padding: 20px;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  #topics .topics__broadcastdate {
    padding: 12px;
    border-radius: 80px;
  }
}
#topics .__pic-color-red {
  border: 3px solid #ff0000;
}
#topics .__pic-color-yellow {
  border: 3px solid #ffa500;
}
#topics .__pic-color-green {
  border: 3px solid #00ba31;
}
#topics .__pic-color-blue {
  border: 3px solid #0068e5;
}
#topics .__pic-color-pink {
  border: 3px solid #ff68c6;
}
#topics .__pic-color-blank {
  border: 3px solid #000;
}
#topics .__pic-color-gold {
  border: 3px solid #c4a03f;
}
#topics .__pic-color-gray,
#topics .__pic-color-silver {
  border: 3px solid #95a0b6;
}
#topics .__pic-color-darkpurple {
  border: 3px solid #4322a2;
}
#topics .__txt-color-red {
  color: #ff0000;
}
#topics .__txt-color-yellow {
  color: #ffa500;
}
#topics .__txt-color-green {
  color: #00ba31;
}
#topics .__txt-color-blue {
  color: #0068e5;
  /* color: #6699cc; */
}
#topics .__txt-color-pink {
  color: #ff68c6;
}
#topics .__txt-color-mab {
  color: #27abbd;
}
#topics .__txt-color-black {
  color: #000;
}
#topics .__txt-color-gray,
#topics .__txt-color-silver {
  color: #95a0b6;
}
#topics .__txt-color-mizu {
  color: #75a6cd;
}
#topics .__txt-color-kegare {
  color: #813a4c;
}
#topics .__txt-color-gold {
  color: #c4a03f;
}
#topics .__txt-color-doggy {
  color: #3399cc;
}
#topics .__txt-color-darkpurple {
  color: #4322a2;
}
#topics .__txt-color-navy {
  color: #003399;
}
#topics .__txt-color-5colors {
  background: -webkit-linear-gradient(0deg, #e71603, #f0b62c, #ee82a0, #257fce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  #topics .__txt-color-5colors {
    display: block;
  }
}
#topics .__txt-color-blue_lt {
  color: #6699cc;
}
#topics .__txt-color-orange {
  color: #ffa500;
}
#topics .__txt-color-sarublue {
  color: #0068e5;
}
#topics .__txt-color-gray {
  color: #999999;
}
#topics .__txt-color-purple {
  color: #4322a2;
}

#message {
  /**
  * 背景色
  */
  position: relative;
  background: #b477f8;
  /* ------------------------------------ */
  /*----------------------------------------
  ** articles index
  ----------------------------------------*/
  /*----------------------------------------
  ** article detail
  ----------------------------------------*/
  /* .__txt-color-gold {
    color: rgb(221, 162, 34);
  } */
  /*----------------------------------------
  ** __bt
  ----------------------------------------*/
  /*----------------------------------------
  ** ぬりえ・おえかきコンテストバナー
  ----------------------------------------*/
  /**
   * 戻るボタン
   */
}
#message::before {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2243.001%22%20viewBox%3D%220%200%2040%2043.001%22%3E%20%3Cpath%20id%3D%22%E4%BA%A4%E5%B7%AE_1%22%20data-name%3D%22%E4%BA%A4%E5%B7%AE%201%22%20d%3D%22M10670.837%2C12687h0Zm22.688-10.5h-3.432a1.835%2C1.835%2C0%2C0%2C1-1.837-1.833v-7.828a1.839%2C1.839%2C0%2C0%2C1%2C1.837-1.84h15.5a1.841%2C1.841%2C0%2C0%2C1%2C1.837%2C1.84v7.828a1.837%2C1.837%2C0%2C0%2C1-1.837%2C1.833h-8.267l-3.8%2C3.2Zm-19.253-20h-3.436a1.84%2C1.84%2C0%2C0%2C1-1.837-1.836v-7.829a1.84%2C1.84%2C0%2C0%2C1%2C1.837-1.836h15.492a1.84%2C1.84%2C0%2C0%2C1%2C1.837%2C1.836v7.829a1.84%2C1.84%2C0%2C0%2C1-1.837%2C1.836h-8.263l-3.794%2C3.2Zm33.728-1.836v0Z%22%20transform%3D%22translate(-10668.5%20-12644.499)%22%20fill%3D%22%23aa6eed%22%20stroke%3D%22rgba(0%2C0%2C0%2C0)%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E") repeat center/3.125rem auto;
}
#message .__message-wrap {
  width: 1000px;
  margin: 70px auto 0 auto;
  position: relative;
}
#message .__message-wrap > *:not(.__elm-pink) {
  position: relative;
  /* z-index: 2; */
}
#message .__page-ttl {
  text-align: center;
  margin: 0 0 85px 0;
}
#message .__page-ttl img {
  max-width: inherit;
  width: auto;
  height: 50px;
}
@media screen and (max-width: 768px) {
  #message .__message-wrap {
    width: 90%;
    margin: 35px auto 0 auto;
  }
  #message .__page-ttl {
    text-align: center;
    margin: 0 0 42px 0;
  }
  #message .__page-ttl img {
    max-width: inherit;
    width: auto;
    height: 33px;
  }
}
#message .__elm-pink {
  width: 18%;
  position: absolute;
  top: 0px;
  right: -12%;
}
@media screen and (max-width: 768px) {
  #message .__elm-pink {
    width: 27%;
    position: absolute;
    top: -1%;
    right: 0;
  }
}
#message .__message-article {
  margin: 80px 0 80px 0;
}
#message .__article-head {
  background: #000;
  margin: 0 0 0 0;
  padding: 25px 25px 25px 25px;
  border-radius: 10px 10px 0 0;
}
#message .__article-ttl {
  font-size: 1.33rem;
  line-height: 1;
  margin: 0 0 0 0;
  color: #fff;
  text-align: center;
}
#message .__article-ttl img {
  max-width: inherit;
  width: auto;
  height: 24px;
}
#message .__article-body {
  background: #fff;
  color: #000;
  padding: 80px 50px 80px 50px;
  border-radius: 0 0 10px 10px;
  font-size: 1.06rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #message .__article-head {
    background: #000;
    margin: 0 0 0 0;
    padding: 15px 15px 15px 15px;
    border-radius: 10px 10px 0 0;
  }
  #message .__article-ttl {
    font-size: 1rem;
    line-height: 1;
    color: #ff68c6;
  }
  #message .__article-ttl img {
    max-width: inherit;
    width: auto;
    height: 14.4px;
  }
  #message .__article-body {
    background: #fff;
    color: #000;
    padding: 15px 15px 15px 15px;
    border-radius: 0 0 10px 10px;
    font-size: 1rem;
    line-height: 2;
  }
}
#message .__logo-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 0 -15px;
}
#message .__logo-item {
  width: 33.3333333333%;
  padding: 0 15px 0 15px;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 768px) {
  #message .__logo-wrap {
    margin: 0 -7px 0 -7px;
  }
  #message .__logo-item {
    width: 50%;
    padding: 0 7px 0 7px;
    margin: 0 0 15px 0;
  }
}
#message .__logo-item-pic {
  margin: 0 0 15px 0;
}
#message .__logo-item-ttl {
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  transition: 0.3s;
}
#message .__logo-item a {
  color: #000;
  text-decoration: none;
}
#message .__logo-item a:hover .__logo-item-ttl {
  color: #ff68c6;
}
#message .__logo-item a .__logo-item-pic img {
  transition: 0.3s;
}
#message .__logo-item a:hover .__logo-item-pic img {
  box-shadow: 0 3px 10px 3px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  #message .__logo-item-ttl {
    font-size: 0.93rem;
  }
}
#message .__article-ttl-detail {
  font-size: 1.33rem;
  line-height: 1;
  margin: 0 0 0 0;
  color: #fff;
  text-align: left;
}
#message .__message-detail {
  /* display: flex; */
  margin: 0 0 40px 0;
  padding: 0 0 40px 0;
  border-bottom: 1px dashed #666;
}
#message .__message-detail:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  /* padding-bottom: 0; */
}
@media screen and (max-width: 768px) {
  #message .__article-ttl-detail {
    font-size: 1.06rem;
  }
}
#message .__message-detail-head {
  display: flex;
  align-items: center;
}
#message .__message-detail-pic {
  width: 150px;
}
#message .__message-detail-pic img {
  border-radius: 50%;
}
#message .__message-detail-txt {
  width: calc(100% - 150px);
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  #message .__message-detail-pic {
    width: 80px;
    margin: 0 auto 20px;
  }
  #message .__message-detail-txt {
    width: calc(100% - 80px);
    padding-left: 15px;
  }
}
#message .__message-detail-role {
  font-size: 1.33rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}
#message .__message-detail-name {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  margin: 0 0 20px 0;
}
#message .__message-detail-comment {
  font-size: 1.06rem;
  line-height: 2;
  width: calc(100% - 180px);
  margin: 0 0 0 auto;
}
#message .__message-detail-comment p {
  margin: 0 0 0 0;
}
#message .is-indent {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  #message .__message-detail-role {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  #message .__message-detail-name {
    font-size: 1.33rem;
    line-height: 1;
    font-weight: 900;
    margin: 0 0 20px 0;
  }
  #message .__message-detail-comment {
    display: none;
    font-size: 1rem;
    line-height: 2;
    width: 100%;
    margin: 0 0 0 0;
  }
}
#message .__pic-color-red {
  border: 3px solid #ff0000;
}
#message .__pic-color-yellow {
  border: 3px solid #ffa500;
}
#message .__pic-color-green {
  border: 3px solid #00ba31;
}
#message .__pic-color-blue {
  border: 3px solid #0068e5;
}
#message .__pic-color-pink {
  border: 3px solid #ff68c6;
}
#message .__pic-color-blank {
  border: 3px solid #000;
}
#message .__pic-color-gold {
  border: 3px solid #c4a03f;
}
#message .__pic-color-gray,
#message .__pic-color-silver {
  border: 3px solid #95a0b6;
}
#message .__pic-color-darkpurple {
  border: 3px solid #4322a2;
}
#message .__txt-color-red {
  color: #ff0000;
}
#message .__txt-color-yellow {
  color: #ffa500;
}
#message .__txt-color-green {
  color: #00ba31;
}
#message .__txt-color-blue {
  color: #0068e5;
  /* color: #6699cc; */
}
#message .__txt-color-pink {
  color: #ff68c6;
}
#message .__txt-color-mab {
  color: #27abbd;
}
#message .__txt-color-black {
  color: #000;
}
#message .__txt-color-gray,
#message .__txt-color-silver {
  color: #95a0b6;
}
#message .__txt-color-mizu {
  color: #75a6cd;
}
#message .__txt-color-kegare {
  color: #813a4c;
}
#message .__txt-color-gold {
  color: #c4a03f;
}
#message .__txt-color-doggy {
  color: #3399cc;
}
#message .__txt-color-darkpurple {
  color: #4322a2;
}
#message .__txt-color-navy {
  color: #003399;
}
#message .__txt-color-5colors {
  background: -webkit-linear-gradient(0deg, #e71603, #f0b62c, #ee82a0, #257fce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  #message .__txt-color-5colors {
    display: block;
  }
}
#message .__txt-color-blue_lt {
  color: #6699cc;
}
#message .__txt-color-orange {
  color: #ffa500;
}
#message .__txt-color-sarublue {
  color: #0068e5;
}
#message .__txt-color-gray {
  color: #999999;
}
#message .__txt-color-purple {
  color: #a437e0;
}
#message .__bt-comment-close {
  display: none;
}
@media screen and (max-width: 768px) {
  #message .__bt-comment-close {
    display: block;
    max-width: 100%;
    margin: 20px auto 0;
    padding: 0;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    background: #4d4d4d;
    border-radius: 6px;
  }
  #message .__bt-comment-close span {
    display: block;
    padding: 0.6em 1em;
    transition: 0.2s all;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  }
  #message .__bt-comment-close span img {
    width: auto;
    height: 12px;
    vertical-align: baseline;
  }
}
#message .__bt {
  display: block;
  width: 300px;
  margin: 0 auto 0 auto;
  padding: 15px 10px 15px 10px;
  border: 2px solid #fff;
  background: #000;
  color: #fff;
  border-radius: 60px;
  text-align: center;
  text-decoration: none;
  font-size: 1.06rem;
  font-weight: 700;
  transition: 0.3s;
}
#message .__bt:hover {
  width: 340px;
}
#message .__bt img {
  width: auto;
  height: 18px;
}
@media screen and (max-width: 768px) {
  #message .__bt {
    display: block;
    width: 240px;
    border-radius: 60px;
    transition: 0.3s;
    font-size: 0.93rem;
  }
  #message .__bt:hover {
    width: 260px;
  }
  #message .__bt img {
    width: auto;
    height: 16px;
  }
}
#message ._msg-banner {
  width: 550px;
  margin: 50px auto 0 auto;
}
@media screen and (max-width: 768px) {
  #message ._msg-banner {
    width: 100%;
    margin: 35px auto 0 auto;
  }
}
#message .back-btn {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  #message .back-btn {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

/*----------------------------------------
** super-sentai-friends.com
** download
----------------------------------------*/
#download {
  position: relative;
  background: #fac040;
}
#download::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236.699%22%20height%3D%2234.466%22%20viewBox%3D%220%200%2036.699%2034.466%22%3E%20%3Cpath%20id%3D%22%E4%BA%A4%E5%B7%AE_1%22%20data-name%3D%22%E4%BA%A4%E5%B7%AE%201%22%20d%3D%22M12405.164%2C12678.411c-.688-.55-3.592-3.017-5.1-4.47-1.545-1.509-3.064-3.163-3.064-5.415%2C0-1.945%2C1.881-3.526%2C4.194-3.526a4.632%2C4.632%2C0%2C0%2C1%2C3.905%2C1.814.311.311%2C0%2C0%2C0%2C.5%2C0%2C4.642%2C4.642%2C0%2C0%2C1%2C3.917-1.814c2.313%2C0%2C4.187%2C1.581%2C4.187%2C3.526%2C0%2C2.252-1.512%2C3.906-3.064%2C5.415-1.465%2C1.417-4.379%2C3.876-5.119%2C4.47a.287.287%2C0%2C0%2C1-.156.055A.455.455%2C0%2C0%2C1%2C12405.164%2C12678.411Zm-19-20.006c-.685-.551-3.589-3.006-5.1-4.468s-2.98-3.066-3.061-5.224v-.328c.088-1.88%2C1.933-3.386%2C4.183-3.386a4.644%2C4.644%2C0%2C0%2C1%2C3.909%2C1.814.322.322%2C0%2C0%2C0%2C.507%2C0%2C4.64%2C4.64%2C0%2C0%2C1%2C3.917-1.814c2.306%2C0%2C4.187%2C1.582%2C4.187%2C3.527%2C0%2C2.252-1.516%2C3.906-3.064%2C5.41-1.469%2C1.418-4.38%2C3.877-5.119%2C4.468a.269.269%2C0%2C0%2C1-.157.062A.386.386%2C0%2C0%2C1%2C12386.163%2C12658.405Zm30.836-9.878Z%22%20transform%3D%22translate(-12377.502%20-12644.5)%22%20fill%3D%22%23f6b041%22%20stroke%3D%22rgba(0%2C0%2C0%2C0)%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E") repeat center/3.125rem auto;
}

/* ------------------------------------ */
/**
 * p-download-kv
 */
.p-download-kv .p-download-kv__inner {
  padding-top: 2.5rem;
}
.p-download-kv .p-download-kv__mv {
  margin-top: 1.75rem;
  margin-bottom: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-download-kv .p-download-kv__inner {
    padding-top: 5.9375rem;
  }
  .p-download-kv .p-download-kv__archive {
    margin-top: 3.75rem;
  }
}

/**
 * p-download-main
 */
.p-download-main .p-download-main__inner {
  padding-top: 3.4375rem;
  padding-bottom: 3.4375rem;
}
.p-download-main .p-download-main__btn {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-download-main .p-download-main__inner {
    padding-top: 3.75rem;
    padding-bottom: 6.25rem;
  }
  .p-download-main .p-download-main__btn {
    margin-top: 3.75rem;
  }
}

/**
 * タブ部分
 */
.p-download-main-tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.375rem;
}
.p-download-main-tab .p-download-main-tab__item {
  padding: 0.75rem 0;
  border-radius: 0.625rem 0.625rem 0 0;
  background: rgba(var(--black));
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: -0.05em;
  text-align: center;
  cursor: pointer;
}
.p-download-main-tab .p-download-main-tab__item.is-active {
  background: #fff;
  color: rgba(var(--black));
}
.p-download-main-tab .p-download-main-tab__small {
  display: block;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-download-main-tab {
    gap: 1.25rem;
  }
  .p-download-main-tab .p-download-main-tab__item {
    padding: 1.25rem 0;
    font-size: 1.25rem;
    letter-spacing: 0;
  }
  .p-download-main-tab .p-download-main-tab__small {
    display: inline;
    font-size: 0.875rem;
  }
}

/**
 * タブのコンテンツ部分
 */
.p-download-main-content {
  background: #fff;
}
.p-download-main-content .p-download-main-content__set {
  display: none;
  padding: 1.875rem 1.125rem;
}
.p-download-main-content .p-download-main-content__set.is-show {
  display: block;
  animation: fadeIn 0.3s ease;
}
.p-download-main-content .p-download-main-content__txt {
  font-size: 0.75rem;
}
.p-download-main-content .p-download-main-content__note {
  margin-top: 0.9375rem;
  color: #f00;
  font-size: 0.75rem;
}
.p-download-main-content .p-download-main-content__note.-black {
  color: rgba(var(--black));
}
.p-download-main-content .p-download-main-content__how {
  margin-top: 1.875rem;
  padding: 0.9375rem;
  border: 1px solid #707070;
  border-radius: 0.625rem;
  font-size: 0.8125rem;
}
.p-download-main-content .p-download-main-content__list {
  margin-top: 3.4375rem;
}
.p-download-main-content .p-download-main-content__copyright {
  margin-top: 1.875rem;
  font-size: 0.625rem;
}
.p-download-main-content .p-download-main-content__sec + .p-download-main-content__sec {
  margin-top: 2.8125rem;
}
.p-download-main-content .p-download-main-content__head {
  margin-top: 1.875rem;
  font-weight: 800;
  font-size: 0.8125rem;
}
.p-download-main-content .p-download-main-content__btn {
  margin-top: 2.8125rem;
}
.p-download-main-content .p-download-main-content__dl {
  margin-top: 0.625rem;
}
.p-download-main-content .p-download-main-content__dt {
  padding: 0.3125rem 0.625rem;
  background: #e6e6e6;
  font-weight: 800;
  font-size: 0.8125rem;
}
.p-download-main-content .p-download-main-content__dd {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-download-main-content .p-download-main-content__set {
    padding: 4.6875rem 5rem;
  }
  .p-download-main-content .p-download-main-content__txt {
    font-size: 1rem;
  }
  .p-download-main-content .p-download-main-content__note {
    margin-top: 1.5625rem;
    font-size: 0.9375rem;
  }
  .p-download-main-content .p-download-main-content__note.-pc-center {
    text-align: center;
  }
  .p-download-main-content .p-download-main-content__how {
    margin-top: 2.8125rem;
    padding: 1.5625rem;
    font-size: 0.9375rem;
  }
  .p-download-main-content .p-download-main-content__list {
    margin-top: 3.75rem;
  }
  .p-download-main-content .p-download-main-content__copyright {
    margin-top: 1.875rem;
    font-size: 0.9375rem;
  }
  .p-download-main-content .p-download-main-content__sec + .p-download-main-content__sec {
    margin-top: 3.75rem;
  }
  .p-download-main-content .p-download-main-content__head {
    margin-top: 1.875rem;
    font-size: 1.25rem;
  }
  .p-download-main-content .p-download-main-content__btn {
    margin-top: 2.8125rem;
  }
  .p-download-main-content .p-download-main-content__dl {
    margin-top: 0.9375rem;
  }
  .p-download-main-content .p-download-main-content__dl + .p-download-main-content__dl {
    margin-top: 2.5rem;
  }
  .p-download-main-content .p-download-main-content__dt {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }
  .p-download-main-content .p-download-main-content__dd {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**
 * おまとめダウンロードコンテンツ
 */
.p-download-main-sketch {
  margin-top: 1.875rem;
}
.p-download-main-sketch .p-download-main-sketch__item + .p-download-main-sketch__item {
  margin-top: 1.875rem;
}
.p-download-main-sketch .p-download-main-sketch__head {
  color: #f49605;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.p-download-main-sketch .p-download-main-sketch__thumb {
  margin-top: 0.625rem;
}
.p-download-main-sketch .p-download-main-sketch__txt {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-download-main-sketch {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.125rem 2.8125rem;
    margin-top: 2.8125rem;
  }
  .p-download-main-sketch .p-download-main-sketch__item + .p-download-main-sketch__item {
    margin-top: 0;
  }
  .p-download-main-sketch .p-download-main-sketch__head {
    font-size: 1.25rem;
  }
  .p-download-main-sketch .p-download-main-sketch__thumb {
    margin-top: 1.25rem;
  }
  .p-download-main-sketch .p-download-main-sketch__txt {
    margin-top: 0.9375rem;
    font-size: 0.9375rem;
  }
}

/**
 * 背景色
 */
#numberone {
  position: relative;
  background: #77D05A;
}
#numberone::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2244%22%20height%3D%2248%22%20viewBox%3D%220%200%2044%2048%22%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip-path%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_1581%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201581%22%20width%3D%2220.924%22%20height%3D%2215.924%22%20fill%3D%22%234fa334%22%2F%3E%20%3C%2FclipPath%3E%20%3CclipPath%20id%3D%22clip-path-2%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_1581-2%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201581%22%20width%3D%2220.924%22%20height%3D%2215.924%22%20fill%3D%22%2367c34a%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22bg_numberone_pattern%22%20transform%3D%22translate(5668%2012568)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_2657%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%202657%22%20transform%3D%22translate(-5668%20-12568)%22%20clip-path%3D%22url(%23clip-path)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_3745%22%20data-name%3D%22%E3%83%91%E3%82%B9%203745%22%20d%3D%22M20.4%2C15.171l-4.3-4.163-4.3%2C4.163L7.5%2C11.009v10.85H24.7V11.009Z%22%20transform%3D%22translate(-5.423%20-8.365)%22%20fill%3D%22%2367c34a%22%2F%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_2657-2%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%202657%22%20transform%3D%22translate(-5648%20-12546)%22%20clip-path%3D%22url(%23clip-path-2)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_3745-2%22%20data-name%3D%22%E3%83%91%E3%82%B9%203745%22%20d%3D%22M20.4%2C15.17l-4.3-4.161L11.8%2C15.17%2C7.5%2C11.009V21.854H24.7V11.009Z%22%20transform%3D%22translate(-5.434%20-8.372)%22%20fill%3D%22%2367c34a%22%2F%3E%20%3C%2Fg%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_1755%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201755%22%20width%3D%2244%22%20height%3D%2248%22%20transform%3D%22translate(-5668%20-12568)%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") repeat center/3.125rem auto;
}

/**
 * p-numberone
 */
.p-numberone .p-numberone__inner {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
.p-numberone .p-numberone__img {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 0.625rem 0.625rem 0 0;
}
.p-numberone .p-numberone__content {
  padding: 0.9375rem 0.9375rem 3.125rem;
  border-radius: 0 0 0.625rem 0.625rem;
  background: #fff;
}
.p-numberone .p-numberone__txt {
  font-weight: 800;
  letter-spacing: -0.05em;
}
.p-numberone .p-numberone__archive {
  margin-top: 2.1875rem;
}
.p-numberone .p-numberone__btn {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-numberone .p-numberone__inner {
    padding-top: 5.9375rem;
    padding-bottom: 6.25rem;
  }
  .p-numberone .p-numberone__img {
    margin-top: 3.75rem;
  }
  .p-numberone .p-numberone__content {
    margin-top: -1px;
    padding: 0 3.125rem 4.375rem;
  }
  .p-numberone .p-numberone__txt {
    letter-spacing: 0;
    text-align: center;
  }
  .p-numberone .p-numberone__archive {
    margin-top: 3.125rem;
  }
  .p-numberone .p-numberone__btn {
    margin-top: 6.25rem;
  }
}

/**
 * 背景色
 */
#history {
  position: relative;
  background: #f02525;
}
#history::before {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2241.442%22%20height%3D%2242.184%22%20viewBox%3D%220%200%2041.442%2042.184%22%3E%20%3Cg%20id%3D%22bg_history_pattern%22%20transform%3D%22translate(10044.391%2018239.184)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_7582%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%207582%22%20transform%3D%22translate(14267.072%20-527)%22%3E%20%3Cpath%20id%3D%22%E5%90%88%E4%BD%93_1%22%20data-name%3D%22%E5%90%88%E4%BD%93%201%22%20d%3D%22M-14247.709%2C547.8l-2.181-1.8h7.376l3.366%2C7.315%2C3.362-7.315h7.375l-2.18%2C1.8-8.558%2C15.2Zm-17.183-19-2.181-1.8h7.376l3.361%2C7.315%2C3.366-7.315h7.372l-2.177%2C1.8-8.562%2C15.2Z%22%20transform%3D%22translate(-10043%20-18238.686)%22%20fill%3D%22%23d90303%22%20stroke%3D%22rgba(0%2C0%2C0%2C0)%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_1753%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201753%22%20width%3D%2239%22%20height%3D%2242%22%20transform%3D%22translate(-10043%20-18239)%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") repeat center/3.125rem auto;
}

/**
 * p-history
 */
.p-history {
  position: relative;
}
.p-history .p-history__inner {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
.p-history .p-history__archive {
  margin-top: 2.5rem;
}
.p-history .p-history__btn {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-history .p-history__inner {
    padding-top: 5.9375rem;
    padding-bottom: 6.25rem;
  }
  .p-history .p-history__archive {
    margin-top: 3.75rem;
  }
  .p-history .p-history__btn {
    margin-top: 3.75rem;
  }
}
.p-history .p-history__inner {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
.p-history .p-history__img {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 0.625rem 0.625rem 0 0;
}
.p-history .p-history__content {
  padding: 0.9375rem 0.9375rem 3.125rem;
  border-radius: 0 0 0.625rem 0.625rem;
  background: #fff;
}
.p-history .p-history__txt {
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 2.5rem;
}
.p-history .p-history__archive {
  margin-top: 2.1875rem;
}
.p-history .p-history__btn {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-history .p-history__inner {
    padding-top: 5.9375rem;
    padding-bottom: 6.25rem;
  }
  .p-history .p-history__img {
    margin-top: 3.75rem;
  }
  .p-history .p-history__content {
    margin-top: -1px;
    padding: 2.5rem 3.125rem 4.375rem;
  }
  .p-history .p-history__txt {
    letter-spacing: 0;
    text-align: center;
  }
  .p-history .p-history__archive {
    margin-top: 3.125rem;
  }
  .p-history .p-history__btn {
    margin-top: 6.25rem;
  }
}
.p-history .p-history__about__link {
  display: block;
  margin-bottom: 3.75rem;
  transition: 0.3s;
  cursor: pointer;
}
.p-history .p-history__about__link:hover {
  filter: brightness(120%);
}
@media screen and (min-width: 768px) {
  .p-history .p-history__about__link {
    display: block;
    width: 300px;
    margin: 0 auto 5rem;
  }
}
.p-history .p-history__era {
  border-bottom: 1px solid #D92418;
  padding-bottom: 1.875rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-history .p-history__era {
    padding-bottom: 3.125rem;
    margin-bottom: 3.125rem;
  }
}
.p-history .p-history__era:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.p-history .p-history__era__ttl {
  color: #C80000;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.875rem;
}
.p-history .p-history__era__lead {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  word-wrap: break-word;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .p-history .p-history__era__lead {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-history .p-history__era__list {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-history .p-history__era__item {
  display: block;
  margin-bottom: 0.625rem;
  transition: 0.3s;
}
.p-history .p-history__era__item:hover {
  filter: brightness(105%) drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}
@media screen and (min-width: 768px) {
  .p-history .p-history__era__item {
    width: 288px;
    margin-right: 18px;
    margin-bottom: 1.125rem;
  }
  .p-history .p-history__era__item:nth-child(3n) {
    margin-right: 0;
  }
}
.p-history .p-history__era__item:last-child {
  margin-bottom: 0;
}
.p-history .p-history__inventory {
  margin: 1.25rem auto 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-history .p-history__inventory {
    margin: 2.5rem auto 0;
  }
}
.p-history .p-history__inventory__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 10rem;
  padding: 0.5625rem;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  margin-right: 0.625rem;
  margin-bottom: 0.625rem;
  transition: 0.3s;
}
.p-history .p-history__inventory__item:nth-child(2n) {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-history .p-history__inventory__item {
    width: 14.6875rem;
    margin-right: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .p-history .p-history__inventory__item:nth-child(2n) {
    margin-right: 1.25rem;
  }
  .p-history .p-history__inventory__item:nth-child(4n) {
    margin-right: 0;
  }
}
.p-history .p-history__inventory__item:hover {
  background-color: #ffcece;
}
.p-history .p-history__inventory__item--thumb {
  display: block;
  width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-history .p-history__inventory__item--thumb {
    width: 4.375rem;
  }
}
.p-history .p-history__inventory__item--name {
  display: block;
  width: 4.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .p-history .p-history__inventory__item--name {
    width: 8.4375rem;
  }
}
.p-history .history__slide {
  width: 100%;
  margin-bottom: 3.75rem !important;
}
.p-history .history__slide__item {
  width: 6.875rem;
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-history .history__slide__item {
    width: 7.5rem;
    margin-right: 1.5rem;
  }
}
.p-history .hitory__chara__name {
  display: block;
  font-size: 0.6875rem;
  margin-top: 0.9375rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-history .hitory__chara__name {
    font-size: 0.75rem;
    margin-top: 0.9375rem;
  }
}
.p-history .hitory__chara__desc {
  display: block;
  font-size: 0.6875rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-history .hitory__chara__desc {
    font-size: 0.75rem;
  }
}
.p-history .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-history .modal-content {
  position: relative;
  background: white;
  text-align: center;
  height: 75vh;
  width: 100vw;
  overflow-y: auto;
  z-index: 1010;
}
@media screen and (min-width: 768px) {
  .p-history .modal-content {
    height: 85vh;
    width: 50vw;
  }
}
.p-history .close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
  width: 45px;
  height: 45px;
  z-index: 1020;
}
@media screen and (min-width: 768px) {
  .p-history .close {
    width: 45px;
    height: 45px;
  }
}

#history {
  /*----------------------------------------
  ** super-sentai-friends.com
  ** history
  ----------------------------------------*/
  /* ------------------------------------ */
  /*----------------------------------------
  ** articles items list
  ----------------------------------------*/
  /*----------------------------------------
  ** articles detail
  ----------------------------------------*/
  /*----------------------------------------
  ** __bt
  ----------------------------------------*/
  /*-----------------------------------------
  ** img size
  -----------------------------------------*/
  /*yotube*/
  /* wallpaper download */
  /* 2020.7.31 */
  /* ------------------------- */
  /* ------------------------- */
  /* .-hiline::before {
    display: inline-block;
    content: "";
    width: 100%;
    height: 0.5em;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ffff00;
    z-index: -1;
  } */
  /* ------------------------- */
  /* ------------------------- */
  /* ------------------------- */
  /* ------------------------------------ */
  /* zenkaiger topics */
  /* _current-gear-link */
  /* -external-link */
  /* zenkai */
  /* rerated articles */
  /* .history-matrix */
  /* new head ttl 2023.7.4 */
  /* new text box 2023.7.3 */
  /* メッセージ */
  /* 放送期間 */
}
#history .__topics-wrap {
  margin: 70px auto;
  position: relative;
}
#history .__topics-wrap > *:not(.__elm-red) {
  position: relative;
  /* z-index: 2; */
}
#history .__page-ttl {
  text-align: center;
  margin: 0 0 85px 0;
}
#history .__page-ttl img {
  max-width: inherit;
  width: auto;
  height: 50px;
}
@media screen and (max-width: 768px) {
  #history .__topics-wrap {
    margin: 35px auto;
  }
  #history .__page-ttl {
    text-align: center;
    margin: 0 0 42px 0;
  }
  #history .__page-ttl img {
    max-width: inherit;
    width: auto;
    height: 33px;
  }
}
#history .__elm-red {
  width: 20%;
  position: absolute;
  top: -35px;
  /* right: -90px; */
  left: -30px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #history .__elm-red {
    width: 22%;
    position: absolute;
    top: -20px;
    /* right: inherit; */
    /* left: -10px; */
    left: auto;
    right: 10px;
  }
}
#history .__history-article-item {
  width: 50%;
  padding: 0 10px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  #history .__history-article-item {
    width: 100%;
    padding: 0;
    margin: 0 0 15px 0;
  }
}
#history .__history-article-item > * {
  display: flex;
  border: 4px solid #000;
  border-radius: 10px;
  background: #000;
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
}
#history .__history-article-item > *:hover {
  background: #fff;
}
#history .__history-article-item-pic {
  width: 50%;
}
#history .__history-article-item-txt {
  width: 50%;
  padding: 20px;
  /* display: flex;
  flex-wrap: wrap;
  align-items: flex-start; */
}
@media screen and (max-width: 768px) {
  #history .__history-article-item-txt {
    padding: 5px 10px 0;
  }
}
#history .__history-article-txt-date {
  display: block;
  width: 100%;
  color: #d90303;
  margin: 0 0 10px 0;
  line-height: 1;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
#history .__history-article-txt-ttl {
  display: block;
  width: 100%;
  color: #fff;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #history .__history-article-txt-date {
    font-size: 0.8rem;
  }
  #history .__history-article-txt-ttl {
    display: block;
    width: 100%;
    color: #fff;
    margin: 0;
    font-size: 0.93rem;
  }
}
#history a:hover .__history-article-txt-date {
  color: #d90303;
}
#history a:hover .__history-article-txt-ttl {
  color: #000;
}
#history .__article-head {
  background: #000;
  margin: 0 0 0 0;
  padding: 35px 35px 35px 35px;
  border-radius: 10px 10px 0 0;
}
#history .__artcile-ttl {
  font-size: 1.86rem;
  line-height: 1.5;
  margin: 0 0 7px 0;
  color: #fff;
}
#history .__article-date {
  font-size: 1.33rem;
  color: #d90303;
}
#history .__article-body {
  background: #fff;
  color: #000;
  padding: 80px 80px 80px 80px;
  border-radius: 0 0 10px 10px;
  font-size: 1.06rem;
  line-height: 2;
}
#history .__article-body p {
  margin: 0 0 50px 0;
}
#history .__article-body p:last-of-type {
  margin-bottom: 0;
}
#history .__article-body a {
  color: #d90303;
  text-decoration: underline;
}
#history .__article-body a:hover {
  color: #d90303;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #history .__article-head {
    background: #000;
    margin: 0 0 0 0;
    padding: 15px 15px 15px 15px;
    border-radius: 10px 10px 0 0;
  }
  #history .__artcile-ttl {
    font-size: 1.26rem;
    line-height: 1.5;
    margin: 0 0 7px 0;
    color: #fff;
  }
  #history .__article-date {
    font-size: 1rem;
    color: #d90303;
  }
  #history .__article-body {
    background: #fff;
    color: #000;
    padding: 15px 15px 15px 15px;
    border-radius: 0 0 10px 10px;
    font-size: 1rem;
    line-height: 2;
  }
  #history .__article-body p {
    margin: 0 0 30px 0;
  }
}
#history .__bt {
  display: block;
  width: 300px;
  margin: 0 auto 0 auto;
  padding: 15px 10px 15px 10px;
  border: 2px solid #fff;
  background: #000;
  color: #fff;
  border-radius: 60px;
  text-align: center;
  text-decoration: none;
  font-size: 1.06rem;
  font-weight: 700;
  transition: 0.3s;
}
#history .__bt:hover {
  width: 340px;
}
#history .__bt img {
  width: auto;
  height: 18px;
}
@media screen and (max-width: 768px) {
  #history .__bt {
    display: block;
    width: 240px;
    border-radius: 60px;
    transition: 0.3s;
    font-size: 0.93rem;
  }
  #history .__bt:hover {
    width: 260px;
  }
  #history .__bt img {
    width: auto;
    height: 16px;
  }
}
#history .__size-L {
  max-width: 100%;
}
#history .__size-M {
  max-width: 80%;
}
#history .__size-S {
  max-width: 60%;
}
#history .__size-XS {
  max-width: 30%;
}
#history .__size-MS {
  width: 40%;
}
#history .__2x {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  letter-spacing: -0.4em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#history .__2x li {
  width: 50%;
  display: inline-block;
  letter-spacing: normal;
  margin-left: 0;
  margin-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: top;
}
#history .__2x li img {
  max-width: 100% !important;
  height: auto;
}
#history .__2x li span {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
}
#history .__3x {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  letter-spacing: -0.4em;
}
#history .__3x li {
  width: 33.3333333333%;
  display: inline-block;
  letter-spacing: normal;
  margin-left: 0;
  margin-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: top;
}
#history .__3x li img {
  max-width: 100% !important;
  height: auto;
}
#history .__3x li span {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 5px;
}
#history .__4x {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 30px;
  letter-spacing: -0.4em;
}
#history .__4x li {
  width: 25%;
  display: inline-block;
  /*float: left;*/
  letter-spacing: normal;
  margin-left: 0;
  margin-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: top;
}
#history .__4x li img {
  max-width: 250px !important;
  width: auto;
  vertical-align: top;
  margin-bottom: 7px;
}
#history .__4x.__bd li img {
  max-width: 100% !important;
  height: auto;
  vertical-align: top;
  margin-bottom: 7px;
}
#history .__4x li span {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  #history .__size-L {
    max-width: 100%;
  }
  #history .__size-M {
    max-width: 100%;
  }
  #history .__size-S {
    max-width: 80%;
    margin: 0 auto;
  }
  #history .__size-XS {
    max-width: 70%;
    margin: 0 auto;
  }
  #history .__size-MS {
    width: 80%;
  }
  #history .__2x {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    letter-spacing: -0.4em;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  #history .__2x li {
    width: 100%;
    display: inline-block;
    letter-spacing: normal;
    margin-left: 0;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    vertical-align: top;
  }
  #history .__2x li img {
    max-width: 100% !important;
    height: auto;
  }
  #history .__3x {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    letter-spacing: -0.4em;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  #history .__3x li {
    width: 100%;
    display: inline-block;
    letter-spacing: normal;
    margin-left: 0;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    vertical-align: top;
  }
  #history .__3x li img {
    max-width: 100% !important;
    height: auto;
  }
  #history .__4x {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 10px;
    letter-spacing: -0.4em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #history .__4x li {
    width: 50%;
    display: inline-block;
    /*float: left;*/
    letter-spacing: normal;
    margin-left: 0;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: top;
  }
  #history .__4x li img {
    max-width: 100% !important;
    height: auto;
    vertical-align: top;
    margin-bottom: 7px;
  }
  #history .__4x li span {
    display: block;
    font-size: 10px;
  }
}
#history .__movie-wrap {
  margin: 0 auto 25px;
  width: 100%;
  max-width: 720px;
  position: relative;
  /*top: 50%;
  left: 0;
  transform: translateY(-50%);*/
}
#history .__movie-wrap-inner {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
#history .__movie-wrap-inner iframe {
  height: 100% !important;
  left: 0;
  position: absolute;
  top: 0;
  width: 100% !important;
}
#history .__wp-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 100px -30px 0 -30px;
}
#history .__wp-item {
  width: 50%;
  padding: 0 30px;
  margin: 0 0 60px 0;
}
#history .__wp-item-ttl {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.2;
}
#history .__wp-item-thumb {
  margin: 0 0 15px 0;
}
#history .__wp-item-btn {
  width: 70%;
  margin: 0 auto;
}
#history .__wp-item-btn a img {
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
#history .__wp-item-btn a:hover img {
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.45));
  -webkit-filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.45));
}
@media screen and (max-width: 768px) {
  #history .__wp-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0 0 0;
  }
  #history .__wp-item {
    width: 100%;
    padding: 0;
    margin: 0 0 30px 0;
  }
  #history .__wp-item-ttl {
    font-size: 1rem;
  }
  #history .__wp-item-thumb {
    margin: 0 0 15px 0;
  }
  #history .__wp-item-btn {
    width: 70%;
    margin: 0 auto;
  }
  #history .__wp-item.-col-2 {
    width: 50%;
    padding: 0 10px;
    margin: 0 0 30px 0;
  }
}
#history ._topics-pager {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
#history ._topics-pager.-index {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto 50px;
}
#history ._topics-pager > * {
  font-size: 0.93rem;
  padding: 0.4rem 1rem;
  margin: 0 10px 6px 10px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
#history ._topics-pager > a {
  margin-bottom: 0.8rem;
}
#history ._topics-pager > a,
#history ._topics-pager > a:visited,
#history ._topics-pager > a:active {
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 2px solid #000;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
#history ._topics-pager > a:hover {
  background: #d90303;
  color: #fff;
  text-decoration: none;
}
#history ._topics-pager > span,
#history ._topics-pager > a.-dis {
  background: #d90303;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #history ._topics-pager > a {
    margin-bottom: 0.5rem;
  }
  #history ._topics-pager > * {
    font-size: 0.93rem;
    padding: 0.3rem 0.75rem;
    margin: 0 3px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
  }
}
#history ._topics-pager .-dis {
  background: #d90303 !important;
  color: #fff;
  text-decoration: none;
  pointer-events: none;
}
#history ._topics-next {
  background: #fff2e6;
  color: #4d4d4d;
  padding: 1rem 1rem 1rem 11rem;
  margin-top: 50px;
  font-weight: 700;
  position: relative;
}
#history ._topics-next::before {
  content: ">> 次のページ";
  font-size: 0.93rem;
  font-weight: normal;
  text-align: left;
  width: 9em;
  height: auto;
  position: absolute;
  left: 15px;
  bottom: 50%;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
}
#history ._topics-next a,
#history ._topics-next a:visited,
#history ._topics-next a:active {
  color: #4d4d4d;
  text-decoration: none;
}
#history ._topics-next a:hover {
  color: #4d4d4d;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #history ._topics-next {
    padding: 3rem 1em 1em;
    margin-top: 50px;
    text-align: center;
  }
  #history ._topics-next::before {
    font-weight: normal;
    text-align: center;
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 10px;
    bottom: inherit;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
}
#history .-orange {
  color: #ff6600;
}
#history .-red {
  color: #ff0000;
}
#history .-hiline {
  display: inline;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #ffff00 51%, #ffff00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffff00",GradientType=0 );
}
#history ._highlight-ttl {
  margin-bottom: 1rem !important;
}
#history ._highlight-list {
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
}
#history ._highlight-item {
  text-indent: -1em;
  padding-left: 1em;
}
#history ._highlight-item::before {
  content: "●";
  color: #ff6600;
}
@media screen and (max-width: 768px) {
  #history ._highlight-list {
    margin: 0 0 30px;
  }
}
#history ._topics-sp-ttl {
  border-left: 5px solid #ff6666;
  background: #fff2e6;
  font-size: 1.46rem;
  font-weight: 700;
  padding: 10px 15px;
  margin-bottom: 1rem !important;
}
#history ._topics-slide {
  margin-bottom: 50px !important;
}
#history ._topics-slide figure {
  margin: 0;
}
#history ._topics-slide figcaption {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  #history ._topics-sp-ttl {
    font-size: 1.26rem;
    padding: 5px 7px;
  }
}
#history ._pic-set {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px 50px;
}
#history ._pic-item {
  width: 33.3333333333%;
  padding: 0 25px;
}
#history .-mb ._pic-item {
  margin: 0 0 50px 0;
}
#history ._pic-item a {
  display: block;
  position: relative;
}
#history ._pic-item a::after {
  content: "";
  width: 25px;
  height: 25px;
  background: #000 url(../img/topics/ic-zoom.png) center center no-repeat;
  background-size: 10px 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
#history ._pic-item a:hover::after {
  background: #000 url(../img/topics/ic-zoom.png) center center no-repeat;
  background-size: 15px 15px;
}
@media screen and (max-width: 768px) {
  #history ._pic-set {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px 50px;
  }
  #history ._pic-item {
    width: 100%;
    padding: 0 25px;
    margin-bottom: 25px;
  }
  #history .-mb ._pic-item {
    margin: 0 0 20px 0;
  }
}
#history ._show-arichives {
  background: #f1f1f1;
  padding: 30px;
  margin: 0 0 30px 0;
  display: flex;
  flex-wrap: wrap;
}
#history ._show-pic {
  max-width: 200px;
  margin: 0 30px 0 0;
}
#history ._show-pic figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
}
#history ._show-detail {
  width: calc(100% - 230px);
  color: #595959;
}
#history ._show-detail-ttl {
  color: #ff6600;
  font-weight: 700;
  font-size: 1.33rem;
  margin: 0 0 30px 0;
}
#history ._show-detail-ep {
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
#history ._show-detail-ep li {
  text-indent: -4em;
  padding-left: 4em;
  border-bottom: 1px solid #595959;
}
#history ._show-detail-ep li:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  #history ._show-pic {
    max-width: 80%;
    margin: 0 auto 30px;
  }
  #history ._show-detail {
    width: 100%;
  }
  #history ._show-detail-ttl {
    font-size: 1.13rem;
    margin: 0 0 30px 0;
  }
}
#history ._topics-notes {
  border: 1px solid #ff0000;
  padding: 15px;
  margin: 0 0 50px 0;
  color: #ff0000;
  text-align: center;
  font-size: 0.93rem;
}
#history ._topics-notes a,
#history ._topics-notes a:visited,
#history ._topics-notes a:active {
  color: #213488;
}
#history ._topics-notes a:hover {
  color: #213488;
  text-decoration: none;
}
#history ._topics-ticket {
  border: 5px solid #ffa200;
  padding: 15px;
  margin: 0 0 50px 0;
  font-weight: 700;
}
#history ._topics-ticket a {
  display: block;
  width: 500px;
  margin: 0 auto;
  text-indent: -1.5em;
  padding-left: 1.5em;
  color: #ff6600;
}
@media screen and (max-width: 768px) {
  #history ._topics-ticket a {
    width: 85%;
  }
}
#history .-iframe {
  padding: 15px;
  width: 100%;
  height: 250px;
  overflow-y: auto;
  border: 1px solid #ccc;
}
#history .-bt-cp-post {
  display: block;
  width: 275px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  #history .-bt-cp-post {
    width: 100%;
    margin: 15px auto 0;
  }
}
#history a._current-gear-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 0 0 0 28px;
  background-image: url(../img/zenkaiger/ic-zen-link.png);
  background-position: left 9px;
  background-repeat: no-repeat;
  background-size: auto 16px;
  color: #df040b;
  text-decoration: none;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #history a._current-gear-link {
    font-size: 16px;
    padding: 0 0 0 25px;
    background-position: left 3px;
    background-size: auto 20px;
  }
}
@media screen and (min-width: 769px) {
  #history a._current-gear-link:hover {
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  #history a._current-gear-link:active {
    color: #000;
  }
}
#history a.-external-link {
  display: inline-block;
  font-size: 16px;
  /* font-weight: 700; */
  padding: 0 20px 0 0;
  margin: 0 5px 0 0;
  background-image: url(../img/topics/ic-link-external.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 15px;
  color: #df040b;
  text-decoration: none;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #history a.-external-link {
    font-size: 16px;
    padding: 0 17px 0 0;
    background-position: right center;
    background-size: auto 13px;
  }
}
@media screen and (min-width: 769px) {
  #history a.-external-link:hover {
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  #history a.-external-link:active {
    color: #000;
  }
}
#history .zenkai-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
#history .zenkai-item {
  width: 50%;
  padding: 0 10px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  #history .zenkai-item {
    width: 100%;
    padding: 0;
    margin: 0 0 10px 0;
  }
  #history .zenkai-item:last-of-type {
    margin-bottom: 0;
  }
}
#history .zenkai-item-link {
  display: flex;
  align-items: center;
  border: 2px solid #d6d6d6;
  padding: 15px;
  color: #000 !important;
  text-decoration: none !important;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #history .zenkai-item-link {
    padding: 7px;
  }
}
@media screen and (min-width: 769px) {
  #history .zenkai-item-link:hover {
    background-color: #fde5e5;
  }
}
@media screen and (max-width: 768px) {
  #history .zenkai-item-link:active {
    background-color: #fde5e5;
  }
}
#history .zenkai-thumb {
  display: block;
  width: 80px;
}
@media screen and (max-width: 768px) {
  #history .zenkai-thumb {
    width: 60px;
  }
}
#history .zenkai-thumb img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
#history .zenkai-ttl {
  display: block;
  width: calc(100% - 80px);
  padding-left: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #history .zenkai-ttl {
    width: calc(100% - 60px);
    padding-left: 10px;
    font-size: 14px;
  }
}
#history .related-ttl {
  font-size: 24px;
  font-weight: 800;
  margin-top: 60px;
}
#history .rerated-articles {
  display: flex;
  flex-wrap: wrap;
  margin: 25px -10px 0;
}
@media screen and (max-width: 768px) {
  #history .related-ttl {
    font-size: 20px;
    margin-top: 30px;
  }
  #history .rerated-articles {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
}
#history .article-item {
  width: 50%;
  padding: 0 10px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  #history .article-item {
    width: 100%;
    padding: 0 5px;
    margin: 0 0 10px 0;
  }
  #history .article-item:last-of-type {
    margin-bottom: 0;
  }
}
#history .article-item-link {
  display: flex;
  border: 2px solid #000;
  background-color: #000;
  text-decoration: none !important;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #history .article-item-link:hover {
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  #history .article-item-link:active {
    background-color: #fff;
  }
}
#history .article-thumb {
  display: block;
  width: 180px;
}
@media screen and (max-width: 768px) {
  #history .article-thumb {
    width: 140px;
  }
}
#history .article-text {
  display: block;
  width: calc(100% - 180px);
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #history .article-text {
    width: calc(100% - 140px);
    padding: 8px;
  }
}
#history .article-date {
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #history .article-date {
    font-size: 12px;
  }
}
#history .article-ttl {
  display: block;
  line-height: 1.6;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: -webkit-box;
  box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #history .article-item-link:hover .article-ttl {
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  #history .article-item-link:active .article-ttl {
    color: #000;
  }
}
#history .history-matrix {
  padding: 25px 0 0 0;
  margin: 25px 0 0 0;
  border-top: 1px solid #dadada;
}
#history .matrix-ttl {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 0 0;
}
@media screen and (max-width: 768px) {
  #history .matrix-ttl {
    font-size: 16px;
  }
}
#history .matrix-list {
  border-top: 1px dotted #acacac;
  margin: 20px 0 0 0;
}
#history .matrix-item {
  display: flex;
  margin: 0;
  border-bottom: 1px dotted #acacac;
}
@media screen and (max-width: 768px) {
  #history .matrix-item {
    flex-wrap: wrap;
  }
}
#history .matrix-item-name {
  width: 20%;
  padding: 7px;
  margin: 0;
  background-color: #ececec;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #history .matrix-item-name {
    width: 100%;
  }
}
#history .matrix-item-info {
  width: 80%;
  padding: 7px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #history .matrix-item-info {
    width: 100%;
  }
}
#history .-md {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #history .-md {
    font-size: 14px;
  }
}
#history .-sm {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #history .-sm {
    font-size: 12px;
  }
}
#history .matrix-list-notes {
  color: #d90303;
  margin: 25px 0 0 0;
}
#history .notes-ttl {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
  #history .notes-ttl {
    font-size: 12px;
  }
}
#history .notes-txt {
  font-size: 14px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #history .notes-txt {
    font-size: 12px;
  }
}
#history .h-bp-ttl {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 15px;
  margin-bottom: 20px;
  background: #2a68e5;
  background: linear-gradient(135deg, #2a68e5 0%, #a437e0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#2a68e5", endColorstr="#a437e0",GradientType=1 );
}
@media screen and (max-width: 768px) {
  #history .h-bp-ttl {
    font-size: 16px;
    padding: 10px 13px;
  }
}
#history .b-bp-box {
  position: relative;
  display: inline-block;
  padding: 15px 18px;
  width: 100%;
  margin-bottom: 1em;
  background-color: #ebebeb;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #history .b-bp-box {
    padding: 10px 13px;
    font-size: 14px;
  }
}
#history .b-bp-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #2acce5 0%, #2f2491 55%, #2a68e5 100%) border-box border-box;
  -webkit-mask: linear-gradient(#ebebeb 0 0) padding-box, linear-gradient(#ebebeb 0 0) border-box;
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#ebebeb 0 0) padding-box, linear-gradient(#ebebeb 0 0) border-box;
          mask: linear-gradient(#ebebeb 0 0) padding-box, linear-gradient(#ebebeb 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
#history .__article-ttl-detail {
  font-size: 1.33rem;
  line-height: 1;
  margin: 0 0 0 0;
  color: #fff;
  text-align: left;
}
#history .__message-detail {
  /* display: flex; */
  margin: 0 0 40px 0;
  padding: 0 0 40px 0;
  border-bottom: 1px dashed #666;
}
#history .__message-detail:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  /* padding-bottom: 0; */
}
@media screen and (max-width: 768px) {
  #history .__article-ttl-detail {
    font-size: 1.06rem;
  }
}
#history .__message-detail-head {
  display: flex;
  align-items: center;
}
#history .__message-detail-pic {
  width: 150px;
}
#history .__message-detail-pic img {
  border-radius: 50%;
}
#history .__message-detail-txt {
  width: calc(100% - 150px);
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  #history .__message-detail-pic {
    width: 80px;
    margin: 0 auto 20px;
  }
  #history .__message-detail-txt {
    width: calc(100% - 80px);
    padding-left: 15px;
  }
}
#history .__message-detail-role {
  font-size: 1.33rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}
#history .__message-detail-name {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  margin: 0 0 20px 0;
}
#history .__message-detail-comment {
  font-size: 1.06rem;
  line-height: 2;
  width: calc(100% - 180px);
  margin: 0 0 0 auto;
}
#history .__message-detail-comment p {
  margin: 0 0 0 0;
}
#history .is-indent {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  #history .__message-detail-role {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  #history .__message-detail-name {
    font-size: 1.33rem;
    line-height: 1;
    font-weight: 900;
    margin: 0 0 20px 0;
  }
  #history .__message-detail-comment {
    /* display: none; */
    font-size: 1rem;
    line-height: 2;
    width: 100%;
    margin: 0 0 0 0;
  }
}
#history .topics__broadcastdate {
  font-weight: 700;
  text-align: center;
  background-color: #dcdcdc;
  padding: 20px;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  #history .topics__broadcastdate {
    padding: 12px;
    border-radius: 80px;
  }
}
#history .__pic-color-red {
  border: 3px solid #ff0000;
}
#history .__pic-color-yellow {
  border: 3px solid #ffa500;
}
#history .__pic-color-green {
  border: 3px solid #00ba31;
}
#history .__pic-color-blue {
  border: 3px solid #0068e5;
}
#history .__pic-color-pink {
  border: 3px solid #ff68c6;
}
#history .__pic-color-blank {
  border: 3px solid #000;
}
#history .__pic-color-gold {
  border: 3px solid #c4a03f;
}
#history .__pic-color-gray,
#history .__pic-color-silver {
  border: 3px solid #95a0b6;
}
#history .__pic-color-darkpurple {
  border: 3px solid #4322a2;
}
#history .__txt-color-red {
  color: #ff0000;
}
#history .__txt-color-yellow {
  color: #ffa500;
}
#history .__txt-color-green {
  color: #00ba31;
}
#history .__txt-color-blue {
  color: #0068e5;
  /* color: #6699cc; */
}
#history .__txt-color-pink {
  color: #ff68c6;
}
#history .__txt-color-mab {
  color: #27abbd;
}
#history .__txt-color-black {
  color: #000;
}
#history .__txt-color-gray,
#history .__txt-color-silver {
  color: #95a0b6;
}
#history .__txt-color-mizu {
  color: #75a6cd;
}
#history .__txt-color-kegare {
  color: #813a4c;
}
#history .__txt-color-gold {
  color: #c4a03f;
}
#history .__txt-color-doggy {
  color: #3399cc;
}
#history .__txt-color-darkpurple {
  color: #4322a2;
}
#history .__txt-color-navy {
  color: #003399;
}
#history .__txt-color-5colors {
  background: -webkit-linear-gradient(0deg, #e71603, #f0b62c, #ee82a0, #257fce);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  #history .__txt-color-5colors {
    display: block;
  }
}
#history .__txt-color-blue_lt {
  color: #6699cc;
}
#history .__txt-color-orange {
  color: #ffa500;
}
#history .__txt-color-sarublue {
  color: #0068e5;
}
#history .__txt-color-gray {
  color: #999999;
}
#history .__txt-color-purple {
  color: #4322a2;
}

/**
 * 背景色
 */
#manners {
  position: relative;
  background: #77D05A;
}
#manners::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNzMiIGhlaWdodD0iNzQiIHZpZXdCb3g9IjAgMCA3MyA3NCI+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+CiAgICAgIDxyZWN0IHdpZHRoPSI3MyIgaGVpZ2h0PSI3NCIgZmlsbD0ibm9uZSIvPgogICAgPC9jbGlwUGF0aD4KICA8L2RlZnM+CiAgPGcgaWQ9IuODquODlOODvOODiOOCsOODquODg+ODiV8xMDciIGRhdGEtbmFtZT0i44Oq44OU44O844OI44Kw44Oq44OD44OJIDEwNyIgY2xpcC1wYXRoPSJ1cmwoI2NsaXAtcGF0aCkiPgogICAgPGcgaWQ9IuOCsOODq+ODvOODl18zMzA3IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAzMzA3IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjE5NC45MTcgMTMzOTMuNjg0KSI+CiAgICAgIDxnIGlkPSLjgrDjg6vjg7zjg5dfMzMwNSIgZGF0YS1uYW1lPSLjgrDjg6vjg7zjg5cgMzMwNSI+CiAgICAgICAgPHBhdGggaWQ9IuODkeOCuV80NDA4IiBkYXRhLW5hbWU9IuODkeOCuSA0NDA4IiBkPSJNMTMuMDQ3LDI5Ljg1SDkuOTM4QTEuMTU0LDEuMTU0LDAsMCwxLDguNzg0LDI4LjdWMTcuOGExLjE1NCwxLjE1NCwwLDAsMSwxLjE1NC0xLjE1NGgzLjEwOUExLjE1NSwxLjE1NSwwLDAsMSwxNC4yLDE3LjhWMjguN2ExLjE1NCwxLjE1NCwwLDAsMS0xLjE1NCwxLjE1NCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjE4Ni4xMzQgLTEzMzk4LjE2NSkiIGZpbGw9IiM2N2MzNGEiLz4KICAgICAgICA8cGF0aCBpZD0i44OR44K5XzQ0MDkiIGRhdGEtbmFtZT0i44OR44K5IDQ0MDkiIGQ9Ik0yOS4wMzksMTcuMjMySDIyLjg5czEuNTc1LTQuODcyLDEuODA2LTUuNzYyYy40MjktMS42NTYtLjA4Ny0zLjEtMS41NDktMy4xYTIuNCwyLjQsMCwwLDAtMi4yNDcsMS40cy0yLjQ4Miw1LjA0Ny0zLjgxNiw3LjU0YTYuOTY3LDYuOTY3LDAsMCwxLTMuMTc1LDIuOTY1LDEuMTQ3LDEuMTQ3LDAsMCwwLS42NTEsMS4wNFYzMi41OWExLjE1NCwxLjE1NCwwLDAsMCwxLjE1NCwxLjE1NGgxMC44QTMuMjU1LDMuMjU1LDAsMCwwLDI4LjQsMzEuMTc2bDIuMy0xMC42MzRjLjc3NC0zLjU4Mi0xLjY1My0zLjMxLTEuNjUzLTMuMzEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxODguMjM5IC0xMzQwMi4wNTkpIiBmaWxsPSIjNjdjMzRhIi8+CiAgICAgIDwvZz4KICAgICAgPGcgaWQ9IuOCsOODq+ODvOODl18zMzA2IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAzMzA2IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyOCAyOCkiPgogICAgICAgIDxwYXRoIGlkPSLjg5HjgrlfNDQwOC0yIiBkYXRhLW5hbWU9IuODkeOCuSA0NDA4IiBkPSJNMTMuMDQ3LDI5Ljg1SDkuOTM4QTEuMTU0LDEuMTU0LDAsMCwxLDguNzg0LDI4LjdWMTcuOGExLjE1NCwxLjE1NCwwLDAsMSwxLjE1NC0xLjE1NGgzLjEwOUExLjE1NSwxLjE1NSwwLDAsMSwxNC4yLDE3LjhWMjguN2ExLjE1NCwxLjE1NCwwLDAsMS0xLjE1NCwxLjE1NCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjE4Ni4xMzQgLTEzMzk4LjE2NSkiIGZpbGw9IiM2N2MzNGEiLz4KICAgICAgICA8cGF0aCBpZD0i44OR44K5XzQ0MDktMiIgZGF0YS1uYW1lPSLjg5HjgrkgNDQwOSIgZD0iTTI5LjAzOSwxNy4yMzJIMjIuODlzMS41NzUtNC44NzIsMS44MDYtNS43NjJjLjQyOS0xLjY1Ni0uMDg3LTMuMS0xLjU0OS0zLjFhMi40LDIuNCwwLDAsMC0yLjI0NywxLjRzLTIuNDgyLDUuMDQ3LTMuODE2LDcuNTRhNi45NjcsNi45NjcsMCwwLDEtMy4xNzUsMi45NjUsMS4xNDcsMS4xNDcsMCwwLDAtLjY1MSwxLjA0VjMyLjU5YTEuMTU0LDEuMTU0LDAsMCwwLDEuMTU0LDEuMTU0aDEwLjhBMy4yNTUsMy4yNTUsMCwwLDAsMjguNCwzMS4xNzZsMi4zLTEwLjYzNGMuNzc0LTMuNTgyLTEuNjUzLTMuMzEtMS42NTMtMy4zMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjE4OC4yMzkgLTEzNDAyLjA1OSkiIGZpbGw9IiM2N2MzNGEiLz4KICAgICAgPC9nPgogICAgPC9nPgogIDwvZz4KPC9zdmc+") repeat center/3.125rem auto;
}

/**
 * p-manners
 */
.p-manners .p-manners__inner {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
.p-manners .p-manners__img {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 0.625rem 0.625rem 0 0;
}
.p-manners .p-manners__content {
  padding: 0.9375rem 0.9375rem 3.125rem;
  border-radius: 0 0 0.625rem 0.625rem;
  background: #fff;
}
.p-manners .p-manners__txt {
  font-weight: 800;
  letter-spacing: -0.05em;
}
.p-manners .p-manners__archive {
  margin-top: 2.1875rem;
}
.p-manners .manners-archive-txt {
  margin-top: 2.8125rem;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-manners .manners-archive-txt {
    font-size: 0.875rem;
  }
}
.p-manners .p-manners__btn {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-manners .p-manners__inner {
    padding-top: 5.9375rem;
    padding-bottom: 6.25rem;
  }
  .p-manners .p-manners__img {
    margin-top: 3.75rem;
  }
  .p-manners .p-manners__content {
    margin-top: -1px;
    padding: 0 3.125rem 4.375rem;
  }
  .p-manners .p-manners__txt {
    letter-spacing: 0;
    text-align: center;
  }
  .p-manners .p-manners__archive {
    margin-top: 3.125rem;
  }
  .p-manners .p-manners__btn {
    margin-top: 6.25rem;
  }
}

/**
 * 背景色
 */
#red {
  position: relative;
  background: #f02525;
}
#red::before {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNTkiIGhlaWdodD0iNTkiIHZpZXdCb3g9IjAgMCA1OSA1OSI+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+CiAgICAgIDxyZWN0IHdpZHRoPSI1OSIgaGVpZ2h0PSI1OSIgZmlsbD0ibm9uZSIvPgogICAgPC9jbGlwUGF0aD4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcC1wYXRoLTIiPgogICAgICA8cmVjdCBpZD0i6ZW35pa55b2iXzE4MTQiIGRhdGEtbmFtZT0i6ZW35pa55b2iIDE4MTQiIHdpZHRoPSIyNiIgaGVpZ2h0PSIxNy45NDgiIGZpbGw9IiNkOTAzMDMiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxnIGlkPSLjg6rjg5Tjg7zjg4jjgrDjg6rjg4Pjg4lfMTA2IiBkYXRhLW5hbWU9IuODquODlOODvOODiOOCsOODquODg+ODiSAxMDYiIGNsaXAtcGF0aD0idXJsKCNjbGlwLXBhdGgpIj4KICAgIDxnIGlkPSLjgrDjg6vjg7zjg5dfMzMzNCIgZGF0YS1uYW1lPSLjgrDjg6vjg7zjg5cgMzMzNCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDc3My42MDQgMTI1OTUuNjI5KSI+CiAgICAgIDxnIGlkPSLjgrDjg6vjg7zjg5dfMzMzMiIgZGF0YS1uYW1lPSLjgrDjg6vjg7zjg5cgMzMzMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQ3NzMuNjA0IC0xMjU5NS42MjkpIj4KICAgICAgICA8ZyBpZD0i44Kw44Or44O844OXXzMzMjkiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDMzMjkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMCkiIGNsaXAtcGF0aD0idXJsKCNjbGlwLXBhdGgtMikiPgogICAgICAgICAgPHBhdGggaWQ9IuODkeOCuV80NjQ5IiBkYXRhLW5hbWU9IuODkeOCuSA0NjQ5IiBkPSJNMjIuMzc5LjM4NEE3LjM2Myw3LjM2MywwLDAsMSwyNC45OTIuMDE1YTEuMDUxLDEuMDUxLDAsMCwxLC45NzYuNjU2QTIuMjU1LDIuMjU1LDAsMCwxLDI1LjgsMS45MTcsOS41MzcsOS41MzcsMCwwLDEsMjMuNzg0LDQuNzUsMzIuMDYsMzIuMDYsMCwwLDEsMTkuOSw4LjE1N2E3My4yMTksNzMuMjE5LDAsMCwxLTguNTY5LDUuNzMzLDQzLjAyNSw0My4wMjUsMCwwLDEtNy4yMDgsMy40MjksOS44MTUsOS44MTUsMCwwLDEtMi44NDkuNjI3LDEuMzc5LDEuMzc5LDAsMCwxLTEuMDY1LS4zMTksMSwxLDAsMCwxLS4xODgtLjg4NSw1LjA4Nyw1LjA4NywwLDAsMSwuOC0xLjc2OSwyNC40NjksMjQuNDY5LDAsMCwxLDQuMzM1LTQuN0E0LjI2LDQuMjYsMCwwLDAsNS4zNzEsMTEuNGExOC40MjMsMTguNDIzLDAsMCwwLTEuODI3LDIuMjMxLDIuODksMi44OSwwLDAsMC0uNDQ3LDEsLjY3Ni42NzYsMCwwLDAsLjQyLjc1OCwyLjMzMiwyLjMzMiwwLDAsMCwxLjI2Ny0uMDI5QTEyLjU3NywxMi41NzcsMCwwLDAsNi44LDE0LjYyMWE1OS41NjIsNTkuNTYyLDAsMCwwLDkuMTM5LTUuMzU5LDQxLjQ4LDQxLjQ4LDAsMCwwLDUuMjg1LTQuMjUxLDcuMDc3LDcuMDc3LDAsMCwwLDEuMzQyLTEuNzM5Ljc2Ni43NjYsMCwwLDAtLjAxOS0uODU4LDEuMjkzLDEuMjkzLDAsMCwwLS45ODktLjIxOSwxMC44NiwxMC44NiwwLDAsMC0zLjU0LDEuMDUxLDQuNzY2LDQuNzY2LDAsMCwwLS45NTktLjYyNkEyOS42ODIsMjkuNjgyLDAsMCwxLDIyLjM3OS4zODQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMCkiIGZpbGw9IiNkOTAzMDMiLz4KICAgICAgICAgIDxwYXRoIGlkPSLjg5HjgrlfNDY1MCIgZGF0YS1uYW1lPSLjg5HjgrkgNDY1MCIgZD0iTTcuMDc0LDMuOTgyYTcuMTA3LDcuMTA3LDAsMCwxLDcuNTI1LTEuNyw3LjM5MSw3LjM5MSwwLDAsMSwzLjcxOSwzLjE1MSw2NC42NzgsNjQuNjc4LDAsMCwxLTcuNTM1LDUuMzE0Yy0xLjQxNi44NzItMi44NjEsMS43LTQuMzU2LDIuNDM0QTYuODc1LDYuODc1LDAsMCwxLDUuMDU0LDguOTUxYTcuMzEzLDcuMzEzLDAsMCwxLDIuMDItNC45NjkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuODkyIDAuMzI3KSIgZmlsbD0iI2Q5MDMwMyIvPgogICAgICAgICAgPHBhdGggaWQ9IuODkeOCuV80NjUxIiBkYXRhLW5hbWU9IuODkeOCuSA0NjUxIiBkPSJNMTIuNTc5LDExLjg1YzIuMDc4LTEuMjg4LDQuMDc5LTIuNyw2LjAyMi00LjE4NGE2LjU1Myw2LjU1MywwLDAsMS0xLjAzOCwzLjgyNiw3LjI1Miw3LjI1MiwwLDAsMS00LjUzMiwzLjE3OCw3LjQzNCw3LjQzNCwwLDAsMS00LjUxMy0uNDU5YzEuMzkyLS43MTksMi43Mi0xLjU1Myw0LjA2LTIuMzYxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxLjUwMyAxLjM1MykiIGZpbGw9IiNkOTAzMDMiLz4KICAgICAgICA8L2c+CiAgICAgIDwvZz4KICAgICAgPGcgaWQ9IuOCsOODq+ODvOODl18zMzMzIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAzMzMzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDc1MS4xOTggLTEyNTY3LjQ0OCkiPgogICAgICAgIDxnIGlkPSLjgrDjg6vjg7zjg5dfMzMyOS0yIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAzMzI5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoLTIpIj4KICAgICAgICAgIDxwYXRoIGlkPSLjg5HjgrlfNDY0OS0yIiBkYXRhLW5hbWU9IuODkeOCuSA0NjQ5IiBkPSJNMjIuMzc5LjM4NEE3LjM2Myw3LjM2MywwLDAsMSwyNC45OTIuMDE1YTEuMDUxLDEuMDUxLDAsMCwxLC45NzYuNjU2QTIuMjU1LDIuMjU1LDAsMCwxLDI1LjgsMS45MTcsOS41MzcsOS41MzcsMCwwLDEsMjMuNzg0LDQuNzUsMzIuMDYsMzIuMDYsMCwwLDEsMTkuOSw4LjE1N2E3My4yMTksNzMuMjE5LDAsMCwxLTguNTY5LDUuNzMzLDQzLjAyNSw0My4wMjUsMCwwLDEtNy4yMDgsMy40MjksOS44MTUsOS44MTUsMCwwLDEtMi44NDkuNjI3LDEuMzc5LDEuMzc5LDAsMCwxLTEuMDY1LS4zMTksMSwxLDAsMCwxLS4xODgtLjg4NSw1LjA4Nyw1LjA4NywwLDAsMSwuOC0xLjc2OSwyNC40NywyNC40NywwLDAsMSw0LjMzNS00LjdBNC4yNiw0LjI2LDAsMCwwLDUuMzcxLDExLjRhMTguNDIzLDE4LjQyMywwLDAsMC0xLjgyNywyLjIzMSwyLjg5LDIuODksMCwwLDAtLjQ0NywxLC42NzYuNjc2LDAsMCwwLC40Mi43NTgsMi4zMzIsMi4zMzIsMCwwLDAsMS4yNjctLjAyOUExMi41NzcsMTIuNTc3LDAsMCwwLDYuOCwxNC42MjFhNTkuNTYyLDU5LjU2MiwwLDAsMCw5LjEzOS01LjM1OSw0MS40OCw0MS40OCwwLDAsMCw1LjI4NS00LjI1MSw3LjA3Nyw3LjA3NywwLDAsMCwxLjM0Mi0xLjczOS43NjYuNzY2LDAsMCwwLS4wMTktLjg1OCwxLjI5MywxLjI5MywwLDAsMC0uOTg5LS4yMTksMTAuODYsMTAuODYsMCwwLDAtMy41NCwxLjA1MSw0Ljc2Niw0Ljc2NiwwLDAsMC0uOTU5LS42MjZBMjkuNjgyLDI5LjY4MiwwLDAsMSwyMi4zNzkuMzg0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjZDkwMzAzIi8+CiAgICAgICAgICA8cGF0aCBpZD0i44OR44K5XzQ2NTAtMiIgZGF0YS1uYW1lPSLjg5HjgrkgNDY1MCIgZD0iTTcuMDc0LDMuOTgyYTcuMTA3LDcuMTA3LDAsMCwxLDcuNTI1LTEuNyw3LjM5MSw3LjM5MSwwLDAsMSwzLjcxOSwzLjE1MSw2NC42NzgsNjQuNjc4LDAsMCwxLTcuNTM1LDUuMzE0Yy0xLjQxNi44NzItMi44NjEsMS43LTQuMzU2LDIuNDM0QTYuODc1LDYuODc1LDAsMCwxLDUuMDU0LDguOTUxYTcuMzEzLDcuMzEzLDAsMCwxLDIuMDItNC45NjkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuODkyIDAuMzI3KSIgZmlsbD0iI2Q5MDMwMyIvPgogICAgICAgICAgPHBhdGggaWQ9IuODkeOCuV80NjUxLTIiIGRhdGEtbmFtZT0i44OR44K5IDQ2NTEiIGQ9Ik0xMi41NzksMTEuODVjMi4wNzgtMS4yODgsNC4wNzktMi43LDYuMDIyLTQuMTg0YTYuNTUzLDYuNTUzLDAsMCwxLTEuMDM4LDMuODI2LDcuMjUyLDcuMjUyLDAsMCwxLTQuNTMyLDMuMTc4LDcuNDM0LDcuNDM0LDAsMCwxLTQuNTEzLS40NTljMS4zOTItLjcxOSwyLjcyLTEuNTUzLDQuMDYtMi4zNjEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTAzIDEuMzUzKSIgZmlsbD0iI2Q5MDMwMyIvPgogICAgICAgIDwvZz4KICAgICAgPC9nPgogICAgPC9nPgogIDwvZz4KPC9zdmc+") repeat center/3.125rem auto;
}

/**
 * p-red
 */
.p-red {
  position: relative;
}
.p-red .p-red__inner {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
.p-red .p-red__archive {
  margin-top: 2.5rem;
}
.p-red .p-red__btn {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-red .p-red__inner {
    padding-top: 5.9375rem;
    padding-bottom: 6.25rem;
  }
  .p-red .p-red__archive {
    margin-top: 3.75rem;
  }
  .p-red .p-red__btn {
    margin-top: 3.75rem;
  }
}
.p-red .p-red__inner {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
.p-red .p-red__img {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 0.625rem 0.625rem 0 0;
}
.p-red .p-red__content {
  padding: 0.9375rem 0.9375rem 3.125rem;
  border-radius: 0 0 0.625rem 0.625rem;
  background: #fff;
}
.p-red .p-red__txt {
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 2.5rem;
}
.p-red .p-red__archive {
  margin-top: 2.1875rem;
}
.p-red .p-red__btn {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-red .p-red__inner {
    padding-top: 5.9375rem;
    padding-bottom: 6.25rem;
  }
  .p-red .p-red__img {
    margin-top: 3.75rem;
  }
  .p-red .p-red__content {
    margin-top: -1px;
    padding: 2.5rem 3.125rem 4.375rem;
  }
  .p-red .p-red__txt {
    letter-spacing: 0;
    text-align: center;
  }
  .p-red .p-red__archive {
    margin-top: 3.125rem;
  }
  .p-red .p-red__btn {
    margin-top: 6.25rem;
  }
}
.p-red .p-red__about__link {
  display: block;
  margin-bottom: 3.75rem;
  transition: 0.3s;
  cursor: pointer;
}
.p-red .p-red__about__link:hover {
  filter: brightness(120%);
}
@media screen and (min-width: 768px) {
  .p-red .p-red__about__link {
    display: block;
    width: 300px;
    margin: 0 auto 5rem;
  }
}
.p-red .p-red__era {
  border-bottom: 1px solid #D92418;
  padding-bottom: 1.875rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-red .p-red__era {
    padding-bottom: 3.125rem;
    margin-bottom: 3.125rem;
  }
}
.p-red .p-red__era:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.p-red .p-red__era__ttl {
  color: #C80000;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.875rem;
}
.p-red .p-red__era__lead {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  word-wrap: break-word;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .p-red .p-red__era__lead {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-red .p-red__era__list {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-red .p-red__era__item {
  display: block;
  margin-bottom: 0.625rem;
  transition: 0.3s;
}
.p-red .p-red__era__item:hover {
  filter: brightness(105%) drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}
@media screen and (min-width: 768px) {
  .p-red .p-red__era__item {
    width: 288px;
    margin-right: 18px;
    margin-bottom: 1.125rem;
  }
  .p-red .p-red__era__item:nth-child(3n) {
    margin-right: 0;
  }
}
.p-red .p-red__era__item:last-child {
  margin-bottom: 0;
}
.p-red .p-red__inventory {
  margin: 1.25rem auto 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-red .p-red__inventory {
    margin: 2.5rem auto 0;
  }
}
.p-red .p-red__inventory__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 10rem;
  padding: 0.5625rem;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  margin-right: 0.625rem;
  margin-bottom: 0.625rem;
  transition: 0.3s;
}
.p-red .p-red__inventory__item:nth-child(2n) {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-red .p-red__inventory__item {
    width: 14.6875rem;
    margin-right: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .p-red .p-red__inventory__item:nth-child(2n) {
    margin-right: 1.25rem;
  }
  .p-red .p-red__inventory__item:nth-child(4n) {
    margin-right: 0;
  }
}
.p-red .p-red__inventory__item:hover {
  background-color: #ffcece;
}
.p-red .p-red__inventory__item--thumb {
  display: block;
  width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-red .p-red__inventory__item--thumb {
    width: 4.375rem;
  }
}
.p-red .p-red__inventory__item--name {
  display: block;
  width: 4.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .p-red .p-red__inventory__item--name {
    width: 8.4375rem;
  }
}
.p-red .history__slide {
  width: 100%;
  margin-bottom: 3.75rem !important;
}
.p-red .history__slide__item {
  width: 6.875rem;
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-red .history__slide__item {
    width: 7.5rem;
    margin-right: 1.5rem;
  }
}
.p-red .hitory__chara__name {
  display: block;
  font-size: 0.6875rem;
  margin-top: 0.9375rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-red .hitory__chara__name {
    font-size: 0.75rem;
    margin-top: 0.9375rem;
  }
}
.p-red .hitory__chara__desc {
  display: block;
  font-size: 0.6875rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-red .hitory__chara__desc {
    font-size: 0.75rem;
  }
}
.p-red .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-red .modal-content {
  position: relative;
  background: white;
  text-align: center;
  height: 75vh;
  width: 100vw;
  overflow-y: auto;
  z-index: 1010;
}
@media screen and (min-width: 768px) {
  .p-red .modal-content {
    height: 85vh;
    width: 50vw;
  }
}
.p-red .close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
  width: 45px;
  height: 45px;
  z-index: 1020;
}
@media screen and (min-width: 768px) {
  .p-red .close {
    width: 45px;
    height: 45px;
  }
}

#red {
  /*----------------------------------------
  ** super-sentai-friends.com
  ** red
  ----------------------------------------*/
  /* ------------------------------------ */
  /*----------------------------------------
  ** articles items list
  ----------------------------------------*/
  /*----------------------------------------
  ** articles detail
  ----------------------------------------*/
  /*----------------------------------------
  ** __bt
  ----------------------------------------*/
  /*-----------------------------------------
  ** img size
  -----------------------------------------*/
  /*yotube*/
  /* wallpaper download */
  /* 2020.7.31 */
  /* ------------------------- */
  /* ------------------------- */
  /* .-hiline::before {
    display: inline-block;
    content: "";
    width: 100%;
    height: 0.5em;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ffff00;
    z-index: -1;
  } */
  /* ------------------------- */
  /* ------------------------- */
  /* ------------------------- */
  /* ------------------------------------ */
  /* zenkaiger topics */
  /* _current-gear-link */
  /* -external-link */
  /* zenkai */
  /* rerated articles */
  /* .red-matrix */
  /* new head ttl 2023.7.4 */
  /* new text box 2023.7.3 */
  /* メッセージ */
  /* 放送期間 */
}
#red .__topics-wrap {
  margin: 70px auto;
  position: relative;
}
#red .__topics-wrap > *:not(.__elm-red) {
  position: relative;
  /* z-index: 2; */
}
#red .__page-ttl {
  text-align: center;
  margin: 0 0 85px 0;
}
#red .__page-ttl img {
  max-width: inherit;
  width: auto;
  height: 50px;
}
@media screen and (max-width: 768px) {
  #red .__topics-wrap {
    margin: 35px auto;
  }
  #red .__page-ttl {
    text-align: center;
    margin: 0 0 42px 0;
  }
  #red .__page-ttl img {
    max-width: inherit;
    width: auto;
    height: 33px;
  }
}
#red .__elm-red {
  width: 20%;
  position: absolute;
  top: -35px;
  /* right: -90px; */
  left: -30px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #red .__elm-red {
    width: 22%;
    position: absolute;
    top: -20px;
    /* right: inherit; */
    /* left: -10px; */
    left: auto;
    right: 10px;
  }
}
#red .__red-article-item {
  width: 50%;
  padding: 0 10px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  #red .__red-article-item {
    width: 100%;
    padding: 0;
    margin: 0 0 15px 0;
  }
}
#red .__red-article-item > * {
  display: flex;
  border: 4px solid #000;
  border-radius: 10px;
  background: #000;
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
}
#red .__red-article-item > *:hover {
  background: #fff;
}
#red .__red-article-item-pic {
  width: 50%;
}
#red .__red-article-item-txt {
  width: 50%;
  padding: 20px;
  /* display: flex;
  flex-wrap: wrap;
  align-items: flex-start; */
}
@media screen and (max-width: 768px) {
  #red .__red-article-item-txt {
    padding: 5px 10px 0;
  }
}
#red .__red-article-txt-date {
  display: block;
  width: 100%;
  color: #d90303;
  margin: 0 0 10px 0;
  line-height: 1;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
#red .__red-article-txt-ttl {
  display: block;
  width: 100%;
  color: #fff;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #red .__red-article-txt-date {
    font-size: 0.8rem;
  }
  #red .__red-article-txt-ttl {
    display: block;
    width: 100%;
    color: #fff;
    margin: 0;
    font-size: 0.93rem;
  }
}
#red a:hover .__red-article-txt-date {
  color: #d90303;
}
#red a:hover .__red-article-txt-ttl {
  color: #000;
}
#red .__article-head {
  background: #000;
  margin: 0 0 0 0;
  padding: 35px 35px 35px 35px;
  border-radius: 10px 10px 0 0;
}
#red .__artcile-ttl {
  font-size: 1.86rem;
  line-height: 1.5;
  margin: 0 0 7px 0;
  color: #fff;
}
#red .__article-date {
  font-size: 1.33rem;
  color: #d90303;
}
#red .__article-body {
  background: #fff;
  color: #000;
  padding: 80px 80px 80px 80px;
  border-radius: 0 0 10px 10px;
  font-size: 1.06rem;
  line-height: 2;
}
#red .__article-body p {
  margin: 0 0 50px 0;
}
#red .__article-body p:last-of-type {
  margin-bottom: 0;
}
#red .__article-body a {
  color: #d90303;
  text-decoration: underline;
}
#red .__article-body a:hover {
  color: #d90303;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #red .__article-head {
    background: #000;
    margin: 0 0 0 0;
    padding: 15px 15px 15px 15px;
    border-radius: 10px 10px 0 0;
  }
  #red .__artcile-ttl {
    font-size: 1.26rem;
    line-height: 1.5;
    margin: 0 0 7px 0;
    color: #fff;
  }
  #red .__article-date {
    font-size: 1rem;
    color: #d90303;
  }
  #red .__article-body {
    background: #fff;
    color: #000;
    padding: 15px 15px 15px 15px;
    border-radius: 0 0 10px 10px;
    font-size: 1rem;
    line-height: 2;
  }
  #red .__article-body p {
    margin: 0 0 30px 0;
  }
}
#red .__bt {
  display: block;
  width: 300px;
  margin: 0 auto 0 auto;
  padding: 15px 10px 15px 10px;
  border: 2px solid #fff;
  background: #000;
  color: #fff;
  border-radius: 60px;
  text-align: center;
  text-decoration: none;
  font-size: 1.06rem;
  font-weight: 700;
  transition: 0.3s;
}
#red .__bt:hover {
  width: 340px;
}
#red .__bt img {
  width: auto;
  height: 18px;
}
@media screen and (max-width: 768px) {
  #red .__bt {
    display: block;
    width: 240px;
    border-radius: 60px;
    transition: 0.3s;
    font-size: 0.93rem;
  }
  #red .__bt:hover {
    width: 260px;
  }
  #red .__bt img {
    width: auto;
    height: 16px;
  }
}
#red .__size-L {
  max-width: 100%;
}
#red .__size-M {
  max-width: 80%;
}
#red .__size-S {
  max-width: 60%;
}
#red .__size-XS {
  max-width: 30%;
}
#red .__size-MS {
  width: 40%;
}
#red .__2x {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  letter-spacing: -0.4em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#red .__2x li {
  width: 50%;
  display: inline-block;
  letter-spacing: normal;
  margin-left: 0;
  margin-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: top;
}
#red .__2x li img {
  max-width: 100% !important;
  height: auto;
}
#red .__2x li span {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
}
#red .__3x {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  letter-spacing: -0.4em;
}
#red .__3x li {
  width: 33.3333333333%;
  display: inline-block;
  letter-spacing: normal;
  margin-left: 0;
  margin-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: top;
}
#red .__3x li img {
  max-width: 100% !important;
  height: auto;
}
#red .__3x li span {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 5px;
}
#red .__4x {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 30px;
  letter-spacing: -0.4em;
}
#red .__4x li {
  width: 25%;
  display: inline-block;
  /*float: left;*/
  letter-spacing: normal;
  margin-left: 0;
  margin-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: top;
}
#red .__4x li img {
  max-width: 250px !important;
  width: auto;
  vertical-align: top;
  margin-bottom: 7px;
}
#red .__4x.__bd li img {
  max-width: 100% !important;
  height: auto;
  vertical-align: top;
  margin-bottom: 7px;
}
#red .__4x li span {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  #red .__size-L {
    max-width: 100%;
  }
  #red .__size-M {
    max-width: 100%;
  }
  #red .__size-S {
    max-width: 80%;
    margin: 0 auto;
  }
  #red .__size-XS {
    max-width: 70%;
    margin: 0 auto;
  }
  #red .__size-MS {
    width: 80%;
  }
  #red .__2x {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    letter-spacing: -0.4em;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  #red .__2x li {
    width: 100%;
    display: inline-block;
    letter-spacing: normal;
    margin-left: 0;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    vertical-align: top;
  }
  #red .__2x li img {
    max-width: 100% !important;
    height: auto;
  }
  #red .__3x {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    letter-spacing: -0.4em;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  #red .__3x li {
    width: 100%;
    display: inline-block;
    letter-spacing: normal;
    margin-left: 0;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    vertical-align: top;
  }
  #red .__3x li img {
    max-width: 100% !important;
    height: auto;
  }
  #red .__4x {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 10px;
    letter-spacing: -0.4em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #red .__4x li {
    width: 50%;
    display: inline-block;
    /*float: left;*/
    letter-spacing: normal;
    margin-left: 0;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: top;
  }
  #red .__4x li img {
    max-width: 100% !important;
    height: auto;
    vertical-align: top;
    margin-bottom: 7px;
  }
  #red .__4x li span {
    display: block;
    font-size: 10px;
  }
}
#red .__movie-wrap {
  margin: 0 auto 25px;
  width: 100%;
  max-width: 720px;
  position: relative;
  /*top: 50%;
  left: 0;
  transform: translateY(-50%);*/
}
#red .__movie-wrap-inner {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
#red .__movie-wrap-inner iframe {
  height: 100% !important;
  left: 0;
  position: absolute;
  top: 0;
  width: 100% !important;
}
#red .__wp-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 100px -30px 0 -30px;
}
#red .__wp-item {
  width: 50%;
  padding: 0 30px;
  margin: 0 0 60px 0;
}
#red .__wp-item-ttl {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.2;
}
#red .__wp-item-thumb {
  margin: 0 0 15px 0;
}
#red .__wp-item-btn {
  width: 70%;
  margin: 0 auto;
}
#red .__wp-item-btn a img {
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
#red .__wp-item-btn a:hover img {
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.45));
  -webkit-filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.45));
}
@media screen and (max-width: 768px) {
  #red .__wp-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0 0 0;
  }
  #red .__wp-item {
    width: 100%;
    padding: 0;
    margin: 0 0 30px 0;
  }
  #red .__wp-item-ttl {
    font-size: 1rem;
  }
  #red .__wp-item-thumb {
    margin: 0 0 15px 0;
  }
  #red .__wp-item-btn {
    width: 70%;
    margin: 0 auto;
  }
  #red .__wp-item.-col-2 {
    width: 50%;
    padding: 0 10px;
    margin: 0 0 30px 0;
  }
}
#red ._topics-pager {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
#red ._topics-pager.-index {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto 50px;
}
#red ._topics-pager > * {
  font-size: 0.93rem;
  padding: 0.4rem 1rem;
  margin: 0 10px 6px 10px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
#red ._topics-pager > a {
  margin-bottom: 0.8rem;
}
#red ._topics-pager > a,
#red ._topics-pager > a:visited,
#red ._topics-pager > a:active {
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 2px solid #000;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
#red ._topics-pager > a:hover {
  background: #d90303;
  color: #fff;
  text-decoration: none;
}
#red ._topics-pager > span,
#red ._topics-pager > a.-dis {
  background: #d90303;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #red ._topics-pager > a {
    margin-bottom: 0.5rem;
  }
  #red ._topics-pager > * {
    font-size: 0.93rem;
    padding: 0.3rem 0.75rem;
    margin: 0 3px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
  }
}
#red ._topics-pager .-dis {
  background: #d90303 !important;
  color: #fff;
  text-decoration: none;
  pointer-events: none;
}
#red ._topics-next {
  background: #fff2e6;
  color: #4d4d4d;
  padding: 1rem 1rem 1rem 11rem;
  margin-top: 50px;
  font-weight: 700;
  position: relative;
}
#red ._topics-next::before {
  content: ">> 次のページ";
  font-size: 0.93rem;
  font-weight: normal;
  text-align: left;
  width: 9em;
  height: auto;
  position: absolute;
  left: 15px;
  bottom: 50%;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
}
#red ._topics-next a,
#red ._topics-next a:visited,
#red ._topics-next a:active {
  color: #4d4d4d;
  text-decoration: none;
}
#red ._topics-next a:hover {
  color: #4d4d4d;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #red ._topics-next {
    padding: 3rem 1em 1em;
    margin-top: 50px;
    text-align: center;
  }
  #red ._topics-next::before {
    font-weight: normal;
    text-align: center;
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 10px;
    bottom: inherit;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
}
#red .-orange {
  color: #ff6600;
}
#red .-red {
  color: #ff0000;
}
#red .-hiline {
  display: inline;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #ffff00 51%, #ffff00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffff00",GradientType=0 );
}
#red ._highlight-ttl {
  margin-bottom: 1rem !important;
}
#red ._highlight-list {
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
}
#red ._highlight-item {
  text-indent: -1em;
  padding-left: 1em;
}
#red ._highlight-item::before {
  content: "●";
  color: #ff6600;
}
@media screen and (max-width: 768px) {
  #red ._highlight-list {
    margin: 0 0 30px;
  }
}
#red ._topics-sp-ttl {
  border-left: 5px solid #ff6666;
  background: #fff2e6;
  font-size: 1.46rem;
  font-weight: 700;
  padding: 10px 15px;
  margin-bottom: 1rem !important;
}
#red ._topics-slide {
  margin-bottom: 50px !important;
}
#red ._topics-slide figure {
  margin: 0;
}
#red ._topics-slide figcaption {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  #red ._topics-sp-ttl {
    font-size: 1.26rem;
    padding: 5px 7px;
  }
}
#red ._pic-set {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px 50px;
}
#red ._pic-item {
  width: 33.3333333333%;
  padding: 0 25px;
}
#red .-mb ._pic-item {
  margin: 0 0 50px 0;
}
#red ._pic-item a {
  display: block;
  position: relative;
}
#red ._pic-item a::after {
  content: "";
  width: 25px;
  height: 25px;
  background: #000 url(../img/topics/ic-zoom.png) center center no-repeat;
  background-size: 10px 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
#red ._pic-item a:hover::after {
  background: #000 url(../img/topics/ic-zoom.png) center center no-repeat;
  background-size: 15px 15px;
}
@media screen and (max-width: 768px) {
  #red ._pic-set {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px 50px;
  }
  #red ._pic-item {
    width: 100%;
    padding: 0 25px;
    margin-bottom: 25px;
  }
  #red .-mb ._pic-item {
    margin: 0 0 20px 0;
  }
}
#red ._show-arichives {
  background: #f1f1f1;
  padding: 30px;
  margin: 0 0 30px 0;
  display: flex;
  flex-wrap: wrap;
}
#red ._show-pic {
  max-width: 200px;
  margin: 0 30px 0 0;
}
#red ._show-pic figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
}
#red ._show-detail {
  width: calc(100% - 230px);
  color: #595959;
}
#red ._show-detail-ttl {
  color: #ff6600;
  font-weight: 700;
  font-size: 1.33rem;
  margin: 0 0 30px 0;
}
#red ._show-detail-ep {
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
#red ._show-detail-ep li {
  text-indent: -4em;
  padding-left: 4em;
  border-bottom: 1px solid #595959;
}
#red ._show-detail-ep li:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  #red ._show-pic {
    max-width: 80%;
    margin: 0 auto 30px;
  }
  #red ._show-detail {
    width: 100%;
  }
  #red ._show-detail-ttl {
    font-size: 1.13rem;
    margin: 0 0 30px 0;
  }
}
#red ._topics-notes {
  border: 1px solid #ff0000;
  padding: 15px;
  margin: 0 0 50px 0;
  color: #ff0000;
  text-align: center;
  font-size: 0.93rem;
}
#red ._topics-notes a,
#red ._topics-notes a:visited,
#red ._topics-notes a:active {
  color: #213488;
}
#red ._topics-notes a:hover {
  color: #213488;
  text-decoration: none;
}
#red ._topics-ticket {
  border: 5px solid #ffa200;
  padding: 15px;
  margin: 0 0 50px 0;
  font-weight: 700;
}
#red ._topics-ticket a {
  display: block;
  width: 500px;
  margin: 0 auto;
  text-indent: -1.5em;
  padding-left: 1.5em;
  color: #ff6600;
}
@media screen and (max-width: 768px) {
  #red ._topics-ticket a {
    width: 85%;
  }
}
#red .-iframe {
  padding: 15px;
  width: 100%;
  height: 250px;
  overflow-y: auto;
  border: 1px solid #ccc;
}
#red .-bt-cp-post {
  display: block;
  width: 275px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  #red .-bt-cp-post {
    width: 100%;
    margin: 15px auto 0;
  }
}
#red a._current-gear-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 0 0 0 28px;
  background-image: url(../img/zenkaiger/ic-zen-link.png);
  background-position: left 9px;
  background-repeat: no-repeat;
  background-size: auto 16px;
  color: #df040b;
  text-decoration: none;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #red a._current-gear-link {
    font-size: 16px;
    padding: 0 0 0 25px;
    background-position: left 3px;
    background-size: auto 20px;
  }
}
@media screen and (min-width: 769px) {
  #red a._current-gear-link:hover {
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  #red a._current-gear-link:active {
    color: #000;
  }
}
#red a.-external-link {
  display: inline-block;
  font-size: 16px;
  /* font-weight: 700; */
  padding: 0 20px 0 0;
  margin: 0 5px 0 0;
  background-image: url(../img/topics/ic-link-external.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 15px;
  color: #df040b;
  text-decoration: none;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #red a.-external-link {
    font-size: 16px;
    padding: 0 17px 0 0;
    background-position: right center;
    background-size: auto 13px;
  }
}
@media screen and (min-width: 769px) {
  #red a.-external-link:hover {
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  #red a.-external-link:active {
    color: #000;
  }
}
#red .zenkai-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
#red .zenkai-item {
  width: 50%;
  padding: 0 10px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  #red .zenkai-item {
    width: 100%;
    padding: 0;
    margin: 0 0 10px 0;
  }
  #red .zenkai-item:last-of-type {
    margin-bottom: 0;
  }
}
#red .zenkai-item-link {
  display: flex;
  align-items: center;
  border: 2px solid #d6d6d6;
  padding: 15px;
  color: #000 !important;
  text-decoration: none !important;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #red .zenkai-item-link {
    padding: 7px;
  }
}
@media screen and (min-width: 769px) {
  #red .zenkai-item-link:hover {
    background-color: #fde5e5;
  }
}
@media screen and (max-width: 768px) {
  #red .zenkai-item-link:active {
    background-color: #fde5e5;
  }
}
#red .zenkai-thumb {
  display: block;
  width: 80px;
}
@media screen and (max-width: 768px) {
  #red .zenkai-thumb {
    width: 60px;
  }
}
#red .zenkai-thumb img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
#red .zenkai-ttl {
  display: block;
  width: calc(100% - 80px);
  padding-left: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #red .zenkai-ttl {
    width: calc(100% - 60px);
    padding-left: 10px;
    font-size: 14px;
  }
}
#red .related-ttl {
  font-size: 24px;
  font-weight: 800;
  margin-top: 60px;
}
#red .rerated-articles {
  display: flex;
  flex-wrap: wrap;
  margin: 25px -10px 0;
}
@media screen and (max-width: 768px) {
  #red .related-ttl {
    font-size: 20px;
    margin-top: 30px;
  }
  #red .rerated-articles {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
}
#red .article-item {
  width: 50%;
  padding: 0 10px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  #red .article-item {
    width: 100%;
    padding: 0 5px;
    margin: 0 0 10px 0;
  }
  #red .article-item:last-of-type {
    margin-bottom: 0;
  }
}
#red .article-item-link {
  display: flex;
  border: 2px solid #000;
  background-color: #000;
  text-decoration: none !important;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #red .article-item-link:hover {
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  #red .article-item-link:active {
    background-color: #fff;
  }
}
#red .article-thumb {
  display: block;
  width: 180px;
}
@media screen and (max-width: 768px) {
  #red .article-thumb {
    width: 140px;
  }
}
#red .article-text {
  display: block;
  width: calc(100% - 180px);
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #red .article-text {
    width: calc(100% - 140px);
    padding: 8px;
  }
}
#red .article-date {
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #red .article-date {
    font-size: 12px;
  }
}
#red .article-ttl {
  display: block;
  line-height: 1.6;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: -webkit-box;
  box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #red .article-item-link:hover .article-ttl {
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  #red .article-item-link:active .article-ttl {
    color: #000;
  }
}
#red .red-matrix {
  padding: 25px 0 0 0;
  margin: 25px 0 0 0;
  border-top: 1px solid #dadada;
}
#red .matrix-ttl {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 0 0;
}
@media screen and (max-width: 768px) {
  #red .matrix-ttl {
    font-size: 16px;
  }
}
#red .matrix-list {
  border-top: 1px dotted #acacac;
  margin: 20px 0 0 0;
}
#red .matrix-item {
  display: flex;
  margin: 0;
  border-bottom: 1px dotted #acacac;
}
@media screen and (max-width: 768px) {
  #red .matrix-item {
    flex-wrap: wrap;
  }
}
#red .matrix-item-name {
  width: 20%;
  padding: 7px;
  margin: 0;
  background-color: #ececec;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #red .matrix-item-name {
    width: 100%;
  }
}
#red .matrix-item-info {
  width: 80%;
  padding: 7px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #red .matrix-item-info {
    width: 100%;
  }
}
#red .-md {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #red .-md {
    font-size: 14px;
  }
}
#red .-sm {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #red .-sm {
    font-size: 12px;
  }
}
#red .matrix-list-notes {
  color: #d90303;
  margin: 25px 0 0 0;
}
#red .notes-ttl {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 768px) {
  #red .notes-ttl {
    font-size: 12px;
  }
}
#red .notes-txt {
  font-size: 14px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #red .notes-txt {
    font-size: 12px;
  }
}
#red .h-bp-ttl {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 15px;
  margin-bottom: 20px;
  background: #2a68e5;
  background: linear-gradient(135deg, #2a68e5 0%, #a437e0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#2a68e5", endColorstr="#a437e0",GradientType=1 );
}
@media screen and (max-width: 768px) {
  #red .h-bp-ttl {
    font-size: 16px;
    padding: 10px 13px;
  }
}
#red .b-bp-box {
  position: relative;
  display: inline-block;
  padding: 15px 18px;
  width: 100%;
  margin-bottom: 1em;
  background-color: #ebebeb;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #red .b-bp-box {
    padding: 10px 13px;
    font-size: 14px;
  }
}
#red .b-bp-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #2acce5 0%, #2f2491 55%, #2a68e5 100%) border-box border-box;
  -webkit-mask: linear-gradient(#ebebeb 0 0) padding-box, linear-gradient(#ebebeb 0 0) border-box;
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#ebebeb 0 0) padding-box, linear-gradient(#ebebeb 0 0) border-box;
          mask: linear-gradient(#ebebeb 0 0) padding-box, linear-gradient(#ebebeb 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
#red .__article-ttl-detail {
  font-size: 1.33rem;
  line-height: 1;
  margin: 0 0 0 0;
  color: #fff;
  text-align: left;
}
#red .__message-detail {
  /* display: flex; */
  margin: 0 0 40px 0;
  padding: 0 0 40px 0;
  border-bottom: 1px dashed #666;
}
#red .__message-detail:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  /* padding-bottom: 0; */
}
@media screen and (max-width: 768px) {
  #red .__article-ttl-detail {
    font-size: 1.06rem;
  }
}
#red .__message-detail-head {
  display: flex;
  align-items: center;
}
#red .__message-detail-pic {
  width: 150px;
}
#red .__message-detail-pic img {
  border-radius: 50%;
}
#red .__message-detail-txt {
  width: calc(100% - 150px);
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  #red .__message-detail-pic {
    width: 80px;
    margin: 0 auto 20px;
  }
  #red .__message-detail-txt {
    width: calc(100% - 80px);
    padding-left: 15px;
  }
}
#red .__message-detail-role {
  font-size: 1.33rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}
#red .__message-detail-name {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  margin: 0 0 20px 0;
}
#red .__message-detail-comment {
  font-size: 1.06rem;
  line-height: 2;
  width: calc(100% - 180px);
  margin: 0 0 0 auto;
}
#red .__message-detail-comment p {
  margin: 0 0 0 0;
}
#red .is-indent {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  #red .__message-detail-role {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  #red .__message-detail-name {
    font-size: 1.33rem;
    line-height: 1;
    font-weight: 900;
    margin: 0 0 20px 0;
  }
  #red .__message-detail-comment {
    /* display: none; */
    font-size: 1rem;
    line-height: 2;
    width: 100%;
    margin: 0 0 0 0;
  }
}
#red .topics__broadcastdate {
  font-weight: 700;
  text-align: center;
  background-color: #dcdcdc;
  padding: 20px;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  #red .topics__broadcastdate {
    padding: 12px;
    border-radius: 80px;
  }
}
#red .__pic-color-red {
  border: 3px solid #ff0000;
}
#red .__pic-color-yellow {
  border: 3px solid #ffa500;
}
#red .__pic-color-green {
  border: 3px solid #00ba31;
}
#red .__pic-color-blue {
  border: 3px solid #0068e5;
}
#red .__pic-color-pink {
  border: 3px solid #ff68c6;
}
#red .__pic-color-blank {
  border: 3px solid #000;
}
#red .__pic-color-gold {
  border: 3px solid #c4a03f;
}
#red .__pic-color-gray,
#red .__pic-color-silver {
  border: 3px solid #95a0b6;
}
#red .__pic-color-darkpurple {
  border: 3px solid #4322a2;
}
#red .__txt-color-red {
  color: #ff0000;
}
#red .__txt-color-yellow {
  color: #ffa500;
}
#red .__txt-color-green {
  color: #00ba31;
}
#red .__txt-color-blue {
  color: #0068e5;
  /* color: #6699cc; */
}
#red .__txt-color-pink {
  color: #ff68c6;
}
#red .__txt-color-mab {
  color: #27abbd;
}
#red .__txt-color-black {
  color: #000;
}
#red .__txt-color-gray,
#red .__txt-color-silver {
  color: #95a0b6;
}
#red .__txt-color-mizu {
  color: #75a6cd;
}
#red .__txt-color-kegare {
  color: #813a4c;
}
#red .__txt-color-gold {
  color: #c4a03f;
}
#red .__txt-color-doggy {
  color: #3399cc;
}
#red .__txt-color-darkpurple {
  color: #4322a2;
}
#red .__txt-color-navy {
  color: #003399;
}
#red .__txt-color-5colors {
  background: -webkit-linear-gradient(0deg, #e71603, #f0b62c, #ee82a0, #257fce);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  #red .__txt-color-5colors {
    display: block;
  }
}
#red .__txt-color-blue_lt {
  color: #6699cc;
}
#red .__txt-color-orange {
  color: #ffa500;
}
#red .__txt-color-sarublue {
  color: #0068e5;
}
#red .__txt-color-gray {
  color: #999999;
}
#red .__txt-color-purple {
  color: #4322a2;
}

/*----------------------------------------
** super-sentai-friends.com
** contact
----------------------------------------*/
#contact {
  background: #fff url(../images/contact/contact-bg.png) 0 0;
  background-size: 44px auto;
  /* ------------------------------------ */
  /* main {
    padding-top: 78px !important;
  }
  @media screen and (max-width: 768px) {
    main {
      padding-top: 63px !important;
    }
  } */
  /*----------------------------------------
  ** __contact
  ----------------------------------------*/
}
@media screen and (max-width: 768px) {
  #contact {
    background: #fff url(../images/contact/contact-bg.png) 0 0;
    background-size: 40px auto;
  }
}
#contact .__contact {
  margin: 100px 0 100px 0;
}
#contact .__contact-inner {
  width: 1000px;
  margin: 0 auto 0 auto;
  padding: 70px 90px 70px 90px;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #contact .__contact {
    margin: 50px 0 50px 0;
  }
  #contact .__contact-inner {
    width: 90%;
    margin: 0 auto 0 auto;
    padding: 15px 25px 15px 25px;
    background: #fff;
    border-radius: 10px;
  }
}
#contact .__contact-h-ttl {
  font-size: 1.33rem;
  border-left: 6px solid #fb9850;
  padding: 0 1em 0 1em;
  margin: 0 0 60px 0;
  position: relative;
}
#contact .__contact-h-ttl::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #666;
  position: absolute;
  left: 0;
  bottom: -15px;
}
@media screen and (max-width: 768px) {
  #contact .__contact-h-ttl {
    font-size: 1.13rem;
    border-left: 6px solid #fb9850;
    padding: 0 1em 0 1em;
    margin: 0 0 30px 0;
    position: relative;
  }
}
#contact .__contact-tx-lead {
  font-size: 1rem;
  line-height: 2;
  text-align: justify;
  margin: 0 0 50px 0;
}
#contact .__contact-dl {
  margin: 0 0 40px 0;
}
#contact .__contact-h-sub {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  text-indent: -1em;
  padding-left: 1em;
}
#contact .__contact-h-sub::before {
  content: "▶︎";
  color: #fb9850;
}
#contact .__contact-tx {
  padding-left: 1em;
  margin: 0 0 0 0;
  line-height: 2;
}
#contact .__contact-tx p {
  margin: 0 0 0 0;
}
#contact .__contact-a-link {
  color: #fb9850;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
}
#contact .__contact-a-link:hover {
  text-decoration: underline;
}
#contact .__contact-a-link::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/contact/contact-ic-link.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  right: -25px;
  bottom: 50%;
  transform: translateY(50%);
}
@media screen and (max-width: 768px) {
  #contact .__contact-a-link::after {
    right: -25px;
    bottom: 0px;
    transform: none;
  }
}
#contact .__cotact-environment {
  background: #f2f2f2;
  padding: 35px 35px 35px 35px;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  #contact .__cotact-environment {
    background: #f2f2f2;
    padding: 15px 20px 15px 20px;
    margin: 0 0 50px 0;
  }
}
#contact .__environment-dl {
  margin: 0 0 30px 0;
}
#contact .__environment-dl:last-of-type {
  margin: 0 0 0 0;
}
#contact .__environment-h-sub {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 15px 0;
}
#contact .__environment-tx {
  padding-left: 1em;
  margin: 0 0 0 0;
  line-height: 2;
}
#contact .__environment-tx p {
  margin: 0 0 0 0;
}

/**
 * 背景色
 */
#goods {
  position: relative;
  background: #ffe362;
}
#goods::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2249.004%22%20height%3D%2240.226%22%20viewBox%3D%220%200%2049.004%2040.226%22%3E%20%3Cpath%20id%3D%22%E4%BA%A4%E5%B7%AE_1%22%20data-name%3D%22%E4%BA%A4%E5%B7%AE%201%22%20d%3D%22M7116.813%2C12767.681a.458.458%2C0%2C0%2C1-.458-.455v-3.771a.452.452%2C0%2C0%2C1%2C.458-.451h4.516a.448.448%2C0%2C0%2C1%2C.451.451v3.771a.454.454%2C0%2C0%2C1-.451.455Zm23.877-2.341a.462.462%2C0%2C0%2C1-.458-.422l-.55-8.066a.453.453%2C0%2C0%2C1%2C.451-.48h2.792a.453.453%2C0%2C0%2C1%2C.448.378l1.368%2C8.06a.455.455%2C0%2C0%2C1-.451.531Zm-6.882%2C0a.45.45%2C0%2C0%2C1-.444-.531l1.372-8.06a.45.45%2C0%2C0%2C1%2C.447-.378h2.792a.455.455%2C0%2C0%2C1%2C.451.48l-.558%2C8.066a.453.453%2C0%2C0%2C1-.451.422Zm11.174-8.022a.458.458%2C0%2C0%2C1-.455-.418l-.671-7.957a.461.461%2C0%2C0%2C1%2C.462-.487h1.295a.462.462%2C0%2C0%2C1%2C.448.348l1.915%2C7.953a.455.455%2C0%2C0%2C1-.444.562Zm-14.53%2C0a.451.451%2C0%2C0%2C1-.437-.562l1.911-7.953a.455.455%2C0%2C0%2C1%2C.444-.348h1.3a.449.449%2C0%2C0%2C1%2C.451.487l-.664%2C7.957a.456.456%2C0%2C0%2C1-.455.418Zm4.772-1.537a.454.454%2C0%2C0%2C1-.451-.458v-6.416a.45.45%2C0%2C0%2C1%2C.451-.451h7.539a.451.451%2C0%2C0%2C1%2C.455.451v6.416a.455.455%2C0%2C0%2C1-.455.458Zm1.588-8.1a.452.452%2C0%2C0%2C1-.455-.451v-3.771a.451.451%2C0%2C0%2C1%2C.455-.451h4.516a.448.448%2C0%2C0%2C1%2C.451.451v3.771a.449.449%2C0%2C0%2C1-.451.451Zm-16.123-2.34a.466.466%2C0%2C0%2C1-.462-.422l-.546-8.063a.447.447%2C0%2C0%2C1%2C.451-.48h2.792a.449.449%2C0%2C0%2C1%2C.448.378l1.372%2C8.06a.457.457%2C0%2C0%2C1-.448.528Zm-6.886%2C0a.448.448%2C0%2C0%2C1-.44-.528l1.368-8.06a.452.452%2C0%2C0%2C1%2C.448-.378h2.792a.449.449%2C0%2C0%2C1%2C.451.48l-.55%2C8.063a.456.456%2C0%2C0%2C1-.451.422Zm11.174-8.016a.464.464%2C0%2C0%2C1-.452-.422l-.671-7.957a.459.459%2C0%2C0%2C1%2C.458-.487h1.306a.458.458%2C0%2C0%2C1%2C.444.345l1.912%2C7.956a.459.459%2C0%2C0%2C1-.444.565Zm-14.527%2C0a.454.454%2C0%2C0%2C1-.437-.565l1.911-7.956a.455.455%2C0%2C0%2C1%2C.444-.345h1.3a.443.443%2C0%2C0%2C1%2C.451.487l-.664%2C7.957a.463.463%2C0%2C0%2C1-.451.422Zm47.549-.5v.084A.482.482%2C0%2C0%2C1%2C7158%2C12736.822Zm-42.777-1.046a.447.447%2C0%2C0%2C1-.451-.454v-6.416a.448.448%2C0%2C0%2C1%2C.451-.451h7.542a.45.45%2C0%2C0%2C1%2C.451.451v6.416a.449.449%2C0%2C0%2C1-.451.454Z%22%20transform%3D%22translate(-7109.498%20-12727.955)%22%20fill%3D%22%23ffd120%22%20stroke%3D%22rgba(0%2C0%2C0%2C0)%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E") repeat center/3.125rem auto;
}

/**
 * p-goods
 */
.p-goods .p-goods__inner {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
.p-goods .p-goods__archive,
.p-goods .p-goods__content {
  margin-top: 2.5rem;
}
.p-goods .p-goods__btn {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-goods .p-goods__inner {
    max-width: 1000px;
    padding-top: 5.9375rem;
    padding-bottom: 6.25rem;
  }
  .p-goods .p-goods__archive,
  .p-goods .p-goods__content {
    margin-top: 3.75rem;
  }
  .p-goods .p-goods__btn {
    margin-top: 3.75rem;
  }
}

#goods .goods-wrap {
  position: relative;
  margin: 3.75rem auto 0 auto;
}
#goods .goods-wrap .goods-page-ttl {
  margin: 0 0 4.8125rem 0;
  text-align: center;
}
#goods .goods-container {
  margin: 0 0 3.125rem 0;
  padding: 0 0 3.4375rem 0;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
}
#goods .goods-category {
  margin-top: 4.875rem;
  padding: 0 3.125rem;
}
@media screen and (max-width: 768px) {
  #goods .goods-category {
    margin-top: 0.625rem;
    padding: 0 0.9375rem;
  }
}
#goods .goods-category-head {
  width: 7.1875rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #goods .goods-category-head {
    width: 27%;
  }
}
#goods .goods-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem 1.25rem;
  margin-top: 2.3125rem;
}
@media screen and (max-width: 768px) {
  #goods .goods-category-list {
    gap: 0.625rem;
    margin-top: 2.0625rem;
  }
}
#goods .goods-category-item {
  width: calc(25% - 0.9375rem);
}
@media screen and (max-width: 768px) {
  #goods .goods-category-item {
    width: calc(50% - 0.3125rem);
  }
}
#goods .goods-category-link {
  display: grid;
  place-items: center;
  padding: 0.5rem 0;
  border: 2px solid #000;
  border-radius: 9999px;
  color: #000;
  font-weight: bold;
  font-size: 1.125rem;
  transition: background-color 0.3s, color 0.3s;
}
#goods .goods-category-link.-current {
  background: #000;
  color: #fff;
}
#goods .goods-category-link:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #goods .goods-category-link {
    padding: 0.75rem 0;
    font-size: 0.75rem;
  }
}
#goods .goods-archive {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.9375rem;
  margin-top: 3.75rem;
  padding: 0 3.125rem;
}
@media screen and (max-width: 768px) {
  #goods .goods-archive {
    gap: 0.625rem;
    margin-top: 2.0625rem;
    padding: 0 0.9375rem;
  }
}
#goods .goods-archive-item {
  display: flex;
  flex-direction: column;
  width: calc(33.33% - 0.625rem);
}
@media screen and (max-width: 768px) {
  #goods .goods-archive-item {
    width: calc(50% - 0.3125rem);
  }
}
#goods .goods-archive-link {
  display: block;
  flex-grow: 1;
  flex-direction: column;
  padding: 1.25rem;
  border-bottom: 5px solid #c80000;
  background: #f2f2f2;
  transition: box-shadow 0.3s;
}
#goods .goods-archive-link:hover {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #goods .goods-archive-link {
    padding: 0.625rem 0.625rem 0.9375rem;
  }
}
#goods .goods-archive-cat {
  display: inline-block;
  margin-top: 1.125rem;
  padding: 0.3125rem 0.625rem;
  border: 1px solid;
  border-radius: 9999px;
  background: #fff;
  color: #000;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  #goods .goods-archive-cat {
    margin-top: 0.875rem;
    padding: 0.1875rem 0.625rem;
    font-size: 0.625rem;
  }
}
#goods .goods-archive-head {
  margin-top: 0.625rem;
  color: #c80000;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #goods .goods-archive-head {
    font-size: 1rem;
  }
}
#goods .goods-archive-onsale {
  display: inline-block;
  margin-top: 0.625rem;
  padding: 0.3125rem 1.125rem;
  border-radius: 9999px;
  background: #c80000;
  color: #fff;
  font-weight: bold;
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  #goods .goods-archive-onsale {
    padding: 0.1875rem 1.125rem;
    font-size: 0.625rem;
  }
}
#goods .goods-archive-txt {
  margin-top: 2.8125rem;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #goods .goods-archive-txt {
    font-size: 0.875rem;
  }
}
#goods .goods-article-ttl {
  margin: 0 0 2.8125rem 0;
  padding: 1.5625rem 2.5rem;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.2;
}
#goods .goods-article-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.5rem;
  padding: 0 2.5rem;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-info {
    display: block;
    padding: 0 0.9375rem;
  }
}
#goods .goods-article-img {
  width: 31.25rem;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-img {
    width: 100%;
  }
}
#goods .goods-article-area-txt {
  flex: 1;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-area-txt {
    margin-top: 1.5rem;
  }
}
#goods .goods-article-category {
  display: inline-block;
  min-width: 160px;
  padding: 7px 15px;
  border: 2px solid #000;
  border-radius: 9999px;
  color: #000;
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}
#goods .goods-article-category:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-category {
    min-width: 8.125rem;
    padding: 0.375rem 0.9375rem;
    font-size: 0.75rem;
    font-size: 0.625rem;
  }
}
#goods .goods-article-price {
  margin-top: 2.5rem;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid;
  color: #c80000;
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-price {
    margin-top: 1.375rem;
    padding-bottom: 0.875rem;
    font-size: 1.125rem;
  }
}
#goods .goods-article-dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.125rem;
  margin-bottom: -0.9375rem;
  font-size: 0.9375rem;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-dl {
    margin-top: 1.25rem;
    margin-bottom: -0.625rem;
    font-size: 0.8125rem;
  }
}
#goods .goods-article-dt {
  width: 6.5em;
  margin-bottom: 0.9375rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #d0d0d0;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-dt {
    margin-bottom: 0.625rem;
    padding-bottom: 0.625rem;
  }
}
#goods .goods-article-dd {
  position: relative;
  width: calc(100% - 6.5em);
  margin-bottom: 0.9375rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #d0d0d0;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-dd {
    margin-bottom: 0.625rem;
    padding-bottom: 0.625rem;
  }
}
#goods .goods-article-onsale {
  display: inline-block;
  position: absolute;
  top: -0.25rem;
  right: 0;
  padding: 0.3125rem 0.75rem;
  border-radius: 9999px;
  background: #c80000;
  color: #fff;
  letter-spacing: 0;
  font-weight: bold;
  font-size: 0.625rem;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-onsale {
    top: -0.375rem;
    padding: 0.1875rem 1.125rem;
  }
}
#goods .goods-article-official {
  display: block;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  padding: 0.875rem;
  border: 2px solid #000;
  border-radius: 5px;
  background: #000;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s, background-color 0.3s;
}
#goods .goods-article-official:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-official {
    margin-top: 1.5625rem;
  }
}
#goods .goods-article-official-ico {
  margin-left: 0.625rem;
}
#goods .goods-article-detail {
  padding: 5rem 3.125rem 1.625rem;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-detail {
    padding: 4.1875rem 0.9375rem 0;
  }
}
#goods .goods-article-detail-head {
  margin-bottom: 2.75rem;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #c80000;
  color: #C80000;
  font-weight: 800;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-detail-head {
    margin-bottom: 30px;
    padding-bottom: 0.4375rem;
    font-size: 1.125rem;
  }
}
#goods .goods-article-detail-txt {
  margin-bottom: 2.8125rem;
  font-size: 0.9375rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-detail-txt {
    margin-bottom: 2.1875rem;
  }
}
#goods .goods-article-detail-area-img {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-detail-area-img {
    display: block;
    margin-bottom: 2.1875rem;
  }
}
#goods .goods-article-detail-img {
  width: calc(50% - 0.5625rem);
}
@media screen and (max-width: 768px) {
  #goods .goods-article-detail-img {
    width: 100%;
  }
  #goods .goods-article-detail-img + #goods .goods-article-detail-img {
    margin-top: 0.6875rem;
  }
}
#goods .goods-article-category-list {
  position: relative;
  margin-top: 3.125rem;
  padding: 0 3.125rem;
}
#goods .goods-article-category-list::before {
  content: "";
  position: absolute;
  top: -3.125rem;
  left: 3.125rem;
  width: calc(100% - 100px);
  height: 1px;
  background: #d0d0d0;
}
@media screen and (max-width: 768px) {
  #goods .goods-article-category-list {
    margin-top: 4.375rem;
    padding: 0 0.9375rem;
  }
  #goods .goods-article-category-list::before {
    top: -2.5rem;
    left: 0.9375rem;
    width: calc(100% - 1.875rem);
  }
}
@media screen and (max-width: 768px) {
  #goods .goods-wrap {
    width: 88%;
    margin: 12% auto 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #goods .goods-wrap .goods-page-ttl {
    margin: 0 0 10% 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #goods .goods-container {
    margin: 0 0 4.375rem 0;
    padding: 0 0 2.0625rem 0;
  }
}
@media screen and (max-width: 768px) {
  #goods .goods-article-ttl {
    margin: 0 0 0.9375rem 0;
    padding: 1.375rem 6%;
    font-size: 1.25rem;
  }
}/*# sourceMappingURL=style.css.map */