@charset "UTF-8";
[data-modal] {
  cursor: pointer;
}

template {
  display: none;
}

.m-modal {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  z-index: 20;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  width: 100vw;
  height: 100%;
  overflow: auto;
  -ms-touch-action: none;
      touch-action: none;
  pointer-events: none;
}

.m-modal.is-open {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-touch-action: auto;
      touch-action: auto;
  pointer-events: auto;
}

.m-modal.is-load-start {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: all 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-touch-action: auto;
      touch-action: auto;
  pointer-events: auto;
}

.m-modal.is-close {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -ms-touch-action: none;
      touch-action: none;
  pointer-events: none;
}

.m-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
  background-size: cover;
  width: 100%;
  height: 100%;
}

.is-modal-overflow .m-modal__bg {
  position: absolute;
}

.m-modal__content {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 159.993vh;
  height: auto;
  font-size: 0;
  text-align: center;
}

.is-modal-overflow-prep .m-modal__content {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  margin: 60px auto;
}

@media screen and (max-width: 960px) {
  .is-modal-overflow-prep .m-modal__content {
    margin-top: 20%;
  }
}

.m-modal__content > * {
  width: 100%;
  height: auto;
}

.m-modal__content > * img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  margin: 0 auto;
}

.m-modal__content-bg {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 960px) {
  .m-modal__content-btn {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px auto 0;
    width: 84%;
    height: auto;
  }
}

.m-modal__close {
  display: block;
  position: fixed;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 45px;
  height: 45px;
}

@media screen and (max-width: 960px) {
  .m-modal__close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }
}

.m-modal__close::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #000;
  width: 100%;
  height: 2px;
  content: "";
}

@media screen and (max-width: 960px) {
  .m-modal__close::before {
    height: 1px;
  }
}

.m-modal__close:hover::before {
  background: #808080;
}

.m-modal__close::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #000;
  width: 100%;
  height: 2px;
  content: "";
}

@media screen and (max-width: 960px) {
  .m-modal__close::after {
    height: 1px;
  }
}

.m-modal__close:hover::after {
  background: #808080;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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 {
  vertical-align: baseline;
  margin: 0;
  outline: 0;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 100%;
}

body {
  line-height: 1;
}

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 {
  vertical-align: baseline;
  margin: 0;
  background: transparent;
  padding: 0;
  font-size: 100%;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #cccccc;
  padding: 0;
  height: 1px;
}

input, select {
  vertical-align: middle;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

@media screen and (max-width: 960px) and (min-width: 561px) {
  html {
    font-size: 78.125%;
  }
}

*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  background: #fff;
  overflow: hidden;
  color: #000;
  font-family: A1明朝, A1 Mincho, "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.85px;
  letter-spacing: .085rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

a {
  color: #000;
  text-decoration: none;
}

.clearfix:after {
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  content: ' . ';
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 960px) {
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}

button, input, select, textarea {
  background-color: transparent;
  min-height: 1.5em;
}

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

ol, ul {
  list-style: none;
}

@media screen and (min-width: 961px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none !important;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none !important;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
  .pc-inline {
    display: inline-block;
  }
  .sp-inline {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .is-sp {
    display: block;
  }
  .is-pc {
    display: none !important;
  }
  .is-sp-inline {
    display: inline-block;
  }
  .is-pc-inline {
    display: none !important;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none !important;
  }
  .sp-inline {
    display: inline-block;
  }
  .pc-inline {
    display: none !important;
  }
}

@media screen and (orientation: landscape) {
  .is-land {
    display: block;
  }
  .is-port {
    display: none !important;
  }
}

@media screen and (orientation: portrait) {
  .is-land {
    display: none !important;
  }
  .is-port {
    display: block;
  }
}

@media screen and (min-width: 751px) {
  .is-wide {
    display: block;
  }
  .is-tab {
    display: none !important;
  }
}

@media screen and (min-width: 561px) {
  .is-wide {
    display: none !important;
  }
  .is-tab {
    display: block;
  }
}

.is-narrow {
  display: none !important;
}

.is-narrow-inline {
  display: none !important;
}

@media screen and (max-width: 374px) {
  .is-narrow {
    display: block !important;
  }
  .is-narrow-inline {
    display: inline-block !important;
  }
  .is-non-narrow {
    display: none !important;
  }
  .is-non-narrow-inline {
    display: none !important;
  }
}

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

img::-moz-selection {
  background: none;
}

img::selection {
  background: none;
}

[data-prefix]::before {
  content: attr(data-prefix);
}

[data-suffix]::after {
  content: attr(data-suffix);
}

/* ====================
Layout
 ==================== */
[v-cloak] {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
}

.l-wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.l-wrap__bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 1.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 1.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.is-menu-open .l-wrap__bg {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  opacity: .2;
}

.l-wrap__bg-movie {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  width: 90%;
  height: 90%;
  overflow: hidden;
}

@media screen and (orientation: landscape) {
  .l-wrap__bg-movie {
    height: 120%;
  }
}

@media screen and (orientation: portrait) {
  .l-wrap__bg-movie {
    width: 115%;
  }
}

.is-load .l-wrap__bg-movie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 1.3s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 1.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.l-wrap__bg-movie video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-wrap__container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
}

.p-bg_logo {
  display: block;
  position: absolute;
  top: 50.5%;
  left: 52.2%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  width: 60%;
  max-width: 79.151vh;
}

@media (-ms-high-contrast: none) {
  .p-bg_logo {
    width: 76.29vh;
    height: 80vh;
  }
}

@media screen and (max-width: 960px) {
  .p-bg_logo {
    top: 50%;
    left: 50%;
  }
}

.is-load .p-bg_logo {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

@media (-ms-high-contrast: none) {
  .p-bg_logo {
    -webkit-transition: opacity 1.3s cubic-bezier(0.65, 0, 0.35, 1) 0.75s;
    transition: opacity 1.3s cubic-bezier(0.65, 0, 0.35, 1) 0.75s;
  }
}

.p-bg_logo__svg {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

@media (-ms-high-contrast: none) {
  .p-bg_logo__svg {
    width: 76.29vh;
    height: 80vh;
  }
}

.p-bg_logo__svg-line {
  fill: #000;
}

.p-bg_logo__svg-line.-line01 {
  stroke-width: 1.82px;
}

.p-bg_logo__svg-line.-line02 {
  stroke-width: 1.67px;
}

.p-bg_logo__svg-line.-line03 {
  stroke-width: 1.54px;
}

.l-header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.is-menu-open .l-header {
  pointer-events: auto;
}

.l-header__bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.is-menu-open .l-header__bg {
  pointer-events: auto;
}

.l-header__nav {
  position: relative;
  -webkit-transform: translate(-130%, 0);
      -ms-transform: translate(-130%, 0);
          transform: translate(-130%, 0);
  -webkit-transition: -webkit-transform 0.85s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.85s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.85s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.85s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.85s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0 auto;
  padding-top: 10px;
  width: 100%;
  pointer-events: none;
}

.is-menu-show .l-header__nav {
  display: block;
}

.is-menu-open .l-header__nav {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition-delay: .15s;
          transition-delay: .15s;
  pointer-events: auto;
}

.p-gnav {
  position: relative;
}

.p-gnav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.p-gnav__item.is-disable {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  opacity: .5;
  pointer-events: none;
}

.p-gnav__link {
  display: block;
  position: relative;
  padding: 5px 8px 5px 12px;
}

@media screen and (max-width: 960px) {
  .p-gnav__link {
    padding: 4px 8px;
  }
}

.p-gnav__link::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-bottom: 1px solid #000;
  width: 0;
  height: 1px;
  content: "";
}

[data-ua="pc"] .p-gnav__item:hover .p-gnav__link::before {
  width: 100%;
}

.-nav_gallery .p-gnav__link {
  margin-bottom: -8px;
}

@media screen and (max-width: 960px) {
  .-nav_gallery .p-gnav__link {
    margin-bottom: -4px;
  }
}

.p-gnav__link .-nav-fc img {
  height: 30px;
}

.p-gnav__link .fc-img {
  height: 33px;
}

@media screen and (max-width: 960px) {
  .p-gnav__link .fc-img {
    height: 23px;
  }
}

.-nav-disc .p-gnav__link {
  margin-bottom: -6px;
}

@media screen and (max-width: 960px) {
  .-nav-disc .p-gnav__link {
    margin-bottom: -2px;
  }
}

.is-news-new .p-gnav__link::after {
  display: block;
  position: absolute;
  top: 50%;
  right: -2px;
  -webkit-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background: url("../img/common/menu/new.png") no-repeat center;
  background-size: contain;
  width: 48px;
  height: 22px;
  content: "";
}

@media screen and (max-width: 960px) {
  .is-news-new .p-gnav__link::after {
    right: -2px;
    width: 35px;
    height: 15px;
  }
}

.p-gnav__link img {
  height: 40px;
}

@media screen and (max-width: 960px) {
  .p-gnav__link img {
    height: 26px;
  }
}

.p-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}

@media screen and (max-width: 960px) {
  .p-sns {
    margin-top: 5px;
  }
}

.p-sns__item {
  display: block;
}

.p-sns__link {
  display: block;
  position: relative;
  padding: 5px 14px;
}

@media screen and (max-width: 960px) {
  .p-sns__link {
    padding: 2px 8px;
  }
}

.p-sns__svg {
  display: block;
  position: relative;
  width: 32px;
}

@media screen and (max-width: 960px) {
  .p-sns__svg {
    width: 24px;
  }
}

.p-sns__svg-path {
  fill: #231815;
}

.p-menu {
  display: block;
  position: fixed;
  top: 55px;
  left: 0;
  z-index: 5;
  cursor: pointer;
  width: 112px;
  height: 65px;
  content: "";
}

@media screen and (max-width: 960px) {
  .p-menu {
    top: 25px;
    width: 56px;
    height: 35px;
  }
}

.p-menu__line {
  display: block;
  position: absolute;
  left: 0;
  -webkit-transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  height: 1px;
}

.p-menu__line:nth-child(1) {
  top: 0%;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.p-menu__line:nth-child(2) {
  top: 25%;
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.p-menu__line:nth-child(3) {
  top: 50%;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.p-menu__line:nth-child(4) {
  top: 75%;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.p-menu__line:nth-child(5) {
  top: 100%;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.is-menu-open .p-menu__line {
  right: 0;
  left: auto;
  width: 0;
}

.p-menu__line::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 1px solid #000;
  width: 100%;
  height: 100%;
  content: "";
}

.l-main {
  display: block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 1.3s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 1.3s cubic-bezier(0.65, 0, 0.35, 1);
  width: 100%;
}

@media screen and (min-width: 961px) {
  .l-main {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}

.is-menu-open .l-main {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
}

/* ====================
Project
 ==================== */
/* ====================
COMPONENT
 ==================== */
.c-loader {
  position: relative;
  margin: 40px auto;
  width: 30px;
  pointer-events: none;
}

.c-loader.-v {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.is-v-load .c-loader.-v {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
