@charset "UTF-8";
/*  reset
================================================ */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  vertical-align: bottom;
}

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

span {
  font-weight: inherit;
}

a {
  color: inherit;
}

a[class] {
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

blockquote, q {
  quotes: none;
}

ul[class],
ol[class] {
  list-style: none;
}

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

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

#root, #__next {
  isolation: isolate;
}

input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  font: inherit;
  outline: none;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
}

/*  base
================================================ */
html:not([lang=ja]) {
  word-break: break-word;
}

body {
  min-width: 320px;
  font-family: "noto-sans-cjk-jp", "Avenir", "Helvetica Neue", "Helvetica", "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  color: #00161D;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px) {
  body {
    min-width: auto;
  }
}
@media all and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

.container {
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  max-width: 1470px;
  width: 100%;
}
@media all and (max-width: 1279px) {
  .container {
    max-width: 730px;
  }
}
@media all and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.lazyload,
.lazyloading {
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.lazyloaded {
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition-property: opacity;
  transition-property: opacity;
  opacity: 1;
}

/*  header
================================================ */
.l-header {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  mix-blend-mode: difference;
  height: 100%;
  z-index: 2000;
}
@media all and (max-width: 1599px) {
  .l-header {
    width: 160px;
  }
}
@media all and (max-width: 1439px) {
  .l-header {
    width: 140px;
  }
}
@media all and (max-width: 1279px) {
  .l-header {
    width: 100%;
    height: 0;
  }
}
.l-header .l-header__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px 0;
}
@media all and (max-width: 1279px) {
  .l-header .l-header__wrapper {
    padding: 0;
  }
}
.l-header .l-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 30px;
  position: relative;
}
@media all and (max-width: 1599px) {
  .l-header .l-header__container {
    padding: 0 20px;
  }
}
@media all and (max-width: 1279px) {
  .l-header .l-header__container {
    padding: 0;
  }
}
.l-header .l-header__container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.l-header__logo {
  width: 100%;
  max-width: 56px;
  position: fixed;
  top: 40px;
  left: 72px;
  z-index: 2001;
  mix-blend-mode: difference;
  line-height: 1;
}
@media all and (max-width: 1599px) {
  .l-header__logo {
    left: 52px;
  }
}
@media all and (max-width: 1439px) {
  .l-header__logo {
    left: 42px;
  }
}
@media all and (max-width: 1279px) {
  .l-header__logo {
    top: 40px;
    max-width: 48px;
    left: 30px;
  }
}
@media all and (max-width: 767px) {
  .l-header__logo {
    max-width: 32px;
    top: 30px;
    left: 20px;
  }
}
.l-header__logo .l-header__logo-link svg {
  width: 100%;
  height: auto;
}
.l-header__logo .l-header__logo-link path {
  fill: #fff;
}
.l-header__logo .l-header__logo-link rect {
  opacity: 0;
}

.l-header__booking--title {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #fff;
  width: 200px;
  mix-blend-mode: difference;
  z-index: 2001;
  position: fixed;
  left: 0px;
  bottom: 400px;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
}
@media all and (max-width: 1599px) {
  .l-header__booking--title {
    font-size: 1.3rem;
    width: 160px;
  }
}
@media all and (max-width: 1439px) {
  .l-header__booking--title {
    font-size: 1.2rem;
    width: 140px;
  }
}
@media all and (max-width: 1279px) {
  .l-header__booking--title {
    display: none;
  }
}

.l-header__booking--wrap {
  width: 140px;
  position: fixed;
  z-index: 2001;
  bottom: 40px;
  left: 30px;
}
@media all and (max-width: 1599px) {
  .l-header__booking--wrap {
    left: 10px;
  }
}
@media all and (max-width: 1439px) {
  .l-header__booking--wrap {
    width: 120px;
  }
}
@media all and (max-width: 1279px) {
  .l-header__booking--list {
    display: none;
  }
}

.l-header__booking--list-col:not(:first-of-type) {
  margin-top: 10px;
}

/* .l-footer
================================================ */
.l-footer {
  background-color: rgba(0, 22, 29, 0.8);
}
.l-footer .l-footer__wrapper {
  padding: 100px 0 160px;
}
@media all and (max-width: 1879px) {
  .l-footer .l-footer__wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  .l-footer .l-footer__wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  .l-footer .l-footer__wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  .l-footer .l-footer__wrapper {
    max-width: 100%;
  }
}
@media all and (max-width: 1279px) {
  .l-footer .l-footer__wrapper {
    padding: 60px 0 120px;
  }
}
@media all and (max-width: 767px) {
  .l-footer .l-footer__wrapper {
    padding: 40px 0 80px;
  }
}
.l-footer .l-footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  .l-footer .l-footer__row {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.l-footer .l-footer__row > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .l-footer .l-footer__row > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.l-footer .l-footer__col {
  max-width: 41.6666%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666%;
          flex: 0 0 41.6666%;
}
@media all and (max-width: 1279px) {
  .l-footer .l-footer__col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.l-footer .l-footer__col:not(:first-of-type) {
  max-width: 58.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333%;
          flex: 0 0 58.3333%;
}
@media all and (max-width: 1279px) {
  .l-footer .l-footer__col:not(:first-of-type) {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.l-footer .l-footer__profile {
  color: #fff;
  max-width: 450px;
}
.l-footer .l-footer__profile--logo {
  width: 100%;
  max-width: 228px;
}
.l-footer .l-footer__profile--logo img {
  width: 100%;
}
.l-footer .l-footer__profile--name {

  margin-top: 30px;
}
.l-footer .l-footer__profile--address {
  font-style: normal;
  display: block;
}
.l-footer .l-footer__profile--tel {
  margin-top: 15px;
}
.l-footer .l-footer__profile--tel + .l-footer__profile--tel {
  margin-top: 8px;
}
.l-footer .l-footer__map {
  margin-top: 30px;
  max-width: 450px;
}
.l-footer .l-footer__nav {
  color: #fff;
}
.l-footer .l-footer__nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  .l-footer .l-footer__nav--list {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.l-footer .l-footer__nav--list > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .l-footer .l-footer__nav--list > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.l-footer .l-footer__nav--list-col {
  max-width: 33.333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
}
.l-footer .l-footer__nav--item .l-footer__nav--child {
  margin-top: 40px;
}
.l-footer .l-footer__nav--item .l-footer__nav--link {
  padding-left: 16px;
}
.l-footer .l-footer__nav--item .l-footer__nav--link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background-color: #fff;
}
.l-footer .l-footer__nav--heading {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.5;
}
.l-footer .l-footer__nav--child-col:not(:first-of-type) {
  margin-top: 30px;
}
.l-footer .l-footer__nav--link {
  display: inline-block;
  position: relative;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.l-footer .l-footer__nav--link.-en {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
}
.l-footer .l-footer__nav--link:hover, .l-footer .l-footer__nav--link:active, .l-footer .l-footer__nav--link:focus {
  opacity: 0.8;
}
@media all and (max-width: 1279px) {
  .l-footer .l-footer__upper {
    display: none;
  }
}
.l-footer .l-footer__lower {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #4C5765;
}
@media all and (max-width: 767px) {
  .l-footer .l-footer__lower {
    margin-top: 40px;
  }
}
.l-footer .l-footer__copyright {
  padding: 160px 0 0;
}
@media all and (max-width: 1279px) {
  .l-footer .l-footer__copyright {
    padding: 120px 0 0;
  }
}
@media all and (max-width: 767px) {
  .l-footer .l-footer__copyright {
    padding: 80px 0 0;
  }
}
.l-footer .l-footer__copyright--elem {
  text-align: center;
  font-size: 1.3rem;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}
.l-footer .l-footer__bottom {
  position: relative;
}
.l-footer .l-footer__bottom::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00161D;
  mix-blend-mode: color;
}
.l-footer .l-footer__bottom--wrapper {
  position: relative;
  padding-top: 25%;
  overflow: hidden;
}
@media all and (max-width: 1279px) {
  .l-footer .l-footer__bottom--wrapper {
    padding-top: 33.3333%;
  }
}
@media all and (max-width: 767px) {
  .l-footer .l-footer__bottom--wrapper {
    padding-top: 50%;
  }
}
.l-footer .l-footer__bottom--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media all and (max-width: 1279px) {
  .l-footer .l-footer__bottom--bg.-pc {
    display: none;
  }
}
.l-footer .l-footer__bottom--bg.-sp {
  display: none;
}
@media all and (max-width: 1279px) {
  .l-footer .l-footer__bottom--bg.-sp {
    display: block;
  }
}

/* .l-hero
================================================ */
.l-hero {
  width: 100%;
  height: 100vh;
  position: relative;
  top: 0;
  left: 0;
}
.l-hero .l-hero__outer {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-hero .l-hero__wrapper {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media all and (max-width: 1879px) {
  .l-hero .l-hero__wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  .l-hero .l-hero__wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  .l-hero .l-hero__wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  .l-hero .l-hero__wrapper {
    max-width: 100%;
  }
}
.l-hero .l-hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 767px) {
  .l-hero .l-hero__inner {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.l-hero .l-hero__inner > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .l-hero .l-hero__inner > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.l-hero .l-hero__contents {
  max-width: 83.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333%;
          flex: 0 0 83.3333%;
}
@media all and (max-width: 1279px) {
  .l-hero .l-hero__contents {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.l-hero .l-hero__catch {
  color: #fff;
  font-weight: 400;
}
.l-hero .l-hero__catch--ja {
  font-size: 4rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
}
@media all and (max-width: 767px) {
  .l-hero .l-hero__catch--ja {
    font-size: 2.8rem;
  }
}
.l-hero .l-hero__catch--en {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .l-hero .l-hero__catch--en {
    font-size: 1.4rem;
  }
}
.l-hero .l-hero__movie {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-hero .l-hero__movie::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  background-color: rgba(0, 22, 29, 0.5);
}
.l-hero .l-hero__movie--video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: none;
}
@media all and (max-width: 1279px) {
  .l-hero .l-hero__movie--video.-pc {
    display: none;
  }
}
.l-hero .l-hero__movie--video.-sp {
  display: none;
}
@media all and (max-width: 1279px) {
  .l-hero .l-hero__movie--video.-sp {
    display: block;
  }
}

/*  l-gnav
================================================ */
.l-gnav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  padding-left: 40px;
}
@media all and (max-width: 1279px) {
  .l-gnav {
    display: none;
  }
}

.l-gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.l-gnav__item:not(:first-of-type) {
  margin-left: 40px;
}
@media all and (max-width: 1879px) {
  .l-gnav__item:not(:first-of-type) {
    margin-left: 20px;
  }
}

.l-gnav__item-link {
  font-size: 1.6rem;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.l-gnav__item-link:hover, .l-gnav__item-link:active, .l-gnav__item-link:focus {
  color: #00161D;
}
@media all and (max-width: 1879px) {
  .l-gnav__item-link {
    font-size: 1.5rem;
  }
}

/*  l-drawer
================================================ */
.l-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  overflow-y: scroll;
  background-color: #00161D;
  color: #fff;
  display: none;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.l-drawer.is-open {
  display: block;
}
@media all and (max-width: 1279px) {
  .l-drawer {
    display: none;
  }
  .l-drawer.is-open {
    display: block;
  }
}
.l-drawer .l-drawer__wrapper {
  padding: 160px 0;
  position: relative;
  z-index: 2001;
}
@media all and (max-width: 1279px) {
  .l-drawer .l-drawer__wrapper {
    padding: 120px 0;
  }
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__wrapper {
    padding: 80px 0;
  }
}
@media all and (max-width: 1879px) {
  .l-drawer .l-drawer__wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  .l-drawer .l-drawer__wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  .l-drawer .l-drawer__wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  .l-drawer .l-drawer__wrapper {
    max-width: 100%;
  }
}
.l-drawer .l-drawer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__row {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.l-drawer .l-drawer__row > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__row > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.l-drawer .l-drawer__col:first-of-type {
  max-width: 58.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333%;
          flex: 0 0 58.3333%;
}
@media all and (max-width: 1439px) {
  .l-drawer .l-drawer__col:first-of-type {
    max-width: 55%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
  }
}
@media all and (max-width: 1279px) {
  .l-drawer .l-drawer__col:first-of-type {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 50px;
  }
}
.l-drawer .l-drawer__col:last-of-type {
  max-width: 41.6666%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666%;
          flex: 0 0 41.6666%;
}
@media all and (max-width: 1439px) {
  .l-drawer .l-drawer__col:last-of-type {
    max-width: 45%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
}
@media all and (max-width: 1279px) {
  .l-drawer .l-drawer__col:last-of-type {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.l-drawer .l-drawer__nav {
  max-width: 720px;
}
.l-drawer .l-drawer__nav--list-col:not(:first-of-type) {
  margin-top: 60px;
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__nav--list-col:not(:first-of-type) {
    margin-top: 40px;
  }
}
.l-drawer .l-drawer__nav--item {
  padding: 0 0 60px;
  position: relative;
  border-bottom: 1px solid #7C7C7C;
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__nav--item {
    padding: 0;
    border: none;
  }
}
.l-drawer .l-drawer__nav--item:not(:first-of-type) {
  margin-top: 30px;
}
.l-drawer .l-drawer__nav--item-heading {
  font-weight: 400;
}
.l-drawer .l-drawer__nav--item-heading .-en {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  font-size: 2rem;
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__nav--item-heading .-en {
    font-size: 1.4rem;
  }
}
.l-drawer .l-drawer__nav--item-heading .-ja {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-size: 3.6rem;
  margin-top: 5px;
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__nav--item-heading .-ja {
    font-size: 2.4rem;
  }
}
.l-drawer .l-drawer__nav--child {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__nav--child {
    margin-top: 25px;
  }
}
.l-drawer .l-drawer__nav--child-col {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.l-drawer .l-drawer__nav--child-col:nth-of-type(n+3) {
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__nav--child-col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .l-drawer .l-drawer__nav--child-col:not(:first-of-type) {
    margin-top: 20px;
  }
}
.l-drawer .l-drawer__nav--link {
  padding-left: 16px;
  position: relative;
  font-size: 1.8rem;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__nav--link {
    font-size: 1.5rem;
  }
}
.l-drawer .l-drawer__nav--link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background-color: #fff;
}
.l-drawer .l-drawer__nav--link:hover, .l-drawer .l-drawer__nav--link:active, .l-drawer .l-drawer__nav--link:focus {
  opacity: 0.8;
}
.l-drawer .l-drawer__booking {
  margin-top: 60px;
  display: none;
  padding-bottom: 60px;
  border-bottom: 1px solid #fff;
}
@media all and (max-width: 1279px) {
  .l-drawer .l-drawer__booking {
    display: block;
  }
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__booking {
    padding-bottom: 0;
    border: none;
  }
}
.l-drawer .l-drawer__booking--title {
  font-weight: 400;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-size: 3.6rem;
  margin-top: 5px;
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__booking--title {
    font-size: 2.4rem;
  }
}
.l-drawer .l-drawer__booking--list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-left: -10px;
  margin-right: -10px;
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__booking--list {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.l-drawer .l-drawer__booking--list > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__booking--list > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__booking--list {
    margin-top: 25px;
  }
}
.l-drawer .l-drawer__booking--list-col {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-right: 10px;
  padding-left: 10px;
}
.l-drawer .l-drawer__booking--list-col:nth-of-type(n+2) {
  margin-top: 15px;
}
@media all and (max-width: 767px) {
  .l-drawer .l-drawer__booking--list-col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .l-drawer .l-drawer__booking--list-col:not(:first-of-type) {
    margin-top: 15px;
  }
}
.l-drawer .l-drawer__nav--middle {
  margin-top: 60px;
  padding: 0 0 60px;
  position: relative;
  border-bottom: 1px solid #7C7C7C;
}
.l-drawer .l-drawer__lower {
  margin-top: 60px;
}
@media all and (max-width: 1279px) {
  .l-drawer .l-drawer__image {
    max-width: 78%;
    margin-left: auto;
  }
}
.l-drawer .l-drawer__image--wrapper {
  padding-top: 147.36%;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 1279px) {
  .l-drawer .l-drawer__image--wrapper {
    padding-top: 61.6949%;
  }
}
.l-drawer .l-drawer__image--bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/common/bg-drawer01_pc.jpg");
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 1279px) {
  .l-drawer .l-drawer__image--bg {
    background-image: url("../img/common/bg-drawer01_sp.jpg");
  }
}

.l-wrapper {
  position: relative;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0 cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0 cubic-bezier(0.33, 1, 0.68, 1);
}
.l-wrapper.is-active {
  opacity: 1;
}

/*  mainImage
================================================ */
.l-mainImage .l-mainImage__wrapper {
  padding: 160px 0 0;
  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;
}
@media all and (max-width: 1879px) {
  .l-mainImage .l-mainImage__wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  .l-mainImage .l-mainImage__wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  .l-mainImage .l-mainImage__wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  .l-mainImage .l-mainImage__wrapper {
    max-width: 100%;
  }
}
@media all and (max-width: 1279px) {
  .l-mainImage .l-mainImage__wrapper {
    padding-top: 240px;
    padding-bottom: 120px;
  }
}
@media all and (max-width: 767px) {
  .l-mainImage .l-mainImage__wrapper {
    padding: 220px 0 80px;
  }
}
.l-mainImage .l-mainImage__header {
  max-width: 83.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333%;
          flex: 0 0 83.3333%;
}
@media all and (max-width: 1279px) {
  .l-mainImage .l-mainImage__header {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
@media all and (max-width: 767px) {
  .l-mainImage .l-mainImage__header {
    padding: 0 20px;
  }
}
.l-mainImage .l-mainImage__title {
  font-weight: 400;
}
.l-mainImage .l-mainImage__title.-pp {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: 4rem;
  line-height: 2.5;
}
@media all and (max-width: 1599px) {
  .l-mainImage .l-mainImage__title.-pp {
    font-size: 3rem;
  }
}
@media all and (max-width: 767px) {
  .l-mainImage .l-mainImage__title.-pp {
    font-size: 2.4rem;
    line-height: 1.8;
  }
}
.l-mainImage .l-mainImage__title--en {
  font-size: 16rem;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  line-height: 1;
  display: inline-block;
}
@media all and (max-width: 1879px) {
  .l-mainImage .l-mainImage__title--en {
    font-size: 12rem;
  }
}
@media all and (max-width: 1439px) {
  .l-mainImage .l-mainImage__title--en {
    font-size: 8rem;
  }
}
@media all and (max-width: 767px) {
  .l-mainImage .l-mainImage__title--en {
    font-size: 6.4rem;
  }
}
.l-mainImage .l-mainImage__title--ja {
  display: inline-block;
  line-height: 1;
  padding-left: 32px;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
}
@media all and (max-width: 767px) {
  .l-mainImage .l-mainImage__title--ja {
    padding-left: 0;
    display: block;
    margin-top: 15px;
    line-height: 1.5;
  }
}
.l-mainImage .l-mainImage__contents {
  margin-top: 90px;
  max-width: 83.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333%;
          flex: 0 0 83.3333%;
}
@media all and (max-width: 1279px) {
  .l-mainImage .l-mainImage__contents {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 60px;
  }
}
@media all and (max-width: 767px) {
  .l-mainImage .l-mainImage__contents {
    margin-top: 40px;
    padding: 0 20px;
  }
}
.l-mainImage .l-mainImage__contents--catch {
  margin-bottom: 60px;
}
@media all and (max-width: 1279px) {
  .l-mainImage .l-mainImage__contents--catch {
    margin-bottom: 50px;
  }
}
@media all and (max-width: 767px) {
  .l-mainImage .l-mainImage__contents--catch {
    margin-bottom: 35px;
  }
}
.l-mainImage .l-mainImage__contents--catch-ja {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: 4rem;
  line-height: 2.5;
}
@media all and (max-width: 1599px) {
  .l-mainImage .l-mainImage__contents--catch-ja {
    font-size: 3rem;
  }
}
@media all and (max-width: 767px) {
  .l-mainImage .l-mainImage__contents--catch-ja {
    font-size: 2.4rem;
    line-height: 1.8;
  }
}
.l-mainImage .l-mainImage__contents--catch-ja span {
  display: inline-block;
  position: relative;
  line-height: 1;
}
.l-mainImage .l-mainImage__contents--catch-ja span::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #00161D;
}
.l-mainImage .l-mainImage__contents--catch-en {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #7C7C7C;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-top: 20px;
}
@media all and (max-width: 1279px) {
  .l-mainImage .l-mainImage__contents--catch-en {
    margin-top: 5px;
  }
}
@media all and (max-width: 767px) {
  .l-mainImage .l-mainImage__contents--catch-en {
    font-size: 1.4rem;
    margin-top: 15px;
  }
}
.l-mainImage .l-mainImage__contents--ja {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.5;
}
@media all and (max-width: 767px) {
  .l-mainImage .l-mainImage__contents--ja {
    font-size: 1.5rem;
  }
  .l-mainImage .l-mainImage__contents--ja br {
    display: none;
  }
}
.l-mainImage .l-mainImage__contents--en {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #7C7C7C;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-top: 40px;
}
@media all and (max-width: 767px) {
  .l-mainImage .l-mainImage__contents--en {
    font-size: 1.4rem;
    margin-top: 20px;
  }
  .l-mainImage .l-mainImage__contents--en br {
    display: none;
  }
}
.l-mainImage .l-mainImage__main {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-top: 90px;
  position: relative;
}
@media all and (max-width: 1279px) {
  .l-mainImage .l-mainImage__main {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 60px;
  }
}
@media all and (max-width: 767px) {
  .l-mainImage .l-mainImage__main {
    margin-top: 30px;
  }
}
.l-mainImage .l-mainImage__main--outer {
  max-width: 89.583vw;
  margin-left: auto;
}
@media all and (max-width: 1439px) {
  .l-mainImage .l-mainImage__main--outer {
    max-width: calc(100% - 100px);
  }
}
@media all and (max-width: 1279px) {
  .l-mainImage .l-mainImage__main--outer {
    max-width: calc(100% - 50px);
  }
}
@media all and (max-width: 767px) {
  .l-mainImage .l-mainImage__main--outer {
    max-width: calc(100% - 40px);
  }
}
.l-mainImage .l-mainImage__main--wrapper {
  position: relative;
  padding-top: 36.036%;
  overflow: hidden;
}
@media all and (max-width: 1279px) {
  .l-mainImage .l-mainImage__main--wrapper {
    padding-top: 66.56%;
  }
}
.l-mainImage .l-mainImage__main--bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*  media
================================================ */
.l-aside__media {
  background-color: #fff;
}
.l-aside__media .l-aside__media--wrapper {
  padding: 120px 0;
}
@media all and (max-width: 1279px) {
  .l-aside__media .l-aside__media--wrapper {
    padding: 90px 0;
  }
}
@media all and (max-width: 767px) {
  .l-aside__media .l-aside__media--wrapper {
    padding: 70px 0;
  }
}
@media all and (max-width: 1879px) {
  .l-aside__media .l-aside__media--header {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  .l-aside__media .l-aside__media--header {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  .l-aside__media .l-aside__media--header {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  .l-aside__media .l-aside__media--header {
    max-width: 100%;
  }
}
.l-aside__media .l-aside__media--header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 767px) {
  .l-aside__media .l-aside__media--header-inner {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.l-aside__media .l-aside__media--header-inner > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .l-aside__media .l-aside__media--header-inner > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
@media all and (max-width: 767px) {
  .l-aside__media .l-aside__media--header-inner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.l-aside__media .l-aside__media--title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media all and (max-width: 767px) {
  .l-aside__media .l-aside__media--title {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.l-aside__media .l-aside__media--btn {
  margin-top: 0;
  max-width: 252px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 252px;
          flex: 0 0 252px;
}
@media all and (max-width: 767px) {
  .l-aside__media .l-aside__media--btn {
    margin-top: 25px;
  }
}
.l-aside__media .l-aside__media--body {
  margin-top: 60px;
}
.l-aside__media .l-aside__media--slider {
  overflow: visible;
  max-width: 860px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
}
@media all and (max-width: 1279px) {
  .l-aside__media .l-aside__media--slider {
    max-width: 730px;
  }
}
@media all and (max-width: 767px) {
  .l-aside__media .l-aside__media--slider {
    max-width: calc(100% - 40px);
  }
}
.l-aside__media .l-aside__media--slider-slide {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: auto;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.l-aside__media .l-aside__media--slider-btn {
  top: 33.3333%;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  .l-aside__media .l-aside__media--slider-btn {
    top: 25%;
  }
}
.l-aside__media .l-aside__media--slider-btn:hover, .l-aside__media .l-aside__media--slider-btn:active, .l-aside__media .l-aside__media--slider-btn:focus {
  opacity: 0.5;
}
.l-aside__media .l-aside__media--slider-btn.-prev {
  left: -45px;
}
@media all and (max-width: 1279px) {
  .l-aside__media .l-aside__media--slider-btn.-prev {
    left: -10px;
  }
}
@media all and (max-width: 767px) {
  .l-aside__media .l-aside__media--slider-btn.-prev {
    left: -10px;
  }
}
.l-aside__media .l-aside__media--slider-btn.-prev::after {
  content: url("../img/common/arrow-slider-prev.svg");
}
.l-aside__media .l-aside__media--slider-btn.-next {
  right: -45px;
}
@media all and (max-width: 1279px) {
  .l-aside__media .l-aside__media--slider-btn.-next {
    right: -10px;
  }
}
@media all and (max-width: 767px) {
  .l-aside__media .l-aside__media--slider-btn.-next {
    right: -10px;
  }
}
.l-aside__media .l-aside__media--slider-btn.-next::after {
  content: url("../img/common/arrow-slider-next.svg");
}
.l-aside__media .l-aside__media--slider-nav {
  margin-top: 60px;
}
@media all and (max-width: 767px) {
  .l-aside__media .l-aside__media--slider-nav {
    margin-top: 40px;
  }
}
.l-aside__media .l-aside__media--slider-scrollbar {
  max-width: 640px;
  height: 4px;
  width: 100%;
  border-radius: 2px;
  background-color: #EDEDED;
  position: relative;
  left: auto;
  bottom: auto;
}
.l-aside__media .l-aside__media--slider-scrollbar .swiper-scrollbar-drag {
  border-radius: 2px;
  background-color: #003445;
}
@media all and (max-width: 1279px) {
  .l-aside__media .l-aside__media--slider-scrollbar {
    max-width: 560px;
  }
}

/*  news
================================================ */
.l-aside__news {
  background-color: #F7F7F7;
}
.l-aside__news .l-aside__news--wrapper {
  padding: 120px 0;
}
@media all and (max-width: 1279px) {
  .l-aside__news .l-aside__news--wrapper {
    padding: 90px 0;
  }
}
@media all and (max-width: 767px) {
  .l-aside__news .l-aside__news--wrapper {
    padding: 70px 0;
  }
}
@media all and (max-width: 1879px) {
  .l-aside__news .l-aside__news--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  .l-aside__news .l-aside__news--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  .l-aside__news .l-aside__news--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  .l-aside__news .l-aside__news--wrapper {
    max-width: 100%;
  }
}
.l-aside__news .l-aside__news--header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 767px) {
  .l-aside__news .l-aside__news--header-inner {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.l-aside__news .l-aside__news--header-inner > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .l-aside__news .l-aside__news--header-inner > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
@media all and (max-width: 767px) {
  .l-aside__news .l-aside__news--header-inner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.l-aside__news .l-aside__news--title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media all and (max-width: 767px) {
  .l-aside__news .l-aside__news--title {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.l-aside__news .l-aside__news--btn {
  margin-top: 0;
  max-width: 252px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 252px;
          flex: 0 0 252px;
}
@media all and (max-width: 767px) {
  .l-aside__news .l-aside__news--btn {
    margin-top: 25px;
  }
}
.l-aside__news .l-aside__news--body {
  margin-top: 60px;
}
.l-aside__news .l-aside__news--contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  .l-aside__news .l-aside__news--contents {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.l-aside__news .l-aside__news--contents > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .l-aside__news .l-aside__news--contents > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.l-aside__news .l-aside__news--secondary {
  max-width: 16.6666%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666%;
          flex: 0 0 16.6666%;
}
@media all and (max-width: 1279px) {
  .l-aside__news .l-aside__news--secondary {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.l-aside__news .l-aside__news--primary {
  max-width: 83.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333%;
          flex: 0 0 83.3333%;
}
@media all and (max-width: 1279px) {
  .l-aside__news .l-aside__news--primary {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 30px;
  }
}
@media all and (max-width: 1279px) {
  .l-aside__news .l-aside__news--cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media all and (max-width: 1279px) and (max-width: 767px) {
  .l-aside__news .l-aside__news--cat {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
@media all and (max-width: 1279px) {
  .l-aside__news .l-aside__news--cat > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media all and (max-width: 1279px) and (max-width: 767px) {
  .l-aside__news .l-aside__news--cat > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.l-aside__news .l-aside__news--cat-col:not(:first-of-type) {
  margin-top: 30px;
}
@media all and (max-width: 1279px) {
  .l-aside__news .l-aside__news--cat-col:not(:first-of-type) {
    margin-top: 0;
  }
}
@media all and (max-width: 1279px) {
  .l-aside__news .l-aside__news--cat-col {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}
.l-aside__news .l-aside__news--cat-link {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #7C7C7C;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.l-aside__news .l-aside__news--cat-link::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #003445;
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  opacity: 0;
}
.l-aside__news .l-aside__news--cat-link.-current {
  color: #003445;
  pointer-events: none;
}
.l-aside__news .l-aside__news--cat-link.-current::before {
  width: 100%;
  opacity: 1;
}
.l-aside__news .l-aside__news--cat-link:hover, .l-aside__news .l-aside__news--cat-link:active, .l-aside__news .l-aside__news--cat-link:focus {
  color: #003445;
}
.l-aside__news .l-aside__news--cat-link:hover::before, .l-aside__news .l-aside__news--cat-link:active::before, .l-aside__news .l-aside__news--cat-link:focus::before {
  width: 100%;
  left: 0;
  right: auto;
  opacity: 1;
}

/*  booking
================================================ */
.l-aside__booking {
  background-color: rgba(0, 22, 29, 0.8);
}
.l-aside__booking .l-aside__booking--wrapper {
  padding: 160px 0 0;
}
@media all and (max-width: 1279px) {
  .l-aside__booking .l-aside__booking--wrapper {
    padding: 120px 0 0;
  }
}
@media all and (max-width: 767px) {
  .l-aside__booking .l-aside__booking--wrapper {
    padding: 80px 0 0;
  }
}
@media all and (max-width: 1879px) {
  .l-aside__booking .l-aside__booking--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  .l-aside__booking .l-aside__booking--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  .l-aside__booking .l-aside__booking--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  .l-aside__booking .l-aside__booking--wrapper {
    max-width: 100%;
  }
}
.l-aside__booking .l-aside__booking--container {
  position: relative;
}
.l-aside__booking .l-aside__booking--inner {
  padding-bottom: 100px;
  border-bottom: 1px solid #4C5765;
  position: relative;
}
.l-aside__booking .l-aside__booking--inner:not(:first-of-type) {
  margin-top: 100px;
}
@media all and (max-width: 1279px) {
  .l-aside__booking .l-aside__booking--inner {
    padding-bottom: 60px;
    margin-top: 60px;
  }
}
@media all and (max-width: 767px) {
  .l-aside__booking .l-aside__booking--inner {
    padding-bottom: 40px;
    margin-top: 40px;
  }
}
.l-aside__booking .l-aside__booking--catch {
  font-size: 18rem;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  mix-blend-mode: difference;
  line-height: 1;
  color: #fff;
  mix-blend-mode: normal;
  opacity: 0.5;
  position: absolute;
  top: -10px;
  right: 0;
}
@media all and (max-width: 1879px) {
  .l-aside__booking .l-aside__booking--catch {
    font-size: 10.5vw;
  }
}
@media all and (max-width: 1439px) {
  .l-aside__booking .l-aside__booking--catch {
    font-size: 8rem;
  }
}
@media all and (max-width: 767px) {
  .l-aside__booking .l-aside__booking--catch {
    font-size: 6.4rem;
  }
}
@media all and (max-width: 1279px) {
  .l-aside__booking .l-aside__booking--catch {
    top: 10%;
  }
}
@media all and (max-width: 767px) {
  .l-aside__booking .l-aside__booking--catch {
    top: -45px;
    opacity: 0.2;
  }
}
.l-aside__booking .l-aside__booking--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 80px;
  margin-left: -10px;
  margin-right: -10px;
}
.l-aside__booking .l-aside__booking--list-col {
  max-width: 16.6%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6%;
          flex: 0 0 16.6%;
  padding-right: 10px;
  padding-left: 10px;
}
.l-aside__booking .l-aside__booking--list-col:nth-of-type(n+7) {
  margin-top: 15px;
}
@media all and (max-width: 1279px) {
  .l-aside__booking .l-aside__booking--list-col {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .l-aside__booking .l-aside__booking--list-col:nth-of-type(n+3) {
    margin-top: 15px;
  }
}
@media all and (max-width: 767px) {
  .l-aside__booking .l-aside__booking--list-col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .l-aside__booking .l-aside__booking--list-col:not(:first-of-type) {
    margin-top: 15px;
  }
}

/*  related
================================================ */
.l-aside__related {
  background-color: #F7F7F7;
}
.l-aside__related .l-aside__related--wrapper {
  padding: 120px 0;
}
@media all and (max-width: 1279px) {
  .l-aside__related .l-aside__related--wrapper {
    padding: 90px 0;
  }
}
@media all and (max-width: 767px) {
  .l-aside__related .l-aside__related--wrapper {
    padding: 70px 0;
  }
}
@media all and (max-width: 1879px) {
  .l-aside__related .l-aside__related--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  .l-aside__related .l-aside__related--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  .l-aside__related .l-aside__related--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  .l-aside__related .l-aside__related--wrapper {
    max-width: 100%;
  }
}
.l-aside__related .l-aside__related--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  .l-aside__related .l-aside__related--list {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.l-aside__related .l-aside__related--list > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .l-aside__related .l-aside__related--list > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.l-aside__related .l-aside__related--list-col {
  max-width: 33.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
}
@media all and (max-width: 1279px) {
  .l-aside__related .l-aside__related--list-col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .l-aside__related .l-aside__related--list-col:not(:first-of-type) {
    margin-top: 50px;
  }
}
@media all and (max-width: 767px) {
  .l-aside__related .l-aside__related--list-col:not(:first-of-type) {
    margin-top: 40px;
  }
}

/*  l-modal__members
================================================ */
.l-modal__members {
  display: none;
}
.l-modal__members[aria-hidden=false] .l-modal__members--overlay {
  -webkit-animation: overlayFadeIn 0.2s cubic-bezier(0.33, 1, 0.68, 1);
          animation: overlayFadeIn 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.l-modal__members[aria-hidden=false] .l-modal__members--container {
  -webkit-animation: mmSlideIn 0.3s cubic-bezier(0.33, 1, 0.68, 1);
          animation: mmSlideIn 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.l-modal__members[aria-hidden=true] .l-modal__members--overlay {
  -webkit-animation: overlayFadeOut 0.2s cubic-bezier(0.33, 1, 0.68, 1);
          animation: overlayFadeOut 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.l-modal__members[aria-hidden=true] .l-modal__members--container {
  -webkit-animation: mmSlideOut 0.3s cubic-bezier(0.33, 1, 0.68, 1);
          animation: mmSlideOut 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.l-modal__members.is-open {
  display: block;
}
.l-modal__members .l-modal__members--overlay {
  position: fixed;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  will-change: transform;
}
.l-modal__members .l-modal__members--container {
  background-color: #fff;
  width: 60%;
  height: 100%;
  max-height: 100vh;
  max-width: 100%;
  overflow-y: scroll;
  position: relative;
  z-index: 3001;
  padding: 80px 0 0;
  z-index: 3001;
}
@media all and (max-width: 1279px) {
  .l-modal__members .l-modal__members--container {
    width: calc(100% - 80px);
  }
}
@media all and (max-width: 767px) {
  .l-modal__members .l-modal__members--container {
    width: calc(100% - 40px);
    padding: 60px 0 0;
  }
}
.l-modal__members .l-modal__members--close {
  position: fixed;
  top: 30px;
  right: 40px;
  background-color: #00161D;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3002;
}
@media all and (max-width: 1279px) {
  .l-modal__members .l-modal__members--close {
    top: 20px;
    right: 30px;
    width: 48px;
    height: 48px;
  }
}
@media all and (max-width: 767px) {
  .l-modal__members .l-modal__members--close {
    right: 20px;
    width: 32px;
    height: 32px;
  }
}
.l-modal__members .l-modal__members--close-icon {
  max-width: 22px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22px;
          flex: 0 0 22px;
}
@media all and (max-width: 1279px) {
  .l-modal__members .l-modal__members--close-icon {
    max-width: 18px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18px;
            flex: 0 0 18px;
  }
}
@media all and (max-width: 767px) {
  .l-modal__members .l-modal__members--close-icon {
    max-width: 14px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
            flex: 0 0 14px;
  }
}
.l-modal__members .l-modal__members--close-icon svg {
  width: 100%;
  height: auto;
}
.l-modal__members .l-modal__members--close-icon svg rect {
  fill: #fff;
}
.l-modal__members .l-modal__members--inner {
  padding-right: 11.45vw;
  padding-left: 60px;
  width: 100%;
  padding-bottom: 80px;
}
@media all and (max-width: 1279px) {
  .l-modal__members .l-modal__members--inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media all and (max-width: 767px) {
  .l-modal__members .l-modal__members--inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
  }
}
.l-modal__members .l-modal__members--thumbnail {
  position: relative;
  overflow: hidden;
}
.l-modal__members .l-modal__members--thumbnail-wrapper {
  padding-top: 61.5%;
}
.l-modal__members .l-modal__members--thumbnail-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  width: 100%;
  height: 100%;
  z-index: 2;
}
.l-modal__members .l-modal__members--contents {
  margin-top: 40px;
}
@media all and (max-width: 767px) {
  .l-modal__members .l-modal__members--contents {
    margin-top: 30px;
  }
}
.l-modal__members .l-modal__members--catch {
  font-size: 2.8rem;
  font-weight: 700;
  color: #00161D;
  line-height: 1.6;
}
@media all and (max-width: 767px) {
  .l-modal__members .l-modal__members--catch {
    font-size: 2.4rem;
  }
  .l-modal__members .l-modal__members--catch br {
    display: none;
  }
}
.l-modal__members .l-modal__members--profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}
.l-modal__members .l-modal__members--profile-pos {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00161D;
  line-height: 1.5;
}
@media all and (max-width: 767px) {
  .l-modal__members .l-modal__members--profile-pos {
    font-size: 1.2rem;
  }
}
.l-modal__members .l-modal__members--profile-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00161D;
  line-height: 1.5;
  padding-left: 15px;
}
@media all and (max-width: 767px) {
  .l-modal__members .l-modal__members--profile-name {
    font-size: 1.6rem;
  }
}
.l-modal__members .l-modal__members--profile-greeting {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #00161D;
}
@media all and (max-width: 767px) {
  .l-modal__members .l-modal__members--profile-greeting {
    margin-top: 30px;
    padding-top: 30px;
  }
}
.l-modal__members .l-modal__members--profile-par {
  line-height: 1.8;
  font-size: 1.4rem;
}
@media all and (max-width: 767px) {
  .l-modal__members .l-modal__members--profile-par {
    font-size: 1.3rem;
  }
}
.l-modal__members .l-modal__members--profile-par:not(:first-of-type) {
  margin-top: 20px;
}

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

@keyframes overlayFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes mmSlideIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes mmSlideIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes overlayFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes overlayFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes mmSlideOut {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes mmSlideOut {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
/*  sidebar
================================================ */
.l-sidebar .l-sidebar__item + .l-sidebar__item {
  margin-top: 50px;
}
.l-sidebar .l-sidebar__title {
  font-size: 2rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  padding-bottom: 15px;
  border-bottom: 1px solid #00161D;
}
@media all and (max-width: 1279px) {
  .l-sidebar .l-sidebar__title {
    font-size: 1.8rem;
  }
}
.l-sidebar .l-sidebar__title + * {
  margin-top: 25px;
}
.l-sidebar .post-categories li:not(:first-of-type), .l-sidebar .l-sidebar__years li:not(:first-of-type) {
  margin-top: 15px;
}
.l-sidebar .post-categories a, .l-sidebar .l-sidebar__years a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #7C7C7C;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  position: relative;
  display: inline-block;
}
.l-sidebar .post-categories a::before, .l-sidebar .l-sidebar__years a::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #003445;
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  opacity: 0;
}
.l-sidebar .post-categories a:hover, .l-sidebar .post-categories a:active, .l-sidebar .post-categories a:focus, .l-sidebar .l-sidebar__years a:hover, .l-sidebar .l-sidebar__years a:active, .l-sidebar .l-sidebar__years a:focus {
  color: #003445;
}
.l-sidebar .post-categories a:hover::before, .l-sidebar .post-categories a:active::before, .l-sidebar .post-categories a:focus::before, .l-sidebar .l-sidebar__years a:hover::before, .l-sidebar .l-sidebar__years a:active::before, .l-sidebar .l-sidebar__years a:focus::before {
  width: 100%;
  left: 0;
  right: auto;
  opacity: 1;
}

/* .movie
================================================ */
.l-movie {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -5;
}
.l-movie::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: rgba(0, 22, 29, 0.5);
}

.l-movie__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: none;
}

/*  loading
================================================ */
.l-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
}
.l-loading.is-active {
  -webkit-animation: animeLoadingfadeOut 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: animeLoadingfadeOut 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.l-loading .l-loading__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #00161D;
}
.l-loading .l-loading__logo {
  max-width: 240px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  display: none;
}
.l-loading .l-loading__logo svg {
  width: 100%;
  height: auto;
}
.l-loading .l-loading__logo path {
  fill: #fff;
}
.l-loading .l-loading__logo rect {
  opacity: 0;
}
.l-loading .l-loading__progress {
  width: 100%;
  height: 1px;
  z-index: 4;
  opacity: 0.8;
  background-color: #003445;
  -webkit-animation: animeLoadingLine 1.8s cubic-bezier(0.33, 1, 0.68, 1) infinite;
          animation: animeLoadingLine 1.8s cubic-bezier(0.33, 1, 0.68, 1) infinite;
}

@-webkit-keyframes animeLoadingLine {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  49% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  99% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
}

@keyframes animeLoadingLine {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  49% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  99% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
}
@-webkit-keyframes animeLoadingfadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    visibility: hidden;
  }
}
@keyframes animeLoadingfadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    visibility: hidden;
  }
}
/* .breadcrumb
================================================ */
.c-breadcrumb {
  background-color: #fff;
}
.c-breadcrumb .c-breadcrumb__wrapper {
  padding: 20px 0;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
}
@media all and (max-width: 1879px) {
  .c-breadcrumb .c-breadcrumb__wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  .c-breadcrumb .c-breadcrumb__wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  .c-breadcrumb .c-breadcrumb__wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  .c-breadcrumb .c-breadcrumb__wrapper {
    max-width: 100%;
  }
}
.c-breadcrumb .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-breadcrumb .breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.3rem;
  margin-top: 10px;
}
.c-breadcrumb .breadcrumb-item:not(:last-of-type) {
  margin-right: 15px;
}
.c-breadcrumb .breadcrumb-item:not(:last-of-type)::after {
  content: ">";
  padding-left: 15px;
  color: #7C7C7C;
}
@media all and (max-width: 767px) {
  .c-breadcrumb .breadcrumb-item {
    font-size: 1.2rem;
  }
}
.c-breadcrumb .breadcrumb-item a {
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  text-decoration: none;
  color: #00161D;
}
.c-breadcrumb .breadcrumb-item a:hover, .c-breadcrumb .breadcrumb-item a:active, .c-breadcrumb .breadcrumb-item a:focus {
  color: #7C7C7C;
}
.c-breadcrumb .breadcrumb-item > span {
  color: #7C7C7C;
  line-height: 1.5;
}

/*  inner
================================================ */
/*  SP左右余白あり、PCコンテンツ幅
---------------------------------------- */
.c-inner01 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}
@media all and (min-width: 1470px) {
  .c-inner01 {
    width: 100%;
    max-width: 1470px;
    margin: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*  SP左右余白あり、PCはデバイス幅いっぱい
---------------------------------------- */
.c-inner02 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
@media all and (min-width: 1470px) {
  .c-inner02 {
    max-width: min(100%, 1920px);
    margin: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/*  SP左右余白「なし」、PCコンテンツ幅
---------------------------------------- */
.c-inner03 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
@media all and (min-width: 1470px) {
  .c-inner03 {
    max-width: min(100%, 1920px);
    margin: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/*  container
================================================ */
/*  SP左右余白あり、PCコンテンツ幅
---------------------------------------- */
.c-container01 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 1470px) {
  .c-container01 {
    width: 100%;
    max-width: 1470px;
    margin: auto;
  }
}
@media all and (max-width: 1279px) {
  .c-container01 {
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 767px) {
  .c-container01 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*  SP左右余白あり、PCはデバイス幅いっぱい
---------------------------------------- */
.c-container02 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 1470px) {
  .c-container02 {
    max-width: min(100%, 1920px);
    margin: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/*  SP左右余白「なし」、PCコンテンツ幅
---------------------------------------- */
.c-container03 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
@media all and (min-width: 1470px) {
  .c-container03 {
    max-width: min(100%, 1920px);
    margin: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/*  pagetop
================================================ */
.c-pagetop__link {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 10px;
  background: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}
@media all and (min-width: 768px) {
  .c-pagetop {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    margin: 0 30px 30px 0;
    -webkit-transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .c-pagetop.is-view {
    opacity: 1;
    visibility: visible;
  }
  .c-pagetop__link {
    width: 100%;
    height: 100%;
  }
}

/*  primary
================================================ */
.c-title__primary {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 1.5;
}
.c-title__primary + * {
  margin-top: 60px;
}
@media all and (max-width: 767px) {
  .c-title__primary + * {
    margin-top: 30px;
  }
}
.c-title__primary.-white {
  color: #fff;
}
.c-title__primary.-center {
  text-align: center;
}
.c-title__primary .c-title__primary--en {
  font-size: 2rem;
  padding-bottom: 30px;
}
@media all and (max-width: 767px) {
  .c-title__primary .c-title__primary--en {
    font-size: 1.3rem;
    padding-bottom: 16px;
  }
}
@media all and (max-width: 767px) {
  .c-title__primary {
    font-size: 2.4rem;
  }
}
.c-title__primary.-en {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
}

.c-title__secondary {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.5;
}
@media all and (max-width: 767px) {
  .c-title__secondary {
    font-size: 2rem;
  }
}
.c-title__secondary.-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-title__secondary.-horizontal .c-title__secondary--ja {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media all and (max-width: 767px) {
  .c-title__secondary.-horizontal .c-title__secondary--ja {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.c-title__secondary.-horizontal .c-title__secondary--en {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  font-size: 1.8rem;
  padding-left: 20px;
}
@media all and (max-width: 767px) {
  .c-title__secondary.-horizontal .c-title__secondary--en {
    font-size: 1.4rem;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-left: 0;
    margin-top: 15px;
  }
}
.c-title__secondary.-horizontal + * {
  margin-top: 60px;
}
@media all and (max-width: 767px) {
  .c-title__secondary.-horizontal + * {
    margin-top: 35px;
  }
}
.c-title__secondary.-en {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  font-size: 3.2rem;
}
@media all and (max-width: 767px) {
  .c-title__secondary.-en {
    font-size: 2rem;
  }
}

/*  hamburger
================================================ */
.c-btn__hamburger {
  width: 88px;
  position: fixed;
  z-index: 2002;
  top: 80px;
  right: 60px;
  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;
  background-color: transparent;
  mix-blend-mode: difference;
}
@media all and (max-width: 1279px) {
  .c-btn__hamburger {
    top: 40px;
    right: 30px;
  }
}
@media all and (max-width: 767px) {
  .c-btn__hamburger {
    top: 30px;
    right: 20px;
  }
}
.c-btn__hamburger.is-open .c-btn__hamburger-line {
  background-color: transparent;
}
.c-btn__hamburger.is-open .c-btn__hamburger-line::before {
  top: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.c-btn__hamburger.is-open .c-btn__hamburger-line::after {
  top: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.c-btn__hamburger.is-open .c-btn__hamburger--chara::before {
  content: "Close";
}
.c-btn__hamburger .c-btn__hamburger--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn__hamburger .c-btn__hamburger-line {
  width: 35px;
  height: 1px;
  display: block;
  position: relative;
  background-color: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-btn__hamburger .c-btn__hamburger-line::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -6px;
  left: 0;
  background-color: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-btn__hamburger .c-btn__hamburger-line::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 6px;
  left: 0;
  background-color: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-btn__hamburger .c-btn__hamburger--chara {
  font-size: 1.3rem;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-left: 6px;
  color: #fff;
  font-weight: 700;
}
.c-btn__hamburger .c-btn__hamburger--chara::before {
  content: "Menu";
}

/*  primary
================================================ */
.c-btn__primary {
  margin-top: 60px;
  text-align: right;
}
@media all and (max-width: 767px) {
  .c-btn__primary {
    margin-top: 30px;
  }
}
.c-btn__primary .c-btn__primary--wrapper {
  display: inline-block;
  position: relative;
  padding-left: 120px;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  .c-btn__primary .c-btn__primary--wrapper {
    padding-left: 80px;
  }
}
.c-btn__primary .c-btn__primary--wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 120px;
  height: 1px;
  background-color: #00161D;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  .c-btn__primary .c-btn__primary--wrapper::before {
    width: 80px;
  }
}
.c-btn__primary .c-btn__primary--wrapper:hover, .c-btn__primary .c-btn__primary--wrapper:active, .c-btn__primary .c-btn__primary--wrapper:focus {
  color: #7C7C7C;
}
.c-btn__primary .c-btn__primary--wrapper:hover::before, .c-btn__primary .c-btn__primary--wrapper:active::before, .c-btn__primary .c-btn__primary--wrapper:focus::before {
  width: 0;
  left: auto;
  right: 102px;
  opacity: 0;
  background-color: #7C7C7C;
}
@media all and (max-width: 767px) {
  .c-btn__primary .c-btn__primary--wrapper:hover::before, .c-btn__primary .c-btn__primary--wrapper:active::before, .c-btn__primary .c-btn__primary--wrapper:focus::before {
    right: 93px;
  }
}
.c-btn__primary .c-btn__primary--text {
  font-size: 1.8rem;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
  display: inline-block;
}
@media all and (max-width: 767px) {
  .c-btn__primary .c-btn__primary--text {
    font-size: 1.6rem;
  }
}

/*  news
================================================ */
.c-list__news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  .c-list__news {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.c-list__news > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .c-list__news > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.c-list__news .c-list__news--col {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.c-list__news .c-list__news--col:nth-of-type(n+3) {
  margin-top: 50px;
}
@media all and (max-width: 1279px) {
  .c-list__news .c-list__news--col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .c-list__news .c-list__news--col:not(:first-of-type) {
    margin-top: 30px;
  }
}
@media all and (max-width: 767px) {
  .c-list__news .c-list__news--col {
    margin-top: 20px;
  }
}
.c-list__news .c-list__news--item {
  position: relative;
  padding-top: 30px;
  border-top: 1px solid #EDEDED;
}
.c-list__news .c-list__news--item:hover .c-list__news--item-time, .c-list__news .c-list__news--item:hover .c-list__news--item-heading, .c-list__news .c-list__news--item:active .c-list__news--item-time, .c-list__news .c-list__news--item:active .c-list__news--item-heading, .c-list__news .c-list__news--item:focus .c-list__news--item-time, .c-list__news .c-list__news--item:focus .c-list__news--item-heading {
  color: #7C7C7C;
}
.c-list__news .c-list__news--item:hover .c-list__news--item-wrapper::before, .c-list__news .c-list__news--item:active .c-list__news--item-wrapper::before, .c-list__news .c-list__news--item:focus .c-list__news--item-wrapper::before {
  width: 100%;
  left: 0;
  right: auto;
  opacity: 1;
}
.c-list__news .c-list__news--item-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.c-list__news .c-list__news--item-wrapper::before {
  content: "";
  width: 0;
  background-color: #003445;
  height: 1px;
  position: absolute;
  top: 0;
  z-index: 3;
  right: 0;
  left: auto;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  opacity: 0;
}
.c-list__news .c-list__news--item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  .c-list__news .c-list__news--item-inner {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.c-list__news .c-list__news--item-inner > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .c-list__news .c-list__news--item-inner > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.c-list__news .c-list__news--item-thumbnail {
  max-width: 176px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 176px;
          flex: 0 0 176px;
}
@media all and (max-width: 767px) {
  .c-list__news .c-list__news--item-thumbnail {
    max-width: 119px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 119px;
            flex: 0 0 119px;
  }
}
.c-list__news .c-list__news--item-thumbnail .-wrapper {
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.c-list__news .c-list__news--item-thumbnail .-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-list__news .c-list__news--item-contents {
  max-width: calc(100% - 176px);
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(100% - 176px);
      flex-basis: calc(100% - 176px);
}
@media all and (max-width: 767px) {
  .c-list__news .c-list__news--item-contents {
    max-width: calc(100% - 119px);
    -ms-flex-preferred-size: calc(100% - 119px);
        flex-basis: calc(100% - 119px);
  }
}
.c-list__news .c-list__news--item-time {
  font-size: 1.2rem;
  line-height: 1.5;
  display: block;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  .c-list__news .c-list__news--item-time {
    font-size: 1.1rem;
  }
}
.c-list__news .c-list__news--item-cat {
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.3rem;
  position: relative;
  margin-top: 10px;
  z-index: 2;
}
@media all and (max-width: 767px) {
  .c-list__news .c-list__news--item-cat {
    font-size: 1.2rem;
  }
}
.c-list__news .c-list__news--item-cat a {
  display: inline-block;
  color: #003445;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  text-decoration: none;
}
.c-list__news .c-list__news--item-cat a + a {
  margin-left: 10px;
}
.c-list__news .c-list__news--item-cat a:hover, .c-list__news .c-list__news--item-cat a:active, .c-list__news .c-list__news--item-cat a:focus {
  color: #4C5765;
}
.c-list__news .c-list__news--item-heading {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 12px;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  .c-list__news .c-list__news--item-heading {
    font-size: 1.5rem;
  }
}

/*  pagenavi
================================================ */
.wp-pagenavi {
  width: 100%;
  text-align: center;
  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;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
}
.wp-pagenavi .pages {
  font-weight: 700;
  max-width: 65px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65px;
          flex: 0 0 65px;
  border-radius: 0;
  color: #00161D;
  margin-right: 10px;
  margin-left: 0;
}
@media all and (max-width: 767px) {
  .wp-pagenavi .pages {
    max-width: 60px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
    font-size: 1.4rem;
  }
}
.wp-pagenavi a, .wp-pagenavi span {
  max-width: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  height: 50px;
  color: #7C7C7C;
  min-width: 50px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2px 5px;
  font-weight: 700;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 1279px) {
  .wp-pagenavi a, .wp-pagenavi span {
    max-width: 45px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45px;
            flex: 0 0 45px;
    min-width: 45px;
    height: 45px;
  }
}
@media all and (max-width: 767px) {
  .wp-pagenavi a, .wp-pagenavi span {
    max-width: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
    min-width: 40px;
    font-size: 1.4rem;
    height: 40px;
  }
}
.wp-pagenavi span.current {
  color: #00161D;
  position: relative;
}
.wp-pagenavi span.current::before {
  content: "";
  width: 25px;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #00161D;
  position: absolute;
}
@media all and (max-width: 1279px) {
  .wp-pagenavi span.current::before {
    width: 20px;
  }
}
@media all and (max-width: 767px) {
  .wp-pagenavi span.current::before {
    width: 15px;
  }
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  background-color: #fff;
  border-color: #00161D;
  font-size: 2rem;
  color: #00161D;
  line-height: 2rem;
}
.wp-pagenavi a.previouspostslink:hover, .wp-pagenavi a.previouspostslink:active, .wp-pagenavi a.previouspostslink:focus, .wp-pagenavi a.nextpostslink:hover, .wp-pagenavi a.nextpostslink:active, .wp-pagenavi a.nextpostslink:focus {
  color: #00161D;
  border-color: #00161D;
}
.wp-pagenavi a:hover, .wp-pagenavi a:active, .wp-pagenavi a:focus {
  background-color: #fff;
  color: #00161D;
  border-color: #00161D;
}

/* others
================================================ */
.c-nav__ohters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  .c-nav__ohters {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.c-nav__ohters > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .c-nav__ohters > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.c-nav__ohters .c-nav__others--col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-nav__ohters .c-nav__others--col:not(:first-of-type) {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media all and (max-width: 1279px) {
  .c-nav__ohters .c-nav__others--col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .c-nav__ohters .c-nav__others--col:not(:first-of-type) {
    margin-top: 40px;
  }
}

/* sns
================================================ */
.c-nav__sns .c-nav__sns--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  .c-nav__sns .c-nav__sns--list {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.c-nav__sns .c-nav__sns--list > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .c-nav__sns .c-nav__sns--list > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
.c-nav__sns .c-nav__sns--list-col {
  max-width: 90px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
}
@media all and (max-width: 767px) {
  .c-nav__sns .c-nav__sns--list-col {
    max-width: 65px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65px;
            flex: 0 0 65px;
  }
}
.c-nav__sns .c-nav__sns--item {
  width: 100%;
  height: 60px;
}
@media all and (max-width: 767px) {
  .c-nav__sns .c-nav__sns--item {
    height: 50px;
  }
}
.c-nav__sns .c-nav__sns--item-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  border: 1px solid #FFFFFF;
}
.c-nav__sns .c-nav__sns--item-wrapper.-facebook:hover, .c-nav__sns .c-nav__sns--item-wrapper.-facebook:active, .c-nav__sns .c-nav__sns--item-wrapper.-facebook:focus {
  background-color: #1877f2;
  border-color: #1877f2;
}
.c-nav__sns .c-nav__sns--item-wrapper.-facebook .c-nav__sns--item-icon {
  max-width: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
}
@media all and (max-width: 767px) {
  .c-nav__sns .c-nav__sns--item-wrapper.-facebook .c-nav__sns--item-icon {
    max-width: 25px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25px;
            flex: 0 0 25px;
  }
}
.c-nav__sns .c-nav__sns--item-wrapper.-instagram:hover, .c-nav__sns .c-nav__sns--item-wrapper.-instagram:active, .c-nav__sns .c-nav__sns--item-wrapper.-instagram:focus {
  background-color: #CF2E92;
  border-color: #CF2E92;
}
.c-nav__sns .c-nav__sns--item-wrapper.-instagram .c-nav__sns--item-icon {
  max-width: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
}
@media all and (max-width: 767px) {
  .c-nav__sns .c-nav__sns--item-wrapper.-instagram .c-nav__sns--item-icon {
    max-width: 25px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25px;
            flex: 0 0 25px;
  }
}
.c-nav__sns .c-nav__sns--item-wrapper.-tiktok:hover, .c-nav__sns .c-nav__sns--item-wrapper.-tiktok:active, .c-nav__sns .c-nav__sns--item-wrapper.-tiktok:focus {
  background-color: #000000;
  border-color: #000000;
}
.c-nav__sns .c-nav__sns--item-wrapper.-tiktok .c-nav__sns--item-icon {
  max-width: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
}
@media all and (max-width: 767px) {
  .c-nav__sns .c-nav__sns--item-wrapper.-tiktok .c-nav__sns--item-icon {
    max-width: 25px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25px;
            flex: 0 0 25px;
  }
}
.c-nav__sns .c-nav__sns--item-wrapper.-youtube:hover, .c-nav__sns .c-nav__sns--item-wrapper.-youtube:active, .c-nav__sns .c-nav__sns--item-wrapper.-youtube:focus {
  background-color: #DA1725;
  border-color: #DA1725;
}
.c-nav__sns .c-nav__sns--item-wrapper.-youtube .c-nav__sns--item-icon {
  max-width: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
}
@media all and (max-width: 767px) {
  .c-nav__sns .c-nav__sns--item-wrapper.-youtube .c-nav__sns--item-icon {
    max-width: 25px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25px;
            flex: 0 0 25px;
  }
}

/* banners
================================================ */
.c-nav__banners {
  margin-top: 40px;
}
.c-nav__banners .c-nav__banners--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-left: -10px;
  margin-right: -10px;
}
@media all and (max-width: 767px) {
  .c-nav__banners .c-nav__banners--list {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
.c-nav__banners .c-nav__banners--list > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  .c-nav__banners .c-nav__banners--list > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
@media all and (max-width: 767px) {
  .c-nav__banners .c-nav__banners--list {
    margin-left: -5px;
    margin-right: -5px;
  }
}
.c-nav__banners .c-nav__banners--list-col {
  padding-left: 10px;
  padding-right: 10px;
  max-width: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}
@media all and (max-width: 767px) {
  .c-nav__banners .c-nav__banners--list-col {
    max-width: 140px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.c-nav__banners .c-nav__banners--item {
  position: relative;
}
.c-nav__banners .c-nav__banners--item-wrapper {
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-nav__banners .c-nav__banners--item-wrapper:hover, .c-nav__banners .c-nav__banners--item-wrapper:active, .c-nav__banners .c-nav__banners--item-wrapper:focus {
  opacity: 0.6;
}

/* links
================================================ */
.c-nav__links .c-nav__links--list-col:not(:first-of-type) {
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .c-nav__links .c-nav__links--list-col:not(:first-of-type) {
    margin-top: 15px;
  }
}
.c-nav__links .c-nav__links--item {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  padding-right: 16px;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-nav__links .c-nav__links--item[target=_blank]::after {
  content: "";
  width: 10px;
  height: 9px;
  background-image: url("../img/common/icon-link.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-nav__links .c-nav__links--item:hover, .c-nav__links .c-nav__links--item:active, .c-nav__links .c-nav__links--item:focus {
  opacity: 0.8;
}
@media all and (max-width: 767px) {
  .c-nav__links .c-nav__links--item {
    font-size: 1.2rem;
  }
}

/*  mw_wp_form
================================================ */
.mw_wp_form .mwform-radio-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mw_wp_form .mwform-radio-field input:checked + .mwform-radio-field-text::after {
  opacity: 1;
}
.mw_wp_form .mwform-radio-field .mwform-radio-field-text {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.mw_wp_form .mwform-radio-field .mwform-radio-field-text::before {
  top: 0;
  left: 0;
  max-width: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 2px;
  background-color: #fff;
  border: 1px solid #D6D6D6;
  content: "";
  pointer-events: none;
  border-radius: 50%;
}
.mw_wp_form .mwform-radio-field .mwform-radio-field-text::after {
  display: block;
  position: absolute;
  border-radius: 50%;
  top: 5px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #003445;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  content: "";
  opacity: 0;
}
.mw_wp_form .mwform-radio-field .horizontal-item + .horizontal-item {
  margin-left: 0;
}
.mw_wp_form .mwform-radio-field.vertical-item + .vertical-item {
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .mw_wp_form .mwform-radio-field.vertical-item + .vertical-item {
    margin-top: 15px;
  }
}
.mw_wp_form .mwform-checkbox-field {
  padding-left: 28px;
  z-index: 1;
  position: relative;
  min-height: 1.5rem;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
.mw_wp_form .mwform-checkbox-field.vertical-item {
  display: block;
}
.mw_wp_form .mwform-checkbox-field.vertical-item + .vertical-item {
  margin-top: 15px;
}
.mw_wp_form .mwform-checkbox-field.horizontal-item {
  margin-top: 10px;
}
.mw_wp_form .mwform-checkbox-field label {
  font-weight: normal;
  margin-bottom: 0;
}
.mw_wp_form .mwform-checkbox-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mw_wp_form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::before {
  background-color: #003445;
}
.mw_wp_form .mwform-checkbox-field .mwform-checkbox-field-text {
  font-size: 1.5rem;
  position: relative;
}
.mw_wp_form .mwform-checkbox-field .mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -28px;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  background-color: #DBDBDB;
}
.mw_wp_form .mwform-checkbox-field .mwform-checkbox-field-text::after {
  content: "";
  position: absolute;
  top: 2px;
  left: -28px;
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  background-position: center center;
  background-image: url("../img/common/icon-check.svg");
}
.mw_wp_form.mw_wp_form_confirm .c-form__foreign {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm .c-form__policy {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm .c-form__datepicker::after {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm .c-form__group--select::after {
  display: none;
}

/*  form
================================================ */
.c-form .c-form__heading {
  font-size: 2rem;
  border-left: 5px solid #00161D;
  padding-top: 2px;
  padding-left: 15px;
  padding-bottom: 2px;
  position: relative;
  margin-bottom: 15px;
}
@media all and (max-width: 767px) {
  .c-form .c-form__heading {
    margin-bottom: 10px;
  }
}
.c-form .c-form__heading::after {
  width: 100%;
  height: 15px;
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  border-bottom: 1px solid #D6D6D6;
}
@media all and (max-width: 767px) {
  .c-form .c-form__heading::after {
    bottom: -10px;
  }
}
.c-form .c-form__heading + * {
  margin-top: 75px;
  /* 60px + 15px */
}
@media all and (max-width: 767px) {
  .c-form .c-form__heading + * {
    margin-top: 50px;
    /* 40px + 10px */
  }
}
.c-form .c-form__heading:not(:first-of-type) {
  margin-top: 100px;
}
@media all and (max-width: 767px) {
  .c-form .c-form__heading:not(:first-of-type) {
    margin-top: 50px;
  }
}
.c-form .c-form__group:not(:first-of-type) {
  margin-top: 50px;
}
.c-form .c-form__label {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
}
.c-form .c-form__label.is-require::after {
  content: "*";
  color: #FF385C;
}
.c-form .c-form__header--note {
  font-size: 1.5rem;
  color: #7C7C7C;
  margin-top: 5px;
}
.c-form .c-form__group--body {
  margin-top: 20px;
}
.c-form .c-form__group--choices-item:not(:first-of-type) {
  margin-top: 18px;
}
.c-form .c-form__group--choices-title {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
}
.c-form .c-form__group--choices-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 12px;
}
.c-form .c-form__group--choices-col {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-left: 5px;
  padding-right: 5px;
}
@media all and (max-width: 767px) {
  .c-form .c-form__group--choices-col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .c-form .c-form__group--choices-col:not(:first-of-type) {
    margin-top: 12px;
  }
}
.c-form .c-form__group--checkbox.-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -10px;
}
.c-form .c-form__group--checkbox.-horizontal .mwform-checkbox-field {
  max-width: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}
.c-form .c-form__group--radio.-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.c-form .c-form__group--radio.-horizontal .mwform-radio-field {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0;
}
.c-form .c-form__group--radio.-horizontal .mwform-radio-field:not(:first-of-type) {
  margin-left: 20px;
}
@media all and (max-width: 1279px) {
  .c-form .c-form__group--radio.-horizontal .mwform-radio-field {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .c-form .c-form__group--radio.-horizontal .mwform-radio-field:not(:first-of-type) {
    margin-top: 15px;
    margin-left: 0;
  }
}
.c-form .c-form__group--radio.-vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-form .c-form__group--radio.-vertical .mwform-radio-field {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.c-form .c-form__group--radio.-vertical .mwform-radio-field:not(:first-of-type) {
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .c-form .c-form__group--radio.-vertical .mwform-radio-field:not(:first-of-type) {
    margin-top: 15px;
  }
}
.c-form .c-form__group--select {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.c-form .c-form__group--select::after {
  display: block;
  position: absolute;
  top: 24px;
  right: 12px;
  width: 24px;
  height: 13.5px;
  background: 50%/50% 50% no-repeat;
  content: "";
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  background-size: contain;
  background-image: url("../img/common/arrow-down-select.svg");
}
@media all and (max-width: 767px) {
  .c-form .c-form__group--select::after {
    width: 18px;
    height: 10.125px;
    top: 26px;
  }
}
.c-form .c-fomr__group--columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.c-form .c-fomr__group--columns.-columns3 .c-fomr__group--columns-col {
  max-width: 240px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
}
@media all and (max-width: 1279px) {
  .c-form .c-fomr__group--columns.-columns3 .c-fomr__group--columns-col {
    max-width: 33.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
  }
}
@media all and (max-width: 767px) {
  .c-form .c-fomr__group--columns.-columns3 .c-fomr__group--columns-col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .c-form .c-fomr__group--columns.-columns3 .c-fomr__group--columns-col:not(:first-of-type) {
    margin-top: 10px;
  }
}
.c-form .c-fomr__group--columns.-columns3 .c-fomr__group--columns-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form .c-fomr__group--columns.-columns3 .c-form__group--select {
  max-width: 180px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
}
@media all and (max-width: 1279px) {
  .c-form .c-fomr__group--columns.-columns3 .c-form__group--select {
    max-width: 140px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
  }
}
.c-form .c-fomr__group--columns.-columns3 .c-form__select {
  max-width: 180px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
}
@media all and (max-width: 1279px) {
  .c-form .c-fomr__group--columns.-columns3 .c-form__select {
    max-width: 140px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
  }
}
.c-form .c-fomr__group--columns.-vertical .c-fomr__group--columns-col {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.c-form .c-fomr__group--columns.-vertical .c-fomr__group--columns-col:not(:first-of-type) {
  margin-top: 20px;
}
.c-form .c-fomr__group--columns-col {
  padding-left: 10px;
  padding-right: 10px;
}
.c-form .c-form__group--columns-heading {
  font-size: 1.5rem;
  padding-bottom: 10px;
}
.c-form .c-form__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 360px;
  padding: 18px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  background-color: #F7F7F7;
  color: #00161D;
  vertical-align: middle;
  border: 1px solid #00161D;
  position: relative;
}
@media all and (max-width: 767px) {
  .c-form .c-form__select {
    max-width: 100%;
  }
}
.c-form .c-form__select--note {
  display: inline-block;
  padding-left: 10px;
}
.c-form .c-form__input {
  display: block;
  width: 100%;
  max-width: 520px;
  padding: 18px 18px 18px 0;
  background-clip: padding-box;
  background-color: #F7F7F7;
  color: #00161D;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: 1px solid #00161D;
}
.c-form .c-form__input.-sm {
  max-width: 360px;
}
.c-form .c-form__input.-lg {
  max-width: 100%;
}
.c-form .c-form__textarea {
  display: block;
  width: 100%;
  height: calc(1.5em + 1rem + 2px);
  padding: 18px;
  background-color: #F7F7F7;
  color: #00161D;
  font-size: 1.6rem;
  height: 200px;
  font-weight: 400;
  line-height: 1.5;
  background-clip: padding-box;
  border: 1px solid #00161D;
}
.c-form .c-form__datepicker {
  position: relative;
  max-width: 520px;
}
.c-form .c-form__datepicker::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 12px;
  top: 20px;
  z-index: 3;
  background-image: url("../img/common/icon-date.png");
  background-size: cover;
  background-position: center center;
}
.c-form .c-form__datepicker .c-form__input {
  padding: 18px 40px 18px 18px;
  border: 1px solid #00161D;
}
.c-form .c-form__policy {
  margin-top: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 1279px) {
  .c-form .c-form__policy {
    margin-top: 40px;
  }
}
.c-form .c-form__policy .c-form__policy--header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-form .c-form__policy .c-form__policy--heading {
  font-size: 1.6rem;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  font-weight: 400;
}
.c-form .c-form__policy .c-form__policy--note {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  text-align: right;
  font-size: 1.4rem;
}
.c-form .c-form__policy .c-form__policy--check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}
.c-form .c-form__policy .c-form__policy--check-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.c-form .c-form__policy .c-form__policy--check-input:checked + .c-form__policy--check-label::after {
  opacity: 1;
}
.c-form .c-form__policy .c-form__policy--check-label {
  font-size: 1.4rem;
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
  cursor: pointer;
  display: inline-block;
  padding-top: 2px;
  padding-left: 30px;
}
@media all and (max-width: 767px) {
  .c-form .c-form__policy .c-form__policy--check-label {
    padding-top: 0;
  }
}
.c-form .c-form__policy .c-form__policy--check-label::before {
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #00161D;
  background-color: #fff;
  content: "";
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  pointer-events: none;
}
.c-form .c-form__policy .c-form__policy--check-label::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #003445;
  content: "";
  opacity: 0;
}
.c-form .c-form__footer {
  margin-top: 70px;
  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;
}
@media all and (max-width: 1279px) {
  .c-form .c-form__footer {
    margin-top: 40px;
  }
}
@media all and (max-width: 767px) {
  .c-form .c-form__footer {
    display: block;
  }
}
.c-form .c-form__footer--submitconfirm {
  max-width: 350px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
  position: relative;
}
@media all and (max-width: 1879px) {
  .c-form .c-form__footer--submitconfirm {
    max-width: 300px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
  }
}
@media all and (max-width: 1599px) {
  .c-form .c-form__footer--submitconfirm {
    max-width: 280px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 280px;
            flex: 0 0 280px;
  }
}
@media all and (max-width: 1439px) {
  .c-form .c-form__footer--submitconfirm {
    max-width: 350px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 350px;
            flex: 0 0 350px;
  }
}
@media all and (max-width: 767px) {
  .c-form .c-form__footer--submitconfirm {
    margin-left: auto;
    margin-right: auto;
  }
}
.c-form .c-form__footer--submitconfirm + .c-form__btn {
  margin-left: 20px;
}
@media all and (max-width: 1279px) {
  .c-form .c-form__footer--submitconfirm + .c-form__btn {
    margin-left: 0;
  }
}
@media all and (max-width: 767px) {
  .c-form .c-form__footer--submitconfirm + .c-form__btn {
    margin-left: auto;
    margin-top: 20px;
  }
}
.c-form .c-form__btn {
  max-width: 350px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
  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;
  height: 70px;
  width: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  background: transparent;
  color: #fff;
  background-color: #00161D;
  font-size: 1.6rem;
  z-index: 3;
  display: block;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-form .c-form__btn[value=back] {
  border: 1px solid #00161D;
  background-color: #fff;
  color: #00161D;
  margin-left: 20px;
  margin-top: 0;
}
@media all and (max-width: 1599px) {
  .c-form .c-form__btn[value=back] {
    margin-left: 10px;
  }
}
@media all and (max-width: 1439px) {
  .c-form .c-form__btn[value=back] {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media all and (max-width: 767px) {
  .c-form .c-form__btn[value=back] {
    margin-left: auto;
  }
}
.c-form .c-form__btn:disabled {
  opacity: 0.5;
  cursor: auto;
  pointer-events: none;
}
.c-form .c-form__btn:hover, .c-form .c-form__btn:active, .c-form .c-form__btn:focus {
  opacity: 0.8;
}
@media all and (max-width: 1879px) {
  .c-form .c-form__btn {
    max-width: 300px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
  }
}
@media all and (max-width: 1599px) {
  .c-form .c-form__btn {
    max-width: 280px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 280px;
            flex: 0 0 280px;
  }
}
@media all and (max-width: 1439px) {
  .c-form .c-form__btn {
    max-width: 350px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 350px;
            flex: 0 0 350px;
  }
}
@media all and (max-width: 767px) {
  .c-form .c-form__btn {
    height: 56px;
    max-width: 300px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-form .c-form__foreign {
  margin-bottom: 50px;
}
.c-form .c-form__foreign--btn {
  width: 100%;
  max-width: 100%;
}
.c-form .c-form__foreign--btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 64px;
  background-color: #fff;
  border: 1px solid #EDEDED;
  color: #00161D;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-form .c-form__foreign--btn-wrapper:hover, .c-form .c-form__foreign--btn-wrapper:active, .c-form .c-form__foreign--btn-wrapper:focus {
  background-color: #F7F7F7;
  border-color: #00161D;
}
.c-form .c-form__foreign--btn-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
}
@media all and (max-width: 767px) {
  .c-form .c-form__foreign--btn-icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
  }
}
.c-form .c-form__foreign--btn-text {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-left: 12px;
  text-align: center;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  font-size: 1.8rem;
}
@media all and (max-width: 767px) {
  .c-form .c-form__foreign--btn-text {
    font-size: 1.6rem;
    padding-left: 8px;
  }
}

/*  booking
================================================ */
.l-drawer__booking--list-col.-full{
  width: 100%;
  max-width: none;
  flex-basis: 100%;
}
.c-card__booking.-bg .c-card__booking--wrapper{
  background: transparent;
}
.c-card__booking {
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 164px;
  border: 1px solid #EDEDED;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 1439px) {
  .c-card__booking {
    height: 120px;
  }
}
@media all and (max-width: 767px) {
  .c-card__booking {
    height: 64px;
  }
}
.c-card__booking:hover, .c-card__booking:active, .c-card__booking:focus {
  background-color: #F7F7F7;
}
.c-card__booking.-sm {
  height: 40px;
}
.c-card__booking.-sm.-sow {
  /*height: 60px;*/
  height: 40px;
}
.c-card__booking.-sm.-sow .c-card__booking--icon {
  max-width: 32px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  margin: 0;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sm.-sow .c-card__booking--icon {
    max-width: 28px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28px;
            flex: 0 0 28px;
  }
}
@media all and (max-width: 1279px) {
  .c-card__booking.-sm.-sow .c-card__booking--icon {
    max-width: 60px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
  }
}
.c-card__booking.-sm.-sow .c-card__booking--icon img {
  width: 100%;
}
.c-card__booking.-sm.-sow .c-card__booking--name {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-left: 0;
  font-size: 1.2rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #00161D;
  letter-spacing: 0.01em;
  padding-left: 8px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sm.-sow .c-card__booking--name {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 1279px) {
  .c-card__booking.-sm.-sow .c-card__booking--name {
    font-size: 1.8rem;
  }
}
.c-card__booking.-sm.-service {
  height: 60px;
  text-align: center;
}
.c-card__booking.-sm.-service .c-card__booking--name {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-left: 0;
  font-size: 1.2rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #00161D;
  letter-spacing: 0.01em;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sm.-service .c-card__booking--name {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 1279px) {
  .c-card__booking.-sm.-service .c-card__booking--name {
    font-size: 1.8rem;
  }
}
.c-card__booking.-sm.-mail .c-card__booking--icon {
  max-width: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  margin: 0;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sm.-mail .c-card__booking--icon {
    max-width: 14px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
            flex: 0 0 14px;
  }
}
@media all and (max-width: 1279px) {
  .c-card__booking.-sm.-mail .c-card__booking--icon {
    max-width: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
  }
}
.c-card__booking.-sm.-mail .c-card__booking--icon img {
  width: 100%;
}
.c-card__booking.-sm.-mail .c-card__booking--name {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-left: 4px;
  font-size: 1.2rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #00161D;
  letter-spacing: 0.01em;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sm.-mail .c-card__booking--name {
    font-size: 1.1rem;
    padding-left: 2px;
  }
}
@media all and (max-width: 1279px) {
  .c-card__booking.-sm.-mail .c-card__booking--name {
    font-size: 1.8rem;
    padding-left: 5px;
  }
}
.c-card__booking.-sm.-airbnb .c-card__booking--logo {
  max-width: 65px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65px;
          flex: 0 0 65px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sm.-airbnb .c-card__booking--logo {
    max-width: 60px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
  }
}
.c-card__booking.-sm.-activityjapan .c-card__booking--logo {
  max-width: 88px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 88px;
          flex: 0 0 88px;
}
.c-card__booking.-sm.-asoview .c-card__booking--logo {
  max-width: 68px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 68px;
          flex: 0 0 68px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sm.-asoview .c-card__booking--logo {
    max-width: 64px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64px;
            flex: 0 0 64px;
  }
}
.c-card__booking.-sm.-sow .c-card__booking--logo {
  max-width: 37px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 37px;
          flex: 0 0 37px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sm.-sow .c-card__booking--logo {
    max-width: 52px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 52px;
            flex: 0 0 52px;
  }
}
.c-card__booking.-sm.-jalan .c-card__booking--logo {
  max-width: 56px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56px;
          flex: 0 0 56px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sm.-jalan .c-card__booking--logo {
    max-width: 52px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 52px;
            flex: 0 0 52px;
  }
}
.c-card__booking.-sm.-bushido .c-card__booking--logo {
  max-width: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sm.-bushido .c-card__booking--logo {
    max-width: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
  }
}
.c-card__booking.-sm.-ana .c-card__booking--logo {
  max-width: 80px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}
/*.c-card__booking.-sow {
  height: 180px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sow {
    height: 164px;
  }
}
@media all and (max-width: 767px) {
  .c-card__booking.-sow {
    height: 140px;
  }
}*/
/*.c-card__booking.-sow .c-card__booking--logo-text {
  text-align: center;
  font-size: 1.8rem;
  text-align: center;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  padding: 0 20px;
  line-height: 1.3;
  color: #00161D;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sow .c-card__booking--logo-text {
    font-size: 1.6rem;
  }
}
.c-card__booking.-sow .c-card__booking--logo-text span {
  font-size: 1.5rem;
  display: block;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sow .c-card__booking--logo-text span {
    font-size: 1.4rem;
  }
}
.c-card__booking.-sow .c-card__booking--logo-img {
  max-width: 140px;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sow .c-card__booking--logo-img {
    max-width: 120px;
  }
}
@media all and (max-width: 767px) {
  .c-card__booking.-sow .c-card__booking--logo-img {
    max-width: 104px;
    margin-top: 8px;
  }
}*/
.c-card__booking .c-card__booking--wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.c-card__booking .c-card__booking--inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-card__booking .c-card__booking--contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-card__booking .c-card__booking--icon {
  max-width: 56px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56px;
          flex: 0 0 56px;
}
@media all and (max-width: 1439px) {
  .c-card__booking .c-card__booking--icon {
    max-width: 48px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48px;
            flex: 0 0 48px;
  }
}
@media all and (max-width: 767px) {
  .c-card__booking .c-card__booking--icon {
    max-width: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
  }
}
.c-card__booking .c-card__booking--icon img {
  width: 100%;
}
.c-card__booking .c-card__booking--name {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-left: 16px;
  font-size: 2.4rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #00161D;
}
@media all and (max-width: 1439px) {
  .c-card__booking .c-card__booking--name {
    font-size: 2rem;
  }
}
@media all and (max-width: 767px) {
  .c-card__booking .c-card__booking--name {
    padding-left: 8px;
    font-size: 1.8rem;
  }
}
.c-card__booking .c-card__booking--logo {
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-card__booking .c-card__booking--logo img {
  width: 100%;
}
.c-card__booking.-airbnb .c-card__booking--logo {
  max-width: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-airbnb .c-card__booking--logo {
    max-width: 160px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
  }
}
@media all and (max-width: 767px) {
  .c-card__booking.-airbnb .c-card__booking--logo {
    max-width: 130px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 130px;
            flex: 0 0 130px;
  }
}
.c-card__booking.-activityjapan .c-card__booking--logo {
  max-width: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-activityjapan .c-card__booking--logo {
    max-width: 150px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }
}
@media all and (max-width: 767px) {
  .c-card__booking.-activityjapan .c-card__booking--logo {
    max-width: 180px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
.c-card__booking.-asoview .c-card__booking--logo {
  max-width: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-asoview .c-card__booking--logo {
    max-width: 180px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
@media all and (max-width: 767px) {
  .c-card__booking.-asoview .c-card__booking--logo {
    max-width: 140px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
  }
}
.c-card__booking.-jalan .c-card__booking--logo {
  max-width: 180px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-jalan .c-card__booking--logo {
    max-width: 160px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
  }
}
@media all and (max-width: 767px) {
  .c-card__booking.-jalan .c-card__booking--logo {
    max-width: 120px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
  }
}
.c-card__booking.-sow .c-card__booking--logo {
  max-width: 81px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 81px;
          flex: 0 0 81px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-sow .c-card__booking--logo {
    max-width: 81px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 81px;
            flex: 0 0 81px;
  }
}
@media all and (max-width: 767px) {
  .c-card__booking.-sow .c-card__booking--logo {
    max-width: 52px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 52px;
            flex: 0 0 52px;
  }
}
.c-card__booking.-bushido .c-card__booking--logo {
  max-width: 160px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-bushido .c-card__booking--logo {
    max-width: 120px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
  }
}
@media all and (max-width: 767px) {
  .c-card__booking.-bushido .c-card__booking--logo {
    max-width: 80px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
  }
}
.c-card__booking.-ana .c-card__booking--logo {
  max-width: 260px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 260px;
          flex: 0 0 260px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-ana .c-card__booking--logo {
    max-width: 220px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
            flex: 0 0 220px;
  }
}
@media all and (max-width: 767px) {
  .c-card__booking.-ana .c-card__booking--logo {
    max-width: 180px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
.c-card__booking.-rakuten .c-card__booking--logo {
  max-width: 220px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
}
@media all and (max-width: 1439px) {
  .c-card__booking.-rakuten .c-card__booking--logo {
    max-width: 180px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
@media all and (max-width: 767px) {
  .c-card__booking.-rakuten .c-card__booking--logo {
    max-width: 140px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
  }
}

/*  media
================================================ */
.c-card__media {
  position: relative;
  width: 100%;
}
.c-card__media:hover .c-card__media--time, .c-card__media:hover .c-card__media--title, .c-card__media:active .c-card__media--time, .c-card__media:active .c-card__media--title, .c-card__media:focus .c-card__media--time, .c-card__media:focus .c-card__media--title {
  color: #7C7C7C;
}
.c-card__media .c-card__media--wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.c-card__media .c-card__media--inner {
  width: 100%;
  height: 100%;
}
.c-card__media .c-card__media--thumbnail {
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.c-card__media .c-card__media--thumbnail-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-card__media .c-card__media--meta {
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  .c-card__media .c-card__media--meta {
    margin-top: 20px;
  }
}
.c-card__media .c-card__media--time {
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  font-size: 1.4rem;
  line-height: 1.5;
  display: block;
}
@media all and (max-width: 767px) {
  .c-card__media .c-card__media--time {
    font-size: 1.3rem;
  }
}
.c-card__media .c-card__media--cat {
  margin-top: 10px;
}
.c-card__media .c-card__media--cat a {
  font-weight: 700;
  color: #fff;
  background-color: #003445;
  line-height: 1.5;
  font-size: 1.3rem;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  display: inline-block;
  position: relative;
  z-index: 5;
  padding: 4px 40px;
  text-decoration: none;
}
@media all and (max-width: 767px) {
  .c-card__media .c-card__media--cat a {
    font-size: 1.2rem;
    padding: 4px 20px;
  }
}
.c-card__media .c-card__media--cat a + a {
  margin-left: 8px;
}
.c-card__media .c-card__media--cat a:hover, .c-card__media .c-card__media--cat a:active, .c-card__media .c-card__media--cat a:focus {
  background-color: #4C5765;
}
.c-card__media .c-card__media--title {
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  margin-top: 20px;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: 400;
}
@media all and (max-width: 767px) {
  .c-card__media .c-card__media--title {
    margin-top: 15px;
    font-size: 1.6rem;
  }
}

/*  related
================================================ */
.c-card__related {
  position: relative;
  width: 100%;
}
.c-card__related:hover .c-card__related--time, .c-card__related:hover .c-card__related--title, .c-card__related:active .c-card__related--time, .c-card__related:active .c-card__related--title, .c-card__related:focus .c-card__related--time, .c-card__related:focus .c-card__related--title {
  color: #7C7C7C;
}
.c-card__related .c-card__related--wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.c-card__related .c-card__related--inner {
  width: 100%;
  height: 100%;
}
.c-card__related .c-card__related--thumbnail {
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.c-card__related .c-card__related--thumbnail-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-card__related .c-card__related--meta {
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  .c-card__related .c-card__related--meta {
    margin-top: 20px;
  }
}
.c-card__related .c-card__related--time {
  font-size: 1.4rem;
  line-height: 1.5;
  display: block;
  margin-right: 20px;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  .c-card__related .c-card__related--time {
    margin-top: 15px;
    font-size: 1.3rem;
  }
}
.c-card__related .c-card__related--cat {
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.5rem;
  position: relative;
  margin-top: 10px;
  z-index: 5;
}
@media all and (max-width: 767px) {
  .c-card__related .c-card__related--cat {
    font-size: 1.4rem;
  }
}
.c-card__related .c-card__related--cat a {
  display: inline-block;
  text-decoration: none;
  color: #003445;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-card__related .c-card__related--cat a + a {
  margin-left: 10px;
}
.c-card__related .c-card__related--cat a:hover, .c-card__related .c-card__related--cat a:active, .c-card__related .c-card__related--cat a:focus {
  color: #4C5765;
}
.c-card__related .c-card__related--title {
  margin-top: 20px;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: 400;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  .c-card__related .c-card__related--title {
    margin-top: 15px;
    font-size: 1.6rem;
  }
}

/*  course
================================================ */
.c-table__course {
  overflow: auto;
  white-space: nowrap;
}
@media all and (max-width: 767px) {
  .c-table__course {
    font-size: 1.4rem;
  }
}
.c-table__course.-others .c-table__course--body td {
  color: #FF6423;
}
.c-table__course .c-table__course--wrapper {
  border: none;
  border-collapse: collapse;
  margin: 0;
  width: 100%;
  position: relative;
  z-index: 3;
}
.c-table__course .c-table__course--header th {
  color: #fff;
  font-weight: 700;
  padding: 15px 5px;
  text-align: center;
  width: 160px;
  font-weight: 700;
}
.c-table__course .c-table__course--header th.-sm {
  width: 120px;
}
.c-table__course .c-table__course--header th.-lg {
  width: 220px;
}
.c-table__course .c-table__course--header th.-md {
  width: 180px;
}
.c-table__course .c-table__course--body tr {
  background-color: #fff;
}
.c-table__course .c-table__course--body tr.-gray {
  background-color: #F7F7F7;
}
.c-table__course .c-table__course--body td {
  padding: 20px 10px;
  text-align: center;
  border-bottom: 1px solid #000;
}
.c-table__course .c-table__course--body td.-checked {
  font-weight: 700;
}
.c-table__course .c-table__course--body td.-remarks {
  border-left: 1px solid #000;
}
.c-table__course .c-table__course--body td.-course {
  padding-left: 30px;
  padding-right: 30px;
  text-align: left;
}

/*  ja
================================================ */
.c-paragraph__ja {
  letter-spacing: 0.02em;
  line-height: 1.8;
}
.c-paragraph__ja + .c-paragraph__en {
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  .c-paragraph__ja + .c-paragraph__en {
    margin-top: 25px;
  }
}

/*  en
================================================ */
.c-paragraph__en {
  font-size: 1.8rem;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #7C7C7C;
}
@media all and (max-width: 767px) {
  .c-paragraph__en {
    font-size: 1.6rem;
  }
}

/*  irame
================================================ */
.c-iframe {
  position: relative;
  width: 100%;
  padding: 61.7777% 0 0;
}
.c-iframe > div, .c-iframe .c-iframe__content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.c-iframe__youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-iframe__youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* tab
================================================ */
@media all and (max-width: 1879px) {
  .c-tab .c-tab__nav {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  .c-tab .c-tab__nav {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  .c-tab .c-tab__nav {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  .c-tab .c-tab__nav {
    max-width: 100%;
  }
}
.c-tab .c-tab__nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-tab .c-tab__nav--col {
  max-width: 33.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
}
@media all and (max-width: 767px) {
  .c-tab .c-tab__nav--col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .c-tab .c-tab__nav--col:not(:first-of-type) {
    margin-top: 15px;
  }
  .c-tab .c-tab__nav--col:hover, .c-tab .c-tab__nav--col:active, .c-tab .c-tab__nav--col:focus {
    opacity: 0.5;
  }
}
.c-tab .c-tab__nav--col.is-active {
  pointer-events: none;
}
.c-tab .c-tab__nav--col.is-active .c-tab__nav--item {
  cursor: default;
}
@media all and (max-width: 767px) {
  .c-tab .c-tab__nav--col.is-active .c-tab__nav--item {
    border: 1px solid #00161D;
  }
}
.c-tab .c-tab__nav--col.is-active .c-tab__nav--item::before {
  width: 1px;
  height: 80px;
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #00161D;
}
@media all and (max-width: 1279px) {
  .c-tab .c-tab__nav--col.is-active .c-tab__nav--item::before {
    height: 60px;
    bottom: -50px;
  }
}
@media all and (max-width: 767px) {
  .c-tab .c-tab__nav--col.is-active .c-tab__nav--item::before {
    height: 15px;
    bottom: -10px;
  }
}
.c-tab .c-tab__nav--col.is-active .c-tab__nav--item::after {
  content: " ";
  width: 100%;
  height: 1px;
  background-color: #00161D;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media all and (max-width: 767px) {
  .c-tab .c-tab__nav--col.is-active .c-tab__nav--item::after {
    display: none;
  }
}
.c-tab .c-tab__nav--item {
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  border-bottom: 1px solid #EDEDED;
}
@media all and (max-width: 767px) {
  .c-tab .c-tab__nav--item {
    border-bottom: none;
  }
}
.c-tab .c-tab__nav--item:hover, .c-tab .c-tab__nav--item:active, .c-tab .c-tab__nav--item:focus {
  color: #7C7C7C;
}
.c-tab .c-tab__nav--item-wrapper {
  padding: 0 0 50px;
  text-align: center;
}
@media all and (max-width: 1279px) {
  .c-tab .c-tab__nav--item-wrapper {
    padding: 0 0 25px;
  }
}
@media all and (max-width: 767px) {
  .c-tab .c-tab__nav--item-wrapper {
    padding: 20px 0;
  }
}
.c-tab .c-tab__nav--item-ja {
  font-size: 2rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
}
@media all and (max-width: 1279px) {
  .c-tab .c-tab__nav--item-ja {
    font-size: 1.8rem;
  }
}
.c-tab .c-tab__nav--item-en {
  font-size: 1.8rem;
  color: #7C7C7C;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  margin-top: 20px;
}
@media all and (max-width: 1279px) {
  .c-tab .c-tab__nav--item-en {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.c-tab .c-tab__pane {
  display: none;
}
.c-tab .c-tab__pane.is-active {
  display: block;
}

/*  common
================================================ */
/* pc <--> sp
-------------------------------------- */
.u-mediaQuery {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-mediaQuery {
    font-family: "tb";
  }
}
@media all and (min-width: 1470px) {
  .u-mediaQuery {
    font-family: "pc";
  }
}

@media all and (max-width: 1279px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1470px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (max-width: 1279px) {
  .u-view-under-pc {
    display: none !important;
  }
}

.u-view-under-sp {
  display: none !important;
}
@media all and (max-width: 767px) {
  .u-view-under-sp {
    display: block !important;
  }
}

.u-view-under-sp_small {
  display: none !important;
}
@media all and (max-width: 360px) {
  .u-view-under-sp_small {
    display: block !important;
  }
}

@media all and (min-width: 1470px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

.u-view-upper-pc {
  display: none !important;
}
@media all and (max-width: 1279px) {
  .u-view-upper-pc {
    display: block !important;
  }
}

/* text
-------------------------------------- */
.u-txt-uppercase {
  text-transform: uppercase;
}

.u-txt-center {
  text-align: center;
}

.u-txt-left {
  text-align: left;
}

.u-txt-right {
  text-align: right;
}

/* link
-------------------------------------- */
a.u-h-opacity {
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-h-opacity {
    -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }
  a.u-h-opacity:hover {
    opacity: 0.7;
  }
}

a.u-h-zoom {
  display: block;
  text-decoration: none;
}
a.u-h-zoom .u-h-zoom__img {
  display: block;
}
a.u-h-zoom .u-h-zoom__imgWrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-h-zoom .u-h-zoom__img {
    -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }
  a.u-h-zoom:hover .u-h-zoom__img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/*  color
================================================ */
.u-clr-white {
  color: #fff;
}

/*  font
================================================ */
/*  404
================================================ */
#p-page404 {
  background-color: #fff;
}
#p-page404 .p-page404__sec .p-page404__sec--wrapper {
  padding: 160px 0;
}
@media all and (max-width: 1279px) {
  #p-page404 .p-page404__sec .p-page404__sec--wrapper {
    padding: 120px 0;
  }
}
@media all and (max-width: 767px) {
  #p-page404 .p-page404__sec .p-page404__sec--wrapper {
    padding: 80px 0;
  }
}
@media all and (max-width: 1879px) {
  #p-page404 .p-page404__sec .p-page404__sec--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  #p-page404 .p-page404__sec .p-page404__sec--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  #p-page404 .p-page404__sec .p-page404__sec--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-page404 .p-page404__sec .p-page404__sec--wrapper {
    max-width: 100%;
  }
}
@media all and (max-width: 1279px) {
  #p-page404 .p-page404__sec .p-page404__sec--wrapper {
    padding-top: 0;
  }
}
#p-page404 .p-page404__sec .p-page404__sec--desc {
  text-align: center;
}
@media all and (max-width: 767px) {
  #p-page404 .p-page404__sec .p-page404__sec--desc {
    text-align: left;
  }
  #p-page404 .p-page404__sec .p-page404__sec--desc br {
    display: none;
  }
}
#p-page404 .p-page404__sec .p-page404__sec--link {
  margin-top: 50px;
  text-align: center;
}

/*  home
================================================ */
#p-index {
  /*  lead
  ================================================ */
  /*  guide
  ================================================ */
  /*  profile
  ================================================ */
  /*  images
  ================================================ */
}
#p-index .p-index__lead {
  color: #fff;
}
#p-index .p-index__lead .p-index__lead--wrapper {
  padding: 160px 0;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__lead .p-index__lead--wrapper {
    padding: 120px 0;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__lead .p-index__lead--wrapper {
    padding: 80px 0;
  }
}
@media all and (max-width: 1879px) {
  #p-index .p-index__lead .p-index__lead--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  #p-index .p-index__lead .p-index__lead--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  #p-index .p-index__lead .p-index__lead--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__lead .p-index__lead--wrapper {
    max-width: 100%;
  }
}
#p-index .p-index__lead .p-index__lead--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 767px) {
  #p-index .p-index__lead .p-index__lead--inner {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
#p-index .p-index__lead .p-index__lead--inner > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  #p-index .p-index__lead .p-index__lead--inner > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
#p-index .p-index__lead .p-index__lead--contents {
  max-width: 83.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333%;
          flex: 0 0 83.3333%;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__lead .p-index__lead--contents {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-index .p-index__lead .p-index__lead--ja {
  font-size: 2.4rem;
  line-height: 2.5;
  letter-spacing: 0.04em;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
}
@media all and (max-width: 1879px) {
  #p-index .p-index__lead .p-index__lead--ja {
    font-size: 2rem;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__lead .p-index__lead--ja {
    font-size: 1.8rem;
  }
}
#p-index .p-index__lead .p-index__lead--en {
  margin-top: 100px;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
}
@media all and (max-width: 1879px) {
  #p-index .p-index__lead .p-index__lead--en {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__lead .p-index__lead--en {
    margin-top: 80px;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__lead .p-index__lead--en {
    font-size: 1.6rem;
    margin-top: 50px;
  }
}
#p-index .p-index__guide {
  background-color: #fff;
}
#p-index .p-index__guide .p-index__guide--wrapper {
  padding: 160px 0;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__guide .p-index__guide--wrapper {
    padding: 120px 0;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__guide .p-index__guide--wrapper {
    padding: 80px 0;
  }
}
@media all and (max-width: 1879px) {
  #p-index .p-index__guide .p-index__guide--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  #p-index .p-index__guide .p-index__guide--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  #p-index .p-index__guide .p-index__guide--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__guide .p-index__guide--wrapper {
    max-width: 100%;
  }
}
#p-index .p-index__guide .p-index__guide--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media all and (max-width: 767px) {
  #p-index .p-index__guide .p-index__guide--item {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
#p-index .p-index__guide .p-index__guide--item > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  #p-index .p-index__guide .p-index__guide--item > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
@media all and (max-width: 1439px) {
  #p-index .p-index__guide .p-index__guide--item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#p-index .p-index__guide .p-index__guide--item:first-of-type .p-index__guide--item-inner {
  margin-left: auto;
}
#p-index .p-index__guide .p-index__guide--item:not(:first-of-type) {
  margin-top: 140px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media all and (max-width: 1439px) {
  #p-index .p-index__guide .p-index__guide--item:not(:first-of-type) {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__guide .p-index__guide--item:not(:first-of-type) {
    margin-top: 90px;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__guide .p-index__guide--item:not(:first-of-type) {
    margin-top: 60px;
  }
}
#p-index .p-index__guide .p-index__guide--item:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#p-index .p-index__guide .p-index__guide--item-col {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  position: relative;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__guide .p-index__guide--item-col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-index .p-index__guide .p-index__guide--item-col:not(:first-of-type) {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
@media all and (max-width: 1439px) {
  #p-index .p-index__guide .p-index__guide--item-col:not(:first-of-type) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#p-index .p-index__guide .p-index__guide--item-col:not(:first-of-type) .p-index__guide--item-inner {
  padding: 100px 0 0;
}
@media all and (max-width: 1439px) {
  #p-index .p-index__guide .p-index__guide--item-col:not(:first-of-type) .p-index__guide--item-inner {
    padding: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__guide .p-index__guide--item-col:not(:first-of-type) .p-index__guide--item-inner {
    padding: 80px 0 0;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__guide .p-index__guide--item-col:not(:first-of-type) .p-index__guide--item-inner {
    padding: 60px 0 0;
  }
}
#p-index .p-index__guide .p-index__guide--item-catch {
  font-size: 18rem;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  mix-blend-mode: difference;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  top: 7.291vw;
  z-index: 5;
  mix-blend-mode: difference;
  color: #fff;
}
@media all and (max-width: 1879px) {
  #p-index .p-index__guide .p-index__guide--item-catch {
    font-size: 10.5vw;
  }
}
@media all and (max-width: 1439px) {
  #p-index .p-index__guide .p-index__guide--item-catch {
    font-size: 8rem;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__guide .p-index__guide--item-catch {
    font-size: 6.4rem;
  }
}
@media all and (max-width: 1879px) {
  #p-index .p-index__guide .p-index__guide--item-catch {
    top: 0;
  }
}
@media all and (max-width: 1439px) {
  #p-index .p-index__guide .p-index__guide--item-catch {
    position: static;
    top: auto;
    mix-blend-mode: none;
    left: auto;
    color: #00161D;
    margin-bottom: 40px;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__guide .p-index__guide--item-catch {
    margin-bottom: 0;
    position: absolute;
    left: 0;
    bottom: -20px;
    mix-blend-mode: difference;
    color: #fff;
  }
}
@media all and (max-width: 1439px) {
  #p-index .p-index__guide .p-index__guide--item-catch.-primary {
    display: none;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__guide .p-index__guide--item-catch.-primary {
    display: block;
  }
}
#p-index .p-index__guide .p-index__guide--item-catch.-pc-large {
  display: none;
}
@media all and (max-width: 1439px) {
  #p-index .p-index__guide .p-index__guide--item-catch.-pc-large {
    display: block;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__guide .p-index__guide--item-catch.-pc-large {
    display: none;
  }
}
#p-index .p-index__guide .p-index__guide--item-catch.-know {
  left: 90%;
}
@media all and (max-width: 1439px) {
  #p-index .p-index__guide .p-index__guide--item-catch.-know {
    left: auto;
  }
}
#p-index .p-index__guide .p-index__guide--item-catch.-experience {
  left: -100%;
}
@media all and (max-width: 1879px) {
  #p-index .p-index__guide .p-index__guide--item-catch.-experience {
    top: -5%;
  }
}
@media all and (max-width: 1439px) {
  #p-index .p-index__guide .p-index__guide--item-catch.-experience {
    top: auto;
    left: auto;
  }
}
#p-index .p-index__guide .p-index__guide--item-thumbnail .-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 118.786%;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__guide .p-index__guide--item-thumbnail .-wrapper {
    padding-top: 70.746%;
  }
}
#p-index .p-index__guide .p-index__guide--item-thumbnail .-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__guide .p-index__guide--item-thumbnail .-bg.-pc {
    display: none;
  }
}
#p-index .p-index__guide .p-index__guide--item-thumbnail .-bg.-sp {
  display: none;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__guide .p-index__guide--item-thumbnail .-bg.-sp {
    display: block;
  }
}
#p-index .p-index__guide .p-index__guide--item-inner {
  max-width: 600px;
}
@media all and (max-width: 1879px) {
  #p-index .p-index__guide .p-index__guide--item-inner {
    max-width: 660px;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__guide .p-index__guide--item-inner {
    max-width: 100%;
  }
}
#p-index .p-index__profile {
  position: relative;
  background-color: #00161D;
}
#p-index .p-index__profile .p-index__profile--wrapper {
  padding: 0 0 160px;
  position: relative;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--wrapper {
    padding: 0 0 120px;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--wrapper {
    padding: 0 0 80px;
  }
}
#p-index .p-index__profile .p-index__profile--wrapper::before {
  content: "";
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #fff;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--wrapper::before {
    top: auto;
    bottom: 0;
    height: 60px;
    z-index: 0;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--wrapper::before {
    height: 30px;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--wrapper {
    padding-bottom: 0;
  }
}
#p-index .p-index__profile .p-index__profile--main {
  max-width: 89.583vw;
  margin-right: auto;
  position: relative;
  z-index: 3;
}
@media all and (max-width: 1439px) {
  #p-index .p-index__profile .p-index__profile--main {
    max-width: calc(100% - 100px);
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--main {
    max-width: calc(100% - 60px);
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--main {
    max-width: calc(100% - 20px);
  }
}
#p-index .p-index__profile .p-index__profile--main-wrapper {
  padding-top: 41.86%;
  position: relative;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--main-wrapper {
    padding-top: 70.704%;
  }
}
#p-index .p-index__profile .p-index__profile--main-wrapper::before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 63.6%;
  z-index: 4;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 22, 29, 0)), color-stop(80%, rgba(0, 22, 29, 0.9)), color-stop(90%, #00161D), to(#00161D));
  background: -webkit-linear-gradient(top, rgba(0, 22, 29, 0) 0%, rgba(0, 22, 29, 0.9) 80%, #00161D 90%, #00161D 100%);
  background: linear-gradient(to bottom, rgba(0, 22, 29, 0) 0%, rgba(0, 22, 29, 0.9) 80%, #00161D 90%, #00161D 100%);
}
#p-index .p-index__profile .p-index__profile--main-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--main-bg.-pc {
    display: none;
  }
}
#p-index .p-index__profile .p-index__profile--main-bg.-sp {
  display: none;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--main-bg.-sp {
    display: block;
  }
}
#p-index .p-index__profile .p-index__profile--main-lead {
  position: absolute;
  z-index: 5;
  bottom: 120px;
  right: 55px;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--main-lead {
    position: static;
    bottom: auto;
    right: auto;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--main-lead.-pc {
    display: none;
  }
}
#p-index .p-index__profile .p-index__profile--main-lead.-sp {
  display: none;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--main-lead.-sp {
    display: block;
    padding: 80px 0;
  }
}
@media all and (max-width: 1879px) {
  #p-index .p-index__profile .p-index__profile--main-lead {
    bottom: 60px;
    right: 30px;
  }
}
#p-index .p-index__profile .p-index__profile--main-lead .-ja, #p-index .p-index__profile .p-index__profile--main-lead .-en {
  display: block;
  color: #fff;
  font-weight: 400;
}
#p-index .p-index__profile .p-index__profile--main-lead .-ja {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-size: 2.4rem;
  line-height: 2.5;
}
@media all and (max-width: 1879px) {
  #p-index .p-index__profile .p-index__profile--main-lead .-ja {
    font-size: 2rem;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--main-lead .-ja {
    font-size: 1.8rem;
  }
}
#p-index .p-index__profile .p-index__profile--main-lead .-en {
  margin-top: 30px;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  font-size: 2rem;
  line-height: 1.8;
}
@media all and (max-width: 1879px) {
  #p-index .p-index__profile .p-index__profile--main-lead .-en {
    font-size: 1.8rem;
    margin-top: 25px;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--main-lead .-en {
    font-size: 1.6rem;
    margin-top: 50px;
  }
}
#p-index .p-index__profile .p-index__profile--catch {
  color: #003445;
  margin-top: -8rem;
  position: relative;
  z-index: 6;
  font-size: 18rem;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  mix-blend-mode: difference;
  line-height: 1;
}
@media all and (max-width: 1879px) {
  #p-index .p-index__profile .p-index__profile--catch {
    font-size: 10.5vw;
  }
}
@media all and (max-width: 1439px) {
  #p-index .p-index__profile .p-index__profile--catch {
    font-size: 8rem;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--catch {
    font-size: 6.4rem;
  }
}
@media all and (max-width: 1879px) {
  #p-index .p-index__profile .p-index__profile--catch {
    margin-top: -60px;
  }
}
@media all and (max-width: 1439px) {
  #p-index .p-index__profile .p-index__profile--catch {
    margin-top: -30px;
  }
}
@media all and (max-width: 1879px) {
  #p-index .p-index__profile .p-index__profile--contents {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  #p-index .p-index__profile .p-index__profile--contents {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  #p-index .p-index__profile .p-index__profile--contents {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--contents {
    max-width: 100%;
  }
}
#p-index .p-index__profile .p-index__profile--header {
  margin-top: -60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 7;
}
@media all and (max-width: 1879px) {
  #p-index .p-index__profile .p-index__profile--header {
    margin-top: -60px;
  }
}
@media all and (max-width: 1439px) {
  #p-index .p-index__profile .p-index__profile--header {
    margin-top: -30px;
  }
}
#p-index .p-index__profile .p-index__profile--header-primary {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-right: 40px;
}
@media all and (max-width: 1599px) {
  #p-index .p-index__profile .p-index__profile--header-primary {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-right: 0;
  }
}
#p-index .p-index__profile .p-index__profile--name {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  margin-top: 10px;
  font-size: 2.8rem;
  color: #fff;
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--name {
    font-size: 2rem;
  }
}
#p-index .p-index__profile .p-index__profile--header-secondary {
  padding-left: 40px;
  border-left: 1px solid #fff;
}
@media all and (max-width: 1599px) {
  #p-index .p-index__profile .p-index__profile--header-secondary {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #fff;
    padding-top: 40px;
    margin-top: 40px;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--header-secondary {
    padding-top: 30px;
    margin-top: 30px;
  }
}
#p-index .p-index__profile .p-index__profile--licenses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
#p-index .p-index__profile .p-index__profile--licenses-col {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-left: 20px;
  padding-right: 20px;
}
#p-index .p-index__profile .p-index__profile--licenses-col:nth-of-type(n+3) {
  margin-top: 40px;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--licenses-col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #p-index .p-index__profile .p-index__profile--licenses-col:not(:first-of-type) {
    margin-top: 30px;
  }
}
#p-index .p-index__profile .p-index__profile--licenses-item {
  color: #fff;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--licenses-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
#p-index .p-index__profile .p-index__profile--licenses-ja {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--licenses-ja {
    font-size: 1.5rem;
  }
}
#p-index .p-index__profile .p-index__profile--licenses-ja > span {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 15px;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--licenses-ja > span {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--licenses-ja > span {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--licenses-ja {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--licenses-ja {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-index .p-index__profile .p-index__profile--licenses-en {
  margin-top: 15px;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  font-size: 1.8rem;
  color: #C6C6C6;
  line-height: 1;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--licenses-en {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
    padding-left: 20px;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--licenses-en {
    font-size: 1.2rem;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-left: 0;
    margin-top: 8px;
  }
}
#p-index .p-index__profile .p-index__profile--body {
  margin-top: 60px;
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--body {
    margin-top: 50px;
  }
}
#p-index .p-index__profile .p-index__profile--details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
#p-index .p-index__profile .p-index__profile--details-col {
  padding-left: 30px;
  padding-right: 30px;
  max-width: calc(100% - 310px);
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(100% - 310px);
      flex-basis: calc(100% - 310px);
}
#p-index .p-index__profile .p-index__profile--details-col:first-of-type {
  max-width: 310px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 310px;
          flex: 0 0 310px;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--details-col:first-of-type {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 50px;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--details-col:first-of-type {
    margin-top: 30px;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--details-col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
#p-index .p-index__profile .p-index__profile--details-contents {
  color: #fff;
  max-width: 860px;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__profile .p-index__profile--thumbnail {
    max-width: 350px;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__profile .p-index__profile--thumbnail {
    max-width: 140px;
  }
}
#p-index .p-index__profile .p-index__profile--thumbnail-wrapper {
  padding-top: 112.8%;
  position: relative;
  overflow: hidden;
}
#p-index .p-index__profile .p-index__profile--thumbnail-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#p-index .p-index__images {
  background-color: #fff;
  padding-bottom: 80px;
  position: relative;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__images {
    padding-top: 80px;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__images {
    padding-top: 60px;
    padding-bottom: 10px;
  }
}
#p-index .p-index__images::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  content: "";
  z-index: 2;
  background-color: #00161D;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__images::before {
    display: none;
  }
}
#p-index .p-index__images .p-index__images--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 300px;
  position: relative;
  z-index: 3;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__images .p-index__images--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-bottom: 0;
  }
}
#p-index .p-index__images .p-index__images--col {
  max-width: 35.3125%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35.3125%;
          flex: 0 0 35.3125%;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__images .p-index__images--col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-index .p-index__images .p-index__images--col:first-of-type {
  -webkit-transform: translateY(300px);
          transform: translateY(300px);
}
@media all and (max-width: 1279px) {
  #p-index .p-index__images .p-index__images--col:first-of-type {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 30px;
  }
}
#p-index .p-index__images .p-index__images--col:last-of-type {
  max-width: 59.375%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 59.375%;
          flex: 0 0 59.375%;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__images .p-index__images--col:last-of-type {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-index .p-index__images .p-index__images--thumbnail {
    max-width: 56.5333%;
  }
}
#p-index .p-index__images .p-index__images--thumbnail-wrapper {
  padding-top: 70.648%;
  position: relative;
  overflow: hidden;
}
@media all and (max-width: 1279px) {
  #p-index .p-index__images .p-index__images--main {
    max-width: 72.5333%;
    margin-left: auto;
    margin-right: 40px;
  }
}
@media all and (max-width: 767px) {
  #p-index .p-index__images .p-index__images--main {
    margin-right: 20px;
  }
}
#p-index .p-index__images .p-index__images--main-wrapper {
  padding-top: 56.14035%;
  position: relative;
  overflow: hidden;
}
#p-index .p-index__images .p-index__images--thumbnail-bg, #p-index .p-index__images .p-index__images--main-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/*  archive
================================================ */
#p-archive {
  background-color: #fff;
}
#p-archive .p-archive__sec .p-archive__sec--wrapper {
  padding: 160px 0;
}
@media all and (max-width: 1279px) {
  #p-archive .p-archive__sec .p-archive__sec--wrapper {
    padding: 120px 0;
  }
}
@media all and (max-width: 767px) {
  #p-archive .p-archive__sec .p-archive__sec--wrapper {
    padding: 80px 0;
  }
}
@media all and (max-width: 1879px) {
  #p-archive .p-archive__sec .p-archive__sec--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  #p-archive .p-archive__sec .p-archive__sec--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  #p-archive .p-archive__sec .p-archive__sec--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-archive .p-archive__sec .p-archive__sec--wrapper {
    max-width: 100%;
  }
}
@media all and (max-width: 1279px) {
  #p-archive .p-archive__sec .p-archive__sec--wrapper {
    padding-top: 0;
  }
}
#p-archive .p-archive__sec .p-archive__sec--inner {
  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;
}
#p-archive .p-archive__sec .p-archive__sec--contents {
  max-width: 83.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333%;
          flex: 0 0 83.3333%;
}
@media all and (max-width: 1279px) {
  #p-archive .p-archive__sec .p-archive__sec--contents {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-archive .p-archive__sec .p-archive__sec--cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#p-archive .p-archive__sec .p-archive__sec--cat-col {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  margin-right: 30px;
  margin-top: 15px;
}
@media all and (max-width: 767px) {
  #p-archive .p-archive__sec .p-archive__sec--cat-col {
    margin-right: 15px;
    margin-top: 10px;
  }
}
#p-archive .p-archive__sec .p-archive__sec--cat-item {
  font-size: 1.2rem;
  font-weight: 400;
  width: 100%;
  color: #7C7C7C;
  line-height: 1;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
#p-archive .p-archive__sec .p-archive__sec--cat-item::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #003445;
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  opacity: 0;
}
#p-archive .p-archive__sec .p-archive__sec--cat-item:hover, #p-archive .p-archive__sec .p-archive__sec--cat-item:active, #p-archive .p-archive__sec .p-archive__sec--cat-item:focus {
  color: #003445;
}
#p-archive .p-archive__sec .p-archive__sec--cat-item:hover::before, #p-archive .p-archive__sec .p-archive__sec--cat-item:active::before, #p-archive .p-archive__sec .p-archive__sec--cat-item:focus::before {
  width: 100%;
  left: 0;
  right: auto;
  opacity: 1;
}
#p-archive .p-archive__sec .p-archive__sec--cat-item.-current {
  color: #003445;
  pointer-events: none;
}
#p-archive .p-archive__sec .p-archive__sec--cat-item.-current::before {
  width: 100%;
  opacity: 1;
}
#p-archive .p-archive__sec .p-archive__sec--main {
  margin-top: 80px;
}
@media all and (max-width: 1279px) {
  #p-archive .p-archive__sec .p-archive__sec--main {
    margin-top: 60px;
  }
}
@media all and (max-width: 767px) {
  #p-archive .p-archive__sec .p-archive__sec--main {
    margin-top: 40px;
  }
}
#p-archive .p-archive__sec .p-archive__sec--pagenavi {
  margin-top: 80px;
}
@media all and (max-width: 767px) {
  #p-archive .p-archive__sec .p-archive__sec--pagenavi {
    margin-top: 40px;
  }
}
#p-archive .p-archive__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  #p-archive .p-archive__media {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
#p-archive .p-archive__media > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  #p-archive .p-archive__media > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
#p-archive .p-archive__media--col {
  max-width: 33.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
}
#p-archive .p-archive__media--col:nth-of-type(n+4) {
  margin-top: 50px;
}
@media all and (max-width: 1279px) {
  #p-archive .p-archive__media--col {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  #p-archive .p-archive__media--col:nth-of-type(n+3) {
    margin-top: 50px;
  }
}
@media all and (max-width: 767px) {
  #p-archive .p-archive__media--col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #p-archive .p-archive__media--col:not(:first-of-type) {
    margin-top: 40px;
  }
}

/*  single
================================================ */
#p-single {
  background-color: #fff;
}
#p-single .p-single__wrapper {
  padding: 160px 0;
}
@media all and (max-width: 1279px) {
  #p-single .p-single__wrapper {
    padding: 120px 0;
  }
}
@media all and (max-width: 767px) {
  #p-single .p-single__wrapper {
    padding: 80px 0;
  }
}
@media all and (max-width: 1879px) {
  #p-single .p-single__wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  #p-single .p-single__wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  #p-single .p-single__wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-single .p-single__wrapper {
    max-width: 100%;
  }
}
#p-single .p-single__inner {
  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;
}
@media all and (max-width: 1279px) {
  #p-single .p-single__inner {
    padding-top: 160px;
  }
}
#p-single .p-single__contents {
  max-width: 83.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333%;
          flex: 0 0 83.3333%;
}
@media all and (max-width: 1599px) {
  #p-single .p-single__contents {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-single .p-single__meta--time {
  font-size: 1.4rem;
  line-height: 1.5;
  display: block;
  margin-bottom: 15px;
}
@media all and (max-width: 767px) {
  #p-single .p-single__meta--time {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}
#p-single .p-single__meta--cat {
  margin-top: 15px;
}
@media all and (max-width: 767px) {
  #p-single .p-single__meta--cat {
    margin-top: 10px;
  }
}
#p-single .p-single__meta--cat a {
  font-weight: 700;
  background-color: #003445;
  padding: 6px 40px;
  color: #fff;
  line-height: 1.5;
  font-size: 1.3rem;
  display: inline-block;
  text-decoration: none;
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  #p-single .p-single__meta--cat a {
    font-size: 1.2rem;
    padding: 4px 20px;
  }
}
#p-single .p-single__meta--cat a + a {
  margin-left: 10px;
}
@media all and (max-width: 767px) {
  #p-single .p-single__meta--cat a + a {
    margin-left: 6px;
  }
}
#p-single .p-single__meta--cat a:hover, #p-single .p-single__meta--cat a:active, #p-single .p-single__meta--cat a:focus {
  background-color: #4C5765;
}
#p-single .p-single__title {
  margin-top: 35px;
  font-size: 3.6rem;
  font-weight: 400;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
}
@media all and (max-width: 1279px) {
  #p-single .p-single__title {
    margin-top: 25px;
  }
}
@media all and (max-width: 767px) {
  #p-single .p-single__title {
    font-size: 3.2rem;
    line-height: 1.5;
  }
}
#p-single .p-single__body {
  margin-top: 80px;
}
@media all and (max-width: 1279px) {
  #p-single .p-single__body {
    margin-top: 50px;
  }
}
@media all and (max-width: 767px) {
  #p-single .p-single__body {
    margin-top: 40px;
  }
}
#p-single .p-single__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#p-single .p-single__primary {
  max-width: calc(100% - 300px);
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(100% - 300px);
      flex-basis: calc(100% - 300px);
}
@media all and (max-width: 1279px) {
  #p-single .p-single__primary {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-single .p-single__secondary {
  max-width: 300px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  padding-left: 60px;
}
@media all and (max-width: 1279px) {
  #p-single .p-single__secondary {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-left: 0;
    margin-top: 60px;
  }
}
#p-single .p-single__thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  height: 100%;
  max-height: 560px;
  display: block;
  margin: 0 auto;
}
@media all and (max-width: 767px) {
  #p-single .p-single__thumbnail img {
    max-height: 360px;
  }
}
#p-single .p-single__entry {
  margin-top: 60px;
}
#p-single .p-single__entry p {
  margin-top: 40px;
  line-height: 1.85;
}
#p-single .p-single__entry h2 {
  font-size: 3rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  background-color: #F7F7F7;
  padding: 20px 30px;
  margin-top: 60px;
  line-height: 1.5;
  border-top: 1px solid #00161D;
  border-bottom: 1px solid #00161D;
}
@media all and (max-width: 1599px) {
  #p-single .p-single__entry h2 {
    font-size: 2.8rem;
  }
}
@media all and (max-width: 767px) {
  #p-single .p-single__entry h2 {
    font-size: 2.4rem;
    padding: 10px 15px;
  }
}
#p-single .p-single__entry h2 + * {
  margin-top: 30px;
}
#p-single .p-single__entry h3 {
  margin-top: 60px;
  color: #00161D;
  font-size: 2.6rem;
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid #00161D;
  font-weight: 400;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
}
@media all and (max-width: 1599px) {
  #p-single .p-single__entry h3 {
    font-size: 2.4rem;
  }
}
@media all and (max-width: 767px) {
  #p-single .p-single__entry h3 {
    font-size: 2.2rem;
    padding-bottom: 15px;
  }
}
#p-single .p-single__entry h3 + * {
  margin-top: 30px;
}
#p-single .p-single__entry h4 {
  margin-top: 60px;
  color: #00161D;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
}
@media all and (max-width: 1599px) {
  #p-single .p-single__entry h4 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 767px) {
  #p-single .p-single__entry h4 {
    font-size: 2rem;
  }
}
#p-single .p-single__entry h4 + * {
  margin-top: 30px;
}
#p-single .p-single__entry .-bold {
  font-weight: 700;
}
#p-single .p-single__entry .-checked {
  color: #FF385C;
}
#p-single .p-single__entry a {
  text-decoration: underline;
  color: #00161D;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
#p-single .p-single__entry a:hover, #p-single .p-single__entry a:active, #p-single .p-single__entry a:focus {
  opacity: 0.6;
}
#p-single .p-single__entry ol, #p-single .p-single__entry ul:not(.wp-block-gallery) {
  margin-top: 40px;
}
#p-single .p-single__entry ol li, #p-single .p-single__entry ul:not(.wp-block-gallery) li {
  padding-left: 16px;
  position: relative;
  list-style-type: none;
  line-height: 1.85;
}
#p-single .p-single__entry ol li:not(:first-of-type), #p-single .p-single__entry ul:not(.wp-block-gallery) li:not(:first-of-type) {
  margin-top: 10px;
}
#p-single .p-single__entry ul:not(.wp-block-gallery) li::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 11px;
  left: 0;
  background-color: #003445;
}
#p-single .p-single__entry ol {
  counter-reset: num;
}
#p-single .p-single__entry ol li {
  padding-left: 30px;
}
#p-single .p-single__entry ol li::before {
  counter-increment: num;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  content: "0" counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  font-weight: 400;
  color: #00161D;
  line-height: 1;
}
#p-single .p-single__entry .video-container {
  width: 100%;
  max-width: 100%;
  margin-top: 48px;
}
#p-single .p-single__entry .video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
#p-single .p-single__entry .video iframe, #p-single .p-single__entry .video object, #p-single .p-single__entry .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#p-single .p-single__share {
  margin-top: 100px;
  padding-bottom: 30px;
  border-bottom: 1px solid #EDEDED;
}
@media all and (max-width: 1279px) {
  #p-single .p-single__share {
    margin-top: 80px;
  }
}
@media all and (max-width: 767px) {
  #p-single .p-single__share {
    margin-top: 60px;
    padding-bottom: 25px;
  }
}
#p-single .p-single__share--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;
}
#p-single .p-single__share--list-col {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-left: 10px;
  padding-right: 10px;
}
#p-single .p-single__share--item-icon {
  width: 24px;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
#p-single .p-single__share--item-icon:hover, #p-single .p-single__share--item-icon:active, #p-single .p-single__share--item-icon:focus {
  opacity: 0.6;
}
#p-single .p-single__pagenavi {
  margin-top: 60px;
}
@media all and (max-width: 767px) {
  #p-single .p-single__pagenavi {
    margin-top: 50px;
  }
}
#p-single .p-single__pagenavi--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  #p-single .p-single__pagenavi--wrapper {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
#p-single .p-single__pagenavi--wrapper > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  #p-single .p-single__pagenavi--wrapper > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
#p-single .p-single__pagenavi--arrow, #p-single .p-single__pagenavi--back {
  max-width: 33.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
}
#p-single .p-single__pagenavi--arrow {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-single .p-single__pagenavi--arrow a {
  text-decoration: none;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  #p-single .p-single__pagenavi--arrow {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    position: relative;
  }
  #p-single .p-single__pagenavi--arrow:last-of-type::after {
    content: " ";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #EDEDED;
  }
}
#p-single .p-single__pagenavi--prev a {
  padding-right: 140px;
}
@media all and (max-width: 767px) {
  #p-single .p-single__pagenavi--prev a {
    padding-right: 90px;
  }
}
#p-single .p-single__pagenavi--prev a::after {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #00161D;
  position: absolute;
  right: 0;
  left: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  #p-single .p-single__pagenavi--prev a::after {
    width: 80px;
    margin-left: 10px;
  }
}
#p-single .p-single__pagenavi--prev a:hover, #p-single .p-single__pagenavi--prev a:active, #p-single .p-single__pagenavi--prev a:focus {
  color: #7C7C7C;
}
#p-single .p-single__pagenavi--prev a:hover::after, #p-single .p-single__pagenavi--prev a:active::after, #p-single .p-single__pagenavi--prev a:focus::after {
  width: 0;
  left: 46px;
  right: auto;
  opacity: 0;
  background-color: #7C7C7C;
}
@media all and (max-width: 767px) {
  #p-single .p-single__pagenavi--prev a:hover::after, #p-single .p-single__pagenavi--prev a:active::after, #p-single .p-single__pagenavi--prev a:focus::after {
    left: 24px;
  }
}
#p-single .p-single__pagenavi--next {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#p-single .p-single__pagenavi--next a {
  padding-left: 140px;
}
@media all and (max-width: 767px) {
  #p-single .p-single__pagenavi--next a {
    padding-left: 90px;
  }
}
#p-single .p-single__pagenavi--next a::before {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #00161D;
  position: absolute;
  right: auto;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  #p-single .p-single__pagenavi--next a::before {
    width: 80px;
    margin-right: 10px;
  }
}
#p-single .p-single__pagenavi--next a:hover, #p-single .p-single__pagenavi--next a:active, #p-single .p-single__pagenavi--next a:focus {
  color: #7C7C7C;
}
#p-single .p-single__pagenavi--next a:hover::before, #p-single .p-single__pagenavi--next a:active::before, #p-single .p-single__pagenavi--next a:focus::before {
  width: 0;
  left: auto;
  right: 46px;
  opacity: 0;
  background-color: #7C7C7C;
}
@media all and (max-width: 767px) {
  #p-single .p-single__pagenavi--next a:hover::before, #p-single .p-single__pagenavi--next a:active::before, #p-single .p-single__pagenavi--next a:focus::before {
    right: 24px;
  }
}
@media all and (max-width: 767px) {
  #p-single .p-single__pagenavi--back {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#p-single .p-single__pagenavi--back-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #00161D;
  color: #00161D;
  font-weight: 700;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  width: 100%;
  height: 60px;
  font-size: 1.6rem;
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  #p-single .p-single__pagenavi--back-btn {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}
#p-single .p-single__pagenavi--back-btn::before {
  background-color: #003445;
  content: "";
  width: 100%;
  opacity: 0;
  height: 0;
  position: absolute;
  top: auto;
  bottom: 0;
  z-index: 1;
  left: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
#p-single .p-single__pagenavi--back-btn:hover, #p-single .p-single__pagenavi--back-btn:active, #p-single .p-single__pagenavi--back-btn:focus {
  color: #fff;
}
#p-single .p-single__pagenavi--back-btn:hover::before, #p-single .p-single__pagenavi--back-btn:active::before, #p-single .p-single__pagenavi--back-btn:focus::before {
  height: 100%;
  top: 0;
  bottom: auto;
  opacity: 1;
}
#p-single .p-single__pagenavi--back-text {
  position: relative;
  z-index: 3;
}
#p-single .p-single__toc {
  margin-top: 60px;
}
#p-single .p-single__toc .p-single__toc--header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.6rem;
  font-weight: 400;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  padding-left: 35px;
  position: relative;
}
#p-single .p-single__toc .p-single__toc--header::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #00161D;
  margin-right: 15px;
  position: absolute;
  top: 20px;
  left: 0;
}
@media all and (max-width: 767px) {
  #p-single .p-single__toc .p-single__toc--header::before {
    width: 15px;
    margin-right: 12px;
    top: 16px;
  }
}
@media all and (max-width: 767px) {
  #p-single .p-single__toc .p-single__toc--header {
    font-size: 2.2rem;
  }
}
#p-single .p-single__toc .p-single__toc--list {
  margin-top: 30px;
  padding: 30px 40px;
  background-color: #F7F7F7;
}
@media all and (max-width: 767px) {
  #p-single .p-single__toc .p-single__toc--list {
    margin-top: 20px;
    padding: 20px 30px;
  }
}
#p-single .p-single__toc .p-single__toc--list > li {
  font-size: 1.8rem;
  padding-bottom: 20px;
  border-bottom: 1px solid #EDEDED;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
}
@media all and (max-width: 767px) {
  #p-single .p-single__toc .p-single__toc--list > li {
    font-size: 1.5rem;
  }
}
#p-single .p-single__toc .p-single__toc--list > li::before {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  line-height: 1;
  top: 3px;
}
@media all and (max-width: 767px) {
  #p-single .p-single__toc .p-single__toc--list > li::before {
    top: 2px;
  }
}
#p-single .p-single__toc .p-single__toc--list > li > ol {
  margin-top: 20px;
  font-size: 1.6rem;
}
@media all and (max-width: 767px) {
  #p-single .p-single__toc .p-single__toc--list > li > ol {
    font-size: 1.4rem;
  }
}
#p-single .p-single__toc .p-single__toc--list > li > ol > li {
  padding-left: 15px;
}
#p-single .p-single__toc .p-single__toc--list > li > ol > li:not(:first-of-type) {
  margin-top: 5px;
}
#p-single .p-single__toc .p-single__toc--list > li > ol > li::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 12px;
  left: 0;
  background-color: #003445;
}
#p-single .p-single__toc .p-single__toc--list a {
  text-decoration: none;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
#p-single .p-single__toc .p-single__toc--list a:hover, #p-single .p-single__toc .p-single__toc--list a:active, #p-single .p-single__toc .p-single__toc--list a:focus {
  opacity: 0.6;
}

/*  contact
================================================ */
#p-contact {
  background-color: #fff;
}
#p-contact .p-contact__sec .p-contact__sec--wrapper {
  padding: 160px 0;
}
@media all and (max-width: 1279px) {
  #p-contact .p-contact__sec .p-contact__sec--wrapper {
    padding: 120px 0;
  }
}
@media all and (max-width: 767px) {
  #p-contact .p-contact__sec .p-contact__sec--wrapper {
    padding: 80px 0;
  }
}
@media all and (max-width: 1879px) {
  #p-contact .p-contact__sec .p-contact__sec--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  #p-contact .p-contact__sec .p-contact__sec--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  #p-contact .p-contact__sec .p-contact__sec--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-contact .p-contact__sec .p-contact__sec--wrapper {
    max-width: 100%;
  }
}
@media all and (max-width: 1279px) {
  #p-contact .p-contact__sec .p-contact__sec--wrapper {
    padding-top: 0;
  }
}
#p-contact .p-contact__sec .p-contact__sec--back {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
#p-contact .p-contact__sec .p-contact__sec--inner {
  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;
}
#p-contact .p-contact__sec .p-contact__sec--contents {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
#p-contact .p-contact__sec .p-contact__sec--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  #p-contact .p-contact__sec .p-contact__sec--row {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
#p-contact .p-contact__sec .p-contact__sec--row > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  #p-contact .p-contact__sec .p-contact__sec--row > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
#p-contact .p-contact__sec .p-contact__sec--row + .p-contact__sec--row {
  margin-top: 140px;
}
@media all and (max-width: 1439px) {
  #p-contact .p-contact__sec .p-contact__sec--row + .p-contact__sec--row {
    margin-top: 100px;
  }
}
@media all and (max-width: 1279px) {
  #p-contact .p-contact__sec .p-contact__sec--row + .p-contact__sec--row {
    margin-top: 80px;
  }
}
@media all and (max-width: 767px) {
  #p-contact .p-contact__sec .p-contact__sec--row + .p-contact__sec--row {
    margin-top: 60px;
  }
}
#p-contact .p-contact__sec .p-contact__sec--row.-confirmSend {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#p-contact .p-contact__sec .p-contact__sec--secondary {
  max-width: 30%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
          margin-top: 30px;
}
@media all and (max-width: 1279px) {
  #p-contact .p-contact__sec .p-contact__sec--secondary {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-contact .p-contact__sec .p-contact__sec--primary {
  max-width: 70%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
}
@media all and (max-width: 1279px) {
  #p-contact .p-contact__sec .p-contact__sec--primary {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 40px;
  }
}
#p-contact .p-contact__sec .p-contact__sec--title {
  font-size: 3.2rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: 400;
}
@media all and (max-width: 1279px) {
  #p-contact .p-contact__sec .p-contact__sec--title {
    font-size: 2.8rem;
  }
}
@media all and (max-width: 767px) {
  #p-contact .p-contact__sec .p-contact__sec--title {
    font-size: 2.4rem;
  }
}
#p-contact .p-contact__sec .p-contact__sec--note {
  margin-top: 20px;
  font-size: 1.6rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
}
#p-contact .p-contact__sec .p-contact__sec--note sup {
  color: #FF385C;
}
#p-contact .p-contact__form {
  background-color: #F7F7F7;
}
#p-contact .p-contact__form--wrapper {
  padding: 90px 120px;
}
@media all and (max-width: 1599px) {
  #p-contact .p-contact__form--wrapper {
    padding: 90px 90px;
  }
}
@media all and (max-width: 1279px) {
  #p-contact .p-contact__form--wrapper {
    padding: 60px 40px;
  }
}
@media all and (max-width: 767px) {
  #p-contact .p-contact__form--wrapper {
    padding: 40px 20px;
  }
}
#p-contact .p-contact__form--lead {
  text-align: center;
  margin-bottom: 60px;
}
@media all and (max-width: 767px) {
  #p-contact .p-contact__form--lead.-complete {
    text-align: left;
  }
}
#p-contact .p-contact__form--lead + .p-contact__form--lead {
  margin-top: -30px;
}
#p-contact .p-contact__form--btn {
  max-width: 280px;
  margin: -30px auto 60px;
  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;
  height: 50px;
  width: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  background: transparent;
  color: #fff;
  background-color: #00161D;
  font-size: 1.6rem;
  z-index: 3;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
#p-contact .p-contact__service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  #p-contact .p-contact__service {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
#p-contact .p-contact__service > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  #p-contact .p-contact__service > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
#p-contact .p-contact__service--col {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
#p-contact .p-contact__service--col:nth-of-type(n+3) {
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  #p-contact .p-contact__service--col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #p-contact .p-contact__service--col:not(:first-of-type) {
    margin-top: 15px;
  }
}

/*  plane
================================================ */
#p-plane {
  background-color: #fff;
}
#p-plane .p-plane__sec .p-plane__sec--wrapper {
  padding: 160px 0;
}
@media all and (max-width: 1279px) {
  #p-plane .p-plane__sec .p-plane__sec--wrapper {
    padding: 120px 0;
  }
}
@media all and (max-width: 767px) {
  #p-plane .p-plane__sec .p-plane__sec--wrapper {
    padding: 80px 0;
  }
}
@media all and (max-width: 1879px) {
  #p-plane .p-plane__sec .p-plane__sec--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  #p-plane .p-plane__sec .p-plane__sec--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  #p-plane .p-plane__sec .p-plane__sec--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-plane .p-plane__sec .p-plane__sec--wrapper {
    max-width: 100%;
  }
}
@media all and (max-width: 1279px) {
  #p-plane .p-plane__sec .p-plane__sec--wrapper {
    padding-top: 0;
  }
}
#p-plane .p-plane__sec .p-plane__sec--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.6rem;
  font-weight: 400;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  padding-left: 35px;
  position: relative;
}
#p-plane .p-plane__sec .p-plane__sec--title::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #00161D;
  margin-right: 15px;
  position: absolute;
  top: 20px;
  left: 0;
}
#p-plane .p-plane__sec .p-plane__sec--title + * {
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  #p-plane .p-plane__sec .p-plane__sec--title {
    font-size: 2.2rem;
  }
}
#p-plane .p-plane__sec .p-plane__sec--lead {
  background-color: #F7F7F7;
  width: 100%;
  padding: 40px 50px;
}
@media all and (max-width: 1279px) {
  #p-plane .p-plane__sec .p-plane__sec--lead {
    padding: 20px;
  }
}
#p-plane .p-plane__sec .p-plane__sec--inner {
  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;
}
#p-plane .p-plane__sec .p-plane__sec--contents {
  max-width: 83.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333%;
          flex: 0 0 83.3333%;
}
@media all and (max-width: 1279px) {
  #p-plane .p-plane__sec .p-plane__sec--contents {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-plane .p-plane__sec .p-plane__sec--entry {
  margin-top: 80px;
}
@media all and (max-width: 1279px) {
  #p-plane .p-plane__sec .p-plane__sec--entry {
    margin-top: 60px;
  }
}
@media all and (max-width: 767px) {
  #p-plane .p-plane__sec .p-plane__sec--entry {
    margin-top: 40px;
  }
}
#p-plane .p-plane__sec .p-plane__sec--entry p {
  margin-bottom: 15px;
}
#p-plane .p-plane__sec .p-plane__sec--entry h3 {
  border-bottom: 1px solid #EDEDED;
  font-size: 2rem;
  font-weight: 400;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-bottom: 25px;
  padding-bottom: 15px;
  margin-top: 80px;
}
@media all and (max-width: 767px) {
  #p-plane .p-plane__sec .p-plane__sec--entry h3 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
#p-plane .p-plane__sec .p-plane__sec--entry ol, #p-plane .p-plane__sec .p-plane__sec--entry ul {
  margin-top: 25px;
}
#p-plane .p-plane__sec .p-plane__sec--entry ol li, #p-plane .p-plane__sec .p-plane__sec--entry ul li {
  position: relative;
  list-style-type: none;
  line-height: 1.85;
}
#p-plane .p-plane__sec .p-plane__sec--entry ol li:not(:first-of-type), #p-plane .p-plane__sec .p-plane__sec--entry ul li:not(:first-of-type) {
  margin-top: 8px;
}
#p-plane .p-plane__sec .p-plane__sec--entry ol li > ul, #p-plane .p-plane__sec .p-plane__sec--entry ol li > ol, #p-plane .p-plane__sec .p-plane__sec--entry ul li > ul, #p-plane .p-plane__sec .p-plane__sec--entry ul li > ol {
  margin-top: 20px;
  padding-bottom: 20px;
}
#p-plane .p-plane__sec .p-plane__sec--entry ol li > ul li:not(:first-of-type), #p-plane .p-plane__sec .p-plane__sec--entry ol li > ol li:not(:first-of-type), #p-plane .p-plane__sec .p-plane__sec--entry ul li > ul li:not(:first-of-type), #p-plane .p-plane__sec .p-plane__sec--entry ul li > ol li:not(:first-of-type) {
  margin-top: 5px;
}
#p-plane .p-plane__sec .p-plane__sec--entry ol li > ol li::before, #p-plane .p-plane__sec .p-plane__sec--entry ul li > ol li::before {
  content: "(" counter(num) ")";
}
#p-plane .p-plane__sec .p-plane__sec--entry ul > li {
  padding-left: 15px;
}
#p-plane .p-plane__sec .p-plane__sec--entry ul > li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
  background-color: #00161D;
}
#p-plane .p-plane__sec .p-plane__sec--entry ol {
  counter-reset: num;
}
#p-plane .p-plane__sec .p-plane__sec--entry ol > li {
  padding-left: 25px;
}
#p-plane .p-plane__sec .p-plane__sec--entry ol > li::before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #00161D;
}
#p-plane .p-plane__sec .p-plane__sec--entry small {
  display: block;
  font-size: 1.4rem;
  margin-top: 10px;
}
#p-plane .p-plane__sec .p-plane__sec--entry address {
  font-style: normal;
}
#p-plane .p-plane__sec .p-plane__sec--entry dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#p-plane .p-plane__sec .p-plane__sec--entry dl + dl {
  margin-top: 15px;
}
#p-plane .p-plane__sec .p-plane__sec--entry dl dt {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media all and (max-width: 767px) {
  #p-plane .p-plane__sec .p-plane__sec--entry dl dt {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-plane .p-plane__sec .p-plane__sec--entry dl dd {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-left: 10px;
}
@media all and (max-width: 767px) {
  #p-plane .p-plane__sec .p-plane__sec--entry dl dd {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-left: 0;
    margin-top: 5px;
  }
}
#p-plane .p-plane__sec .p-plane__sec--law {
  margin-top: 90px;
}
@media all and (max-width: 1279px) {
  #p-plane .p-plane__sec .p-plane__sec--law {
    margin-top: 60px;
  }
}
@media all and (max-width: 767px) {
  #p-plane .p-plane__sec .p-plane__sec--law {
    margin-top: 30px;
  }
}
#p-plane .p-plane__sec .p-plane__sec--list {
  padding-top: 30px;
  padding-left: 60px;
  padding-right: 60px;
  border-top: 1px solid #D6D6D6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (max-width: 1279px) {
  #p-plane .p-plane__sec .p-plane__sec--list {
    padding-left: 0;
    padding-right: 0;
  }
}
#p-plane .p-plane__sec .p-plane__sec--list:not(:first-of-type) {
  margin-top: 30px;
}
#p-plane .p-plane__sec .p-plane__sec--list:last-of-type {
  padding-bottom: 30px;
  border-bottom: 1px solid #D6D6D6;
}
#p-plane .p-plane__sec .p-plane__sec--list dt {
  max-width: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  font-weight: 700;
}
@media all and (max-width: 1279px) {
  #p-plane .p-plane__sec .p-plane__sec--list dt {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-plane .p-plane__sec .p-plane__sec--list dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 15px;
}
@media all and (max-width: 1279px) {
  #p-plane .p-plane__sec .p-plane__sec--list dd {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-left: 0;
    margin-top: 15px;
  }
}
#p-plane .p-plane__sec .p-plane__sec--list dd > dl {
  margin-top: 15px;
  padding-left: 10px;
}
@media all and (max-width: 1279px) {
  #p-plane .p-plane__sec .p-plane__sec--list dd > dl {
    margin-top: 10px;
  }
}
#p-plane .p-plane__sec .p-plane__sec--list dd > dl:not(:first-of-type) {
  margin-top: 10px;
}
#p-plane .p-plane__sec .p-plane__sec--list dd > dl > dt {
  font-weight: 400;
}
#p-plane .p-plane__sec .p-plane__sec--list dd > dl > dd {
  padding-left: 10px;
}
@media all and (max-width: 1279px) {
  #p-plane .p-plane__sec .p-plane__sec--list dd > dl > dd {
    margin-top: 5px;
  }
}
#p-plane .p-plane__sec .p-plane__sec--list address {
  font-style: normal;
}

/*  know
================================================ */
#p-know {
  background-color: #fff;
}
#p-know .p-know__about {
  background-color: #F7F7F7;
}
#p-know .p-know__about .p-know__about--wrapper {
  padding: 160px 0;
}
@media all and (max-width: 1279px) {
  #p-know .p-know__about .p-know__about--wrapper {
    padding: 120px 0;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__about .p-know__about--wrapper {
    padding: 80px 0;
  }
}
@media all and (max-width: 1279px) {
  #p-know .p-know__about .p-know__about--wrapper {
    max-width: 570px;
    margin: 0 auto;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__about .p-know__about--wrapper {
    padding-top: 0;
    position: relative;
  }
  #p-know .p-know__about .p-know__about--wrapper::before {
    content: " ";
    width: 100%;
    height: 40px;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    background-color: #fff;
  }
}
#p-know .p-know__about .p-know__about--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 4;
}
#p-know .p-know__about .p-know__about--col {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media all and (max-width: 1279px) {
  #p-know .p-know__about .p-know__about--col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #p-know .p-know__about .p-know__about--col:last-of-type {
    margin-top: 80px;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__about .p-know__about--col:last-of-type {
    margin-top: 40px;
  }
}
#p-know .p-know__about .p-know__about--thumbnail {
  position: relative;
}
@media all and (max-width: 767px) {
  #p-know .p-know__about .p-know__about--thumbnail {
    max-width: calc(100% - 20px);
  }
}
#p-know .p-know__about .p-know__about--thumbnail > .p-know__about--thumbnail-catch {
  color: #00161D;
  z-index: 7;
  font-size: 18rem;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  mix-blend-mode: difference;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  right: 250px;
  top: -18%;
  mix-blend-mode: unset;
}
@media all and (max-width: 1879px) {
  #p-know .p-know__about .p-know__about--thumbnail > .p-know__about--thumbnail-catch {
    font-size: 10.5vw;
  }
}
@media all and (max-width: 1439px) {
  #p-know .p-know__about .p-know__about--thumbnail > .p-know__about--thumbnail-catch {
    font-size: 8rem;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__about .p-know__about--thumbnail > .p-know__about--thumbnail-catch {
    font-size: 6.4rem;
  }
}
@media all and (max-width: 1439px) {
  #p-know .p-know__about .p-know__about--thumbnail > .p-know__about--thumbnail-catch {
    top: -10%;
  }
}
@media all and (max-width: 1279px) {
  #p-know .p-know__about .p-know__about--thumbnail > .p-know__about--thumbnail-catch {
    right: auto;
    left: 40px;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__about .p-know__about--thumbnail > .p-know__about--thumbnail-catch {
    left: 20px;
    top: -40px;
  }
}
#p-know .p-know__about .p-know__about--thumbnail-wrapper {
  padding-top: 70.6666%;
  position: relative;
  overflow: hidden;
}
#p-know .p-know__about .p-know__about--thumbnail-wrapper > .p-know__about--thumbnail-catch {
  font-size: 18rem;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  mix-blend-mode: difference;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  right: 250px;
  top: -18%;
  z-index: 8;
  color: #fff;
  mix-blend-mode: difference;
}
@media all and (max-width: 1879px) {
  #p-know .p-know__about .p-know__about--thumbnail-wrapper > .p-know__about--thumbnail-catch {
    font-size: 10.5vw;
  }
}
@media all and (max-width: 1439px) {
  #p-know .p-know__about .p-know__about--thumbnail-wrapper > .p-know__about--thumbnail-catch {
    font-size: 8rem;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__about .p-know__about--thumbnail-wrapper > .p-know__about--thumbnail-catch {
    font-size: 6.4rem;
  }
}
@media all and (max-width: 1439px) {
  #p-know .p-know__about .p-know__about--thumbnail-wrapper > .p-know__about--thumbnail-catch {
    top: -10%;
  }
}
@media all and (max-width: 1279px) {
  #p-know .p-know__about .p-know__about--thumbnail-wrapper > .p-know__about--thumbnail-catch {
    right: auto;
    left: 40px;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__about .p-know__about--thumbnail-wrapper > .p-know__about--thumbnail-catch {
    left: 20px;
    top: -40px;
  }
}
#p-know .p-know__about .p-know__about--thumbnail-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
#p-know .p-know__about .p-know__about--contents {
  padding-left: 120px;
  max-width: 570px;
}
@media all and (max-width: 1439px) {
  #p-know .p-know__about .p-know__about--contents {
    padding-left: 60px;
  }
}
@media all and (max-width: 1279px) {
  #p-know .p-know__about .p-know__about--contents {
    padding-left: 0;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__about .p-know__about--contents {
    padding: 0 20px;
  }
}
#p-know .p-know__about .p-know__about--desc.-ja {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
}
#p-know .p-know__history .p-know__history--wrapper {
  padding: 160px 0;
}
@media all and (max-width: 1279px) {
  #p-know .p-know__history .p-know__history--wrapper {
    padding: 120px 0;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__history .p-know__history--wrapper {
    padding: 80px 0;
  }
}
@media all and (max-width: 1879px) {
  #p-know .p-know__history .p-know__history--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  #p-know .p-know__history .p-know__history--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  #p-know .p-know__history .p-know__history--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-know .p-know__history .p-know__history--wrapper {
    max-width: 100%;
  }
}
#p-know .p-know__history .p-know__history--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  #p-know .p-know__history .p-know__history--row {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
#p-know .p-know__history .p-know__history--row > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  #p-know .p-know__history .p-know__history--row > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
@media all and (max-width: 1599px) {
  #p-know .p-know__history .p-know__history--row:last-of-type {
    margin-top: 50px;
  }
}
@media all and (max-width: 1279px) {
  #p-know .p-know__history .p-know__history--row:last-of-type {
    margin-top: 70px;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__history .p-know__history--row:last-of-type {
    margin-top: 35px;
  }
}
#p-know .p-know__history .p-know__history--col {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media all and (max-width: 1279px) {
  #p-know .p-know__history .p-know__history--col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  #p-know .p-know__history .p-know__history--col:first-of-type {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #p-know .p-know__history .p-know__history--col:nth-of-type(odd) {
    margin-top: 35px;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__history .p-know__history--col:nth-of-type(odd) {
    margin-top: 25px;
  }
}
#p-know .p-know__history .p-know__history--contents {
  max-width: 570px;
}
#p-know .p-know__history .p-know__history--thumbnail-wrapper {
  padding-top: 72.5%;
  position: relative;
  overflow: hidden;
}
#p-know .p-know__history .p-know__history--thumbnail-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
#p-know .p-know__bizenkai {
  background-color: #00161D;
}
#p-know .p-know__bizenkai .p-know__bizenkai--outer {
  position: relative;
  padding: 0 0 160px;
}
@media all and (max-width: 1279px) {
  #p-know .p-know__bizenkai .p-know__bizenkai--outer {
    padding: 0 0 120px;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__bizenkai .p-know__bizenkai--outer {
    padding: 0 0 80px;
  }
}
#p-know .p-know__bizenkai .p-know__bizenkai--outer::before {
  content: "";
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #fff;
}
#p-know .p-know__bizenkai .p-know__bizenkai--main {
  max-width: 1470px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media all and (max-width: 1879px) {
  #p-know .p-know__bizenkai .p-know__bizenkai--main {
    max-width: 1360px;
  }
}
@media all and (max-width: 1599px) {
  #p-know .p-know__bizenkai .p-know__bizenkai--main {
    max-width: 1280px;
  }
}
@media all and (max-width: 1439px) {
  #p-know .p-know__bizenkai .p-know__bizenkai--main {
    max-width: 1180px;
  }
}
@media all and (max-width: 1279px) {
  #p-know .p-know__bizenkai .p-know__bizenkai--main {
    max-width: 100%;
  }
}
#p-know .p-know__bizenkai .p-know__bizenkai--main-wrapper {
  padding-top: 34.0136%;
  position: relative;
  overflow: hidden;
}
@media all and (max-width: 1279px) {
  #p-know .p-know__bizenkai .p-know__bizenkai--main-wrapper {
    padding-top: 70.6666%;
  }
}
#p-know .p-know__bizenkai .p-know__bizenkai--main-wrapper::before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 63.6%;
  z-index: 4;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 22, 29, 0)), color-stop(80%, rgba(0, 22, 29, 0.9)), color-stop(90%, #00161D), to(#00161D));
  background: -webkit-linear-gradient(top, rgba(0, 22, 29, 0) 0%, rgba(0, 22, 29, 0.9) 80%, #00161D 90%, #00161D 100%);
  background: linear-gradient(to bottom, rgba(0, 22, 29, 0) 0%, rgba(0, 22, 29, 0.9) 80%, #00161D 90%, #00161D 100%);
}
#p-know .p-know__bizenkai .p-know__bizenkai--main-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
#p-know .p-know__bizenkai .p-know__bizenkai--header {
  position: relative;
  z-index: 6;
  margin-top: -80px;
}
#p-know .p-know__bizenkai .p-know__history--title {
  position: relative;
  z-index: 3;
}
#p-know .p-know__bizenkai .p-know__bizenkai--catch {
  font-size: 18rem;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  mix-blend-mode: difference;
  line-height: 1;
  color: #003445;
  text-transform: uppercase;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  line-height: 1;
  margin-top: 0;
}
@media all and (max-width: 1879px) {
  #p-know .p-know__bizenkai .p-know__bizenkai--catch {
    font-size: 10.5vw;
  }
}
@media all and (max-width: 1439px) {
  #p-know .p-know__bizenkai .p-know__bizenkai--catch {
    font-size: 8rem;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__bizenkai .p-know__bizenkai--catch {
    font-size: 6.4rem;
  }
}
#p-know .p-know__bizenkai .p-know__bizenkai--contents {
  margin-top: 70px;
  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;
}
@media all and (max-width: 767px) {
  #p-know .p-know__bizenkai .p-know__bizenkai--contents {
    margin-top: 40px;
  }
}
#p-know .p-know__bizenkai .p-know__bizenkai--contents-wrapper {
  max-width: 66.6666%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6666%;
          flex: 0 0 66.6666%;
}
@media all and (max-width: 1879px) {
  #p-know .p-know__bizenkai .p-know__bizenkai--contents-wrapper {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media all and (max-width: 1279px) {
  #p-know .p-know__bizenkai .p-know__bizenkai--contents-wrapper {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-know .p-know__bizenkai .p-know__bizenkai--desc.-ja {
  color: #fff;
}
#p-know .p-know__profile .p-know__profile--wrapper {
  padding: 160px 0;
}
@media all and (max-width: 1279px) {
  #p-know .p-know__profile .p-know__profile--wrapper {
    padding: 120px 0;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__profile .p-know__profile--wrapper {
    padding: 80px 0;
  }
}
@media all and (max-width: 1879px) {
  #p-know .p-know__profile .p-know__profile--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  #p-know .p-know__profile .p-know__profile--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  #p-know .p-know__profile .p-know__profile--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-know .p-know__profile .p-know__profile--wrapper {
    max-width: 100%;
  }
}
#p-know .p-know__profile .p-know__profile--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 767px) {
  #p-know .p-know__profile .p-know__profile--row {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
#p-know .p-know__profile .p-know__profile--row > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  #p-know .p-know__profile .p-know__profile--row > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
#p-know .p-know__profile .p-know__profile--col:first-of-type {
  max-width: 41.6666%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666%;
          flex: 0 0 41.6666%;
}
@media all and (max-width: 1279px) {
  #p-know .p-know__profile .p-know__profile--col:first-of-type {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-know .p-know__profile .p-know__profile--col:last-of-type {
  max-width: 58.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333%;
          flex: 0 0 58.3333%;
}
@media all and (max-width: 1279px) {
  #p-know .p-know__profile .p-know__profile--col:last-of-type {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 60px;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__profile .p-know__profile--col:last-of-type {
    margin-top: 40px;
  }
}
#p-know .p-know__profile .p-know__profile--image .-main {
  position: relative;
}
#p-know .p-know__profile .p-know__profile--image .-main > .-catch {
  color: #00161D;
  z-index: 7;
  font-size: 18rem;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  mix-blend-mode: difference;
  line-height: 1;
  mix-blend-mode: unset;
  white-space: nowrap;
  position: absolute;
  right: 20px;
  top: -15%;
  z-index: 3;
}
@media all and (max-width: 1879px) {
  #p-know .p-know__profile .p-know__profile--image .-main > .-catch {
    font-size: 10.5vw;
  }
}
@media all and (max-width: 1439px) {
  #p-know .p-know__profile .p-know__profile--image .-main > .-catch {
    font-size: 8rem;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__profile .p-know__profile--image .-main > .-catch {
    font-size: 6.4rem;
  }
}
@media all and (max-width: 1439px) {
  #p-know .p-know__profile .p-know__profile--image .-main > .-catch {
    top: -5%;
  }
}
#p-know .p-know__profile .p-know__profile--image .-main .-wrapper {
  padding-top: 112.63%;
  position: relative;
  overflow: hidden;
}
#p-know .p-know__profile .p-know__profile--image .-main .-wrapper > .-catch {
  font-size: 18rem;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  mix-blend-mode: difference;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  right: 20px;
  top: -15%;
  z-index: 5;
  color: #fff;
  mix-blend-mode: difference;
}
@media all and (max-width: 1879px) {
  #p-know .p-know__profile .p-know__profile--image .-main .-wrapper > .-catch {
    font-size: 10.5vw;
  }
}
@media all and (max-width: 1439px) {
  #p-know .p-know__profile .p-know__profile--image .-main .-wrapper > .-catch {
    font-size: 8rem;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__profile .p-know__profile--image .-main .-wrapper > .-catch {
    font-size: 6.4rem;
  }
}
@media all and (max-width: 1439px) {
  #p-know .p-know__profile .p-know__profile--image .-main .-wrapper > .-catch {
    top: -5%;
  }
}
#p-know .p-know__profile .p-know__profile--image .-tuhmbnail .-wrapper {
  padding-top: 100%;
}
#p-know .p-know__profile .p-know__profile--image .-wrapper {
  position: relative;
}
#p-know .p-know__profile .p-know__profile--image .-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#p-know .p-know__profile .p-know__profile--image-lower {
  margin-top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -1px;
  margin-right: -1px;
}
#p-know .p-know__profile .p-know__profile--image-lower .-col {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-right: 1px;
  padding-left: 1px;
}
#p-know .p-know__profile .p-know__profile--contents {
  max-width: 720px;
  margin-left: auto;
}
@media all and (max-width: 1879px) {
  #p-know .p-know__profile .p-know__profile--contents {
    max-width: 100%;
    padding-left: 30px;
  }
}
@media all and (max-width: 1279px) {
  #p-know .p-know__profile .p-know__profile--contents {
    padding-left: 0;
  }
}
#p-know .p-know__profile .p-know__profile--contents-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#p-know .p-know__profile .p-know__profile--contents-primary {
  max-width: 40%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  padding-right: 40px;
}
@media all and (max-width: 1439px) {
  #p-know .p-know__profile .p-know__profile--contents-primary {
    padding-right: 0;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-know .p-know__profile .p-know__profile--contents-secondary {
  max-width: 60%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  padding-left: 60px;
  border-left: 1px solid #EDEDED;
}
@media all and (max-width: 1439px) {
  #p-know .p-know__profile .p-know__profile--contents-secondary {
    padding-left: 0;
    padding-top: 40px;
    margin-top: 40px;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    border-top: 1px solid #EDEDED;
    border-left: none;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__profile .p-know__profile--contents-secondary {
    margin-top: 30px;
    padding-top: 30px;
  }
}
#p-know .p-know__profile .p-know__profile--name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 400;
}
#p-know .p-know__profile .p-know__profile--name-pos {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.8rem;
  padding-right: 30px;
  padding-top: 15px;
}
#p-know .p-know__profile .p-know__profile--name-elem {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#p-know .p-know__profile .p-know__profile--name-en {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  margin-top: 10px;
  font-size: 2.8rem;
}
@media all and (max-width: 767px) {
  #p-know .p-know__profile .p-know__profile--name-en {
    font-size: 2rem;
  }
}
#p-know .p-know__profile .p-know__profile--licenses-col:not(:first-of-type) {
  margin-top: 40px;
}
@media all and (max-width: 1279px) {
  #p-know .p-know__profile .p-know__profile--licenses-col:not(:first-of-type) {
    margin-top: 30px;
  }
}
@media all and (max-width: 1279px) {
  #p-know .p-know__profile .p-know__profile--licenses-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
#p-know .p-know__profile .p-know__profile--licenses-ja {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
}
@media all and (max-width: 767px) {
  #p-know .p-know__profile .p-know__profile--licenses-ja {
    font-size: 1.5rem;
  }
}
#p-know .p-know__profile .p-know__profile--licenses-ja > span {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 15px;
}
@media all and (max-width: 1279px) {
  #p-know .p-know__profile .p-know__profile--licenses-ja > span {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__profile .p-know__profile--licenses-ja > span {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 1279px) {
  #p-know .p-know__profile .p-know__profile--licenses-ja {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__profile .p-know__profile--licenses-ja {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-know .p-know__profile .p-know__profile--licenses-en {
  margin-top: 15px;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  font-size: 1.8rem;
  color: #C6C6C6;
  line-height: 1;
}
@media all and (max-width: 1279px) {
  #p-know .p-know__profile .p-know__profile--licenses-en {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
    padding-left: 20px;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__profile .p-know__profile--licenses-en {
    font-size: 1.2rem;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-left: 0;
    margin-top: 8px;
  }
}
#p-know .p-know__profile .p-know__profile--contents-lower {
  margin-top: 80px;
}
@media all and (max-width: 1279px) {
  #p-know .p-know__profile .p-know__profile--contents-lower {
    margin-top: 60px;
  }
}
@media all and (max-width: 767px) {
  #p-know .p-know__profile .p-know__profile--contents-lower {
    margin-top: 40px;
  }
}

/*  experience
================================================ */
#p-experience {
  background-color: #fff;
}
#p-experience .p-experience__tabs .p-experience__tabs--wrapper {
  padding: 160px 0 0;
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__tabs .p-experience__tabs--wrapper {
    padding: 120px 0 0;
  }
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__tabs .p-experience__tabs--wrapper {
    padding: 80px 0 0;
  }
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__tabs .p-experience__tabs--wrapper {
    padding-top: 0;
  }
}
#p-experience .p-experience__sec:nth-of-type(even) {
  background-color: #F7F7F7;
}
#p-experience .p-experience__sec:nth-of-type(even) .p-experience__sec--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__sec:nth-of-type(even) .p-experience__sec--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#p-experience .p-experience__sec:nth-of-type(even) .p-experience__sec--row + .p-experience__sec--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 80px;
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__sec:nth-of-type(even) .p-experience__sec--row + .p-experience__sec--row {
    margin-top: 60px;
  }
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec:nth-of-type(even) .p-experience__sec--row + .p-experience__sec--row {
    margin-top: 40px;
  }
}
#p-experience .p-experience__sec:nth-of-type(even) .p-experience__sec--row + .p-experience__sec--row .p-experience__sec--contents {
  margin-left: auto;
  margin-right: 0;
}
#p-experience .p-experience__sec:nth-of-type(even) .p-experience__sec--contents {
  margin-left: 0;
}
#p-experience .p-experience__sec:nth-of-type(even) .p-experience__sec--flow {
  background-color: #fff;
}
#p-experience .p-experience__sec .p-experience__sec--wrapper {
  padding: 160px 0;
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__sec .p-experience__sec--wrapper {
    padding: 120px 0;
  }
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--wrapper {
    padding: 80px 0;
  }
}
@media all and (max-width: 1879px) {
  #p-experience .p-experience__sec .p-experience__sec--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  #p-experience .p-experience__sec .p-experience__sec--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  #p-experience .p-experience__sec .p-experience__sec--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__sec .p-experience__sec--wrapper {
    max-width: 100%;
  }
}
#p-experience .p-experience__sec .p-experience__sec--title-note {
  margin-top: 30px;
  font-size: 2rem;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--title-note {
    font-size: 1.5rem;
    margin-top: 15px;
  }
}
#p-experience .p-experience__sec .p-experience__sec--title-note.-en {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
}
#p-experience .p-experience__sec .p-experience__sec--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--row {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
#p-experience .p-experience__sec .p-experience__sec--row > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--row > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
#p-experience .p-experience__sec .p-experience__sec--col {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__sec .p-experience__sec--col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #p-experience .p-experience__sec .p-experience__sec--col:last-of-type {
    margin-top: 50px;
  }
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--col:last-of-type {
    margin-top: 25px;
  }
}
#p-experience .p-experience__sec .p-experience__sec--contents {
  max-width: 600px;
  margin-left: auto;
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__sec .p-experience__sec--contents {
    max-width: 100%;
  }
}
#p-experience .p-experience__sec .p-experience__sec--desc {
  line-height: 1.8;
}
#p-experience .p-experience__sec .p-experience__sec--desc + .p-experience__sec--note {
  margin-top: 25px;
}
#p-experience .p-experience__sec .p-experience__sec--note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-experience .p-experience__sec .p-experience__sec--note + .p-experience__sec--note {
  margin-top: 5px;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--note + .p-experience__sec--note {
    margin-top: 20px;
  }
}
#p-experience .p-experience__sec .p-experience__sec--note {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
}
#p-experience .p-experience__sec .p-experience__sec--note-head {
  max-width: 120px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  background-color: #003445;
  padding: 6px;
  color: #fff;
  text-align: center;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--note-head {
    max-width: 100px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    font-size: 1.4rem;
  }
}
#p-experience .p-experience__sec .p-experience__sec--note-body {
  padding-left: 16px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #003445;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--note-body {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-left: 0;
    margin-top: 10px;
  }
}
#p-experience .p-experience__sec .p-experience__sec--note-body span {
  display: inline-block;
  color: #7C7C7C;
  font-size: 1.4rem;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--note-body span {
    font-size: 1.2rem;
  }
}
#p-experience .p-experience__sec .p-experience__sec--heading {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.6rem;
  font-weight: 400;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  padding-left: 35px;
  position: relative;
}
#p-experience .p-experience__sec .p-experience__sec--heading::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #00161D;
  margin-right: 15px;
  position: absolute;
  top: 20px;
  left: 0;
}
#p-experience .p-experience__sec .p-experience__sec--heading + * {
  margin-top: 30px;
}
#p-experience .p-experience__sec .p-experience__sec--heading.-first {
  margin-top: 0;
}
#p-experience .p-experience__sec .p-experience__sec--heading.-en {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--heading {
    font-size: 2.4rem;
  }
}
#p-experience .p-experience__sec .p-experience__sec--image .-main .-mainWrapper {
  position: relative;
  overflow: hidden;
  padding-top: 70.7246%;
}
#p-experience .p-experience__sec .p-experience__sec--image .-main .-mainBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#p-experience .p-experience__sec .p-experience__sec--image .-middle .-middleWrapper {
  position: relative;
  overflow: hidden;
  padding-top: 60.15%;
}
#p-experience .p-experience__sec .p-experience__sec--image .-middle .-middleBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#p-experience .p-experience__sec .p-experience__sec--image .-thumbnail .-thumbnailWrapper {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
#p-experience .p-experience__sec .p-experience__sec--image .-thumbnail .-thumbnailBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#p-experience .p-experience__sec .p-experience__sec--image .-sm .-smWrapper {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
#p-experience .p-experience__sec .p-experience__sec--image .-sm .-smBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#p-experience .p-experience__sec .p-experience__sec--image.-lg .p-experience__sec--image-wrapper {
  padding-top: 118%;
  position: relative;
  overflow: hidden;
}
#p-experience .p-experience__sec .p-experience__sec--image.-md .p-experience__sec--image-wrapper {
  padding-top: 70.72%;
  position: relative;
  overflow: hidden;
}
#p-experience .p-experience__sec .p-experience__sec--image .p-experience__sec--image-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
#p-experience .p-experience__sec .p-experience__sec--image-top .-wrapper, #p-experience .p-experience__sec .p-experience__sec--image-bottom .-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 70.72%;
}
#p-experience .p-experience__sec .p-experience__sec--image-top .-bg, #p-experience .p-experience__sec .p-experience__sec--image-bottom .-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
#p-experience .p-experience__sec .p-experience__sec--image-bottom {
  margin-top: 2px;
}
#p-experience .p-experience__sec .p-experience__sec--image-lower {
  margin-top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -1px;
  margin-right: -1px;
}
#p-experience .p-experience__sec .p-experience__sec--image-lower .-col {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-right: 1px;
  padding-left: 1px;
}
#p-experience .p-experience__sec .p-experience__sec--flow {
  background-color: #F7F7F7;
}
#p-experience .p-experience__sec .p-experience__sec--flow-wrapper {
  padding: 40px 50px;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--flow-wrapper {
    padding: 25px 35px;
  }
}
#p-experience .p-experience__sec .p-experience__sec--flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #EDEDED;
}
#p-experience .p-experience__sec .p-experience__sec--flow-item:last-of-type {
  border-bottom: none;
}
#p-experience .p-experience__sec .p-experience__sec--flow-num {
  max-width: 36px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36px;
          flex: 0 0 36px;
  border-right: 1px solid #EDEDED;
  padding: 10px 0 15px;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  color: #003445;
  font-size: 2rem;
  line-height: 1;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--flow-num {
    font-size: 1.8rem;
    border: none;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0;
  }
}
#p-experience .p-experience__sec .p-experience__sec--flow-content {
  padding-left: 18px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--flow-content {
    padding-left: 0;
    margin-top: 15px;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-bottom: 25px;
  }
}
#p-experience .p-experience__sec .p-experience__sec--links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
#p-experience .p-experience__sec .p-experience__sec--links-col {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-right: 5px;
  padding-left: 5px;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--links-col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #p-experience .p-experience__sec .p-experience__sec--links-col:not(:first-of-type) {
    margin-top: 10px;
  }
}
#p-experience .p-experience__sec .p-experience__sec--links-btn {
  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;
  text-decoration: none;
  border: 1px solid #00161D;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  width: 100%;
  height: 75px;
  position: relative;
}
#p-experience .p-experience__sec .p-experience__sec--links-btn::before {
  background-color: #003445;
  content: "";
  width: 100%;
  opacity: 0;
  height: 0;
  position: absolute;
  top: auto;
  bottom: 0;
  z-index: 1;
  left: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
#p-experience .p-experience__sec .p-experience__sec--links-btn:hover .-text, #p-experience .p-experience__sec .p-experience__sec--links-btn:active .-text, #p-experience .p-experience__sec .p-experience__sec--links-btn:focus .-text {
  color: #fff;
}
#p-experience .p-experience__sec .p-experience__sec--links-btn:hover .-icon path, #p-experience .p-experience__sec .p-experience__sec--links-btn:active .-icon path, #p-experience .p-experience__sec .p-experience__sec--links-btn:focus .-icon path {
  stroke: #fff;
}
#p-experience .p-experience__sec .p-experience__sec--links-btn:hover::before, #p-experience .p-experience__sec .p-experience__sec--links-btn:active::before, #p-experience .p-experience__sec .p-experience__sec--links-btn:focus::before {
  height: 100%;
  top: 0;
  bottom: auto;
  opacity: 1;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__sec--links-btn {
    height: 64px;
  }
}
#p-experience .p-experience__sec .p-experience__sec--links-btn .-text {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding-right: 8px;
  position: relative;
  z-index: 3;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
#p-experience .p-experience__sec .p-experience__sec--links-btn .-icon {
  max-width: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  position: relative;
  z-index: 3;
}
#p-experience .p-experience__sec .p-experience__sec--links-btn .-icon svg {
  width: 100%;
  height: auto;
}
#p-experience .p-experience__sec .p-experience__sec--links-btn .-icon path {
  stroke: #00161D;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
#p-experience .p-experience__sec .p-experience__sec--links-btn .-icon path, #p-experience .p-experience__sec .p-experience__sec--links-btn .-icon rect {
  fill: none;
}
#p-experience .p-experience__sec .p-experience__comments--col:not(:first-of-type) {
  margin-top: 60px;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__comments--col:not(:first-of-type) {
    margin-top: 50px;
  }
}
#p-experience .p-experience__sec .p-experience__comments--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#p-experience .p-experience__sec .p-experience__comments--item-thumbnail {
  max-width: 480px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 480px;
          flex: 0 0 480px;
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__sec .p-experience__comments--item-thumbnail {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
#p-experience .p-experience__sec .p-experience__comments--item-thumbnail .-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 70.625%;
}
#p-experience .p-experience__sec .p-experience__comments--item-thumbnail .-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
#p-experience .p-experience__sec .p-experience__comments--item-contents {
  max-width: calc(100% - 480px);
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(100% - 480px);
      flex-basis: calc(100% - 480px);
  padding-left: 90px;
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__sec .p-experience__comments--item-contents {
    padding-left: 30px;
  }
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__sec .p-experience__comments--item-contents {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}
#p-experience .p-experience__sec .p-experience__comments--item-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.6rem;
  font-weight: 400;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 35px;
}
#p-experience .p-experience__sec .p-experience__comments--item-heading::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #00161D;
  margin-right: 15px;
  position: absolute;
  top: 20px;
  left: 0;
}
#p-experience .p-experience__sec .p-experience__comments--item-heading + * {
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__sec .p-experience__comments--item-heading {
    font-size: 2.4rem;
  }
}
#p-experience .p-experience__sec .p-experience__comments--item-par + .p-experience__comments--item-par {
  margin-top: 20px;
}
#p-experience .p-experience__sec .p-experience__comments--item-par.-en {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
}
#p-experience .p-experience__movie {
  background-color: #F7F7F7;
}
#p-experience .p-experience__movie .p-experience__movie--wrapper {
  padding: 120px 0;
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__movie .p-experience__movie--wrapper {
    padding: 90px 0;
  }
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__movie .p-experience__movie--wrapper {
    padding: 70px 0;
  }
}
@media all and (max-width: 1879px) {
  #p-experience .p-experience__movie .p-experience__movie--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  #p-experience .p-experience__movie .p-experience__movie--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  #p-experience .p-experience__movie .p-experience__movie--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__movie .p-experience__movie--wrapper {
    max-width: 100%;
  }
}
#p-experience .p-experience__movie .p-experience__movie--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__movie .p-experience__movie--list {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
#p-experience .p-experience__movie .p-experience__movie--list > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__movie .p-experience__movie--list > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
#p-experience .p-experience__movie .p-experience__movie--list-col {
  max-width: 33.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__movie .p-experience__movie--list-col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #p-experience .p-experience__movie .p-experience__movie--list-col:not(:first-of-type) {
    margin-top: 50px;
  }
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__movie .p-experience__movie--list-col:not(:first-of-type) {
    margin-top: 25px;
  }
}
#p-experience .p-experience__movie .p-experience__movie--item-title {
  font-size: 1.8rem;
  margin-top: 30px;
  text-align: center;
  font-weight: 400;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__movie .p-experience__movie--item-title {
    font-size: 1.5rem;
    margin-top: 15px;
  }
}
#p-experience .p-experience__pages .p-experience__pages--wrapper {
  padding: 120px 0;
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__pages .p-experience__pages--wrapper {
    padding: 90px 0;
  }
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__pages .p-experience__pages--wrapper {
    padding: 70px 0;
  }
}
@media all and (max-width: 1879px) {
  #p-experience .p-experience__pages .p-experience__pages--wrapper {
    max-width: calc(100% - 200px);
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 1599px) {
  #p-experience .p-experience__pages .p-experience__pages--wrapper {
    max-width: calc(100% - 160px);
  }
}
@media all and (max-width: 1439px) {
  #p-experience .p-experience__pages .p-experience__pages--wrapper {
    max-width: calc(100% - 140px);
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__pages .p-experience__pages--wrapper {
    max-width: 100%;
  }
}
#p-experience .p-experience__pages .p-experience__pages--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__pages .p-experience__pages--list {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
#p-experience .p-experience__pages .p-experience__pages--list > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__pages .p-experience__pages--list > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}
#p-experience .p-experience__pages .p-experience__pages--list-col {
  max-width: 33.3333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
}
@media all and (max-width: 1279px) {
  #p-experience .p-experience__pages .p-experience__pages--list-col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  #p-experience .p-experience__pages .p-experience__pages--list-col:not(:first-of-type) {
    margin-top: 25px;
  }
}
#p-experience .p-experience__pages .p-experience__pages--item {
  position: relative;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
#p-experience .p-experience__pages .p-experience__pages--item.is-active {
  pointer-events: none;
}
#p-experience .p-experience__pages .p-experience__pages--item.is-active::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 22, 29, 0.7);
  z-index: 6;
}
#p-experience .p-experience__pages .p-experience__pages--item.is-active .p-experience__pages--item-thumbnail::after {
  display: none;
}
#p-experience .p-experience__pages .p-experience__pages--item:hover .p-experience__pages--item-thumbnail .-bg, #p-experience .p-experience__pages .p-experience__pages--item:active .p-experience__pages--item-thumbnail .-bg, #p-experience .p-experience__pages .p-experience__pages--item:focus .p-experience__pages--item-thumbnail .-bg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#p-experience .p-experience__pages .p-experience__pages--item:hover .p-experience__pages--item-heading::before, #p-experience .p-experience__pages .p-experience__pages--item:active .p-experience__pages--item-heading::before, #p-experience .p-experience__pages .p-experience__pages--item:focus .p-experience__pages--item-heading::before {
  width: 0;
  opacity: 0;
}
#p-experience .p-experience__pages .p-experience__pages--item:hover .p-experience__pages--item-heading .-ja, #p-experience .p-experience__pages .p-experience__pages--item:hover .p-experience__pages--item-heading .-en, #p-experience .p-experience__pages .p-experience__pages--item:active .p-experience__pages--item-heading .-ja, #p-experience .p-experience__pages .p-experience__pages--item:active .p-experience__pages--item-heading .-en, #p-experience .p-experience__pages .p-experience__pages--item:focus .p-experience__pages--item-heading .-ja, #p-experience .p-experience__pages .p-experience__pages--item:focus .p-experience__pages--item-heading .-en {
  color: #7C7C7C;
}
#p-experience .p-experience__pages .p-experience__pages--item-thumbnail {
  position: relative;
  overflow: hidden;
}
#p-experience .p-experience__pages .p-experience__pages--item-thumbnail::before {
  content: "";
  width: 100%;
  padding-top: 56.2%;
  display: block;
}
#p-experience .p-experience__pages .p-experience__pages--item-thumbnail::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 22, 29, 0.5);
  z-index: 3;
}
#p-experience .p-experience__pages .p-experience__pages--item-thumbnail .-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
#p-experience .p-experience__pages .p-experience__pages--item-heading {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 5;
  position: absolute;
  padding-left: 100px;
}
#p-experience .p-experience__pages .p-experience__pages--item-heading::before {
  content: "";
  width: 80px;
  height: 1px;
  left: 0;
  top: 16px;
  position: absolute;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  background-color: #fff;
}
#p-experience .p-experience__pages .p-experience__pages--item-heading .-ja {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  letter-spacing: 0.04em;
  font-size: 2.2rem;
  color: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__pages .p-experience__pages--item-heading .-ja {
    font-size: 1.8rem;
  }
}
#p-experience .p-experience__pages .p-experience__pages--item-heading .-en {
  margin-top: 10px;
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
  color: #C6C6C6;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  font-size: 1.6rem;
}
@media all and (max-width: 767px) {
  #p-experience .p-experience__pages .p-experience__pages--item-heading .-en {
    font-size: 1.4rem;
  }
}
#p-experience .p-experience__foreign {
  font-family: "cormorant-garamond", serif;
  letter-spacing: 0.02em;
}

.js-inview.js-fadein {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.js-inview.js-fadein.is-view {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.js-inview.js-leftin {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.js-inview.js-leftin.is-view {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.js-inview.js-introIn {
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.js-inview.js-introIn.is-view {
  opacity: 1;
}

.js-inview.js-blurIn {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.js-inview.js-blurIn.is-view {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.p-contact__service-wrap{
  margin-top: 30px;
}
@media all and (min-width: 1280px) {
  #p-contact .p-contact__service-wrap{
      padding-left: calc(30% + 15px) !important;
      width: 100%;
    }
    #p-contact .p-contact__service{
      padding: 0 15px;
      gap: 20px 0;
    }
    #p-contact .p-contact__service--col{
      max-width: 33.33%;
      flex-basis: 33.33%;
      margin-top: 0 !important;
    }
}

.l-aside__booking--list.-col5 .l-aside__booking--list-col .c-card__booking--logo{
  width: 80%;
  flex-basis: 80%;
}