@charset "UTF-8";
/*
    colors
*/
html, body, div, span, object, iframe,
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, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

h1, h2, h3, h4, h5, h6, p, div, ul, ol, li, dl, dt, dd, a {
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #FFFFFF;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

main {
  display: block;
  box-sizing: border-box;
}

/* All device width ============================================================================*/
body {
  font-size: 10px;
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  line-height: 1.75;
  color: #FFFFFF;
  background-color: #000000;
}

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

@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scrollbar {
  0% {
    width: 100%;
  }
  60% {
    width: 0%;
  }
  100% {
    width: 0%;
  }
}
/* PC ==========================================================================================*/
@media screen and (min-width: 769px) {
  .sp-view {
    display: none;
  }
  html {
    font-size: 10px;
  }
  body {
    min-width: 878px;
  }
}
/* SP ==========================================================================================*/
@media screen and (max-width: 768px) {
  .pc-view {
    display: none;
  }
  html {
    font-size: 2.6666666667vw;
  }
  body {
    font-size: 1.6rem;
  }
  /* menu button */
  .menu_btn {
    width: 35px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 11;
    cursor: pointer;
  }
  .menu_btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #fff;
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .menu_btn span:nth-of-type(1) {
    top: 0;
  }
  .menu_btn span:nth-of-type(2) {
    top: 13px;
  }
  .menu_btn span:nth-of-type(3) {
    bottom: 0;
  }
  .menu_btn.active span:nth-of-type(1) {
    transform: translateY(13px) rotate(-45deg);
  }
  .menu_btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu_btn.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
  }
  /* menu button END */
}
/****************************************************
common parts
****************************************************/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px 0;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 3.3vw 0;
  }
}
.l-header__inner {
  max-width: 1082px;
  height: 35px;
  margin: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.l-header__logo {
  width: 150px;
  position: absolute;
  left: 100px;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 40%;
    left: 2.7%;
  }
}
.l-header__nav {
  align-items: center;
  opacity: 1;
  transition: all 0.5s ease-out;
}
@media screen and (min-width: 769px) {
  .l-header__nav {
    display: flex;
  }
}
.l-header__nav.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.l-header__nav__menu {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
  display: flex;
  flex-wrap: nowrap;
}
.l-header__nav__menu li {
  padding: 0px 28px;
  border-right: 1px solid #FFFFFF;
}
.l-header__nav__menu li:last-child {
  padding-right: 18px;
  border-right: none;
}
.l-header__nav__menu li a {
  display: block;
}
.l-header__nav__icons {
  display: flex;
  align-items: center;
  padding-right: 12px;
}
.l-header__nav__icons__icon {
  margin-left: 10px;
}
.l-header__nav__icons__icon.youtube {
  width: 17px;
}
.l-header__nav__icons__icon.twitter {
  width: 18px;
}
.l-header__nav__icons__icon.facebook {
  width: 16px;
}
.l-header__nav__icons__icon.instagram {
  width: 17px;
}
@media screen and (max-width: 768px) {
  .l-header__navSp {
    width: 80%;
    height: 100vh;
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #CF1225;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
  }
  .l-header__navSp.is-active {
    transform: translateX(0);
  }
  .l-header__navSp__closeButton {
    position: absolute;
    top: 3.6vw;
    right: 3.6vw;
    width: 7.6vw;
    height: 7.6vw;
  }
  .l-header__navSp__closeButton::before, .l-header__navSp__closeButton::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #FFFFFF;
    transform-origin: center;
  }
  .l-header__navSp__closeButton::before {
    transform: rotate(45deg);
  }
  .l-header__navSp__closeButton::after {
    transform: rotate(-45deg);
  }
  .l-header__navSp__inner {
    padding: 17.7vw 3.3vw 10vw 6.3vw;
  }
  .l-header__navSp__menu {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .l-header__navSp__menu li + li {
    margin-top: 4.7vw;
  }
  .l-header__navSp__menu li.has-underlayer span {
    position: relative;
  }
  .l-header__navSp__menu li.has-underlayer span::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    right: -15px;
    bottom: 0;
    margin: auto;
    border-top: 3px solid #FFFFFF;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    transform-origin: center;
    transition: transform 0.3s ease-out;
  }
  .l-header__navSp__menu li.has-underlayer.is-active span::after {
    transform: rotate(180deg);
  }
  .l-header__navSp__menu__lineupList {
    display: none;
  }
  .l-header__navSp__menu__lineupList dt {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: -0.2em;
  }
  .l-header__navSp__menu__lineupList dd {
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 1.52;
  }
  .l-header__navSp__menu__lineupList dd a::before {
    content: "・";
  }
  .l-header__navSp__icons {
    display: flex;
    align-items: center;
    margin-top: 11vw;
  }
  .l-header__navSp__icons__icon {
    margin-right: 4.9vw;
  }
  .l-header__navSp__icons__icon.youtube {
    width: 8vw;
  }
  .l-header__navSp__icons__icon.twitter {
    width: 8.6vw;
  }
  .l-header__navSp__icons__icon.facebook {
    width: 7.6vw;
  }
  .l-header__navSp__icons__icon.instagram {
    width: 8.5vw;
  }
  .l-header__navSp__icons__icon img {
    width: 100%;
  }
}
.l-header__menuButton {
  position: absolute;
  top: 5.3vw;
  right: 4vw;
  width: 8vw;
  height: 5.9vw;
}
.l-header__menuButton span {
  display: block;
  height: 2px;
  position: absolute;
  right: 0;
  background-color: #FFFFFF;
}
.l-header__menuButton span:nth-child(1) {
  width: 100%;
  top: 0;
}
.l-header__menuButton span:nth-child(2) {
  width: 85%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.l-header__menuButton span:nth-child(3) {
  width: 65%;
  bottom: 0;
}

.l-footer {
  background-color: #000000;
  position: relative;
  z-index: 100;
  padding-top: 75px;
  padding-bottom: 155px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-top: 23vw;
    padding-bottom: 27vw;
  }
}
.l-footer__logo {
  width: 302px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    width: 60vw;
  }
}
.l-footer__copyright {
  font-size: 1.8rem;
  margin-top: 26px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright {
    font-size: 1.35rem;
    margin-top: 5vw;
  }
}

.l-container {
  width: 100%;
  overflow: hidden;
}
.l-container__left {
  width: 231px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #000000;
  color: #FFFFFF;
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
  z-index: 101;
}
@media screen and (max-width: 768px) {
  .l-container__left {
    width: 16.9vw;
    position: absolute;
    background: none;
  }
}
.l-container__left.lowerPage .l-container__left__txt {
  padding-top: 90px;
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .l-container__left.lowerPage {
    display: none;
  }
}
.l-container__left__txt {
  height: 100%;
  font-weight: bold;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  right: 10px;
  transition: all 0.5s ease-out;
  transform: translateY(100px);
  opacity: 0;
}
.l-container__left__txt__mainVisual__main {
  font-size: 4.5rem;
  letter-spacing: 0.19em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-container__left__txt__mainVisual__main {
    font-size: 2.7rem;
  }
}
.l-container__left__txt__mainVisual__main::before, .l-container__left__txt__mainVisual__main::after {
  content: "";
  display: block;
  width: 2px;
  height: 35px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .l-container__left__txt__mainVisual__main::before, .l-container__left__txt__mainVisual__main::after {
    width: 1px;
    height: 6vw;
  }
}
.l-container__left__txt__mainVisual__main::before {
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .l-container__left__txt__mainVisual__main::before {
    margin-bottom: 2.1vw;
  }
}
.l-container__left__txt__mainVisual__main::after {
  margin-top: 14px;
}
.l-container__left__txt__mainVisual__sub {
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.2em;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .l-container__left__txt__mainVisual__sub {
    font-size: 1.2rem;
    margin-top: 5vw;
  }
}
.l-container__left__txt.mainVisual {
  padding-top: 72px;
  display: flex;
  flex-direction: row;
  align-items: center;
  top: 0;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .l-container__left__txt.mainVisual {
    position: fixed;
    bottom: 5vw;
    top: auto;
    right: auto;
    left: 5vw;
    padding-top: 23vw;
  }
}
.l-container__left__txt.mainVisual.is-active {
  opacity: 1;
  transform: translateY(0);
}
.l-container__left__txt.about {
  padding-top: 115px;
  top: 0;
  right: 10px;
  font-size: 2.8rem;
}
.l-container__left__txt.about.is-active {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .l-container__left__txt.about {
    display: none;
  }
}
.l-container__left__txt.lineup {
  padding-top: 115px;
  top: 0;
  right: 10px;
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .l-container__left__txt.lineup {
    display: none;
  }
}
.l-container__left__txt.lineup.is-active {
  opacity: 1;
  transform: translateY(0);
}
.l-container__left__scroll {
  position: absolute;
  right: 132px;
  bottom: 0;
  width: 125px;
  transform-origin: right bottom;
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .l-container__left__scroll {
    right: 10vw;
    width: 27vw;
    transition: opacity 0.3s ease-out;
    opacity: 1;
  }
  .l-container__left__scroll.is-hideSp {
    opacity: 0;
  }
}
.l-container__left__scroll__txt {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .l-container__left__scroll__txt {
    font-size: 1.05rem;
  }
}
.l-container__left__scroll__bar {
  display: block;
  width: 100%;
  height: 4px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.l-container__left__scroll__bar__ball {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #FFFFFF;
}
.l-container__left__scroll__bar::before, .l-container__left__scroll__bar::after {
  content: "";
  display: block;
  width: 100%;
  background-color: #FFFFFF;
}
.l-container__left__scroll__bar::before {
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.l-container__left__scroll__bar::after {
  height: 2px;
  animation: scrollbar 2s ease-in-out infinite;
}
.l-container__right {
  padding-left: 231px;
}
@media screen and (max-width: 768px) {
  .l-container__right {
    width: 100%;
    padding-left: 0;
  }
}

.l-contents {
  width: 100%;
  position: relative;
  z-index: 100;
}

.l-inner {
  max-width: 878px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 90%;
  }
}

.c-scrollButton {
  width: 63px;
  height: 63px;
  position: fixed;
  right: 26px;
  bottom: 30px;
  z-index: 100;
}
.c-scrollButton.is-colo#d73031 {
  mix-blend-mode: difference;
}
.c-scrollButton img {
  filter: drop-shadow(0 0 0.75em #222222);
}

.c-button--columnMore {
  width: 188px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .c-button--columnMore {
    width: 56vw;
    font-size: 1.6rem;
  }
}
.c-button--columnMore a {
  display: block;
  padding: 6px 0;
  color: #000000;
  background-color: #CCCCCC;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .c-button--columnMore a {
    padding: 1.7vw 0;
    border-radius: 5vw;
  }
}

/*
    fonts
*/
.u-font-helvetica {
  font-family: Helvetica, sans-serif;
}

.u-link__underline {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .u-link__underline:hover {
    text-decoration: none;
  }
}

/*
    animation
*/
.js-inview {
  transform: translate(0, 20px);
  opacity: 0;
  transition-property: opacity transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.js-inview.is-shown {
  transform: translate(0);
  opacity: 1;
}

/*
    Q&A section
*/
.c-faq {
  background-color: #000000;
  padding: 50px 0 0;
}
@media screen and (max-width: 768px) {
  .c-faq {
    padding: 23vw 0 0;
  }
}
.c-faq__ttl {
  text-align: center;
}
.c-faq__ttl img {
  width: 136px;
}
@media screen and (max-width: 768px) {
  .c-faq__ttl img {
    width: 27vw;
  }
}
.c-faq__list {
  margin-top: 53px;
  margin-bottom: 92px;
}
@media screen and (max-width: 768px) {
  .c-faq__list {
    margin-top: 6.3vw;
    margin-bottom: 11.9vw;
  }
}
.c-faq__list__question {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 13px 10px 17px;
  border-bottom: 1px solid #CF1225;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-faq__list__question {
    font-size: 1.65rem;
    padding: 4.8vw 8vw 4.8vw 0;
  }
}
.c-faq__list__question::before {
  content: "Q.";
  padding-right: 0.3em;
}
.c-faq__list__question::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #CF1225;
  position: absolute;
  top: 10px;
  right: 2px;
  bottom: 0;
  margin: auto;
  transform-origin: center;
  transform: rotate(-45deg);
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .c-faq__list__question::after {
    width: 3vw;
    height: 3vw;
    top: 3vw;
    right: 2.3vw;
  }
}
.c-faq__list__question.is-active::after {
  top: 10px;
  transform: rotate(135deg);
}
@media screen and (max-width: 768px) {
  .c-faq__list__question.is-active::after {
    top: 1vw;
  }
}
.c-faq__list__answer {
  display: none;
  padding: 14px 10px 34px;
}
@media screen and (max-width: 768px) {
  .c-faq__list__answer {
    padding: 4vw 0 0;
  }
}
.c-faq__list__answer__head {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-faq__list__answer__head {
    font-size: 1.6rem;
  }
}
.c-faq__list__answer__head::before {
  content: "A.";
  padding-right: 0.3em;
}
.c-faq__list__answer__desc {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-faq__list__answer__desc {
    font-size: 1.3rem;
  }
}
.c-faq__list__answer__desc a {
  text-decoration: underline;
  word-break: break-all;
}
@media screen and (min-width: 769px) {
  .c-faq__list__answer__desc a:hover {
    text-decoration: none;
  }
}
.c-faq__contactButton {
  width: 266px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .c-faq__contactButton {
    width: 53vw;
    font-size: 1.8rem;
  }
}
.c-faq__contactButton a {
  display: block;
  padding: 6px 0;
  color: #CF1225;
  background-color: #000000;
  border: 3px solid #CF1225;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .c-faq__contactButton a {
    padding: 1.3vw 0;
    border-radius: 6vw;
  }
}
@media screen and (min-width: 769px) {
  .c-faq__contactButton a {
    transition: all 0.3s ease-out;
  }
}
@media screen and (min-width: 769px) {
  .c-faq__contactButton:hover a {
    color: #000000;
    background-color: #CF1225;
  }
}

.c-others__flexBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 73px;
}
@media screen and (max-width: 768px) {
  .c-others__flexBox {
    margin-top: 30vw;
  }
}
.c-others__flexBox__twitter {
  width: 345px;
}
@media screen and (max-width: 768px) {
  .c-others__flexBox__twitter {
    width: 100%;
    text-align: center;
  }
}
.c-others__flexBox__movie {
  width: calc(100% - 373px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-others__flexBox__movie {
    width: 100%;
    margin-top: 7.2vw;
  }
}
.c-others__flexBox__movie::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.c-others__flexBox__movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-others__bnr {
  width: 728px;
  margin: 104px auto 0;
}
@media screen and (max-width: 768px) {
  .c-others__bnr {
    width: 100%;
    margin: 8.7vw auto 0;
  }
}

/****************************************************
pages
****************************************************/
.p-top__loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top__loading__inner {
  text-align: center;
}
.p-top__loading__loader, .p-top__loading__loader::after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.p-top__loading__loader {
  margin: 60px auto;
  font-size: 1rem;
  color: transparent;
  position: relative;
  border-top: 1.1em solid rgba(207, 18, 37, 0.3);
  border-right: 1.1em solid rgba(207, 18, 37, 0.3);
  border-bottom: 1.1em solid rgba(207, 18, 37, 0.3);
  border-left: 1.1em solid #CF1225;
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
}
.p-top__loading__txt {
  min-height: 1em;
  font-size: 1.6rem;
  color: #CF1225;
}
.p-top__bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: #000000;
  z-index: 1;
}
.p-top__bg__filter {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/top/mv_filter.png") no-repeat bottom center/cover;
  z-index: 2;
}
.p-top__bg video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-top__mainVisual__filter {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.p-top__section {
  position: relative;
  z-index: 2;
}
.p-top__mainVisual {
  width: 100%;
  height: 100vh;
}
.p-top__mainVisual__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-top__mainVisual__logo {
  width: 657px;
  height: 205px;
  position: absolute;
  top: 0;
  right: 150px;
  bottom: 180px;
  left: 0;
  margin: auto;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .p-top__mainVisual__logo {
    width: 81%;
    height: 25.4vw;
    right: 0;
    bottom: 15vw;
  }
}
.p-top__mainVisual__catchphrase {
  width: 657px;
  height: 44px;
  position: absolute;
  top: 0;
  right: 150px;
  bottom: -200px;
  left: 0;
  margin: auto;
  font-size: 1.4rem;
  line-height: 1.93;
  text-align: center;
  color: #FFFFFF;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .p-top__mainVisual__catchphrase {
    width: 81%;
    height: 4em;
    font-size: 1.1rem;
    line-height: 1.65;
    right: 0;
    bottom: -29.2vw;
  }
}
.p-top__mainVisual__txt {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.58;
  letter-spacing: 0.21em;
  font-feature-settings: "palt";
  opacity: 0.3;
  text-shadow: 7px 7px 5px rgba(0, 0, 0, 0.75);
  position: absolute;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-top__mainVisual__txt {
    font-size: 1.5rem;
  }
}
.p-top__mainVisual__txt.first {
  top: 54px;
  left: 74px;
  font-size: 2.4rem;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .p-top__mainVisual__txt.first {
    top: auto;
    bottom: 2vw;
    left: 17.6vw;
    font-size: 1.5rem;
  }
}
.p-top__mainVisual__txt.second {
  top: 43px;
  right: 101px;
}
@media screen and (max-width: 768px) {
  .p-top__mainVisual__txt.second {
    top: 21.7vw;
    right: 7vw;
  }
}
.p-top__mainVisual__txt.third {
  bottom: 145px;
  left: 21px;
  font-size: 2.8rem;
  line-height: 1.43;
}
@media screen and (max-width: 768px) {
  .p-top__mainVisual__txt.third {
    bottom: 18vw;
    left: 46vw;
    width: 49%;
    font-size: 1.4rem;
  }
}
.p-top__mainVisual__txt.fourth {
  right: 178px;
  bottom: 110px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .p-top__mainVisual__txt.fourth {
    right: 6.5vw;
    bottom: auto;
    top: 40vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top__about {
    padding-top: 9.5vw;
  }
}
.p-top__about__catchphrase {
  font-size: 2.1rem;
  font-weight: bold;
  background: #000000;
  width: 81.2%;
  padding: 10vw 0 9vw 5.4vw;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  position: relative;
}
.p-top__about__catchphrase::before {
  content: "";
  display: block;
  background-color: #000000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
}
.p-top__about__catchphrase.is-shown {
}
.p-top__about__catchphrase.is-shown::before {
  transform: scaleX(0);
}
.p-top__about__overview {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-top__about__overview {
    padding-top: 13vw;
  }
}
.p-top__about__overview__ttl {
  width: 338px;
  margin: auto;
  transition-property: opacity transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
@media screen and (max-width: 768px) {
  .p-top__about__overview__ttl {
    width: 73%;
  }
}
.p-top__about__overview__flexBox {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .p-top__about__overview__flexBox {
    display: block;
    margin-top: 9.5vw;
  }
}
.p-top__about__overview__flexBox__txt {
  width: 47%;
  padding-top: 45px;
}
@media screen and (max-width: 768px) {
  .p-top__about__overview__flexBox__txt {
    width: 100%;
    padding-top: 7vw;
  }
}
.p-top__about__overview__flexBox__txt h3 {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .p-top__about__overview__flexBox__txt h3 {
    font-size: 1.5rem;
  }
}
.p-top__about__overview__flexBox__txt p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.78;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-top__about__overview__flexBox__txt p {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .p-top__about__overview__flexBox__txt p + p {
    margin-top: 1.3em;
  }
}
.p-top__about__overview__flexBox__txt__link {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.78;
  margin-top: 26px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-top__about__overview__flexBox__txt__link {
    font-size: 1.3rem;
    margin-top: 5.8vw;
  }
}
.p-top__about__overview__flexBox__txt__link::before {
  content: ">>";
  font-weight: normal;
}
.p-top__about__overview__flexBox__txt__link a {
  margin-left: 3px;
}
.p-top__about__overview__flexBox__txt__link a:link, .p-top__about__overview__flexBox__txt__link a:visited {
  color: #FFFFFF;
}
.p-top__about__overview__flexBox__txt__link a span {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 3px;
}
.p-top__about__overview__flexBox__txt__link a:hover span {
  border-bottom: none;
}
.p-top__about__overview__flexBox__img {
  width: 53%;
  margin-right: -1%;
}
@media screen and (max-width: 768px) {
  .p-top__about__overview__flexBox__img {
    width: 78.5%;
    margin: auto;
    padding-right: 9.9%;
  }
}
.p-top__about__overview__ttl {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease-out;
}
.p-top__about__overview__flexBox__txt h3, .p-top__about__overview__flexBox__txt p, .p-top__about__overview__flexBox__txt__link {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .p-top__about__overview__flexBox__txt h3, .p-top__about__overview__flexBox__txt p, .p-top__about__overview__flexBox__txt__link {
    transition-duration: 1s;
  }
}
.p-top__about__overview__flexBox__txt h3 {
  transition-delay: 0.3s;
}
.p-top__about__overview__flexBox__txt p, .p-top__about__overview__flexBox__txt__link {
  transition-delay: 0.4s;
}
.p-top__about__overview__flexBox__img {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease-out;
  transition-delay: 0.2s;
}
.p-top__about__overview.is-entered .p-top__about__overview__ttl {
  transform: translateY(0);
  opacity: 1;
}
.p-top__about__overview.is-entered .p-top__about__overview__flexBox__txt h3, .p-top__about__overview.is-entered .p-top__about__overview__flexBox__txt p, .p-top__about__overview.is-entered .p-top__about__overview__flexBox__txt__link {
  transform: translateY(0);
  opacity: 1;
}
.p-top__about__overview.is-entered .p-top__about__overview__flexBox__img {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-top__about__overview.is-shown .p-top__about__overview__ttl {
    transform: translateY(0);
    opacity: 1;
  }
  .p-top__about__overview.is-shown .p-top__about__overview__flexBox__txt h3, .p-top__about__overview.is-shown .p-top__about__overview__flexBox__txt p, .p-top__about__overview.is-shown .p-top__about__overview__flexBox__txt__link {
    transform: translateY(0);
    opacity: 1;
  }
  .p-top__about__overview.is-shown .p-top__about__overview__flexBox__img {
    transform: translateY(0);
    opacity: 1;
  }
}
.p-top__about__explanatoryDrawing {
  padding-top: 75px;
  width: 100%;
  /*position: absolute;*/
  top: 0;
  left: 0;
  transform-origin: left top;
}
@media screen and (max-width: 768px) {
  .p-top__about__explanatoryDrawing {
    padding-top: 26.5vw;
    width: 90%;
    margin: auto;
  }
  .p-top__about__explanatoryDrawing--sp {
    margin-top: 27vw;
  }
}
.p-top__about__explanatoryDrawing__wrap {
  position: relative;
}
.p-top__about__explanatoryDrawing__wrap img {
  width: 100%;
}
.p-top__about__explanatoryDrawing__txt {
  width: 37.9%;
  position: absolute;
  top: 37.9%;
  right: 0;
}
.p-top__about__explanatoryDrawing__line {
  position: absolute;
}
.p-top__about__explanatoryDrawing__line.first {
  width: 30%;
  top: 9.1%;
  left: 44.4%;
}
.p-top__about__explanatoryDrawing__line.second {
  width: 25.8%;
  top: 25%;
  left: 3.6%;
}
.p-top__about__explanatoryDrawing__line.third {
  width: 14.5%;
  top: 54.4%;
  left: 7.7%;
}
.p-top__about__explanatoryDrawing__line.fourth {
  width: 26.8%;
  top: 67.6%;
  left: 59.9%;
}
.p-top__about__detail {
  padding-top: 115px;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .p-top__about__detail {
    padding-top: 26vw;
    padding-bottom: 17.6vw;
  }
}
.p-top__about__detail__list__item {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__list__item {
    display: block;
  }
}
.p-top__about__detail__list__item__txt {
  width: 50%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__list__item__txt {
    width: 100%;
  }
}
.p-top__about__detail__list__item__txt h3 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.44;
  position: relative;
  padding-bottom: 17px;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__list__item__txt h3 {
    font-size: 2.1rem;
    padding: 2.1vw 0 3.5vw;
    margin-bottom: 3.6vw;
  }
}
.p-top__about__detail__list__item__txt h3::before, .p-top__about__detail__list__item__txt h3::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #CF1225;
  position: absolute;
  bottom: 0;
}
.p-top__about__detail__list__item__txt h3::before {
  width: 100%;
  left: 0;
}
.p-top__about__detail__list__item__txt h3::after {
  width: 62px;
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__list__item__txt h3::after {
    width: 14.7vw;
  }
}
.p-top__about__detail__list__item__txt p {
  font-size: 1.4rem;
  font-weight: 500;
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__list__item__txt p {
    font-size: 1.3rem;
  }
  .p-top__about__detail__list__item__txt p span {
    font-size: 1.2rem;
  }
}
.p-top__about__detail__list__item__img {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__list__item__img {
    width: 100%;
  }
  .p-top__about__detail__list__item__img img {
    width: 65%;
  }
}
.p-top__about__detail__list__item:nth-of-type(2n-1) {
  flex-direction: row-reverse;
}
.p-top__about__detail__list__item:nth-of-type(2n-1) .p-top__about__detail__list__item__txt {
  padding-right: 5.8%;
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__list__item:nth-of-type(2n-1) .p-top__about__detail__list__item__txt {
    padding-right: 11.9%;
  }
}
.p-top__about__detail__list__item:nth-of-type(2n-1) .p-top__about__detail__list__item__txt h3 {
  transform: translate(20px, 20px);
}
.p-top__about__detail__list__item:nth-of-type(2n-1) .p-top__about__detail__list__item__txt h3.is-shown {
  transform: translate(0);
}
.p-top__about__detail__list__item:nth-of-type(2n-1) .p-top__about__detail__list__item__txt h3::after {
  right: 0;
  transform-origin: right;
  transform: rotate(-145deg);
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__list__item:nth-of-type(2n-1) .p-top__about__detail__list__item__txt h3::after {
    transform: rotate(112deg);
  }
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__list__item:nth-of-type(2n-1) .p-top__about__detail__list__item__img {
    text-align: right;
  }
}
.p-top__about__detail__list__item:nth-of-type(2n) .p-top__about__detail__list__item__txt {
  padding-left: 5.8%;
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__list__item:nth-of-type(2n) .p-top__about__detail__list__item__txt {
    padding-left: 13.9%;
  }
}
.p-top__about__detail__list__item:nth-of-type(2n) .p-top__about__detail__list__item__txt h3 {
  transform: translate(-20px, 20px);
}
.p-top__about__detail__list__item:nth-of-type(2n) .p-top__about__detail__list__item__txt h3.is-shown {
  transform: translate(0);
}
.p-top__about__detail__list__item:nth-of-type(2n) .p-top__about__detail__list__item__txt h3::after {
  left: 0;
  transform-origin: left;
  transform: rotate(145deg);
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__list__item:nth-of-type(2n) .p-top__about__detail__list__item__txt h3::after {
    transform: rotate(252deg);
  }
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__list__item:nth-of-type(3) .p-top__about__detail__list__item__txt h3 {
    line-height: 1.8;
    padding-bottom: 2.7vw;
  }
  .p-top__about__detail__list__item:nth-of-type(3) .p-top__about__detail__list__item__txt h3::after {
    transform: rotate(104deg);
    width: 24.7vw;
  }
  .p-top__about__detail__list__item:nth-of-type(4) .p-top__about__detail__list__item__txt h3 {
    text-align: right;
    line-height: 1.8;
    padding-bottom: 2.7vw;
  }
  .p-top__about__detail__list__item:nth-of-type(4) .p-top__about__detail__list__item__txt h3::after {
    transform: rotate(252deg);
    width: 25.2vw;
  }
}
.p-top__about__detail__list__item + .p-top__about__detail__list__item {
  margin-top: 81px;
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__list__item + .p-top__about__detail__list__item {
    margin-top: 19.6vw;
  }
}
.p-top__about__detail__movie {
  width: 100%;
  position: relative;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .p-top__about__detail__movie {
    margin-top: 18.2vw;
  }
}
.p-top__about__detail__movie::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.p-top__about__detail__movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top__lineup {
  padding-top: 222px;
  padding-bottom: 38px;
  background-color: #231f20;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top__lineup {
    padding-top: 14vw;
    padding-bottom: 25.3vw;
  }
}
.p-top__lineup__catchphrase {
  font-size: 2.1rem;
  font-weight: bold;
  background: #000000;
  width: 81.2%;
  padding: 10vw 0 9vw 5.4vw;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  position: relative;
}
.p-top__lineup__catchphrase::before {
  content: "";
  display: block;
  background-color: #000000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
}
.p-top__lineup__catchphrase.is-shown {
  transform: scaleX(1);
}
.p-top__lineup__catchphrase.is-shown::before {
  transform: scaleX(0);
}
.p-top__lineup__ttl {
  width: 100%;
  padding: 100px 0 50px;
  text-align: center;
  position: absolute;
  top: -365px;
  left: 0;
  z-index: 1;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__ttl {
    position: relative;
    top: 0;
    padding: 14vw 0 13.7vw;
  }
}
@media screen and (min-width: 769px) {
  .p-top__lineup__ttl img {
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }
  .p-top__lineup__ttl.is-fixed {
    position: fixed;
    top: 0;
    padding-left: 231px;
  }
  .p-top__lineup__ttl.is-fixed img {
    opacity: 1;
  }
  .p-top__lineup__ttl.is-colored {
    background-color: #231f20;
  }
  .p-top__lineup__ttl.is-fadeout {
    opacity: 0;
  }
}
.p-top__lineup__ttl img {
  width: 164px;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__ttl img {
    width: 33vw;
  }
}
.p-top__lineup__inner.l-inner {
  padding: 0 17px 0 10px;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__inner.l-inner {
    padding: 0;
  }
}
.p-top__lineup__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__base {
    margin-bottom: 18vw;
  }
}
.p-top__lineup__base__txt {
  width: 50%;
  padding-top: 3px;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__base__txt {
    width: 100%;
    padding-top: 0;
  }
}
.p-top__lineup__base__img {
  width: 45.8%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__base__img {
    width: 100%;
    margin-top: 3.3vw;
  }
}
.p-top__lineup__base__img img {
  transition: transform 0.5s ease-out;
}
.p-top__lineup__base__img:hover img {
  transform: scale(1.1);
}
.p-top__lineup__item__tag {
  height: 24px;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__item__tag {
    height: 4.8vw;
    font-size: 1rem;
  }
}
.p-top__lineup__item__tag img {
  height: 100%;
  width: auto;
}
.p-top__lineup__item__name {
  font-size: 2.1rem;
  font-weight: bold;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__item__name {
    font-size: 1.6rem;
    margin-top: 2.3vw;
  }
}
.p-top__lineup__item__name span {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__item__name span {
    font-size: 1.35rem;
  }
}
.p-top__lineup__item__img {
  margin-top: 12px;
  margin-bottom: 32px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__item__img {
    margin-top: 4.5vw;
    margin-bottom: 5.4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-top__lineup__item__img img {
    transition: transform 0.5s ease-out;
  }
  .p-top__lineup__item__img:hover img {
    transform: scale(1.1);
  }
}
.p-top__lineup__item__desc {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__item__desc {
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    padding-bottom: 2.8vw;
    border-bottom: 1px solid #8F0000;
  }
}
.p-top__lineup__item__points {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 9px;
  line-height: 1.54;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__item__points {
    font-size: 1.3rem;
    margin-top: 2.3vw;
    line-height: 1.75;
  }
}
.p-top__lineup__item__points dt,
.p-top__lineup__item__points p strong {
  font-weight: bold;
}
.p-top__lineup__item__points dd::before, .p-top__lineup__item__points ul li::before {
  content: "・";
}
.p-top__lineup__item__linkButton {
  width: 158px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin: 23px 0 0 5px;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__item__linkButton {
    width: 42.3vw;
    margin: 4vw 0 0;
  }
}
.p-top__lineup__item__linkButton a {
  display: block;
  padding: 3px 0;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
  border-radius: 18px;
}
@media screen and (min-width: 769px) {
  .p-top__lineup__item__linkButton a {
    transition: all 0.3s ease-out;
  }
}
@media screen and (max-width: 768px) {
  .p-top__lineup__item__linkButton a {
    padding: 1.1vw 0;
    border-radius: 6vw;
  }
}
@media screen and (min-width: 769px) {
  .p-top__lineup__item__linkButton:hover a {
    color: #CF1225;
    background-color: #FFFFFF;
  }
}
.p-top__lineup__head {
  font-size: 2.5rem;
  font-weight: bold;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__head {
    font-size: 2.1rem;
    padding-bottom: 0.8vw;
  }
}
.p-top__lineup__head.parts {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__head.parts {
    margin-bottom: 8.1vw;
  }
}
.p-top__lineup__head.accessories {
  margin-top: 44px;
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  .p-top__lineup__head.accessories {
    margin-top: 18vw;
    margin-bottom: 3.4vw;
  }
}
.p-top__lineup__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-top__lineup__list > li {
  width: 46%;
}
@media screen and (min-width: 769px) {
  .p-top__lineup__list > li:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-top__lineup__list > li {
    width: 100%;
  }
  .p-top__lineup__list > li:nth-child(n+2) {
    margin-top: 13.2vw;
  }
}
.p-top__column {
  padding-top: 233px;
  padding-bottom: 37px;
  background: #000000;
}
@media screen and (max-width: 768px) {
  .p-top__column {
    padding-top: 20vw;
  }
}
.p-top__column__inner.l-inner {
  padding: 0 17px 0 10px;
}
.p-top__column__ttl {
  width: 100%;
  padding: 100px 0 50px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #000000;
  transition: opacity 0.5s ease-out;
}
@media screen and (min-width: 769px) {
  .p-top__column__ttl {
    opacity: 0;
  }
  .p-top__column__ttl.is-fixed {
    position: fixed;
    top: 0;
    padding-left: 231px;
    opacity: 1;
  }
  .p-top__column__ttl.is-fadeout {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top__column__ttl {
    padding: 0 0 18.6vw;
    position: relative;
  }
}
.p-top__column__ttl img {
  width: 404.5px;
}
@media screen and (max-width: 768px) {
  .p-top__column__ttl img {
    width: 79.6vw;
  }
}
.p-top__column__list {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .p-top__column__list {
    margin-bottom: 8vw;
  }
}
.p-top__column__list__article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 43px 40px 40px 0px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top__column__list__article {
    padding: 0;
  }
}
.p-top__column__list__article__left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-top__column__list__article__left {
    width: 100%;
    margin-bottom: 7vw;
  }
}
.p-top__column__list__article__right {
  width: 49.3%;
  padding-top: 4px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top__column__list__article__right {
    width: 100%;
    padding-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .p-top__column__list__article__right img {
    transition: transform 0.5s ease-out;
  }
  .p-top__column__list__article__right:hover img {
    transform: scale(1.1);
  }
}
.p-top__column__list__article__ttl {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.44;
}
@media screen and (max-width: 768px) {
  .p-top__column__list__article__ttl {
    font-size: 1.9rem;
  }
}
.p-top__column__list__article__linkButton {
  width: 158px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  .p-top__column__list__article__linkButton {
    width: 31.7vw;
    font-size: 1.1rem;
    margin-top: 5.9vw;
  }
}
.p-top__column__list__article__linkButton a {
  display: block;
  padding: 3px 0;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
  border-radius: 18px;
}
@media screen and (min-width: 769px) {
  .p-top__column__list__article__linkButton a {
    transition: all 0.3s ease-out;
  }
}
@media screen and (max-width: 768px) {
  .p-top__column__list__article__linkButton a {
    padding: 0.7vw 0;
    border-radius: 5vw;
  }
}
@media screen and (min-width: 769px) {
  .p-top__column__list__article__linkButton:hover a {
    color: #000000;
    background-color: #FFFFFF;
  }
}
@media screen and (max-width: 768px) {
  .p-top__column__list__article + .p-top__column__list__article {
    margin-top: 12.2vw;
    padding-top: 12.4vw;
  }
}
.p-top__column__list__article + .p-top__column__list__article::before {
  content: "";
  display: block;
  width: 97%;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-top__column__moreButton {
  width: 188px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-top__column__moreButton {
    width: 56vw;
    font-size: 1.6rem;
  }
}
.p-top__column__moreButton a {
  display: block;
  padding: 6px 0;
  color: #000000;
  background-color: #CCCCCC;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-top__column__moreButton a {
    padding: 1.7vw 0;
    border-radius: 5vw;
  }
}
.p-top__column__others {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 73px;
}
@media screen and (max-width: 768px) {
  .p-top__column__others {
    margin-top: 30vw;
  }
}
.p-top__column__others__twitter {
  width: 345px;
}
@media screen and (max-width: 768px) {
  .p-top__column__others__twitter {
    width: 100%;
    text-align: center;
  }
}
.p-top__column__others__movie {
  width: calc(100% - 373px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top__column__others__movie {
    width: 100%;
    margin-top: 7.2vw;
  }
}
.p-top__column__others__movie::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.p-top__column__others__movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top__column__bnr {
  width: 728px;
  margin: 104px auto 0;
}
@media screen and (max-width: 768px) {
  .p-top__column__bnr {
    width: 100%;
    margin: 8.7vw auto 0;
  }
}
.p-top__faq {
  background-color: #000000;
  padding: 50px 0 0;
}
@media screen and (max-width: 768px) {
  .p-top__faq {
    padding: 23vw 0 0;
  }
}
.p-top__faq__ttl {
  text-align: center;
}
.p-top__faq__ttl img {
  width: 136px;
}
@media screen and (max-width: 768px) {
  .p-top__faq__ttl img {
    width: 27vw;
  }
}
.p-top__faq__list {
  margin-top: 53px;
  margin-bottom: 92px;
}
@media screen and (max-width: 768px) {
  .p-top__faq__list {
    margin-top: 6.3vw;
    margin-bottom: 11.9vw;
  }
}
.p-top__faq__list__question {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 13px 10px 17px;
  border-bottom: 1px solid #CF1225;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-top__faq__list__question {
    font-size: 1.65rem;
    padding: 4.8vw 8vw 4.8vw 0;
  }
}
.p-top__faq__list__question::before {
  content: "Q.";
  padding-right: 0.3em;
}
.p-top__faq__list__question::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #CF1225;
  position: absolute;
  top: 10px;
  right: 2px;
  bottom: 0;
  margin: auto;
  transform-origin: center;
  transform: rotate(135deg);
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .p-top__faq__list__question::after {
    width: 3vw;
    height: 3vw;
    top: 3vw;
    right: 2.3vw;
  }
}
.p-top__faq__list__question.is-active::after {
  top: 10px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .p-top__faq__list__question.is-active::after {
    top: 1vw;
  }
}
.p-top__faq__list__answer {
  display: none;
  padding: 14px 10px 34px;
}
@media screen and (max-width: 768px) {
  .p-top__faq__list__answer {
    padding: 4vw 0 0;
  }
}
.p-top__faq__list__answer__head {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top__faq__list__answer__head {
    font-size: 1.6rem;
  }
}
.p-top__faq__list__answer__head::before {
  content: "A.";
  padding-right: 0.3em;
}
.p-top__faq__list__answer__desc {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-top__faq__list__answer__desc {
    font-size: 1.3rem;
  }
}
.p-top__faq__list__answer__desc a {
  text-decoration: underline;
  word-break: break-all;
}
@media screen and (min-width: 769px) {
  .p-top__faq__list__answer__desc a:hover {
    text-decoration: none;
  }
}
.p-top__faq__list__answer__desc p + p {
  margin-top: 16px;
}
.p-top__faq__contactButton {
  width: 266px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-top__faq__contactButton {
    width: 53vw;
    font-size: 1.8rem;
  }
}
.p-top__faq__contactButton a {
  display: block;
  padding: 6px 0;
  color: #CF1225;
  background-color: #000000;
  border: 3px solid #CF1225;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .p-top__faq__contactButton a {
    padding: 1.3vw 0;
    border-radius: 6vw;
  }
}
@media screen and (min-width: 769px) {
  .p-top__faq__contactButton a {
    transition: all 0.3s ease-out;
  }
}
@media screen and (min-width: 769px) {
  .p-top__faq__contactButton:hover a {
    color: #000000;
    background-color: #CF1225;
  }
}
.p-top__dotNav {
  width: 8px;
  position: fixed;
  bottom: 108px;
  right: 54px;
  flex-direction: column;
  z-index: 100;
  transition: color 0.3s ease-out;
}
@media screen and (min-width: 769px) {
  .p-top__dotNav {
    display: flex;
  }
}
.p-top__dotNav.is-colored .p-top__dotNav__dot a {
  background-color: rgba(204, 204, 204, 0.7);
}
.p-top__dotNav.is-colored .p-top__dotNav__dot.is-active a {
  background-color: #000000;
}
.p-top__dotNav__dot {
  margin: 11px 0;
}
.p-top__dotNav__dot a {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(204, 204, 204, 0.7);
}
.p-top__dotNav__dot.is-active a {
  background-color: #CF1225;
}

.p-report__top {
  padding-top: 95px;
}
@media screen and (max-width: 768px) {
  .p-report__top {
    padding-top: 9.3vw;
  }
  .p-report__top__catchphrase {
    font-size: 2.1rem;
    font-weight: bold;
    background: #CF1225;
    width: 90%;
    padding: 10vw 0 9vw 5.4vw;
    margin-left: -5vw;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
  }
  .p-report__top__catchphrase::before {
    content: "";
    display: block;
    background-color: #CF1225;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
  }
  .p-report__top__catchphrase.is-shown {
    transform: scaleX(1);
  }
  .p-report__top__catchphrase.is-shown::before {
    transform: scaleX(0);
  }
}
.p-report__top__ttl {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.57;
  border-bottom: 1px solid #CF1225;
  padding-bottom: 12px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-report__top__ttl {
    font-size: 1.9rem;
    letter-spacing: 0;
    margin-top: 12.7vw;
    line-height: 1.45;
    padding-bottom: 6vw;
    margin-bottom: 7vw;
  }
}
.p-report__article {
  margin-top: 34px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.44;
}
@media screen and (max-width: 768px) {
  .p-report__article {
    margin-top: 6.1vw;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    line-height: 1.75;
  }
}
.p-report__article p {
  margin-bottom: 1.44em;
}
@media screen and (max-width: 768px) {
  .p-report__article p {
    margin-bottom: 1.75em;
  }
}
.p-report__article__flexBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 37px 0;
}
@media screen and (max-width: 768px) {
  .p-report__article__flexBox {
    margin: 0;
  }
}
.p-report__article__flexBox__img {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .p-report__article__flexBox__img {
    width: 100%;
    margin-bottom: 10vw;
  }
}
.p-report__article__flexBox__txt {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .p-report__article__flexBox__txt {
    width: 100%;
    margin-bottom: 10vw;
  }
  .p-report__article__flexBox__txt p {
    margin-bottom: 0;
  }
}
.p-report__article__info {
  position: relative;
  margin-top: 42.5px;
  padding-top: 42.5px;
}
@media screen and (max-width: 768px) {
  .p-report__article__info {
    margin-top: 10vw;
    padding-top: 9.4vw;
  }
}
.p-report__article__info::before {
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #FFFFFF, #FFFFFF 3px, transparent 3px, transparent 8px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  left: 0;
}
.p-report__article__info__head {
  display: block;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .p-report__article__info__head {
    margin-bottom: 0;
  }
}
.p-report__article__moreButton {
  margin-top: 77px;
}
@media screen and (max-width: 768px) {
  .p-report__article__moreButton {
    margin-top: 10vw;
  }
}
.p-report__article .wp-block-image {
  margin-bottom: 35px;
}
.p-report__article .wp-block-columns {
  margin: 37px 0;
}
.p-report__article .wp-block-separator {
  border: none;
  background: no-repeat;
  display: block;
  position: relative;
  margin-top: 42.5px;
  padding-top: 42.5px;
  margin-bottom: 0;
}
.p-report__article .wp-block-separator:before {
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #FFFFFF, #FFFFFF 3px, transparent 3px, transparent 8px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  left: 0;
}
.p-report__article p a {
  text-decoration: underline;
}

.p-lineupList__ttl.p-top__lineup__ttl {
  top: 0;
}
.p-lineupList__ttl.p-top__lineup__ttl img {
  opacity: 1;
}

.p-lineup {
  /*
      colorbox overwrite
  */
}
.p-lineup__top {
  padding-top: 107px;
  padding-bottom: 30px;
  background-color: #231f20;
}
@media screen and (max-width: 768px) {
  .p-lineup__top {
    padding-top: 7vw;
    padding-bottom: 27vw;
  }
}
.p-lineup__top__catchphrase {
  font-size: 2.1rem;
  font-weight: bold;
  background: #000000;
  width: 90%;
  padding: 10vw 0 9vw 5.4vw;
  margin-left: -5vw;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  position: relative;
}
.p-lineup__top__catchphrase::before {
  content: "";
  display: block;
  background-color: #000000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
}
.p-lineup__top__catchphrase.is-shown {
  transform: scaleX(1);
}
.p-lineup__top__catchphrase.is-shown::before {
  transform: scaleX(0);
}
.p-lineup__top__ttl {
  text-align: center;
  margin-bottom: 54px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__ttl {
    margin-bottom: 13.5vw;
    margin-top: 14vw;
  }
}
.p-lineup__top__ttl img {
  width: 164px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__ttl img {
    width: 33vw;
  }
}
.p-lineup__top__overview {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__overview {
    display: block;
    margin-bottom: 16.9vw;
  }
}
.p-lineup__top__overview__txt {
  width: 48.3%;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__overview__txt {
    width: 100%;
    padding-top: 0;
  }
}
.p-lineup__top__overview__img {
  width: 47.4%;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__overview__img {
    width: 100%;
    margin-top: 2vw;
  }
}
.p-lineup__top__overview__tag {
  height: 24px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__overview__tag {
    height: 4.8vw;
    font-size: 1rem;
  }
}
.p-lineup__top__overview__tag img {
  height: 100%;
  width: auto;
}
.p-lineup__top__overview__name {
  font-size: 2.1rem;
  font-weight: bold;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__overview__name {
    font-size: 1.6rem;
    margin-top: 2.3vw;
  }
}
.p-lineup__top__overview__name span {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__overview__name span {
    font-size: 1.35rem;
  }
}
.p-lineup__top__overview__desc {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__overview__desc {
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    padding-bottom: 2.8vw;
    border-bottom: 1px solid #8F0000;
  }
}
.p-lineup__top__overview__desc dt,
.p-lineup__top__overview__desc p strong {
  font-weight: bold;
  margin-top: 10px;
  display: block;
}
.p-lineup__top__overview__desc dd::before, .p-lineup__top__overview__desc ul li::before {
  content: "・";
}
.p-lineup__top__overview__points {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 16px;
  line-height: 1.54;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__overview__points {
    font-size: 1.3rem;
    margin-top: 2.3vw;
    line-height: 1.75;
  }
}
.p-lineup__top__overview__points dt,
.p-lineup__top__overview__points p strong {
  font-weight: bold;
}
.p-lineup__top__overview__points dd::before, .p-lineup__top__overview__points ul li::before {
  content: "・";
}
.p-lineup__top__overview__buttonWrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__overview__buttonWrap {
    margin-top: 5.2vw;
  }
}
.p-lineup__top__overview__buttonWrap__button {
  width: calc((100% - 16px) / 2);
  border-radius: 14px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__overview__buttonWrap__button {
    width: 61.6%;
    border-radius: 3.8vw;
    margin-bottom: 3.7vw;
  }
}
.p-lineup__top__overview__buttonWrap__button a {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  display: block;
  padding: 6px 37px 6px 10px;
  color: #000000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__overview__buttonWrap__button a {
    padding: 1.7vw 9vw 1.7vw 1vw;
  }
}
.p-lineup__top__overview__buttonWrap__button.black {
  background-color: #000000;
}
.p-lineup__top__overview__buttonWrap__button.black a {
  color: #FFFFFF;
}
.p-lineup__top__overview__buttonWrap__button.silver {
  background-color: #CCCCCC;
}
.p-lineup__top__overview__buttonWrap__button__icon {
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 0;
  right: 9%;
  bottom: 0;
  margin: auto;
  font-size: 0;
}
.p-lineup__top__descList dt {
  font-size: 2.1rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__descList dt {
    font-size: 1.6rem;
  }
}
.p-lineup__top__descList dd {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 5px 0 12px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__descList dd {
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    margin: 0.6vw 0 3.5vw;
  }
}
.p-lineup__top__slider {
  width: 90%;
  margin: 50px auto 60px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__slider {
    width: 100%;
    margin: 9.1vw auto 13.7vw;
  }
}
.p-lineup__top__slider__slide {
  padding: 0 10px;
  position: relative;
}
.p-lineup__top__slider__slide:not(.slick-active)::before {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 10px;
  background-color: #000000;
  opacity: 0.5;
}
.p-lineup__top__slider__slide img {
  width: 100%;
}
.p-lineup__top__slider .slick-list {
  overflow: visible;
}
.p-lineup__top__slider__arrow {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  cursor: pointer;
}
.p-lineup__top__slider__arrow.prev {
  transform: translateX(-100%);
  left: 0;
  background: url(../img/lineup/modal_arrow_prev.png) no-repeat right 20px center/12px auto;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__slider__arrow.prev {
    left: 10vw;
    background: url(../img/lineup/modal_arrow_prev.png) no-repeat right 7vw center/3vw auto;
  }
}
.p-lineup__top__slider__arrow.next {
  transform: translateX(100%);
  right: 0;
  background: url(../img/lineup/modal_arrow_next.png) no-repeat 20px center/12px auto;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__slider__arrow.next {
    right: 10vw;
    background: url(../img/lineup/modal_arrow_next.png) no-repeat 7vw center/3vw auto;
  }
}
.p-lineup__top__spacTable {
  width: 100%;
  border-collapse: collapse;
}
.p-lineup__top__spacTable tr th, .p-lineup__top__spacTable tr td {
  vertical-align: middle;
}
.p-lineup__top__spacTable tr th {
  background-color: #5A5A5A;
  color: #FFFFFF;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-align: left;
  padding: 22px 20px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__spacTable tr th {
    font-size: 1.05rem;
    text-align: center;
    padding: 3.5vw 3vw;
  }
}
.p-lineup__top__spacTable tr td {
  background-color: #FFFFFF;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  font-weight: bold;
  color: #000000;
  border: 1px solid #B1B1B1;
  padding: 12px 20px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__spacTable tr td {
    font-size: 1.05rem;
    text-align: center;
    padding: 3.5vw 3vw;
  }
}
.p-lineup__top__spacTable tr + tr th {
  border-top: 1px solid #fff;
}
.p-lineup__top__spacTable__cell--number {
  width: 20%;
}
.p-lineup__top__spacTable__cell--color {
  width: 12.5%;
}
.p-lineup__top__spacTable__cell--weight {
  width: 10.3%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center !important;
}
.p-lineup__top__spacTable__cell--angle {
  width: 9%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center !important;
}
.p-lineup__top__spacTable__cell--link {
  width: 21.3%;
  font-size: 1.4rem;
  padding: 0 !important;
}
@media screen and (min-width: 769px) {
  .p-lineup__top__spacTable__cell--link[rowspan="2"] {
    padding-left: 17px !important;
  }
}
@media screen and (max-width: 768px) {
  .p-lineup__top__spacTable__cell--link {
    width: auto;
    font-size: 1.05em;
  }
}
.p-lineup__top__spacTable__cell--link a {
  padding-left: 17px;
  padding-right: 40px;
  display: flex;
  color: #000000;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__spacTable__cell--link a {
    padding-left: 2vw;
    padding-right: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .p-lineup__top__spacTable__cell--size {
    padding: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .p-lineup__top__spacTable__cell--sizeAll {
    width: 1em;
  }
}
.p-lineup__top__spacTable__cell__icon {
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 0;
  right: 9%;
  bottom: 0;
  margin: auto;
  font-size: 0;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__spacTable__cell__icon {
    width: 3vw;
    height: 3vw;
    right: 6%;
  }
}
.p-lineup__top__models {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__models {
    margin-top: 17.2vw;
  }
}
.p-lineup__top__models__head {
  font-size: 2.1rem;
  font-weight: bold;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 7px;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__models__head {
    font-size: 1.6rem;
    padding-bottom: 1.9vw;
    margin-bottom: 7.4vw;
  }
}
.p-lineup__top__models__name {
  font-size: 2.1rem;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__models__name {
    font-size: 1.6rem;
    margin-bottom: 2.2vw;
  }
}
.p-lineup__top__models__images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__models__images {
    margin-bottom: 12vw;
  }
}
.p-lineup__top__models__images__table {
  width: 49%;
}
.p-lineup__top__models__images__table table {
  width: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1.28;
  text-align: left;
  border-collapse: collapse;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__models__images__table table {
    font-size: 1.1rem;
  }
}
.p-lineup__top__models__images__table table tr th {
  color: #FFFFFF;
  background-color: #5A5A5A;
  padding: 16px 10px;
  border: 1px solid #5A5A5A;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__models__images__table table tr th {
    padding: 3.5vw 2.5vw;
  }
}
.p-lineup__top__models__images__table table tr td {
  color: #000000;
  border: 1px solid #B1B1B1;
  padding: 10px 10px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__models__images__table table tr td {
    padding: 1.9vw 2.3vw;
  }
}
.p-lineup__top__models__images__table table tr td:nth-child(1) {
  background-color: #ECECEC;
}
.p-lineup__top__models__images__table table tr th:nth-child(1), .p-lineup__top__models__images__table table tr td:nth-child(1) {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__models__images__table {
    width: 100%;
    margin-bottom: 5vw;
  }
}
.p-lineup__top__models__images__drawing {
  width: 44.3%;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__models__images__drawing {
    width: 100%;
  }
}
.p-lineup__top__models__noticeTxt {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 44px;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__models__noticeTxt {
    font-size: 1.3rem;
    line-height: 1.75;
  }
}
.p-lineup__top__models__linkButton {
  width: 208px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin: 36px auto 0;
}
@media screen and (max-width: 768px) {
  .p-lineup__top__models__linkButton {
    width: 65.3vw;
    margin: 9.8vw auto 0;
    font-size: 1.6rem;
  }
}
.p-lineup__top__models__linkButton a {
  display: block;
  padding: 3px 0;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
  border-radius: 18px;
}
@media screen and (min-width: 769px) {
  .p-lineup__top__models__linkButton a {
    transition: all 0.3s ease-out;
  }
}
@media screen and (max-width: 768px) {
  .p-lineup__top__models__linkButton a {
    padding: 1.2vw 0;
    border-radius: 6vw;
  }
}
@media screen and (min-width: 769px) {
  .p-lineup__top__models__linkButton:hover a {
    color: #CF1225;
    background-color: #FFFFFF;
  }
}
.p-lineup #cboxLoadedContent {
  border: none;
}
.p-lineup #cboxCurrent {
  display: none !important;
}
.p-lineup #cboxSlideshow {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .p-lineup #cboxPrevious, .p-lineup #cboxNext {
    width: 3vw;
  }
}
.p-lineup #cboxPrevious {
  left: -70px;
  background: url(../img/lineup/modal_arrow_prev.png) no-repeat center/22px auto;
}
@media screen and (max-width: 768px) {
  .p-lineup #cboxPrevious {
    left: -4vw;
    background-size: 100% auto;
  }
}
.p-lineup #cboxNext {
  right: -70px;
  background: url(../img/lineup/modal_arrow_next.png) no-repeat center/22px auto;
}
@media screen and (max-width: 768px) {
  .p-lineup #cboxNext {
    right: -4vw;
    background-size: 100% auto;
  }
}
.p-lineup #cboxClose {
  top: -53px;
  right: -53px;
  background: url(../img/lineup/modal_close_button.png) no-repeat center/100%;
  width: 34px;
  height: 34px;
}
@media screen and (max-width: 768px) {
  .p-lineup #cboxClose {
    top: -8vw;
    right: 0;
    width: 5vw;
    height: 5vw;
  }
}
.p-lineup #colorbox, .p-lineup #cboxOverlay, .p-lineup #cboxWrapper {
  overflow: visible;
}
.p-lineup_edit h2 {
  font-size: 2.1rem;
  font-weight: bold;
}
.p-lineup_edit p {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 5px 0 12px;
}
.p-lineup_edit p a {
  text-decoration: underline;
}

.p-lineup .lb-nav a.lb-prev {
  width: 14%;
  transform: translateX(-100%);
  opacity: 1;
  background: url(../img/lineup/prev.png) no-repeat center;
}

.p-lineup .lb-nav a.lb-next {
  width: 14%;
  transform: translateX(100%);
  opacity: 1;
  background: url(../img/lineup/next.png) no-repeat center;
}

.lb-dataContainer {
  position: absolute;
  top: -60px;
  right: 0;
  left: 0;
  margin: auto;
}

.lb-data .lb-close {
  background: url(../img/lineup/close.png) no-repeat center/100%;
  width: 40px;
  height: 40px;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .p-lineup__top__slider__arrow.prev {
    left: 10vw;
    background: url(../img/lineup/modal_arrow_prev.png) no-repeat right 7vw center/3vw auto;
  }
  .p-lineup .lb-nav a.lb-prev {
    width: 10%;
    transform: translateX(0);
    background-size: 90% auto;
  }
  .p-lineup .lb-nav a.lb-next {
    width: 10%;
    transform: translateX(0);
    background-size: 90% auto;
  }
  .lb-dataContainer {
    top: -15vw;
  }
  .lb-data .lb-close {
    background: url(../img/lineup/close.png) no-repeat center/100%;
    width: 8vw;
    height: 8vw;
    opacity: 1;
  }
}

/* ==============================
共通スタイル：add_box
============================== */
.add_box {
  max-width: 851px;
  margin: 0 auto;
  padding-bottom: 222px;
}
.add_box h2 {
  text-align: center;
}
.add_box h2 img {
  height: 30px;
  margin-bottom: 50px;
  width: auto !important;
}
.add_box div div {
  width: 50%;
  text-align: center;
  padding-top: 15px;
  display: flex;
}
.add_box div.second {
  overflow: hidden;
  margin-top: 50px;
}
.add_box div.second div {
  float: right;
  display: flex;
  margin-bottom: 10px;
}
.btt {
  text-align: center;
}

/* ボタンスタイル */
.add_box div a,
.btt a {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 45%;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  color: #d73031;                     /* テキスト色を赤に */
  border-bottom: 2px solid #d73031;   /* 下線を赤に */
  border-radius: 100vh;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
  background: #333;
  transition: 0.5s;
}

.add_box div a:hover,
.btt a:hover {
  color: #fff;
  background: #d73031;                /* 背景を赤に */
  border-bottom: 2px solid #fff;  /* ホバー時の下線を白に */
  transform: translateY(3px);
}

@media screen and (max-width: 920px) {
  .add_box div a,
  .btt a {
    font-size: 13px;
}

}

/* レスポンシブ：add_box */
@media screen and (max-width: 920px) {
  .add_box div div {
  width: 100%;
  }
}

/* ==============================
DRA PRO 個別ページ：共通構造
============================== */
.drapoji_wrap h1 {
  line-height: 0;
  margin-bottom: 30px;
}
.drapoji_wrap .area {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}
.drapoji_wrap .text_area {
  margin-bottom: 30px;
}
.drapoji_wrap p {
  margin-bottom: 15px;
  font-size: small;
}

/* ==============================
DRA PRO 個別ページ：構造調整
============================== */
.drapoji_wrap .area_1 .l,
.drapoji_wrap .area_2 .r {
  width: 50%;
}
.drapoji_wrap .area_1 .r,
.drapoji_wrap .area_2 .l {
  width: 45%;
}
.drapoji_wrap .area_3 .r,
.drapoji_wrap .area_4 .l,
.drapoji_wrap .area_5 .r {
  width: 52.5%;
}
.drapoji_wrap .area_3 .l,
.drapoji_wrap .area_4 .r,
.drapoji_wrap .area_5 .l {
  width: 42.5%;
}

/* ==============================
.entry モード調整
============================== */
.drapoji_wrap.entry .area_1,
.drapoji_wrap.entry .area_2,
.drapoji_wrap.entry .area_6,
.drapoji_wrap.entry .area_7,
.drapoji_wrap.entry .area_8 {
  position: relative;
}
.drapoji_wrap.entry .area_1 {
  padding: 0;
  margin-bottom: 50px;
}
.drapoji_wrap.entry .area_1 .l {
  width: 35%;
}
.drapoji_wrap.entry .area_1 .r {
  width: 60%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.drapoji_wrap.entry .area_2 .l {
  width: 34%;
}
.drapoji_wrap.entry .area_2 .r {
  width: 61%;
}
.drapoji_wrap.entry .area_3 .l,
.drapoji_wrap.entry .area_3 .r {
  margin: 0;
}
.drapoji_wrap.entry .area_6 .l,
.drapoji_wrap.entry .area_7 .r {
  width: 10%;
}
.drapoji_wrap.entry .area_6 .c,
.drapoji_wrap.entry .area_6 .r {
  width: 40%;
}
.drapoji_wrap.entry .area_7 .l {
  width: 85%;
}
.drapoji_wrap.entry .area_8 .l {
  width: 5%;
}
.drapoji_wrap.entry .area_8 .r {
  width: 90%;
  text-align: right;
}
.drapoji_wrap.entry .area_8 .r .text_area {
  text-align: left;
}
.drapoji_wrap.entry .area_8 .r img {
  width: 70%;
}

/* ==============================
レスポンシブ対応
============================== */
@media screen and (max-width: 1100px) {
  .drapoji_wrap {
  margin: 0 5%;
  }
}
@media screen and (max-width: 876px) {
  .drapoji_wrap .area {
  display: block;
  padding-bottom: 30px;
  }

  /* 幅調整 */
  .drapoji_wrap .area_1 .l,
  .drapoji_wrap .area_2 .r,
  .drapoji_wrap .area_1 .r,
  .drapoji_wrap .area_2 .l,
  .drapoji_wrap .area_3 .r,
  .drapoji_wrap .area_4 .l,
  .drapoji_wrap .area_5 .r,
  .drapoji_wrap .area_3 .l,
  .drapoji_wrap .area_4 .r,
  .drapoji_wrap .area_5 .l,
  .drapoji_wrap.entry .area_1 .l,
  .drapoji_wrap.entry .area_1 .r,
  .drapoji_wrap.entry .area_2 .l,
  .drapoji_wrap.entry .area_2 .r,
  .drapoji_wrap.entry .area_3 .l,
  .drapoji_wrap.entry .area_3 .r,
  .drapoji_wrap.entry .area_6 .l,
  .drapoji_wrap.entry .area_6 .c,
  .drapoji_wrap.entry .area_6 .r,
  .drapoji_wrap.entry .area_7 .l,
  .drapoji_wrap.entry .area_7 .r,
  .drapoji_wrap.entry .area_8 .l,
  .drapoji_wrap.entry .area_8 .r {
  width: auto;
  }

  /* マージン調整 */
  .drapoji_wrap.entry .area_1 .l {
  margin-bottom: 0;
  }
  .drapoji_wrap .area_1 .l {
  margin-bottom: 50px;
  }
  .drapoji_wrap .area_1 .r,
  .drapoji_wrap .area_2 .l,
  .drapoji_wrap .area_3 .r,
  .drapoji_wrap .area_4 .l,
  .drapoji_wrap .area_5 .r,
  .drapoji_wrap .area_3 .l,
  .drapoji_wrap .area_5 .l {
  margin-bottom: 30px;
  }

  .drapoji_wrap p br {
  display: none;
  }
  .drapoji_wrap .area_2 .r p {
  margin: 0;
  }

  /* 画像位置 */
  .drapoji_wrap .area_1 .r {
  width: 70%;
  margin: 0 auto;
  padding: 30px 0;
  }
  .drapoji_wrap.entry .area_1 .r img {
  bottom: -15px;
  width: auto;
  }

  /* float再構成 */
  .drapoji_wrap.entry .area_6,
  .drapoji_wrap.entry .area_7,
  .drapoji_wrap.entry .area_8 {
  overflow: hidden;
  }

  .drapoji_wrap.entry .area_6 .l {
  float: left;
  width: 23%;
  }
  .drapoji_wrap.entry .area_6 .c,
  .drapoji_wrap.entry .area_6 .r {
  float: right;
  width: 70%;
  }
  .drapoji_wrap.entry .area_7 .l {
  float: left;
  width: 73%;
  }
  .drapoji_wrap.entry .area_7 .r {
  float: right;
  width: 20%;
  }
  .drapoji_wrap.entry .area_8 .l {
  float: left;
  width: 10%;
  }
  .drapoji_wrap.entry .area_8 .r {
  float: right;
  width: 85%;
  }
  .drapoji_wrap.entry .area_8 .r img {
  width: 100%;
  }
}



