@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-red: #c7000a;
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #cecece;
}

@keyframes poyon {
  0% {
    transform: scale(1, 1);
  }
  33% {
    transform: scale(1.3, 0.7);
  }
  66% {
    transform: scale(0.8, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes katakata {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(8deg);
  }
  20% {
    transform: rotate(0);
  }
  30% {
    transform: rotate(8deg);
  }
  40% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes dot-pulse {
  0%, 100% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/pattern_main.png) repeat 0 0;
  background-size: 6px;
}

.l-wrap {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 860px) {
  .l-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 100px;
    margin: 0 auto;
  }
}

.l-logo {
  width: calc(100% - 540px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 100px;
}
@media screen and (max-width: 859px) {
  .l-logo {
    display: none;
  }
}
.l-logo__img {
  margin: 0 auto;
  width: 66.2%;
  min-width: 200px;
  max-width: 550px;
}

.l-main {
  width: 540px;
  flex-shrink: 0;
  height: 100vh;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 859px) {
  .l-main {
    height: auto;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    min-height: 100vh;
  }
}
.l-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_ptn.png) repeat-y center 0;
  background-size: 540px;
}
@media screen and (max-width: 859px) {
  .l-main::before {
    background-size: 380px;
  }
}
.l-main__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 860px) {
  .l-main__inner {
    overflow: auto;
  }
}

.l-content {
  padding: 12.5% 2.7% 8.5%;
  overflow: hidden;
}
.is-post-now .l-content {
  display: none;
}
.is-post-end .l-content {
  display: block;
}

.l-footer {
  position: relative;
  text-align: center;
  line-height: 1.3;
  margin-top: 51px;
}
@media screen and (min-width: 860px) {
  .l-footer {
    margin-top: 76px;
  }
}
.l-footer__anilink {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 860px) {
  .l-footer__anilink {
    margin-bottom: 22px;
  }
}
.l-footer__anilink-item {
  margin: 0 7px 5px;
}
@media screen and (min-width: 860px) {
  .l-footer__anilink-item {
    margin: 0 10px 7px;
  }
}
.l-footer__anilink a {
  text-decoration: none;
  color: var(--color-black);
  font-size: 11px;
  position: relative;
  padding-left: 9px;
  letter-spacing: 0.5px;
  transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 860px) {
  .l-footer__anilink a {
    padding-left: 13px;
    font-size: 13px;
  }
}
@media (hover: hover) {
  .l-footer__anilink a:hover {
    color: var(--color-red);
  }
  .l-footer__anilink a:hover::before {
    background-color: var(--color-red);
  }
}
.l-footer__anilink a::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: var(--color-black);
  transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 860px) {
  .l-footer__anilink a::before {
    width: 8px;
    height: 8px;
  }
}
.l-footer__text {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 860px) {
  .l-footer__text {
    font-size: 13px;
  }
}
.l-footer__copy {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-top: 9px;
}
@media screen and (min-width: 860px) {
  .l-footer__copy {
    font-size: 13px;
    margin-top: 13px;
  }
}

.l-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  z-index: 1;
  /* Fixed delays for simplicity */
}
.is-load .l-loading {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.37, 0, 0.63, 1);
}
.l-loading__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-loading .dots {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-loading .dots .dot {
  width: 10px;
  height: 10px;
  margin: 0 10px;
  background-color: var(--color-red);
  border-radius: 50%;
  animation: dot-pulse 1.2s ease-in-out infinite;
}
@media screen and (max-width: 859px) {
  .l-loading .dots .dot {
    width: 7px;
    height: 7px;
    margin: 0 8px;
  }
}
.l-loading .dots .dot:nth-child(1) {
  animation-delay: 0s;
}
.l-loading .dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.l-loading .dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.c-ac {
  border: 1px solid #7d0000;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.c-ac__head {
  text-align: center;
  background-color: #7d0000;
  position: relative;
  padding: 8px 35px 10px;
  cursor: pointer;
  transition: background 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  .c-ac__head:hover {
    background-color: var(--color-red);
  }
}
@media screen and (min-width: 860px) {
  .c-ac__head {
    padding: 15px 50px 17px;
  }
}
.c-ac__head-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 860px) {
  .c-ac__head-icon {
    width: 18px;
    height: 18px;
    right: 20px;
  }
}
.is-ac-open .c-ac__head-icon {
  transform: translateY(-50%) rotate(180deg);
}
.c-ac__head-icon::before, .c-ac__head-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
}
.c-ac__head-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.is-ac-open .c-ac__head-icon::after {
  opacity: 0;
}
.c-ac__head-text {
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.5;
}
@media screen and (min-width: 860px) {
  .c-ac__head-text {
    font-size: 20px;
  }
}
.c-ac__body {
  overflow: hidden;
  height: 0;
}
.c-ac__body-inner {
  background-color: var(--color-white);
  padding: 5.6% 6% 8%;
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

@media screen and (min-width: 860px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
}
@media screen and (max-width: 859px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
}