@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
/* ------------------------------------------
  Utility Class
------------------------------------------ */

/* clearfix */

.clearfix:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
}

/* ------------------------------------------
  Common
------------------------------------------ */

* {
  box-sizing: border-box;
  word-break: break-all;
}

html {
  font-size: 10px;
  height: 100%;
}

main {
  /* padding-top: 65px; */
  padding-top: 97px;
}

body {
  font-family: "YuGothic", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  position: relative;
  min-width: 1080px;
  color: #333333;
  -webkit-text-size-adjust: none;
}

body.layer {
  overflow: hidden;
  height: 100%;
}

a,
a img {
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  opacity: 0.75;
}

a:hover * {
  opacity: 0.75;
}

a:focus {
  outline: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: inherit;
  margin: 0;
  letter-spacing: 0.03em;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  letter-spacing: 0.03em;
}

.clear {
  clear: both;
}

.only_pc {
  display: block !important;
}

.only_sp {
  display: none !important;
}

input,
button,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
}

select {
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  border-radius: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
}

input[type="checkbox"]:checked input[type="checkbox"]:after {
  content: "✔";
  color: #e3963e; /* オレンジ色 */
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-weight: bold;
  z-index: 222;
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.section {
  padding: 80px 0 120px;
}

.main-ttl {
  font-size: 3.2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 100%;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
}

.sub-ttl {
  font-size: 2.4rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 100%;
}

.txt {
  font-size: 1.6rem;
  line-height: 1.6;
}

.copyright {
  font-size: 1.2rem;
  color: #fff;
  font-family: "garamond-premier-pro", serif;
  text-align: center;
}

.shaodow {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.section-ttl-inner {
  position: relative;
}

.main-ttl-dec {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
}

.page-container {
  background: linear-gradient(to right, #111 0%, #303030 50%, #111 100%);
}

/* .btn{
  transition: .3s;
}

.btn:hover{
  transform: scale(1.1);
} */

@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
  .container {
    width: auto;
    margin: 0 16px;
  }
  .only_pc {
    display: none !important;
  }
  .only_sp {
    display: block !important;
  }

  .section {
    padding: 60px 0 80px;
  }

  .main-ttl {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .sub-ttl {
    font-size: 2rem;
  }

  .txt {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .copyright {
    font-size: 1rem;
  }

  .main-ttl-dec {
    bottom: 0px;
  }

  main {
    padding-top: 58px;
  }
}

/* ------------------------------------------
  header
------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 30px 22px 170px;
  background: #1a1a1a;
}

.header-logo a {
  display: block;
  width: 150px;
}

.header-contact {
  width: 65%;
}

.header-contact-list {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .header-inner {
    padding: 10px 15px;
  }

.header-logo a {
  width: 100px;
}

  .header-logo {
    width: 30%;
  }

  .header-contact-sp-inner {
    display: flex;
    align-items: center;
    justify-content: right;
  }

  .header-contact {
    width: 100%;
  }

  .header-contact-list {
    gap: 5px;
    width: 80%;
  }

  .hum-container {
    width: 38px;
    margin-left: 5px;
  }

  .hum-inner {
    height: 10px;
    position: relative;
    margin-bottom: 10px;
  }

  .hum-inner span {
    position: absolute;
    height: 1px;
    width: 100%;
    display: block;
    background: #fff;
  }

  .hum-inner span:nth-child(1) {
    top: 0;
  }

  .hum-inner span:nth-child(1) {
    top: 10px;
  }

  .hum-ttl {
    line-height: 100%;
    font-size: 1rem;
    font-family: "Cormorant Garamond", serif;
    color: #fff;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.04em;
  }

  .sp-nav {
    position: fixed;
    top: 0;
    left: -150%;
    z-index: 99999;
    background: #222;
    width: 100vw;
    height: 100vh;
    transition: 0.4s ease;
  }

  .sp-nav-inner {
    position: relative;
  }

  .sp-hum-inner {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .sp-hum-inner .sp-hum {
    position: relative;
    height: 20px;
    width: 100%;
    margin-bottom: 5px;
  }

  .sp-hum-inner .sp-hum span {
    position: absolute;
    height: 1px;
    width: 100%;
    background: #fff;
    display: block;
  }

  .sp-hum-inner .sp-hum span:nth-child(1) {
    top: 10px;
    transform: rotate(30deg);
  }

  .sp-hum-inner .sp-hum span:nth-child(2) {
    top: 10px;
    transform: rotate(-30deg);
  }

  .sp-nav.open {
    left: 0;
  }

  .sp-menu {
    width: 78.6%;
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
  }

  .sp-menu-list-item {
    padding-bottom: 24px;
    border-bottom: 1px solid #e5a759;
    margin-bottom: 24px;
  }

  .sp-menu-list-item a,
    .sp-menu-list-item p {
      font-weight: bold;
    color: #fff;
    font-size: 1.6rem;
  }

  .sp-menu-list-item-list{
    position: relative;
    padding-right: 30px;
    cursor: pointer;
  }

  .sp-menu-list-item-list::after{
    position: absolute;
    content: "▶";
    top: 0;
    right: 0;
    transform: rotate(90deg);
  }

  .sp-menu-list-item-list.active::after{
    transform: rotate(-90deg);
  }

  .sp-hum-contact {
    margin-bottom: 20px;
  }

  .sp-hum-contact a,
  .sp-hum-contact a img {
    display: block;
    width: 80%;
    margin: 0 auto;
  }

  @media screen and (max-width: 425px) {
    .sp-hum-contact a,
    .sp-hum-contact a img {
      width: 100%;
    }
  }
}

/* ------------------------------------------
  footer
------------------------------------------ */
.footer {
  background: #101010;
  padding: 40px 170px 30px;
}

.footer-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
  gap: 20px;
}

.footer-logo{
  width: 120px;
}

.footer-logo a {
  display: block;
  width: 100%;
}

.footer-nav{
  width: 60%;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
}

.footer-nav-list-item {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}

.footer-nav-list-item-page-list-ttl{
  cursor: pointer;
  transition: .3s;
  position: relative;
  padding-right: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
}

.footer-nav-list-item-page-list-ttl::after{
  position: absolute;
  right: 0;
  top: 0;
  content: '▶';
  transform: rotate(90deg);
}

.footer-nav-list-item-page-list-ttl.active::after{
  transform: rotate(-90deg);
}

.footer-nav-list-item-page-list-ttl:hover{
  opacity: .7;
}

.footer-page-list{
  display: none;
  margin-top: 20px;
}

.footer-page-list-item:not(:last-child){
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 60px 16px 10px;
  }

  .footer-inner {
    display: block;
    margin-bottom: 50px;
  }


  .footer-logo {
    width: 150px;
    margin-bottom: 30px;
  }

    .footer-logo a {
      display: block;
  width: 100%;
}

  .footer-nav-list {
    display: block;
  }

  .footer-nav-list-item:not(:last-child) {
    margin-bottom: 15px;
  }
}

/* ------------------------------------------
  page_mv
------------------------------------------ */
.page-mv {
  aspect-ratio: 1440/395;
  background: url(../img/page-mv.webp) center / cover;
  position: relative;
  display: grid;
  place-content: center;
}

.page-mv-ttl {
  position: absolute;
  font-size: 3.6rem;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: "Shippori Mincho", serif;
  z-index: 2;
}

.page-mv-ttl-blue {
  background: linear-gradient(to bottom, #EAFCFF, #8DB7B6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.page-mv-sub-ttl {
  text-align: center;
  width: 100%;
  /* position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%); */
  transform: translateY(6%);
  z-index: 1;
  color: #f3f3f3;
  opacity: 0.15;
  font-size: 16rem;
  font-family: "garamond-premier-pro", serif;
}

@media screen and (max-width: 767px) {
  .page-mv {
    background: url(../img/page-mv-sp.webp) center / cover;
    aspect-ratio: 375/208;
  }

  .page-mv-ttl {
    font-size: 2rem;
    width: 100%;
    text-align: center;
  }

  .page-mv-sub-ttl {
    font-size: 4.8rem;
    transform: translateY(11%);
  }
}

/* ------------------------------------------
  page_cta-banner
------------------------------------------ */
.contact-cta-banner {
  padding: 100px 0;
}

.about-cta-banner{
  padding-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .contact-cta-banner {
    padding: 60px 0 80px;
  }

  .about-cta-banner{
    padding-bottom: 20px;
  }
}

/* ------------------------------------------
  page-cta
------------------------------------------ */
.cta-inner{
  background: url(../img/cta.webp) center / cover;
  aspect-ratio: 1100/430;
  position: relative;
}

.cta-banner-ttl{
  font-size: 3.6rem;
  font-family: "Shippori Mincho", serif;
  color: #fff;
  line-height: 1.6;
  font-weight: bold;
  position: absolute;
  top: 10%;
  left: 17%;
}

.cta-benner-btn-list{
  max-width: 296px;
  width: 100%;
  position: absolute;
  top: 42%;
  left: 28%;
}

.cta-benner-btn-item:not(:last-child){
  margin-bottom: 15px;
}


@media screen and (max-width: 767px){
  .cta-inner{
    background: url(../img/cta-sp.webp) center / cover;
    aspect-ratio: 343/ 237;
  }

  .cta-banner-ttl{
    font-size: 5vw;
    line-height: 1.4;
    left: 7%;
  }

  .cta-benner-btn-list{
    max-width: 42.85%;
    top: 47%;
    left: 15%;
  }

  .cta-benner-btn-item:not(:last-child){
    margin-bottom: 8px;
  }
}

/* ------------------------------------------
  ショー情報 下層ページ
------------------------------------------ */
.page-show-ttl{
color: #FFF;
text-align: center;
text-shadow: 0 0 10px #301B01;
font-family: "Shippori Mincho";
font-size: 4.2rem;
font-style: normal;
font-weight: 600;
line-height: 0.5em;
letter-spacing: -0.23625rem;
margin-bottom: 50px;
}

.page-show{
  background: #191919;
}

.page-show-container{
  padding: 70px 0;
}

.page-show-inner{
  max-width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 1700px){
  .page-show-inner{
    max-width: 70%;
  }
}

.page-show-content-item{
  display: flex;
  gap: 50px;
  align-items: center;
}

.page-show-content-item:not(:last-child){
  margin-bottom: 50px;
}


.page-show-content-item-img{
  width: 34%;
}

.page-show-content-item-txt-inner{
  width: 65%;
}

.page-show-content-item:nth-child(even) .page-show-content-item-img{
  order: 2;
}

.page-show-content-item-ttl{
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  margin-bottom: 40px;
  line-height: 100%;
  line-height: 1.5;
}

.page-show-content-item-txt{
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.6;
}

.page-show-ttl-under-txt{
  font-size: 2.4rem;
  line-height: 1.6;
  margin: 80px auto;
  color: #fff;
  width: 80%;
  /* text-align: center; */
}

.page-show-gallery{
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-show-content-item-ttl-gold{
  background: linear-gradient(to bottom, #FAECD9, #ffe8c4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800 !important;
  font-size: 3.2rem;
}

.page-show-content-item-list-inner{
  display: flex;
  gap: 40px;
}

.page-show-content-item-list-item{
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.6;
}


.inbound {
  background: url(../img/show-banner1.webp) center / cover;
}

.Illusion {
  background: url(../img/show-banner2.webp) center / cover;
}

.mall {
  background: url(../img/show-banner3.webp) center / cover;
}

.media {
  background: url(../img/show-banner4.webp) center / cover;
}

.company{
  background: url(../img/show-banner5.webp) center / cover;
}

.kids{
  background: url(../img/show-banner6.webp) center / cover;
}

.season{
  background: url(../img/show-banner7.webp) center / cover;
}

.participatory{
  background: url(../img/show-banner8.webp) center / cover;
}

.page-show-gallery-participatory{
  width: 74.6%;
  margin: 0 auto;
}

.page-show-ttl-under-txt-participatory{
  margin: 80px auto 100px;
  width: 73%;
}



.page-media-content{
  width: 85%;
  margin: 0 auto;
}

.page-media-content-inner{
  display: flex;
}

.page-media-content-item{
  width: 50%;
}

.page-media-content-ttl{
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.page-media-content-item-list{
  font-size: 1.8rem;
  line-height: 1.8;
  color: #fff;
}

.page-media-content-inner{
  margin-bottom: 50px;
}

.page-media-content-item-list-mv{
  margin-bottom: 50px;
}

.page-media-img{
  margin-top: 60px;
}

@media screen and (max-width: 1270px){
  .page-media-content{
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px){
  .page-show-ttl{
    font-size: 2rem;
    line-height: 1.6;
  }

  .page-show-ttl svg{
    display: block;
    padding-top: -20px;
  }

  .page-show-container{
    padding: 20px 0;
  }

  .page-show-content-item{
    display: block;
  }

  .page-show-content-item-img{
    width: 100%;
    margin-bottom: 30px;
  }

  .page-show-content-item-txt-inner{
    width: 100%;
  }

  .page-show-content-item-ttl{
    margin-bottom: 20px;
  }

  .page-show-content-item-txt{
    font-size: 1.2rem;
    line-height: 2;
  }

  .page-show-ttl-under-txt{
    font-size: 1.2rem;
    line-height: 2.2;
    margin: 20px 0;
  }


  .page-show-gallery{
    display: block;
    margin: 20px 0;
  }

  .page-show-content-item-ttl-gold{
    font-size: 2rem;
  }

  .page-show-gallery-item:not(:last-child){
    margin-bottom: 20px;
  }

  .page-show-content-item-list-inner{
    display: block;
  }

  .page-show-content-item-list-item{
  font-size: 1.2rem;
  line-height: 2;
  }

  .page-show-gallery-participatory{
    width: 100%;
  }

  .page-show-ttl-under-txt-participatory{
    margin: 50px 0;
    width: 100%;
  }

  .inbound {
    background: url(../img/show-banner-sp1.webp) center / cover;
    aspect-ratio: 375/149;
  }

  .Illusion {
    background: url(../img/show-banner-sp2.webp) center / cover;
    aspect-ratio: 375/149;
  }

  .mall {
    background: url(../img/show-banner-sp3.webp) center / cover;
    aspect-ratio: 375/149;
  }

  .media {
    background: url(../img/show-banner-sp4.webp) center / cover;
    aspect-ratio: 375/149;
  }

  .company {
    background: url(../img/show-banner-sp5.webp) center / cover;
    aspect-ratio: 375/149;
  }

  .kids{
    background: url(../img/show-banner-sp6.webp) center / cover;
    aspect-ratio: 375/149;
  }

  .season{
    background: url(../img/show-banner-sp7.webp) center / cover;
    aspect-ratio: 375/149;
  }

  .participatory{
    background: url(../img/show-banner-sp8.webp) center / cover;
    aspect-ratio: 375/149;
  }

  .page-media-content{
    width: 100%;
  }

  .page-media-content-ttl{
    font-size: 2rem;
  }

  .page-media-content-inner{
    display: block;
  }

  .page-media-content-item{
    width: 100%;
  }

  .page-media-content-item-cm {
    margin-bottom: 50px;
  }

  .page-media-content-item-list{
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .page-media-img{
    margin-top: 40px;
  }

  .page-show-ttl-under-txt-media{
    text-align: left;
  }
}