@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Roboto:wght@400;700;900&display=swap");
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-blue: #009fc9;
  --color-green: #2b9b51;
  --color-yellow: #ce9d00;
  --color-purple: #af579d;
  --color-red: #e8342f;
  --font-jp: YakuHanJPs, "Noto Sans JP", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  --font-en: YakuHanJPs, "Montserrat", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

html {
  scroll-behavior: smooth;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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;
}

input,
select {
  vertical-align: middle;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

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

li {
  list-style: none;
}

body {
  font-weight: 400;
  color: var(--color-black);
  font-family: var(--font-jp);
  letter-spacing: 0.05em;
  font-size: 1.5rem;
}

body.is-modal-open {
  overflow: hidden;
}

html {
  font-size: 3.125vw;
}

#wrapper {
  position: relative;
  -webkit-animation: opacity 1.5s cubic-bezier(0.5, 1, 0.89, 1) 0.5s forwards;
  animation: opacity 1.5s cubic-bezier(0.5, 1, 0.89, 1) 0.5s forwards;
  opacity: 0;
}

#wrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/bg_pc.jpg) center center no-repeat;
  background-size: cover;
}

#main_contents {
  position: relative;
  background: url(../img/common/bg.jpg) top center;
  width: 600px;
  margin: 0 auto;
  padding: 0 10px;
  -webkit-animation: bg 20s linear infinite;
          animation: bg 20s linear infinite;
}

@media only screen and (max-width: 750px) {
  #main_contents {
    background-size: 80px;
  }
}

#main_contents::before {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #e67570;
}

#main_contents::after {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #e67570;
}

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

@media only screen and (min-width: 751px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}

@media only screen and (max-width: 750px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}

@-webkit-keyframes bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -800px -586px;
  }
}

@keyframes bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -800px -586px;
  }
}

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

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

/************************************************************/
nav {
  font-family: var(--font-en);
  font-weight: 800;
}

@media only screen and (min-width: 751px) {
  nav {
    position: fixed;
    width: calc(100% - 600px);
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: right;
    font-size: 2.2rem;
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 750px) {
  nav {
    font-size: 5.2rem;
  }
}

nav .nav {
  margin-right: 5%;
}

@media only screen and (max-width: 750px) {
  nav .nav {
    position: fixed;
    width: 100%;
    height: 100%;
    font-weight: 600;
    display: none;
    opacity: 1;
    z-index: 1;
    background: url(../img/common/bg.jpg);
  }
}

nav a {
  color: #000;
  text-decoration: none;
  -webkit-transition: color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transition: color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  font-weight: 800;
}

@media only screen and (min-width: 961px) {
  nav a:hover {
    color: var(--color-red);
  }
}

nav .nav__list .menu_item {
  margin-top: 10px;
}

@media only screen and (max-width: 960px) {
  nav .nav__list .menu_item {
    margin-top: 20px;
  }
}

nav .nav__list .menu_item:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 750px) {
  nav .nav__list {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: 10%;
  }
}

@media only screen and (min-width: 751px) {
  nav .nav_btn {
    display: none;
  }
}

@media only screen and (max-width: 750px) {
  nav .nav_btn {
    opacity: 1;
    position: fixed;
    z-index: 120;
    top: 10px;
    left: 20px;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    cursor: pointer;
    background-size: contain;
    background: var(--color-red);
  }
}

nav .nav_btn__inner {
  position: relative;
  top: 22px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 57%;
  height: 40px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media only screen and (max-width: 960px) {
  nav .nav_btn__inner {
    position: absolute;
    top: 50%;
    height: 28px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

nav .nav_btn__inner span {
  position: absolute;
  left: 0;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 3px;
  -webkit-transition: all .4s;
  transition: all .4s;
  border-radius: 1px;
  background-color: #fff;
  z-index: 10;
}

nav .nav_btn__inner span:nth-of-type(1) {
  top: 0;
}

nav .nav_btn__inner span:nth-of-type(2) {
  top: 13px;
}

nav .nav_btn__inner span:nth-of-type(3) {
  bottom: 0;
}

nav .nav_btn__inner.nav_open span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

nav .nav_btn__inner.nav_open span:nth-of-type(2) {
  opacity: 0;
}

nav .nav_btn__inner.nav_open span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}

@media screen and (max-width: 767px) {
  nav .nav_btn__inner.nav_open span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
  }
  nav .nav_btn__inner.nav_open span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
  }
  nav .nav_btn__inner.nav_open span:nth-of-type(1) {
    top: 7px;
  }
  nav .nav_btn__inner.nav_open span:nth-of-type(3) {
    bottom: 7px;
  }
}

/************************************************************/
.logo {
  position: fixed;
  width: calc(100% - 600px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.logo img {
  width: 30%;
  margin-left: 10%;
}

@media only screen and (max-width: 750px) {
  .logo {
    display: none;
  }
}

.footer {
  margin: 100px auto 0;
  font-size: 0.8rem;
  text-align: center;
  padding: 80px 5%;
  line-height: 1.5em;
  background: var(--color-white);
}

@media only screen and (max-width: 750px) {
  .footer {
    font-size: 1.3rem;
    margin: 150px auto 0;
  }
}

.footer .share_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .share_list li {
  width: 14%;
  margin-left: 5%;
  -webkit-transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

@media only screen and (min-width: 961px) {
  .footer .share_list li:hover {
    opacity: 0.7;
  }
}

.footer .share_list li:first-child {
  margin-left: 0;
}

.footer .aniplex_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10%;
  font-weight: 800;
}

.footer .aniplex_link li {
  margin-left: 10px;
}

.footer .aniplex_link li:first-child {
  margin-left: 0;
}

.footer a {
  color: var(--color-black);
}

@media only screen and (min-width: 961px) {
  .footer a:hover {
    text-decoration: none;
  }
}

.footer .-notice {
  margin-top: 3%;
}

.footer .-copyright {
  margin-top: 5%;
}
/*# sourceMappingURL=kmf.common.css.map */