@charset "utf-8";
/* ===========================================
  reset
=========================================== */
html,
body,
div,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
small,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
table,
tr,
th,
td,
article,
footer,
header,
nav,
section,
figure,
address,
strong {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-style: normal;
  font-weight: 400;
}
input,
textarea {
  margin: 0;
  resize: none;
  font-size: 16px;
  padding: 6px;
  box-sizing: border-box;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
}
main,
figure,
figcaption {
  display: block;
}
/* ============================================
  base
============================================ */
html {
  font-size: 62.5%;
}
body {
  font-family: "IBM Plex Serif", serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: normal;
  font-weight: 400;
  color: #333333;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
a,
a:link,
a:visited,
a:active {
  text-decoration: none;
  color: inherit;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

@media all and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}
@media all and (max-width: 999px) {
  .pc_only {
    display: none !important;
  }
}
@media all and (max-width: 767px) {
  /* img {
    width: 100%;
    height: auto;
  } */
}

/* ===========================================
  anime
=========================================== */
.scroll_anime {
  transition: all 1.5s ease 0.3s;
}
.scroll_anime {
  transform: translateY(30px);
  opacity: 0;
}
.scroll_anime.scroll__start {
  transform: translateY(0px);
  opacity: 1;
}
.main_wrapper,
.image_slider_inner {
  animation-name: fadein;
  animation-duration: 2s;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===========================================
  Utility
=========================================== */
.u-inner {
  margin: auto;
  padding: 0 40px;
}
.u-inner.limit {
  max-width: 100%;
}
.u-inner.wide {
  max-width: 683px;
}
.u-inner.mid {
  max-width: 557px;
}
.text_center {
  text-align: center;
}
.mg_center {
  margin-left: auto;
  margin-right: auto;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-120 {
  margin-top: 120px;
}
.mr-30 {
  margin-right: 30px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-120 {
  padding-top: 120px;
}
.font_14 {
  font-size: 1.4rem;
  line-height: 1.714;
}
.font_13 {
  font-size: 1.3rem;
  line-height: 22px;
}
@media all and (max-width: 600px) {
  .u-inner {
    padding: 0 20px;
  }
}
@media all and (min-width: 1120px) {
  .flex {
    display: flex;
  }
  .between {
    justify-content: space-between;
  }
}

/* ===========================================
  parts
=========================================== */
.pagetop {
  display: none;
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 60px;
  cursor: pointer;
  background: url(../img/icon/icon-top.svg) no-repeat center / contain;
  z-index: 400;
}
.pagetop:hover {
  opacity: 0.7;
}
@media all and (min-width: 1000px) {
  .pagetop {
    left: 44%;
  }
}
@media all and (max-width: 999px) {
  .pagetop {
    right: 4%;
  }
}

/*============
  movie_wrapper
=============*/
@media all and (min-width: 601px) {
  .video_wrapper-sp {
    display: none;
  }
}
@media all and (max-width: 600px) {
  .video_wrapper-pc {
    display: none;
  }
}
.video_wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #f4fbfc;
}
.video_wrapper.js-none {
  display: none;
}
.video_wrapper video,
.video_wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.all_wrapper {
  /* display: none; */
}
.all_wrapper.js-active {
  display: block;
}

/*============
  Hamburger Menu for SP
=============*/
.open_btn {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: fixed;
  top: 40px;
  left: calc(50% - 70px);
  z-index: 999;
  border: none;
  background: url(../pablo_img/icon_nav.svg) no-repeat;
  transition: 0.3s;
}
.what .open_btn,
.history .open_btn {
  background: url(../pablo_img/icon_nav_w.svg) no-repeat;
}
.open_btn:hover {
  opacity: 0.7;
}
.open_btn.btn_active {
  background: url(../pablo_img/icon_nav_on.svg) no-repeat;
}
@media all and (max-width: 999px) {
  .open_btn {
    left: unset;
    right: 40px;
    top: 40px;
  }
}
@media all and (max-width: 600px) {
  .open_btn {
    left: unset;
    right: 30px;
    top: 30px;
  }
}
/*============
　Right Image for PC
=============*/
@media all and (min-width: 1000px) {
  .contents_wrapper {
    display: flex;
  }
  .l-pc_left {
    width: 50%;
    margin: 0 auto 0 0;
  }
  .l-pc_right {
    width: 50%;
  }
}
@media all and (max-width: 999px) {
  .l-pc_left {
    width: 100%;
  }
}
.image_slider {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  position: fixed;
  right: 0;
}
.image_slider .image_slider_inner {
  position: relative;
  height: 100%;
  width: 100%;
}
.image_slider .image_slider_inner .image_slider_item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation-iteration-count: infinite;
  animation-duration: 36s;
}
.image_slider .image_slider_inner .image_slider_item.item1 {
  background: url(../pablo_img/slider01.jpg) no-repeat center / cover;
  animation-name: image_slider;
  animation-delay: -1s;
}
.image_slider .image_slider_inner .image_slider_item.item2 {
  background: url(../pablo_img/slider02.jpg) no-repeat center / cover;
  animation-name: image_slider;
  animation-delay: 4s;
  opacity: 0;
}
.image_slider .image_slider_inner .image_slider_item.item3 {
  background: url(../pablo_img/slider03.jpg) no-repeat center / cover;
  animation-name: image_slider;
  animation-delay: 8s;
  opacity: 0;
}
.image_slider .image_slider_inner .image_slider_item.item4 {
  background: url(../pablo_img/slider04.jpg) no-repeat center / cover;
  animation-name: image_slider;
  animation-delay: 12s;
  opacity: 0;
}
.image_slider .image_slider_inner .image_slider_item.item5 {
  background: url(../pablo_img/slider05.jpg) no-repeat center / cover;
  animation-name: image_slider;
  animation-delay: 16s;
  opacity: 0;
}
.image_slider .image_slider_inner .image_slider_item.item6 {
  background: url(../pablo_img/slider06.jpg) no-repeat center / cover;
  animation-name: image_slider;
  animation-delay: 20s;
  opacity: 0;
}
.image_slider .image_slider_inner .image_slider_item.item7 {
  background: url(../pablo_img/slider07.jpg) no-repeat center / cover;
  animation-name: image_slider;
  animation-delay: 24s;
  opacity: 0;
}
.image_slider .image_slider_inner .image_slider_item.item8 {
  background: url(../pablo_img/slider08.jpg) no-repeat center / cover;
  animation-name: image_slider;
  animation-delay: 28s;
  opacity: 0;
}
.image_slider .image_slider_inner .image_slider_item.item9 {
  background: url(../pablo_img/slider09.jpg) no-repeat center / cover;
  animation-name: image_slider;
  animation-delay: 32s;
  opacity: 0;
}
@keyframes image_slider {
  0% {
    opacity: 0;
  }
  4.76% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  42.85% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ===========================================
  Component
=========================================== */
.c-section_title {
  text-align: center;
  padding-top: 70px;
  margin-bottom: 35px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2.1rem;
}
.c-section_title.white {
  color: #fff;
}
.c-section_title02 {
  text-align: center;
  padding-top: 58px;
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.1rem;
}
.c-btn {
  font-size: 1.6rem;
}
.c-btn a {
  transition: 0.3s;
}
.c-btn a:hover {
  opacity: 0.7;
}
.c-vimeo {
  position: relative;
  padding-bottom: 51.25%;
  height: 0;
  overflow: hidden;
  width: 86%;
  max-width: 576px;
  margin: 0 auto;
}
.c-vimeo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-sliderArea {
  width: 86%;
  max-width: 576px;
  margin: 60px auto 0;
}
/* ==========================================
  section style
========================================= */
/* === header === */
.header_wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  padding: 16px 0;
  width: 50%;
  text-align: center;
  transition: background-color 0.2s;
}
.header_wrapper.is-style {
  background-color: rgba(255, 255, 255, 0.7);
}
.list-header_nav {
}
.list-header_nav li {
}
.list-header_nav li a {
  transition: 0.3s;
}
.list-header_nav li a:hover {
  opacity: 0.7;
}
.open_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  color: #cccccc;
}
.menu_contents_wrap {
  display: none;
  opacity: 0;
  z-index: 500;
  height: 100vh;
}
.menu_contents_wrap.is-active {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  opacity: 1;
  animation: fade_in 0.3s ease-in 0s forwards;
}
.menu_contents {
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding: 80px 0;
}
.menu_contents .main_title {
  max-width: 309px;
  height: auto;
  margin: 0 auto;
}
.list-header_nav {
  z-index: 100;
  color: #cccccc;
  width: 80%;
  margin: 0 auto;
  text-align: left;
  padding-top: 15px;
  border-top: 1px solid #333;
}
.list-header_nav li {
  font-size: 2.4rem;
}
.list-header_nav li a {
  display: block;
  padding: 5px 0;
}
.nav_another {
  display: flex;
  gap: 34px;
  width: 80%;
  margin: 10px auto 0;
  padding-bottom: 35px;
  border-bottom: 1px solid #333;
}
.nav_another li {
  color: #cccccc;
}
.logo a {
  transition: 0.3s;
}
.logo a:hover {
  opacity: 0.7;
}
.menu_contents__border .logo {
  width: 80%;
  margin: 0 auto;
}
.nav_another li a {
  transition: 0.3s;
}
.nav_another li a:hover {
  opacity: 0.7;
}
.menu_contents__border .logo {
  width: 80%;
  margin: 0 auto;
  position: relative;
  text-align: left;
}
@keyframes fade_in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@media all and (max-width: 999px) {
  .header_wrapper {
    width: 100%;
  }
}
@media all and (max-width: 600px) {
  .menu_contents {
    padding-bottom: 50px;
  }
  .list-header_nav {
    width: 90%;
  }
  .nav_another {
    width: 90%;
  }
  .menu_contents__border .logo {
    width: 90%;
  }
}

/* === section mv === */
.section-mv {
  height: 100svh;
  background-color: #fff;
  position: relative;
}
.page_title img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/* === section about === */
.section-about {
  padding: 100px 0 120px;
  background-color: #0f0f0f;
  color: #cccccc;
}
.section-about .about_text {
  letter-spacing: 0.3px;
  font-size: 1.4rem;
  line-height: 2.4rem;
  max-width: 425px;
  margin: 0 auto;
}
@media all and (max-width: 600px) {
  .section-about {
    padding: 30px 0 120px;
  }
}
.vimeo_wrap {
  margin: 120px 0 0;
}
@media all and (max-width: 600px) {
  .vimeo_wrap {
    margin: 40px 0 30px;
  }
}
.sound_wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 90%;
  max-width: 576px;
  margin: 0 auto;
  padding-top: 120px;
}
.sound_wrap .img {
  width: 42.5%;
}
.sound_wrap .text {
  width: 53%;
}
.sound_wrap .text .c-section_title {
  padding-top: 0;
  margin-bottom: 30px;
  text-align: left;
}
.sound_wrap .text table {
  font-size: 1rem;
}
.sound_wrap .text table th {
  text-align: left;
  padding-right: 10px;
}
.sound_wrap .text table th,
.sound_wrap .text table td {
  padding-top: 2px;
  padding-bottom: 2px;
}
@media all and (max-width: 600px) {
  .sound_wrap {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding-top: 100px;
  }
  .sound_wrap .img {
    width: 80%;
    margin: 0 auto;
  }
  .sound_wrap .text {
    width: 100%;
    margin: 0 0 30px;
  }
  .sound_wrap .text .c-section_title {
    padding-top: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  .sound_wrap .text table {
    font-size: 1rem;
  }
  .sound_wrap .text table th {
    text-align: left;
    padding-right: 15px;
  }
}

.calender_wrap {
  margin-top: 100px;
}
.calender_wrap p {
  margin-bottom: 34px;
  text-align: center;
}
.calender_wrap p a {
  text-decoration: underline;
  transition: 0.3s;
}
.calender_wrap p a:hover {
  opacity: 0.7;
}
.calender_wrap .img {
  text-align: center;
}
.calender_wrap .img img {
  width: 158px;
  height: auto;
}

.section-resonance {
  padding: 60px 0 100px;
  color: #333333;
}
.section-resonance .resonance-ul {
  width: 90%;
  max-width: 576px;
  margin: 64px auto 0;
}
.section-resonance .resonance-ul li {
  display: flex;
  gap: 10%;
  align-items: center;
}
.section-resonance .resonance-ul li + li {
  margin-top: 50px;
}
.section-resonance .resonance-ul li .img {
  width: 52%;
  padding: 7.3% 4.3%;
  background: #eeeeee;
}
.section-resonance .resonance-ul li .text {
  width: 35%;
}
.section-resonance .resonance-ul li .text p {
  font-size: 1rem;
  font-weight: 300;
}
.section-resonance .resonance-ul li .text .title {
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-weight: 600;
  margin: 0 0 5px;
}
.section-resonance .resonance-ul li .text .sub_title {
  font-size: 1rem;
  font-weight: 300;
  margin: 0 0 30px;
  line-height: 1.6rem;
}
.section-resonance .resonance-ul li .text .sub_title .b {
  font-weight: 500;
}
.section-resonance .resonance-ul li .text .detail {
  margin: 0 0 25px;
}
@media all and (max-width: 600px) {
  .section-resonance {
    padding: 30px 0 120px;
    color: #333333;
  }
  .section-resonance .resonance-ul {
    width: 80%;
    max-width: 576px;
    margin: 60px auto 0;
  }
  .section-resonance .resonance-ul li {
    display: block;
  }
  .section-resonance .resonance-ul li + li {
    margin-top: 60px;
  }
  .section-resonance .resonance-ul li .img {
    width: 100%;
    padding: 10% 7.3%;
    margin: 0 0 30px;
  }
  .section-resonance .resonance-ul li .text {
    width: 100%;
  }
  .section-resonance .resonance-ul li .text .sub_title {
    margin: 0 0 20px;
  }
  .section-resonance .resonance-ul li .text .detail {
    margin: 0 0 20px;
  }
}
/* === footer === */
.footer_wrapper {
  padding: 90px 0 20px;
  background-color: #000000;
  color: #cccccc;
  font-size: 1rem;
  font-weight: 300;
}
.footer_wrapper .logo {
  margin: 0 0 40px;
}
.footer_wrapper .table_wrap table {
  margin-bottom: 25px;
}
.footer_wrapper .table_wrap table th {
  text-align: left;
  padding-right: 14px;
}
.footer_wrapper .table_wrap table th,
.footer_wrapper .table_wrap table td {
  padding-bottom: 2px;
}
.footer_wrapper .map {
  margin: 0 0 50px;
}
.footer_wrapper .map a {
  line-height: 1.3em;
  display: inline-block;
  border-bottom: 1px solid;
}
.footer_wrapper .copyright {
  text-align: center;
}
@media all and (max-width: 600px) {
  .footer_wrapper .map {
    margin: 0 0 130px;
  }
}
