:root {
  --color-black: #000;
  --color-bgblack: #101010;
  --color-white: #fff;
  --color-red:#f40001;
  --color-gray: #eeeeee;
}

/*!
  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, caption, tbody, tfoot, thead, tr, th, td,
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;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: 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;
}

body .m-modal .m-modal__content {
  width: 89%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  body .m-modal .m-modal__content {
    width: 100%;
  }
}
body .m-modal .m-modal__content img {
  margin: 0 auto;
}
body .m-modal .m-modal__close-btn {
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--color-black);
}
@media (hover: hover) {
  body .m-modal .m-modal__close-btn:hover::before {
    transform: translate(-50%, -50%) rotate(30deg);
  }
  body .m-modal .m-modal__close-btn:hover::after {
    transform: translate(-50%, -50%) rotate(-30deg);
  }
}
body .m-modal .m-modal__close-btn::before, body .m-modal .m-modal__close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 27px;
  height: 3px;
  background: var(--color-white);
  transition: transform 0.6s cubic-bezier(0.19, 0.92, 0.3, 1);
}
body .m-modal .m-modal__close-btn::before {
  transform: translate(-50%, -50%) rotate(210deg);
}
body .m-modal .m-modal__close-btn::after {
  transform: translate(-50%, -50%) rotate(-210deg);
}
body .m-modal .m-modal__bg {
  background: var(--color-red);
  opacity: 0.92;
}

@media not all and (max-width: 959px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
html {
  touch-action: manipulation;
}

body,
button,
input,
select,
textarea,
datalist {
  font-family: YakuHanJP, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: normal;
}
@media not all and (max-width: 959px) {
  body,
  button,
  input,
  select,
  textarea,
  datalist {
    font-size: 16px;
  }
}

body {
  position: relative;
  background: var(--color-white);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: baseline;
}

* {
  -webkit-tap-highlight-color: transparent;
}

main {
  display: block;
}

a {
  color: currentColor;
  text-decoration: none;
}

svg {
  fill-rule: evenodd;
  width: 100%;
  height: 100%;
}

[data-modal] {
  cursor: pointer;
}

[tabindex] {
  cursor: pointer;
}
[tabindex].focus-visible {
  outline: 1px solid;
}

.js-focus-visible :focus:not(:focus-visible) {
  outline: 0;
}

.visually-hidden {
  font-size: 0;
  opacity: 0;
}

span, small {
  display: inline-block;
  vertical-align: baseline;
}

.l-wrapper {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.19, 0.92, 0.3, 1);
}
.is-load .l-wrapper {
  opacity: 1;
}

.l-main {
  position: relative;
}
@media not all and (max-width: 959px) {
  .l-main {
    padding-top: 76px;
  }
}

.l-footer {
  position: relative;
  margin-top: 3px;
  padding-top: 19px;
}
@media not all and (max-width: 959px) {
  .l-footer {
    padding-top: 31px;
  }
}
.l-footer__deco {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.l-footer__deco-inner {
  width: calc(100% + 13px);
  height: 16px;
  background: url(../img/common/line_stripe_black.png) center left repeat-x;
  background-size: 13px auto;
  animation: stripe_line 0.5s linear infinite;
}
@media not all and (max-width: 959px) {
  .l-footer__deco-inner {
    width: calc(100% + 22px);
    height: 27px;
    background-size: 22px auto;
    animation-name: stripe_line_pc;
  }
}
.l-footer__container {
  background: var(--color-black);
  display: flex;
}
@media screen and (max-width: 959px) {
  .l-footer__container {
    flex-direction: column-reverse;
  }
}
@media not all and (max-width: 959px) {
  .l-footer__head {
    width: 57.1428571429%;
    flex-shrink: 0;
    border-right: 3px solid var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 959px) {
  .l-footer__head {
    padding: 40px 0;
  }
}
@media not all and (max-width: 959px) {
  .l-footer__head-inner {
    transform: translateY(8px);
  }
}
.l-footer__logo {
  width: 77.5%;
  margin: 0 auto;
}
@media not all and (max-width: 959px) {
  .l-footer__logo {
    width: 67.2%;
  }
}
.l-footer__copy {
  margin-top: 17px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}
@media not all and (max-width: 959px) {
  .l-footer__copy {
    margin-top: 27px;
    font-size: 11px;
  }
}
@media not all and (max-width: 959px) {
  .l-footer__inner {
    flex-grow: 1;
  }
}
.l-footer__inner-head {
  display: flex;
  border-bottom: 3px solid var(--color-white);
}
.l-footer__inner-btm {
  display: flex;
}
@media screen and (max-width: 959px) {
  .l-footer__inner-btm {
    border-bottom: 3px solid var(--color-white);
  }
}
.l-footer__share {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .l-footer__share {
    padding: 35px 0 31px;
  }
}
@media not all and (max-width: 959px) {
  .l-footer__share {
    padding: 29px 0;
  }
}
.l-footer__pagetop {
  width: 17.5%;
  flex-shrink: 0;
  border-left: 4px solid var(--color-white);
}
@media screen and (max-width: 959px) {
  .l-footer__pagetop {
    width: 26%;
    flex-shrink: 0;
    border-width: 3px;
  }
}
.l-footer__pagetop-link {
  display: block;
  height: 100%;
  padding: 35px 0 31px;
  box-sizing: border-box;
}
@media not all and (max-width: 959px) {
  .l-footer__pagetop-link {
    padding: 29px 0 34px;
    transition: background-color 0.4s cubic-bezier(0.19, 0.92, 0.3, 1);
  }
  .l-footer__pagetop-link:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}
.l-footer__pagetop-img {
  width: 42%;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .l-footer__pagetop-img {
    max-width: 80px;
  }
}
@media not all and (max-width: 959px) {
  .l-footer__pagetop-img {
    width: 46%;
  }
}
.l-footer__bnr {
  width: 50%;
}
.l-footer__bnr:nth-child(1) {
  border-right: 3px solid var(--color-white);
}
.l-footer__bnr-link {
  display: block;
  padding: 32px 0 29px;
}
@media (hover: hover) {
  .l-footer__bnr-link {
    transition: background-color 0.4s cubic-bezier(0.19, 0.92, 0.3, 1);
  }
  .l-footer__bnr-link:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}
.l-footer__bnr-img {
  width: 80%;
  margin: 0 auto;
}
@media not all and (max-width: 959px) {
  .l-footer__bnr-img {
    width: 66%;
  }
}
.--toei .l-footer__bnr-img {
  transform: translateY(2px);
}
@media not all and (max-width: 959px) {
  .--toei .l-footer__bnr-img {
    width: 72%;
  }
}

.l-footer_share {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-footer_share__ttl {
  width: 69px;
  margin-right: 21px;
}
@media not all and (max-width: 959px) {
  .l-footer_share__ttl {
    width: 84px;
    margin-right: 25px;
  }
}
.l-footer_share__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 27px;
}
@media not all and (max-width: 959px) {
  .l-footer_share__list {
    gap: 0 29px;
  }
}
.l-footer_share__link {
  display: block;
  width: 24px;
}
@media not all and (max-width: 959px) {
  .l-footer_share__link {
    width: 33px;
  }
}
@media (hover: hover) {
  .l-footer_share__link:hover svg {
    fill: var(--color-red);
  }
}
.l-footer_share__link svg {
  fill: var(--color-white);
  transition: fill 0.5s cubic-bezier(0.19, 0.92, 0.3, 1);
}

.l-section {
  position: relative;
}
.l-section__container {
  max-width: 1000px;
  margin: 0 auto;
  width: 89.3333333333%;
}
.l-section__ttl {
  position: relative;
  transform: translateX(-40px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.19, 0.92, 0.3, 1) 0s, opacity 0.4s cubic-bezier(0.19, 0.92, 0.3, 1) 0s;
}
.l-section__ttl img {
  position: relative;
}
@media screen and (max-width: 959px) {
  .l-section__ttl {
    transform: translateX(-25px);
  }
}
.l-section.is-active .l-section__ttl {
  transform: translateX(0px);
  opacity: 1;
}
.l-section__inner {
  transform: translateX(-40px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.19, 0.92, 0.3, 1) 0.2s, opacity 0.4s cubic-bezier(0.19, 0.92, 0.3, 1) 0.2s;
}
@media screen and (max-width: 959px) {
  .l-section__inner {
    transform: translateX(-25px);
  }
}
.l-section.is-active .l-section__inner {
  transform: translateX(0px);
  opacity: 1;
}
.l-section__loop {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: -webkit-clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1), -webkit-clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
@media screen and (max-width: 959px) {
  .l-section__loop {
    top: 5px;
  }
}
.l-section__loop.--type2 {
  -webkit-clip-path: polygon(100% 0, 100% 0%, 100% 100%, 100% 100%);
  clip-path: polygon(100% 0, 100% 0%, 100% 100%, 100% 100%);
}
.l-section.is-active .l-section__loop {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
.l-section__loop-inner {
  position: relative;
  width: 1856.26px;
  height: 22px;
  background: url(../img/common/deco_1.png) left center repeat-x;
  background-size: contain;
  animation: loop_text 24s linear infinite;
}
@media screen and (max-width: 959px) {
  .l-section__loop-inner {
    width: 1097px;
    height: 13px;
  }
}
.--type2 .l-section__loop-inner {
  background-image: url(../img/common/deco_2.png);
  animation-direction: reverse;
}
.l-section__loop-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/deco_1.png) left center repeat-x;
  background-size: contain;
  transform: translateX(100%);
}
.--type2 .l-section__loop-inner::after {
  background-image: url(../img/common/deco_2.png);
}

.l-in {
  position: relative;
  padding: 159px 0 152px;
}
@media screen and (max-width: 959px) {
  .l-in {
    padding: 80px 0 129px;
  }
}
.l-in__container {
  max-width: 1000px;
  margin: 0 auto;
  width: 89.3333333333%;
}
.l-in__header {
  margin-bottom: 60px;
}
@media screen and (max-width: 959px) {
  .l-in__header {
    margin-bottom: 30px;
  }
}
.l-in__ttl {
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.19, 0.92, 0.3, 1) 0s, opacity 0.4s cubic-bezier(0.19, 0.92, 0.3, 1) 0s;
}
@media screen and (max-width: 959px) {
  .l-in__ttl {
    transform: translateY(25px);
  }
}
.l-in__ttl img {
  position: relative;
}
.l-in.is-active .l-in__ttl {
  transform: translateY(0px);
  opacity: 1;
}
.l-in__inner {
  position: relative;
  transform: translateX(-40px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.19, 0.92, 0.3, 1) 0.2s, opacity 0.4s cubic-bezier(0.19, 0.92, 0.3, 1) 0.2s;
}
@media screen and (max-width: 959px) {
  .l-in__inner {
    transform: translateX(-25px);
  }
}
.l-in.is-active .l-in__inner {
  transform: translateX(0px);
  opacity: 1;
}
.l-in__loop {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .l-in__loop {
    top: 5px;
  }
}
.l-in__loop-inner {
  position: relative;
  width: 1856.26px;
  height: 22px;
  background: url(../img/common/deco_1.png) left center repeat-x;
  background-size: contain;
  animation: loop_text 24s linear infinite;
}
@media screen and (max-width: 959px) {
  .l-in__loop-inner {
    width: 1097px;
    height: 13px;
  }
}
.--type2 .l-in__loop-inner {
  background-image: url(../img/common/deco_2.png);
}
.l-in__loop-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/deco_1.png) left center repeat-x;
  background-size: contain;
  transform: translateX(100%);
}
.--type2 .l-in__loop-inner::after {
  background-image: url(../img/common/deco_2.png);
}

.l-header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 2;
  padding: 18px 0 14px;
  background: var(--color-bgblack);
  color: var(--color-white);
}
@media not all and (max-width: 959px) {
  .l-header {
    border-bottom: 3px solid var(--color-white);
  }
}
@media screen and (max-width: 959px) {
  .l-header {
    height: 100%;
    padding: 0;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.19, 0.92, 0.3, 1);
  }
  .is-menu-open .l-header {
    opacity: 1;
    pointer-events: auto;
  }
}
.l-header__container {
  margin: 0 auto;
}
@media not all and (max-width: 959px) {
  .l-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 96%;
  }
}
@media screen and (max-width: 959px) {
  .l-header__container {
    width: 84%;
    min-height: 100vh;
    padding: 80px 0;
  }
}
@media screen and (max-width: 959px) {
  .l-header__head {
    margin-bottom: 55px;
    transform: translateY(30px);
    opacity: 0;
  }
  .is-menu-open .l-header__head {
    transition: transform 0.8s cubic-bezier(0.19, 0.92, 0.3, 1) 0s, opacity 0.4s cubic-bezier(0.19, 0.92, 0.3, 1) 0s;
    transform: translateY(0px);
    opacity: 1;
  }
}
@media not all and (max-width: 959px) {
  .l-header__ttl {
    width: 300px;
  }
}
@media screen and (max-width: 959px) {
  .l-header__ttl {
    width: 92%;
    margin: 0 auto;
  }
}
.l-header__ttl-inner {
  display: block;
}
@media (hover: hover) {
  .l-header__ttl-inner {
    transition: opacity 0.5s cubic-bezier(0.19, 0.92, 0.3, 1);
  }
  .l-header__ttl-inner:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 959px) {
  .l-header__inner {
    margin-bottom: 54px;
    transform: translateY(30px);
    opacity: 0;
  }
  .is-menu-open .l-header__inner {
    transition: transform 0.8s cubic-bezier(0.19, 0.92, 0.3, 1) 0.2s, opacity 0.4s cubic-bezier(0.19, 0.92, 0.3, 1) 0.2s;
    transform: translateY(0px);
    opacity: 1;
  }
}

.l-menuBtn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: var(--color-black);
}
.l-menuBtn::before, .l-menuBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 27px;
  height: 3px;
  background: var(--color-white);
  transition: transform 0.6s cubic-bezier(0.19, 0.92, 0.3, 1);
}
.l-menuBtn::before {
  transform: translate(-50%, calc(-50% - 4px)) rotate(0deg);
}
.is-menu-open .l-menuBtn::before {
  transform: translate(-50%, -50%) rotate(210deg);
}
.l-menuBtn::after {
  transform: translate(-50%, calc(-50% + 4px)) rotate(0deg);
}
.is-menu-open .l-menuBtn::after {
  transform: translate(-50%, -50%) rotate(-210deg);
}

@media not all and (max-width: 959px) {
  .l-nav__list {
    display: flex;
    gap: 40px;
  }
}
@media screen and (max-width: 959px) {
  .l-nav__list-item + .l-nav__list-item {
    margin-top: 33px;
  }
}
.l-nav__link {
  display: block;
  font-family: "Barlow", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 959px) {
  .l-nav__link {
    text-align: center;
  }
}
@media (hover: hover) {
  .l-nav__link {
    transition: color 0.5s cubic-bezier(0.19, 0.92, 0.3, 1);
  }
  .l-nav__link:hover {
    color: var(--color-red);
  }
}
.is-current .l-nav__link {
  color: var(--color-red);
}

.c-btn__inner {
  position: relative;
  display: block;
  padding: 6.5px 0;
  text-align: center;
  border: 3px solid var(--color-black);
  font-family: "Barlow", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 959px) {
  .c-btn__inner {
    padding: 6.5px 0;
  }
}
@media (hover: hover) {
  .c-btn__inner {
    overflow: hidden;
    transition: color 0.3s cubic-bezier(0.19, 0.92, 0.3, 1) 0.15s;
  }
  .c-btn:hover .c-btn__inner {
    transition: color 0.25s cubic-bezier(0.19, 0.92, 0.3, 1);
    color: var(--color-white);
  }
  .c-btn__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 125%;
    height: 100%;
    background: var(--color-black);
    transform: skewX(-15deg) translateX(-150%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .c-btn:hover .c-btn__inner::before {
    transform: skewX(-15deg) translateX(-50%);
  }
}
.c-btn__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 11px;
  width: 7px;
  height: 100%;
  -webkit-mask: url(../img/top/arrow.svg) center center no-repeat;
  mask: url(../img/top/arrow.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-black);
}
@media screen and (max-width: 959px) {
  .c-btn__inner::after {
    right: 7px;
    width: 6px;
  }
}
@media (hover: hover) {
  .c-btn__inner::after {
    transition: background-color 0.3s cubic-bezier(0.19, 0.92, 0.3, 1) 0.15s;
  }
  .c-btn:hover .c-btn__inner::after {
    transition: background-color 0.25s cubic-bezier(0.19, 0.92, 0.3, 1);
    background-color: var(--color-white);
  }
}
.c-btn__inner span {
  position: relative;
  display: block;
}

.c-article {
  line-height: 1.8;
}
@media screen and (max-width: 959px) {
  .c-article {
    line-height: 1.75;
  }
}
.c-article a {
  background: var(--color-red);
  color: var(--color-white);
}
@media (hover: hover) {
  .c-article a {
    transition: opacity 0.4s cubic-bezier(0.19, 0.92, 0.3, 1);
  }
  .c-article a:hover {
    opacity: 0.7;
  }
}
.c-article .block + .block {
  margin-top: 56px;
}
@media screen and (max-width: 959px) {
  .c-article .block + .block {
    margin-top: 35px;
  }
}
.c-article .block__inner {
  padding: 0 10px;
}
.c-article h2 {
  font-size: 20px;
  margin-bottom: 23px;
}
@media screen and (max-width: 959px) {
  .c-article h2 {
    margin-bottom: 19px;
    font-size: 15px;
  }
}
.c-article h2 small {
  font-size: 85%;
  vertical-align: baseline;
}
.c-article h3 {
  margin-bottom: 23px;
  padding: 2px 14px 6px;
  background: var(--color-gray);
  font-size: 18px;
}
@media screen and (max-width: 959px) {
  .c-article h3 {
    margin-bottom: 19px;
    padding: 8px 14px 7px;
    font-size: 14px;
  }
}
.c-article h3 small {
  font-size: 80%;
  vertical-align: baseline;
}
.c-article h4 {
  margin-bottom: 17px;
}
@media screen and (max-width: 959px) {
  .c-article h4 {
    margin-bottom: 12px;
    font-size: 14px;
  }
}
.c-article .indent {
  padding-left: 0.5em;
  text-indent: -0.5em;
}
.c-article ul li {
  padding-left: 0.5em;
  text-indent: -0.5em;
}
.c-article .color-red {
  vertical-align: baseline;
  color: var(--color-red);
}
.c-article img {
  max-width: 100%;
}
.c-article iframe {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.c-article u {
  vertical-align: baseline;
}
.c-article strong {
  vertical-align: baseline;
}
.c-article span {
  vertical-align: baseline;
}

.u-color-pink {
  vertical-align: baseline;
  color: var(--color-pink-deep);
}

.u-font-bold {
  font-weight: 800;
  vertical-align: baseline;
}

.u-line-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.u-line-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.u-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.is-load .u-loading {
  opacity: 0;
}
.u-loading__inner {
  width: 60px;
  height: 60px;
  border-width: 4px;
  border-style: solid;
  border-radius: 50%;
  transform: rotate(0deg);
  animation: spinner linear 1s infinite;
}

@keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes clip-in {
  0% {
    -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, -20% 0, 0 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 120% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 120% 100%, 0% 100%);
  }
}
@keyframes clip-out {
  0% {
    -webkit-clip-path: polygon(-20% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(-20% 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 120% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 120% 100%);
  }
}
@keyframes clip-out2 {
  0% {
    -webkit-clip-path: polygon(-20% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(-20% 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 120% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 120% 100%);
  }
}
@keyframes clip-in2 {
  0% {
    -webkit-clip-path: polygon(0 0, -20% 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, -20% 0, 0 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 120% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 120% 100%, 0% 100%);
  }
}
@keyframes arrow_extarnal {
  0% {
    transform: translate(0%, 0%);
  }
  30% {
    transform: translate(5px, -10%);
  }
  30.1% {
    opacity: 0;
  }
  40% {
    transform: translate(-5px, 10%);
    opacity: 0;
  }
  75% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes rotateY {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes m_translateY {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes m_scale {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes deco {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(8deg);
  }
}
@keyframes loop_text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes stripe_line {
  0% {
    transform: translateX(-13px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes stripe_line_pc {
  0% {
    transform: translateX(-22px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes movie_line {
  0% {
    transform: translateX(-51.88px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes movie_line_pc {
  0% {
    transform: translateX(-115px);
  }
  100% {
    transform: translateX(0px);
  }
}
.p-hero {
  position: relative;
}
.p-hero__deco {
  position: absolute;
  top: 6px;
  left: 0;
  width: 100%;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: -webkit-clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1), -webkit-clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.p-hero__deco:nth-child(2) {
  top: auto;
  bottom: 6px;
  -webkit-clip-path: polygon(100% 0, 100% 0%, 100% 100%, 100% 100%);
  clip-path: polygon(100% 0, 100% 0%, 100% 100%, 100% 100%);
}
@media not all and (max-width: 959px) {
  .p-hero__deco:nth-child(2) {
    bottom: 4px;
  }
}
@media not all and (max-width: 959px) {
  .p-hero__deco {
    top: 0px;
  }
}
.is-load .p-hero__deco {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
.p-hero__deco-inner {
  width: calc(100% + 13px);
  height: 16px;
  background: url(../img/common/line_stripe_black.png) center left repeat-x;
  background-size: 13px auto;
  animation: stripe_line 0.5s linear infinite;
}
@media not all and (max-width: 959px) {
  .p-hero__deco-inner {
    width: calc(100% + 22px);
    height: 27px;
    background-size: 22px auto;
    animation-name: stripe_line_pc;
  }
}
.p-hero__deco:nth-child(2) .p-hero__deco-inner {
  animation-direction: reverse;
}
@media not all and (max-width: 959px) {
  .p-hero__container {
    display: flex;
  }
}
@media screen and (max-width: 959px) {
  .p-hero__container {
    padding-bottom: 79px;
  }
}
@media not all and (max-width: 959px) {
  .p-hero__header {
    flex-shrink: 0;
    width: 47.1428571429%;
  }
}
.p-hero__img {
  overflow: hidden;
}
.p-hero__img img {
  width: 100%;
  transform: scale(1.1);
}
.is-load .p-hero__img img {
  transition: transform 3s cubic-bezier(0.19, 0.92, 0.3, 1);
  transform: scale(1);
}
@media not all and (max-width: 959px) {
  .p-hero__inner {
    position: relative;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .is-overH .p-hero__inner {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  .p-hero__inner {
    margin-top: -85px;
  }
}
@media not all and (max-width: 959px) {
  .is-overH .p-hero__inner-wrap {
    position: -webkit-sticky;
    position: sticky;
    top: 76px;
    min-height: calc(100vh - 76px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-hero__ttl {
  width: 94.5%;
  margin: 0 auto 16%;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.19, 0.92, 0.3, 1) 0.15s, opacity 0.4s cubic-bezier(0.19, 0.92, 0.3, 1) 0.15s;
}
@media not all and (max-width: 959px) {
  .p-hero__ttl {
    width: 90%;
    max-width: 1065px;
    margin-bottom: 5.5%;
  }
}
.is-load .p-hero__ttl {
  transform: translateY(0px);
  opacity: 1;
}
.p-hero__catch {
  width: 89.5%;
  margin: 0 auto;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.19, 0.92, 0.3, 1) 0.3s, opacity 0.4s cubic-bezier(0.19, 0.92, 0.3, 1) 0.3s;
}
@media not all and (max-width: 959px) {
  .p-hero__catch {
    width: 73.5%;
    max-width: 1006px;
  }
}
.is-load .p-hero__catch {
  transform: translateY(0px);
  opacity: 1;
}
.p-hero__lead {
  margin-top: 19px;
  text-align: center;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: -0.03rem;
  font-weight: 700;
}
@media not all and (max-width: 959px) {
  .p-hero__lead {
    margin-top: 38px;
    font-size: 17px;
    font-size: min(1.2142857143vw, 17px);
  }
}
.p-hero__lead span {
  display: inline-block;
  vertical-align: baseline;
  transform: scaleX(1.2);
}
.p-hero__scroll {
  width: 88px;
  margin: 0 auto;
  margin-top: 77px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.19, 0.92, 0.3, 1) 0.45s, opacity 0.4s cubic-bezier(0.19, 0.92, 0.3, 1) 0.45s;
}
.is-load .p-hero__scroll {
  transform: translateY(0px);
  opacity: 1;
}
.p-hero__scroll a {
  display: block;
  transition: opacity 0.6s cubic-bezier(0.19, 0.92, 0.3, 1);
}
.p-hero__scroll a:hover {
  opacity: 0.6;
}

.p-headline {
  padding: 79px 0;
}
@media not all and (max-width: 959px) {
  .p-headline {
    padding: 158px 0 120px;
  }
}
.p-headline__header {
  margin-bottom: 29px;
}
@media not all and (max-width: 959px) {
  .p-headline__header {
    margin-bottom: 41px;
  }
}
.p-headline__ttl {
  position: relative;
  width: 31.3%;
}
@media screen and (max-width: 959px) {
  .p-headline__ttl {
    width: 56.5%;
    max-width: 300px;
  }
}
.p-headline__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 11%;
  z-index: -1;
  width: 104%;
  padding-top: 76.2068965517%;
  background: url(../img/top/news_title_bg.png) center center no-repeat;
  background-size: contain;
  transform: translateY(-48%);
}
@media screen and (max-width: 959px) {
  .p-headline__ttl::before {
    left: 13%;
    width: 92%;
    padding-top: 67.4137931034%;
    transform: translateY(-54%);
  }
}
.p-headline__inner {
  position: relative;
}
@media not all and (max-width: 959px) {
  .p-headline__inner {
    max-width: 900px;
    margin-left: auto;
  }
}
.p-headline__btn {
  width: 145px;
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .p-headline__btn {
    margin: 30px auto 0;
  }
}
@media not all and (max-width: 959px) {
  .p-headline__btn {
    margin-left: auto;
  }
}

.p-news__ttl {
  width: 31.4%;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .p-news__ttl {
    width: 56%;
  }
}
.p-news__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 104%;
  padding-top: 76.2068965517%;
  background: url(../img/news/title_bg.png) center center no-repeat;
  background-size: contain;
  transform: translate(-44%, -54%);
}
@media screen and (max-width: 959px) {
  .p-news__ttl::before {
    width: 92%;
    padding-top: 67.4137931034%;
    transform: translate(-44%, -54%);
  }
}
.p-news__list-item + .p-news__list-item {
  margin-top: 5px;
}
@media not all and (max-width: 959px) {
  .p-news__list-item + .p-news__list-item {
    margin-top: 10px;
  }
}
.p-news__footer {
  margin-top: 41px;
}
@media not all and (max-width: 959px) {
  .p-news__footer {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 959px) {
  .p-news__back {
    margin-top: 30px;
    text-align: center;
  }
}
.p-news__back-inner {
  position: relative;
  display: block;
  padding-left: 26px;
  font-family: "Barlow", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 17px;
}
@media screen and (max-width: 959px) {
  .p-news__back-inner {
    display: inline-block;
    padding-left: 20px;
    padding-right: 13px;
    font-size: 13px;
  }
}
@media (hover: hover) {
  .p-news__back-inner {
    transition: color 0.4s cubic-bezier(0.19, 0.92, 0.3, 1);
  }
  .p-news__back-inner:hover {
    color: var(--color-red);
  }
  .p-news__back-inner:hover::before {
    transform: scaleX(-1) translateX(5px);
    background-color: var(--color-red);
  }
}
.p-news__back-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  -webkit-mask: url(../img/top/arrow_2.svg) center left no-repeat;
  mask: url(../img/top/arrow_2.svg) center left no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--color-black);
  transform: scaleX(-1);
  transition: background-color 0.4s cubic-bezier(0.19, 0.92, 0.3, 1), transform 0.5s cubic-bezier(0.19, 0.92, 0.3, 1);
}

.p-news_data {
  display: block;
  background: var(--color-black);
  display: flex;
}
.p-news_data__header {
  position: relative;
  flex-grow: 1;
  overflow: hidden;
}
@media not all and (max-width: 959px) {
  .p-news_data__header {
    display: flex;
    align-items: center;
    padding: 27px 31px;
  }
  .p-news_data__header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 110%;
    height: 100%;
    background: var(--color-red);
    transform: skewX(-15deg) translateX(-150%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .p-news_data:hover .p-news_data__header::before {
    transform: skewX(-15deg) translateX(-50%);
  }
}
@media screen and (max-width: 959px) {
  .p-news_data__header {
    padding: 18px 21px;
  }
}
.p-news_data__date {
  position: relative;
  margin-bottom: 3px;
  color: var(--color-red);
  font-family: "Barlow", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 12px;
}
@media not all and (max-width: 959px) {
  .p-news_data__date {
    min-width: 110px;
    margin-bottom: 0;
    font-size: 20px;
    flex-shrink: 0;
    transition: color 0.45s cubic-bezier(0.19, 0.92, 0.3, 1) 0.2s;
  }
  .p-news_data:hover .p-news_data__date {
    transition: color 0.45s cubic-bezier(0.19, 0.92, 0.3, 1);
    color: var(--color-black);
  }
}
.p-news_data__ttl {
  position: relative;
  color: var(--color-white);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 1.5;
}
@media not all and (max-width: 959px) {
  .p-news_data__ttl {
    flex-grow: 1;
  }
}
@media screen and (max-width: 959px) {
  .p-news_data__ttl {
    -webkit-line-clamp: 2;
  }
}
.p-news_data__inner {
  position: relative;
  flex-shrink: 0;
}
@media not all and (max-width: 959px) {
  .p-news_data__inner {
    width: 97px;
    color: var(--color-red);
    border-left: 3px solid var(--color-red);
    overflow: hidden;
  }
  .p-news_data:hover .p-news_data__inner {
    border-color: var(--color-black);
  }
  .p-news_data__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 125%;
    height: 100%;
    background: var(--color-red);
    transform: skewX(-15deg) translateX(-150%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .p-news_data:hover .p-news_data__inner::before {
    transform: skewX(-15deg) translateX(-50%);
  }
}
@media screen and (max-width: 959px) {
  .p-news_data__inner {
    width: 20px;
  }
}
.p-news_data__more {
  position: relative;
}
@media screen and (max-width: 959px) {
  .p-news_data__more {
    height: 100%;
    font-size: 0;
    background: var(--color-red);
  }
}
@media not all and (max-width: 959px) {
  .p-news_data__more {
    padding: 12px 13px;
    font-family: "Barlow", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: 700;
    font-size: 21px;
    transition: color 0.45s cubic-bezier(0.19, 0.92, 0.3, 1) 0.1s;
  }
  .p-news_data:hover .p-news_data__more {
    transition: color 0.45s cubic-bezier(0.19, 0.92, 0.3, 1);
    color: var(--color-black);
  }
}
.p-news_data__more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 100%;
  height: 12px;
  -webkit-mask: url(../img/top/arrow.svg) center center no-repeat;
  mask: url(../img/top/arrow.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: translate(50%, -50%);
  background: var(--color-black);
}
@media not all and (max-width: 959px) {
  .p-news_data__more::after {
    top: auto;
    bottom: 9px;
    right: 13px;
    width: 15px;
    height: 15px;
    -webkit-mask-image: url(../img/top/arrow_2.svg);
    mask-image: url(../img/top/arrow_2.svg);
    background: var(--color-red);
    transform: translate(0%, -50%);
    transition: background-color 0.45s cubic-bezier(0.19, 0.92, 0.3, 1) 0.1s;
  }
  .p-news_data:hover .p-news_data__more::after {
    transition: background-color 0.45s cubic-bezier(0.19, 0.92, 0.3, 1);
    background: var(--color-black);
  }
}

.p-news_article {
  border: 4px solid var(--color-black);
}
.p-news_article__header {
  background: var(--color-black);
  color: var(--color-white);
}
.p-news_article__header-wrap {
  width: 89%;
  margin: 0 auto;
  padding: 30px 0 38px;
}
@media screen and (max-width: 959px) {
  .p-news_article__header-wrap {
    padding: 13px 0 20px;
  }
}
.p-news_article__date {
  margin-bottom: 2px;
  color: var(--color-red);
  font-family: "Barlow", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 12px;
}
@media not all and (max-width: 959px) {
  .p-news_article__date {
    margin-bottom: 4px;
    font-size: 20px;
  }
}
.p-news_article__ttl {
  font-size: 24px;
}
@media screen and (max-width: 959px) {
  .p-news_article__ttl {
    font-size: 15px;
  }
}
.p-news_article__inner-wrap {
  width: 89%;
  margin: 0 auto;
  padding: 52px 0 90px;
}
@media screen and (max-width: 959px) {
  .p-news_article__inner-wrap {
    padding: 24px 0 42px;
  }
}

.p-news_share {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-news_share__ttl {
  width: 50px;
  margin-right: 17px;
}
@media not all and (max-width: 959px) {
  .p-news_share__ttl {
    width: 62px;
    margin-right: 22px;
  }
}
.p-news_share__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 18px;
}
@media not all and (max-width: 959px) {
  .p-news_share__list {
    gap: 0 22px;
  }
}
.p-news_share__link {
  display: block;
  width: 22px;
}
@media not all and (max-width: 959px) {
  .p-news_share__link {
    width: 27px;
  }
}
@media (hover: hover) {
  .p-news_share__link:hover svg {
    fill: var(--color-red);
  }
}
.p-news_share__link svg {
  fill: var(--color-black);
  transition: fill 0.5s cubic-bezier(0.19, 0.92, 0.3, 1);
}

.p-about {
  padding: 159px 0;
}
@media screen and (max-width: 959px) {
  .p-about {
    padding: 79px 0;
  }
}
@media screen and (max-width: 959px) and (min-width: 500px) {
  .p-about {
    padding: 118.5px 0;
  }
}
.p-about__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-about__bg-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  background: url(../img/top/bg_red_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 959px) {
  .p-about__bg-inner {
    background-image: url(../img/top/bg_red_sp.jpg);
  }
}
.p-about__deco {
  top: 13px;
}
@media screen and (max-width: 959px) {
  .p-about__deco {
    top: 5px;
  }
}
.p-about__container {
  position: relative;
}
.p-about__header {
  margin-bottom: 30px;
}
@media not all and (max-width: 959px) {
  .p-about__header {
    margin-bottom: 60px;
  }
}
.p-about__ttl {
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .p-about__ttl {
    width: 65%;
    max-width: 330px;
  }
}
@media not all and (max-width: 959px) {
  .p-about__ttl {
    width: 36%;
  }
}
.p-about__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 132%;
  padding-top: 68.8139534884%;
  background: url(../img/top/about_title_bg.png) center center no-repeat;
  background-size: contain;
  transform: translate(-50%, -59%);
}
@media screen and (max-width: 959px) {
  .p-about__ttl::before {
    width: 118%;
    padding-top: 61.515503876%;
  }
}
.p-about__inner {
  position: relative;
}
.p-about__list-item + .p-about__list-item {
  margin-top: 20px;
}
@media not all and (max-width: 959px) {
  .p-about__list-item + .p-about__list-item {
    margin-top: 42px;
  }
}

.p-about_data {
  border: 4px solid var(--color-black);
  border-bottom: none;
}
.p-about_data__header {
  position: relative;
  padding: 9px 0 16px;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  .p-about_data__header {
    padding: 8px 0 13px;
  }
}
.p-about_data__header::before, .p-about_data__header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 19px;
  height: 3px;
  background: var(--color-white);
  transition: transform 0.5s cubic-bezier(0.19, 0.92, 0.3, 1);
}
@media screen and (max-width: 959px) {
  .p-about_data__header::before, .p-about_data__header::after {
    right: 18px;
    width: 14px;
    height: 2px;
  }
}
.p-about_data__header::before {
  transform: translateY(-50%) rotate(90deg);
}
.is-open .p-about_data__header::before {
  transform: translateY(-50%) rotate(180deg);
}
.p-about_data__header::after {
  transform: translateY(-50%) rotate(0deg);
}
.is-open .p-about_data__header::after {
  transform: translateY(-50%) rotate(180deg);
}
.p-about_data__ttl {
  font-weight: 700;
  font-size: 16px;
}
@media not all and (max-width: 959px) {
  .p-about_data__ttl {
    font-size: 24px;
  }
  .p-about_data__ttl::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.19, 0.92, 0.3, 1);
  }
  .p-about_data__header:hover .p-about_data__ttl::before {
    opacity: 0.1;
  }
}
.p-about_data__ttl span {
  position: relative;
  display: block;
}
.p-about_data__inner {
  height: 0;
}
.p-about_data__cont {
  padding: 9px 0 18px;
  background: var(--color-white);
  border-bottom: 4px solid var(--color-black);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.19, 0.92, 0.3, 1) 0.5s;
}
@media not all and (max-width: 959px) {
  .p-about_data__cont {
    padding: 18px 0 31px;
  }
}
.is-open .p-about_data__cont {
  transition: opacity 0.5s cubic-bezier(0.19, 0.92, 0.3, 1);
  opacity: 1;
  pointer-events: auto;
}
.p-about_data__list {
  width: 88.9%;
  margin: 0 auto;
}
.p-about_data__list-item {
  padding: 18px 0;
  border-bottom: 3px solid var(--color-black);
}
@media not all and (max-width: 959px) {
  .p-about_data__list-item {
    display: flex;
    padding: 28px 0;
  }
}
.p-about_data__list-item:last-child {
  border-bottom: none;
}
.p-about_data__list-ttl {
  margin-bottom: 7px;
  color: var(--color-red);
  font-weight: 700;
}
@media not all and (max-width: 959px) {
  .p-about_data__list-ttl {
    min-width: 183px;
    flex-shrink: 0;
    margin-bottom: 0;
    padding-top: 2px;
    font-size: 18px;
  }
}
.p-about_data__list-txt {
  line-height: 1.5;
}
@media not all and (max-width: 959px) {
  .p-about_data__list-txt {
    font-size: 18px;
    line-height: 1.3;
  }
}
.p-about_data__list-txt small {
  vertical-align: baseline;
  font-size: 11px;
}
@media screen and (max-width: 959px) {
  .p-about_data__list-txt .bg-color {
    padding: 0px 3px;
    vertical-align: baseline;
    background: var(--color-red);
    color: var(--color-white);
    line-height: 1.1;
  }
}
.p-about_data__coming {
  width: 57%;
  margin: 0 auto;
  padding: 41px 0 28px;
}
@media not all and (max-width: 959px) {
  .p-about_data__coming {
    width: 37.4%;
    padding: 41px 0 35px;
  }
}

.p-contact {
  padding: 69px 0 112px;
  background: var(--color-gray);
}
@media screen and (max-width: 959px) and (min-width: 500px) {
  .p-contact {
    padding: 103.5px 0 168px;
  }
}
@media not all and (max-width: 959px) {
  .p-contact {
    padding: 155px 0 117px;
  }
}
@media not all and (max-width: 959px) {
  .p-contact__container {
    display: flex;
  }
}
@media screen and (max-width: 959px) {
  .p-contact__header {
    margin-bottom: 31px;
  }
}
@media not all and (max-width: 959px) {
  .p-contact__header {
    width: 40%;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 959px) {
  .p-contact__ttl {
    width: 58%;
    max-width: 320px;
    margin: 0 auto;
  }
}
@media not all and (max-width: 959px) {
  .p-contact__ttl {
    width: 82%;
    padding-top: 5px;
  }
}
.p-contact__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 158%;
  padding-top: 76.7667844523%;
  background: url(../img/top/contact_title_bg.png) center center no-repeat;
  background-size: contain;
  transform: translate(-2%, -52%);
}
@media screen and (max-width: 959px) {
  .p-contact__ttl::before {
    left: 50%;
    width: 144%;
    padding-top: 69.964664311%;
    transform: translate(-50%, -57%);
  }
}
.p-contact__inner {
  position: relative;
}
@media not all and (max-width: 959px) {
  .p-contact__inner {
    flex-grow: 1;
  }
}
.p-contact__box {
  border: 4px solid var(--color-black);
  background: var(--color-white);
}
.p-contact__box-inner {
  width: 78%;
  margin: 0 auto;
  padding: 22px 0;
}
@media not all and (max-width: 959px) {
  .p-contact__box-inner {
    width: 88%;
    padding: 34px 0 31px;
  }
}
.p-contact__box-ttl {
  margin-bottom: 13px;
  font-weight: 800;
  font-size: 16px;
}
@media not all and (max-width: 959px) {
  .p-contact__box-ttl {
    margin-bottom: 9px;
  }
}
@media screen and (max-width: 959px) {
  .p-contact__box-ttl {
    text-align: center;
  }
}
.p-contact__box-tel {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
@media not all and (max-width: 959px) {
  .p-contact__box-tel {
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 959px) {
  .p-contact__box-tel {
    padding: 10px 0;
    background: var(--color-red);
    justify-content: center;
  }
}
.p-contact__box-tel .p-in-icon {
  width: 30px;
  margin-right: 6px;
}
@media screen and (max-width: 959px) {
  .p-contact__box-tel .p-in-icon {
    width: 30px;
    margin-right: 10px;
  }
}
.p-contact__box-tel .p-in-num {
  font-family: "Barlow", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  color: var(--color-red);
  font-size: 28px;
}
@media screen and (max-width: 959px) {
  .p-contact__box-tel .p-in-num {
    color: var(--color-white);
    font-size: 24px;
  }
}
.p-contact__box-txt {
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (max-width: 959px) {
  .p-contact__box-txt {
    text-align: center;
    font-size: 11px;
  }
}

.p-movie {
  position: relative;
  padding: 120px 0;
  background: var(--color-red);
}
@media screen and (max-width: 959px) {
  .p-movie {
    padding: 40px 0;
  }
}
.p-movie__bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: -webkit-clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.5s;
  transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.5s;
  transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.5s, -webkit-clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.5s;
}
.p-movie.is-active .p-movie__bg {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
.p-movie__bg-inner {
  width: calc(100% + 115px);
  padding-top: 133px;
  background: url(../img/top/bg_stripe.png) center left repeat-x;
  background-size: contain;
  animation: movie_line_pc 1.8s linear infinite;
}
@media screen and (max-width: 959px) {
  .p-movie__bg-inner {
    width: calc(100% + 51.88px);
    padding-top: 60px;
    animation-name: movie_line;
    animation-duration: 1s;
  }
}
.p-movie__container {
  max-width: 1000px;
  width: 89.3333333333%;
  margin: 0 auto;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.19, 0.92, 0.3, 1) 0s, opacity 0.4s cubic-bezier(0.19, 0.92, 0.3, 1) 0s;
}
.p-movie.is-active .p-movie__container {
  transform: translateY(0px);
  opacity: 1;
}
.p-movie__inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.p-movie__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-movie__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-movie__thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/shading_stripe.png) center center repeat;
  background-size: 27px auto;
}
.p-movie__thumb-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-movie__thumb-cover .p-in-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44.2%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 959px) {
  .p-movie__thumb-cover .p-in-play {
    width: 66.2%;
  }
}
@media (hover: hover) {
  .p-movie__thumb-cover .p-in-play {
    transition: transform 0.6s cubic-bezier(0.19, 0.92, 0.3, 1) 0s;
  }
  .p-movie__inner:hover .p-movie__thumb-cover .p-in-play {
    transform: translate(-50%, -50%) scale(0.95);
  }
}
.p-movie__thumb-cover .p-in-deco {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24%;
  padding-top: 26px;
  background: url(../img/top/line_stripe_white.png) center right repeat-x;
  background-size: auto 26px;
  transform: translate(0%, -50%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 91% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 91% 100%, 0% 100%);
  transition: transform 0.6s cubic-bezier(0.19, 0.92, 0.3, 1);
}
@media screen and (max-width: 959px) {
  .p-movie__thumb-cover .p-in-deco {
    width: 12%;
    padding-top: 5%;
    background-size: auto 100%;
    -webkit-clip-path: polygon(0 0, 107% 0, 71% 100%, 0% 100%);
    clip-path: polygon(0 0, 107% 0, 71% 100%, 0% 100%);
  }
}
@media (hover: hover) {
  .p-movie__inner:hover .p-movie__thumb-cover .p-in-deco {
    transform: translate(-10%, -50%);
  }
}
.p-movie__thumb-cover .p-in-deco:nth-child(2) {
  left: auto;
  right: 0;
  background-position: left center;
  -webkit-clip-path: polygon(11% 0, 100% 0%, 100% 100%, 0 100%);
  clip-path: polygon(11% 0, 100% 0%, 100% 100%, 0 100%);
}
@media screen and (max-width: 959px) {
  .p-movie__thumb-cover .p-in-deco:nth-child(2) {
    -webkit-clip-path: polygon(37% 0, 100% 0%, 100% 100%, 0 100%);
    clip-path: polygon(37% 0, 100% 0%, 100% 100%, 0 100%);
  }
}
@media (hover: hover) {
  .p-movie__inner:hover .p-movie__thumb-cover .p-in-deco:nth-child(2) {
    transform: translate(10%, -50%);
  }
}

.p-ticket__ttl {
  width: 38%;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .p-ticket__ttl {
    width: 68%;
  }
}
.p-ticket__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 108%;
  padding-top: 74.8442437923%;
  background: url(../img/ticket/title_bg.png) center center no-repeat;
  background-size: contain;
  transform: translate(-55%, -66%);
}
@media screen and (max-width: 959px) {
  .p-ticket__ttl::before {
    width: 97%;
    padding-top: 71.0775862069%;
    transform: translate(-55%, -62%);
  }
}
.p-ticket__footer {
  margin-top: 36px;
}
@media screen and (max-width: 959px) {
  .p-ticket__footer {
    margin-top: 15px;
  }
}
.p-ticket__footer-txt {
  margin-top: 12px;
  font-size: 13px;
}
@media screen and (max-width: 959px) {
  .p-ticket__footer-txt {
    margin-top: 15px;
    font-size: 11px;
  }
}
.p-ticket__footer-txt a {
  background: var(--color-red);
  color: var(--color-white);
}
.p-ticket__caution-item {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .p-ticket__caution-item {
    font-size: 11px;
  }
  .p-ticket__caution-item + .p-ticket__caution-item {
    margin-top: 10px;
  }
}

.p-ticket_article {
  border: 4px solid var(--color-black);
}
.p-ticket_article + .p-ticket_article {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .p-ticket_article + .p-ticket_article {
    margin-top: 20px;
  }
}
.p-ticket_article__header {
  background: var(--color-black);
  color: var(--color-white);
}
.p-ticket_article__header-wrap {
  width: 89%;
  margin: 0 auto;
  padding: 28px 0 34px;
}
@media screen and (max-width: 959px) {
  .p-ticket_article__header-wrap {
    padding: 13px 0 17px;
  }
}
.p-ticket_article__date {
  margin-bottom: 2px;
  color: var(--color-red);
  font-family: "Barlow", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 12px;
}
@media not all and (max-width: 959px) {
  .p-ticket_article__date {
    margin-bottom: 4px;
    font-size: 20px;
  }
}
.p-ticket_article__ttl {
  font-size: 28px;
}
@media screen and (max-width: 959px) {
  .p-ticket_article__ttl {
    font-size: 19px;
  }
}
.p-ticket_article__inner-wrap {
  width: 89%;
  margin: 0 auto;
  padding: 60px 0 90px;
}
@media screen and (max-width: 959px) {
  .p-ticket_article__inner-wrap {
    padding: 30px 0 41px;
  }
}




.p-notice__ttl {
  width: 38%;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .p-notice__ttl {
    width: 68%;
  }
}
.p-notice__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 108%;
  padding-top: 74.8442437923%;
  background: url(../img/notice/title_bg.png) center center no-repeat;
  background-size: contain;
  transform: translate(-55%, -66%);
}
@media screen and (max-width: 959px) {
  .p-notice__ttl::before {
    width: 97%;
    padding-top: 71.0775862069%;
    transform: translate(-55%, -62%);
  }
}
.p-notice__footer {
  margin-top: 36px;
}
@media screen and (max-width: 959px) {
  .p-notice__footer {
    margin-top: 15px;
  }
}
.p-notice__footer-txt {
  margin-top: 12px;
  font-size: 13px;
}
@media screen and (max-width: 959px) {
  .p-notice__footer-txt {
    margin-top: 15px;
    font-size: 11px;
  }
}
.p-notice__footer-txt a {
  background: var(--color-red);
  color: var(--color-white);
}
.p-notice__caution-item {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .p-notice__caution-item {
    font-size: 11px;
  }
  .p-notice__caution-item + .p-notice__caution-item {
    margin-top: 10px;
  }
}

.p-notice_article {
  border: 4px solid var(--color-black);
}
.p-notice_article + .p-notice_article {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .p-notice_article + .p-notice_article {
    margin-top: 20px;
  }
}
.p-notice_article__header {
  background: var(--color-black);
  color: var(--color-white);
}
.p-notice_article__header-wrap {
  width: 89%;
  margin: 0 auto;
  padding: 28px 0 34px;
}
@media screen and (max-width: 959px) {
  .p-notice_article__header-wrap {
    padding: 13px 0 17px;
  }
}
.p-notice_article__date {
  margin-bottom: 2px;
  color: var(--color-red);
  font-family: "Barlow", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 12px;
}
@media not all and (max-width: 959px) {
  .p-notice_article__date {
    margin-bottom: 4px;
    font-size: 20px;
  }
}
.p-notice_article__ttl {
  font-size: 28px;
}
@media screen and (max-width: 959px) {
  .p-notice_article__ttl {
    font-size: 19px;
  }
}
.p-notice_article__inner-wrap {
  width: 89%;
  margin: 0 auto;
  padding: 60px 0 90px;
}
@media screen and (max-width: 959px) {
  .p-notice_article__inner-wrap {
    padding: 30px 0 41px;
  }
}



.p-qa__ttl {
  width: 38%;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .p-qa__ttl {
    width: 68%;
  }
}
.p-qa__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 108%;
  padding-top: 74.8442437923%;
  background: url(../img/qa/title_bg.png) center center no-repeat;
  background-size: contain;
  transform: translate(-55%, -66%);
}
@media screen and (max-width: 959px) {
  .p-qa__ttl::before {
    width: 97%;
    padding-top: 71.0775862069%;
    transform: translate(-55%, -62%);
  }
}
.p-qa__footer {
  margin-top: 36px;
}
@media screen and (max-width: 959px) {
  .p-qa__footer {
    margin-top: 15px;
  }
}
.p-qa__footer-txt {
  margin-top: 12px;
  font-size: 13px;
}
@media screen and (max-width: 959px) {
  .p-qa__footer-txt {
    margin-top: 15px;
    font-size: 11px;
  }
}
.p-qa__footer-txt a {
  background: var(--color-red);
  color: var(--color-white);
}
.p-qa__caution-item {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .p-qa__caution-item {
    font-size: 11px;
  }
  .p-qa__caution-item + .p-qa__caution-item {
    margin-top: 10px;
  }
}

.p-qa_article {
  border: 4px solid var(--color-black);
}
.p-qa_article + .p-qa_article {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .p-qa_article + .p-qa_article {
    margin-top: 20px;
  }
}
.p-qa_article__header {
  background: var(--color-black);
  color: var(--color-white);
}
.p-qa_article__header-wrap {
  width: 89%;
  margin: 0 auto;
  padding: 28px 0 34px;
}
@media screen and (max-width: 959px) {
  .p-qa_article__header-wrap {
    padding: 13px 0 17px;
  }
}
.p-qa_article__date {
  margin-bottom: 2px;
  color: var(--color-red);
  font-family: "Barlow", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 12px;
}
@media not all and (max-width: 959px) {
  .p-qa_article__date {
    margin-bottom: 4px;
    font-size: 20px;
  }
}
.p-qa_article__ttl {
  font-size: 28px;
}
@media screen and (max-width: 959px) {
  .p-qa_article__ttl {
    font-size: 19px;
  }
}
.p-qa_article__inner-wrap {
  width: 89%;
  margin: 0 auto;
  padding: 60px 0 90px;
}
@media screen and (max-width: 959px) {
  .p-qa_article__inner-wrap {
    padding: 30px 0 41px;
  }
}




@media not all and (max-width: 959px) {
  .p-fixbnr {
    position: absolute;
    bottom: 0;
    right: 0px;
    transform: translateY(calc(100% + 3px));
    overflow: hidden;
  }
}
@media screen and (max-width: 959px) {
  .p-fixbnr {
    transform: translateY(30px);
    opacity: 0;
  }
  .is-menu-open .p-fixbnr {
    transition: transform 0.8s cubic-bezier(0.19, 0.92, 0.3, 1) 0.3s, opacity 0.4s cubic-bezier(0.19, 0.92, 0.3, 1) 0.3s;
    transform: translateY(0px);
    opacity: 1;
  }
}
@media screen and (max-width: 959px) {
  .p-fixbnr.--fix {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    transform: translateY(100%);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.19, 0.92, 0.3, 1);
  }
  .is-scrolled .p-fixbnr.--fix {
    transform: translateY(0%);
  }
  .is-reachBtm .p-fixbnr.--fix {
    position: absolute;
    transform: translateY(0%);
  }
}
@media not all and (max-width: 959px) {
  .p-fixbnr__list {
    display: flex;
    border: 5px solid var(--color-white);
    border-top: none;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.19, 0.92, 0.3, 1) 0.5s;
  }
  .is-load .p-fixbnr__list {
    transform: translateY(0%);
  }
}
@media screen and (max-width: 959px) {
  .--fix .p-fixbnr__list {
    /* border-top: 3px solid var(--color-white); */
    display: flex;
  }
}
@media not all and (max-width: 959px) {
  .p-fixbnr__list-item + .p-fixbnr__list-item {
    border-left: 5px solid var(--color-white);
  }
}
@media screen and (max-width: 959px) {
  .p-fixbnr__list-item {
    border: 3px solid var(--color-white);
  }
  .p-fixbnr__list-item + .p-fixbnr__list-item {
    margin-top: 10px;
  }
}
@media screen and (max-width: 959px) {
  .--fix .p-fixbnr__list-item {
    width: 50%;
    border: none;
    border: 3px solid var(--color-white);
  }
  .--fix .p-fixbnr__list-item + .p-fixbnr__list-item {
    margin-top: 0;
    border-left: 3px solid var(--color-white);
  }
}
.p-fixbnr__link {
  position: relative;
  display: block;
  background: var(--color-red);
  overflow: hidden;
}
.p-fixbnr__link.ticket03{
  background: #4472c4;
}
.p-fixbnr__link.ticket04{
  background: #00b050;
}
.p-fixbnr__link.ticket05{
  background: #00b050;
  height: 37.422px;
  line-height: 1.2;
}
@media not all and (max-width: 959px) {
  .p-fixbnr__link {
    width: 192px;
    padding: 8px 0;
  }
}
@media screen and (max-width: 959px) {
  .p-fixbnr__link {
    padding: 10px 0 9px;
  }
  .p-fixbnr__link.ticket05{
    height: 30.406px;
    line-height: 1.1;
  }
}
.p-fixbnr__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 125%;
  height: 100%;
  background: var(--color-black);
  transform: skewX(-15deg) translateX(-150%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (hover: hover) {
  .p-fixbnr__link:hover::before {
    transform: skewX(-15deg) translateX(-50%);
  }
}
.p-fixbnr__txt {
  position: relative;
  text-align: center;
  font-weight: 700;
  color: var(--color-white);
}
.p-fixbnr__txt small {
  display: block;
  font-size: 80%;
}




.goods__ttl {
  width: 38%;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .goods__ttl {
    width: 68%;
  }
}
.goods__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 108%;
  padding-top: 74.8442437923%;
  background: url(../img/goods/title_bg.png) center center no-repeat;
  background-size: contain;
  transform: translate(-55%, -66%);
}
@media screen and (max-width: 959px) {
  .goods__ttl::before {
    width: 97%;
    padding-top: 71.0775862069%;
    transform: translate(-55%, -62%);
  }
}
.goods__footer {
  margin-top: 36px;
}
@media screen and (max-width: 959px) {
  .goods__footer {
    margin-top: 15px;
  }
}
.goods__footer-txt {
  margin-top: 12px;
  font-size: 13px;
}
@media screen and (max-width: 959px) {
  .goods__footer-txt {
    margin-top: 15px;
    font-size: 11px;
  }
}
.goods__footer-txt a {
  background: var(--color-red);
  color: var(--color-white);
}
.goods__caution-item {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .goods__caution-item {
    font-size: 11px;
  }
  .goods__caution-item + .goods__caution-item {
    margin-top: 10px;
  }
}

.goods_article {
  border: 4px solid var(--color-black);
}
.goods_article + .goods_article {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .goods_article + .goods_article {
    margin-top: 20px;
  }
}
.goods_article__header {
  background: var(--color-black);
  color: var(--color-white);
}
.goods_article__header-wrap {
  width: 89%;
  margin: 0 auto;
  padding: 28px 0 34px;
}
@media screen and (max-width: 959px) {
  .goods_article__header-wrap {
    padding: 13px 0 17px;
  }
}
.goods_article__date {
  margin-bottom: 2px;
  color: var(--color-red);
  font-family: "Barlow", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 12px;
}
@media not all and (max-width: 959px) {
  .goods_article__date {
    margin-bottom: 4px;
    font-size: 20px;
  }
}
.goods_article__ttl {
  font-size: 28px;
}
@media screen and (max-width: 959px) {
  .goods_article__ttl {
    font-size: 19px;
  }
}
.goods_article__inner-wrap {
  width: auto;
  margin: 0 auto;
  padding:0px;
}
@media screen and (max-width: 959px) {
  .goods_article__inner-wrap {
    padding: 0px;
  }
}
.modal{
  display: none;
}
.c-article .goods-tabole a{
  color: #000;
}
.goods-tabole ul li{
  text-indent:0;
}
.modal p{
  line-height: 1.4;
}
.modal-goods-txt01{
  font-size: 1.2em;
}
.modal-goods-txt02{
  font-size: 1.1em;
  padding-bottom: 20px;
}
.modal-goods-txt03{
  font-weight: normal;
}
.modal-goods-txt03 span {
  text-indent: 3.8em;
}
.modal-goods-txt04{
  font-weight: normal;
}

.attention-block{
    width: 89%;
    margin: 0 auto;
    padding: 60px 0 90px;
}
.goods__container .goods__inner:nth-of-type(3){
  margin-top: 50px;
}
.attention-block ul.indent-goods{
  padding: 10px 0;
}
.attention-block__btn ul{
  display: flex;
  gap: 20px;
}
.attention-block__img{
  margin: 70px auto 20px;
}
.attention-block__txt{
  margin-top: 30px;
}

@media not all and (max-width: 959px) {
  .attention-block__btn ul{
    gap: 40px;
  }
}

/* 
**************
map
展示マップ
**************
*/
.map__ttl {
  width: 70%;
  margin: 0 auto;
  max-width: 618px;
}
@media screen and (max-width: 959px) {
  .map__ttl {
    width: 93%;
  }
}
.map__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 108%;
  max-width: 487px;
  padding-top: 74.8442437923%;
  background: url(../img/map/title_bg.png) center center no-repeat;
  background-size: contain;
  transform: translate(-55%, -66%);
}
@media screen and (max-width: 959px) {
  .map__ttl::before {
    width: 97%;
    padding-top: 71.0775862069%;
    transform: translate(-55%, -62%);
  }
}

.map_article {
  /* height: 1200px; */
}

@media screen and (max-width: 959px) {
  .map_article + .map_article {
    margin-top: 20px;
  }
}
.map_article__header {
  background: var(--color-black);
  color: var(--color-white);
}
.map_article__header-wrap {
  width: 89%;
  margin: 0 auto;
  padding: 28px 0 34px;
}
@media screen and (max-width: 959px) {
  .map_article__header-wrap {
    padding: 13px 0 17px;
  }
}
.map_article__inner-wrap {
  width: auto;
  margin: 0 auto;
  padding:0px;
}
@media screen and (max-width: 959px) {
  .map_article__inner-wrap {
    padding: 0px;
  }
}