@charset "UTF-8";
#splash {
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100%;
  background: #333;
  text-align: center;
  color: #fff;
}

#splash_text {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

#splash_text svg {
  height: 2px;
  width: 85.35871vw;
  max-width: 1166px;
}

.loading-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.border__animation {
  position: relative;
  opacity: 0;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (min-width: 751px) {
  .border__animation {
    margin-top: 3.4375rem;
  }
}

.border__animation span {
  display: block;
}

.border__animation.is-animated:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  bottom: 0;
  border-bottom: solid 1px #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  animation: border_anim 1s linear forwards;
  -webkit-animation: border_anim 1s linear forwards;
}

.border__animation.is-animated:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  top: 0;
  border-top: solid 1px #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: border_anim 1s linear forwards;
          animation: border_anim 1s linear forwards;
}

@media screen and (min-width: 751px) {
  .border__animation.is-animated:before {
    top: 0;
  }
}

@-webkit-keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.border__animation.is-animated span:after {
  content: "";
  position: absolute;
  top: 50%;
  height: 0;
  right: 0;
  border-right: solid 1px #fff;
  transform: translateY(-50%);
  animation: border_anim-Y 1s linear forwards;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-animation: border_anim-Y 1s linear forwards;
}

.border__animation.is-animated span:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 0;
  left: 0;
  border-left: solid 1px #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  animation: border_anim-Y 1s linear forwards;
  -webkit-animation: border_anim-Y 1s linear forwards;
}

@-webkit-keyframes border_anim-Y {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@keyframes border_anim-Y {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@-webkit-keyframes startFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes startFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.anm {
  opacity: 0;
}

.anm.is-animated {
  -webkit-animation: fadeIn 1.5s forwards;
          animation: fadeIn 1.5s forwards;
}

.anm-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.anm-up.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
          animation: fadeInUp 1.5s forwards;
}

.anm-left {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.anm-left.is-animated {
  -webkit-animation: fadeInLeft 1.5s forwards;
          animation: fadeInLeft 1.5s forwards;
}

.anm-right {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.anm-right.is-animated {
  -webkit-animation: fadeInRight 1.5s forwards;
          animation: fadeInRight 1.5s forwards;
}

.anm-list > * {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.anm-list > *.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
          animation: fadeInUp 1.5s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.border__animation {
  opacity: 0;
}

.border__animation.is-animated {
  -webkit-animation: border_anim-Y 3s linear forwards;
          animation: border_anim-Y 3s linear forwards;
  animation: borderAnm 1.5s forwards;
  -webkit-animation: borderAnm 1.5s forwards;
}

@-webkit-keyframes borderAnm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes borderAnm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

body {
  background-color: #231815;
  color: #fff;
}

.u-desktop {
  display: none;
}

@media screen and (min-width: 751px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 751px) {
  .u-mobile {
    display: none;
  }
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "小塚ゴシック Pr6N R", sans-serif;
}

html {
  font-size: 16px;
}

@media (max-width: 375px) {
  html {
    font-size: 4.26667vw;
  }
}

@media screen and (min-width: 751px) {
  html {
    font-size: 1.37221vw;
  }
}

@media (min-width: 1166px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (min-width: 751px) {
  a:hover {
    opacity: 0.8;
  }
}

.wrap {
  overflow: hidden;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

select::-ms-expand {
  display: none;
}

.cursor {
  display: none;
}

@media screen and (min-width: 1024px) {
  .cursor {
    display: block;
    width: 3rem;
    height: 3rem;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition-property: background, -webkit-transform;
    transition-property: background, -webkit-transform;
    transition-property: background, transform;
    transition-property: background, transform, -webkit-transform;
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    z-index: 9999;
    -webkit-backdrop-filter: grayscale(1);
            backdrop-filter: grayscale(1);
  }
}

.link-grow {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  background: black;
}

.link-grow::after {
  content: "";
  color: #fff;
  font-size: 10px;
  background-image: url(../images/common/cursor.png);
  background-position: top 50% left 50%;
  background-size: contain;
  display: inline-block;
  width: 80px;
  height: 80px;
  -webkit-transform: translate(-30%, -30%);
  -moz-transform: translate(-30%, -30%);
  -ms-transform: translate(-30%, -30%);
  -o-transform: translate(-30%, -30%);
}

.hovered-link {
  color: white;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  min-height: 10vh;
  margin: auto;
}

nav h1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

nav .nav-links li {
  padding: 16px;
  padding: 1rem;
}

.menu {
  height: 21px;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 24px;
  z-index: 99;
}

@media screen and (min-width: 350px) {
  .menu {
    height: 22px;
    position: fixed;
    right: 24px;
    top: 22px;
    width: 26px;
  }
}

@media screen and (min-width: 470px) {
  .menu {
    height: 28px;
    position: fixed;
    width: 35px;
    right: 33px;
    top: 37px;
  }
}

@media screen and (min-width: 600px) {
  .menu {
    height: 37px;
    position: fixed;
    width: 41px;
    right: 55px;
    top: 45px;
  }
}

.menu__line {
  background: #fff;
  display: block;
  height: 1px;
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.menu__line--middle {
  bottom: 10px;
}

@media screen and (min-width: 350px) {
  .menu__line--middle {
    bottom: 11px;
  }
}

@media screen and (min-width: 470px) {
  .menu__line--middle {
    bottom: 13px;
  }
}

@media screen and (min-width: 600px) {
  .menu__line--middle {
    bottom: 16px;
  }
}

.menu__line--bottom {
  bottom: 0;
}

.menu__line--top.active {
  top: 17px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu__line--center.active {
  opacity: 0;
}

.menu__line--bottom.active {
  bottom: 17px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.gnav {
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 98;
  background-color: rgba(0, 0, 0, .7);
  color: #fff;
}

.gnav__wrap {
  background-color: #231815;
  position: absolute;
  width: 100%;
  height: 100vh;
  position: relative;
}

.gnav__menu {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.gnav__menu__item {
  position: relative;
}

@media screen and (min-width: 600px) {
  .gnav__menu__item {
    height: 6.875rem;
  }
}

.gnav__menu__item:first-child a {
  width: 127.82px;
  width: 7.98875rem;
  margin: auto;
}

@media screen and (min-width: 600px) {
  .gnav__menu__item:first-child a {
    width: 10.375rem;
  }
}

.gnav__menu__item:nth-child(2) a {
  width: 187.5px;
  width: 11.71875rem;
  margin: auto;
}

@media screen and (min-width: 600px) {
  .gnav__menu__item:nth-child(2) a {
    width: 15.625rem;
  }
}

.gnav__menu__item:nth-child(3) a {
  width: 172.5px;
  width: 10.78125rem;
  margin: auto;
}

@media screen and (min-width: 600px) {
  .gnav__menu__item:nth-child(3) a {
    width: 14.375rem;
  }
}

.gnav__menu__item:nth-child(4) a {
  width: 124.5px;
  width: 7.78125rem;
  margin: auto;
}

@media screen and (min-width: 600px) {
  .gnav__menu__item:nth-child(4) a {
    width: 10.375rem;
  }
}

.gnav__menu__item:nth-child(5) a {
  width: 124.5px;
  width: 7.78125rem;
  margin: auto;
}

@media screen and (min-width: 600px) {
  .gnav__menu__item:nth-child(5) a {
    width: 10.375rem;
  }
}

.gnav__menu__item:nth-child(6) a {
  width: 208.8px;
  width: 13.05rem;
  margin: auto;
}

@media screen and (min-width: 600px) {
  .gnav__menu__item:nth-child(6) a {
    width: 18.125rem;
  }
}

.gnav__menu__item a {
  display: block;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  text-align: center;
}

@media screen and (min-width: 470px) {
  .gnav__menu__item a {
    padding: 1.875rem 1.875rem;
  }
}

.gnav__button {
  color: #fff;
  background-color: #fff;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  padding: 10px 0;
  padding: 0.625rem 0;
}

.gnav__sns-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 60px;
  padding-right: 3.75rem;
  margin-left: auto;
  width: 250px;
  width: 15.625rem;
}

.gnav__sns-item {
  width: 50px;
  width: 3.125rem;
  margin: 10px;
  margin: 0.625rem;
}

.gnav__sns-item img {
  width: 40px;
  width: 2.5rem;
}

.header {
  height: 70px;
  height: 4.375rem;
  position: fixed;
  top: 0;
  width: 100%;
  color: #fff;
  background-color: transparent;
  z-index: 20;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

@media screen and (min-width: 470px) {
  .header {
    height: 6.25rem;
  }
}

@media screen and (min-width: 600px) {
  .header {
    height: 8.25rem;
  }
}

@media screen and (min-width: 751px) {
  .header {
    height: 9.375rem;
    margin: 0 auto;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-right: 55px;
  padding-right: 3.4375rem;
  padding-left: 55px;
  padding-left: 3.4375rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 751px) {
  .header__inner {
    max-width: 85.375rem;
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }
}

.header__nav {
  margin-left: auto;
  letter-spacing: 0.05em;
}

.global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.global-nav__item:nth-child(7) a img,
.global-nav__item:nth-child(8) a img {
  width: 30px;
  width: 1.875rem;
}

.header__sns {
  width: 50px;
  width: 3.125rem;
}

.global-nav__item:last-child {
  padding: 0px 15px 3px 0px;
  padding: 0rem 0.9375rem 0.1875rem 0rem;
  position: relative;
}

@media screen and (min-width: 751px) {
  .global-nav__item:last-child {
    background-color: transparent;
    padding-right: 0;
  }
}

.global-nav__item a {
  text-align: center;
  height: inherit;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "小塚ゴシック Pr6N R", sans-serif;
}

@media screen and (min-width: 751px) {
  .global-nav__item a {
    padding: 1.25rem 1.25rem;
  }
}

.global-nav__item:nth-child(7) a {
  padding: 15px 10px;
  padding: 0.9375rem 0.625rem;
}

.global-nav__item:nth-child(8) a {
  padding: 15px 10px;
  padding: 0.9375rem 0.625rem;
}

.header__nav--sp {
  width: 100%;
}

.global-nav__list--sp {
  width: 32.66667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: 15%;
}

@media screen and (min-width: 350px) {
  .global-nav__list--sp {
    margin-right: 12%;
  }
}

@media screen and (min-width: 400px) {
  .global-nav__list--sp {
    margin-right: 8%;
  }
}

@media screen and (min-width: 470px) {
  .global-nav__list--sp {
    margin-right: 9%;
  }
}

@media screen and (min-width: 600px) {
  .global-nav__list--sp {
    width: 34.66667vw;
    margin-right: 13%;
  }
}

.global-nav__item--sp a {
  display: block;
  width: 50px;
  width: 3.125rem;
  padding: 10px;
}

@media screen and (min-width: 350px) {
  .global-nav__item--sp a {
    width: 3rem;
    padding: 11px;
  }
}

@media screen and (min-width: 400px) {
  .global-nav__item--sp a {
    width: 3.125rem;
  }
}

@media screen and (min-width: 470px) {
  .global-nav__item--sp a {
    width: 3.4375rem;
    padding: 8px;
  }
}

@media screen and (min-width: 600px) {
  .global-nav__item--sp a {
    width: 3.8125rem;
  }
}

.global-nav__item--sp:nth-child(3) a {
  display: block;
  width: 49px;
  width: 3.0625rem;
  padding: 6px;
}

@media screen and (min-width: 350px) {
  .global-nav__item--sp:nth-child(3) a {
    width: 2.9375rem;
    padding: ８px;
  }
}

@media screen and (min-width: 400px) {
  .global-nav__item--sp:nth-child(3) a {
    width: 3.0625rem;
    padding: 6px;
  }
}

@media screen and (min-width: 470px) {
  .global-nav__item--sp:nth-child(3) a {
    width: 3.75rem;
  }
}

@media screen and (min-width: 600px) {
  .global-nav__item--sp:nth-child(3) a {
    width: 4.375rem;
  }
}

.js-header.change-color {
  background-color: #231815;
}

@media screen and (min-width: 751px) {
  .l-brand__inner {
    width: 100%;
    max-width: 75.625rem;
    margin: auto;
    padding: 0 6.25rem;
  }
}

.l-footer {
  margin-top: 74px;
  margin-top: 4.625rem;
  padding: 50px 0;
  padding: 3.125rem 0;
}

@media screen and (min-width: 751px) {
  .l-footer {
    margin-top: 2.8125rem;
  }
}

#splash {
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100%;
  background: #333;
  text-align: center;
  color: #fff;
}

#splash_text {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

#splash_text svg {
  height: 2px;
  width: 85.35871vw;
  max-width: 1166px;
}

.loading-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.border__animation {
  position: relative;
  opacity: 0;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (min-width: 751px) {
  .border__animation {
    margin-top: 3.4375rem;
  }
}

.border__animation span {
  display: block;
}

.border__animation.is-animated:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  bottom: 0;
  border-bottom: solid 1px #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  animation: border_anim 1s linear forwards;
  -webkit-animation: border_anim 1s linear forwards;
}

.border__animation.is-animated:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  top: 0;
  border-top: solid 1px #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: border_anim 1s linear forwards;
          animation: border_anim 1s linear forwards;
}

@media screen and (min-width: 751px) {
  .border__animation.is-animated:before {
    top: 0;
  }
}

@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.border__animation.is-animated span:after {
  content: "";
  position: absolute;
  top: 50%;
  height: 0;
  right: 0;
  border-right: solid 1px #fff;
  transform: translateY(-50%);
  animation: border_anim-Y 1s linear forwards;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-animation: border_anim-Y 1s linear forwards;
}

.border__animation.is-animated span:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 0;
  left: 0;
  border-left: solid 1px #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  animation: border_anim-Y 1s linear forwards;
  -webkit-animation: border_anim-Y 1s linear forwards;
}

@keyframes border_anim-Y {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@keyframes startFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.anm {
  opacity: 0;
}

.anm.is-animated {
  -webkit-animation: fadeIn 1.5s forwards;
          animation: fadeIn 1.5s forwards;
}

.anm-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.anm-up.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
          animation: fadeInUp 1.5s forwards;
}

.anm-left {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.anm-left.is-animated {
  -webkit-animation: fadeInLeft 1.5s forwards;
          animation: fadeInLeft 1.5s forwards;
}

.anm-right {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.anm-right.is-animated {
  -webkit-animation: fadeInRight 1.5s forwards;
          animation: fadeInRight 1.5s forwards;
}

.anm-list > * {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.anm-list > *.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
          animation: fadeInUp 1.5s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.border__animation {
  opacity: 0;
}

.border__animation.is-animated {
  -webkit-animation: border_anim-Y 3s linear forwards;
          animation: border_anim-Y 3s linear forwards;
  animation: borderAnm 1.5s forwards;
  -webkit-animation: borderAnm 1.5s forwards;
}

@keyframes borderAnm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.l-inner {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .l-inner {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media screen and (min-width: 751px) {
  .l-inner {
    max-width: 1366px;
    padding-right: 100px;
    padding-left: 100px;
  }
}

.l-logo-scroll {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.l-photo__inner {
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  margin: auto;
  padding: 0 30px;
  padding: 0 1.875rem;
}

@media screen and (min-width: 751px) {
  .l-photo__inner {
    max-width: 62.5rem;
  }
}

.l-section-brand {
  padding-top: 70px;
  padding-top: 4.375rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

@media screen and (min-width: 751px) {
  .l-section-brand {
    padding-top: 9.375rem;
  }
}

.l-section-category {
  padding: 147px 0 100px;
  padding: 9.1875rem 0 6.25rem;
}

@media screen and (min-width: 751px) {
  .l-section-category {
    padding: 6.25rem 0 8.75rem;
  }
}

.l-section-character {
  padding-top: 100px;
  padding-top: 6.25rem;
}

@media screen and (min-width: 751px) {
  .l-section-character {
    margin-top: 0.625rem;
    padding-top: 0;
  }
}

.l-section-photo {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}

@media screen and (min-width: 751px) {
  .l-section-photo {
    padding-top: 10.8125rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .l-inner {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media screen and (min-width: 751px) {
  .l-inner {
    max-width: 1366px;
    padding-right: 100px;
    padding-left: 100px;
  }
}

.l-section-slider {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 85px;
  margin-top: 5.3125rem;
}

@media screen and (min-width: 600px) {
  .l-section-slider {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media screen and (min-width: 751px) {
  .l-section-slider {
    margin-top: 5.875rem;
    max-width: 1366px;
    padding-right: 4.6875rem;
    padding-left: 4.6875rem;
  }
}

.l-section-theme {
  margin-top: 100px;
  margin-top: 6.25rem;
}

@media screen and (min-width: 600px) {
  .l-section-theme {
    margin-top: 9.8125rem;
  }
}

@media screen and (min-width: 751px) {
  .l-section-theme {
    padding-bottom: 6.25rem;
  }
}

.accordion-container {
  position: relative;
  width: 100%;
  border-top: none;
  outline: 0;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
}

.accordion-container .accordion-title {
  display: block;
  position: relative;
  margin: 0;
  padding: 5px 17px 5px 0;
  padding: 0.3125rem 1.0625rem 0.3125rem 0;
  font-size: 1.25em;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title {
  color: white;
}

.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
  color: white;
}

.accordion-title {
  position: relative;
  width: 110px;
  width: 6.875rem;
}

@media screen and (min-width: 350px) {
  .accordion-title {
    width: 8.125rem;
  }
}

@media screen and (min-width: 400px) {
  .accordion-title {
    width: 10rem;
  }
}

.accordion-title:after {
  content: "";
  position: absolute;
  top: 17%;
  left: 110px;
  left: 6.875rem;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

@media screen and (min-width: 350px) {
  .accordion-title:after {
    left: 8.125rem;
    top: 28%;
  }
}

@media screen and (min-width: 400px) {
  .accordion-title:after {
    left: 10.125rem;
  }
}

.accordion-title.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

.accordion-content {
  display: none;
  padding: 40px 0 10px;
  padding: 2.5rem 0 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (min-width: 600px) {
  .accordion-content {
    font-size: 1.375rem;
  }
}

.accordion-content__sns-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  width: 6.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 37px;
  margin-top: 2.3125rem;
  padding-bottom: 17px;
  padding-bottom: 1.0625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 470px) {
  .accordion-content__sns-items {
    width: 7.5rem;
    margin-top: 3.5625rem;
    padding-bottom: 2.3125rem;
  }
}

@media screen and (min-width: 600px) {
  .accordion-content__sns-items {
    width: 8.875rem;
  }
}

@media screen and (min-width: 751px) {
  .accordion-content__sns-items {
    width: 5.4375rem;
    padding-bottom: 0;
    margin-top: 1.875rem;
  }
}

.accordion-content__sns-item a {
  display: block;
  width: 40px;
  width: 2.5rem;
  padding: 3px;
  padding: 0.1875rem;
}

@media screen and (min-width: 600px) {
  .accordion-content__sns-item a {
    width: 2.8125rem;
    padding: 0;
  }
}

@media screen and (min-width: 751px) {
  .accordion-content__sns-item a {
    width: 1.875rem;
  }
}

.p-brand-block {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.1;
}

@media screen and (min-width: 600px) {
  .p-brand-block {
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    line-height: 2.6;
  }
}

@media screen and (min-width: 751px) {
  .p-brand-block {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

.p-brand-block__question {
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (min-width: 600px) {
  .p-brand-block__question {
    margin-top: 1.0625rem;
    width: 30%;
  }
}

@media screen and (min-width: 600px) {
  .p-brand-block__answer {
    width: 70%;
    margin-top: 1.0625rem;
  }
}

.p-brand {
  position: relative;
  background: transparent url(../images/common/brand-bg.png) no-repeat right 16% bottom 18%/53% 35%;
}

@media screen and (min-width: 751px) {
  .p-brand {
    background: transparent url(../images/common/brand-bg.png) no-repeat right 14% bottom/35% 50%;
  }
}

.p-brand__title {
  margin: auto;
  width: 60%;
  max-width: 370px;
  max-width: 23.125rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -5%;
}

@media screen and (min-width: 470px) {
  .p-brand__title {
    top: -8%;
  }
}

@media screen and (min-width: 751px) {
  .p-brand__title {
    width: 90%;
    max-width: 28.4375rem;
    top: -5.25rem;
  }
}

.p-brand__contents {
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "小塚ゴシック Pr6N R", sans-serif;
}

@media screen and (min-width: 751px) {
  .p-brand__contents {
    padding: 0 10.8125rem;
  }
}

.p-brand__wrapper {
  border: 1px #fff solid;
  position: relative;
  padding: 15% 7% 29%;
}

@media screen and (min-width: 751px) {
  .p-brand__wrapper {
    padding: 7% 14% 6% 23%;
  }
}

.p-brand__wrapper::before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 160px;
  background-image: url(../images/common/brand-illust1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -85px;
  bottom: -5.3125rem;
  left: calc(50% - 100px);
}

@media screen and (min-width: 400px) {
  .p-brand__wrapper::before {
    width: 150px;
    height: 200px;
    left: calc(50% - 170px);
  }
}

@media screen and (min-width: 751px) {
  .p-brand__wrapper::before {
    bottom: -1.875rem;
    left: -3.75rem;
  }
}

.p-brand__wrapper::after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 160px;
  background-image: url(../images/common/brand-illust2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -85px;
  bottom: -5.3125rem;
  right: calc(50% - 100px);
}

@media screen and (min-width: 400px) {
  .p-brand__wrapper::after {
    width: 150px;
    height: 200px;
    right: calc(50% - 170px);
  }
}

@media screen and (min-width: 751px) {
  .p-brand__wrapper::after {
    bottom: -1.875rem;
    right: -3.75rem;
  }
}

.p-category-outer {
  position: relative;
}

.bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-box-inner {
  position: relative;
  width: 125%;
  height: 100%;
  background-color: #231815;
  overflow: hidden;
}

@media screen and (min-width: 751px) {
  .bg-box-inner {
    overflow: inherit;
  }
}

.bg-box-inner .bg-front {
  position: absolute;
  width: 167%;
  left: 50%;
  transform: translateX(-57%);
  top: 8%;
  z-index: 10;
  mix-blend-mode: multiply;
  -webkit-transform: translateX(-57%);
  -moz-transform: translateX(-57%);
  -ms-transform: translateX(-57%);
  -o-transform: translateX(-57%);
}

@media screen and (min-width: 600px) {
  .bg-box-inner .bg-front {
    width: 146%;
  }
}

@media screen and (min-width: 751px) {
  .bg-box-inner .bg-front {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-60%);
    top: -20px;
    z-index: 10;
    mix-blend-mode: multiply;
    -webkit-transform: translateX(-60%);
    -moz-transform: translateX(-60%);
    -ms-transform: translateX(-60%);
    -o-transform: translateX(-60%);
  }
}

.bg-box-inner .bg-back {
  position: absolute;
  width: 120%;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
  z-index: 5;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

@media screen and (min-width: 751px) {
  .bg-box-inner .bg-back {
    width: 93%;
    transform: translateX(-60%);
    -webkit-transform: translateX(-60%);
    -moz-transform: translateX(-60%);
    -ms-transform: translateX(-60%);
    -o-transform: translateX(-60%);
    top: -220px;
  }
}

.bg-box-inner .bg-bg2 {
  position: absolute;
  width: 154%;
  left: 50%;
  -webkit-transform: translateX(-60%);
          transform: translateX(-60%);
  bottom: 30px;
  z-index: 5;
  -webkit-transform: translateX(-58%);
  -moz-transform: translateX(-60%);
  -ms-transform: translateX(-60%);
  -o-transform: translateX(-60%);
  mix-blend-mode: multiply;
}

@media screen and (min-width: 600px) {
  .bg-box-inner .bg-bg2 {
    width: 130%;
  }
}

@media screen and (min-width: 751px) {
  .bg-box-inner .bg-bg2 {
    display: none;
  }
}

.bg-front > img {
  max-height: 1400px;
  width: auto;
  margin: 0 auto;
}

.bg-back > img {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  .bg-back > img {
    height: 140vw;
    max-height: 1600px;
  }
}

.p-category__title {
  margin: 0 auto;
  width: 91%;
  max-width: 570px;
  max-width: 35.625rem;
}

@media screen and (min-width: 751px) {
  .p-category__title {
    margin-top: 3.25rem;
    max-width: 44rem;
  }
}

.p-category__inner {
  width: 100%;
  max-width: 590px;
  max-width: 36.875rem;
  margin: auto;
  padding-right: 50px;
  padding-right: 3.125rem;
  padding-left: 50px;
  padding-left: 3.125rem;
}

@media screen and (min-width: 751px) {
  .p-category__inner {
    max-width: 67.5rem;
  }
}

.p-category__wrapper {
  margin-top: 55px;
  margin-top: 3.4375rem;
}

@media screen and (min-width: 751px) {
  .p-category__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-top: 5.8125rem;
  }
}

.p-category__wrapper:nth-child(2) {
  margin-top: 0;
}

@media screen and (min-width: 751px) {
  .p-category__wrapper:nth-child(2) {
    margin-top: 1.25rem;
  }
}

.p-category__item {
  text-align: center;
  position: relative;
}

.p-category__item img {
  display: inline-block;
  margin: 15px auto;
  margin: 0.9375rem auto;
}

@media screen and (min-width: 751px) {
  .p-category__item img {
    margin: 1.875rem auto;
    width: 21.5625rem;
  }
}

.p-character__wrapper {
  display: contents;
}

@media screen and (min-width: 751px) {
  .p-character__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 900px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-character__wrapper:nth-child(2) {
    margin-top: 270px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-character__wrapper:first-child {
  margin-right: 40px;
  margin-right: 2.5rem;
}

.p-character-block {
  width: 100%;
  margin: auto;
  padding: 70px 30px 30px 30px;
  padding: 4.375rem 1.875rem 1.875rem 1.875rem;
  position: relative;
  background: rgba(177, 177, 178, .1);
}

@media screen and (min-width: 751px) {
  .p-character-block {
    width: 100%;
    padding: 4.375rem 3.125rem 1.875rem 3.125rem;
  }
}

.p-character-block::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../images/common/chara-plus.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -20px;
  top: -1.25rem;
  left: -20px;
  left: -1.25rem;
}

@media screen and (min-width: 600px) {
  .p-character-block::before {
    top: -1.5625rem;
    left: -1.5625rem;
  }
}

.p-character-block__title {
  width: 32vw;
  position: absolute;
  top: -8px;
  top: -0.5rem;
}

@media screen and (min-width: 600px) {
  .p-character-block__title {
    top: -0.9375rem;
  }
}

@media screen and (min-width: 751px) {
  .p-character-block__title {
    width: 22vw;
    padding: 0.5625rem 2.75rem;
    padding: 0 3.75rem 0 2.1875rem;
    top: -1.25rem;
    left: 0;
    max-width: 350px;
  }
}

.p-character-block__title--purple {
  color: #fff;
  background-color: #7e318e;
  text-align: center;
}

.p-character-block__image {
  padding-top: 75%;
  position: relative;
}

.is-animated .p-character-block__image {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.p-character-block__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 751px) {
  .p-character-block__image {
    padding-top: 85%;
  }
}

.p-character-block__text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-top: 36px;
  margin-top: 2.25rem;
  letter-spacing: 0.1em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

@media screen and (min-width: 751px) {
  .p-character-block__text {
    font-size: 1rem;
    margin-top: 3.125rem;
    line-height: 1.7;
    letter-spacing: normal;
  }
}

.p-character__image {
  width: 50%;
  height: auto;
  margin: 50px 0 0 auto;
  margin: 3.125rem 0 0 auto;
}

@media screen and (min-width: 600px) {
  .p-character__image {
    margin-top: 4.5625rem;
  }
}

@media screen and (min-width: 751px) {
  .p-character__image {
    width: 85%;
    height: auto;
    position: relative;
  }
}

@media screen and (min-width: 751px) {
  .p-character {
    padding-bottom: 83px;
  }
}

.p-character__title {
  margin: auto;
  width: 91%;
  max-width: 560px;
  z-index: 1;
}

@media screen and (min-width: 751px) {
  .p-character__title {
    position: relative;
    top: 12.5rem;
    left: 14.375rem;
    width: 60%;
    max-width: 44.6875rem;
  }
}

.p-character__contents {
  display: grid;
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (min-width: 751px) {
  .p-character__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
  }
}

.p-character__content {
  padding-bottom: 21px;
  padding-bottom: 1.3125rem;
  padding-left: 38px;
  padding-left: 2.375rem;
  opacity: 0;
}

.is-animated .p-character__content {
  opacity: 1;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

@media screen and (min-width: 751px) {
  .p-character__content {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 3.125rem;
    padding-bottom: 2.5rem;
  }
}

.p-footer {
  background: rgba(177, 177, 178, .1);
}

.p-footer__inner {
  padding: 0 60px;
  padding: 0 3.75rem;
  max-width: 1180px;
  max-width: 73.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: auto;
}

.p-footer__logo {
  width: 150px;
  width: 9.375rem;
  margin: auto;
}

@media screen and (min-width: 751px) {
  .p-footer__logo {
    width: 14%;
  }
}

.p-footer__text {
  margin: auto;
  font-size: 10px;
  font-size: 0.625rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  text-align: center;
}

.p-footer__nav {
  width: 80%;
  padding: 0 80px 20px;
  padding: 0 5rem 1.25rem;
  letter-spacing: 0.01em;
}

.p-footer-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-size: 1.25rem;
}

.p-footer-nav__item {
  font-size: 20px;
  font-size: 1.25rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}

.p-footer__sns {
  width: 8%;
}

.p-footer-sns__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-footer-sns__item {
  width: 30px;
  width: 1.875rem;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.p-mainvisual {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.p-mainvisual__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

@media screen and (min-width: 751px) {
  .p-mainvisual__wrap {
    top: 53%;
  }
}

.p-mainvisual__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.p-mainvisual__list--left {
  animation: infinity-scroll-left 30s infinite linear 0.5s both;
  -webkit-animation: infinity-scroll-left 30s infinite linear 0.5s both;
}

.p-mainvisual__item {
  width: 66.66667vw;
  margin: 0 20px;
  margin: 0 1.25rem;
}

@media screen and (min-width: 751px) {
  .p-mainvisual__item {
    margin: 0 3.125rem;
    width: 35.71429vw;
  }
}

.p-mainvisual__item > img {
  width: 100%;
}

.video_wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video_wrapper > video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.p-photo-scroll {
  height: 130px;
  height: 8.125rem;
  position: relative;
  overflow: hidden;
  margin: 2.8125rem calc(50% - 50vw);
  width: 100vw;
}

@media screen and (min-width: 400px) {
  .p-photo-scroll {
    height: 9.6875rem;
  }
}

@media screen and (min-width: 470px) {
  .p-photo-scroll {
    height: 12.1875rem;
  }
}

@media screen and (min-width: 600px) {
  .p-photo-scroll {
    height: 13.125rem;
  }
}

@media screen and (min-width: 751px) {
  .p-photo-scroll {
    height: 17.5rem;
    margin-top: -3.125rem;
    margin-bottom: -3.125rem;
  }
}

.p-photo-scroll__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
}

.p-photo-scroll__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.p-photo-scroll__list--left {
  animation: infinity-scroll-left 30s infinite linear 0.5s both;
  -webkit-animation: infinity-scroll-left 30s infinite linear 0.5s both;
}

.p-photo-scroll__list--right {
  animation: infinity-scroll-right 30s infinite linear 0.5s both;
  -webkit-animation: infinity-scroll-right 30s infinite linear 0.5s both;
}

.p-photo-scroll__item {
  width: 333.33333vw;
  margin: 0 20px;
  margin: 0 1.25rem;
}

@media screen and (min-width: 751px) {
  .p-photo-scroll__item {
    margin: 0 3.125rem;
    width: 181.81818vw;
  }
}

.p-photo-scroll__item > img {
  width: 100%;
}

.p-photo__contents {
  position: relative;
}

@media screen and (min-width: 751px) {
  .p-photo__contents {
    margin-top: 6.25rem;
    padding-bottom: 13.75rem;
  }
}

.p-photo__content {
  position: absolute;
  top: 50px;
  top: 3.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

@media screen and (min-width: 751px) {
  .p-photo__content {
    top: -3.125rem;
  }
}

.p-photo-image__img {
  margin: 60px auto;
  margin: 3.75rem auto;
  width: 90%;
}

.p-photo-image__img--illust1 {
  position: relative;
}

@media screen and (min-width: 751px) {
  .p-photo-image__img--illust1 {
    width: 78%;
    max-width: 48.75rem;
  }
}

.p-photo-image__img--illust1::before {
  position: absolute;
  display: inline-block;
  right: 0;
  bottom: -170px;
  bottom: -10.625rem;
  content: "";
  background: url(../images/common/photo-illust1.png) no-repeat;
  width: 110px;
  width: 6.875rem;
  height: 200px;
  height: 12.5rem;
  background-size: contain;
  z-index: 10;
}

@media screen and (min-width: 400px) {
  .p-photo-image__img--illust1::before {
    right: 0;
    bottom: -17.5rem;
    width: 9.375rem;
    height: 14.375rem;
  }
}

@media screen and (min-width: 751px) {
  .p-photo-image__img--illust1::before {
    right: -8.375rem;
    bottom: -8.75rem;
    width: 10.625rem;
    height: 16.25rem;
  }
}

.p-photo-image__img--round img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@media screen and (min-width: 751px) {
  .p-photo-image__img--round {
    position: absolute;
    width: 40%;
    top: -72px;
    right: -16px;
  }
}

@media screen and (min-width: 751px) {
  .p-photo-image__img3 {
    width: 40%;
    position: absolute;
    top: -24px;
    left: 17px;
  }
}

.p-photo-image__img--illust2 {
  position: relative;
}

@media screen and (min-width: 751px) {
  .p-photo-image__img--illust2 {
    width: 34%;
    position: absolute;
    right: 8%;
    bottom: -168%;
  }
}

.p-photo-image__img--illust2::before {
  position: absolute;
  display: inline-block;
  left: -30px;
  left: -1.875rem;
  bottom: -40px;
  bottom: -2.5rem;
  content: "";
  background: url(../images/common/photo-illust2.png) no-repeat;
  width: 180px;
  width: 11.25rem;
  height: 180px;
  height: 11.25rem;
  background-size: contain;
}

@media screen and (min-width: 400px) {
  .p-photo-image__img--illust2::before {
    left: -4.5rem;
    bottom: -4.375rem;
    width: 15.625rem;
    height: 15.625rem;
  }
}

@media screen and (min-width: 751px) {
  .p-photo-image__img--illust2::before {
    width: 17.5rem;
    height: 17.5rem;
    bottom: -14%;
    left: -148%;
  }
}

@media screen and (min-width: 1024px) {
  .p-photo-image__img--illust2::before {
    width: 18.75rem;
    height: 18.75rem;
  }
}

@media screen and (min-width: 751px) {
  .p-photo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: 89%;
    max-width: 55.625rem;
    margin: auto;
    position: relative;
  }
}

.slider {
  margin: 0 auto;
  max-width: 480px;
  max-width: 30rem;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 751px) {
  .slider {
    max-width: 81.25rem;
  }
}

.slider-img {
  margin: 0 25px;
}

.slider-img img {
  width: 100%;
  height: auto;
}

.slick-prev {
  left: 0;
  z-index: 1;
}

.slick-next {
  right: 0;
}

.slick-dots {
  bottom: -45px;
}

.slick-dots li button:before {
  color: #fff;
}

.slick-dots li.slick-active button:before {
  color: yellow;
}

.slick-dots li {
  margin: 0;
}

.slide-arrow {
  background-color: #231815;
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  border: 1px solid #fff;
}

@media screen and (min-width: 470px) {
  .slide-arrow {
    width: 3.625rem;
    height: 3.625rem;
  }
}

@media screen and (min-width: 751px) {
  .slide-arrow {
    width: 3rem;
    height: 3rem;
  }
}

.prev-arrow {
  left: 0;
  z-index: 10;
}

.prev-arrow::before {
  content: url(../images/common/left-arrow2.png);
  position: absolute;
  top: -73%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 15;
}

@media screen and (min-width: 470px) {
  .prev-arrow::before {
    top: -46%;
  }
}

@media screen and (min-width: 751px) {
  .prev-arrow::before {
    top: -62%;
  }
}

@media screen and (min-width: 1024px) {
  .prev-arrow::before {
    top: -68%;
  }
}

.next-arrow {
  right: 0;
}

.next-arrow::after {
  content: url(..//images/common/right-arrow2.png);
  position: absolute;
  top: -77%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

@media screen and (min-width: 470px) {
  .next-arrow::after {
    top: -50%;
  }
}

@media screen and (min-width: 751px) {
  .next-arrow::after {
    top: -62%;
  }
}

@media screen and (min-width: 1024px) {
  .next-arrow::after {
    top: -70%;
  }
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
}

.slick-dots {
  bottom: -63px;
  bottom: -3.9375rem;
}

@media screen and (min-width: 751px) {
  .slick-dots {
    bottom: -3.4375rem;
  }
}

.slick-dots li {
  width: 28px;
  width: 1.75rem;
}

.slick-dots li button:before {
  font-size: 15px;
  font-size: 0.9375rem;
}

@media screen and (min-width: 751px) {
  .slick-dots li button:before {
    font-size: 0.75rem;
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.p-scroll {
  height: 180px;
  position: relative;
  overflow: hidden;
  margin: -1.25rem calc(50% - 50vw) 0;
  width: 100vw;
  z-index: -1;
}

@media screen and (min-width: 600px) {
  .p-scroll {
    margin-top: -2.5rem;
  }
}

@media screen and (min-width: 751px) {
  .p-scroll {
    margin-top: -5.5625rem;
    height: 230px;
  }
}

@media screen and (min-width: 1440px) {
  .p-scroll {
    margin-top: -8%;
    height: 300px;
  }
}

@media screen and (min-width: 2000px) {
  .p-scroll {
    margin-top: -10%;
  }
}

.p-scroll__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
}

.p-scroll__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.p-scroll__list--left {
  animation: infinity-scroll-left 30s infinite linear 0.5s both;
  -webkit-animation: infinity-scroll-left 30s infinite linear 0.5s both;
}

.p-scroll__list--right {
  animation: infinity-scroll-right 30s infinite linear 0.5s both;
  -webkit-animation: infinity-scroll-right 30s infinite linear 0.5s both;
}

.p-scroll__item {
  width: 133.33333vw;
  margin: 0 20px;
  margin: 0 1.25rem;
}

@media screen and (min-width: 751px) {
  .p-scroll__item {
    margin: 0 3.125rem;
    width: 133.33333vw;
  }
}

.p-scroll__item > img {
  width: 100%;
}

.p-theme-outer {
  background: transparent url(../images/common/pc-theme-bg.png) no-repeat top -10px center/200% 100%;
  padding-top: 130px;
  padding-top: 8.125rem;
  margin-top: 63px;
  margin-top: 3.9375rem;
}

@media screen and (min-width: 751px) {
  .p-theme-outer {
    background-size: 120% 100%;
    padding-top: 7.5rem;
    margin-top: 3.4375rem;
  }
}

@media screen and (min-width: 2000px) {
  .p-theme-outer {
    background-position: top -7.5rem center;
  }
}

.p-theme__contents {
  width: 100%;
}

.p-theme_title {
  width: 70%;
  max-width: 240px;
  max-width: 15rem;
}

@media screen and (min-width: 600px) {
  .p-theme_title {
    width: 100%;
    max-width: 21.5625rem;
  }
}

@media screen and (min-width: 751px) {
  .p-theme_title {
    max-width: 28.125rem;
    margin: auto;
  }
}

.p-theme__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.5;
  letter-spacing: -0.05em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "小塚ゴシック Pr6N R", sans-serif;
}

@media screen and (min-width: 600px) {
  .p-theme__text {
    font-size: 0.875rem;
    font-size: 1.375rem;
    line-height: 3;
  }
}

@media screen and (min-width: 751px) {
  .p-theme__text {
    text-align: center;
    font-size: 1.25rem;
    letter-spacing: normal;
    line-height: 3.3;
  }
}

.p-theme__text--image {
  width: 190px;
  width: 11.875rem;
  margin: 45px auto 45px 0;
  margin: 2.8125rem auto 2.8125rem 0;
}

@media screen and (min-width: 600px) {
  .p-theme__text--image {
    margin: 4.375rem auto 4.375rem 0;
  }
}

@media screen and (min-width: 751px) {
  .p-theme__text--image {
    width: 13.75rem;
    margin: 3.75rem auto;
  }
}

.p-theme__text:first-of-type {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

@media screen and (min-width: 600px) {
  .p-theme__text:first-of-type {
    margin-top: 4.375rem;
  }
}

@media screen and (min-width: 751px) {
  .p-theme__text:first-of-type {
    margin-top: 5.3125rem;
  }
}

.p-theme__video {
  margin: 125px auto 0;
  margin: 7.8125rem auto 0;
  max-width: 580px;
  max-width: 36.25rem;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56%;
}

@media screen and (min-width: 751px) {
  .p-theme__video {
    margin-top: 7.5rem;
    max-width: 53.4375rem;
    padding-top: 45%;
  }
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

body {
  font-size: 60px;
  font-size: 3.75rem;
}
