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,
main, footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

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

nav ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

.clearfix {
  zoom: 1;
}
.clearfix::after {
  content: "";
  clear: both;
  display: block;
}

/* ==============================================
 * BASE
 *
 * @date 2017-07-07
 * @include _base
 *
 * memo:
 * // background: url("../img/common/headline_bg.png") center top no-repeat
 * // width: -webkit-calc(100% - 127px)
 * // width: calc(100% - 127px)
 * // transition: all .3s
 * ============================================== */
html, body {
  width: 100%;
  height: 100%;
}

body {
  background-color: #ffffff;
  color: #000000;
  backface-visibility: hidden;
  font-size: 14px;
  line-height: 24px;
  font-family: aktiv-grotesk, noto-sans-cjk-jp, "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
  zoom: 1;
}
body::after {
  content: "";
  clear: both;
  display: block;
}

a {
  outline: none;
  color: inherit;
  font-size: 100%;
  text-decoration: none;
}
a:visited, a:link {
  color: #004986;
  text-decoration: underline;
}
a:hover, a:active {
  color: #5a8fba;
  text-decoration: none;
}

i {
  font-style: normal;
}

img {
  vertical-align: top;
}

svg {
  line-height: 1em;
  vertical-align: top;
}

.pc-only {
  display: block;
}

.pc-only-inline {
  display: inline;
}

.sp-only,
.sp-only-inline {
  display: none;
}

#pagetop {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
  font-size: 0;
  line-height: 0;
}

#blind {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 9001;
  width: 100%;
  height: 100%;
  transform-origin: 0 50%;
  -moz-transform-origin: 0 50%;
  -webkit-transform-origin: 0 50%;
  background-color: #ffffff;
}

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 9002;
  width: 100%;
  height: 100%;
  transform-origin: 0 50%;
  -moz-transform-origin: 0 50%;
  -webkit-transform-origin: 0 50%;
  background-color: #ffffff;
  display: none;
}
.loader.is--show {
  display: block;
}

.loader__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.loader__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  animation: loadingLoopX 0.5s ease-in-out infinite alternate;
}
.loader__icon span {
  display: block;
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  animation: loadingLoopY 0.5s ease-in-out infinite alternate;
}

@keyframes loadingLoopX {
  0% {
    transform: translate(-50%, -50%) rotateX(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(180deg);
  }
}
@keyframes loadingLoopY {
  0% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
.background {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

.pagetop--button {
  position: fixed;
  left: 50%;
  bottom: 50px;
  z-index: 50;
  text-align: center;
  transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -webkit-transform-origin: 50% 0;
  transform: translate(-50%, -20px) scale(0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
}
.pagetop--button.is--show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0px) scale(0.8);
}
.pagetop--button a {
  display: inline-block;
  color: #4795fb;
  text-decoration: none;
  line-height: 1.166em;
  font-family: halogen, sans-serif;
  font-weight: 300;
  font-feature-settings: "palt" 1;
  font-size: 12px;
  transition: all 0.3s;
}
.pagetop--button span {
  display: inline-block;
  position: relative;
}
.pagetop--button span::before {
  content: "";
  display: block;
  width: -webkit-calc(100% + 10px);
  width: calc(100% + 10px);
  height: 14px;
  position: absolute;
  left: -5px;
  top: -1px;
  z-index: 0;
  transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  background-color: #4795fb;
  transform: scaleX(0);
  transition: all 0.3s;
}
.pagetop--button i {
  display: block;
  position: relative;
  z-index: 1;
}
.pagetop--button a:hover {
  color: #ffffff;
}
.pagetop--button a:hover span::before {
  transform: scaleX(1);
}

.container {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 1100px;
  margin: 0 auto;
  zoom: 1;
  border: none;
  overflow: hidden;
}
.container::after {
  content: "";
  clear: both;
  display: block;
}

.headline {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
}
.headline.is--scroll h2 {
  opacity: 0;
  transform: translate(-50%, -15px);
}

.headline__inner {
  width: 100%;
  position: relative;
}
.headline__inner h2 {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0px);
  pointer-events: none;
  transition: all 0.3s ease-out;
}

.scrollContainer {
  transition: transform 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  position: relative;
  z-index: 2;
  width: 100%;
}

.is--parallax {
  transition: transform 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
}

.header__inner {
  width: 100%;
  position: relative;
}

.header__title {
  position: absolute;
  left: 30px;
  top: 50px;
}
.header__title a {
  color: #4795fb;
  text-decoration: none;
  font-family: halogen, sans-serif;
  font-weight: 300;
  font-feature-settings: "palt" 1;
  font-size: 20px;
  line-height: 1em;
}

.header__ham {
  width: 62px;
  height: 62px;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 10;
}
.header__ham a {
  display: block;
  width: 100%;
  height: 100%;
  border: #4795fb solid 1px;
  box-sizing: border-box;
  background-color: #ffffff;
  -webkit-border-radius: 62px;
  -moz-border-radius: 62px;
  border-radius: 62px;
  position: relative;
  text-decoration: none;
  transition: all 0.3s;
}
.header__ham .ham--menu {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  font-family: halogen, sans-serif;
  font-weight: 300;
  font-feature-settings: "palt" 1;
  font-size: 18px;
  line-height: 0.89em;
  color: #4795fb;
  transition: all 0.3s;
}
.header__ham .ham--close {
  width: 36px;
  height: 36px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.header__ham .ham--close span {
  display: block;
  width: 100%;
  height: 1px;
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0%, -50%);
  transition: all 0.3s;
}
.header__ham .ham--close span:nth-child(1) {
  transform: rotate(0deg);
}
.header__ham .ham--close span:nth-child(2) {
  transform: rotate(90deg);
}
.header__ham a:hover .ham--menu {
  color: rgba(71, 149, 251, 0.5);
}
.header__ham.color--white a {
  border-color: #ffffff;
}
.header__ham.color--white .ham--menu {
  color: #ffffff;
}
.header__ham.is--open .ham--menu {
  opacity: 0;
  pointer-events: none;
}
.header__ham.is--open .ham--close {
  opacity: 1;
}
.header__ham.is--open a {
  border-color: #ffffff;
  background: none;
}
.header__ham.is--open a:hover .ham--close {
  transform: translate(-50%, -50%) rotate(0deg);
}
.header__ham.is--open a:hover .ham--close span:nth-child(1) {
  transform: rotate(180deg) scaleX(0.8);
}
.header__ham.is--open a:hover .ham--close span:nth-child(2) {
  transform: rotate(0deg) scaleX(0.8);
}
.header__ham.is--scroll a {
  background-color: #ffffff;
}
.header__ham.is--scroll.is--open a {
  background: none;
}

.header__menu {
  width: 360px;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
  background-color: #4795fb;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  display: none;
}

.header__menu__block {
  flex-basis: 300px;
  padding-top: 115px;
}
.header__menu__block .block--headline {
  font-family: halogen, sans-serif;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  font-size: 10px;
  line-height: 1em;
  border-top: #ffffff solid 1px;
  padding-top: 9px;
  margin-bottom: 30px;
}
.header__menu__block .block--headline a {
  color: #ffffff;
  text-decoration: none;
}
.header__menu__block .block--headline a:hover span {
  transform: translateX(10px);
}
.header__menu__block .block--headline span {
  display: block;
  transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transition: all 0.3s;
}
.header__menu__block .block--list {
  margin-bottom: 30px;
}
.header__menu__block .block--list a {
  color: #ffffff;
  text-decoration: none;
  font-family: halogen, sans-serif;
  font-weight: 300;
  font-feature-settings: "palt" 1;
  font-size: 10px;
  line-height: 2.4em;
  position: relative;
  display: block;
}
.header__menu__block .block--list a::before {
  content: "-";
  display: inline-block;
  margin-right: 6px;
}
.header__menu__block .block--list a:hover span {
  transform: translateX(10px);
}
.header__menu__block .block--list a:hover strong {
  transform: translateX(10px) scale(0.9);
}
.header__menu__block .block--list span {
  display: inline-block;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.header__menu__block .block--list strong {
  display: inline-block;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 300;
  font-feature-settings: "palt" 1;
  font-size: 10px;
  letter-spacing: 0.2em;
  transform-origin: 0 50%;
  -moz-transform-origin: 0 50%;
  -webkit-transform-origin: 0 50%;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  margin-left: 15px;
  transition: all 0.3s;
}
.header__menu__block .block--share {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__menu__block .block--share li {
  line-height: 1em;
  margin: 0 7px;
}
.header__menu__block .block--share a {
  display: block;
  line-height: 1em;
  padding: 10px;
  transition: all 0.3s;
}
.header__menu__block .block--share a:hover {
  opacity: 0.5;
}
.header__menu__block .block--share path {
  fill: #ffffff;
}

.header__menu__copyright {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 20px;
  text-align: center;
  font-family: halogen, sans-serif;
  font-weight: 300;
  font-feature-settings: "palt" 1;
  font-size: 16px;
  line-height: 1em;
}

.footer {
  width: 100%;
  position: relative;
  z-index: 1;
  border-top: #4795fb solid 1px;
  background-color: #4795fb;
}

.footer__inner {
  width: 100%;
  position: relative;
  display: flex;
}

.footer__logo {
  flex-basis: 28%;
  background-color: #ffffff;
  padding-top: 50px;
}
.footer__logo span {
  display: block;
  width: 80%;
  margin: 0 auto;
}

.footer__block {
  flex-basis: 72%;
  padding: 50px 0 30px;
}

.footer__block__badge {
  margin: 0 50px 20px 50px;
  display: flex;
}
.footer__block__badge li {
  margin-right: 20px;
}
.footer__block__badge li:last-of-type {
  margin-right: 0;
}
.footer__block__badge a {
  display: block;
  transition: all 0.2s;
}
.footer__block__badge a:hover {
  opacity: 0.5;
}

.footer__block__desc {
  margin: 0 50px 105px 50px;
  color: #ffffff;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 300;
  font-feature-settings: "palt" 1;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.5em;
}

.footer__block__coly {
  margin: 0 50px;
  display: flex;
  align-items: center;
}
.footer__block__coly p.coly--logo {
  margin-right: 30px;
}
.footer__block__coly p.coly--logo a {
  display: block;
  line-height: 1em;
  transition: all 0.2s;
}
.footer__block__coly p.coly--logo a:hover {
  opacity: 0.5;
}
.footer__block__coly .coly--rights__links {
  display: flex;
}
.footer__block__coly .coly--rights__links li {
  margin-right: 25px;
}
.footer__block__coly .coly--rights__links li:last-of-type {
  margin-right: 0;
}
.footer__block__coly .coly--rights__links a {
  color: #ffffff;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 300;
  font-feature-settings: "palt" 1;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  text-decoration: none;
  transition: all 0.2s;
}
.footer__block__coly .coly--rights__links a:hover {
  opacity: 0.5;
}
.footer__block__coly .coly--rights__text {
  color: #ffffff;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 300;
  font-feature-settings: "palt" 1;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.77em;
  transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  -webkit-transform-origin: 0 100%;
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

#modal {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: auto;
  display: none;
}

.modal__inner {
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
}

.modal__block {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 150px 0;
}

.modal__closeBg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
}

.modal__button--close {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0px;
  top: -80px;
}
.modal__button--close a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  line-height: 1em;
  border: #4795fb solid 1px;
  box-sizing: border-box;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
.modal__button--close a::before, .modal__button--close a::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background-color: #4795fb;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s;
}
.modal__button--close a::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__button--close a::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__button--close a:hover::before {
  transform: translate(-50%, -50%) rotate(180deg) scaleX(0.8);
}
.modal__button--close a:hover::after {
  transform: translate(-50%, -50%) rotate(-180deg) scaleX(0.8);
}

.modal__movie {
  width: 1080px;
  margin: 0 auto;
  position: relative;
  text-align: left;
  display: none;
}

.modal__movie__inner {
  position: relative;
  zoom: 1;
}
.modal__movie__inner::after {
  content: "";
  clear: both;
  display: block;
}

.modal__movie__details__frame {
  line-height: 1em;
  width: 100%;
}
.modal__movie__details__frame iframe {
  width: 100%;
  height: 608px;
}

@media screen and (max-width: 768px) {
  /* ==============================================
   * BASE
   *
   * @date 2017-07-07
   * @include _base
   *
   * memo:
   * padding: 50px 0 70px
   * padding: 13.3333333333vw 0 18.6666666667vw
   * +spimg(width, 346)
   * ============================================== */
  html, body {
    width: 100%;
    height: 100%;
  }
  body {
    background-color: #ffffff;
    color: #000000;
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 24px;
    line-height: 6.4vw;
  }
  i {
    font-style: normal;
  }
  a {
    outline: none;
    color: inherit;
    font-size: 100%;
    text-decoration: none;
  }
  .pc-only,
  .pc-only-inline {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sp-only-inline {
    display: inline-block;
  }
  #pagetop {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    font-size: 0;
    line-height: 0;
  }
  #blind {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 9001;
    width: 100%;
    height: 100%;
    transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    background-color: #ffffff;
  }
  .loader {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 9002;
    width: 100%;
    height: 100%;
    transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    background-color: #ffffff;
    display: none;
  }
  .loader.is--show {
    display: block;
  }
  .loader__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
  }
  .loader__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
  }
  .loader__icon span {
    display: block;
    transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
  }
  .loader__icon img {
    width: 50px;
    width: 13.3333333333vw;
    height: auto;
  }
  .background {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
  }
  .pagetop--button {
    position: fixed;
    left: 50%;
    bottom: 25px;
    bottom: 6.6666666667vw;
    z-index: 50;
    text-align: center;
    transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    -webkit-transform-origin: 50% 0;
    transform: translate(-50%, -20px) scale(0.8);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
  }
  .pagetop--button.is--show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0px) scale(0.8);
  }
  .pagetop--button a {
    display: inline-block;
    color: #4795fb;
    text-decoration: none;
    line-height: 1.31em;
    font-family: halogen, sans-serif;
    font-weight: 300;
    font-feature-settings: "palt" 1;
    font-size: 10px;
    font-size: 2.6666666667vw;
    transition: none;
  }
  .pagetop--button span {
    display: inline-block;
    position: relative;
  }
  .pagetop--button span::before {
    display: none;
  }
  .pagetop--button i {
    display: block;
    position: relative;
    z-index: 1;
  }
  .pagetop--button a:hover {
    color: #4795fb;
  }
  .pagetop--button a:hover span::before {
    display: none;
  }
  .container {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 100%;
    margin: 0 auto;
    zoom: 1;
    border: none;
    overflow: hidden;
  }
  .container::after {
    content: "";
    clear: both;
    display: block;
  }
  .headline {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
  }
  .headline.is--scroll h2 {
    opacity: 0;
    transform: translate(0%, -10px);
    transform: translate(0%, -2.6666666667vw);
  }
  .headline__inner {
    width: 100%;
    position: relative;
  }
  .headline__inner h2 {
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    transform: translate(0%, 0px);
    pointer-events: none;
    transition: all 0.3s ease-out;
  }
  .scrollContainer {
    transition: transform 1s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .is--parallax {
    transition: transform 1s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .header {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 50;
  }
  .header__inner {
    width: 100%;
    position: relative;
  }
  .header__title {
    position: absolute;
    left: 15px;
    left: 4vw;
    top: 33px;
    top: 8.8vw;
  }
  .header__title a {
    color: #4795fb;
    text-decoration: none;
    font-family: halogen, sans-serif;
    font-weight: 300;
    font-feature-settings: "palt" 1;
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1em;
  }
  .header__ham {
    width: 50px;
    width: 13.3333333333vw;
    height: 50px;
    height: 13.3333333333vw;
    position: fixed;
    right: 15px;
    right: 4vw;
    top: 15px;
    top: 4vw;
    z-index: 10;
  }
  .header__ham a {
    display: block;
    width: 100%;
    height: 100%;
    border: #4795fb solid 1px;
    border: #4795fb solid 0.2666666667vw;
    box-sizing: border-box;
    background-color: #ffffff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    position: relative;
    text-decoration: none;
  }
  .header__ham .ham--menu {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    font-family: halogen, sans-serif;
    font-weight: 300;
    font-feature-settings: "palt" 1;
    font-size: 14.5px;
    font-size: 3.8666666667vw;
    line-height: 0.89em;
    color: #4795fb;
    transform: translateY(2px);
    transform: translateY(0.5333333333vw);
  }
  .header__ham .ham--close {
    width: 30px;
    width: 8vw;
    height: 30px;
    height: 8vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.3s;
    opacity: 0;
    pointer-events: none;
  }
  .header__ham .ham--close span {
    display: block;
    width: 100%;
    height: 1px;
    transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0%, -50%);
    transition: all 0.3s;
  }
  .header__ham .ham--close span:nth-child(1) {
    transform: rotate(0deg);
  }
  .header__ham .ham--close span:nth-child(2) {
    transform: rotate(90deg);
  }
  .header__ham a:hover .ham--menu {
    color: rgba(71, 149, 251, 0.5);
  }
  .header__ham.color--white a {
    border-color: #ffffff;
  }
  .header__ham.color--white .ham--menu {
    color: #ffffff;
  }
  .header__ham.is--open .ham--menu {
    opacity: 0;
    pointer-events: none;
  }
  .header__ham.is--open .ham--close {
    opacity: 1;
  }
  .header__ham.is--open a {
    border-color: #ffffff;
    background: none;
  }
  .header__ham.is--open a:hover .ham--close {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header__ham.is--open a:hover .ham--close span:nth-child(1) {
    transform: rotate(0deg) scaleX(1);
  }
  .header__ham.is--open a:hover .ham--close span:nth-child(2) {
    transform: rotate(90deg) scaleX(1);
  }
  .header__menu {
    width: 100%;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 5;
    background-color: #4795fb;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    display: none;
  }
  .header__menu__block {
    flex-basis: 86.66%;
    padding-top: 85px;
    padding-top: 22.6666666667vw;
  }
  .header__menu__block .block--headline {
    font-family: halogen, sans-serif;
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt" 1;
    font-size: 12px;
    font-size: 3.2vw;
    letter-spacing: 0.05em;
    line-height: 1em;
    border-top: #ffffff solid 1px;
    border-top: #ffffff solid 0.2666666667vw;
    padding-top: 6.5px;
    padding-top: 1.7333333333vw;
    margin-bottom: 22px;
    margin-bottom: 5.8666666667vw;
  }
  .header__menu__block .block--headline a {
    color: #ffffff;
    text-decoration: none;
  }
  .header__menu__block .block--headline a:hover span {
    transform: translateX(0px);
  }
  .header__menu__block .block--headline span {
    display: block;
    transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transition: none;
  }
  .header__menu__block .block--list {
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
  }
  .header__menu__block .block--list a {
    color: #ffffff;
    text-decoration: none;
    font-family: halogen, sans-serif;
    font-weight: 300;
    font-feature-settings: "palt" 1;
    font-size: 12px;
    font-size: 3.2vw;
    letter-spacing: 0.05em;
    line-height: 2.16em;
    position: relative;
    display: block;
  }
  .header__menu__block .block--list a::before {
    content: "-";
    display: inline-block;
    margin-right: 7px;
    margin-right: 1.8666666667vw;
  }
  .header__menu__block .block--list a:hover span {
    transform: translateX(0px);
  }
  .header__menu__block .block--list a:hover strong {
    transform: translateX(0px) scale(1);
  }
  .header__menu__block .block--list span {
    display: inline-block;
    letter-spacing: 0.05em;
    transition: none;
  }
  .header__menu__block .block--list strong {
    display: inline-block;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 300;
    font-feature-settings: "palt" 1;
    font-size: 10px;
    font-size: 2.6666666667vw;
    letter-spacing: 0.2em;
    transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    margin-left: 15px;
    margin-left: 4vw;
    transition: none;
  }
  .header__menu__block .block--share {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header__menu__block .block--share li {
    line-height: 1em;
    margin: 0 25px;
    margin: 0 6.6666666667vw;
  }
  .header__menu__block .block--share a {
    display: block;
    line-height: 1em;
    padding: 0px;
    transition: none;
  }
  .header__menu__block .block--share a:hover {
    opacity: 1;
  }
  .header__menu__block .block--share path {
    fill: #ffffff;
  }
  .header__menu__block .block--share__twitter svg {
    width: 26px;
    width: 6.9333333333vw;
    height: auto;
  }
  .header__menu__block .block--share__line svg,
  .header__menu__block .block--share__facebook svg {
    width: 27px;
    width: 7.2vw;
    height: auto;
  }
  .header__menu__copyright {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 13px;
    bottom: 3.4666666667vw;
    text-align: center;
    font-family: halogen, sans-serif;
    font-weight: 300;
    font-feature-settings: "palt" 1;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1em;
  }
  .footer {
    width: 100%;
    position: relative;
    z-index: 1;
    border-top: #4795fb solid 1px;
    border-top: #4795fb solid 0.2666666667vw;
    background-color: #ffffff;
  }
  .footer__inner {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
  }
  .footer__logo {
    flex-basis: 100%;
    background-color: #ffffff;
    padding-top: 22px;
    padding-top: 5.8666666667vw;
    padding-bottom: 7px;
    padding-bottom: 1.8666666667vw;
  }
  .footer__logo span {
    display: block;
    width: 69.23%;
    margin: 0 auto;
  }
  .footer__block {
    border-top: #4795fb solid 1px;
    border-top: #4795fb solid 0.2666666667vw;
    flex-basis: 100%;
    padding: 0px;
    padding: 0vw;
  }
  .footer__block__badge {
    margin: 0;
    margin-bottom: 15px;
    margin-bottom: 4vw;
    padding-top: 20px;
    padding-top: 5.3333333333vw;
    display: flex;
    justify-content: center;
  }
  .footer__block__badge li {
    margin: 0px 8px;
    margin: 0px 2.1333333333vw;
  }
  .footer__block__badge li:last-of-type {
    margin-right: 8px;
    margin-right: 2.1333333333vw;
  }
  .footer__block__badge a {
    display: block;
    transition: none;
  }
  .footer__block__badge a:hover {
    opacity: 0;
  }
  .footer__block__badge img {
    height: 30px;
    height: 8vw;
    width: auto;
  }
  .footer__block__desc {
    width: 86.66%;
    margin: 0 auto;
    margin-bottom: 18px;
    margin-bottom: 4.8vw;
    text-align: center;
    color: #505064;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 300;
    font-feature-settings: "palt" 1;
    font-size: 10px;
    font-size: 2.6666666667vw;
    letter-spacing: 0.1em;
    line-height: 1.6em;
  }
  .footer__block__coly {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #4795fb;
    padding-top: 40px;
    padding-top: 10.6666666667vw;
    padding-bottom: 15px;
    padding-bottom: 4vw;
  }
  .footer__block__coly p.coly--logo {
    margin-right: 0px;
    margin-bottom: 15px;
    margin-bottom: 4vw;
  }
  .footer__block__coly p.coly--logo a {
    display: block;
    line-height: 1em;
    transition: none;
  }
  .footer__block__coly p.coly--logo a:hover {
    opacity: 1;
  }
  .footer__block__coly p.coly--logo img {
    width: 105px;
    width: 28vw;
    height: auto;
  }
  .footer__block__coly .coly--rights__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
    margin-bottom: 2.6666666667vw;
  }
  .footer__block__coly .coly--rights__links li {
    margin: 0px 15px;
    margin: 0px 4vw;
  }
  .footer__block__coly .coly--rights__links li:last-of-type {
    margin-right: 15px;
    margin-right: 4vw;
  }
  .footer__block__coly .coly--rights__links a {
    color: #ffffff;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 300;
    font-feature-settings: "palt" 1;
    font-size: 12px;
    font-size: 3.2vw;
    letter-spacing: 0.1em;
    line-height: 1.33em;
    text-decoration: none;
    transition: none;
  }
  .footer__block__coly .coly--rights__links a:hover {
    opacity: 1;
  }
  .footer__block__coly .coly--rights__text {
    color: #ffffff;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 300;
    font-feature-settings: "palt" 1;
    font-size: 10px;
    font-size: 2.6666666667vw;
    letter-spacing: 0.1em;
    line-height: 1.6em;
    transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    text-align: center;
    width: 86.66%;
    margin: 0 auto;
  }
  #modal {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    overflow: auto;
    display: none;
  }
  .modal__inner {
    display: table;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .modal__block {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding-top: 115px;
    padding-top: 30.6666666667vw;
    padding-bottom: 60px;
    padding-bottom: 16vw;
  }
  .modal__closeBg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
  }
  .modal__button--close {
    width: 50px;
    width: 13.3333333333vw;
    height: 50px;
    height: 13.3333333333vw;
    position: absolute;
    right: 0px;
    top: -60px;
    top: -16vw;
  }
  .modal__button--close a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    line-height: 1em;
    border: #4795fb solid 1px;
    border: #4795fb solid 0.2666666667vw;
    box-sizing: border-box;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
  }
  .modal__button--close a::before, .modal__button--close a::after {
    content: "";
    display: block;
    width: 60%;
    height: 1px;
    height: 0.2666666667vw;
    background-color: #4795fb;
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 0.3s;
  }
  .modal__button--close a::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .modal__button--close a::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .modal__button--close a:hover::before {
    transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
  }
  .modal__button--close a:hover::after {
    transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
  }
  .modal__movie {
    width: 90%;
    margin: 0 auto;
    position: relative;
    text-align: left;
    display: none;
  }
  .modal__movie__inner {
    position: relative;
    zoom: 1;
  }
  .modal__movie__inner::after {
    content: "";
    clear: both;
    display: block;
  }
  .modal__movie__details__frame {
    line-height: 1em;
    width: 100%;
  }
  .modal__movie__details__frame iframe {
    width: 100%;
    height: 205px;
    height: 54.6666666667vw;
  }
}