@charset "UTF-8";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

html {
  overflow-y: scroll;
  height: 100%;
  font-size: 62.5%;
}

body {
  font-family: "EB Garamond", "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  margin: 0;
  padding: 0;
  height: 100%;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  background:#000;
}

/* ローディング画面 */
#loading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999999;
  width: 100%;
  height: 100vh;
  transition: all 1s;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loadingInner{

}

.loaded {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.ball {
  width: 10px;
  height: 10px;
  margin: 10px auto;
  border-radius: 50px;
}

.ball:nth-child(1) {
  background: #7eb19a;
  -webkit-animation: right 1s infinite ease-in-out;
  -moz-animation: right 1s infinite ease-in-out;
  animation: right 1s infinite ease-in-out;
}

.ball:nth-child(2) {
  background: #7eb19a;
  -webkit-animation: left 1.1s infinite ease-in-out;
  -moz-animation: left 1.1s infinite ease-in-out;
  animation: left 1.1s infinite ease-in-out;
}

.ball:nth-child(3) {
  background: #7eb19a;
  -webkit-animation: right 1.05s infinite ease-in-out;
  -moz-animation: right 1.05s infinite ease-in-out;
  animation: right 1.05s infinite ease-in-out;
}

.ball:nth-child(4) {
  background: #7eb19a;
  -webkit-animation: left 1.15s infinite ease-in-out;
  -moz-animation: left 1.15s infinite ease-in-out;
  animation: left 1.15s infinite ease-in-out;
}

.ball:nth-child(5) {
  background: #7eb19a;
  -webkit-animation: right 1.1s infinite ease-in-out;
  -moz-animation: right 1.1s infinite ease-in-out;
  animation: right 1.1s infinite ease-in-out;
}

.ball:nth-child(6) {
  background: #7eb19a;
  -webkit-animation: left 1.05s infinite ease-in-out;
  -moz-animation: left 1.05s infinite ease-in-out;
  animation: left 1.05s infinite ease-in-out;
}

.ball:nth-child(7) {
  background: #7eb19a;
  -webkit-animation: right 1s infinite ease-in-out;
  -moz-animation: right 1s infinite ease-in-out;
  animation: right 1s infinite ease-in-out;
}

@-webkit-keyframes right {
  0% {
    -webkit-transform: translate(-15px);
  }
  50% {
    -webkit-transform: translate(15px);
  }
  100% {
    -webkit-transform: translate(-15px);
  }
}

@-webkit-keyframes left {
  0% {
    -webkit-transform: translate(15px);
  }
  50% {
    -webkit-transform: translate(-15px);
  }
  100% {
    -webkit-transform: translate(15px);
  }
}

@-moz-keyframes right {
  0% {
    -moz-transform: translate(-15px);
  }
  50% {
    -moz-transform: translate(15px);
  }
  100% {
    -moz-transform: translate(-15px);
  }
}

@-moz-keyframes left {
  0% {
    -moz-transform: translate(15px);
  }
  50% {
    -moz-transform: translate(-15px);
  }
  100% {
    -moz-transform: translate(15px);
  }
}

@keyframes right {
  0% {
    transform: translate(-15px);
  }
  50% {
    transform: translate(15px);
  }
  100% {
    transform: translate(-15px);
  }
}

@keyframes left {
  0% {
    transform: translate(15px);
  }
  50% {
    transform: translate(-15px);
  }
  100% {
    transform: translate(15px);
  }
}

h2 {
  line-height: 1;
  position: absolute;
  left: 0;
  top: -0.1em;
  width: 100%;
  font-size: 16rem;
  opacity: 0.3;
  color: #fff;
  font-weight: normal;
  margin-bottom: 6rem;
}

h2 span {
  display: block;
  text-shadow: -1px -2px 0 #000;
}

h2.fadein.scrollin{
  opacity: 0.3;
}
h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  margin-bottom: 15px;
}

p {
  margin-bottom: 1em;
}

.sp-only {
  display: none;
}

img,
iframe {
  max-width: 100%;
  vertical-align: bottom;
}

.container {
  overflow: hidden;
  width: 100%;
  max-width: 1060px;
  margin: auto;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.tc {
  text-align: center;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.textRight {
  text-align: right;
}

.cl {
  clear: both;
}

.alignMiddle {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

a {
  color: #333;
  transition: all 0.3s;
}


.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12 {
  float: left;
  padding-left: 15px;
  padding-right: 15px;
}

.col-sm-1 {
  width: 8.333333%;
}

.col-sm-2 {
  width: 16.66666%;
}

.col-sm-3 {
  width: 25%;
}

.col-sm-4 {
  width: 33.3333%;
}

.col-sm-5 {
  width: 41.6666%;
}

.col-sm-6 {
  width: 50%;
}

.col-sm-7 {
  width: 58.333333%;
}

.col-sm-8 {
  width: 66.66666%;
  margin: 0 auto;
}

.col-sm-9 {
  width: 75%;
  margin: 0 auto;
}

.col-sm-10 {
  width: 83.33333%;
}

.col-sm-12 {
  width: 100%;
}

.col-sm-offset-1 {
  margin-left: 8.333333%;
}

.col-sm-offset-2 {
  margin-left: 16.66666%;
}

.col-sm-offset-3 {
  margin-left: 25%;
}

h1 {
}

a {
  color: #fff;
}

.b {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.fs10 {
  font-size: 1rem;
}

.fs12 {
  font-size: 1.2rem !important;
}

.fs14 {
  font-size: 1.4rem;
}

.fs16 {
  font-size: 1.6rem;
}

.fs18 {
  font-size: 1.8rem;
}

.fs19 {
  font-size: 1.9rem !important;
}

.fs20 {
  font-size: 2rem;
}

.fs21 {
  font-size: 2.1rem;
}

.fs24 {
  font-size: 2.4rem;
}

.fs26 {
  font-size: 2.6rem;
}

.fs28 {
  font-size: 2.8rem;
}

.fs30 {
  font-size: 3rem;
}

.fs32 {
  font-size: 3.2rem;
}

.fs36 {
  font-size: 3.6rem;
}

.fs40 {
  font-size: 4rem;
}

.fs48 {
  font-size: 4.8rem;
}

.fs50 {
  font-size: 5rem;
}

.fs56 {
  font-size: 5.6rem;
}

.mt15 {
  margin-top: 15px;
}

.mt30 {
  margin-top: 30px;
}

.mt45 {
  margin-top: 4.5rem;
}

.mt60 {
  margin-top: 60px;
}

.mb0 {
  margin-bottom: 0;
}

.mb5 {
  margin-bottom: 5px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb45 {
  margin-bottom: 4.5rem;
}

.mb60 {
  margin-bottom: 60px;
}

.pl15 {
  padding-left: 15px;
}

.pl30 {
  padding-left: 30px;
}

.pr15 {
  padding-right: 15px;
}

.pr30 {
  padding-right: 30px;
}

.pt60 {
  padding-top: 60px;
}

.cb {
  clear: both;
}

.oh {
  overflow: hidden !important;
}

.bb {
  border-bottom: 1px solid #000;
}

.por {
  position: relative;
}

.sect,
.row {
  clear: both;
  overflow: hidden;
}
.fadein00{
  animation-name: fadein;
}
.fadein {
  opacity: 0;
  filter: blur(10px);
}
.delay01{
  animation-delay: 0.3s;
}
.delay02{
  transition-delay: 0.6s;
}
.delay03{
  animation-delay: 0.9s;
}

.fadein01 {
  transform: translate(-100px, 0);
  transition: all 1s;
}

.fadein02 {
  transform: translate(0, 100px);
  transition: all 1s;
}
.fadein03 {
  transform: translate(0, 0);
  transition: all 1s;
}
.fadein04 {
  opacity:0;
  transform: translate(100px, 0);
  transition: all 1s;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0);
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: 9999;
  display: none;
  visibility: hidden;
  transition: 1s;
  animation-name: fadein03;
  animation-duration: 1s;
}
@keyframes fadein03 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.popup.is-show {
  display: block;
  visibility: visible;
}

.popup-inner,
.modal_inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 30px 10px 10px;
  background-color: #fff;
  z-index: 2;
  max-height: 90%;
  width: 90%;
  max-width: 620px;
}

.modal02,
.modal03 {
  overflow: auto;
  max-width: 440px !important;
}

.popup-inner.modal00 {
}

.modal_inner.modal01 {
}

.modal_inner.modal02 {
}

.modal_inner.modal03 {
  width: 100%;
  max-width: 1000px;
  height: auto;
  max-height: 100%;
}

.close-btn,
.modal_close {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}

.close-btn i,
.modal_close i {
  font-size: 20px;
  color: #333;
}

.black-background,
.modal_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  cursor: pointer;
}

.youtube_closeBtn {
  color: #341707;
}

.modal_box {
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: all 1s;
}

@media screen and (max-width: 480px) {
  #sect09 ul {
    display: block !important;
  }

  #sect09 ul li {
    width: 100% !important;
    margin: 0 0 30px !important;
  }

  .modal_inner,
  .modal_inner.modal03 {
    width: 90%;
    overflow: scroll;
  }

  .modal_close {
    font-size: 2.2rem;
  }
}

header {
  position: fixed;
  height: 60px;
  width: 100%;
  top: 0;
  left: 0;
  background: none;
  z-index: 999;
}

.sidebarMenuInner li {
  padding: 0;
  margin-bottom: 0;
}
.sns{
  display: flex;
  justify-content: flex-start;
}
#acMenu dd li .sns{
  padding:.5rem 0 0 .5rem;
}
.sns li{ margin: 0.5rem;
}
.sect01Bottom .sns {
  position: absolute;
  bottom: 15px;
  right: 5%;
}

.sns a {
 padding: 0 !important;
  font-size: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  opacity: 1;
  padding: 0;
  text-align: center;
}
.sns a img{
  width: 10rem;
}
.sns a:hover {
  opacity: 0.7;
}

header li {
  overflow: hidden;
}

header li a {
  opacity: 0.7;
  position: relative;
  display: block;
  font-size: 2rem;
  line-height: 1;
  padding: 10px 0;
}

header li.smallTxt a {
  font-size: 1.4rem;
}

header li.sns {
  padding: 15px 30px;
}

header li.sns a {
  color: #333;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  line-height: 32px;
  text-align: center;
  background: #333;
  font-size: 2rem;
  padding: 0;
  display: block;
  float: left;
  margin-right: 15px;
  opacity: 1;
  transition: 0.5s;
}

header li.major {
  clear: both;
  opacity: 1;
}

header li.major a {
  opacity: 1;
}

header li a:hover,
header li.on a {
  opacity: 1;
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
  color: #e60012;
}

header li.major a:hover {
  opacity: 0.7;
  background: none;
}

header li.sns a {
  color: #fafafa;
}

header li.sns a:hover {
  color: #333;
}

#sidebarMenu {
  height: 100%;
  position: fixed;
  padding-top: 60px;
  top: 0;
  left: 0;
  width: 270px;
  transform: translateX(-270px);
  transition: transform 250ms ease-in-out;
  background: rgba(0, 0, 0, 0.5);
}

.sidebarMenuInner {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebarMenuInner li {
  list-style: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebarMenuInner li span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.sidebarMenuInner li a {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

#acMenu {
  margin: 0;
  position: relative;
}

#acMenu dt {
  display: block;
  cursor: pointer;
}

#acMenu dd {
  padding: 9rem 0 3rem;
  display: none;
  position: absolute;
  top: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
}

#acMenu dd li {
  overflow: hidden;
}

#acMenu dd li a {
  padding: 1.5rem;
  font-size: 2.4rem;
  display: block;
}

#menuButton {
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 0.5rem;
  z-index: 999;
}

#menuButton span {
  display: block;
  background: #fff;
  width: 45px;
  height: 5px;
  position: absolute;
  left: 7px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

#menuButton span:first-child {
  top: 20px;
}

#menuButton span:last-child {
  bottom: 18px;
}

#menuButton.active span:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

#menuButton.active span:last-child {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  -moz-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}

.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
}

.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 6px;
}

.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}

.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 6px;
  margin-bottom: 3px;
}

section {
  position: relative;
  padding: 12rem 0;
  min-height:100vh;
  overflow: hidden;
}

#sect01 {
  padding: 0;
  height: 100%;
  background-size: contain;
}

.sect01Inner {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  background: url(images/sect01Bg.jpg) no-repeat center;
  background-size: contain;
  animation-name: fadein;
  animation-duration: 8s;
}
.sect01Inner>div{
  height: 100%;
}
.sect01Ttl{
  width: 40%;
  display: flex;
  justify-content: center;
  flex-flow: column;
  
  animation-name: fadein;
  animation-duration: 8s;
}
.sect01Ttl img{
  margin-top: 10vh;
}
.sect01Copy01,.sect01Copy02{
  color: #fff;
  display: flex;
  font-size: 3rem;
  justify-content: center;
  align-items: center;
  position: absolute;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-shadow: #b1f6e8 0 0 5px,#b1f6e8 0 0 10px,#b1f6e8 0 0 15px;
}
.sect01Copy01 span,.sect01Copy02 span{
  text-align: center;
    writing-mode: rl;
    line-height: 1.3;
}
.sect01Copy02 span{
  padding-left: 0.2em;
}
.sect01Copy01{
  left: 20%;
  font-size: 2.2rem;
  animation-name: fadein;
  animation-duration: 2s;
}
.sect01Copy02{
  right: 20%;
  animation-name: fadein;
  animation-duration: 2s;
}
.sect01Inner img{
  max-height: 100%;
}
.sect01Main {
  position: absolute;
  right: 0;
  float: right;
  text-align: right;
  height: 100%;
  width: 57%;
  max-width: 735px;
}

.sect01Main img {
  max-height: 105%;
}

@keyframes fadein {
  from {
    transform:scale(0.9);
    opacity: 0;
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform:scale(1);
    transition: all 15s;
    filter: blur(0);
  }
}

@keyframes fadein2 {
  from {
    opacity: 0;
    filter: blur(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

#sect01 .container {
  position: relative;
  height: 100%;
  max-width: auto;
  padding: 0;
}

.sect01Bottom {
  animation-name: fadein;
  animation-duration: 8s;
  color: #fff;
  font-size: 1.1rem;
  white-space: nowrap;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  animation-name: fadein2;
  animation-duration: 8s;
}

#sect01 .sect01Bottom .container {
  padding: 1rem 0;
  line-height: 1.4;
  opacity: 0.8;
  font-size: 1.1rem;
}
a.banner{
  display: block;
  max-width: 42rem;
  margin: 1rem auto;
}
#news{
  background: #282828;
}
#news h2,#sect04 h2,#sect09 h2{
  left: 10rem;
}
.newsOuter{
  height: 80vh;
  background: #fff;
  overflow-y: auto;
  margin-top: 4.5rem;
}
.newsOuter a{
  color: #000;
  text-decoration: underline;
}
.newsDl{
  position: relative;
overflow: hidden;
padding:3rem  1.5rem ;
clear: both;
border-bottom: 1px solid #ccc;
}
.newsDl dt{
  font-weight: bold;
  font-size: 1.8rem;
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
  padding: 1.5rem 1.5rem 0.8rem;
  border-bottom: 1px solid #000;
  }
  .newsDl dt .date{
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.5rem;
  }
  /*
  .newsDl dt:before {
    position: absolute;
    top: 50%;
    right: 1rem;
    font-size: 3rem;
    margin-top: -2.5rem;
    display: block;
    content: "\f107";
    font-family: FontAwesome;
    color: #ccc;
}
.newsDl dt.active:before {
  content: "\f106";
}*/
  .newsDl dd{
    font-size: 1.4rem;
    padding: 1.5rem;
    background: #fff;
    }
    .newsDl dd img{
      float: left;
      width: 33%;
      margin: 0 1.5rem 1.5rem 0;
    }
    .newsDl dd img.fr{
      float: right;
      width: 33%;
      margin: 0 0 1.5rem 1.5rem;
    }
#sect02 {
  background: rgba(0, 0, 0, 0.5);
  font-size: 1.8rem;
  backdrop-filter: blur(5px);
}
#sect02 h2{
  font-size: 14rem;
}
#sect02 .container {
  color: #fff;
  padding: 4.5rem;
  width: 96%;
  max-width: 100rem;
}

#sect02 h3 {
  color: #e60012;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 4.5rem;
  text-shadow: #000 0 0 5px, #000 0 0 10px, #000 0 0 15px;
}

.imgSect {
  height: 80%;
}
.imgSect.scrollin img{
  transform:scale(1.2,1.2);
  transition: all 10s;
}
.imgSect01 {
  height: auto !important;
  padding-top: 60%;
  background: url(images/imgSect01.jpg) no-repeat top center;
  background-attachment: fixed;
  background-size: cover;
}

.imgSect02 {
  background: url(images/imgSect02.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}

.imgSect03 {
  background: url(images/imgSect03.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}

.imgSect04 {
  background: url(images/imgSect04.jpg) no-repeat center top 25% fixed;
  background-attachment: fixed;
  background-size: cover;
}

.imgSect05 {
  padding-top: 100vh;
  background: url(images/imgSect05.jpg) no-repeat center top 25% fixed;
  background-attachment: fixed;
  background-size: cover;
  height: auto !important;
}

.imgSect06 {
  height: auto !important;
  padding-top: 40%;
  background: url(images/imgSect06.jpg) no-repeat center top fixed;
  background-attachment: fixed;
  background-size: cover;
}

.imgSect07 {
  height: auto !important;
  padding-top: 60%;
  background: url(images/imgSect07.jpg) no-repeat center top 25% fixed;
  background-attachment: fixed;
  background-size: cover;
}

#sect03 {
  font-size: 1.8rem;
  background: url(images/sect03Bg.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  text-shadow: #000 0 0 5px, #000 0 0 10px, #000 0 0 15px;
}
#sect03 .container {
  color: #fff;
  padding: 6rem 4.5rem;
  width: 96%;
  max-width: 100rem;
}

#sect03 h3 {
  font-size: 4rem;
  text-align: center;
  color: #e60012;
  margin-bottom:4.5rem;
}


.sect03Inner:before {
  content: "";
  display: block;
  height: 145px;
  width: 386px;
  position: absolute;
  left: -50px;
  top: -71px;
  background: url(images/ribbon01.png) no-repeat;
  background-size: contain;
}

.sect03Inner:after {
  content: "";
  display: block;
  height: 136px;
  width: 326px;
  position: absolute;
  right: -42px;
  bottom: -84px;
  background: url(images/ribbon02.png) no-repeat;
  background-size: contain;
}

#sect03 h2 {
}

#sect04 {
  background: rgba(0, 0, 0, 0.8);
}

.name {
  font-family: "Noto Serif KR", "Noto Serif JP", serif;
  overflow: visible;
  position: relative;
  font-size: 3rem;
  margin: 0 0 1.5rem;
  border-bottom: 1px solid #aaa;
  padding:1rem 0 0.5rem;
}

.name .role {
  font-size: 1.8rem;
}

.name .en {
  bottom: 0;
  right: 0;
  position: absolute;
  top: -1.5rem;
  opacity: 0.3;
  z-index: -1;
  font-size: 3.2rem;
  padding-left: 10px;
  padding-right: 10px;
}

.personImg {
  width: 30%;
  float: left;
  margin: 0;
  overflow: hidden;
}
.personImg img{
  opacity: 0;
  filter:blur(30px);

}
.personImg.scrollin img{
  opacity: 1;
  filter:blur(0);
}
.personArticle .row {
  display: flex;
  align-items: center;
}
.personArticleLast .row{
  justify-content: center;
}
.personArticle .personTxt {
  overflow: hidden;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  width: 70%;
}

.personArticle .personTxt p {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.personImg.fr {
  float: right;
  margin: 0 0 0 15px;
}

.personArticleSub .name {
  font-size: 2rem;
}

.personArticleSub .name .en {
  font-size: 2rem;
}

.personArticleSub .name .role {
  font-size: 1.4rem;
}

.filmography {
  clear: both;
}

.filmography dt {
  color: #aaa;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.filmography dd {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.filmography dd .age {
  padding-right: 10px;
}
.staffDl{
  margin-bottom: 3rem;
}

.staffDl dt{
  font-size: 1.8rem;
  border-bottom: 1px solid #aaa;
  padding-bottom: 5px;
  margin-bottom: 1rem;
}

.staffDl dd{
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.staffDl dd span{
  font-size: 1.2rem;
  margin-left: 1rem;
}
.personArticle {
  color: #fff;
  margin-top: 6rem;
}

#sect05 {
  color: #fff;
  background: #282828;
}
#sect05 h2{
  text-align: right;
}
#sect05 .personArticle {
  background: none;
  margin-bottom: 3rem;
}
#sect05 .row{
  display: flex;
  justify-content: space-between;
}
#sect05 .row>div{
  width: 46%;
}
#sect05 hr {
  opacity: 0.5;
  clear: both;
}
#sect06 h2{
  opacity: 0.5;
}
.commentDl{
color: #fff;
text-shadow: #000 0 0 5px, #000 0 0 10px, #000 0 0 15px;
margin-bottom: 4.5rem;
overflow: hidden;
max-width: 70rem;
margin: 12rem auto;
}

.commentDl dt{
  
}

.commentDl dd{
  margin-top: 1.5rem;
  font-size: 2.4rem;
  float: right;
  font-weight: bold;
}
.commentDl dd span{
  font-size: 1.6rem;
}

#sectColumn{
  color: #fff;
}
#sectColumn h3{
font-size: 2.4rem;
text-align: center;
}
#sectColumn h3 span{
  font-size: 2rem;
  display: block;
  text-align: right;
}
#sectColumn h4{
  font-size: 2.1rem;
  margin-bottom: 1rem;
}
#sect07 {
  background: rgba(255, 255, 255, 0.9);
  background-size: cover;
  background-attachment: fixed;
}

#sect07 a {
  color: #333;
}

.commmentInner {
  font-size: 1.7rem;
  line-height: 1.8;
  font-family: "Noto Serif KR", "Noto Serif JP", serif;
  background: rgba(255, 255, 255, 0.7);
  padding: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

.commentName {
  font-size: 2.4rem;
  margin-bottom: 0;
  float: right;
  text-align: right;
}

.commentName span {
  font-size: 1.8rem;
  display: block;
}
#sect08 {
  padding: 18rem 0 9rem;
  background: rgba(0, 0, 0, 0.8);
}
#sect08 h2{
  text-align: right;
}
#sect09 {
  padding: 18rem 0 9rem;
  background: rgba(0, 0, 0, 0.5);
}
#sect09 h3{
  color:#fff;
}
.trailerOuter{
  width: 100%;
  max-width: 90rem;
  margin: 3rem auto;
  aspect-ratio: 19 / 10;
}
.trailerOuter iframe {
  width: 100%;
  height: 100%;
}
.theaterDlOuter {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.theaterDl {
  width: 48%;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.75);
  margin: 0 0 30px;
  overflow: hidden;
}

.theaterDl dt {
  display: inline-block;
  color: #fff;
  background: #333;
  padding: 3px;
  line-height: 1;
}

.theaterDl dd {
}

.theaterDl dd a {
  font-family: "Noto Serif JP", "Noto Serif KR", serif;
  font-size: 1.6rem;
  color: #333;
  border-bottom: 1px solid;
}

.theaterDl dd a.small {
  font-size: 1.4rem;
}

.theaterDl dd .date {
  float: right;
}

/* footer */

footer {
  padding: 15px 0;
  color: #fff;
  background: #000;
  overflow: hidden;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footerLogo {
  width: 180px;
  padding-right: 15px;
  float: left;
}

.footerRight {
  overflow: hidden;
  text-align: right;
  width: calc(100% - 20rem);
}

#page-top {
  position: fixed;
  right: 20px;
  z-index: 9;
}

#page-top p {
  cursor: pointer;
  font-size: 1.5rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-top: 0.3rem;
  font-size: 4rem;
  margin: 0;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.5);
}


@media screen and (max-width: 900px) {
  html {
    font-size: 50%;
  }

  #sect02,
  #sect03,
  #sect07,
  #sect09,
  .imgSect01,
  .imgSect02,
  .imgSect03,
  .imgSect04,
  .imgSect05,
  .imgSect06,
  .imgSect07,
  .imgSect08,
  .imgSect09 {
    background-attachment: scroll;
  }
  
#sect09 {
  padding: 9rem 0;
}
.theaterDlOuter{
  margin-bottom: 15px;
}
  .theaterDl {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .col-xs-6 {
    width: 50%;
  }

  .col-xs-10 {
    width: 83.33333%;
  }

  .col-xs-12 {
    width: 100%;
  }


  .fs40 {
    font-size: 3.4rem;
  }

  h2 {
    top: 0;
    font-size: 8rem;
    margin-bottom: 4.5rem;
  }

  h2 span {
    white-space: nowrap;
  }

  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block;
  }

  section {
    padding-left: 0;
  }

  #menuButton {
    width: 45px;
    height: 45px;
    top: 15px;
    left: 15px;
  }

  #menuButton span {
    width: 30px;
    height: 4px;
  }

  #menuButton span:first-child {
    top: 12px;
  }

  #menuButton span:last-child {
    bottom: 12px;
  }

  #menuButton.active span:first-child {
    -webkit-transform: translateY(9px) rotate(45deg);
    -moz-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
  }

  #menuButton.active span:last-child {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }

section {
    min-height: 65vh;
  }

  #sect01 {
    padding: 0;
    height: 100vh;
  }

  #sect01 .container {
    padding: 0;
  }

  .sect01Main {
    width: 100%;
    position: absolute;
    top: 0;
  }

  #sect01 .sect01Bottom .container {
    padding: 1rem;
    font-size: 1rem;
  }


  .sect01Inner {
    background-size: cover;
  }
  .sect01Ttl{
    width: 60%;
  }
  .sect01Copy01{
    left: 3%;
  }
  .sect01Copy02{
    right: 3%;
  }
.sect01Bottom{
  font-size: 1.6rem;
}
.sect01Bottom .sns{
  position: relative;
  justify-content: center;
  right: auto;
  bottom: 1rem;
}
#sect05 h2,#sect08 h2 {
  padding-right: 1.5rem;
}
#news h2, #sect04 h2, #sect06 h2,#sect09 h2 {
  left: 1.5rem;
}
.newsDl{
  padding: 3rem 1rem;
}
#sect02 h2 {
  font-size: 5rem;
}
#sect02 h3 {
  font-size: 3.6rem;
}
  #sect03 h3 {
    font-size: 2.8rem;
  }

  .sect03Inner {
    padding: 1.5rem;
  }

  .imgSect {
    height: 33%;
  }
  .personArticle {
    margin-top: 0;
    margin-bottom: 6rem;
}
  .name {
    font-size: 2.8rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
  }

  .name .role {
    display: block;
    padding: 0 !important;
  }
.filmography{
  padding-left: 0;
}
  #sect04 .name {
    padding-left: 0.5em;
  }

  
  .commmentInner {
    padding: 20px;
    margin: 0 -15px 30px;
  }

  .imgSect01, .imgSect05 {
    background:none;
    padding-top: 0;
  }

  .imgSect06 {
    background: none;
    padding-top: 0;
  }

  #sect07 {
    background: #fff;
  }

  .imgSect07 {
    background: url(images/imgSect07.jpg) no-repeat center top;
    background-size: contain;
  }
  #sect08 {
    padding: 6rem 0;
  }
  
  footer .container {
    display: block;
    text-align: center;
  }
  .footerLogo {
    float: none;
    padding-right: 0;
    margin-bottom: 10px;
  }

  .footerRight {
    text-align: center;
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  #sect02 .container,#sect03 .container {
    padding: 0 1.5rem;
    width: 100%;
  }

  .personArticle .row {
    display: block;
  }

  .personArticle .personTxt {
    width: 100%;
    padding: 1.5rem 0 0;
  }

  .personArticle .personImg {
    width: 100%;
    float: none;
    padding: 0;
  }
  #sect05 .row{
    flex-flow: column;
  }
  #sect05 .row>div{
    width: 100%;
  }
  #sect06 h2 span {
    font-size: 6rem;
  }

}
