/* ##############################################################################

    KEYFRAMES

############################################################################## */

/* @keyframes fx
*************************************************** */
@keyframes fx-down {
  0% {
    top: -64px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@-webkit-keyframes fx-down {
  0% {
    top: -64px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes fx-up {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -64px;
    opacity: 0;
  }
}
@-webkit-keyframes fx-up {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -64px;
    opacity: 0;
  }
}

/* @keyframes fade
*************************************************** */
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* @keyframes spin
*************************************************** */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ##############################################################################

    COMMON

############################################################################## */

/* common
*************************************************** */
html {
  height: 100%;
  overflow-y: scroll;
}
body {
  height: 100%;
}
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.6;
}
table {
  width: 100%;
}
strong {
  padding-bottom: 2px;
  border-bottom: 3px double;
}
@media all and (-ms-high-contrast: none) {
  strong {
    font-family: "ヒラギノUD明朝 W6 JIS2004", "Hiragino UD Serif W6 JIS2004", "メイリオ", "Meiryo", "Lato", "YuGothic",
      "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  }
}
a.link {
  color: #bfa736;
  padding: 4px 0;
  border-bottom: 1px dotted;
  margin: 0 4px;
}
a.link:hover {
  border-color: #fff;
}
.link.link-btn {
  background: #fff;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 2px;
  border: 1px solid rgba(191, 167, 55, 0.5);
  font-size: 75%;
  margin: 0 2px;
}
.link.link-btn:hover {
  background: rgba(191, 167, 55, 0.2);
}
.link.link-btn img {
  vertical-align: text-bottom;
  margin-right: 8px;
}
a.link .small {
  color: #bfa736;
}

@media screen and (max-width: 767px) {
  .link.link-btn {
    padding: 2px 4px;
  }
}

/* layout
*************************************************** */

/* --- inner --- */
.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.inner-xs {
  max-width: 720px;
}
.inner-sm {
  max-width: 960px;
}
.inner-mid {
  max-width: 1320px;
}
.inner-lg {
  max-width: 1515px;
}

/* --- section_pdg --- */
.section_pdg {
  position: relative;
  padding-top: 104px;
  padding-bottom: 104px;
}

.section_pdg-lg {
  padding-top: 160px;
  padding-bottom: 160px;
}
.section_pdg:last-child {
  padding-bottom: 240px;
}
.subpage .section_pdg:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  max-width: 1200px;
  height: 1px;
  border-top: 4px double #ddd;
}
.section_pdg.section_pdg-brdr_none::before {
  display: none;
}

/* --- float --- */
.flt-rgt {
  float: right;
}
.flt-lft {
  float: left;
}

/* --- position --- */
.pos_rel {
  position: relative;
  z-index: 0;
}

/* --- margin --- */
.mgn-btm8 {
  margin-bottom: 8px;
}
.mgn-btm16 {
  margin-bottom: 16px;
}
.mgn-btm24 {
  margin-bottom: 24px;
}
.mgn-btm32 {
  margin-bottom: 32px;
}
.mgn-btm40 {
  margin-bottom: 40px;
}
.mgn-btm48 {
  margin-bottom: 48px;
}
.mgn-btm56 {
  margin-bottom: 56px;
}
.mgn-btm64 {
  margin-bottom: 64px;
}
.mgn-btm72 {
  margin-bottom: 72px;
}
.mgn-btm80 {
  margin-bottom: 80px;
}
.mgn-btm96 {
  margin-bottom: 96px;
}
.mgn-btm104 {
  margin-bottom: 104px;
}

/* --- pc or sp --- */
.pc-none,
.pc-none-inline,
.pc-none-table,
.pc-none-flex {
  display: none;
}
.sp-none {
  display: block;
}
.sp-none-inline {
  display: inline;
}
.sp-none-table {
  display: table;
}
.sp-none-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* --- youtube --- */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 24px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  /* --- inner --- */
  .inner {
    width: 86%;
  }
  .inner .inner {
    width: 100%;
  }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section_pdg-lg {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .section_pdg:last-child {
    padding-bottom: 140px;
  }
  .subpage .section_pdg:not(:last-child)::before {
    border-top: 3px double #ddd;
  }
  /* --- margin --- */
  .mgn-btm16 {
    margin-bottom: 8px;
  }
  .mgn-btm24 {
    margin-bottom: 16px;
  }
  .mgn-btm32 {
    margin-bottom: 16px;
  }
  .mgn-btm40 {
    margin-bottom: 24px;
  }
  .mgn-btm48 {
    margin-bottom: 24px;
  }
  .mgn-btm56 {
    margin-bottom: 32px;
  }
  .mgn-btm64 {
    margin-bottom: 32px;
  }
  .mgn-btm72 {
    margin-bottom: 40px;
  }
  .mgn-btm80 {
    margin-bottom: 40px;
  }
  .mgn-btm96 {
    margin-bottom: 48px;
  }
  .mgn-btm104 {
    margin-bottom: 48px;
  }

  /* --- pc or sp --- */
  .sp-none,
  .sp-none-inline,
  .sp-none-table,
  .sp-none-flex {
    display: none;
  }
  .pc-none {
    display: block;
  }
  .pc-none-inline {
    display: inline;
  }
  .pc-none-table {
    display: table;
  }
  .pc-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/* flex
*************************************************** */

/* --- ブロック要素 --- */
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* --- インライン要素 --- */
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* --- 逆向き --- */
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* --- 縦並び --- */
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* --- 水平方向揃え --- */
.flex-j-start {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-j-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-j-ctr {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-j-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-j-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* --- 垂直方向揃え --- */
.flex-a-start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-a-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-a-ctr {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-a-baseline {
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.flex-a-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* --- 子要素の折り返し設定 --- */
.flex-c-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-c-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* --- 子要素の複数行設定 --- */
.flex-c-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.flex-c-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-c-start {
  -webkit-align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-c-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.flex-c-ctr {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.flex-c-baseline {
  -webkit-align-content: baseline;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
}
.flex-c-stretch {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

/* --- ざっくりflexレイアウト --- */
.flex-col2,
.flex-col3,
.flex-col4,
.flex-col5 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-col1 > * {
  width: 100%;
}
.flex-col2 > * {
  width: 46.5%;
  margin-right: 7%;
  margin-bottom: 7%;
}
.flex-col2.no_pdg > * {
  width: 50%;
  margin-right: 0;
  margin-bottom: 0;
}
.flex-col2 > *:nth-child(even),
.flex-col2.flex-reverse > *:nth-child(odd) {
  margin-right: 0;
}
.flex-col2.flex-reverse > *:nth-child(even) {
  margin-right: 7%;
}
.flex-col2 > *:nth-last-child(-n + 2):not(:nth-child(2n)),
.flex-col2 > *:last-child {
  margin-bottom: 0;
}
.flex-col3 > * {
  width: 31.33%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.flex-col3.no_pdg > * {
  width: calc(100% / 3);
  margin-right: 0;
  margin-bottom: 0;
}
.flex-col3 > *:nth-child(3n + 3) {
  margin-right: 0;
}
.flex-col3 > *:nth-last-child(-n + 3):not(:nth-child(3n)),
.flex-col3 > *:last-child {
  margin-bottom: 0;
}
.flex-col4 > * {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.flex-col4.no_pdg > * {
  width: 25%;
  margin-right: 0;
  margin-bottom: 0;
}
.flex-col4 > *:nth-child(4n + 4) {
  margin-right: 0;
}
.flex-col4 > *:nth-last-child(-n + 4):not(:nth-child(4n)),
.flex-col4 > *:last-child {
  margin-bottom: 0;
}
.flex-col5 > * {
  width: 18%;
  margin-right: 2.5%;
  margin-bottom: 2.5%;
}
.flex-col5.no_pdg > * {
  width: 20%;
  margin-right: 0;
  margin-bottom: 0;
}
.flex-col5 > *:nth-child(5n + 5) {
  margin-right: 0;
}
.flex-col5 > *:nth-last-child(-n + 5):not(:nth-child(5n)),
.flex-col5 > *:last-child {
  margin-bottom: 0;
}

/* --- 左右交互 --- */
.flex-alt:nth-of-type(even) {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-alt:nth-of-type(even) > * {
  margin-right: 0;
}
.flex-alt:nth-of-type(even) > *:nth-child(even) {
  margin-right: 7%;
}

@media screen and (max-width: 768px) {
  /* --- 縦並び - sp --- */
  .flex-sp-block {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
  }

  /* --- 逆向き - sp --- */
  .flex-sp-reverse {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  /* --- ざっくりflexレイアウト - sp --- */
  .flex-col2.flex-sp-block > *,
  .flex-col3.flex-sp-block > *,
  .flex-col4.flex-sp-block > *,
  .flex-col5.flex-sp-block > *,
  .flex-col2 > *:nth-last-child(-n + 2):not(:nth-child(2n)),
  .flex-col3 > *:nth-last-child(-n + 3):not(:nth-child(3n)),
  .flex-col4 > *:nth-last-child(-n + 4):not(:nth-child(4n)),
  .flex-col5 > *:nth-last-child(-n + 5):not(:nth-child(5n)) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
  .flex-col2.flex-sp-reverse > *:nth-last-child(-n + 2):not(:nth-child(2n)),
  .flex-col3.flex-sp-reverse > *:nth-last-child(-n + 3):not(:nth-child(3n)),
  .flex-col4.flex-sp-reverse > *:nth-last-child(-n + 4):not(:nth-child(4n)),
  .flex-col5.flex-sp-reverse > *:nth-last-child(-n + 5):not(:nth-child(5n)),
  .flex-col2.flex-sp-block.no_pdg > *,
  .flex-col3.flex-sp-block.no_pdg > *,
  .flex-col4.flex-sp-block.no_pdg > *,
  .flex-col5.flex-sp-block.no_pdg > *,
  .flex-col2.flex-sp-block:not(.flex-sp-reverse) > *:last-child,
  .flex-col3.flex-sp-block:not(.flex-sp-reverse) > *:last-child,
  .flex-col4.flex-sp-block:not(.flex-sp-reverse) > *:last-child,
  .flex-col5.flex-sp-block:not(.flex-sp-reverse) > *:last-child {
    margin-bottom: 0;
  }
  .flex-sp-col2 > *,
  .flex-sp-col2.flex-col3 > *:nth-child(3n + 3) {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col2 > *:nth-child(even) {
    margin-right: 0;
  }
  .flex-sp-col3 > *,
  .flex-sp-col3.flex-col4 > *:nth-child(4n + 4) {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col3 > *:nth-child(3n + 3) {
    margin-right: 0;
  }
  .flex-sp-block:not(.box) .imgarea,
  .flex-col2.flex-sp-block:not(.box) .imgarea,
  .flex-col3.flex-sp-block:not(.box) .imgarea,
  .flex-col4.flex-sp-block:not(.box) .imgarea,
  .flex-col5.flex-sp-block:not(.box) .imgarea {
    /*画像を横幅いっぱいに*/
    width: 100vw;
    transform: translateX(-7%);
    border-left: none;
    border-right: none;
  }

  /* --- 左右交互 --- */
  .flex-alt:nth-of-type(even) {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-alt:nth-of-type(even) > *:nth-child(even) {
    margin-right: 0;
  }
}

/* bg
*************************************************** */
.bg-pt {
  background-image: url(../images/common/bg-pt01.png);
  background-size: 32px auto;
}
.bg-pt2 {
  background-image: url(../images/common/bg-pt02.png);
}
.bg-pt3 {
  background-image: url(../images/common/bg-pt03.png);
}
.bg-pt4 {
  background-image: url(../images/common/bg-pt04.png);
}
.bg-wh {
  background-color: #fff;
}
.bg-bk {
  background-color: #29262d;
}
.bg-gy {
  background-color: #efefef;
}

/* color
*************************************************** */
.c-wh,
.c-wh a {
  color: #fff;
}
.c-gld,
.c-gld a {
  color: #bfa736;
}
.c-gld-l,
.c-gld-l a {
  color: #cab96c;
}

/* font
*************************************************** */
.f-garamond {
  font-family: "EB Garamond", serif;
  transform: rotate(0.04deg);
}
.f-ten {
  font-family: "ten-mincho", serif;
}
.f-trajan {
  font-family: trajan-pro-3, serif;
}
.f-11 {
  font-size: 69%;
}
.f-12 {
  font-size: 77%;
}
.f-14 {
  font-size: 88%;
}
.f-28 {
  font-size: 175%;
}

@media screen and (max-width: 767px) {
  .f-11 {
    font-size: 70%;
  }
  .f-12 {
    font-size: 70%;
  }
  .f-14 {
    font-size: 86%;
  }
  .f-28 {
    font-size: 158%;
  }
}

/* ttl
*************************************************** */

/* --- page_ttl --- */
.page_ttl,
.page_ttl .inner {
  background-color: #111;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 480px;
}
.page_ttl {
  position: relative;
  height: 520px;
  z-index: -1;
}
.page-style_guide .page_ttl {
  background-image: url(../images/pagettl/pagettl-dummy.jpg);
}
.page-sitemap .page_ttl {
  background-image: url(../images/pagettl/pagettl-sitemap.jpg);
}
.page-about .page_ttl {
  background-image: url(../images/pagettl/pagettl-about.jpg);
}
.page-highlight .page_ttl {
  background-image: url(../images/pagettl/pagettl-highlight.jpg);
}
.page-architecture .page_ttl {
  background-image: url(../images/pagettl/pagettl-architecture.jpg);
}
.page-history .page_ttl {
  background-image: url(../images/pagettl/pagettl-history.jpg);
}
.page-event .page_ttl {
  background-image: url(../images/pagettl/pagettl-event.jpg);
}
.page-info .page_ttl {
  background-image: url(../images/pagettl/pagettl-info.jpg);
}
.page-access .page_ttl {
  background-image: url(../images/pagettl/pagettl-access.jpg);
}
.page-guidetour .page_ttl {
  background-image: url(../images/pagettl/pagettl-guidetour.jpg);
}
.page-activity .page_ttl {
  background-image: url(../images/pagettl/pagettl-activity.jpg);
}
.page-application .page_ttl {
  background-image: url(../images/pagettl/pagettl-application.jpg);
}
.page-disclosure .page_ttl {
  background-image: url(../images/pagettl/pagettl-disclosure.jpg);
}
.page-ethics .page_ttl {
  background-image: url(../images/pagettl/pagettl-ethics.jpg);
}
.page-contract .page_ttl {
  background-image: url(../images/pagettl/pagettl-contract.jpg);
}
.page-gallery .page_ttl,
.page-digital .page_ttl {
  background-image: url(../images/pagettl/pagettl-gallery.jpg);
}
.page-link .page_ttl {
  background-image: url(../images/pagettl/pagettl-link.jpg);
}
.page-privacy .page_ttl {
  background-image: url(../images/pagettl/pagettl-link.jpg);
}
.archive-news .page_ttl,
.single-news .page_ttl {
  background-image: url(../images/pagettl/pagettl-news.jpg);
}
.page_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.page_ttl .inner {
  position: relative;
  padding-top: 72px;
  padding-bottom: 40px;
}
.page_ttl .inner::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 51px;
  height: 24px;
  background-image: url(../images/common/usagi-white.png);
  background-repeat: no-repeat;
  background-position: center;
}
.page_ttl-jp,
.page_ttl-en {
  display: block;
}
.page_ttl-jp {
  font-size: 320%;
}
.page_ttl-en {
  font-size: 120%;
  text-transform: uppercase;
}

/* --- section_ttl --- */
.section_ttl {
  font-family: "ten-mincho", serif;
  font-weight: 500;
}
.section_ttl {
  font-size: 200%;
  text-align: center;
  letter-spacing: 0.2em;
  padding-top: 1.25em;
  background-image: url(../images/common/usagi-black.png);
  background-repeat: no-repeat;
  background-position: center top;
}

@media screen and (max-width: 767px) {
  /* --- page_ttl --- */
  .page_ttl {
    margin-top: 64px;
    height: 320px;
  }
  .page_ttl,
  .page_ttl .inner {
    background-size: auto 320px;
  }
  .page-style_guide .page_ttl {
    background-image: url(../images/pagettl/pagettl-dummy_sp.jpg);
  }
  .page-sitemap .page_ttl {
    background-image: url(../images/pagettl/pagettl-sitemap_sp.jpg);
  }
  .archive-news .page_ttl,
  .single-news .page_ttl {
    background-image: url(../images/pagettl/pagettl-news_sp.jpg);
  }
  .page_ttl .inner {
    padding-top: 56px;
    padding-bottom: 31px;
  }
  .page_ttl .inner::before {
    top: 20px;
    width: 40px;
    height: 19px;
    background-image: url(../images/common/usagi-white_sp.png);
    background-size: 40px;
  }

  /* --- section_ttl --- */
  .section_ttl {
    font-size: 172%;
    background-image: url(../images/common/usagi-black_sp.png);
    padding-top: 1em;
    background-size: 40px;
  }
}

/* txt & img
*************************************************** */

.inner > .txtarea {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.img-ctr {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.txtarea p {
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;
  text-align: justify;
}
.brdr-double {
  border: 4px double #ddd;
}
.txt-ctr,
.txtarea .txt-ctr {
  text-align: center;
}
.txt-rgt,
.txtarea .txt-rgt {
  text-align: right;
}
.sup {
  font-size: 50%;
  vertical-align: super;
}

@media screen and (max-width: 767px) {
  .sp-lft {
    text-align: left;
  }
  .sp-ctr {
    text-align: center;
  }
  .imgarea img {
    width: 100%;
  }
  .brdr-double {
    border: 3px double #ddd;
  }
}

/* btn
*************************************************** */
.btn {
  position: relative;
  display: table;
  padding: 0.5em 1em 0.5em 2.5em;
  margin-left: auto;
  margin-right: auto;
  font-size: 115%;
  font-family: "ten-mincho", serif;
}
.btn.txt-lft {
  margin-left: 0;
}
.flex > .btn {
  margin-left: 24px;
  margin-right: 24px;
}
.btn.brdr {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1em;
  bottom: 0;
  width: 12px;
  height: 12px;
  border: 2px solid #000;
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
  margin: auto;
}
.c-wh .btn::after {
  border-color: #fff;
}
.c-gld-l .btn::after {
  border-color: #cab96c;
}

@media screen and (min-width: 768px) {
  a.btn:hover,
  .c-wh a.btn:hover {
    color: #bfa736;
  }
  a.btn:hover::after,
  .c-wh a.btn:hover::after {
    animation: spin 1s linear infinite;
    border-color: #bfa736;
    border-right-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    line-height: 1.4;
  }
  .btn::after {
    width: 10px;
    height: 10px;
  }
  .flex-sp-block > .btn {
    margin-left: auto;
    margin-right: auto;
  }
}

/* box
*************************************************** */
.box {
  padding: 56px 64px;
}
.box.sm {
  padding: 40px;
}
.box.mid {
  padding: 40px 56px;
}
.box-brdr {
  border: 4px double #ddd;
}

@media screen and (max-width: 767px) {
  .box,
  .box.sm,
  .box.mid {
    padding: 24px;
  }
  .box-brdr {
    border: 3px double #ddd;
  }
}

/* waypoint
*************************************************** */
.waypoint.fadein,
.waypoint.fadein-top,
.waypoint.fadein-btm,
.waypoint.fadein-lft,
.waypoint.fadein-rgt {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
}
.waypoint.fadein-top {
  transform: translateY(16px);
}
.waypoint.fadein-btm {
  transform: translateY(-16px);
}
.waypoint.fadein-lft {
  transform: translateX(16px);
}
.waypoint.fadein-rgt {
  transform: translateX(-16px);
}
.waypoint.fadein.active {
  opacity: 1;
}
.waypoint.fadein-top.active,
.waypoint.fadein-btm.active,
.waypoint.fadein-lft.active,
.waypoint.fadein-rgt.active {
  transform: translate(0);
  opacity: 1;
}
li.waypoint.fadein:nth-child(2),
li.waypoint.fadein-top:nth-child(2),
li.waypoint.fadein-btm:nth-child(2),
li.waypoint.fadein-lft:nth-child(2),
li.waypoint.fadein-rgt:nth-child(2) {
  transition-delay: 0.1s;
}
li.waypoint.fadein:nth-child(3),
li.waypoint.fadein-top:nth-child(3),
li.waypoint.fadein-btm:nth-child(3),
li.waypoint.fadein-lft:nth-child(3),
li.waypoint.fadein-rgt:nth-child(3) {
  transition-delay: 0.2s;
}
li.waypoint.fadein:nth-child(4),
li.waypoint.fadein-top:nth-child(4),
li.waypoint.fadein-btm:nth-child(4),
li.waypoint.fadein-lft:nth-child(4),
li.waypoint.fadein-rgt:nth-child(4) {
  transition-delay: 0.3s;
}
li.waypoint.fadein:nth-child(5),
li.waypoint.fadein-top:nth-child(5),
li.waypoint.fadein-btm:nth-child(5),
li.waypoint.fadein-lft:nth-child(5),
li.waypoint.fadein-rgt:nth-child(5) {
  transition-delay: 0.4s;
}
li.waypoint.fadein:nth-child(6),
li.waypoint.fadein-top:nth-child(6),
li.waypoint.fadein-btm:nth-child(6),
li.waypoint.fadein-lft:nth-child(6),
li.waypoint.fadein-rgt:nth-child(6) {
  transition-delay: 0.5s;
}
.waypoint.brdr::before,
.home_highlight--link.off .home_highlight--txt::before {
  width: 0;
}
.waypoint.brdr.active::before,
.brdr:not(.waypoint)::before,
.home_highlight--link.on .home_highlight--txt::before {
  width: 40px;
}

@media screen and (max-width: 767px) {
  .waypoint.brdr.active::before,
  .brdr:not(.waypoint)::before,
  .home_highlight--link.on .home_highlight--txt::before {
    width: 32px;
  }
}

/* ##############################################################################

    HEADER

############################################################################## */

/* header
*************************************************** */
.header {
  width: 100%;
  z-index: 9999;
}
header.fadein {
  animation: fadein 0.6s cubic-bezier(0, 0, 0.33, 0.99);
  opacity: 1;
}
header.fadeout {
  animation: fadeout 0.6s cubic-bezier(0, 0, 0.33, 0.99);
  opacity: 0;
}
.header-fx {
  position: fixed;
  transform: translateY(-84px);
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 4px double #ddd;
}
.header-fx.fx-down {
  animation: fx-down 0.6s cubic-bezier(0, 0, 0.33, 0.99);
  transform: translateY(0);
}
.header-fx.fx-up {
  animation: fx-up 0.6s cubic-bezier(0, 0, 0.33, 0.99);
  transform: translateY(-84px);
}
.home header {
  border-bottom: 4px double #ddd;
}
.subpage .header .inner,
.header-fx .inner {
  position: relative;
}
.header--sns_lang {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10000;
}
#hero .header--sns_lang {
  top: 5px;
}
.header--sns {
  position: relative;
  padding-right: 16px;
  z-index: 2;
}
.header--sns li:not(:last-child) {
  margin-right: 16px;
}
.header--sns a:hover {
  opacity: 0.7;
}
.header--lang {
  position: relative;
  color: #bfa737;
  font-weight: bold;
  text-transform: uppercase;
  transform: scale(1, 0.9);
}
.header--lang-list a {
  line-height: 12px;
  padding: 0 10px;
  border-left: 0.5px solid rgba(191, 167, 54, 0.75);
  height: 12px;
  display: inline-block;
  letter-spacing: 0;
  color: rgb(191, 167, 54);
}
.header--lang-list li:last-child a {
  border-right: 0.5px solid rgba(255, 255, 255, 0.75);
}
.header--lang .c-wh a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}
.header--lang .c-wh li:last-child a {
  border-color: rgba(255, 255, 255, 0.75);
}
.header--lang .c-wh a:hover {
  color: #bfa736;
}
.header--logo .inner {
  width: 100%;
}
.header--logo a {
  display: block;
}
.header--logo a:hover {
  opacity: 0.7;
}
.header--logo img.logo {
  height: 35px;
}

.hero_info {
  position: absolute;
  left: 0;
  bottom: 32px;
  width: 100%;
  color: #fff;
}
.hero_info--ttl {
  margin-bottom: 8px;
  text-align: center;
}
.hero_info--list .post {
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.hero_info--list .post--date {
  margin-right: 16px;
}
.hero_info--list .post--ttl {
  flex: 1;
  font-size: 1rem;
}
.hero_info a {
  color: #fff;
}
.hero_info a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1500px) {
  .header {
    font-size: 90%;
  }
  .header--sns {
    margin-right: 16px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1272px) {
  .header-fx,
  .header-fx.fx-up {
    top: -118px;
  }
  .subpage .header,
  .header-fx {
    font-size: 88%;
  }
  .subpage .header .inner,
  .header-fx .inner {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 95%;
  }
  .subpage .header--logo,
  .header-fx .header--logo {
    text-align: center;
    width: 100%;
    padding-top: 16px;
  }
  .subpage .header--nav,
  .header-fx .header--nav {
    width: 100%;
  }
  .subpage .header--sns_lang,
  .header-fx .header--sns_lang {
    position: absolute;
    top: 16px;
    right: 0;
  }
  .subpage .header--langs,
  .header-fx .header--langs {
    top: -28px;
  }
  .subpage .header:not(.header-fx) .header--langs {
    padding-top: 137px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    font-size: 100%;
  }
  .home header {
    border-bottom: 3px double #ddd;
  }
  .header--logo {
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    z-index: 9999;
    height: 64px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 3px double #ddd;
  }
  .header.active .header--logo {
    background-color: #fff;
    background-image: none;
    border-color: #fff;
  }
  .header--logo .inner {
    width: 86%;
  }
  .header--logo a {
    position: relative;
    height: 33px;
  }
  .header--logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
  }
  .header--logo .logo-gld,
  .header.active .header--logo .logo {
    opacity: 0;
  }
  .header.active .header--logo .logo-gld {
    opacity: 1;
  }
  .header--sns_lang,
  #hero .header--sns_lang {
    position: fixed;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    top: 64px;
    left: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 40px;
    padding: 0 7%;
    background: #fff;
    transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
  }
  .header.active .header--sns_lang,
  .header.active #hero .header--sns_lang {
    opacity: 1;
    pointer-events: auto;
  }
  .header--lang {
    font-size: 100%;
  }
  .header--langs,
  .subpage .header:not(.header-fx) .header--langs {
    padding-top: 28px;
    padding-right: 0;
  }
  .header--langs {
    width: 86vw;
    left: 50%;
    right: inherit;
    transform: translateX(-57%);
  }
  .header--langs ul {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .header--langs li {
    position: relative;
  }
  .header--langs li:not(:last-child) {
    margin-right: 0;
  }
  .header--lang-list li:last-child a {
    padding-right: 0;
  }
  .header--langs li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 1em;
    background-color: #bbb;
  }
  .header--langs a,
  .header--langs a:hover {
    background-color: transparent;
  }
  .header--langs a {
    border: none;
    color: #bbb;
    padding: 0 0.8em;
  }

  .hero_info {
    bottom: 16px;
  }
  .hero_info .post {
    align-items: flex-start;
    margin-bottom: 0;
  }
  .hero_info--list .post--date {
    margin-right: 0;
    font-size: 0.875rem;
  }
  .hero_info--list .post--ttl {
    font-size: 0.85rem;
  }
}

/* hero
*************************************************** */
#hero {
  position: relative;
  padding: 36px 8px 0;
  width: 100%;
  height: calc(100vh - 84px);
}
.hero--konzatsu {
  position: absolute;
  right: 16px;
  font-size: 80%;
  z-index: 9999;
  top: 44px;
  border-radius: 2px;
}

.inner-hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.inner-hero::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 13, 31, 0.3);
}
.hero--ttl {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.hero--vid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  max-width: inherit;
  min-height: 100%;
  z-index: -1;
}

@media (min-width: 768px) and (max-height: 800px) {
  #hero {
    height: 680px;
  }
  .hero--ttl {
    top: 35%;
  }
}
@media screen and (max-width: 767px) {
  #hero {
    padding: 64px 0 0;
    height: 560px;
    overflow: hidden;
  }
  .hero--konzatsu {
    top: 80px;
    left: auto;
    bottom: auto;
    font-size: 84%;
    margin: auto;
  }
  .header.active .hero--konzatsu {
    opacity: 0;
    pointer-events: none;
  }
  .hero--ttl img {
    display: none;
  }
  .hero--vid {
    width: 100vw;
    height: auto;
  }
}

@media screen and (max-width: 320px) {
  #hero {
    height: 480px;
  }
}

/* gnav
*************************************************** */
.gnav {
  margin-right: -24px;
}
.gnav--list li {
  position: relative;
}
.gnav--list a {
  position: relative;
  height: 106px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 1.5em;
  font-size: 93%;
  letter-spacing: 0.2em;
  z-index: 1;
}
.gnav--list a[href="javascript:void(0)"] {
  cursor: default;
}
.gnav--list a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(0.5em);
  width: 1em;
  height: 1px;
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
  opacity: 0;
}
.gnav--list a[href="javascript:void(0)"]::before {
  display: none;
}
.gnav--list a::before {
  top: 3em;
  background-color: #bfa736;
}
.gnav--list a:hover {
  color: #bfa736;
}
.gnav--list a:hover::before {
  transform: translateY(0);
  opacity: 1;
}
.home .gnav--home {
  display: none;
}
.page-about .gnav--about,
.page-highlight .gnav--highlight,
.page-architecture .gnav--architecture,
.page-history .gnav--history,
.page-event .gnav--event,
.page-info .gnav--info,
.page-access .gnav--access,
.page-guidetour .gnav--guidetour,
.page-activity .gnav--activity,
.page-application .gnav--application,
.page-disclosure .gnav--disclosure,
.page-ethics .gnav--ethics,
.page-contract .gnav--contract,
.page-link .gnav--link,
.page-info .gnav--guide,
.page-access .gnav--guide,
.page-guidetour .gnav--guide,
.page-activity .gnav--guide,
.page-application .gnav--guide,
.page-disclosure .gnav--others,
.page-ethics .gnav--others,
.page-link .gnav--others,
.archive-news .gnav--news,
.single-news .gnav--news {
  color: #bfa736;
}
.home .gnav--list a {
  height: 84px;
}
.header-fx .gnav--list a {
  height: 80px;
  padding: 0 1.5em;
}
.has_snav::after {
  content: "";
  display: block;
  position: absolute;
  right: 14px;
  top: -10px;
  bottom: 0;
  margin: auto;
  width: 4px;
  height: 4px;
  background: #decc78;
  border-radius: 2px;
}
.snav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 72px;
  width: 216px;
  margin: auto;
  padding: 32px;
  background: #fff;
  border: 4px double #ddd;
  z-index: 9999;
  white-space: nowrap;
  display: none;
}
.home .snav {
  top: 85px;
}
.header-fx .snav {
  top: 65px;
}
.snav--list {
  border-top: 1px dotted #ddd;
}
.snav--list li:not(:last-child) {
  margin-bottom: 1px;
}
.snav--list a,
.home .snav--list a,
.header-fx .snav--list a {
  height: 40px;
  font-size: 100%;
  -webkit-justify-content: start;
  justify-content: start;
  padding: 0;
  border-bottom: 1px dotted #ddd;
}
.snav--list a {
  color: #29262d;
}
.snav--list a::before {
  display: none;
}

@media screen and (max-width: 1400px) {
  .gnav--list a {
    padding: 0 1em;
  }
  .has_snav::after {
    right: 8px;
  }
  .snav--list a {
    padding: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1172px) {
  .subpage .header .gnav--list > li > a,
  .header-fx .gnav--list > li > a {
    height: 64px;
  }
  .subpage .snav,
  .header-fx .snav {
    top: 64px;
  }
}

@media screen and (min-width: 768px) and (max-width: 840px) {
  .home .header:not(.header-fx) .gnav--list > li > a {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    width: 64px;
    height: 156px;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    padding: 1em;
  }
  .home .header:not(.header-fx) .snav {
    top: 156px;
  }
  .gnav--list a::before {
    top: inherit;
  }
}

@media screen and (max-width: 767px) {
  .gnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
    opacity: 0;
    z-index: -1;
    overflow: auto;
    padding-bottom: 40px;
    padding-top: 114px;
  }
  .header.active .gnav {
    pointer-events: all;
    opacity: 1;
    z-index: 10;
  }
  .gnav_btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 80px;
    height: 64px;
    z-index: 10000;
  }
  .gnav_btn--lines {
    position: relative;
    width: 32px;
    height: 32px;
  }
  .gnav_btn--lines > span {
    transition: all 0.4s cubic-bezier(0, 0, 0.33, 0.99);
  }
  .gnav_btn--lines > * {
    position: absolute;
  }
  .gnav_btn--lines > span {
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #29262d;
  }
  .gnav_btn--lines > span:nth-of-type(1) {
    top: 0;
  }
  .gnav_btn--lines > span:nth-of-type(2) {
    width: 80%;
    top: 8px;
  }
  .gnav_btn--lines > span:nth-of-type(3) {
    top: 16px;
  }
  .header.active .gnav_btn--lines > span {
    background-color: #cab86c;
  }
  .header.active .gnav_btn--lines > span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-30deg);
    transform: translateY(8px) rotate(-30deg);
  }
  .header.active .gnav_btn--lines > span:nth-of-type(2) {
    opacity: 0;
  }
  .header.active .gnav_btn--lines > span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(30deg);
    transform: translateY(-8px) rotate(30deg);
  }
  .gnav_btn--lines p {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 71%;
    height: 1em;
    line-height: 1;
  }
  .gnav_btn--lines p span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0, 0, 0.33, 0.99);
  }
  .header.active .gnav_btn--lines p span {
    color: #cab86c;
  }
  .gnav_btn--lines .close,
  .header.active .gnav_btn--lines .menu {
    opacity: 0;
  }
  .header.active .gnav_btn--lines .close {
    opacity: 1;
  }
  .gnav--list {
    width: 86%;
    margin-left: auto;
    margin-right: auto;
  }
  .gnav--list {
    border-top: 0.5px solid #ddd;
  }
  .gnav--list li {
    border-bottom: 0.5px solid #ddd;
  }
  .gnav--list li + li {
    border-top: 0;
  }
  .gnav--list a,
  .home .gnav--list a {
    height: 48px;
    padding: 0 24px;
    text-align: left;
    font-size: 100%;
    display: block;
    line-height: 48px;
  }
  .gnav--list a:hover::before {
    display: none;
  }
  .has_snav::after {
    top: 22px;
    width: 16px;
    height: 1px;
    background: transparent;
    border-top: 4px double #decc78;
    border-radius: 0;
    bottom: auto;
  }
  .snav {
    position: static;
    top: inherit;
    left: inherit;
    transform: translateX(0);
    padding: 0;
    border: none;
    width: calc(100% - 24px);
    right: 0;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .snav--list li {
    border: none;
  }
  .snav--list a,
  .home .snav--list a {
    height: 40px;
    line-height: 40px;
  }
  .snav--list li:last-child {
    border-bottom: 0;
  }
}

/* ##############################################################################

    FOOTER

############################################################################## */

/* pagetop
*************************************************** */
.pagetop {
  position: fixed;
  bottom: 48px;
  right: 24px;
  width: 48px;
  height: 66px;
  padding-top: 50px;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
  z-index: -1;
}
.pagetop.show {
  opacity: 1;
  z-index: 9999;
}
.pagetop::before,
.pagetop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.pagetop::before {
  top: 0;
  width: 48px;
  height: 48px;
  border: 1px solid #a0a0a0;
  border-radius: 50%;
}
.pagetop::after {
  top: 20px;
  width: 30px;
  height: 30px;
  border-top: 1px solid #a0a0a0;
  border-right: 1px solid #a0a0a0;
  -webkit-transform: rotate(-45deg) skew(-2deg, -2deg);
  transform: rotate(-45deg) skew(-2deg, -2deg);
}
.pagetop:hover::before,
.pagetop:hover::after {
  border-color: #bfa736;
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 7%;
    right: 7%;
    width: 40px;
    height: 55px;
    padding-top: 42px;
  }
  .pagetop::before {
    width: 40px;
    height: 40px;
  }
  .pagetop::after {
    top: 17px;
    width: 25px;
    height: 25px;
  }
}

/* footer
*************************************************** */
.footer {
  position: relative;
  margin-top: -120px;
}
.footer--top {
  background-image: url(../images/common/bg--footer.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1920px;
  padding-top: 80px;
  padding-bottom: 106px;
}
.footer--logo a:hover {
  opacity: 0.7;
}
.footer--info p,
.fnav--list li {
  line-height: 1.5;
}
.footer--info .contact span,
.fnav--list li {
  position: relative;
}
.footer--info .contact span:not(:last-child) {
  padding-right: 1.5em;
  margin-right: 1.5em;
}
.footer--info .bunkacho img {
  margin-right: 12px;
}
.footer--nav {
  opacity: 0.75;
}
.fnav--list li:not(:first-child) a {
  padding-left: 1.5em;
}
.fnav--list li:not(:last-child) a {
  padding-right: 1.5em;
}
.footer--info .contact span:not(:last-child)::before,
.fnav--list li:not(:last-child)::before,
.wp-pagenavi-single a:not(:last-child)::before,
.cat_list li:not(:last-child) a::before,
.sitemap--item.sitemap--item-taxonomy li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 1em;
}
.pbl {
  margin-right: 16px;
  opacity: 0.25;
}
@media all and (-ms-high-contrast: none) {
  .footer--info .contact span:not(:last-child)::before,
  .fnav--list li:not(:last-child)::before,
  .wp-pagenavi-single a:not(:last-child)::before,
  .cat_list li:not(:last-child) a::before,
  .sitemap--item.sitemap--item-taxonomy li:not(:last-child)::after {
    bottom: 10%;
  }
}
.footer--info .contact span:not(:last-child)::before {
  background-color: #29262d;
}
.fnav--list li:not(:last-child)::before {
  background-color: #706c73;
}
.footer--btm {
  background-color: #1a161f;
  padding-top: 8px;
  padding-bottom: 8px;
}
.fnav--list a {
  display: block;
}
.footer--copyright {
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .footer {
    margin-top: -64px;
  }
  .inner-footer {
    width: 100%;
  }
  .footer--top {
    background-image: url(../images/common/bg--footer_sp.png);
    background-size: cover;
    padding-top: 2.5vw;
    padding-bottom: 40px;
  }
  .footer--logo {
    width: 32px;
  }
  .footer--info .contact span:not(:last-child) {
    padding-right: 0;
    margin-right: 0;
  }
  .footer--btm {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .footer--info .contact span:not(:last-child)::before {
    display: none;
  }
  .footer--info .bunkacho {
    margin-top: 16px;
  }
  .footer--info .bunkacho img {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .footer--nav {
    font-size: 75%;
  }
  .fnav--list {
    display: block;
  }
  .fnav--list li {
    text-align: center;
  }
  .fnav--list a {
    padding: 4px;
  }
  .footer--copyright {
  }
}

/* ##############################################################################

    INDEX

############################################################################## */

/* .home_snav
*************************************************** */
.home_snav.fixed {
  top: auto;
  bottom: 76px;
}

/* .home_attention
*************************************************** */
.home_attention {
  padding-bottom: 0;
}
.home_attention .table_default th,
.home_attention .table_default td {
  vertical-align: middle;
}
.home_attention .table_default th {
  text-align: center;
  width: 35%;
}
@media screen and (max-width: 767px) {
  .home_attention {
    padding-bottom: 40px;
  }
  .home_attention .table_default th {
    width: 100%;
  }
}

/* .home_video
*************************************************** */
.home_video {
  padding-bottom: 0;
}
.home_video h5 {
  margin-bottom: 1.4em;
}
.home_video--links .flex {
  margin-left: auto;
  width: 300px;
}
.home_video--links .flex a {
  width: 18%;
  padding-top: 8px;
  padding-bottom: 8px;
}
.home_video--links .flex a,
.home_video .btn {
  background: #fff;
  border: 1px solid #ddd;
}
.home_video--links .flex a:hover {
  color: #bfa736;
}
.home_video .btn {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .home_video {
    padding-bottom: 52px;
  }
  .home_video .btn {
    margin-right: auto;
  }
  .home_video--links .flex {
    width: 230px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
  }
  .home_video--links .flex a {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .home_video .btn {
    background: none;
    border: none;
  }
}

/* home_event
*************************************************** */
.home_event {
  padding-bottom: 120px;
}
.home_event .post {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .home_event {
    padding-bottom: 52px;
  }
}

/* home_grid
*************************************************** */
.home_grid {
  position: relative;
  overflow: hidden;
}
.home_grid--img {
  position: absolute;
  height: 100%;
  top: 0;
}
.home_overview--img {
  left: 0;
  width: 45%;
}
.home_history--img {
  right: 0;
  width: 55%;
}
.home_grid--content {
  position: relative;
}
.home_overview--content {
  width: 51.5%;
  margin-left: auto;
  padding-top: 440px;
  padding-bottom: 104px;
  padding-right: 240px;
}
.home_history--content {
  width: 36%;
  margin-right: auto;
  padding-top: 164px;
  padding-bottom: 124px;
}
.home_grid--img img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  min-width: 100%;
  max-width: inherit;
  min-height: 100%;
}
.home_overview--img img {
  right: 0;
}
.home_history--img img {
  left: 0;
}
.home_overview--ttl {
  position: absolute;
  top: 0;
  right: 0;
}
.home_grid--ttl {
  font-weight: 500;
}
.home_grid--txt {
  text-align: justify;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .home_grid--img {
    height: 60vw;
  }
  .home_overview--img,
  .home_overview--content,
  .home_history--img,
  .home_history--content {
    width: 100%;
  }
  .home_overview--content.section_pdg:last-child,
  .home_history--content:last-child {
    padding-bottom: 40px;
  }
  .home_grid--img {
    overflow: hidden;
  }
  .home_grid--img img {
    width: 100%;
  }
  .home_history--img img {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .home_overview--content,
  .home_history--content {
    padding-top: calc(60vw + 40px);
    padding-right: 0;
  }
  .home_overview--ttl {
    position: static;
    top: inherit;
    right: inherit;
  }
}

/* home_hightlight
*************************************************** */
.home_highlight--link {
  position: relative;
  overflow: hidden;
  height: 25vw;
  min-height: 480px;
}
.home_highlight--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
  z-index: 1;
}
.home_highlight--link.on::before {
  background-color: rgba(26, 22, 31, 0.7);
}
.home_highlight--content {
  width: 70%;
  max-width: 320px;
  position: relative;
  z-index: 2;
}
.home_highlight--img,
.home_highlight--ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
}
.home_highlight--img {
  min-width: 100%;
  max-width: inherit;
  min-height: 100%;
}
.home_highlight--ttl {
  font-size: 156%;
  font-weight: 500;
}
.home_highlight--link.on .home_highlight--ttl {
  top: 0%;
  transform: translate(-50%, 0);
}
.home_highlight--txt,
.home_highlight .btn,
.home_highlight .btn::after {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
  transition-delay: 0.4s;
}
.home_highlight--txt,
.home_highlight .btn {
  transition-delay: 0.6s;
}
.home_highlight--link.off .home_highlight--txt,
.home_highlight--link.off .btn,
.home_highlight .btn::after {
  transition-delay: 0s;
}
.home_highlight--link.on .home_highlight--txt,
.home_highlight--link.on .btn,
.home_highlight--link.on .btn::after {
  opacity: 1;
}
.home_highlight--txt {
  position: relative;
  padding-top: 24px;
  margin-top: 32px;
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;
  text-align: justify;
  color: #bbb;
}
.home_highlight--txt::before {
  transition-delay: 0.6s;
}

@media screen and (max-width: 767px) {
  .home_highlight--link.on::before {
    display: none;
  }
  .home_highlight--img {
    width: 110%;
    border-top: 0.5px solid #000;
    object-fit: cover;
  }
  .home_highlight--txt {
    padding-top: 20px;
    margin-top: 16px;
    color: #fff;
    text-shadow: 0 0 1px #000;
  }
  .home_highlight--txt .small {
    color: #eee;
  }
}

/* home_value
*************************************************** */
.home_value {
  background-image: url(../images/value_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.home_value .heading-3 {
  line-height: 2;
}
.home_value .inner > .txtarea {
  margin-top: 3em;
  max-width: 780px;
}
.home_value .txt-attention {
  color: #bbb;
}

/* ##############################################################################

    PAGE

############################################################################## */

/* page-about
*************************************************** */
.about_pr_movie {
  line-height: 1;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 80px;
}
.about_pr_movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-width: 767px) {
  .about_pr_movie {
    margin-bottom: 40px;
  }
  .page-about .txtarea p.txt-ctr {
    text-align: left;
  }
}

/* page-highlight
*************************************************** */
.highlight_menu {
  width: 800px;
  margin: 0 auto;
}
.highlight_menu a {
  position: relative;
  background: #fff;
  margin: 0 4px 8px;
  border: 1px solid #aaa;
  border-radius: 0;
  width: 256px;
  overflow: hidden;
}
.highlight_menu a::before {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: 14px;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  background: #ddd;
  border-radius: 5px;
  transition: all 0.2s cubic-bezier(0, 0, 0.33, 0.99);
}
.highlight_menu a:hover {
  border-color: #decc78;
}
.highlight_menu a:hover::before {
  background-color: #decc78;
  width: 6px;
  height: 6px;
  right: 13px;
}
.highlight_menu h4 {
  padding: 0 24px;
}
.highlight--movie {
  line-height: 1;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.highlight--movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.highlight--imgarea li {
  max-width: calc(50% - 4px);
}

@media screen and (max-width: 767px) {
  .highlight_about .txtarea .txt-ctr {
    text-align: left;
  }
  .highlight_menu {
    width: 100%;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .highlight_menu li {
    width: calc(50% - 2px);
    height: 56px;
    margin-bottom: 4px;
  }
  .highlight_menu a {
    width: 100%;
    margin: 0;
    height: 56px;
  }
  .highlight_menu a .imgarea {
    overflow: hidden;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #aaa;
    margin-left: 8px;
    border: 1px solid #aaa;
  }
  .highlight_menu a .imgarea img {
    width: auto;
    max-width: 52px;
    margin-left: -7px;
  }
  .highlight_menu h4 {
    padding: 0 12px;
  }
  .highlight--imgarea,
  .highlight--txtarea {
    width: 100%;
  }
  .highlight--imgarea {
    margin-bottom: 24px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .highlight--imgarea li {
    max-width: 100%;
    margin-bottom: 8px;
  }
}

/* page-architecture
*************************************************** */

.map--box {
  position: relative;
}
.map--ttl_box {
  position: absolute;
  top: 45px;
  left: 5%;
}
.map--ttl {
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 200%;
  font-weight: 500;
  letter-spacing: 0.6em;
  padding: 1em 0.75em 1.9em 0.75em;
  border: 1px solid;
  border-top: 4px solid;
  background-color: #fff;
  margin-right: 32px;
}
.map--dl {
  padding-top: 0;
}
.map--dl dt {
  position: relative;
}
.map--dl dt::after {
  content: "…";
  padding-left: 0.8em;
  padding-right: 1em;
}
.map--dl dd {
  line-height: 1.6;
}
.map--list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map--list li {
  position: absolute;
  cursor: pointer;
}
.map--list .map--link01 {
  bottom: 30%;
  left: 31%;
}
.map--list .map--link02 {
  bottom: 46.5%;
  left: 41%;
}
.map--list .map--link03 {
  bottom: 54.5%;
  left: 41.5%;
}
.map--list .map--link04 {
  bottom: 60.5%;
  left: 43%;
}
.map--list .map--link05 {
  bottom: 59%;
  left: 51%;
}
.map--list .map--link06 {
  bottom: 58%;
  left: 57%;
}
.map--list .map--link07 {
  bottom: 58.5%;
  left: 67.5%;
}
.map--list .map--link08 {
  bottom: 68%;
  left: 64%;
}
.map--list .map--link09 {
  bottom: 72%;
  left: 58%;
}
.map--list .map--link10 {
  bottom: 76.5%;
  left: 62%;
}
.map--list .map--link11 {
  bottom: 81%;
  left: 64%;
}
.map--list .map--link12 {
  bottom: 79%;
  left: 74%;
}
.map--list .map--link13 {
  bottom: 85%;
  left: 70.5%;
}
.map--list .map--link14 {
  bottom: 66%;
  left: 47.5%;
}
.map--list .map--link15 {
  bottom: 66.5%;
  left: 37%;
}
.map--list .map--link16 {
  bottom: 59%;
  left: 35%;
}
.map--list .map--link17 {
  bottom: 80%;
  left: 34%;
}
.map--link {
  display: block;
}
.map--txt {
  padding: 0 16px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
  z-index: 1;
  pointer-events: none;
  font-size: 80%;
  background: #fff;
  border: 1px solid;
  box-shadow: 6px 8px 5px -2px rgba(0, 0, 0, 0.33);
}
.map--txt::before,
.map--txt::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #29262d transparent transparent transparent;
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
}
.map--txt::after {
  bottom: -4px;
  border-width: 5px 4px 0 4px;
  border-color: #ffffff transparent transparent transparent;
}
.map--link:hover .map--txt {
  background: #f7f0d3;
}
.map--link:hover .map--txt::after {
  border-color: #f7f0d3 transparent transparent transparent;
}
.map--num {
  background: #29262d;
  color: #decc78;
  font-size: 75%;
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 13px;
  text-align: center;
  line-height: 24px;
  position: absolute;
  left: -13px;
  top: -8px;
  letter-spacing: 0;
  border: 1px solid rgba(222, 204, 120, 0.5);
}
.map--content {
  position: relative;
  padding-bottom: 80px;
  margin-bottom: 24px;
  width: calc(50% - 12px);
}
.map--content .heading-2 {
  margin-bottom: 1em;
}
.map--content .heading-2 small {
  display: inline-block;
}
.map--content .heading-2 .f-trajan {
  margin-right: 8px;
}
.map--content .btn {
  margin-top: 1em;
}
.map--content .map--imgs {
  position: relative;
  margin-bottom: 40px;
}
.map--content .map-up {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 75%;
  color: #bfa737;
}
.slick-archit--thumb {
  position: absolute;
  width: 260px;
  right: -4px;
  top: -56px;
}
.thumbnail-item {
  overflow: hidden;
  width: 38px !important;
  height: 38px;
  margin: 0 4px;
  border-radius: 40px;
  border: 3px double #ccc;
  transition: all 0.2s cubic-bezier(0, 0, 0.33, 0.99);
  opacity: 0.75;
}
.slick-current .thumbnail-item {
  opacity: 1;
}
.slick-archit--thumb .slick-track {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  width: 260px !important;
}
.slick-archit--thumb .slick-track .slick-slide {
  float: none;
  width: 44px;
}
.thumbnail-item img {
  max-width: initial;
  width: 57px;
}

@media screen and (max-width: 1080px) {
  .map--txt {
    display: none;
  }
  .map--num {
    left: 12px;
    top: -9px;
  }
  .map--content {
    width: 100%;
    max-width: 746px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    padding-bottom: 56px;
  }
}

@media screen and (max-width: 767px) {
  .map--ttl_box {
    top: -160px;
  }
  .map--ttl {
    font-size: 143%;
    margin-right: 24px;
  }
  .map--dl {
    padding-top: 24px;
  }
  .map--content .btn {
    margin-top: 24px;
  }
  .map--content .heading-2 {
    margin-bottom: 16px;
  }
  .map--num {
    width: 16px;
    height: 16px;
    line-height: 15px;
    font-size: 60%;
  }
  .map--content .map--imgs {
    margin-bottom: 16px;
  }
  .slick-archit--thumb {
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    width: auto;
  }
  .slick-archit--thumb .slick-track {
    width: 190px !important;
  }
  .slick-archit--thumb .slick-track .slick-slide {
    width: 44px;
  }
  .thumbnail-item {
    width: 24px !important;
    height: 24px;
    margin: 0 4px;
  }
  .thumbnail-item img {
    width: 30px;
  }
}

/* page-event
*************************************************** */
.event--list {
  max-width: 837px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* [guide] page-info
*************************************************** */

/* -- hours -- */
.hours--table.table_default th {
  width: 12em;
}
.hours--table .small {
  padding: 0;
}

/* -- fee -- */
.fee--table.table_line th,
.fee--table.table_line td {
  line-height: 2;
  border: none;
  border-bottom: 1px solid rgba(191, 167, 55, 0.5);
}
.fee--table.table_line th {
  width: 12.5em;
  text-align: left;
}
.fee--table.table_line th .small {
  color: #777;
  padding-left: 6px;
}

@media screen and (max-width: 767px) {
  .hours--table.table_default th {
    width: 100%;
    padding: 1em 1em 0;
    color: #bfa736;
  }
  .hours--table.table_default th::after {
    display: none;
  }
  .hours--table.table_default td {
    padding-bottom: 1em;
  }
  .hours--table.table_default td::after {
    height: 2px;
  }
  .fee--table.table_line th {
    width: 9em;
  }
}

/* [guide] page-access
*************************************************** */

/* -- car -- */
.car--table.table_line thead th {
  padding: 0.5em;
  line-height: 1.4;
  border-right: 1px solid #ccc;
  background: rgba(191, 167, 55, 0.25);
}
.car--table.table_line tr:nth-child(2n),
.car--table.table_line tr:nth-child(2n) td {
  background: #f9f9f9;
}
.car--table.table_line th,
.car--table.table_line td {
  vertical-align: middle;
}
.car--table.table_line td {
  font-size: 100%;
}
.car--table.table_line tbody th {
  text-align: left;
}
.car--table.table_line tr > *:nth-child(2),
.car--table.table_line tr > *:nth-child(3),
.car--table.table_line tr > *:last-child {
  text-align: center;
}
.car--content:not(:last-child) {
  margin-bottom: 24px;
}
.car--ttl {
  background-color: #29262d;
  color: #fff;
}
.car--info .tag {
  background-color: #decc78;
  padding: 2px 0;
  width: 5.5em;
  text-align: center;
  margin-right: 8px;
  font-size: 75%;
  border-radius: 4px;
}
.car--info {
  margin-bottom: 0;
  line-height: 1.6;
}
.car--dl {
  position: relative;
  margin-top: 1em;
  padding: 8px 16px;
  background-color: #fff;
  font-size: 86%;
  line-height: 1.6;
}
.car--dl dt {
  position: relative;
  width: 14em;
  background: #fff;
  z-index: 2;
}
.car--dl dd {
  width: calc(100% - 14em);
  text-align: right;
}
.car--dl dd::before {
  content: "";
  border-top: 2px dotted #e2e2e2;
  padding-right: 0.5em;
  position: absolute;
  left: 20px;
  right: 72px;
  margin-top: 9px;
  z-index: 0;
}

/* -- public -- */
.heading-2 .icon {
  width: 44px;
  height: 44px;
  background: #fff;
  display: inline-block;
  vertical-align: text-bottom;
  border-radius: 24px;
  line-height: 34px;
  margin: 0 6px 0 3px;
  position: relative;
  top: -1px;
}
.public--route {
  padding: 56px 40px;
}
.public--list--toho {
  max-width: 660px;
  margin: 0 auto;
}
.public--list > li {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  height: 420px;
  margin-bottom: 0;
}
.public--route--train .public--list > li {
  height: 660px;
}
.public--list.public--list--toho > li {
  height: 232px;
}
.public--list.public--list--toho .public--trans li.icon {
  margin-top: 24px;
}
.public--list > li::before,
.train--list > .tokyo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  border-right: 3px dashed #cccccc;
}
.train--list > .tokyo::before {
  left: -50%;
}
.train--list > .tokyo::after {
  right: -50%;
}
.public--list > li * {
  z-index: 1;
}
.tokyo > .flex {
  height: 100%;
}
.tokyo > .flex > li {
  width: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.public--area,
.public--area2 {
  padding: 0.5em 1em;
  background: #29252d;
  color: #fff;
  border-radius: 4px;
}
.public--area {
  line-height: 64px;
  padding: 0 1em;
  height: 64px;
}
.public--area.osaka {
  line-height: 1.5;
  padding: 0.5em 0;
}
.public--area.sentorea {
  line-height: 1.25;
  padding-top: 0.8em;
  padding-bottom: 0.7em;
}
.public--trans li {
  position: relative;
  padding: 1em 0.5em 0.5em;
  background-color: #eceae0;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 88%;
  line-height: 1.4;
  border-radius: 4px;
}
.public--trans li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 40px;
  height: 5px;
  margin: auto;
  border-radius: 8px;
}
.tokyo .public--area2 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5em 0;
  font-size: 88%;
}
.public--list .nouhi::before {
  background-color: #045d35;
}
.public--list .kintetsu::before {
  background-color: #003f92;
}
.public--list .meitetsu::before {
  background-color: #029e96;
}
.public--list .chitetsu::before {
  background-color: #3f3f3f;
}
.public--list .hokutetsu::before {
  background-color: #fa8b39;
}
.public--list .keio::before {
  background-color: #c8006b;
}
.public--list .jr-tokai::before {
  background-color: #f46532;
}
.public--list .hida::before {
  background-color: #fe9912;
}
.public--list .jr-hokuriku::before {
  background-color: #008000;
}
.public--list .jr-tokaido::before {
  background-color: #0000ff;
}
.public--route--bus .public--trans {
  height: 192px;
}
.public--route--train .public--trans {
  padding-top: 24px;
  margin-bottom: 24px;
}
.public--route--train .public--trans li {
  height: 52px;
  line-height: 54px;
  padding: 0;
}
.public--route--train .tokyo .public--trans li {
  font-size: 76%;
  line-height: 1.3;
  letter-spacing: 0;
  padding-top: 14px;
}
.public--trans li:not(:last-child) {
  margin-bottom: 4px;
}
.public--trans li.icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 0;
  vertical-align: middle;
  background: #fff;
  border: 1px solid #c7c7c7;
  border-radius: 24px;
  margin-bottom: 16px;
}
.public--trans li.icon.icon-toho {
  padding-top: 0.7em;
}
.public--trans li.icon.icon-train {
  padding-top: 0.7em;
}
.public--trans li.icon.icon-sinosaka {
  padding-top: 14px;
}
.public--time {
  background-color: #fff;
  padding: 2em 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 90%;
  margin: 0 auto 40px;
}
.train--time {
  margin-bottom: inherit;
  font-size: 88%;
  margin-bottom: 24px;
  letter-spacing: 0;
}
.train--list > .tokyo .train--time {
  padding: 2em 0.5em;
}
.train--list li:nth-child(2n) .train--time {
  margin-bottom: 344px;
}
.train--list li.tokyo .train--time {
  margin-bottom: 24px;
  line-height: 1.6;
  padding: 1.45em 0.5em;
}
.public--route--train .public--list--toho .public--trans {
  padding: 0;
  margin: 0;
}
.public--goal {
  background-color: #29262d;
  color: #fff;
  padding: 1em;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .hours p,
  .hours .heading-3 {
    text-align: left;
  }
  .hours-box {
    background: transparent;
    padding: 0;
    border: none;
    margin-top: 32px;
  }
  .hours-box .heading-2 {
    padding: 0;
    text-align: left;
    width: 100%;
  }
  .hours-box .heading-2::before,
  .hours-box .heading-2::after {
    display: none;
  }
  .hours-box .btn {
    margin: 0;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
  }
  .hours .map {
    line-height: 1;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .hours .map iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
  .car .txtarea .txt-ctr,
  .bus-text {
    -ms-text-justify: inter-ideograph;
    text-justify: inter-ideograph;
    text-align: justify;
  }
  .car--ttl.bg {
    background-color: #29262d;
  }
  .public--route {
    padding: 0;
    background-color: transparent;
    border: none;
  }
  .public--list > li::before,
  .train--list > .tokyo::after {
    height: calc(100% - 32px);
    width: 2px;
    border-right: 1px dashed #cccccc;
    border-left: 1px dashed #cccccc;
  }
  .public--list > li {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
  .public--list.flex-col5 > *:nth-last-child(-n + 5):not(:nth-child(5n)) {
    margin-bottom: 8px;
  }
  .public--list > li.active:not(:last-child) {
    margin-bottom: 16px;
  }
  .public--area {
    position: relative;
    height: 54px;
    line-height: 54px;
  }
  .public--area2 {
    width: 80%;
    margin: 0 auto 16px;
  }
  .public--area::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #cdba65 transparent transparent transparent;
    transition: all 0.4s cubic-bezier(0, 0, 0.33, 0.99);
    z-index: 1;
  }
  .public--area.active::before {
    transform: rotate(180deg);
  }
  .public--info {
    margin-top: 16px;
    display: none;
  }
  .public--route--bus .public--trans,
  .public--list.public--list--toho > li,
  .public--route--train .public--list > li {
    height: auto;
  }
  .public--trans li {
    width: 80%;
  }
  .public--time {
    margin-top: 8px;
    margin-bottom: 24px;
    padding: 8px;
    width: 80%;
  }
  .public--trans li.icon {
    height: 24px;
    padding: 7px;
    width: 48px;
  }

  .public--trans li.icon.icon-toho {
    padding-top: 3px;
  }
  .public--trans li.icon.icon-train {
    padding-top: 3px;
  }
  .public--trans li.icon.icon-sinosaka {
    padding-top: 5px;
  }
  .public--trans li.icon img {
    max-height: 16px;
    width: auto;
    max-width: 18px;
  }
  .icon-train img {
    width: 12px;
  }
  .public--list--toho {
    width: 100%;
  }
  .public--list--toho.sp-none {
    display: none;
  }
  .public--list.public--list--toho .public--trans li.icon {
    margin-top: 0;
    margin-bottom: 8px;
  }
  .public--goal,
  .public--goal.txt-lg {
    width: 80%;
    margin: 0 auto 32px;
    height: 48px;
    line-height: 48px;
    padding: 0 8px;
  }
  .public--route--train .tokyo .public--trans li {
    height: 46px;
    padding-top: 15px;
  }
  .heading-2 .icon {
    width: 24px;
    height: 24px;
    line-height: 10px;
    padding: 3px;
    border-radius: 4px;
    vertical-align: baseline;
  }
  .public .heading-2.hy.txt-ctr {
    width: 100%;
    padding: 0;
  }
  .public .heading-2.hy.txt-ctr::before,
  .public .heading-2.hy.txt-ctr::after {
    display: none;
  }
  .public--route--train .public--trans {
    padding-top: 0;
    margin-bottom: 0;
  }
  .public--route--train .public--trans li {
    height: 40px;
    line-height: 42px;
  }
  .public--route--train .public--trans li.icon {
    height: auto;
    line-height: 0;
    margin-bottom: 8px;
  }
  .train--time {
    font-size: 100%;
  }
  .public--route .btn {
    margin-top: 24px;
  }
  .train--list li:nth-child(2n) .train--time {
    margin-bottom: 24px;
  }
  .tokyo .public--trans li {
    margin-top: 0;
  }
  .tokyo .public--info > .flex > li {
    width: 50%;
  }
  .tokyo .public--area2 {
    font-size: 100%;
  }
  .train--list > li.tokyo .train--time {
    padding: 1em;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 320px) {
  .car--dl dt {
    width: 10.5em;
  }
  .car--dl dd {
    width: calc(100% - 10.5em);
  }
}

/* [guide] page-guidetour
*************************************************** */
.guidetour--imgarea {
  border-radius: 184px;
  width: 368px;
  height: 368px;
  overflow: hidden;
  margin-left: 40px;
}
.guide_table.table_line thead th {
  border-right: 1px solid #bbb;
  background: rgba(191, 167, 55, 0.25);
  padding: 0.25em;
}
.guide_table.table_line .guide_gaiyou th {
  padding: 0.25em;
}
.guide_table.table_line th,
.guide_table.table_line td {
  border-right: 1px solid #ddd;
}
.guide_table.table_line th {
  vertical-align: middle;
  min-width: 11em;
}

@media screen and (max-width: 767px) {
  .txtarea.guidetour--txtarea {
    margin-bottom: 32px;
    max-width: 100%;
  }
  .flex-sp-block:not(.box) .imgarea.guidetour--imgarea {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    transform: translateX(0);
  }
  .flex-sp-block:not(.box) .imgarea.guidetour--imgarea img {
    width: 330px;
    max-width: 330px;
    margin-left: -85px;
  }
  .guide_table.table_line th,
  .guide_table.table_line thead th.first {
    min-width: 6em;
  }
  .guide_table.table_line thead th {
    min-width: 9em;
  }
}

/* [guide] page-activity
*************************************************** */
.activity--txtarea {
  width: 55.5%;
}
.activity--imgarea {
  width: 37.5%;
}

@media screen and (max-width: 767px) {
  .activity--imgarea {
    width: 100%;
  }
}

/* [guide] page-application
*************************************************** */
.application_menu a {
  height: 80px;
}
.application-box {
  max-width: 784px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .application_menu {
    margin-bottom: 24px;
  }
  .application_menu li {
    width: 100%;
    height: 64px;
  }
  .application_menu a {
    height: 64px;
  }
}

/* [others] page-disclosure
*************************************************** */

/* -- disclosure -- */
.lab--txtarea {
  width: 52%;
  margin-right: 6%;
}
.lab--imgarea {
  width: 42%;
}

/* -- principles -- */
.principles--list {
  position: relative;
  display: table;
  margin-left: auto;
  margin-right: auto;
  font-size: 138%;
  background-color: #fff;
  padding: 56px 80px;
  line-height: 2;
}
.principles--list::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
}
.principles--list li {
  padding-left: 1.6em;
  text-indent: -1.6em;
}

/* -- lab -- */
.lab--content:not(:last-child) {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .principles--list {
    font-size: 115%;
    padding: 24px 32px;
  }
}

/* [others] page-ethics
*************************************************** */
/* -- etics -- */
.ethics--heading.bg {
  padding-left: 2em;
  text-indent: -1em;
}
.info--txtarea:not(:last-child) {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .info--txtarea:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* [others] page-link
*************************************************** */
/* -- link -- */
.link_list li {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .link_list li {
    width: 100%;
  }
}

/* page-sitemap
*************************************************** */
.sitemap--item {
  position: relative;
}
.sitemap--item:not(:last-child) {
  margin-bottom: 0.5em;
}
.sitemap--item:not(.sitemap--item-ttl),
.sitemap--item-child.sitemap--item-taxonomy:not(.sitemap--item-ttl) {
  margin-left: 1em;
  padding-left: 1em;
}
.sitemap--item-child:not(.sitemap--item-ttl) {
  margin-left: 3em;
  font-size: 88%;
  margin-bottom: 0.25em;
}
.sitemap--item-ttl:not(:last-child) {
  font-size: 120%;
  letter-spacing: 0.2em;
  line-height: 1;
  padding-bottom: 1em;
  margin-bottom: 1em;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
}
.sitemap--item:not(.sitemap--item-ttl)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #bfa737;
  border-radius: 4px;
  left: -6px;
}
.sitemap--item-child:not(.sitemap--item-ttl)::before {
  width: 16px;
  height: 1px;
  border-right: none;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  left: -18px;
  border-color: #bfa737;
}
.sitemap--item a {
  display: block;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}
.sitemap--item a:hover {
  color: #bfa737;
}
.sitemap--item-child.sitemap--item.sitemap--item-taxonomy {
  margin-left: 3em;
}

/* page-qr
*************************************************** */
.page-qr .header,
.page-qr .footer--top,
.page-qr .footer--nav {
  display: none;
}
.btn-qr {
  position: relative;
  font-size: 130%;
  display: block;
  background: #fff;
  margin-bottom: 4px;
  border: 0.5px solid #ccc;
  padding: 8px 32px;
}
.btn-qr::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 6px;
  height: 6px;
  border-right: 0.5px solid #c0a839;
  border-top: 0.5px solid #c0a839;
  margin: auto;
  transform: rotate(45deg);
}

/* page-narration
*************************************************** */
.page-narration .footer--top,
.page-narration .header--nav,
.page-narration .footer--nav,
.page-narration .header .gnav_btn,
.page-narration .header .page_ttl {
  display: none;
}
.page-narration .header--logo,
.page-seigaiha .header--logo {
  border: none;
  background-color: transparent;
}
.page-narration .heading-3.f-trajan {
  font-family: trajan-pro-3, serif;
}
.narration-contents,
.page-narration .section_pdg {
  padding-top: 80px;
}
.narration-contents .btn {
  font-family: trajan-pro-3, serif;
}
.narration-contents .box-brdr {
  padding: 32px;
}

/* --- 音声プレイヤー --- */
.audio_box {
  width: 100%;
  margin: 0 auto;
}
.audio_bar {
  position: relative;
  top: -3px;
  width: 100%;
  height: 16px;
  border-top: 8px solid rgb(222 220 217);
  cursor: pointer;
}
.audio_progress {
  position: absolute;
  top: -8px;
  height: 8px;
  background: #5a513c;
}
.audio_time {
  display: inline-block;
  font-family: trajan-pro-3, serif;
  font-size: 100%;
  font-weight: 600;
  vertical-align: top;
  margin: 0;
  color: #333;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  opacity: 0;
}
.audio_time.active {
  opacity: 1;
  transition: all 1s;
}
.audio_play,
.audio_pause,
.audio_forward,
.audio_backward {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.8;
  cursor: pointer;
  margin: 10px;
}
.audio_btn {
  margin: 0px auto 22px;
  display: block;
  background-color: rgb(72, 68, 68);
  width: 100px;
  height: 100px;
  background-size: 70px;
  border-radius: 50%;
}
.audio_btn:hover {
  opacity: 1;
}
.audio_play {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTcgNnYxMmwxMC02TDcgNnoiLz48L3N2Zz4=");
  background-position: 60% center;
}
.audio_pause {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZmZmIiBkPSJNOCA3SDExVjE3SDh6TTEzIDdIMTZWMTdIMTN6Ii8+PC9zdmc+");
}
.audio_forward {
  background-image: url("https://i.imgur.com/AFhPiAT.png");
}
.audio_backward {
  background-image: url("https://i.imgur.com/0K5AgX8.png");
}

/* page-privacy
*************************************************** */
.page-privacy hr {
  border-top: 4px double #ddd;
}
.privacy--list > li:not(:last-child) {
  margin-bottom: 48px;
}
.privacy--list .heading-2 {
  margin-bottom: 0.3em;
}
.privacy--list .btn {
  padding: 0.2em 1em 0.2em 2.5em;
  font-size: 100%;
}
.privacy--list img {
  vertical-align: middle;
}

/* page-gallery
*************************************************** */

@media screen and (max-width: 767px) {
  .page-gallery .flex-col3 > *:nth-last-child(-n + 3):not(:nth-child(3n)) {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .page-gallery .flex-col3 > *:last-child {
    margin-bottom: 3%;
  }
}

/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
*************************************************** */
.main_column {
  flex: 1;
  margin-right: 80px;
}

/* --- post --- */
.posts {
  position: relative;
}
.post {
  position: relative;
}
.post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.post--date,
.cat_list {
  display: inline-block;
  vertical-align: middle;
}
.cat_list {
  float: right;
}
.cat_list li {
  display: inline-block;
}
.cat_list a {
  position: relative;
  max-width: 42%;
  padding: 0.25em 1em;
  color: #bbb;
  z-index: 1;
}
.cat_list a:hover {
  color: #29262d;
}
.cat_list li:not(:last-child) a::before,
.sitemap--item.sitemap--item-taxonomy li:not(:last-child)::after {
  transform: rotate(20deg);
}
.post--img {
  position: relative;
  overflow: hidden;
  z-index: -1;
  height: 220px;
}
.post--ttl {
  font-size: 150%;
}
.post--txt {
  position: relative;
  opacity: 0.5;
  line-height: 1.7;
  letter-spacing: 0.05em;
  z-index: -1;
}
.post--img.no_img {
  background-color: #fff;
  color: #bfa737;
}
.post--img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
}
.post:hover .post--img::before {
  background-color: rgba(26, 22, 31, 0.7);
}
.post--img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  max-width: inherit;
  min-height: 100%;
}

@media screen and (max-width: 767px) {
  .main_column {
    width: 100%;
    margin-right: 0;
    margin-bottom: 80px;
  }
  .post {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
  }
  .post--img {
    width: 96px;
    height: 96px;
    border-radius: 50px;
    order: 2;
    margin-bottom: 0;
  }
  .post--img img {
    max-width: 128px;
    max-height: 128px;
  }
  .post--txtarea {
    width: calc(100% - 112px);
  }
  .post--ttl {
    font-size: 115%;
    margin-bottom: 0;
  }
}

/* side_column
*************************************************** */
.side_column {
  width: 240px;
}
.side_section:not(:last-child) {
  margin-bottom: 64px;
}
.side--ttl {
  font-size: 120%;
  letter-spacing: 0.2em;
  line-height: 1;
  padding-bottom: 1em;
  margin-bottom: 1em;
  font-weight: 500;
  border-bottom: 4px double #ddd;
}
.side--ttl small {
  font-size: 63%;
  opacity: 0.5;
  letter-spacing: 0.15em;
  display: block;
  line-height: 1;
  margin-top: 1em;
}
.side--list li:not(:last-child) {
  margin-bottom: 0;
}
.side--list li::before {
  top: 0.6em;
  border: 1px solid #bfa736;
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
}
.side--list li:hover::before {
  background-color: transparent;
}
.side--list a {
  display: block;
  font-size: 89%;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}

/* --- post --- */
.posts-side .post:not(:last-child) {
  margin-bottom: 16px;
}
.posts-side .post--img {
  margin-left: 16px;
  width: 64px;
  height: 64px;
  border-radius: 32px;
  border: 4px double #ddd;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.posts-side .txtarea {
  flex: 1;
}
.posts-side .post--ttl {
  font-size: 107%;
  line-height: 1.4;
}

/* --- archive --- */
.side_column .archive_list--ttl {
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
}
.side_column .archive_list--ttl {
  cursor: pointer;
  font-size: 89%;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
.side_column .archive_list--ttl::after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(135deg);
}
.side_column .archive_list--ttl:hover {
  color: #bfa736;
}
.side_column .archive_list--ttl.active::after {
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
  transform: rotate(315deg);
}
.side_column .archive_month {
  display: none;
}

@media screen and (max-width: 767px) {
  .side_column {
    width: 100%;
  }
  .side_section:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* archive-news
*************************************************** */
.catarea {
  padding-top: 64px;
}
.catarea .heading-2 {
  margin-bottom: 0;
}
.catarea + .section_pdg {
  padding-top: 72px;
}

/* ##############################################################################

    SINGLE

############################################################################## */

/* wp-pagenavi
*************************************************** */
.wp-pagenavi {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 3em;
  font-size: 88%;
}
.wp-pagenavi:not(.wp-pagenavi-single) {
  font-family: "EB Garamond", serif;
  transform: rotate(0.04deg);
}
.wp-pagenavi > span,
.wp-pagenavi > a {
  position: relative;
  max-width: 42%;
  vertical-align: top;
  padding: 0.25em 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  color: #bbb;
}
.wp-pagenavi-single a {
  padding-left: 1.5em;
  padding-right: 1.5em;
}
.wp-pagenavi-single a:not(:last-child)::before,
.cat_list li:not(:last-child) a::before {
  background-color: #bbb;
}
.wp-pagenavi-single a::after,
.wp-pagenavi .page::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 1px;
  background-color: #bbb;
  transition: all 0.6s cubic-bezier(0, 0, 0.33, 0.99);
}
.wp-pagenavi .page:hover::before,
.wp-pagenavi-single a:hover::after {
  width: 1em;
}
.wp-pagenavi .pages {
  width: 100%;
  max-width: inherit;
  margin-bottom: 1em;
}
.wp-pagenavi .current {
  background-color: #bbb;
  color: #fff;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #bbb;
  border-right: 1px solid #bbb;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.wp-pagenavi .previouspostslink::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

@media only screen and (max-width: 767px) {
  .wp-pagenavi a {
    max-width: 39%;
  }
  .wp-pagenavi .return {
    max-width: 22%;
  }
}
