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

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

blockquote, q {
  quotes: none;
}

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

ol, ul {
  list-style: none;
}

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

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

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

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

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

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

[role=button] {
  cursor: pointer;
}

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

[aria-controls] {
  cursor: pointer;
}

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

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #bec6cb;
  --color-green: #00ebb4;
  --color-blue: #3b88d5;
  --ease-main: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in: cubic-bezier(0.5, 0, 0.75, 0);
  --font-all: YakuHanMP,"Shippori Mincho","Gilda Display","游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  --font-jp: "Shippori Mincho","游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  --font-en: "Gilda Display", "Noto Sans JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
}

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

@media screen and (min-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
}
html {
  font-size: 0.625em;
}

body {
  font-family: var(--font-all);
  color: var(--color-black);
  background-color: var(--color-bg-black);
}

.p-main {
  transition: filter 0.5s var(--ease-main);
}
.is-menu-open .p-main {
  filter: blur(10px);
}
.--in .p-main {
  padding: 195px 0 0;
}
@media screen and (max-width: 899px) {
  .--in .p-main {
    padding: 96px 0 0;
  }
}

.m-modal.m-modal-custom .m-modal__close-btn {
  right: 10px;
  top: 10px;
  transition: transform 0.6s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .m-modal.m-modal-custom .m-modal__close-btn:hover {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 899px) {
  .m-modal.m-modal-custom .m-modal__close-btn {
    width: 40px;
    height: 40px;
  }
}
.m-modal.m-modal-custom .m-modal__close-btn::before, .m-modal.m-modal-custom .m-modal__close-btn::after {
  background-color: var(--color-black);
}
@media screen and (max-width: 899px) {
  .m-modal.m-modal-custom .m-modal__close-btn::before, .m-modal.m-modal-custom .m-modal__close-btn::after {
    height: 40px;
  }
}

.m-modal.m-modal-custom .m-modal__bg {
  background-color: var(--color-white);
  opacity: 0.9;
}

a {
  text-decoration: none;
}

.l-wrap {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}
.l-wrap.--in {
  background: url(../img/bg/bg_grd_pc.png) no-repeat center/cover;
}
@media screen and (max-width: 899px) {
  .l-wrap.--in {
    background: url(../img/bg/bg_grd_sp.png) no-repeat center/cover;
  }
}

.l-bg {
  background: url(../img/bg/bg_cont_pc.png) repeat-y center top/100% auto;
  transition: background-position 0.7s var(--ease-main);
}
.--in .l-bg {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}
@media screen and (max-width: 899px) {
  .l-bg {
    background: url(../img/bg/bg_cont_sp.png) repeat-y center top/100% auto;
  }
}

.l-inner {
  width: 95.7%;
  margin: 0 auto;
  position: relative;
}
.l-inner::before, .l-inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 98.7%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.l-inner::before {
  border-left: 1px solid var(--color-gray);
}
.l-inner::after {
  border-right: 1px solid var(--color-gray);
}
.l-inner__deco {
  pointer-events: none;
}
.l-inner__deco::before, .l-inner__deco::after {
  content: "";
  display: block;
  width: 0.5%;
  padding-top: 5.1%;
  position: absolute;
  top: 0;
  pointer-events: none;
}
@media screen and (max-width: 899px) {
  .l-inner__deco::before, .l-inner__deco::after {
    width: 1.1%;
    padding-top: 14.1%;
  }
}
.l-inner__deco::before {
  left: 0;
  transform: translateX(-87%);
  background: url(../img/kv/common/deco_left.png) no-repeat center/contain;
}
.l-inner__deco::after {
  right: 0;
  transform: translateX(87%);
  background: url(../img/kv/common/deco_light.png) no-repeat center/contain;
}

.c-title img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}

.c-btn__text {
  display: block;
  padding: 18px 0 17px;
  font-family: var(--font-en);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 50rem;
  border: 1px solid var(--color-black);
  transition: background-color 0.5s var(--ease-main), color 0.5s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .c-btn__text:hover {
    color: var(--color-black);
    background-color: var(--color-white);
  }
}
@media screen and (max-width: 899px) {
  .c-btn__text {
    padding: 15px 0 16px;
    font-size: 1rem;
    letter-spacing: 0.06em;
  }
}

.p-header {
  width: 94.3%;
  position: fixed;
  top: 0;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: opacity 0.8s var(--ease-main) 1s, transform 0.8s var(--ease-main) 1s;
  z-index: 1;
}
.--in .p-header {
  transition-delay: 0.2s;
}
.is-load .p-header {
  opacity: 1;
  transform: translateX(-50%);
}
@media screen and (max-width: 899px) {
  .p-header {
    width: 100%;
    height: 0;
  }
  .is-menu-open .p-header {
    height: auto;
  }
}

.p-header__logo {
  width: 70px;
  position: absolute;
  top: 24px;
  left: -10px;
  transition: transform 0.7s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-header__logo:hover {
    transform: scale(0.95);
  }
}
@media screen and (max-width: 899px) {
  .p-header__logo {
    width: 47px;
    top: 14px;
    left: 14px;
  }
}
.p-header__logo img {
  width: 100%;
}

.p-header__btn {
  width: 40px;
  height: 8px;
  position: fixed;
  top: 20px;
  right: 14px;
  z-index: 1;
}
.p-header__btn .p-in-item {
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  left: 0;
  transition: transform 0.4s var(--ease-main), top 0.4s var(--ease-main), bottom 0.4s var(--ease-main);
}
.p-header__btn .p-in-item:nth-of-type(1) {
  top: 0;
}
.is-menu-open .p-header__btn .p-in-item:nth-of-type(1) {
  top: 4px;
  transform: rotate(25deg);
}
.p-header__btn .p-in-item:nth-of-type(2) {
  bottom: 0;
}
.is-menu-open .p-header__btn .p-in-item:nth-of-type(2) {
  bottom: 4px;
  transform: rotate(-25deg);
}

.p-header__main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 37px;
}
@media screen and (max-width: 899px) {
  .p-header__main {
    display: block;
    padding-top: 0;
    padding: 10px;
    transition: -webkit-clip-path 0.5s var(--ease-main);
    transition: clip-path 0.5s var(--ease-main);
    transition: clip-path 0.5s var(--ease-main), -webkit-clip-path 0.5s var(--ease-main);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    pointer-events: none;
  }
  .is-menu-open .p-header__main {
    pointer-events: auto;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

.p-header__main-logo {
  width: 83%;
  padding-top: 10%;
  background-color: var(--color-black);
  border-radius: 10px 10px 0 0;
  position: relative;
  z-index: 1;
}
.p-header__main-logo::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 0;
  bottom: 1px;
  transform: translateX(100%);
  background: url(../img/corner.svg) no-repeat center/contain;
  z-index: 1;
}
.p-header__main-logo img {
  width: 65%;
  position: absolute;
  top: 18px;
  left: 23px;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s var(--ease-main), transform 0.6s var(--ease-main);
}
.is-menu-open .p-header__main-logo img {
  opacity: 1;
  transform: scale(1);
}

.p-header__menu {
  padding-right: 41px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-header__menu {
    top: 2px;
  }
}
@media screen and (max-width: 899px) {
  .p-header__menu {
    padding: 0;
    padding-top: 68px;
    background-color: var(--color-black);
    border-radius: 0 10px 0 0;
    top: -1px;
  }
}
.p-header__menu::before {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-black);
}
.p-header__menu .p-header__menu-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 899px) {
  .p-header__menu .p-header__menu-list {
    display: block;
    width: 83.5%;
    margin: 0 auto;
    padding-bottom: 26px;
    position: relative;
  }
  .p-header__menu .p-header__menu-list::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 1px;
    background-color: var(--color-white);
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition: -webkit-clip-path 0.5s var(--ease-main) 0.3s;
    transition: clip-path 0.5s var(--ease-main) 0.3s;
    transition: clip-path 0.5s var(--ease-main) 0.3s, -webkit-clip-path 0.5s var(--ease-main) 0.3s;
  }
  .is-menu-open .p-header__menu .p-header__menu-list::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.p-header__menu .p-header__menu-list .p-header__menu-list-item {
  font-family: var(--font-en);
  font-size: 1.5rem;
  margin-left: 37px;
}
.p-header__menu .p-header__menu-list .p-header__menu-list-item:nth-of-type(1) {
  transition-delay: 0.1s;
}
.p-header__menu .p-header__menu-list .p-header__menu-list-item:nth-of-type(2) {
  transition-delay: 0.2s;
}
.p-header__menu .p-header__menu-list .p-header__menu-list-item:nth-of-type(3) {
  transition-delay: 0.3s;
}
.p-header__menu .p-header__menu-list .p-header__menu-list-item:nth-of-type(4) {
  transition-delay: 0.4s;
}
.p-header__menu .p-header__menu-list .p-header__menu-list-item:nth-of-type(5) {
  transition-delay: 0.5s;
}
.p-header__menu .p-header__menu-list .p-header__menu-list-item:nth-of-type(6) {
  transition-delay: 0.6s;
}
.p-header__menu .p-header__menu-list .p-header__menu-list-item:nth-of-type(7) {
  transition-delay: 0.7s;
}
.p-header__menu .p-header__menu-list .p-header__menu-list-item:nth-of-type(8) {
  transition-delay: 0.8s;
}
.p-header__menu .p-header__menu-list .p-header__menu-list-item:nth-of-type(9) {
  transition-delay: 0.9s;
}
.p-header__menu .p-header__menu-list .p-header__menu-list-item:nth-of-type(10) {
  transition-delay: 1s;
}
@media screen and (min-width: 900px) {
  .p-header__menu .p-header__menu-list .p-header__menu-list-item:hover:nth-of-type(odd) a {
    color: var(--color-blue);
  }
  .p-header__menu .p-header__menu-list .p-header__menu-list-item:hover:nth-of-type(even) a {
    color: var(--color-green);
  }
}
@media screen and (max-width: 899px) {
  .p-header__menu .p-header__menu-list .p-header__menu-list-item {
    margin: 0;
    margin-bottom: 26px;
    font-size: 1.6rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s var(--ease-main), transform 0.6s var(--ease-main);
  }
  .is-menu-open .p-header__menu .p-header__menu-list .p-header__menu-list-item {
    opacity: 1;
    transform: translateY(0);
  }
  .p-header__menu .p-header__menu-list .p-header__menu-list-item:last-of-type {
    margin-bottom: 0;
  }
}
.p-header__menu .p-header__menu-list .p-header__menu-list-item a {
  color: var(--color-black);
  transition: color 0.5s var(--ease-main);
}
@media screen and (max-width: 899px) {
  .p-header__menu .p-header__menu-list .p-header__menu-list-item a {
    color: var(--color-white);
  }
}

.p-header__link {
  display: flex;
  align-items: center;
  padding-left: 37px;
}
@media screen and (max-width: 899px) {
  .p-header__link {
    display: block;
    padding-top: 26px;
    padding-bottom: 49px;
    padding-left: 0;
    background-color: var(--color-black);
    border-radius: 0 0 10px 10px;
    position: relative;
    top: -2px;
  }
}
@media screen and (max-width: 899px) {
  .p-header__link-official {
    width: 83.5%;
    margin: 0 auto 22px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s var(--ease-main) 0.5s, transform 0.6s var(--ease-main) 0.5s;
  }
  .is-menu-open .p-header__link-official {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-header__link-official a {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--color-black);
}
.p-header__link-official a .p-in-item {
  vertical-align: baseline;
  transition: color 0.5s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-header__link-official a:hover .p-in-item:nth-of-type(1) {
    color: var(--color-blue);
  }
  .p-header__link-official a:hover .p-in-item:nth-of-type(2) {
    color: var(--color-green);
  }
}
@media screen and (max-width: 899px) {
  .p-header__link-official a {
    font-size: 1.5rem;
    color: var(--color-white);
  }
}
@media screen and (max-width: 899px) {
  .p-header__link-sns {
    width: 83.5%;
    margin: 0 auto;
  }
}
.p-header__link-sns-list {
  display: flex;
  align-items: center;
}
.p-header__link-sns-list-item {
  width: 25px;
  margin-left: 26px;
  transition: transform 0.5s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .p-header__link-sns-list-item:hover {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 899px) {
  .p-header__link-sns-list-item {
    width: 20px;
    margin-left: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s var(--ease-main) 0.5s, transform 0.6s var(--ease-main) 0.5s;
  }
  .is-menu-open .p-header__link-sns-list-item {
    opacity: 1;
    transform: translateY(0);
  }
  .p-header__link-sns-list-item:nth-of-type(1) {
    transition-delay: 0.6s;
  }
  .p-header__link-sns-list-item:nth-of-type(2) {
    transition-delay: 0.7s;
  }
  .p-header__link-sns-list-item:nth-of-type(3) {
    transition-delay: 0.8s;
  }
  .p-header__link-sns-list-item:first-of-type {
    margin-left: 0;
  }
}
.p-header__link-sns-list-item img {
  width: 100%;
}
@media screen and (max-width: 899px) {
  .p-header__link-other {
    width: 83.5%;
    margin: 0 auto;
  }
}
.p-header__link-other-list {
  display: block;
}
.p-header__link-other-list-item {
  font-size: 1.2rem;
}
@media screen and (max-width: 899px) {
  .p-header__link-other-list-item {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.6s var(--ease-main) 0.5s, transform 0.6s var(--ease-main) 0.5s;
  }
  .is-menu-open .p-header__link-other-list-item {
    opacity: 1;
    transform: translateX(0);
  }
  .p-header__link-other-list-item:nth-of-type(1) {
    transition-delay: 0.6s;
  }
  .p-header__link-other-list-item:nth-of-type(2) {
    transition-delay: 0.7s;
  }
  .p-header__link-other-list-item:nth-of-type(3) {
    transition-delay: 0.8s;
  }
}
.p-header__link-other-list-item a {
  display: block;
  color: var(--color-white);
  padding-right: 13px;
  padding-bottom: 5px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-header__link-other-list-item a {
    padding-right: 13px;
    padding-bottom: 3px;
  }
}
.p-header__link-other-list-item a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 35%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/arrow03.svg) no-repeat center/contain;
}
.p-header__link-other-list-item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-white);
}
@media screen and (min-width: 900px) {
  .p-header__link-other-list-item + .p-header__link-other-list-item {
    margin-left: 45px;
  }
}
@media screen and (max-width: 899px) {
  .p-header__link-other-list-item + .p-header__link-other-list-item {
    margin-top: 20px;
  }
}

.p-footer {
  padding-bottom: 82px;
  transition: filter 0.5s var(--ease-main);
}
.is-menu-open .p-footer {
  filter: blur(10px);
}
@media screen and (max-width: 899px) {
  .p-footer {
    padding-bottom: 52px;
  }
}

.p-footer__link {
  margin-bottom: 37px;
}
.p-footer__link-list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 899px) {
  .p-footer__link-list {
    display: block;
  }
}
.p-footer__link-list-item {
  font-size: 1.2rem;
}
@media screen and (max-width: 899px) {
  .p-footer__link-list-item {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (min-width: 900px) {
  .p-footer__link-list-item a:hover {
    opacity: 0.5;
  }
}
.p-footer__link-list-item a {
  display: block;
  color: var(--color-black);
  padding-right: 13px;
  padding-bottom: 5px;
  position: relative;
  transition: opacity 0.7s var(--ease-main);
}
@media screen and (max-width: 899px) {
  .p-footer__link-list-item a {
    padding-right: 13px;
    padding-bottom: 3px;
  }
}
.p-footer__link-list-item a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 35%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/arrow01.svg) no-repeat center/contain;
}
.p-footer__link-list-item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-black);
}
@media screen and (min-width: 900px) {
  .p-footer__link-list-item + .p-footer__link-list-item {
    margin-left: 45px;
  }
}
@media screen and (max-width: 899px) {
  .p-footer__link-list-item + .p-footer__link-list-item {
    margin-top: 20px;
  }
}

.p-footer__copy {
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.05em;
}