@charset "UTF-8";
.trans, .btn,
.btn a {
  transition: all .2s;
}

/*
---------------------------------------
reset
---------------------------------------
*/
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, button {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  min-height: 100%;
  width: 100%;
  font-size: 62.5%;
}

html, body {
  /*height:100%;*/
  position: relative;
}

.wrapper {
  min-width: 1190px;
  position: relative;
  overflow: hidden;
}

/*Safariでヒラギノ角ゴシックをきれいに表示させるCSS*/
@font-face {
  font-family: sans-serif;
  src: local(HiraginoSans-W3);
  font-weight: normal;
}

@font-face {
  font-family: sans-serif;
  src: local(HiraginoSans-W5);
  font-weight: bold;
}

@font-face {
  font-family: 'Hiragino Kaku Gothic Pro W3';
  src: local(HiraginoSans-W3);
  font-weight: normal;
}

@font-face {
  font-family: 'Hiragino Kaku Gothic Pro W3';
  src: local(HiraginoSans-W5);
  font-weight: bold;
}

@font-face {
  font-family: 'ヒラギノ角ゴ Pro W3';
  src: local(HiraginoSans-W3);
  font-weight: normal;
}

@font-face {
  font-family: 'ヒラギノ角ゴ Pro W3';
  src: local(HiraginoSans-W5);
  font-weight: bold;
}

@font-face {
  font-family: 'ヒラギノ角ゴ ProN W3';
  src: local(HiraginoSans-W3);
  font-weight: normal;
}

@font-face {
  font-family: 'ヒラギノ角ゴ ProN W3';
  src: local(HiraginoSans-W5);
  font-weight: bold;
}

@font-face {
  font-family: 'ＭＳ Ｐゴシック';
  src: local(HiraginoSans-W3);
  font-weight: normal;
}

@font-face {
  font-family: 'ＭＳ Ｐゴシック';
  src: local(HiraginoSans-W5);
  font-weight: bold;
}

@font-face {
  font-family: 'MS P Gothic';
  src: local(HiraginoSans-W3);
  font-weight: normal;
}

@font-face {
  font-family: 'MS P Gothic';
  src: local(HiraginoSans-W5);
  font-weight: bold;
}

@font-face {
  font-family: 'MS PGothic';
  src: local(HiraginoSans-W3);
  font-weight: normal;
}

@font-face {
  font-family: 'MS PGothic';
  src: local(HiraginoSans-W5);
  font-weight: bold;
}

body {
  font-family: Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'モリサワ 新ゴ R', 'Droid Sans', メイリオ, 'sans-serif';
  color: #15121c;
  height: 100%;
  width: 100%;
  min-width: 320px;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: strict;
}

/* IE */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  }
}

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

input:focus, textarea:focus, button:focus {
  outline: 0;
}

img {
  border: none;
}

ol, ul {
  list-style: none;
}

p, dt, dd, li {
  font-size: 1.6rem;
  line-height: 2;
}

li {
  font-size: 1.6rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table th {
  font-weight: normal;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

p, dd, li, address {
  font-style: normal;
}

body small {
  font-size: 1.1rem;
}

figure {
  line-height: 0;
}

em {
  font-weight: inherit;
}

/*
----------------------------------------
flex
----------------------------------------
*/
.flex {
  -js-display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}

.flex.nowrap {
  flex-wrap: nowrap;
}

.flex.reverce {
  flex-direction: row-reverse;
}

.flex.item-center {
  align-items: center;
}

/*
---------------------------------------
link
---------------------------------------
*/
a {
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/*
---------------------------------------
clear
---------------------------------------
*/
.clearfix:after {
  content: '.';
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*/
  /*/
	height: auto;
	overflow: hidden;
	/**/
}

*:first-child + html .clearfix {
  zoom: 1;
}

/* IE7 */
/*
---------------------------------------
common
---------------------------------------
*/
.pc {
  display: block !important;
  margin: 0 auto;
}

.sp {
  display: none !important;
}

.inner {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  word-wrap: break-word;
  word-break: break-all;
}

span {
  font-size: inherit;
  font-weight: inherit;
}

.en {
  font-family: 'Roboto Condensed', sans-serif;
  font-style: normal;
}

.min {
  font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.trans, .btn,
.btn a {
  transition: all .2s;
}

.img {
  line-height: 0;
}

.ofi {
  object-fit: cover;
  object-position: bottom;
  font-family: 'object-fit: cover;';
}

.ofi_bottom {
  font-family: 'object-fit: cover; object-position: bottom;';
}

/*
---------------------------------------
icomoon
---------------------------------------
*/
@font-face {
  font-family: 'icomoon';
  src: url("/wp-content/themes/anime/fonts/icomoon.eot?h8hxir");
  src: url("/wp-content/themes/anime/fonts/icomoon.eot?h8hxir#iefix") format("embedded-opentype"), url("/wp-content/themes/anime/fonts/icomoon.ttf?h8hxir") format("truetype"), url("/wp-content/themes/anime/fonts/icomoon.woff?h8hxir") format("woff"), url("/wp-content/themes/anime/fonts/icomoon.svg?h8hxir#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-external-link:before {
  content: "\e900";
}

.icon-line:before {
  content: "\e901";
}

.icon-youtube:before {
  content: "\e902";
}

.icon-twitter:before {
  content: "\e903";
}

.icon-facebook-f:before {
  content: "\e904";
}

/*
---------------------------------------
heading
---------------------------------------
*/
.heading-01-en {
  text-align: center;
  padding-bottom: 2rem;
}

@media (max-width: 650px) {
  .heading-01-en {
    padding-bottom: 0;
    margin-bottom: 2rem;
    padding-right: 1.5rem;
  }
  .heading-01-en img {
    height: 22px;
    width: auto;
  }
}

.heading-01 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  padding-left: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 650px) {
  .heading-01 {
    font-size: 1.3rem;
    padding-left: 0;
  }
}

/*
---------------------------------------
btn
---------------------------------------
*/
.btn,
.btn a {
  overflow: hidden;
  position: relative;
}

.btn-01 {
  border: 1px solid #111129;
  color: #111129;
  text-align: center;
  display: inline-block;
  width: 164px;
  height: 50px;
  line-height: 48px;
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  background-color: #fff;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, transparent 50%, #111129 50%);
  transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
  padding-right: 1rem;
}

@media (max-width: 650px) {
  .btn-01 {
    font-size: 1rem;
    width: 75%;
  }
}

@media (min-width: 650px) {
  .btn-01:hover {
    color: #fff;
    background-color: #111129;
    background-position: -100% 100%;
  }
  .btn-01:hover:before {
    background: url(/wp-content/themes/anime/img/common/arrow-right_w.png) no-repeat center center/cover;
    background-size: 16px;
  }
}

.btn-01:before {
  content: '';
  background: url(/wp-content/themes/anime/img/common/arrow-right.png) no-repeat center center/cover;
  width: 16px;
  background-size: 16px;
  height: 4px;
  display: inline-block;
  margin-right: 1.3rem;
  vertical-align: middle;
}

/*
---------------------------------------
header
---------------------------------------
*/
#header {
  padding: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
}

#header.fixed {
  position: fixed;
  background: #111129;
}

#header.fixed .header-top {
  padding: 10px 0 14px;
}

#header.fixed .header-top .inner {
  align-items: center;
}

#header.fixed .header-top .logo {
  width: 70px;
}

#header.fixed .header-top .logo img {
  width: 100%;
  height: auto;
}

#header.fixed #g-nav {
  align-items: center;
}

#header.fixed #g-nav .logo {
  text-align: center;
}

#header.fixed .sns-list .sns-item {
  line-height: 1;
}

#header .header-top {
  padding: 32px 0 0;
}

#header .header-top .inner {
  max-width: 100%;
  padding: 0 5vw;
}

#header a img:hover {
  opacity: 1;
}

#header .logo {
  margin: 0 auto 0 0;
}

#header #g-nav {
  padding-left: 26px;
  display: -ms-flexbox;
  display: flex;
}

#header .g-nav-list {
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
  margin-right: 30px;
}

#header .g-nav-list li {
  padding: 0 13px;
  font-size: 1.2rem;
  letter-spacing: .05em;
}

#header .g-nav-list li a {
  display: inline-block;
  padding: 0 5px;
  color: #fff;
}

#header .g-nav-list li.no-link a {
  color: #b4b9be;
  cursor: default;
  opacity: .8;
}

#header .sns-list {
  display: -ms-flexbox;
  display: flex;
}

#header .sns-list.pc {
  display: -ms-flexbox !important;
  display: flex !important;
}

#header .sns-list .sns-item {
  padding: 0 5px;
}

#header .sns-list .sns-item a {
  display: inline-block;
  padding: 0 5px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

/*
---------------------------------------
footer
---------------------------------------
*/
footer {
  width: 100%;
  background: #fff;
  padding: 6.5rem 0 6rem;
  text-align: center;
  position: relative;
}

footer .inner {
  max-width: 550px;
}

footer .footer-logo {
  padding-bottom: 5.5rem;
}

footer .link-list {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 3.5rem;
  margin-bottom: 4.3rem;
}

footer .link-list .link-item {
  font-size: 1.4rem;
  font-weight: bold;
}

footer .link-list .link-item a {
  display: inline-block;
  letter-spacing: .05em;
}

footer .link-list .link-item a .icon {
  color: #a0a0a9;
  padding-left: 5px;
}

footer .sns-list {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 3rem;
}

footer .sns-list .ttl-sns {
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  width: 107px;
  text-align: left;
  margin-right: 13px;
}

footer .sns-list .ttl-sns:before {
  content: '';
  background: #111129;
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

footer .sns-list .ttl-sns span {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0 1em 0 0;
}

footer .sns-list .sns-item {
  font-size: 3.5rem;
  padding: 0 1rem;
}

footer .logo-list {
  padding: 2.5rem 0 3.8rem;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .logo-list .logo-item {
  padding: 0 1.5rem;
}

.copyright {
  text-align: center;
}

.copyright small {
  font-size: 1rem;
  letter-spacing: .06em;
}

.privacy {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

a.privacy-link:hover {
  opacity: 0.5;
}

@media (max-width: 650px) {
  footer {
    padding: 6rem 0 3rem;
  }
  footer .footer-logo {
    width: 38%;
    margin: 0 auto;
    padding-bottom: 4rem;
  }
  footer .link-list {
    display: block;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
  }
  footer .link-list .link-item {
    padding-bottom: 2rem;
  }
  footer .sns-list {
    padding-bottom: 3rem;
  }
  footer .sns-list .ttl-sns {
    width: 90px;
  }
  footer .sns-list .sns-item {
    font-size: 3rem;
    padding: 0 1rem;
  }
  footer .logo-list {
    padding: 0.5rem 0 2.5rem;
    max-width: 80%;
    margin: 0 auto;
  }
  .copyright small {
    letter-spacing: 0;
  }
}
