@charset "UTF-8";
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
  margin: 0;
  padding: 0;
  font-size: inherit;
  box-sizing: border-box;
}

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

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

ol,
ul {
  list-style: none;
}

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

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

svg:not(:root) {
  overflow: hidden;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

button,
input,
select {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

[disabled] {
  cursor: default;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

blockquote,
q {
  quotes: none;
}

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

body {
  font-family: "Zen Kaku Gothic New", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

[type=button],
[type=reset],
[type=submit],
a,
a img,
button {
  transition: 0.3s;
}

a:hover img {
  opacity: 0.7;
}

/*==================================================================================================
    サイト基礎
==================================================================================================*/
body {
  font-feature-settings: "palt";
  letter-spacing: 0.066em;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body.opened {
    overflow: hidden;
  }
}

img {
  max-width: none;
  width: 100%;
}

/*==================================================================================================
    共通
=================================================================================================*/
.pc-show {
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pc-show {
    display: none;
  }
}

.sp-show {
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sp-show {
    display: block;
  }
}

.anim {
  opacity: 0;
}

.fadein.is-animated {
  -webkit-animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================================================================
    header
==================================================================================================*/
.site-header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
  font-size: 1.6rem;
  background: #00000c;
}
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.875em;
}
@media screen and (max-width: 1080px) {
  .site-header {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .site-header {
    font-size: 1.6rem;
  }
  .site-header__inner {
    padding: 0 0 0 1em;
  }
}

.header-logo img {
  width: 18.75em;
}
@media screen and (max-width: 768px) {
  .header-logo {
    margin-top: 0;
    width: auto;
    padding: 0;
  }
  .header-logo img {
    width: 200px;
  }
}

.menu-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .menu-btn {
    display: block;
    background-color: #00000c;
    border: none;
    width: 60px;
    height: 60px;
    margin-left: auto;
    padding: 22px 20px 22px;
  }
}
.menu-btn span {
  display: block;
  position: relative;
  height: 100%;
}
.menu-btn span span {
  display: block;
  background: #FFF;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  transition: 0.5s;
  transform-origin: center center;
}
.menu-btn span span:nth-child(1) {
  top: 0;
  transform: rotate(0deg);
}
.menu-btn span span:nth-child(2) {
  top: 50%;
  width: 55%;
}
.menu-btn span span:nth-child(3) {
  top: 100%;
  transform: rotate(0deg);
}
.menu-btn--opened span {
  transform: translateY(0px) rotate(-45deg);
  transition: 0.5s;
}
.menu-btn--opened span span:nth-child(1) {
  transform: rotate(0deg) translateY(7px);
}
.menu-btn--opened span span:nth-child(2) {
  opacity: 0;
}
.menu-btn--opened span span:nth-child(3) {
  transform: rotate(-90deg) translateX(9px);
}

.header-cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  height: 5em;
}
@media screen and (min-width: 769px) {
  .header-cont {
    display: flex !important;
  }
}
@media screen and (max-width: 768px) {
  .header-cont {
    display: none;
    height: auto;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    padding-top: 3.75em;
    z-index: -1;
    width: 100%;
    background: rgba(0, 0, 12, 0.98);
  }
}

.header-nav {
  margin: 0 0 0 auto;
}
.header-nav .g-nav {
  width: 100%;
  display: flex;
}
.header-nav .g-nav__list {
  position: relative;
  margin: 0 0 0 2em;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .header-nav .g-nav__list:hover {
    transform: translateY(-2px);
  }
}
.header-nav .g-nav__list > a {
  color: #FFF;
  text-decoration: none;
  font-weight: 600;
}
.header-nav .g-nav__list > a:before {
  content: "";
  background: url(../img/common/ico_archive.svg) no-repeat;
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: middle;
}
.header-nav .g-nav__list--archive > a:before {
  background-image: url(../img/common/ico_archive.svg);
}
.header-nav .g-nav__list--event > a:before {
  background-image: url(../img/common/ico_event.svg);
}
.header-nav .g-nav__list--information > a:before {
  background-image: url(../img/common/ico_information.svg);
}
@media screen and (max-width: 768px) {
  .header-nav {
    margin-right: 0;
    overflow-y: auto;
    max-height: 80%;
  }
  .header-nav .g-nav {
    display: block;
    overflow-y: auto;
    margin-top: 0em;
  }
  .header-nav .g-nav__list {
    margin-left: 0;
  }
  .header-nav .g-nav__list > a {
    display: block;
    color: #FFF;
    line-height: 60px;
    border-bottom: 1px solid #FFF;
    position: relative;
    padding: 0 1em;
  }
  .header-nav .g-nav__list > a:hover, .header-nav .g-nav__list > a.active {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-weight: bold;
  }
  .header-nav .g-nav__list > a:after {
    content: "";
    background: url(../img/common/icon_arrow.svg) no-repeat;
    position: absolute;
    right: 1em;
    top: 50%;
    width: 0.375em;
    height: 0.625em;
    transform: translate(0, -50%);
  }
  .header-nav .g-nav__list:first-child a {
    border-top: 1px solid #FFF;
  }
}

/*==================================================================================================
    footer
==================================================================================================*/
.site-footer {
  background: #00000c;
  color: #FFF;
  text-align: center;
}
@media screen and (max-width: 840px) {
  .site-footer {
    font-size: 1.4rem;
  }
}
.site-footer .inner {
  padding: 2.2222222222em 1em;
}
.site-footer .footer-cont__comp .footer-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-family: "Zen Old Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
.site-footer .footer-cont__comp .footer-name dt {
  border: 1px solid #FFF;
  padding: 0.25em 1em;
  font-size: 0.7777777778em;
}
.site-footer .footer-cont__comp .footer-name dd {
  font-size: 1.4444444444em;
  margin-left: 0.5em;
}
.site-footer .footer-cont__comp .footer-access {
  margin-top: 1em;
}
.site-footer .footer-cont__comp .footer-access a {
  text-decoration: none;
  color: #FFF;
}
.site-footer .footer-cont__comp .footer-access a:hover {
  text-decoration: underline;
}
.site-footer .footer-cont__comp .footer-bnr {
  margin-top: 2em;
}
.site-footer .footer-cont__comp .footer-bnr img {
  max-width: 240px;
}
.site-footer .copylight {
  font-size: 0.7222222222em;
  padding: 2.1538461538em 1em;
  color: #FFF;
  border-top: 1px solid #FFF;
}
/*# sourceMappingURL=base.css.map */