@import url(./font.css);

/* Most of these styles could be removed but are for the demo to look better */

html, body,button {
  height: 100%;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", sans-serif;
}
body {
  overflow: hidden;
  background-color: #fff;
}
a {
  text-decoration: none;
}

body::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 100;
  opacity: 1;
  transition: all 0.3s;
}
.has-scroll-init body::after {
  opacity: 0;
  z-index: -1;
}
.mb-120 {
  margin-bottom: 120px !important;
}
.mb-160 {
  margin-bottom: 160px !important;
}
.cursor {
  position: absolute;
  left: 0;
  top: 0;
  width: 134px;
  height: 134px;
  transform: translate(-50%, -50%);
  background: url('../../img/pc/cursor.png') 0 0 no-repeat;
  background-size: cover;
  z-index: 100;
  animation: rotate 3s infinite linear;
  -moz-animation: rotate 3s infinite linear; /* Firefox */
  -webkit-animation: rotate 3s infinite linear; /* Safari and Chrome */
  -o-animation: rotate 3s infinite linear; /* Opera */
}


/* header */
.common-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 99;
  mix-blend-mode: difference;
}
.header-title {
  display: flex;
  align-items: center;
  height: 100px;
  padding: 0 80px;
  font-size: 0;
}
.header-title .logo {
  display: inline-flex;
  color: #fff;
  font-weight: 300;
  font-size: 32px;
}

/* layout */
.page {
  position: relative;
  min-width: 100vw;
  height: 100vh;
  overflow: hidden;
  color: #000;
  text-align: left;
  box-sizing: border-box;
}
.page img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* navigation */
.sns-navigation {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
}
.sns-navigation .sns-icon {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.sns-navigation li + li {
  margin-top: 36px;
}
.sns-navigation .facebook .sns-icon {
  background-image: url('../../img/pc/sns-facebook.png');
}
.sns-navigation .instagram .sns-icon {
  background-image: url('../../img/pc/sns-instagram.png');
}
.sns-navigation .twitter .sns-icon {
  background-image: url('../../img/pc/sns-twitter.png');
}

.pages-navigation {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
}
.pages-navigation .anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 134px;
  height: 134px;
  font-family: "Jaldi", sans-serif;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #000;
  border-radius: 100%;
  transition: all 0.3s;
}
.pages-navigation .anchor:hover {
  background-color: #333;
}
.pages-navigation .next {
  margin-left: 12px;
  padding-right: 24px;
  background: url('../../img/pc/arrow-next.png') center right no-repeat;
}


/* page */
.intro {
  padding: 0 80px;
  background: url('../../img/pc/Arts_Center_main.jpg') 0 0 no-repeat;
  background-size: cover;
}
.intro .title-wrap {
  margin-left: 166px;
  margin-top: 254px;
  color: #fff;
}
.intro .title-wrap h2 {
  display: flex;
  align-items: center;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 70px;
}
.intro .title-wrap h2 span {
  position: relative;
  width: 42px;
  height: 42px;
  margin: 0 12px;
  font-size: 0;
}
.intro .title-wrap h2 span::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  display: block;
  width: 2px;
  height: 100%;
  background-color: #000;
  transform: rotate(45deg);
}
.intro .title-wrap h2 span::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  display: block;
  width: 2px;
  height: 100%;
  background-color: #000;
  transform: rotate(-45deg);
}
.intro .title-wrap p {
  margin-top: 18px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 36px;
  animation-delay: 0.12s;
}

.hall {
  width: calc(100vw + 120px);
  max-width:100vw;
  padding-left: 80px;
}
.hall .bg-txt {
  position: absolute;
  left: 65px;
  top: 50%;
  width: 100%;
  height: 200px;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0.1;
  font-size: 200px;
  font-weight: 600;
}
.hall .section-inner {
  display: flex;
}
.hall .title-wrap {
  padding-top: 257px;
}
.hall .title-wrap h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hall .title-wrap p {
  margin-top: 16px;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 43px;
}
.hall .summary-wrap {
  width: 66%;
  margin-left: auto;
}
.hall .summary-wrap .img-wrap {
  display: inline-flex;
}
.hall .summary-wrap .img-wrap span {
  width: 50%;
}
.hall .summary-wrap .img-wrap span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hall .summary-wrap .img-wrap span + span {
  margin-left: 18px;
}
.hall .summary-wrap .txt-wrap {
  width: 100%;
  margin-top: 16px;
  font-size: 16px;
  line-height: 32px;
  word-break: auto-phrase;
}
.hall .summary-wrap .txt-wrap ul {
  display: flex;
  justify-content: flex-end;
  animation-delay: 0.12s;
}
.hall .summary-wrap .txt-wrap ul li {
  font-weight: 600;
}
.hall .summary-wrap .txt-wrap ul li + li {
  position: relative;
  margin-left: 8px;
  padding-left: 8px;
}
.hall .summary-wrap .txt-wrap ul li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 1px;
  height: 14px;
  background-color: #000;
  transform: translateY(-50%);
}
.hall .summary-wrap .txt-wrap p {
  font-weight: 400;
  white-space: initial;
  animation-delay: 0.24s;
}

.festival {
  width: calc(100vw + 12px);
  padding: 0 56px;
  overflow-y: hidden;
  cursor: none;
}
.festival .section-inner {
  position: relative;
  width: 100%;
  margin-top: 230px;
}
.festival h2 {
  position: absolute;
  left: calc(25% + 9px);
  top: 0;
  width: 350px;
  max-width: 20%;
  height: 240px;
  font-size: 0;
  background: url('../../img/pc/festival-title.png') 0 0 no-repeat;
  background-size: 100% auto;
}
.festival .arts-wrap {
  display: flex;
  flex-wrap: wrap;
}
.festival .arts-wrap li {
  width: 25%;
  margin-bottom: 112px;
  padding: 0 9px;
  box-sizing: border-box;
}
.festival .arts-wrap .blank-left {
  margin-left: 25%;
}
.festival .arts-wrap .blank-right {
  margin-right: 25%;
}
.festival .arts-wrap .big {
  width: 50%;
}
.festival .arts-wrap .tit {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 34px;
  white-space: initial;
  animation-delay: 0.12s;
}
.festival .arts-wrap .date {
  margin-top: 2px;
  color: #62676C;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  animation-delay: 0.24s;
}

.contact {
  width: calc(100vw + 120px);
  padding-left: 80px;
  min-width: 100vw;
  background-color: #000;
  color:#fff;
}
.contact .section-inner {
  display: flex;
}
.contact .summary-wrap {
  width: 66%;
  margin-left: auto;
}
.contact .call-page3-subtitle {
  line-height: 48px;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  opacity: 0.4;
}
.contact .call-page3-title {
  line-height: 70px;
  margin: 7px 0 44px 0;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}
.contact .summary-wrap {
  height:70vh;
  margin-left: 0;
  padding-top: 254px;
  box-sizing: border-box;
}
.contact .call-wrap{
  padding-left: 326px;
}
.contact .call-wrap .call-item {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.75px;
}
.contact .call-wrap .call-item:first-of-type{
  margin-bottom: 5px;
}
.contact .call-wrap .call-item:last-of-type{
  margin-top: 12px;
}
.contact .call-wrap .call-item .call-number{
  position: relative;
  display: inline-block;
  font-size: 20px;
  letter-spacing: 1.38px;
}
.contact .call-wrap .call-item .call-number.company-number {
  padding-right: 12px;
}
.contact .call-wrap .call-item .call-number.safe-number {
  padding: 0 12px 0 6px;
}
.contact .call-wrap .call-item .mail-address{
  font-size: 20px;
  letter-spacing: 1.56px;
  display: inline-block;
  position: relative;
  padding-left: 4px;
}
.contact .call-wrap .call-item .call-number::after{
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  width: 2px;
  height: 20px;
  background-color: #fff;
  transform: translateY(-50%);
}
.contact .btn-wrap{
  padding-left: 326px;
  margin-top: 62px;
}
.contact .btn-list{
  display: flex;
}
.contact .btn-item:first-of-type{
  margin-right: 16px;
}
.contact .btn-item button{
  width: 332px;
  height: 74px;
  border: none;
  border-radius: 10px;
  padding: 0;
  margin: 0;
}
.contact .btn-item button span{
  font-size: 24px;
  line-height: 74px;
  font-weight: 600;
  letter-spacing: -0.48px;
}

/* footer */
footer {
  width: 80%;
  margin-left: 10px;
  margin-top: 104px;
  padding: 82px 0;
  color: #fff;
  font-size: 14px;
  text-align: left;
  line-height: 16px;
  background-color: #000;
}
footer address{
  font-size: 14px;
  line-height:16px;
  font-weight: 400;
  color: #fff;
}
footer address ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer address ul li {
  font-weight: 400;
  letter-spacing: -0.03em;
}
footer address ul li + li {
  position: relative;
  margin-left: 8px;
  padding-left: 8px;
}
footer address ul li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 1px;
  height: 10px;
  background-color: #fff;
  transform: translateY(-50%);
}
footer p {
  margin-top: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

/* animate */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translate(0, 100px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-moz-keyframes fade-up { /* Firefox */
  from {
    opacity: 0;
    transform: translate(0, 100px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes fade-up { /* Safari and Chrome */
  from {
    opacity: 0;
    transform: translate(0, 100px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-o-keyframes fade-up { /* Opera */
  from {
    opacity: 0;
    transform: translate(0, 100px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fade-down {
  from {
    opacity: 0;
    transform: translate(0, -100px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-moz-keyframes fade-down { /* Firefox */
  from {
    opacity: 0;
    transform: translate(0, -100px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes fade-down { /* Safari and Chrome */
  from {
    opacity: 0;
    transform: translate(0, -100px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-o-keyframes fade-down { /* Opera */
  from {
    opacity: 0;
    transform: translate(0, -100px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fade-right {
  from {
    opacity: 0;
    transform: translate(-100px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-moz-keyframes fade-right { /* Firefox */
  from {
    opacity: 0;
    transform: translate(-100px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes fade-right { /* Safari and Chrome */
  from {
    opacity: 0;
    transform: translate(-100px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-o-keyframes fade-right { /* Opera */
  from {
    opacity: 0;
    transform: translate(-100px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fade-left {
  from {
    opacity: 0;
    transform: translate(100px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-moz-keyframes fade-left { /* Firefox */
  from {
    opacity: 0;
    transform: translate(100px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes fade-left { /* Safari and Chrome */
  from {
    opacity: 0;
    transform: translate(100px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-o-keyframes fade-left { /* Opera */
  from {
    opacity: 0;
    transform: translate(100px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fade-zoom {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@-moz-keyframes fade-zoom { /* Firefox */
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes fade-zoom { /* Safari and Chrome */
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@-o-keyframes fade-zoom { /* Opera */
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-moz-keyframes rotate { /* Firefox */
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-webkit-keyframes rotate { /* Safari and Chrome */
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-o-keyframes rotate { /* Opera */
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.fade-up {
  opacity: 0;
  transform: translate(0, 100px);
}
.fade-down {
  opacity: 0;
  transform: translate(0, -100px);
}
.fade-right {
  opacity: 0;
  transform: translate(-100px, 0);
}
.fade-left {
  opacity: 0;
  transform: translate(100px, 0);
}
.fade-zoom {
  opacity: 0;
  transform: scale(0.5);
}
.is-inview.fade-up,
.active.fade-up {
  animation: fade-up 1s both;
  -moz-animation: fade-up 1s both; /* Firefox */
  -webkit-animation: fade-up 1s both; /* Safari and Chrome */
  -o-animation: fade-up 1s both; /* Opera */
}
.is-inview.fade-down,
.active.fade-down {
  animation: fade-down 1s both;
  -moz-animation: fade-down 1s both; /* Firefox */
  -webkit-animation: fade-down 1s both; /* Safari and Chrome */
  -o-animation: fade-down 1s both; /* Opera */
}
.is-inview.fade-left,
.active.fade-left {
  animation: fade-left 1s both;
  -moz-animation: fade-left 1s both; /* Firefox */
  -webkit-animation: fade-left 1s both; /* Safari and Chrome */
  -o-animation: fade-left 1s both; /* Opera */
}
.is-inview.fade-right,
.active.fade-right {
  animation: fade-right 1s both;
  -moz-animation: fade-right 1s both; /* Firefox */
  -webkit-animation: fade-right 1s both; /* Safari and Chrome */
  -o-animation: fade-right 1s both; /* Opera */
}
.is-inview.fade-zoom,
.active.fade-zoom {
  animation: fade-zoom 1s both;
  -moz-animation: fade-zoom 1s both; /* Firefox */
  -webkit-animation: fade-zoom 1s both; /* Safari and Chrome */
  -o-animation: fade-zoom 1s both; /* Opera */
}