@import url(reset.css);
@use "reset.css";
body {
  color: #444;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
}

.arial {
  font-family: Arial;
}

a {
  transition-property: opacity;
  transition-duration: 0.5s;
}

a:hover {
  opacity: 0.6;
}

/*
$breakpoint: 767px;
*/
header {
  width: 426px;
  left: 0;
  top: 0;
  z-index: 1000;
  position: fixed;
}
header #headerIn {
  padding: 72px;
  text-align: left;
  position: relative;
}
header #headerIn h1 {
  margin-bottom: 26px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  z-index: 10;
  position: relative;
}
header #headerIn h1 a:hover {
  opacity: 1;
}
header #headerIn #hamburger {
  display: none;
  right: 0;
  top: 0;
  z-index: 10;
  position: absolute;
}
header #headerIn #gNavi #hdNavMain {
  margin-bottom: 23px;
}
header #headerIn #gNavi #hdNavMain li {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
header #headerIn #gNavi #hdNavMain .navTop {
  display: none;
}
header #headerIn #gNavi #hdNavYear {
  margin-bottom: 25px;
}
header #headerIn #gNavi #hdNavYear li {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
header #headerIn #gNavi #hdNavSub {
  margin-bottom: 40px;
}
header #headerIn #gNavi #hdNavSub li {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
header #headerIn #gNavi #hdNavSns {
  display: flex;
}
header #headerIn #gNavi #hdNavSns li {
  margin-right: 20px;
  width: 24px;
}

footer {
  padding: 0 5% 92px;
}
footer .copy {
  color: #999;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: right;
}

@media screen and (max-width: 1023px) {
  header {
    width: 100%;
  }
  header #headerIn {
    padding: 30px 25px;
    height: 70px;
    background: #fff;
    box-sizing: border-box;
  }
  header #headerIn h1 {
    margin-bottom: 0;
    font-size: 1.6rem;
  }
  header #headerIn #hamburger {
    width: 84px;
    height: 70px;
    display: block;
    cursor: pointer;
  }
  header #headerIn #hamburger span, header #headerIn #hamburger::before, header #headerIn #hamburger::after {
    content: " ";
    width: 34px;
    height: 1px;
    background: #444;
    display: block;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    left: 25px;
    top: 34px;
    position: absolute;
    transform-origin: center center;
  }
  header #headerIn #hamburger::before {
    transform: translateY(-6px);
  }
  header #headerIn #hamburger::after {
    transform: translateY(6px);
  }
  header #headerIn #gNavi {
    padding: 70px 0 0;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    background: #f5f5f5;
    left: 100%;
    top: 0;
    z-index: 1;
    position: absolute;
    opacity: 0;
    transition-property: opacity,transform;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-duration: .6s;
  }
  header #headerIn #gNavi nav {
    padding: 50px 25px;
    height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
  }
  header #headerIn #gNavi nav ul {
    transition-property: opacity,transform;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-duration: .4s;
    transform: translateX(20%);
    opacity: 0;
  }
  header #headerIn #gNavi nav #hdNavMain {
    transition-delay: .5s;
  }
  header #headerIn #gNavi nav #hdNavMain .navTop {
    display: block;
  }
  header #headerIn #gNavi nav #hdNavYear {
    transition-delay: .6s;
  }
  header #headerIn #gNavi nav #hdNavSub {
    transition-delay: .7s;
  }
  header #headerIn #gNavi nav #hdNavSns {
    transition-delay: .8s;
  }

  header.open #headerIn #hamburger span, header.open #headerIn #hamburger::before, header.open #headerIn #hamburger::after {
    transition-property: all;
    transition-duration: .5s;
  }
  header.open #headerIn #hamburger span {
    opacity: 0;
  }
  header.open #headerIn #hamburger::before {
    transform: translateY(0) rotate(-45deg);
  }
  header.open #headerIn #hamburger::after {
    transform: translateY(0) rotate(45deg);
  }
  header.open #headerIn #gNavi {
    transition-duration: .8s;
    transform: translateX(-100%);
    opacity: 1.0;
  }
  header.open #headerIn #gNavi nav {
    padding: 50px 25px;
  }
  header.open #headerIn #gNavi nav ul {
    transition-duration: .6s;
    transition-delay: 0;
    transform: translateX(0);
    opacity: 1.0;
  }
  header.open #headerIn #gNavi nav #hdNavMain .navTop {
    display: block;
  }

  footer {
    padding: 0 25px 80px;
  }
}
main #container {
  padding: 77px 5% 0 426px;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
main #container article {
  padding: 0 0 50px;
  max-width: 1200px;
}
main #container article .articleHead {
  padding: 0 0 50px;
  width: 100%;
}
main #container article .articleHead h1 {
  margin: 0 0 20px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
main #container article .articleHead h1.cv {
  margin-bottom: 40px;
}
main #container article .articleHead p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
main #container article .articleHead.event h1 {
  margin: 6px 0 5px;
}

@media screen and (max-width: 1023px) {
  main #container {
    padding: 120px 25px 0;
  }
  main #container article .articleHead {
    padding: 0 0 40px;
  }
  main #container article .articleHead h1 {
    margin: 0 0 10px;
  }
  main #container article .articleHead h1.cv {
    margin-bottom: 10px;
  }
  main #container article .articleHead p {
    font-size: 1.4rem;
  }
  main #container article .articleHead.event h1 {
    margin: 10px 0 10px;
  }
}
.photoMainWrap {
  background: #f7f7f7;
}
.photoMainWrap .swiper .swiper-wrapper .swiper-slide figure {
  width: 100%;
  aspect-ratio: 942 / 707;
  display: block;
}
.photoMainWrap .swiper .swiper-wrapper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.photoTmbWrap {
  margin: 10px 0  40px;
}
.photoTmbWrap .swiper {
  overflow: visible;
}
.photoTmbWrap .swiper .swiper-wrapper {
  flex-wrap: wrap;
}
.photoTmbWrap .swiper .swiper-wrapper .swiper-slide {
  margin: 0 10px 10px 0;
  width: auto !important;
}
.photoTmbWrap .swiper .swiper-wrapper .swiper-slide figure {
  height: 50px;
  border: 1px #fff solid;
  display: block;
  cursor: pointer;
}
.photoTmbWrap .swiper .swiper-wrapper .swiper-slide figure img {
  width: auto;
  height: 100%;
}
.photoTmbWrap .swiper .swiper-wrapper .swiper-slide-thumb-active figure {
  border-color: #444;
}

@media screen and (max-width: 1023px) {
  .photoMainWrap .swiper .swiper-wrapper .swiper-slide figure {
    aspect-ratio: 340 / 255;
  }

  .photoTmbWrap {
    overflow-x: auto;
    overflow-y: hidden;
  }
  .photoTmbWrap .swiper .swiper-wrapper {
    flex-wrap: nowrap;
  }
  .photoTmbWrap .swiper .swiper-wrapper .swiper-slide {
    margin: 0 10px 0 0;
  }
  .photoTmbWrap .swiper .swiper-wrapper .swiper-slide figure {
    height: 80px;
  }
}
.movieBox {
  padding: 0 0 50px;
}
.movieBox > div {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}
.movieBox > div iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1023px) {
  .movieBox {
    padding: 0 0 50px;
  }
  .movieBox > div {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
  }
  .movieBox > div iframe {
    width: 100%;
    height: 100%;
  }
}
.contentBox {
  padding: 0 0 50px;
}
.contentBox .langTag {
  padding: 0 0 20px;
  align-items: flex-end;
  justify-content: flex-end;
  display: flex;
}
.contentBox .langTag li {
  margin-left: 5px;
  width: 80px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 2rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.contentBox .langTag li span {
  padding: 0 0 4px;
  display: block;
  border-bottom: 1px #444 solid;
  transition-property: opacity;
  transition-duration: 0.5s;
  cursor: pointer;
}
.contentBox .langTag li span:hover {
  opacity: 0.6;
}
.contentBox .langTag li.ja span {
  color: #ccc;
  border-color: #ccc;
}
.contentBox .contentBody > div {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.contentBox .contentBody > div p {
  margin-bottom: 1.6em;
}
.contentBox .contentBody > div p:last-of-type {
  margin-bottom: 0;
}
.contentBox .contentBody > div p.link {
  margin-top: 44px;
}
.contentBox .contentBody > div p.link a {
  vertical-align: middle;
}
.contentBox .contentBody > div p.link a::after {
  content: " ";
  margin-left: 9px;
  width: 14px;
  height: 10px;
  background: url("../img/icon_blank.svg") no-repeat center center/contain;
  display: inline-block;
}
.contentBox .contentBody > div p.about {
  padding-right: 5vw;
  line-height: 2;
}
.contentBox .contentBody > div h2 {
  margin: 150px 0 40px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.contentBox .contentBody > div h2:first-of-type {
  margin: 100px 0 50px;
}
.contentBox .contentBody > div dl.year {
  padding-right: 5vw;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.02em;
}
.contentBox .contentBody > div dl.year > div {
  margin-top: 10px;
  display: flex;
}
.contentBox .contentBody > div dl.year > div dt {
  width: 145px;
  position: relative;
}
.contentBox .contentBody > div dl.year > div dt::after {
  content: " ";
  width: 50px;
  height: 0;
  border-bottom: 1px #E6E6E6 solid;
  display: block;
  left: 65px;
  top: 15px;
  position: absolute;
}
.contentBox .contentBody > div dl.year > div dd {
  flex: 1;
}
.contentBox .contentBody .en {
  display: block;
}
.contentBox .contentBody .ja {
  display: none;
}

@media screen and (max-width: 1023px) {
  .contentBox {
    padding: 0 0 50px;
  }
  .contentBox .langTag {
    padding: 0 0 20px;
    align-items: flex-end;
    justify-content: flex-end;
    display: flex;
  }
  .contentBox .langTag li {
    margin-left: 5px;
    width: 80px;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 2rem;
    text-align: center;
    letter-spacing: 0.02em;
  }
  .contentBox .langTag li span {
    padding: 0 0 4px;
    display: block;
    border-bottom: 1px #444 solid;
    transition-property: opacity;
    transition-duration: 0.5s;
    cursor: pointer;
  }
  .contentBox .langTag li span:hover {
    opacity: 0.6;
  }
  .contentBox .langTag li.ja span {
    color: #ccc;
    border-color: #ccc;
  }
  .contentBox .contentBody > div {
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
  .contentBox .contentBody > div p {
    margin-bottom: 1.6em;
  }
  .contentBox .contentBody > div p:last-of-type {
    margin-bottom: 0;
  }
  .contentBox .contentBody > div p.link {
    margin-top: 44px;
  }
  .contentBox .contentBody > div p.link a {
    vertical-align: middle;
  }
  .contentBox .contentBody > div p.link a::after {
    content: " ";
    margin-left: 9px;
    width: 14px;
    height: 10px;
    background: url("../img/icon_blank.svg") no-repeat center center/contain;
    display: inline-block;
  }
  .contentBox .contentBody > div p.about {
    padding-right: 0;
    line-height: 2;
  }
  .contentBox .contentBody > div dl.year {
    padding-right: 0;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 2;
    letter-spacing: 0.02em;
  }
  .contentBox .contentBody > div dl.year > div {
    margin-top: 30px;
    display: block;
  }
  .contentBox .contentBody > div dl.year > div dt {
    width: auto;
    position: relative;
  }
  .contentBox .contentBody > div dl.year > div dt::after {
    display: none;
  }
  .contentBox .contentBody > div dl.year > div dd {
    flex: auto;
  }
  .contentBox .contentBody .en {
    display: block;
  }
  .contentBox .contentBody .ja {
    display: none;
  }
}
.contentBox.en .langTag li.en span {
  color: #444;
  border-color: #444;
}
.contentBox.en .langTag li.ja span {
  color: #ccc;
  border-color: #ccc;
}
.contentBox.en .contentBody .en {
  display: block;
}
.contentBox.en .contentBody .ja {
  display: none;
}

.contentBox.ja .langTag li.en span {
  color: #ccc;
  border-color: #ccc;
}
.contentBox.ja .langTag li.ja span {
  color: #444;
  border-color: #444;
}
.contentBox.ja .contentBody .en {
  display: none;
}
.contentBox.ja .contentBody .ja {
  display: block;
}

.contactBox {
  height: calc(100vh - 340px);
  justify-content: center;
  flex-direction: column;
  display: flex;
}
.contactBox p {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1023px) {
  .contactBox {
    height: calc(100vh - 350px);
  }
}
