@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Oswald:wght@500&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

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

caption,
th {
  text-align: left;
}

a:focus {
  outline: none;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #000;
  text-decoration: none;
}

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

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUnder {
  0% {
    opacity: 0;
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInUnder {
  0% {
    opacity: 0;
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes fadeFixedCopyLeft {
  0% {
    opacity: 0;
    left: -30px;
  }
  100% {
    opacity: 1;
    left: 8px;
  }
}
@keyframes fadeFixedCopyLeft {
  0% {
    opacity: 0;
    left: -30px;
  }
  100% {
    opacity: 1;
    left: 8px;
  }
}
@-webkit-keyframes fadeFixedCopyRight {
  0% {
    opacity: 0;
    right: -30px;
  }
  100% {
    opacity: 1;
    right: 8px;
  }
}
@keyframes fadeFixedCopyRight {
  0% {
    opacity: 0;
    right: -30px;
  }
  100% {
    opacity: 1;
    right: 8px;
  }
}
@-webkit-keyframes slowSizeUp {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.15;
  }
}
@keyframes slowSizeUp {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.15;
  }
}

body.-fixed {
  position: fixed;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

.item-right {
  display: flex;
  justify-content: flex-end;
}
.item-center {
  display: flex;
  justify-content: center;
}

.link-arrow {
  color: #ffffff;
  position: relative;
  display: block;
  line-height: 1;
  text-decoration: none;
  outline: none;
}
.link-arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 1px;
  background: #ffffff;
  transition: all 0.3s;
}
.link-arrow::after {
  content: "";
  position: absolute;
  height: 1px;
  background: #ffffff;
  transform: rotate(45deg);
  transition: all 0.3s;
}
.link-arrow:hover span::before {
  scale: 0.4;
  background: #ff007a;
  border: none;
}
.link-arrow span {
  position: relative;
}
.link-arrow span::before {
  content: "";
  position: absolute;
  border: solid 1px #ffffff;
  transform: rotate(45deg);
  transition: 0.4s;
}
.link-button {
  color: #ffffff;
  border: solid 1px #ffffff;
  line-height: 2;
  display: inline-block;
}
.link-button:hover {
  background: #ffffff;
  color: #151515;
}

.underpage-deco {
  display: flex;
  justify-content: center;
}
.underpage-separator {
  position: relative;
  z-index: 100;
}
.underpage-separator__inner img {
  position: absolute;
  left: 0;
  max-width: none;
  z-index: -10;
}
.underpage-separator__item {
  position: absolute;
  left: 0;
  width: 0;
  overflow: hidden;
  transition: 0.8s ease-out;
  height: 0;
  width: 100%;
}

.js-under {
  opacity: 0;
  transition: 1s;
  transform: translate(0, 50px);
}
.js-under.is-show__under {
  opacity: 1;
  transform: translate(0, 0);
}

.fc-primary {
  color: #ff007a;
}

.deco-rhombus {
  background-size: cover;
}

.content-inner {
  margin-right: auto;
  margin-left: auto;
}

.text-center {
  text-align: center;
}

.line-height-2 {
  line-height: 2;
}

main {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 30;
  overflow: hidden;
  background-repeat: repeat;
}

.footer {
  background: #242424;
  width: 100%;
  position: relative;
  margin-top: auto;
}
.footer__wrap {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.footer__content {
  display: flex;
  justify-content: space-between;
}
.footer__nav {
  display: flex;
}
.footer__nav li:first-child {
  position: relative;
}
.footer__nav li:first-child:after {
  content: "";
  position: absolute;
}
.footer__nav li a {
  color: #fff;
}
.footer__copy {
  text-align: center;
  background: #0F0F0F;
}
.footer__copy p {
  color: #fff;
}

.title-h1 {
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  body {
    min-width: 1080px;
  }
  .sp {
    display: none !important;
  }
  .is-sp {
    display: none;
  }
  .link-arrow {
    font-size: 16px;
    padding: 16px 100px 16px 0;
  }
  .link-arrow::before {
    width: 60px;
  }
  .link-arrow::after {
    right: -2px;
    top: calc(50% - 3px);
    width: 10px;
  }
  .link-arrow:hover::before {
    width: 36px;
  }
  .link-arrow span::before {
    top: -4px;
    right: -56px;
    width: 30px;
    height: 30px;
  }
  .link-button {
    font-size: 14px;
    padding: 10px 50px;
    letter-spacing: 0.13em;
  }
  .underpage-separator {
    left: calc(50% - 4px);
  }
  .underpage-separator__inner {
    width: 8px;
    height: 172px;
  }
  .underpage-separator.is-show__mask .underpage-separator__item {
    height: 172px;
  }
  .deco-rhombus {
    width: 80px;
    height: 16px;
    margin: 160px auto 0;
  }
  .content-inner.--1000 {
    width: 1000px;
  }
  .fs-14 {
    font-size: 14px;
  }
  .mt-40 {
    margin-top: 40px;
  }
  .mt-80 {
    margin-top: 80px;
  }
  .c-footer-bm {
    margin-bottom: 280px;
  }
  .footer {
    min-width: 1400px;
  }
  .footer__wrap {
    padding: 56px 0;
  }
  .footer__nav {
    align-items: center;
    margin-left: 100px;
  }
  .footer__nav li {
    font-size: 14px;
  }
  .footer__nav li:first-child {
    padding-right: 80px;
    margin-right: 40px;
  }
  .footer__nav li:first-child:after {
    border-right: 1px solid #777777;
    width: 1px;
    height: 22px;
    right: 0;
  }
  .footer__nav li:not(:first-child) {
    margin-right: 40px;
  }
  .footer__copy {
    padding: 8px 0;
  }
  .footer__copy p {
    font-size: 12px;
  }
  .title-h1 {
    font-size: 64px;
    margin-top: 12px;
  }
  .title-h1 small {
    font-size: 40px;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .is-pc {
    display: none;
  }
  .link-arrow {
    font-size: 3.2vw;
    padding: 4.2666666667vw 26.6666666667vw 4.2666666667vw 0;
  }
  .link-arrow::before {
    width: 14.9333333333vw;
  }
  .link-arrow::after {
    right: -0.5333333333vw;
    top: calc(50% - 0.8vw);
    width: 2.6666666667vw;
  }
  .link-arrow:hover::before {
    width: 9.6vw;
  }
  .link-arrow span::before {
    top: -1.0666666667vw;
    right: -14.9333333333vw;
    width: 6.4vw;
    height: 6.4vw;
  }
  .link-button {
    font-size: 3.7333333333vw;
    padding: 2.6666666667vw 13.3333333333vw;
    letter-spacing: 0.3466666667vw;
  }
  .underpage-deco img {
    width: 10.6666666667vw;
  }
  .underpage-separator {
    left: calc(50% - 1.0666666667vw);
  }
  .underpage-separator__inner {
    width: 2.1333333333vw;
    height: 24.5333333333vw;
  }
  .underpage-separator__inner img {
    width: 2.1333333333vw;
  }
  .underpage-separator.is-show__mask .underpage-separator__item {
    height: 24.5333333333vw;
  }
  .js-under-sp {
    opacity: 0;
    transition: 1s;
    transform: translate(0, 50px);
  }
  .js-under-sp.is-show__under-sp {
    opacity: 1;
    transform: translate(0, 0);
  }
  .js-under.is-show__under-sp {
    opacity: 1;
    transform: translate(0, 0);
  }
  .deco-rhombus {
    width: 10.9333333333vw;
    height: 2.1333333333vw;
    margin: 32vw auto 0;
  }
  .content-inner.--sp-pd {
    padding-right: 6.4vw;
    padding-left: 6.4vw;
  }
  .fs-14 {
    font-size: 3.7333333333vw;
  }
  .mt-40 {
    margin-top: 10.6666666667vw;
  }
  .mt-80 {
    margin-top: 21.3333333333vw;
  }
  #page-404 .img-deco {
    width: 27.7333333333vw;
  }
  .c-footer-bm {
    margin-bottom: 48vw;
  }
  .footer__wrap {
    padding: 14.9333333333vw 4.2666666667vw;
  }
  .footer__nav {
    flex-direction: column;
  }
  .footer__nav li {
    font-size: 3.7333333333vw;
  }
  .footer__nav li:first-child {
    padding-bottom: 6.4vw;
    margin-bottom: 10.6666666667vw;
  }
  .footer__nav li:first-child:after {
    border-bottom: 0.2666666667vw solid #777777;
    width: 5.8666666667vw;
    height: 0.2666666667vw;
    bottom: 0;
    left: 0;
  }
  .footer__nav li:first-child img {
    width: 25.8666666667vw;
  }
  .footer__nav li:not(:first-child) {
    margin-bottom: 4.2666666667vw;
  }
  .footer__copy {
    padding: 2.1333333333vw 0;
  }
  .footer__copy p {
    font-size: 3.2vw;
  }
  .title-h1 {
    font-size: 10.6666666667vw;
    margin-top: 3.2vw;
  }
  .title-h1 small {
    font-size: 7.4666666667vw;
  }
}