@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Gideon+Roman&family=Noto+Serif+JP:wght@300;500&display=swap");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanmp-noto.min.css");
@-webkit-keyframes title_mask {
  0% {
    -webkit-mask-position: 50% 0;
    mask-position: 50% 0;
  }
  100% {
    -webkit-mask-position: 50% 100%;
    mask-position: 50% 100%;
  }
}
@keyframes title_mask {
  0% {
    -webkit-mask-position: 50% 0;
    mask-position: 50% 0;
  }
  100% {
    -webkit-mask-position: 50% 100%;
    mask-position: 50% 100%;
  }
}

[data-modal] {
  cursor: pointer;
}

template {
  display: none;
}

.m-modal {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 2000;
  -webkit-transition: all 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0s;
  transition: all 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0s;
  width: 100vw;
  height: 100%;
  overflow: auto;
  -ms-touch-action: none;
  touch-action: none;
  pointer-events: none;
}

.m-modal.is-open {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  transition: all 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  -ms-touch-action: auto;
  touch-action: auto;
  pointer-events: auto;
}

.m-modal.is-load-start {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0s cubic-bezier(0.5, 1, 0.89, 1);
  transition: all 0s cubic-bezier(0.5, 1, 0.89, 1);
  -ms-touch-action: auto;
  touch-action: auto;
  pointer-events: auto;
}

.m-modal.is-close {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0s;
  transition: all 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0s;
  -ms-touch-action: none;
  touch-action: none;
  pointer-events: none;
}

.m-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.m-modal__bg::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background: #ddf1fa;
  width: 100%;
  height: 100%;
  content: "";
}

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

[data-modal-type="img"] .m-modal__content {
  max-width: 900px;
}

[data-modal-type="template"] .m-modal__content {
  width: 90%;
  max-width: 1020px;
}

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

.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: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.m-modal__close {
  display: block;
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0;
  -webkit-transition: opacity 0s linear 1s;
  transition: opacity 0s linear 1s;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.is-modal-open .m-modal__close {
  opacity: 1;
  -webkit-transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
}

.m-modal__close-in {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.m-modal__close-in::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  border-bottom: 1px solid #000;
  width: 133%;
  height: 1px;
  content: "";
}

.m-modal__close-in::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  border-bottom: 1px solid #000;
  width: 133%;
  height: 1px;
  content: "";
}

/*
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%;
}

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

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

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

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

img {
  display: block;
  vertical-align: middle;
  max-width: 100%;
  height: auto !important;
}

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

img::selection {
  background: none;
}

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

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

/* ====================
Layout
 ==================== */
.l-wrap {
  position: relative;
  margin: 0 auto;
  background: url("../img/common/bg_ptn.jpg") repeat-y left top;
  background-size: 100% auto;
  width: 100%;
}

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

.l-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 20;
  -webkit-mask: url("../img/common/effect_r_pc.png") no-repeat 50% 0%;
  mask: url("../img/common/effect_r_pc.png") no-repeat 50% 0%;
  -webkit-mask-size: 100% 1200%;
  mask-size: 100% 1200%;
  -webkit-animation: menu_mask_out 1s steps(11) forwards;
  animation: menu_mask_out 1s steps(11) forwards;
  -webkit-transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  background: url("../img/common/bg_ptn.jpg") repeat-y left top;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

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

.is-menu-open .l-header {
  opacity: 1;
  -webkit-animation: menu_mask 1s steps(11) forwards;
  animation: menu_mask 1s steps(11) forwards;
  pointer-events: auto;
}

@-webkit-keyframes menu_mask_out {
  0% {
    -webkit-mask-position: 50% 100%;
    mask-position: 50% 100%;
  }
  100% {
    -webkit-mask-position: 50% 0;
    mask-position: 50% 0;
  }
}

@keyframes menu_mask_out {
  0% {
    -webkit-mask-position: 50% 100%;
    mask-position: 50% 100%;
  }
  100% {
    -webkit-mask-position: 50% 0;
    mask-position: 50% 0;
  }
}

@-webkit-keyframes menu_mask {
  0% {
    -webkit-mask-position: 50% 0;
    mask-position: 50% 0;
  }
  100% {
    -webkit-mask-position: 50% 100%;
    mask-position: 50% 100%;
  }
}

@keyframes menu_mask {
  0% {
    -webkit-mask-position: 50% 0;
    mask-position: 50% 0;
  }
  100% {
    -webkit-mask-position: 50% 100%;
    mask-position: 50% 100%;
  }
}

.l-header__visual {
  display: block;
  position: absolute;
  left: 0;
  width: 40.5%;
  height: 100%;
  overflow: hidden;
}

.l-header__visual-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: -webkit-transform 0s linear .8s;
  transition: -webkit-transform 0s linear .8s;
  transition: transform 0s linear .8s;
  transition: transform 0s linear .8s, -webkit-transform 0s linear .8s;
  background: url("../img/common/img_menu_pc.jpg") no-repeat 58% 20%;
  background-size: cover;
  width: 100%;
  height: 100%;
  content: "";
}

.is-menu-open .l-header__visual-img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 50s linear;
  transition: -webkit-transform 50s linear;
  transition: transform 50s linear;
  transition: transform 50s linear, -webkit-transform 50s linear;
}

.l-header__container {
  position: relative;
  width: 100%;
}

.l-header__inner {
  position: relative;
  margin: 0 auto;
  width: 67%;
}

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

.l-header__nav {
  display: block;
  position: relative;
  float: left;
  width: 60%;
}

.l-header__official {
  display: block;
  position: relative;
  float: right;
  width: 40%;
}

.l-header__share {
  display: block;
  position: relative;
  float: right;
  margin-top: 56px;
  width: 40%;
}

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

.l-header_nav__cap {
  position: relative;
  margin: 0 auto 20px;
  width: 100%;
  font-size: 12px;
}

.l-header_nav__list {
  display: block;
  position: relative;
  width: 100%;
}

.l-header_nav__list-item {
  display: block;
  position: relative;
}

.l-header_nav__list-item + .l-header_nav__list-item {
  margin-top: 6px;
}

.l-header_nav__link {
  display: block;
  position: relative;
  -webkit-transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}

[data-ua="pc"] .l-header_nav__link:not(.is-current):hover {
  opacity: .5;
}

.l-header_nav__link-text {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 42px;
  font-family: 'Gideon Roman', 'Noto Serif JP', "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  letter-spacing: 2px;
}

.is-current .l-header_nav__link-text {
  color: #2275c7;
}

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

.l-header_official__cap {
  position: relative;
  margin: 0 auto 30px;
  width: 100%;
  font-size: 12px;
}

.l-header_official__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.l-header_official__list-item {
  display: block;
  position: relative;
}

.l-header_official__list-item + .l-header_official__list-item {
  margin-left: 20px;
}

.l-header_official__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  width: 22px;
  height: 22px;
}

[data-ua="pc"] .l-header_official__link:hover {
  opacity: .5;
}

.l-header_official__link-img {
  display: block;
  position: relative;
  width: 22px;
}

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

.l-header_share__cap {
  position: relative;
  margin: 0 auto 30px;
  width: 100%;
  font-size: 12px;
}

.l-header_share__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.l-header_share__list-item {
  display: block;
  position: relative;
}

.l-header_share__list-item + .l-header_share__list-item {
  margin-left: 20px;
}

.l-header_share__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  width: 22px;
  height: 22px;
}

[data-ua="pc"] .l-header_share__link:hover {
  opacity: .5;
}

.l-header_share__link-img {
  display: block;
  position: relative;
  width: 22px;
}

.l-header_menu {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: 25;
  cursor: pointer;
  background: linear-gradient(45deg, #003766 0%, black 100%);
  padding: 35px 24px;
  width: 86px;
  height: 86px;
  content: "";
}

.is-load .l-header_menu {
  opacity: 1;
  -webkit-transition: opacity 1.8s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 1.8s cubic-bezier(0.65, 0, 0.35, 1);
}

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

.l-header_menu__open {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.is-menu-open .l-header_menu__open {
  pointer-events: none;
}

.l-header_menu__open::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 200%;
  height: 300%;
  content: "";
}

.l-header_menu__open-item {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 2px;
}

.l-header_menu__open-item.-item1 {
  top: 0;
}

.l-header_menu__open-item.-item2 {
  top: 50%;
}

.l-header_menu__open-item.-item3 {
  top: 100%;
}

.l-header_menu__open-deco {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
  transition: -webkit-transform 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
  transition: transform 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
  transition: transform 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s, -webkit-transform 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
  width: 100%;
  height: 100%;
  content: "";
}

.-item1 .l-header_menu__open-deco {
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

.-item2 .l-header_menu__open-deco {
  -webkit-transition-delay: .15s;
  transition-delay: .15s;
}

.-item3 .l-header_menu__open-deco {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

.l-header_menu__open-deco::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  background: #fff;
  width: 100%;
  height: 100%;
  content: "";
}

.-item1 .l-header_menu__open-deco::before {
  -webkit-transition-delay: .0s;
  transition-delay: .0s;
}

.-item2 .l-header_menu__open-deco::before {
  -webkit-transition-delay: .05s;
  transition-delay: .05s;
}

.-item3 .l-header_menu__open-deco::before {
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

.l-header_menu__open-deco::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: width 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0.1s, background-color 0.25s cubic-bezier(0.5, 1, 0.89, 1);
  transition: width 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0.1s, background-color 0.25s cubic-bezier(0.5, 1, 0.89, 1);
  background: #fff;
  width: 100%;
  height: 100%;
  content: "";
}

.-item1 .l-header_menu__open-deco::after {
  -webkit-transition-delay: .3s, 0s;
  transition-delay: .3s, 0s;
}

.-item2 .l-header_menu__open-deco::after {
  -webkit-transition-delay: .35s, 0s;
  transition-delay: .35s, 0s;
}

.-item3 .l-header_menu__open-deco::after {
  -webkit-transition-delay: .4s, 0s;
  transition-delay: .4s, 0s;
}

.is-menu-open .-item1 .l-header_menu__open-deco {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.5, 1, 0.89, 1) 0s;
}

.is-menu-open .-item1 .l-header_menu__open-deco::before {
  -webkit-transition: width 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  transition: width 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  width: 0;
}

.is-menu-open .-item1 .l-header_menu__open-deco::after {
  -webkit-transition: width 0.1s cubic-bezier(0.87, 0, 0.13, 1);
  transition: width 0.1s cubic-bezier(0.87, 0, 0.13, 1);
  width: 0;
}

.is-menu-open .-item2 .l-header_menu__open-deco {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.05s;
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.05s;
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.05s;
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.05s, -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.05s;
}

.is-menu-open .-item2 .l-header_menu__open-deco::before {
  -webkit-transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.05s;
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.05s;
  width: 0;
}

.is-menu-open .-item2 .l-header_menu__open-deco::after {
  -webkit-transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.05s;
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.05s;
  width: 0;
}

.is-menu-open .-item3 .l-header_menu__open-deco {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s, -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
}

.is-menu-open .-item3 .l-header_menu__open-deco::before {
  -webkit-transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  width: 0;
}

.is-menu-open .-item3 .l-header_menu__open-deco::after {
  -webkit-transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  width: 0;
}

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

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

.l-header_menu__close::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 200%;
  height: 300%;
  content: "";
}

.l-header_menu__close-item {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 2px;
}

.l-header_menu__close-item.-item1 {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.l-header_menu__close-item.-item2 {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-header_menu__close-deco {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  width: 100%;
  height: 100%;
  content: "";
}

.l-header_menu__close-deco::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: width 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  transition: width 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  background: #fff;
  width: 0;
  height: 100%;
  content: "";
}

.l-header_menu__close-deco::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  background: #fff;
  width: 0;
  height: 100%;
  content: "";
}

.is-menu-open .-item1 .l-header_menu__close-deco {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s, -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
}

.is-menu-open .-item1 .l-header_menu__close-deco::before {
  -webkit-transition: width 0.8s cubic-bezier(0.87, 0, 0.13, 1);
  transition: width 0.8s cubic-bezier(0.87, 0, 0.13, 1);
  width: 100%;
}

.is-menu-open .-item1 .l-header_menu__close-deco::after {
  -webkit-transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  width: 100%;
}

.is-menu-open .-item2 .l-header_menu__close-deco {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s, -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
}

.is-menu-open .-item2 .l-header_menu__close-deco::before {
  -webkit-transition: width 0.8s cubic-bezier(0.87, 0, 0.13, 1);
  transition: width 0.8s cubic-bezier(0.87, 0, 0.13, 1);
  width: 100%;
}

.is-menu-open .-item2 .l-header_menu__close-deco::after {
  -webkit-transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.3s;
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1) 0.3s;
  width: 100%;
}

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

.is-load .l-footer {
  opacity: 1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}

.l-footer__container {
  position: relative;
  margin: 0 auto;
  padding-bottom: 48px;
  width: 100%;
}

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

.l-footer__copy {
  position: relative;
  margin: 20px auto 0;
  width: 100%;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  text-align: center;
}

.l-footer_share {
  z-index: 5;
}

.l-footer_share__list {
  position: relative;
  margin: 0 auto;
}

.l-footer_share__list-item {
  display: block;
  position: relative;
  -webkit-transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  width: 20px;
}

[data-ua="pc"] .l-footer_share__list-item:hover {
  opacity: .5;
}

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

.l-footer_bnr__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-footer_bnr__list-item {
  display: block;
  position: relative;
  -webkit-transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  width: 195px;
}

[data-ua="pc"] .l-footer_bnr__list-item:hover {
  opacity: .75;
}

/* ====================
Project
 ==================== */
.p-tab-switch {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-tab-switch::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.6);
  width: 100vw;
  height: 100%;
  content: "";
}

.p-tab-switch__list {
  font-size: 0;
  letter-spacing: -.4em;
  text-align: center;
}

.p-tab-switch__list-item {
  display: inline-block;
  margin-right: 28px;
  margin-right: 2.8rem;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: 0.449px;
  letter-spacing: .045rem;
}

.p-tab-switch__list-item:last-child {
  margin-right: 0;
}

.p-tab-switch__text {
  position: relative;
  -webkit-transition: color 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: color 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  padding-bottom: 10px;
  padding-bottom: 1rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
}

[data-ua="pc"] .p-tab-switch__list-item:hover .p-tab-switch__text {
  color: #2275c7;
}

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

.is-current .p-tab-switch__text {
  color: #2275c7;
}

.is-current .p-tab-switch__text::before {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  width: 100%;
}

.p-tab-area {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-tab-area__inner {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.65s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.65s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 100%;
  pointer-events: none;
}

.p-tab-area__inner.is-current {
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 0.65s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.65s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  pointer-events: auto;
}

.p-modal-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0 auto;
  background: #fff;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

[data-modal="comment"] .p-modal-comment {
  opacity: 1;
  pointer-events: auto;
}

.p-modal-comment::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  pointer-events: none;
  content: 'COMMMENT';
  color: rgba(204, 204, 204, 0.6);
  font-size: 35px;
  font-size: 3.5rem;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.p-modal-comment::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%) rotate(90deg);
  transform: translate(50%, -50%) rotate(90deg);
  pointer-events: none;
  content: 'COMMMENT';
  color: rgba(204, 204, 204, 0.6);
  font-size: 35px;
  font-size: 3.5rem;
  letter-spacing: 1px;
  letter-spacing: .1rem;
}

.p-modal-comment__header {
  position: relative;
  z-index: 1;
  padding: 65px 0;
  width: 20%;
  max-width: 158px;
}

.p-modal-comment__name {
  display: inline-block;
  position: relative;
}

.p-modal-comment__name-sub {
  display: inline-block;
  font-size: 11px;
  font-size: 1.1rem;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

.p-modal-comment__name-main {
  display: inline-block;
  padding: 0 5px;
  font-weight: 500;
  font-size: 32px;
  font-size: 3.2rem;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

.p-modal-comment__inner {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  z-index: 1;
  border-left: 1px solid rgba(204, 204, 204, 0.6);
  padding: 65px 40px;
  min-width: 1px;
  text-align: left;
}

.p-modal-comment__comment {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
}

.p-modal-comment__comment_q {
  display: block;
  color: #2275c7;
}

/* ====================
COMPONENT
 ==================== */

@media screen and (max-width: 960px){
  .m-modal__content {
    width: 100%;
  }
  .is-modal-overflow-prep .m-modal__content {
    margin-top: 16%;
  }
  .m-modal__content-btn {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px auto 0;
    width: 84%;
    height: auto;
  }
  .m-modal__close {
    top: 0px;
    right: 0px;
    width: 30px;
    height: 30px;
  }
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .is-pc {
    display: none !important;
  }
  .is-pc-inline {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .pc-inline {
    display: none !important;
  }
  .l-header__visual {
    position: relative;
    width: 100%;
    height: 260px;
  }
  .l-header__visual-img {
    background: url("../img/common/img_menu_sp.jpg") no-repeat 50% 30%;
    background-size: cover;
  }
  .l-header__container {
    padding-top: 90px;
    padding-bottom: 40px;
  }
  .l-header__inner {
    width: 84%;
  }
  .l-header__nav {
    width: 56%;
  }
  .l-header__share {
    margin-top: 38px;
  }
  .l-header_nav__cap {
    margin-bottom: 18px;
    font-size: 11px;
  }
  .l-header_nav__link-text {
    font-size: 24px;
  }
  .l-header_official__cap {
    margin-bottom: 22px;
    font-size: 11px;
  }
  .l-header_official__link {
    width: 26px;
    height: 26px;
  }
  .l-header_official__link-img {
    width: 26px;
  }
  .l-header_share__cap {
    margin-bottom: 22px;
    font-size: 11px;
  }
  .l-header_share__link {
    width: 26px;
    height: 26px;
  }
  .l-header_share__link-img {
    width: 26px;
  }
  .l-header_menu {
    padding: 22px 18px;
    width: 60px;
    height: 60px;
  }
  .l-footer__container {
    padding-bottom: 45px;
  }
  .l-footer__bnr {
    margin-top: 45px;
    width: 90%;
  }
  .l-footer__copy {
    margin-top: 30px;
    font-size: 10px;
  }
  .l-footer_share {
    position: relative;
    margin: 0 auto;
    width: 100%;
  }
  .l-footer_share__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l-footer_share__list-item {
    width: 30px;
  }
  .l-footer_share__list-item + .l-footer_share__list-item {
    margin-left: 24px;
  }
  .l-footer_bnr__list-item {
    margin: 0 2% 5px 0;
    width: 49%;
  }
  .l-footer_bnr__list-item:nth-child(2n), .l-footer_bnr__list-item:last-child {
    margin-right: 0;
  }
  .p-tab-switch::before {
    left: -10%;
    width: 120%;
  }
  .p-tab-switch__text {
    padding-bottom: .6rem;
    font-size: 1.3rem;
  }
  .p-modal-comment {
    margin-top: 0;
  }
  .p-modal-comment__header {
    padding: 38px 0;
  }
  .p-modal-comment__name {
    position: relative;
    margin: 0 auto;
    width: 100%;
  }
  .p-modal-comment__name-sub {
    display: block;
    margin: 0 auto 12px;
    font-size: 1rem;
  }
  .p-modal-comment__name-main {
    display: block;
    margin: 0 auto;
    font-size: 2.4rem;
  }
  .p-modal-comment__inner {
    padding: 56px 25px;
  }
  .p-modal-comment__comment {
    font-size: 1.3rem;
    line-height: 1.9;
  }
}

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

@media screen and (min-width: 961px){
  .is-sp {
    display: none !important;
  }
  .is-sp-inline {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .sp-inline {
    display: none !important;
  }
  .l-header__visual {
    top: 0;
  }
  .l-header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 40.5%;
    height: 100%;
    min-height: 100vh;
  }
  .l-footer_share {
    position: fixed;
    bottom: 52px;
    left: 42px;
  }
  .l-footer_share__list-item + .l-footer_share__list-item {
    margin-top: 12px;
  }
  .l-footer_bnr__list-item + .l-footer_bnr__list-item {
    margin-left: 15px;
  }
  .p-modal-comment__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .p-modal-comment__name-sub {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }
}

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

@media screen and (orientation: portrait){
  .is-land {
    display: none !important;
  }
  .l-header {
    -webkit-mask: url("../img/common/effect_r_sp.png") no-repeat 50% 0%;
    mask: url("../img/common/effect_r_sp.png") no-repeat 50% 0%;
    -webkit-mask-size: 100% 1200%;
    mask-size: 100% 1200%;
  }
}

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

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