@charset "UTF-8";

/*----------------------------------------------
 * * reset styles
 * *----------------------------------------------*/
main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  display: block;
}

/*----------------------------------------------
 * * custom property
 * *----------------------------------------------*/
:root {
  --hdHeight: 80px;
  --minw: 1024px;
  --basew: 1200px;
  --lineColor01: #6E612C;
  --color: #303030;
  --news: #3979AE;
  --admissons: #00798C;
  --events: #0C670C;
  --mediaAwards: #CB3A3A;
  --exhibitions: #D15E06;
  --private: #262D5D;
}

@media screen and (max-width: 767px) {
  :root {
    --hdHeight: 50px;
    --basew: 89.6%;
  }
}

svg {
  max-width: 100%;
  width: auto;
  height: auto;
}

svg.hidden {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 1px;
  height: 1px;
}

.icon-search {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.icon-arrow01 {
  width: 16px;
  height: 7px;
  fill: var(--color);
}

/*----------------------------------------------
 * * formatting styles
 * *----------------------------------------------*/
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  min-width: var(--minw);
  min-height: 100svh;
  padding-top: var(--hdHeight);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.6em;
  line-height: 1.6;
  color: var(--color);
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 0.04em;
  }
}

.scroll-prevent {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  overflow: scroll;
}

.scrollPreventBg {
  position: fixed;
  z-index: 90;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-duration: 0.3s;
}

.scroll-prevent .scrollPreventBg {
  visibility: visible;
  opacity: 0.37;
  pointer-events: auto;
}

a {
  color: inherit;
  transition-duration: 0.3s;
}

_::-webkit-full-page-media,
_:future,
:root a {
  text-underline-offset: 2px;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  transition-duration: 0.3s;
}

[type=search] {
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  background-color: #fff;
  margin: 0;
  padding: 0;
  border-radius: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.checkbox {
  display: inline-flex;
  position: relative;
  line-height: 1.4286;
  cursor: pointer;
}

.checkbox [type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1000%;
  left: 0;
  top: 0;
  opacity: 0;
}

.checkbox .label {
  display: flex;
  position: relative;
  padding-left: 26px;
}

.checkbox .label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 17px;
  height: 17px;
  border-radius: 2px;
  border: 1px solid #707070;
  background-color: #fff;
  transition-duration: 0.3s;
}

.checkbox .label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 7px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  rotate: 45deg;
  opacity: 0;
  transition-duration: 0.3s;
}

.checkbox :checked~.label::before {
  border-color: var(--lineColor01);
  background-color: var(--lineColor01);
}

.checkbox :checked~.label::after {
  opacity: 1;
}

@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
  }
}

@media (any-hover: none) {
  a:active {
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  .checkbox .label::before {
    width: 16px;
    height: 16px;
    top: 3px;
  }

  .checkbox .label::after {
    width: 6px;
    height: 8px;
    top: 6px;
  }
}

/*----------------------------------------------
 * * clearfix
 * *----------------------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* ----------------------------------------------
 * * header
 * *----------------------------------------------*/
header {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--hdHeight);
  background-color: #fff;
  padding: 0 var(--hdHeight) 0 28px;
  display: flex;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

header .logo {
  flex: 0 0 auto;
  height: 100%;
}

header .logo a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .logo img {
  width: auto;
  vertical-align: middle;
}

.btnHamburger {
  position: fixed;
  right: 0;
  top: 0;
  display: block;
  border: none;
  background-color: #000;
  width: var(--hdHeight);
  height: var(--hdHeight);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.btnHamburger::before {
  content: "";
  position: absolute;
  left: 28.125%;
  top: 25%;
  width: 43.75%;
  height: 2px;
  background-color: #fff;
  transition-duration: 0.3s;
}

.btnHamburger::after {
  content: "";
  position: absolute;
  left: 28.125%;
  top: 52.5%;
  width: 43.75%;
  height: 2px;
  background-color: #fff;
  transition-duration: 0.3s;
}

.btnHamburger span {
  display: block;
  padding-top: 50%;
}

.btnHamburger span::before {
  content: "";
  position: absolute;
  left: 28.125%;
  top: 38.75%;
  width: 43.75%;
  height: 2px;
  background-color: #fff;
  transition-duration: 0.3s;
}

.btnHamburger .btnClose {
  display: none;
}

header.open .btnHamburger::before {
  rotate: 135deg;
  top: 38.75%;
}

header.open .btnHamburger::after {
  rotate: -135deg;
  top: 38.75%;
}

header.open .btnHamburger span::before {
  opacity: 0;
}

header.open .btnHamburger .btnClose {
  display: block;
}

header.open .btnHamburger .btnOpen {
  display: none;
}

@media (any-hover: hover) {
  header .logo a:hover {
    opacity: 0.6;
  }
}

@media (any-hover: none) {
  header .logo a:active {
    opacity: 0.6;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  header {
    padding-left: 10px;
  }

  header .logo {
    flex: 1 1 13.0833%;
    max-width: 157px;
  }
}

@media screen and (max-width: 767px) {
  header {
    border-bottom: 1px solid #E3E3E3;
    padding-left: 10px;
    box-shadow: none;
  }

  header .logo {
    flex: 0 0 auto;
  }

  .btnHamburger {
    font-size: 0.7rem;
  }

  header.open {
    border-bottom-color: rgba(227, 227, 227, 0);
  }
}

/* ----------------------------------------------
 * * nav
 * *----------------------------------------------*/
nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  padding-right: 28px;
}

nav ul {
  display: flex;
}

nav .menuHamburger {
  display: block;
  position: fixed;
  z-index: 0;
  right: 0;
  translate: 100% 0;
  top: calc(var(--hdHeight) + 1px);
  width: 290px;
  max-width: calc((100vw - 258px) / 3);
  height: calc(100dvh - var(--hdHeight) - 1px);
  padding: 16px 13px 16px 24px;
  background-color: #fff;
  font-size: 1.4rem;
  transition-duration: 0.3s;
}

nav .menuHamburger .accordionBtn {
  background-color: transparent;
  border: none;
  width: 100%;
  min-height: 57px;
  padding: 0 22px 0 15px;
  text-align: left;
  position: relative;
  font-size: 1.6rem;
}

nav .menuHamburger .accordionBtn::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 50%;
  translate: 0 50%;
  width: 9px;
  height: 1px;
  background-color: var(--lineColor01);
}

nav .menuHamburger .accordionBtn::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 50%;
  translate: 0 50%;
  width: 1px;
  height: 9px;
  background-color: var(--lineColor01);
  transition-duration: 0.3s;
}

nav .menuHamburger .accordionBody {
  display: block;
  position: absolute;
  z-index: -1;
  right: 100%;
  top: 0;
  width: 290px;
  height: 100%;
  background-color: #F9F9F9;
  padding: 16px;
  translate: 100% 0;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
}

nav .menuHamburger .accordionBody li.layer2nd a {
  padding: 16px 32px 16px 15px;
  font-size: 1.6rem;
}

nav .menuHamburger .accordionBody li.layer2nd a::before {
  left: auto;
  right: 14px;
  top: 50%;
  translate: 0 -50%;
  background: url(/images/icon-arrow01.svg) no-repeat 0 0;
  background-size: 100% auto;
  width: 16px;
  height: 11px;
}

nav .menuHamburger .accordionBody a {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  padding: 8px 0 8px 36px;
}

nav .menuHamburger .accordionBody a::before {
  content: "";
  position: absolute;
  left: 20px;
  top: calc(8px + 0.8em);
  width: 6px;
  height: 1px;
  background-color: var(--lineColor01);
  transition-duration: 0.3s;
}

nav .menuHamburger .accordionBody.menuChild01 {
  max-width: calc((100vw - 258px) / 3);
}

nav .menuHamburger .accordionBody.menuChild01>.accordionBox.open>.accordionBtn {
  background-color: #f2f2f2;
}

nav .menuHamburger .accordionBody.menuChild02 {
  max-width: calc((100vw - 258px) / 3);
  background-color: #f2f2f2;
}

nav .menuHamburger .accordionBody.menuChild02>.accordionBox.open>.accordionBtn {
  background-color: #dfdfdf;
}

nav .menuHamburger .accordionBody.menuChild03 {
  width: 258px;
  background-color: #dfdfdf;
}

nav .menuHamburger .accordionBox.open>.accordionBtn {
  background-color: #f9f9f9;
}

nav .menuHamburger .accordionBox.open>.accordionBtn::after {
  rotate: 90deg;
}

nav .menuHamburger .accordionBox.open>.accordionBody {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

nav .globalMenu01 {
  flex: 0 0 auto;
  margin-left: auto;
  font-size: 1.4rem;
  font-weight: bold;
}

nav .globalMenu01 li:nth-child(n+2) {
  position: relative;
}

nav .globalMenu01 li:nth-child(n+2)::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 1em;
  background-color: #D4D4D4;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}

nav .globalMenu01 li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  height: var(--hdHeight);
  text-decoration: none;
}

nav .globalMenu01 li img {
  margin-right: 5px;
  vertical-align: middle;
}

nav .globalMenu02 {
  flex: 0 0 auto;
  margin-left: 40px;
  font-size: 1.2rem;
}

nav .globalMenu02 a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: var(--hdHeight);
  padding: 0 1em;
  text-decoration: none;
}

nav .globalMenu02 .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 21px;
  text-align: center;
}

nav .globalMenu02 img {
  vertical-align: middle;
}

nav .globalMenu02 .languagebox {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.95);
  width: 248px;
  right: calc(var(--hdHeight));
  top: 100%;
  padding: 28px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.3s;
  color: #fff;
}

nav .globalMenu02 .languagebox ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav .globalMenu02 .languagebox li {
  flex: 0 0 50%;
  margin-top: 5px;
  padding: 5px 0 5px 12px;
  position: relative;
  cursor: pointer;
  transition-duration: 0.3s;
}

nav .globalMenu02 .languagebox li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 3px);
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  rotate: -45deg;
}

nav .globalMenu02 .languagebox li:nth-child(-n+2) {
  margin-top: 0;
}

nav .globalMenu02 .search>a .icon-search {
  width: 17px;
  height: 17px;
  fill: var(--lineColor01);
}

nav .globalMenu02 .ichipol {
  padding-left: 30px;
}

nav .globalMenu02 .ichipol a{
  padding-left: 30px;
}

nav .globalMenu02 .ichipol::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 1.5em;
    background-color: #D4D4D4;
    top: 50%;
    translate: 0 -50%;
}

nav .globalMenu02 form {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.95);
  right: calc(var(--hdHeight) - 80px);
  top: 100%;
  padding: 26px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.3s;
}

nav .globalMenu02 form .inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

nav .globalMenu02 form [type=checkbox] {
  display: none;
}

nav .globalMenu02 form [type=search] {
  border: none;
  flex: 0 0 auto;
  padding: 0 12px;
  width: 250px;
  height: 28px;
}

nav .globalMenu02 form .btnSearch {
  flex: 0 0 auto;
  margin-left: 4px;
  background-color: #676767;
  border: none;
  width: 32px;
  height: 28px;
}

nav .globalMenu02 form .btnSearch svg {
  vertical-align: middle;
}

.open nav .menuHamburger {
  translate: 0 0;
}

@media (any-hover: hover) {
  nav .menuHamburger .accordionBtn:hover {
    background-color: #F9F9F9;
  }

  nav .menuHamburger .accordionBody li.layer2nd a:hover {
    text-decoration: none;
  }

  nav .menuHamburger .accordionBody li.layer2nd a:hover::before {
    right: 10px;
  }

  nav .menuHamburger .accordionBody li a:hover {
    text-decoration: underline;
  }

  nav .menuHamburger .accordionBody.menuChild01 .accordionBtn:hover {
    background-color: #f2f2f2;
  }

  nav .menuHamburger .accordionBody.menuChild02 .accordionBtn:hover {
    background-color: #dfdfdf;
  }

  nav [class^=globalMenu] a:hover {
    opacity: 0.6;
  }

  nav .globalMenu02 .language:hover .languagebox {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  nav .globalMenu02 .languagebox li:hover {
    opacity: 0.6;
  }

  nav .globalMenu02 .search:hover form {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  nav .globalMenu02 form .btnSearch:hover {
    opacity: 0.6;
  }
}

@media (any-hover: none) {
  nav .menuHamburger .accordionBtn:active {
    background-color: #F9F9F9;
  }

  nav .menuHamburger .accordionBody li.layer2nd a:active {
    text-decoration: none;
  }

  nav .menuHamburger .accordionBody li.layer2nd a:active::before {
    right: 10px;
  }

  nav .menuHamburger .accordionBody li a:active {
    text-decoration: underline;
  }

  nav .menuHamburger .accordionBody.menuChild01 .accordionBtn:active {
    background-color: #f2f2f2;
  }

  nav .menuHamburger .accordionBody.menuChild02 .accordionBtn:active {
    background-color: #dfdfdf;
  }

  nav [class^=globalMenu] a:active {
    opacity: 0.6;
  }

  nav .globalMenu02 .language.hover .languagebox {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  nav .globalMenu02 .languagebox li:active {
    opacity: 0.6;
  }

  nav .globalMenu02 .search.hover form {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  nav .globalMenu02 form .btnSearch:active {
    opacity: 0.6;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  nav {
    padding-right: 10px;
  }

  nav .globalMenu01 {
    font-size: clamp(1.2rem, 1.1667vw, 1.4rem);
  }

  nav .globalMenu01 li a {
    padding: 0 0.5em;
    flex-wrap: wrap;
  }

  nav .globalMenu02 {
    flex-shrink: 1;
    margin-left: min(5px, 3.3333vw);
  }

  nav .globalMenu02 .ichipol{
    flex-shrink: 1;
    margin-left: min(5px, 3.3333vw);
  }

  nav .globalMenu02 a {
    padding: 0 0.5em;
    font-size: clamp(1rem, 1vw, 1.2rem);
  }

  nav .globalMenu02 .languagebox {
    right: calc(var(--hdHeight));
  }

  nav .globalMenu02 form {
    right: calc(var(--hdHeight) - 80px);
  }
}

@media screen and (max-width: 767px) {
  nav {
    position: fixed;
    width: 100%;
    height: calc(100% - var(--hdHeight));
    right: 0;
    top: var(--hdHeight);
    background-color: #fff;
    flex-direction: column;
    padding: 0;
    overflow: auto;
    transform-origin: center top;
    scale: 1 0;
    transition-duration: 0.3s;
  }

  nav .menuHamburger {
    position: static;
    translate: 0 0;
    width: 100%;
    max-width: none;
    height: auto;
    padding: 10px 0 0;
  }

  nav .menuHamburger .accordionBtn {
    padding-left: 20px;
    padding-right: 36px;
  }

  nav .menuHamburger .accordionBtn::before {
    right: 28px;
  }

  nav .menuHamburger .accordionBtn::after {
    right: 32px;
  }

  nav .menuHamburger .accordionBody {
    position: static;
    z-index: 0;
    translate: 0 0;
    padding: 0;
    pointer-events: auto;
    height: auto;
    visibility: visible;
    display: none;
    transition-property: opacity;
  }

  nav .menuHamburger .accordionBody br {
    display: none;
  }

  nav .menuHamburger .accordionBody li.layer2nd a {
    display: flex;
    align-items: center;
    padding-left: 40px;
    padding-right: 20px;
  }

  nav .menuHamburger .accordionBody li.layer2nd a::before {
    position: static;
    display: block;
    order: 1;
    margin-left: 20px;
    translate: 0 0;
  }

  nav .menuHamburger .accordionBody li.layer2nd a:active::before {
    margin-left: 24px;
  }

  nav .menuHamburger .accordionBody a {
    padding: 10px 10px 10px 56px;
  }

  nav .menuHamburger .accordionBody a::before {
    left: 40px;
  }

  nav .menuHamburger .accordionBody.menuChild01 {
    max-width: none;
    width: auto;
  }

  nav .menuHamburger .accordionBody.menuChild01 .accordionBtn {
    padding-left: 40px;
  }

  nav .menuHamburger .accordionBody.menuChild02 {
    max-width: none;
    width: auto;
  }

  nav .menuHamburger .accordionBody.menuChild03 {
    width: auto;
  }

  nav .menuHamburger .accordionBox.open>.accordionBtn {
    background-color: #fff;
  }

  nav .globalMenu01 {
    width: var(--basew);
    flex-wrap: wrap;
    margin: 15px auto 28px;
    font-weight: normal;
    font-size: 1.4rem;
  }

  nav .globalMenu01 li {
    flex: 0 0 50%;
    margin-top: 8px;
  }

  nav .globalMenu01 li a {
    height: auto;
    justify-content: flex-start;
    padding: 0 5px;
  }

  nav .globalMenu01 li a::before {
    content: "";
    order: -2;
    width: 4px;
    height: 4px;
    border-right: 1px solid var(--lineColor01);
    border-bottom: 1px solid var(--lineColor01);
    rotate: -45deg;
  }

  nav .globalMenu01 li a::after {
    content: "";
    display: block;
    order: -1;
    width: 15px;
    height: 1em;
  }

  nav .globalMenu01 li:nth-child(-n+2) {
    margin-top: 0;
  }

  nav .globalMenu01 li:nth-child(n+2)::before {
    display: none;
  }

  nav .globalMenu01 li:last-child {
    flex-basis: 100%;
  }

  nav .globalMenu01 li:last-child a {
    padding: 0;
  }

  nav .globalMenu01 li:last-child a::before,
  nav .globalMenu01 li:last-child a::after {
    display: none;
  }

  nav .globalMenu02 {
    width: var(--basew);
    border-top: 1px solid #e3e3e3;
    margin: 0 auto;
    padding: 28px 0 38px;
    flex-wrap: wrap;
    font-size: 1.4rem;
  }

  nav .globalMenu02>li {
    flex: 0 0 50%;
  }

  nav .globalMenu02>li:nth-child(2) {
    order: -1;
  }

  nav .globalMenu02>li:nth-child(n+3) {
    flex-basis: 100%;
  }

  nav .globalMenu02>li:nth-child(n+3)>a {
    display: none;
  }

  nav .globalMenu02>li:last-child>a {
    display: flex;
  }

  nav .globalMenu02 a {
    flex-direction: row;
    justify-content: flex-start;
    padding: 0;
    height: auto;
    font-size: inherit;
  }

  nav .globalMenu02 a .icon {
    width: 20px;
    margin-right: 5px;
    text-align: center;
  }

  nav .globalMenu02 .language {
    order: 1;
  }

  nav .globalMenu02 .languagebox {
    position: static;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    background-color: transparent;
    width: auto;
    padding: 0;
    color: inherit;
  }

  nav .globalMenu02 .languagebox li {
    flex-basis: 33.33%;
    margin-top: 0;
  }

  nav .globalMenu02 .languagebox li::before {
    border-color: var(--lineColor01);
  }

  nav .globalMenu02 .languagebox li:nth-child(3),
  nav .globalMenu02 .languagebox li:nth-child(4) {
    order: 1;
  }

nav .globalMenu02 .ichipol {
  order: 2;
  padding: 0;
  border-top: 1px solid #e3e3e3;
  margin-top: 20px;
}

nav .globalMenu02 .ichipol a{
  padding-left: 0;
  padding-top: 20px;
}


nav .globalMenu02 .ichipol::before {
  display: none;
}

  nav .globalMenu02 form {
    position: static;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    background-color: #F5F5F5;
    padding: 0;
    margin: 20px auto;
    border-radius: 5px;
    color: inherit;
  }

  nav .globalMenu02 form [type=search] {
    background-color: transparent;
    flex-grow: 1;
    width: auto;
    height: 38px;
    padding-right: 0;
  }

  nav .globalMenu02 form [type=search]::placeholder {
    color: #202020;
  }

  nav .globalMenu02 form .btnSearch {
    background-color: transparent;
    margin-left: 0;
    width: 38px;
    height: 38px;
  }

  nav .globalMenu02 form .btnSearch .icon-search {
    fill: var(--lineColor01);
  }

  .open nav {
    scale: 1 1;
  }
}

/* ----------------------------------------------
 * * main
 * *----------------------------------------------*/
@keyframes scaleDown {
  0% {
    scale: 1.1 1.1;
  }

  100% {
    scale: 1 1;
  }
}

main {
  width: 100%;
  overflow: hidden;
}

.breadcrumbs {
  font-size: 1.2rem;
  letter-spacing: 0.015em;
}

.breadcrumb {
  max-width: var(--basew);
  width: 100%;
  margin: 0 auto;
  padding: 28px 0 20px;
  border-bottom: 1px solid #E3E3E3;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5em;
}

.breadcrumb span:not([class]) {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
}

.breadcrumb .arrow {
  flex: 0 0 auto;
}

.breadcrumb a {
  flex: 0 1 auto;
  text-decoration: none;
}

.btn01 {
  --btnColor: var(--color);
  --btnBgc: #fff;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid var(--btnColor);
  border-radius: 46px;
  height: 46px;
  padding: 0 64px 0 40px;
  background-color: var(--btnBgc);
  font-weight: bold;
  text-decoration: none;
  color: var(--btnColor);
}

.btn01 .icon {
  display: block;
  padding-bottom: 6px;
  position: absolute;
  right: 23px;
  top: 50%;
  translate: 0 -50%;
  transition-duration: 0.3s;
}

.btn01 .icon-arrow01 {
  fill: var(--btnColor);
  transition-duration: 0.3s;
}

.slideArea {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slideArea.paused .addAnimation .mvBg {
  animation-play-state: paused;
}

.slideArea.paused~.slideControllers .pause {
  display: none;
}

.slideArea.paused~.slideControllers .play {
  display: block;
}

.slideItem {
  width: 100%;
  height: 100%;
}

.slideControllers {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background-color: #fff;
  border-radius: 30px;
  height: 30px;
  padding: 0 18px 0 10px;
  display: flex;
  align-items: center;
}

.slideControllers button {
  display: block;
  border: none;
  background-color: transparent;
  color: #fff;
  border-radius: 50%;
}

.slideControllers .play {
  display: none;
}

.slideControllers .pause {
  display: block;
}

.slideControllers ul {
  display: flex;
  align-items: center;
  column-gap: 10px;
  list-style: none;
  margin-left: 12px;
}

.slideControllers ul li {
  flex: 0 0 auto;
  width: 8px;
}

.slideControllers ul button {
  background-color: #D4D4D4;
  width: 100%;
  height: 8px;
}

.slideControllers .slick-active button {
  background-color: var(--lineColor01);
}

.slick-list,
.slick-track {
  height: 100%;
}

.addAnimation .mvBg {
  animation-duration: 9s;
  animation-iteration-count: 1;
  animation-name: scaleDown;
  animation-timing-function: linear;
  animation-play-state: running;
}

.contentsHeader {
  display: grid;
  grid-template-columns: calc((100% - var(--basew)) / 2) fit-content(47.5%) 1fr calc((100% - var(--basew)) / 2);
  grid-template-rows: auto 1fr auto;
  min-height: 564px;
  --gap: min(70px, 5.83vw);
  --enColor: var(--color);
}

.contentsHeader .breadcrumbs {
  grid-column: 1/-1;
  grid-row: 1/2;
  margin-bottom: 42px;
}

.contentsHeader h1 {
  grid-column: 2/-2;
  grid-row: 2/3;
  align-self: center;
  font-size: 4rem;
  line-height: 1.2;
}

.contentsHeader h1 .en {
  display: none;
  margin-top: 8px;
  color: var(--enColor);
  font-size: 2rem;
  font-weight: 400;
}

.contentsHeader h1 .en::first-letter {
  text-transform: uppercase;
}

.contentsMv {
  grid-column: 2/-2;
  grid-row: -2/-1;
  margin-top: 48px;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.contentsMv .slideItem .mvBg {
  width: 100%;
  height: 100%;
}

.contentsMv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contentsBody {
  max-width: var(--basew);
  width: 100%;
  margin: 80px auto 156px;
}

@media (any-hover: hover) {
  .breadcrumb a:hover {
    text-decoration: underline;
  }

  .btn01:hover {
    --btnColor: #fff;
    --btnBgc: var(--color);
  }

  .btn01:hover .icon {
    right: 12px;
  }
}

@media (any-hover: none) {
  .breadcrumb a:active {
    text-decoration: underline;
  }

  .btn01:active {
    --btnColor: #fff;
    --btnBgc: var(--color);
  }

  .btn01:active .icon {
    right: 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .breadcrumb {
    width: calc(100% - 40px);
  }

  .contentsHeader {
    grid-template-columns: 20px fit-content(47.5%) 1fr 20px;
  }

  .contentsBody {
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    font-size: 1.2rem;
  }

  .breadcrumb {
    padding: 12px 0;
  }

  .btn01 {
    border-radius: 35px;
    height: 35px;
    padding-left: 30px;
    padding-right: 48px;
  }

  .btn01 .icon {
    right: 18px;
  }

  .btn01 .icon-arrow01 {
    width: 12px;
    height: 4px;
  }

  .btn01:active .icon {
    right: 8px;
  }

  .slideControllers {
    right: 10px;
    bottom: 10px;
    height: 30px;
    border-radius: 30px;
    padding-left: 6px;
    padding-right: 10px;
  }

  .slideControllers .btnControl {
    width: 24px;
    height: 24px;
  }

  .slideControllers .btnControl img {
    width: 100%;
  }

  .slideControllers ul {
    margin-left: 8px;
    column-gap: 10px;
  }

  .slideControllers ul li {
    width: 10px;
  }

  .slideControllers ul button {
    height: 10px;
  }

  .contentsHeader {
    min-height: 0;
    grid-template-rows: repeat(3, auto);
    --gap: 0;
  }

  .contentsHeader .breadcrumbs {
    grid-row: 3/4;
    margin-bottom: 15px;
  }

  .contentsHeader h1 {
    grid-row: 1/2;
    margin-top: 20px;
    font-size: 2.2rem;
  }

  .contentsHeader h1 .en {
    margin-top: 4px;
    font-size: 1.4rem;
  }

  .contentsMv {
    grid-row: 2/3;
    max-height: 102px;
    height: 27.2vw;
    margin-top: 20px;
  }

  .contentsBody {
    margin-top: 50px;
    margin-bottom: 100px;
  }
}

/* ----------------------------------------------
 * * footoer
 * *----------------------------------------------*/
footer {
  --ftBlackHeight: 80px;
  background: #f8f8f8 linear-gradient(0deg, #000 0%, #000 var(--ftBlackHeight), #F8F8F8 var(--ftBlackHeight), #F8F8F8 100%);
  padding: 52px calc((100% - var(--basew)) / 2) 0;
  display: flex;
  flex-wrap: wrap;
}

footer a {
  text-decoration: none;
}

.ftNavi01 {
  flex: 0 0 auto;
  list-style: none;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(4, auto);
  gap: 15px 108px;
  align-content: flex-start;
  margin-top: 20px;
  margin-left: auto;
}

:lang(en) .ftNavi01 {
  max-width: 490px;
}

.ftNavi01 a {
  display: block;
  position: relative;
  padding-left: 14px;
  line-height: 1.4;
}

.ftNavi01 a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  rotate: -45deg;
}

.ftNavi02 {
  flex: 0 0 auto;
  list-style: none;
  margin-top: 20px;
  margin-left: auto;
}

.ftNavi02 li:nth-child(n+2) {
  margin-top: 15px;
}

.ftNavi02 .btn01 {
  max-width: 260px;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.ftNavi03 {
  --ftNavi01Color: #fff;
  order: 1;
  list-style: none;
  height: var(--ftBlackHeight);
  display: flex;
  align-items: center;
  column-gap: 40px;
  color: var(--ftNavi01Color);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.ftNavi03 a {
  display: inline-block;
  position: relative;
  padding-left: 10px;
}

.ftNavi03 a::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 3px);
  rotate: -45deg;
  width: 4px;
  height: 4px;
  border-right: 1px solid var(--ftNavi01Color);
  border-bottom: 1px solid var(--ftNavi01Color);
}

.univInfo {
  flex: 0 0 auto;
  margin-bottom: 42px;
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 1.8462;
}

:lang(en) .univInfo {
  max-width: 230px;
}

.univInfo img {
  vertical-align: middle;
}

.univInfo .address {
  margin-top: 15px;
  margin-left: 20px;
}

.univInfo .sns {
  list-style: none;
  margin-top: 8px;
  margin-left: 20px;
  display: flex;
}

.univInfo .sns li:nth-child(n+2) {
  margin-left: 16px;
}

.univInfo .sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.pagetop {
  order: 0;
  position: relative;
  flex: 0 0 100%;
}

.pagetop a {
  position: fixed;
  right: calc((100% - var(--basew)) / 2 - 1vw);
  translate: 100% 0;
  bottom: 40px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: none;
}

.pagetop a .icon {
  display: block;
  line-height: 1;
  transition-duration: 0.3s;
}

.pagetop a img {
  vertical-align: bottom;
  rotate: -90deg;
}

.pagetop a .text {
  display: inline-block;
  writing-mode: vertical-rl;
  padding: 5px;
}

.pagetop .notFxd {
  position: absolute;
}

.copyright {
  order: 1;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: var(--ftBlackHeight);
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0;
}

@media (any-hover: hover) {
  footer a:hover {
    text-decoration: underline;
  }

  .univInfo .sns a:hover {
    opacity: 0.6;
  }

  .pagetop a:hover {
    text-decoration: none;
  }

  .pagetop a:hover .icon {
    padding-bottom: 10px;
  }
}

@media (any-hover: none) {
  footer a:active {
    text-decoration: underline;
  }

  .univInfo .sns a:active {
    opacity: 0.6;
  }

  .pagetop a:active {
    text-decoration: none;
  }

  .pagetop a:active .icon {
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .univInfo {
    margin-left: 20px;
  }

  .ftNavi01 {
    gap: 15px 4vw;
  }

  .ftNavi02 {
    margin-right: 20px;
  }

  .ftNavi03 {
    margin-left: 20px;
  }

  .pagetop a {
    right: 0;
    translate: 0 0;
  }

  .copyright {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  footer {
    padding: 50px 0 0;
    background-image: none;
    font-size: 1.2rem;
  }

  .ftNavi01 {
    display: none;
  }

  .ftNavi02 {
    width: var(--basew);
    margin-top: 0;
    margin-right: auto;
  }

  .ftNavi02 li:nth-child(n+2) {
    margin-top: 10px;
  }

  .ftNavi02 .btn01 {
    min-width: 170px;
    width: 50%;
    padding-left: 22px;
    padding-right: 36px;
    font-size: 100%;
  }

  :lang(en) .ftNavi02 .btn01 {
    min-width: 185px;
  }

  .ftNavi03 {
    --ftNavi01Color: var(--color);
    order: 0;
    height: auto;
    width: var(--basew);
    margin: 25px auto 0;
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 15px;
  }

  .ftNavi03 li {
    flex: 0 0 50%;
  }

  .ftNavi03 a {
    display: block;
  }

  .univInfo {
    order: 1;
    width: var(--basew);
    margin: 30px auto 50px;
    font-size: 1.2rem;
    line-height: 1.5;
  }

  :lang(en) .univInfo {
    max-width: none;
  }

  .univInfo .address {
    margin-left: 0;
  }

  .univInfo .sns {
    margin-top: 15px;
    margin-left: 0;
  }

  .univInfo .sns a {
    border: 1px solid #C9C9C9;
  }

  .pagetop {
    order: 1;
  }

  .pagetop a {
    right: 5px;
    bottom: 16px;
    translate: 0 0;
    font-size: 1.5rem;
  }

  .copyright {
    flex: 0 0 100%;
    display: block;
    margin-left: 0;
    margin-right: 0;
    padding: 20px 0;
    height: auto;
    background-color: #000;
    text-align: center;
    font-size: 0.9rem;
  }
}

/* ----------------------------------------------
 * * top
 * *----------------------------------------------*/
.topMainvisual {
  height: 745px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.topMainvisual .slideControllers {
  right: calc((100% - var(--basew)) / 2);
  bottom: 60px;
}

.topMainvisual .mvBg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.topMainvisual .mvBg img {
  position: absolute;
  right: 50%;
  bottom: 50%;
  translate: 50% 50%;
  width: auto;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.topMainvisual .text {
  max-width: var(--basew);
  width: 100%;
  position: absolute;
  right: 50%;
  bottom: 60px;
  translate: 50% 0;
  letter-spacing: 0.065em;
  color: #fff;
}

.topMainvisual .text br {
  display: none;
}

.topMainvisual h1 {
  font-weight: bold;
  font-size: 4rem;
  letter-spacing: 0.07em;
}

.topMainvisual h1 span {
  display: inline-block;
  margin-left: 0.5em;
}

.topDepartment .contentsNavi li.topIntl .text{
  color: #53A2D7;
}

.topDepartment .contentsNavi li{
  flex: 0 0 21.25%;
}

.topDepartment .contentsNavi li:nth-of-type(4){
  margin-left: auto;
}

.topDepartment .contentsNavi li .thumb {
  height: auto;
  aspect-ratio: auto;
}

.topDepartment .contentsNavi li .item{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topDepartment .contentsNavi li.topIntl .item{
  border-top: 6px solid #53A2D7;
}

.topDepartment .contentsNavi li.topSciences .item{
  border-top: 6px solid #58A84A;
}

.topDepartment .contentsNavi li.topArt .item{
  border-top: 6px solid #D4343A;
}

.topDepartment .contentsNavi li.topPeace .item{
  border-top: 6px solid #A2883E;
}

.topDepartment .contentsNavi li .text{
  font-size: 2rem;
}

.topDepartment .contentsNavi li .arrow{
  margin-top: 20px;
  width: 24px;
}

.topDepartment .contentsNavi li.topIntl .text{
  color: #53A2D7;
}

.topDepartment .contentsNavi li.topSciences .text{
  color: #58A84A;
}

.topDepartment .contentsNavi li.topArt .text{
  color: #D4343A;
}

.topDepartment .contentsNavi li.topPeace .text{
  color: #A2883E;
}

nav .menuHamburger .accordionBody li.layer2nd a::before {
    left: auto;
    right: 14px;
    top: 50%;
    translate: 0 -50%;
    background: url(/images/icon-arrow01.svg) no-repeat 0 0;
    background-size: 100% auto;
    width: 16px;
    height: 11px;
}

.topPickup {
  max-width: var(--basew);
  width: 100%;
  margin: 80px auto 108px;
  display: flex;
  flex-wrap: wrap;
}

.topPickup h2 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 4rem;
  letter-spacing: 0.06em;
}

.topPickup h2 span {
  display: block;
  flex: 1 1 auto;
}

.topPickup h2 .icon {
  flex: 0 0 auto;
  margin-left: 20px;
}

.topPickup h2 img {
  display: block;
}

.topPickup .contentsNavi{
  margin-top: 20px;
}

.topNews {
  max-width: var(--basew);
  width: 100%;
  margin: 80px auto 108px;
  display: flex;
  flex-wrap: wrap;
}

.topNews h2 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 4rem;
  letter-spacing: 0.06em;
}

.topNews h2 span {
  display: block;
  flex: 1 1 auto;
}

.topNews h2 .icon {
  flex: 0 0 auto;
  margin-left: 20px;
}

.topNews h2 img {
  display: block;
}

.btnMore {
  flex: 0 0 auto;
  margin-left: auto;
}

.cateList {
  flex: 0 0 100%;
  margin-bottom: 25px;
  list-style: none;
  display: flex;
  font-weight: bold;
  --bdColor: var(--lineColor01);
}

.cateList .news {
  --bdColor: var(--news);
}

.cateList .admissons {
  --bdColor: var(--admissons);
}

.cateList .events {
  --bdColor: var(--events);
}

.cateList .mediaawards {
  --bdColor: var(--mediaAwards);
}

.cateList .exhibitions {
  --bdColor: var(--exhibitions);
}

.cateList .private {
  --bdColor: var(--private);
}

.cateList li {
  flex: 1 1 auto;
}

.cateList li:not(:first-child) {
  position: relative;
}

.cateList li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 1px;
  height: 1.25em;
  background-color: #D4D4D4;
}

.cateList button {
  width: 100%;
  height: 64px;
  padding: 0 0.5em;
  background-color: #fff;
  border: none;
  border-bottom: 3px solid #D4D4D4;
}

.cateList a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 0 0.5em;
  background-color: #fff;
  border: none;
  border-bottom: 3px solid #D4D4D4;
  text-decoration: none;
}

.cateList .current button,
.cateList .current a {
  border-bottom-color: var(--bdColor);
}

.postlistWrap {
  flex: 0 0 100%;
}

.postList {
  list-style: none;
  --bgColor: var(--lineColor01);
}

.postList li {
  border-bottom: 1px solid #C7C7C7;
}

.postList li:last-child {
  border-bottom: none;
}

.postList .news {
  --bgColor: var(--news);
}

.postList .admissons {
  --bgColor: var(--admissons);
}

.postList .events {
  --bgColor: var(--events);
}

.postList .mediaawards {
  --bgColor: var(--mediaAwards);
}

.postList .exhibitions {
  --bgColor: var(--exhibitions);
}

.postList .private {
  --bgColor: var(--private);
}

.postList .empty {
  padding: 25px 20px 20px;
}

.postList a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 25px 46px 20px 20px;
  background: url(/images/icon-arrow01.svg) no-repeat right 30px center;
  background-size: 16px auto;
  text-decoration: none;
}

.postList .category {
  flex: 0 0 118px;
  background-color: var(--bgColor);
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
}

:lang(en) .postList .category {
  padding-top: 3px;
  padding-bottom: 3px;
  line-height: 1.2;
}

.postList .date {
  flex: 0 0 auto;
  margin-left: 16px;
  font-size: 1.4rem;
  color: #656565;
}

.postList .new {
  margin-left: 15px;
  color: var(--lineColor01);
  font-size: 1.4rem;
  font-weight: bold;
}

.postList .title {
  margin-top: 8px;
  flex: 0 0 100%;
}

.importantNews {
  max-width: var(--basew);
  width: 100%;
  padding: 26px 0;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
  margin: 80px auto;
  display: flex;  
}

.importantNews h2 {
  flex: 0 0 175px;
  display: flex;
  align-items: flex-start;
  padding-left: 4px;
  position: relative;
  border-right: 1px solid #707070;
}

:lang(en) .importantNews h2 {
  flex-basis: 200px;
}

.importantNews h2 img {
  display: block;
  margin-top: 2px;
  margin-right: 14px;
}

.importantNews ul {
  width: calc(100% - 175px);
  padding-left: 32px;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

:lang(en) .importantNews ul {
  width: calc(100% - 200px);
}

.importantNews li:nth-child(n+2) {
  margin-top: 5px;
}

.importantNews a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}

.contentsNavi {
  max-width: var(--basew);
  width: 100%;
  margin: 60px auto 0;
  list-style: none;
  display: flex;
  gap: 40px 3.66%;
  flex-wrap: wrap;
  font-weight: bold;
}

.contentsNavi li {
  flex: 0 0 22.25%;
}

.contentsNavi a {
  display: block;
  text-decoration: none;
}

.contentsNavi a img {
  vertical-align: middle;
}

.contentsNavi .thumb {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.contentsNavi .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 0.3s;
}

.contentsNavi .text {
  margin-top: 20px;
}

.contentsNavi .arrow {
  line-height: 1;
  transition-duration: 0.3s;
}

@media (any-hover: hover) {
  .contentsNavi a:hover .thumb img {
    scale: 1.1 1.1;
  }

  .contentsNavi a:hover .arrow {
    padding-left: 8px;
  }

  .cateList button:hover,
  .cateList a:hover {
    border-color: var(--bdColor);
  }

  .postList a:hover {
    background-position: right 20px center;
  }

  .postList a:hover .title {
    text-decoration: underline;
  }

  .importantNews a:hover {
    text-decoration: underline;
  }
}

@media (any-hover: none) {
  .contentsNavi a:active .thumb img {
    scale: 1.1 1.1;
  }

  .contentsNavi a:active .arrow {
    padding-left: 8px;
  }

  .cateList button:active,
  .cateList a:active {
    border-color: var(--bdColor);
  }

  .postList a:active {
    background-position: right 20px center;
  }

  .postList a:active .title {
    text-decoration: underline;
  }

  .importantNews a:active {
    text-decoration: underline;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .topMainvisual .slideControllers {
    right: 20px;
  }

  .topMainvisual .text {
    width: calc(100% - 40px);
  }

  .topNews {
    width: calc(100% - 40px);
  }

  .importantNews,
  .contentsNavi {
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 767px) {
  .topMainvisual {
    height: calc(100svh - var(--hdHeight) - 70px);
    font-size: 1.3rem;
  }

  .topMainvisual .slideControllers {
    right: auto;
    left: calc((100% - var(--basew)) / 2);
    bottom: 4.7619%;
  }

  .topMainvisual .mvBg {
    position: relative;
  }

  .topMainvisual .text {
    bottom: 13.1868%;
  }

  .topMainvisual .text br {
    display: inline;
  }

  .topMainvisual h1 {
    margin-bottom: 8px;
    font-size: 2.4rem;
    letter-spacing: 0.065em;
    line-height: 1.4167;
  }

  .topMainvisual h1 span {
    display: block;
    margin-left: 0;
  }

.topDepartment .contentsNavi li {
    flex: 0 0 22.25%;
    flex-basis: 48.5%;
}
.topDepartment .contentsNavi li.topIntl .item{
  border-top: 3px solid #53A2D7;
}

.topDepartment .contentsNavi li.topSciences .item{
  border-top: 3px solid #58A84A;
}

.topDepartment .contentsNavi li.topArt .item{
  border-top: 3px solid #D4343A;
}

.topDepartment .contentsNavi li.topPeace .item{
  border-top: 3px solid #A2883E;
}
.topDepartment .contentsNavi li .text{
  font-size: 1.4rem;
}

.topDepartment .contentsNavi li .arrow{
  margin-right: 5px;
  margin-top: 8px;
}

  .topPickup {
    max-width: none;
        width: 100%;
  }

  .topPickup h2 {
    padding: 0 calc((100% - var(--basew)) / 2);
    margin-bottom: 10px;
    font-size: 2.2rem;
  }

  .topPickup h2 .icon {
    width: 30px;
    margin-left: 14px;
  }

  .topNews {
    max-width: none;
    width: 100%;
    margin: 60px auto 96px;
  }

  .topNews h2 {
    padding: 0 calc((100% - var(--basew)) / 2);
    margin-bottom: 10px;
    font-size: 2.2rem;
  }

  .topNews h2 .icon {
    width: 30px;
    margin-left: 14px;
  }

  .topNews .btnMore {
    order: 1;
    margin-right: auto;
    margin-top: 40px;
    font-size: 1.2rem;
  }

  .cateList {
    width: 100%;
    overflow: auto;
    margin: 0 0 5px;
    padding: 0 calc((100% - var(--basew)) / 2);
    font-size: 1.2rem;
  }

  .cateList li:not(:first-child)::before {
    display: none;
  }

  .cateList button,
  .cateList a {
    height: 52px;
    white-space: nowrap;
    padding: 0 0.5em;
    border-bottom-width: 2px;
  }

  .postList {
    padding: 0 calc((100% - var(--basew)) / 2);
    font-size: 1.4rem;
    line-height: 1.7143;
    letter-spacing: 0.03em;
  }

  .postList li:last-child {
    border-bottom: 1px solid #C7C7C7;
  }

  .postList .empty {
    padding-left: 0;
    padding-right: 0;
  }

  .postList a {
    padding-left: 0;
    padding-right: 0;
    background-image: none;
  }

  .postList .category {
    flex-basis: 92px;
    font-size: 1.1rem;
  }

  .postList .date {
    margin-left: 12px;
    font-size: 1.1rem;
  }

  .postList .new {
    margin-left: 6px;
    font-size: 1.1rem;
  }

  .importantNews {
    display: block;
    padding: 12px 0;
    font-size: 1.2rem;
    margin: 0 auto;
    border-top: none;
  }

  .importantNews h2 {
    padding-left: 0;
    margin-bottom: 4px;
    border-right: none;
    font-size: 1.4rem;
  }

  .importantNews h2::before {
    display: none;
  }

  .importantNews h2 img {
    width: 16px;
    height: auto;
    margin-right: 4px;
  }

  .importantNews ul {
    width: 100%;
    padding-left: 0;
  }

  :lang(en) .importantNews ul {
    width: 100%;
  }

  .contentsNavi {
    margin-top: 24px;
    gap: 28px 3%;
    font-size: 1.4rem;
  }

  .contentsNavi li {
    flex-basis: 48.5%;
  }

  .contentsNavi .text {
    margin-top: 8px;
  }

  .contentsNavi .text span {
    display: none;
  }

  .contentsNavi .arrow img {
    width: 13px;
  }
}

/* ----------------------------------------------
 * * news
 * *----------------------------------------------*/
.archive .contentsBody {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 70px;
}

.archiveSection {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  margin-bottom: 80px;
}

.archiveSection h2 {
  display: flex;
  align-items: center;
  border-left: 5px solid #656565;
  border-bottom: 2px solid #656565;
  padding: 2px 0 8px 26px;
  margin-bottom: 15px;
  font-size: 2.8rem;
  line-height: 1.4;
}

.archiveSection ul {
  list-style: none;
}

.archiveSection li {
  position: relative;
  padding-left: 20px;
}

.archiveSection li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc((1.6em - 8px) / 2);
  width: 6px;
  height: 6px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  rotate: -45deg;
}

.archiveSection li:nth-child(n+2) {
  margin-top: 8px;
}

.archiveSection li li {
  padding-left: 12px;
  margin-top: 4px;
}

.archiveSection li li::before {
  rotate: 0deg;
  top: calc((1.6em - 1px) / 2);
  height: 1px;
  border-right: none;
  border-bottom-width: 1px;
}

.archiveSection li a {
  text-decoration: none;
}

.archiveSection.long {
  grid-column: 1/-1;
  grid-template-columns: subgrid;
}

.archiveSection.long h2 {
  grid-column: 1/-1;
}

.archiveSection.long .longChild h3 {
  margin-bottom: 5px;
}

.archiveSection.long .longChild h3:nth-child(n+2) {
  margin-top: 1em;
}

.archiveSection.long .flex {
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  column-gap: 70px;
}

.archiveSection.long .flex>li {
  flex: 0 0 auto;
  width: calc((100% - 140px) / 3);
  margin-top: 0;
}

.archiveSection.long .flex>li:nth-child(n+4) {
  margin-top: 8px;
}

.archive .bnrArea {
  grid-column: 1/-1;
  grid-row: span 1;
  list-style: none;
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}

.archive .bnrArea:last-child {
  margin-top: 40px;
}

.archive .bnrArea.grid {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: subgrid;
}

.archive .bnrArea.grid>* {
  max-width: none;
}

.archive .bnrArea>* {
  flex: 0 0 auto;
  max-width: 49%;
}

.archive .bnrArea a {
  display: inline-block;
}

.archive .bnrArea img {
  transition-duration: 0.3s;
  vertical-align: bottom;
}

.archive .dateArchiveTtl {
  margin-bottom: 20px;
  font-size: 3rem;
}

.paginations {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.paginations p {
  margin-right: 46px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination .page-numbers {
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  padding: 4px;
}

.pagination .page-numbers+.page-numbers {
  margin-left: 1em;
}

.pagination .page-numbers.current {
  border-bottom-color: var(--lineColor01);
}

.pagination .page-numbers.prev {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 18px;
}

.pagination .page-numbers.prev::before {
  content: "";
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.375em;
  height: 0.375em;
  border-left: 2px solid var(--lineColor01);
  border-top: 2px solid var(--lineColor01);
  rotate: -45deg;
}

.pagination .page-numbers.next {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: calc(1em + 18px);
}

.pagination .page-numbers.next::before {
  content: "";
  display: block;
  width: 0.375em;
  height: 0.375em;
  border-right: 2px solid var(--lineColor01);
  border-bottom: 2px solid var(--lineColor01);
  rotate: -45deg;
}

.pagination a {
  text-decoration: none;
}

.archive .yearly {
  margin-top: 86px;
}

.archive .yearly h2 {
  border-bottom: 1px solid;
  padding-bottom: 8px;
  margin-bottom: 30px;
  font-size: 2.8rem;
  letter-spacing: 0;
}

.archive .yearly ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.8rem;
  gap: 15px 0;
}

.archive .yearly li {
  flex: 0 0 16.66%;
}

.archive .yearly a {
  position: relative;
  display: inline-block;
  padding-left: 22px;
  text-decoration: none;
}

.archive .yearly a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 50%;
  translate: 0 50%;
  rotate: -45deg;
  width: 0.3889em;
  height: 0.3889em;
  border-bottom: 2px solid var(--lineColor01);
  border-right: 2px solid var(--lineColor01);
}

@media (any-hover: hover) {
  .archiveSection li a:hover {
    text-decoration: underline;
  }

  .archive .bnrArea a:hover img {
    opacity: 0.6;
  }

  .pagination a:hover {
    border-bottom-color: var(--lineColor01);
  }

  .archive .yearly a:hover {
    text-decoration: underline;
  }
}

@media (any-hover: none) {
  .archiveSection li a:active {
    text-decoration: underline;
  }

  .archive .bnrArea a:active img {
    opacity: 0.6;
  }

  .pagination a:active {
    border-bottom-color: var(--lineColor01);
  }

  .archive .yearly a:active {
    text-decoration: underline;
  }
}

@media screen and (max-width: 767px) {
  .archive .contentsBody {
    display: block;
  }

  .archiveSection {
    display: block;
    margin-bottom: 40px;
    font-size: 1.4rem;
  }

  .archiveSection h2 {
    padding: 0 0 2px 14px;
    font-size: 2rem;
  }

  .archiveSection li a {
    display: block;
  }

  .archiveSection.long .longChild+.longChild {
    margin-top: 1em;
  }

  .archiveSection.long ul.longChild+ul.longChild {
    margin-top: 8px;
  }

  .archiveSection.long .flex {
    display: block;
  }

  .archiveSection.long .flex>li {
    width: auto;
  }

  .archiveSection.long .flex>li:nth-child(n+2) {
    margin-top: 8px;
  }

  .archive .bnrArea {
    display: block;
    margin-bottom: 40px;
  }

  .archive .bnrArea>* {
    max-width: none;
  }

  .archive .bnrArea>*:nth-child(n+2) {
    margin-top: 20px;
  }

  .archive .dateArchiveTtl {
    width: var(--basew);
    margin: 0 auto 5px;
    font-size: 2.2rem;
  }

  .paginations {
    width: var(--basew);
    margin: 40px auto 0;
  }

  .archive .yearly {
    width: var(--basew);
    margin: 64px auto 0;
  }

  .archive .yearly h2 {
    font-size: 2rem;
  }

  .archive .yearly ul {
    font-size: 1.4rem;
  }

  .archive .yearly li {
    flex-basis: 33.33%;
  }

  .archive .yearly a {
    padding-left: 16px;
  }
}

.news.archive .contentsBody {
  margin-top: 84px;
  display: block;
}

.news.single {
  background-color: #F9F9F9;
}

.news.single footer {
  border-top: 2px solid var(--color);
}

.news.single .contentsHeader {
  min-height: 472px;
}

.news.single .contentsHeader h1 {
  min-width: 372px;
  border-right: none;
  grid-column: 2/3;
}

.news.single .contentsMv {
  margin-top: 40px;
  height: 228px;
}

.news.single .contentsBody {
  margin: 46px auto 82px;
  background-color: #fff;
  padding: 90px 80px 96px;
}

.news.single .postInfo {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #4B4B4B;
}

.news.single .postInfo>div {
  margin-right: 1em;
}

.news.single .postInfo .category {
  background-color: var(--bgColor);
  flex: 0 0 9em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.news.single .postInfo .category.news {
  --bgColor: var(--news);
}

.news.single .postInfo .category.admissons {
  --bgColor: var(--admissons);
}

.news.single .postInfo .category.events {
  --bgColor: var(--events);
}

.news.single .postInfo .category.mediaawards {
  --bgColor: var(--mediaAwards);
}

.news.single .postInfo .category.exhibitions {
  --bgColor: var(--exhibitions);
}

.news.single .postInfo .category.private {
  --bgColor: var(--private);
}

.news.single .btnBack {
  margin: 0 auto 142px;
  text-align: center;
}

.news.single .btnBack .btn01 {
  --btnColor: #fff;
  --btnBgc: var(--color);
  display: inline-flex;
  padding-left: 60px;
  padding-right: 60px;
}

.news.single .btnBack .btn01 .icon {
  right: auto;
  left: 18px;
}

.news.single .btnBack .btn01 .icon-arrow01 {
  scale: -1 1;
}

.news.single .sns_btn {
  margin-top: 45px;
}

.news.single .sns_btn ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.news.single .sns_btn li {
  height: 20px;
  line-height: 1;
}

@media (any-hover: hover) {
  .news.single .btnBack .btn01:hover {
    --btnColor: var(--color);
    --btnBgc: #fff;
  }

  .news.single .btnBack .btn01:hover .icon {
    left: 8px;
  }
}

@media (any-hover: none) {
  .news.single .btnBack .btn01:active {
    --btnColor: var(--color);
    --btnBgc: #fff;
  }

  .news.single .btnBack .btn01:active .icon {
    left: 8px;
  }
}

@media screen and (max-width: 767px) {
  .news.archive .contentsBody {
    margin-top: 17px;
    max-width: 100%;
  }

  .news.single .contentsHeader {
    --gap: 0;
    grid-template-columns: calc((100% - var(--basew)) / 2) 1fr 53.333% calc((100% - var(--basew)) / 2);
    grid-template-rows: repeat(2, auto);
  }

  .news.single .contentsHeader .breadcrumbs {
    background-color: #fff;
    margin-top: 24px;
    margin-bottom: 0;
  }

  .news.single .contentsHeader h1 {
    min-width: 0;
    grid-column: 2/3;
  }

  .news.single .contentsMv {
    height: 21.3333vw;
    margin-top: 20px;
  }

  .news.single .contentsBody {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 35px;
    padding: 20px calc((100% - var(--basew)) / 2) 80px;
  }

  .news.single .postInfo {
    font-size: 1.2rem;
  }

  .news.single .btnBack {
    margin-bottom: 108px;
    font-size: 1.2rem;
  }

  .news.single .btnBack .btn01 {
    padding-right: 42px;
    padding-left: 55px;
  }
  
.news.single .contentsHeader {
  min-height: 0;
}
}

/* ----------------------------------------------
 * * department
 * *----------------------------------------------*/
.departmentCategory_art,
.departmentCategory_gs_art {
  --artColor: #AB4A4D;
}

.departmentCategory_art .contentsHeader,
.departmentCategory_gs_art .contentsHeader {
  --enColor: var(--artColor);
}

.departmentCategory_intl,
.departmentCategory_gs_intl {
  --intlColor: #4874b5;
}

.departmentCategory_intl .contentsHeader,
.departmentCategory_gs_intl .contentsHeader {
  --enColor: var(--intlColor);
}

.departmentCategory_sciences,
.departmentCategory_gs_sciences {
  --sciencesColor: #539467;
}

.departmentCategory_sciences .contentsHeader,
.departmentCategory_gs_sciences .contentsHeader {
  --enColor: var(--sciencesColor);
}

.departmentCategory_gs_peace {
  --peaceColor: #867032;
}

.departmentCategory_gs_peace .contentsHeader {
  --enColor: var(--peaceColor);
}

.departmentCategory_intl .contentsMv img {
  object-position: center 23%;
}

.art .contentsMv,
.sciences .contentsMv,
.intl .contentsMv {
  height: 550px;
}

.art .contentsHeader,
.sciences .contentsHeader,
.intl .contentsHeader {
  min-height: 794px;
}

@media screen and (max-width: 767px) {

  .art .contentsMv,
  .sciences .contentsMv,
  .intl .contentsMv {
    max-height: 200px;
    height: 53.3333vw;
  }

.art .contentsHeader,
.sciences .contentsHeader,
.intl .contentsHeader {
  min-height: 0;
}

}

/* ----------------------------------------------
 * * search result
 * *----------------------------------------------*/
.narrowDown {
  border: 1px solid #C7C7C7;
  border-radius: 5px;
  margin: 70px auto 85px;
  padding: 70px 75px 74px;
  font-size: 1.8rem;
}

.narrowDown [type=search] {
  border: 1px solid;
  background-color: #fff;
  border-radius: 2px;
  width: 264px;
  height: 48px;
  padding: 0 6px 0 16px;
}

.narrowDown .allCheck {
  margin-top: 30px;
}

.narrowDown .checkList {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 6px 2%;
  margin-top: 20px;
}

.narrowDown .btnSearch {
  display: block;
  margin: 56px auto 0;
  height: 46px;
  border-radius: 46px;
  border: 1px solid var(--color);
  background-color: var(--color);
  padding: 0 3.25em;
  color: #fff;
}

.search-results h2 {
  margin-bottom: 30px;
  font-weight: normal;
  font-size: 1.8rem;
}

.search-resultsWrap section:nth-of-type(n+2) {
  margin-top: 80px;
}

.search-results h3 {
  border-bottom: 1px solid;
  margin-bottom: 14px;
  padding-bottom: 8px;
  font-size: 2.8rem;
}

.search-results .postList li:last-child {
  border-bottom: 1px solid #C7C7C7;
}

.search-results .paginations {
  margin-top: 100px;
}

.search-no-results h2 {
  margin-bottom: 30px;
  font-weight: normal;
  font-size: 1.8rem;
}

@media (any-hover: hover) {
  .narrowDown .btnSearch:hover {
    background-color: #fff;
    color: var(--color);
  }
}

@media (any-hover: none) {
  .narrowDown .btnSearch:active {
    background-color: #fff;
    color: var(--color);
  }
}

@media screen and (max-width: 767px) {
  .narrowDown {
    margin-top: 30px;
    margin-bottom: 45px;
    padding: 20px;
    font-size: 1.4rem;
  }

  .narrowDown [type=search] {
    width: 100%;
    height: 38px;
    padding-left: 10px;
  }

  .narrowDown .allCheck .checkbox,
  .narrowDown .allCheck .label {
    display: flex;
  }

  .narrowDown .checkList {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-auto-flow: row;
    margin-top: 20px;
  }

  .narrowDown .checkList .checkbox {
    display: flex;
  }

  .narrowDown .checkList .checkbox .label {
    display: flex;
  }

  .narrowDown .btnSearch {
    margin-top: 20px;
    height: 35px;
    border-radius: 35px;
    padding: 0 2.5em;
    font-size: 1.2rem;
  }

  .search-results h2 {
    display: none;
  }

  .search-resultsWrap section:nth-of-type(n+2) {
    margin-top: 42px;
  }

  .search-results h3 {
    margin-bottom: 10px;
    font-size: 2rem;
  }

  .search-results .postList {
    padding: 0;
  }

  .search-results .postList a {
    padding-top: 20px;
  }

  .search-results .paginations {
    margin-top: 60px;
  }

  .search-no-results .search-resultsWrap p {
    font-size: 1.4rem;
  }
}


/* ----------------------------------------------
 * * プリントcss
 * *----------------------------------------------*/

@media print {
header {
    position: absolute;
  }
  .btnHamburger{
    position: absolute;
  }
  .news.single .contentsBody {
    padding: 0;
  }
  .single .temp07 li {
    width: 30%;
    margin: 0 2% 15px 0;
    float: none;
    display: inline-block;
    vertical-align: top;
    page-break-inside: avoid;
  }
}

/* ----------------------------------------------
 * * オープンキャンパスcss 2024~
 * *----------------------------------------------*/

.oc_day {
	display: flex;
	justify-content: space-between;
}.oc_day {
	display: flex;
	justify-content: space-between;
}
.oc_day>div {
	width: 45%;
	position: relative;
  display: flex;
  flex-flow: column;
}
.oc_day .oc_day_01::after {
	position: absolute;
	top: 0;
	left: 100%;
	margin: 0 6rem;
	content: "";
	width: 1px;
	height: 100%;
	background-color: #E3E3E3;
}
.oc_day .oc_day_01>div, .oc_day .oc_day_02>div {
	width: 87%;
	top: 242px;
	background: #fff;
	display: block;
	padding: 25px 25px 25px 0;
  margin-top: -130px;
}
.oc_day h3 {
	border-bottom: 1px solid #303030;
	margin-bottom: 0!important;
	padding: 0 10px 5px 0;
}
.oc_day h4 {
	font-size: 2.2rem!important;
	color: #303030!important;
	margin-bottom: 0!important;
}
.oc_day p {
	margin-bottom: auto!important;
}
.oc_day .date {
	font-size: 8.0rem;
	font-weight: 700;
	color: #6E612C;
}
.oc_day .date span {
	font-size: 2.9rem;
}
.oc_past .temp09 {
	align-items: center;
}
.oc_past .temp09:nth-child(odd) {
	flex-direction: row-reverse;
    }
.oc_past._kaijyou .temp09:nth-child(odd) {
	flex-direction: row;
    }
.oc_past._kaijyou .temp09:nth-child(even) {
	flex-direction: row-reverse;
    }
.oc_past .heading {
	width: 100%;
	display: flex;
	align-items: flex-end;
	line-height: 1;
	margin-bottom: 30px;
}
.oc_past .heading p {
	font-size: 6.6rem;
	font-weight: bold;
	color: #6E612C;
	margin-bottom: auto!important;
}
.oc_past .heading h4 {
	color: #303030!important;
	border-bottom: 1px solid;
	padding: 0 0 10px 10px;
	margin-left: 20px;
	width: 100%;
	font-size: 3.0rem!important;
}
.oc_bnr {
	display: flex;
}

.oc_bnr._pm{
	display: block;
}

.oc_bnr>div:first-child{
	width: 66%;
	margin-right: 2%;
	 justify-content: space-between;

}
.oc_bnr_wrap {
	display: flex;
	border: #303030 solid 1px;
	background: #FBF9F8;
}
.oc_bnr_wrap a{
	display: flex;
}
.oc_bnr._pm .img {
  width: 50%;
}
.oc_bnr .img img {
	vertical-align: top;
  object-fit: cover;
  height: 100%;
  width: 100%
}
.oc_bnr .text {
	padding: 45px 75px;
}
.oc_bnr .text span {
	font-weight: bold;
}
.oc_bnr .text h5 {
	font-size: 2.4rem!important;
	font-weight: bold!important;
}

.oc_bnr_wrap._entry{
	display: flex;

}
.oc_bnr._pm .oc_bnr_wrap .text {
	padding: 55px 50px;
}
.oc_bnr_wrap .text {
	padding: 23px 48px;
}
.oc_bnr_wrap .text p{
	font-size: 1.4rem;
	margin-bottom: 5px;
}

.oc_bnr .arrow {
    line-height: 1;
    transition-duration: 0.3s;
}

.oc_bnr a:hover .arrow {
    padding-left: 8px;
  }

.oc_anchorLink{
    width: 100%;
    margin-bottom: 30px;
    list-style: none;
    display: flex;
	gap: 40px 0;
    font-weight: bold;
}

.oc_anchorLink li{
	flex: 0 0 32%;
	margin-right: 2%;
}

.oc_anchorLink li a{
	text-decoration: none;
	justify-content: center;
}

.oc_anchorLink li .icon{
	transform: rotate(90deg);
}

.oc_anchorLink .btnWrap-inner{
	display: block!important;
}

.oc_anchorLink._web li{
	flex: 0 0 49%;
}
.oc_anchorLink._web li a.btn01.btn_black{
	display: flex!important;
}


.oc_anchorLink .btn01:hover .icon{
	right: 23px;
}


@media only screen and (max-width: 767px) {

.oc_day {
	display: block;
}
.oc_day div {
	width: 100%;
}
.oc_day .date {
	font-size: 4.6rem;
}
.oc_day h4 {
    font-size: 2rem !important;
}
.oc_day .date span {
    font-size: 2.2rem;
}
.oc_day .oc_day_01>div, .oc_day .oc_day_02>div {
    width: 92%;
    top: 140px;
    padding: 15px;
    margin: -100px auto 0;
    right: 0;
    left: 0;
}
.oc_past .heading p {
	font-size: 5.0rem;
}
.oc_past .heading h4{
	font-size: 2rem!important;
	margin-bottom: 8px!important;
}
.oc_past .temp09:nth-child(odd) {
	flex-direction: unset;
    }
.oc_past .heading {
	margin-top: 15px;
    margin-bottom: 15px;
}

.oc_bnr {
	display: block;
}
.oc_bnr>div:first-child{
	width: 100%;
	margin-right: 0;
	margin-bottom: 20px;

}
.oc_bnr_wrap {
	display: block;
}
.oc_bnr_wrap a{
	display: block;
	width: 100%;
}
.oc_bnr_wrap .text h5{
	font-size: 2.0rem!important;
}
.oc_bnr_wrap .text,.oc_bnr._pm .oc_bnr_wrap .text  {
	padding: 20px 20px 35px;
}
.oc_bnr_wrap{
	display: block;
}
.oc_bnr_wrap .text {
	padding: 20px 24px;
}
.oc_bnr_wrap .text p{
	font-size: 1.4rem;
	margin-bottom: 5px;
}

.oc_bnr._pm .img {
  width: 100%;
}

.oc_anchorLink{
    margin: 0 auto;
    display: block;
}

.oc_anchorLink li{
	margin: 0 0 15px;
}

.oc_anchorLink li a{
	padding: 8px 48px 8px 30px;
}

.oc_anchorLink li .icon{
	transform: rotate(90deg);
}
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}