@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 {
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-brown: #6b5c45;
  --color-text: #fff6d3;
  --color-pink: #ea8294;
  --color-text-shadow: #e8ac4c;
}

.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg/bg_base_pc.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 859px) {
  .l-bg {
    background: url(../img/bg/bg_base_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}

.l-wrap {
  position: relative;
  overflow: hidden;
}
.l-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
}
.is-load .l-wrap::after {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.37, 0, 0.63, 1);
}

.l-hbg {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 120px;
  cursor: pointer;
  transform: translateY(30px);
  opacity: 0;
}
.is-load .l-hbg {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s cubic-bezier(0.36, 0.68, 0.55, 0.97);
  transition-delay: 0.9s;
}
@media (hover: hover) {
  .l-hbg:hover .l-hbg__inner {
    transform: scale(0.97);
  }
}
@media screen and (max-width: 859px) {
  .l-hbg {
    top: 9px;
    right: 10px;
    width: 81px;
  }
}
.l-hbg__inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-hbg__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 40%;
}
.l-hbg__line-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-white);
  width: 100%;
  height: 2px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-hbg__line-item:nth-child(1) {
  top: 32%;
}
.is-menu-open .l-hbg__line-item:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.is-menu-open .l-hbg__line-item:nth-child(2) {
  opacity: 0;
}
.l-hbg__line-item:nth-child(3) {
  top: 68%;
}
.is-menu-open .l-hbg__line-item:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 570px;
  background-color: var(--color-black);
  overflow: hidden;
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-menu-open .l-menu {
  pointer-events: auto;
  transform: translateX(0);
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 859px) {
  .l-menu {
    width: 28.5rem;
  }
}
.l-menu__inner {
  width: 100%;
  height: 100%;
}
.is-menu-open .l-menu__inner {
  overflow: auto;
}
.l-menu__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 50px 0;
  padding-right: 13%;
  padding-left: 16%;
}
@media screen and (max-width: 859px) {
  .l-menu__content {
    padding-top: 158px;
    padding-bottom: 30px;
    justify-content: flex-start;
    padding-right: 13%;
    padding-left: 16%;
  }
}
.l-menu__list-item {
  transform: translateY(38px);
  opacity: 0;
}
.is-menu-open .l-menu__list-item {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.36, 0.68, 0.55, 0.97);
}
.is-menu-open .l-menu__list-item:nth-child(1) {
  transition-delay: 0.2s;
}
.is-menu-open .l-menu__list-item:nth-child(2) {
  transition-delay: 0.33s;
}
.is-menu-open .l-menu__list-item:nth-child(3) {
  transition-delay: 0.46s;
}
.l-menu__list-item + .l-menu__list-item {
  margin-top: 21px;
}
@media screen and (max-width: 859px) {
  .l-menu__list-item + .l-menu__list-item {
    margin-top: 1.1rem;
  }
}
.l-menu__list-item a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  padding-left: 42px;
  line-height: 1.2;
}
.l-menu__list-item a::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 1rem;
  left: 0;
  background: url(../img/bullet_star.svg) no-repeat center center;
  background-size: contain;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 859px) {
  .l-menu__list-item a::before {
    width: 0.7rem;
    height: 0.7rem;
    top: 0.45rem;
  }
}
.l-menu__list-item a::after {
  content: "";
  width: calc(100% - 42px);
  right: 0;
  height: 1px;
  background-color: var(--color-text);
  position: absolute;
  bottom: -8px;
  transform: scaleX(0);
  transform-origin: right;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 859px) {
  .l-menu__list-item a {
    font-size: 1.6rem;
    padding-left: 2.1rem;
  }
}
@media (hover: hover) {
  .l-menu__list-item a:hover::before {
    transform: scale(0.75);
  }
  .l-menu__list-item a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
  }
}
.l-menu__foot {
  margin-top: 53px;
  padding-top: 65px;
  position: relative;
  transform: translateY(38px);
  opacity: 0;
}
.is-menu-open .l-menu__foot {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.36, 0.68, 0.55, 0.97);
  transition-delay: 0.3s;
}
@media screen and (max-width: 859px) {
  .l-menu__foot {
    margin-top: 2.5rem;
    padding-top: 3.2rem;
  }
}
.l-menu__foot::before {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/deco/line_dot_menu_pc.png) repeat-x center center;
  background-size: auto 2px;
}
@media screen and (max-width: 859px) {
  .l-menu__foot::before {
    height: 1px;
    background: url(../img/deco/line_dot_menu_sp.png) repeat-x center center;
    background-size: auto 1px;
  }
}
.l-menu__official {
  border: 2px solid var(--color-text);
  border-radius: 100px;
  width: 260px;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  .l-menu__official:hover {
    background-color: var(--color-text);
    transform: scale(0.97);
  }
  .l-menu__official:hover .l-menu__official-text {
    color: var(--color-black);
  }
  .l-menu__official:hover .l-menu__official-text::before {
    background-color: var(--color-black);
  }
  .l-menu__official:hover .l-menu__official-icon {
    fill: var(--color-black);
  }
}
@media screen and (max-width: 859px) {
  .l-menu__official {
    width: 13rem;
    border-width: 1px;
  }
}
.l-menu__official-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: 67px;
}
@media screen and (max-width: 859px) {
  .l-menu__official-inner {
    height: 3.3rem;
  }
}
.l-menu__official-text {
  color: var(--color-text);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding-left: 34px;
  position: relative;
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 859px) {
  .l-menu__official-text {
    font-size: 0.7rem;
    padding-left: 1.7rem;
    line-height: 1.1;
  }
}
.l-menu__official-text::before {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask: url(../img/arrow.svg) no-repeat center center;
  mask: url(../img/arrow.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-text);
}
@media screen and (max-width: 859px) {
  .l-menu__official-text::before {
    width: 0.5rem;
  }
}
.l-menu__official-icon {
  width: 27px;
  fill: var(--color-text);
  margin-left: 20px;
  transition: fill 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 859px) {
  .l-menu__official-icon {
    width: 1.4rem;
    margin-left: 1rem;
  }
}

.l-section {
  padding-top: 50px;
}
.l-section + .l-section {
  margin-top: calc(15rem - 50px);
}
@media screen and (max-width: 859px) {
  .l-section + .l-section {
    margin-top: calc(6.7rem - 50px);
  }
}
.l-section__ttl {
  margin: 0 auto;
  width: 78%;
  max-width: 1347px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 859px) {
  .l-section__ttl {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.l-section__ttl h2 img {
  transform: scaleX(1.2);
  opacity: 0;
}
.l-section.is-active .l-section__ttl h2 img {
  opacity: 1;
  transform: scaleX(1);
  transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.36, 0.68, 0.55, 0.97);
}
.l-section__inner {
  position: relative;
  margin: 0 auto;
  width: 93%;
  max-width: 1600px;
}
@media screen and (max-width: 859px) {
  .l-section__inner {
    width: 100%;
  }
}

.l-footer {
  background-color: var(--color-black);
  margin-top: 14.2rem;
  padding: 91px 10rem 100px;
}
@media screen and (max-width: 859px) {
  .l-footer {
    padding: 66px 6.6% 68px;
    margin-top: 11rem;
  }
}
.l-footer__inner {
  text-align: center;
  position: relative;
  color: var(--color-white);
}
.l-footer__applink {
  border: 1px solid var(--color-white);
  border-radius: 10px;
  margin-bottom: 5rem;
}
.l-footer__applink-inner {
  display: flex;
  align-items: center;
  padding: 4.2% 10.5% 4.8%;
}
.l-footer__applink-icon {
  flex-shrink: 0;
  width: 39%;
}
.l-footer__applink-content {
  width: 61%;
  padding-left: 8.8%;
}
.l-footer__applink-text {
  color: var(--color-pink);
  text-align: left;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 9%;
}
.l-footer__applink-link-item {
  display: none;
}
.l-footer__applink-link-item.is-show {
  display: block;
}
.l-footer__wp {
  margin: 0 auto;
  width: 42rem;
}
@media screen and (max-width: 859px) {
  .l-footer__wp {
    width: 21rem;
  }
}
.l-footer__wp a {
  display: block;
}
@media (hover: hover) {
  .l-footer__wp a:hover img {
    transform: scale(0.98);
    opacity: 0.8;
  }
}
.l-footer__wp img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-footer__pagetop {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
}
@media screen and (max-width: 859px) {
  .l-footer__pagetop {
    width: 80px;
    top: -100px;
    right: -2.5%;
  }
}
.l-footer__pagetop a {
  display: block;
}
@media (hover: hover) {
  .l-footer__pagetop a:hover img {
    transform: scale(0.97);
  }
}
.l-footer__pagetop img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-footer__anilink {
  margin-top: 50px;
}
@media screen and (max-width: 859px) {
  .l-footer__anilink {
    margin-top: 3.3rem;
  }
}
.l-footer__anilink-list {
  display: flex;
  justify-content: center;
}
.l-footer__anilink-list-item {
  position: relative;
}
.l-footer__anilink-list-item + .l-footer__anilink-list-item {
  padding-left: 17px;
  margin-left: 17px;
}
@media screen and (max-width: 859px) {
  .l-footer__anilink-list-item + .l-footer__anilink-list-item {
    padding-left: 1.6rem;
    margin-left: 1.6rem;
  }
}
.l-footer__anilink-list-item + .l-footer__anilink-list-item::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
}
.l-footer__anilink-list-item a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 12px;
  display: block;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  .l-footer__anilink-list-item a:hover {
    opacity: 0.7;
  }
}
.l-footer__text {
  margin-top: 38px;
  line-height: 1.5;
  font-size: 10px;
}
@media screen and (max-width: 859px) {
  .l-footer__text {
    font-size: 1rem;
    margin-top: 3.3rem;
  }
}
.l-footer__copy {
  font-size: 10px;
  line-height: 1.5;
  margin-top: 4px;
}
@media screen and (max-width: 859px) {
  .l-footer__copy {
    font-size: 1rem;
    margin-top: 2px;
  }
}

.c-box {
  position: relative;
  padding: 2.3% 0 2.3%;
  transform: translateY(40px);
  opacity: 0;
}
.c-box.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.36, 0.68, 0.55, 0.97);
}
@media screen and (max-width: 859px) {
  .c-box {
    padding: calc(2.3% + 1px) 0 2.3%;
  }
}
.c-box::before {
  content: "";
  width: 100%;
  padding-top: 3%;
  background: url(../img/deco/frame_pc_top.png) no-repeat center top;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-box::after {
  content: "";
  width: 100%;
  padding-top: 3%;
  background: url(../img/deco/frame_pc_down.png) no-repeat center bottom;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-box__inner {
  position: relative;
  padding: 1.5% 0 2.8%;
  background: url(../img/deco/frame_pc_mid.png) repeat-y center top;
  background-size: 100%;
}
@media screen and (max-width: 859px) {
  .c-box__inner {
    padding: 6.5% 0 7.8%;
  }
}
.c-box__content {
  margin: 0 auto;
  width: 95%;
  max-width: 1200px;
}
@media screen and (max-width: 859px) {
  .c-box__content {
    width: 100%;
  }
}
.c-box__cap {
  margin: 0 auto;
  width: 80%;
  position: relative;
  margin-bottom: 4.2rem;
}
@media screen and (max-width: 859px) {
  .c-box__cap {
    margin-bottom: 3rem;
    width: 30.5rem;
  }
}
.c-box__cap-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  text-align: center;
  color: var(--color-text);
  font-weight: 700;
  font-size: 2.5rem;
  text-shadow: 0 0 8px var(--color-text-shadow);
}
@media screen and (max-width: 859px) {
  .c-box__cap-text {
    line-height: 1.2;
    font-size: 1.6rem;
  }
}
.c-box__btn {
  margin: 0 auto;
  margin-top: 3rem;
  width: 30rem;
}
@media screen and (max-width: 859px) {
  .c-box__btn {
    width: 20rem;
    margin-top: 2rem;
  }
}
.c-box__btn a {
  display: block;
}
@media (hover: hover) {
  .c-box__btn a:hover img {
    transform: scale(0.97);
  }
}
.c-box__btn img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-box__info {
  margin-top: 5rem;
}
@media screen and (max-width: 859px) {
  .c-box__info {
    margin-top: 3.1rem;
  }
}
.c-box__info-list {
  margin: 0 auto;
  width: 90%;
  max-width: 960px;
}
@media screen and (max-width: 859px) {
  .c-box__info-list {
    width: 82%;
  }
}
.c-box__info-list-item {
  display: flex;
  line-height: 1.6;
  position: relative;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 859px) {
  .c-box__info-list-item {
    display: block;
    padding-bottom: 2.5rem;
  }
}
.c-box__info-list-item + .c-box__info-list-item {
  margin-top: 4.4rem;
}
@media screen and (max-width: 859px) {
  .c-box__info-list-item + .c-box__info-list-item {
    margin-top: 2.9rem;
  }
}
.c-box__info-list-item::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/deco/line_dot_pc.png) repeat-x center bottom;
  background-size: 1000px;
}
@media screen and (max-width: 859px) {
  .c-box__info-list-item::before {
    height: 1px;
    background: url(../img/deco/line_dot_sp.png) repeat-x center bottom;
    background-size: 305px;
  }
}
.c-box__info-label {
  flex-shrink: 0;
  width: 14.5rem;
  color: var(--color-brown);
  font-weight: 700;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 859px) {
  .c-box__info-label {
    line-height: 1.2;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 859px) {
  .c-box__info-text {
    font-size: 1.25rem;
    margin-top: 4px;
  }
}
.c-box__info-text .is-small {
  margin-top: 3px;
  font-size: 1.3rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 859px) {
  .c-box__info-text .is-small {
    font-size: 1rem;
  }
}
.c-box__info-text .is-small.--wide-margin {
  margin-top: 26px;
}
.c-box__info-text .is-small + .is-small {
  margin-top: 4px;
}

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

@media screen and (min-width: 860px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
}
@media screen and (max-width: 859px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
}
html {
  width: 100%;
  font-size: 62.5%;
}
@media screen and (min-width: 860px) {
  html {
    font-size: min(0.7142857143vw, 10px);
  }
}
@media screen and (max-width: 370px) {
  html {
    font-size: 54%;
  }
}

body {
  font-size: 1.6rem;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
}