@charset "UTF-8";
/*! Writen  by SCSS */
.oh {
  overflow: hidden; }
  .oh .oh__inner {
    display: inline-block;
    transform-origin: 0 50%;
    will-change: transform; }

/*	ローディング	*/
.loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transition: 0s opacity linear 1.1s;
  transition: 1s transform cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  z-index: 100000000;
  display: block;
  pointer-events: none; }
  .loading .loading_bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #18130A;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    transition: 0s opacity linear 1.1s; }
    .loading .loading_bg #percent {
      margin-bottom: 5px;
      text-align: center;
      font-size: 30px;
      color: #FFF;
      text-indent: 0.5em;
      font-weight: 600;
      transition: 0.9s transform ease-in 0.2s; }
      @media screen and (max-width: 480px) {
        .loading .loading_bg #percent {
          font-size: 24px;
          transition: 0.9s transform ease-in 0.4s; } }
      .loading .loading_bg #percent .en {
        letter-spacing: 0.6em; }
    .loading .loading_bg #gauge,
    .loading .loading_bg .loader {
      opacity: 0;
      pointer-events: none; }
  body.loaded .loading .loading_bg {
    opacity: 0;
    pointer-events: none; }
    body.loaded .loading .loading_bg #percent {
      transform: translateY(-100vh); }
  .loading .circle {
    width: 40px;
    height: 40px;
    background: #E7DFD3;
    border-radius: 100%;
    animation: 1s bigsmall infinite both; }
  .loading canvas#canvas {
    /*width:100%!important;*/
    height: auto !important;
    position: absolute;
    top: -9999px;
    left: -9999px;
    right: -9999px;
    bottom: -9999px;
    margin: auto; }
    @media screen and (max-width: 480px) {
      .loading canvas#canvas {
        width: 350% !important; } }
  .loading #animation_container,
  .loading #dom_overlay_container {
    position: absolute;
    left: -100%;
    right: -100%;
    margin: auto;
    top: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 2; }

@keyframes bigsmall {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.2); }
  100% {
    transform: scale(1); } }
.parabg_child {
  will-change: top,height; }

/*	メインビジュアル	*/
.mainvisual {
  position: relative;
  z-index: 1;
  overflow: hidden; }
  .mainvisual .main_bg {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
    .mainvisual .main_bg hr {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      /*bottom:0;*/
      height: 110%;
      background-size: cover;
      background-position: center bottom;
      background-repeat: no-repeat;
      background-image: url("../images/main.jpg"); }
      @media screen and (max-width: 768px) {
        .mainvisual .main_bg hr {
          background-image: url("../images/main_sp.jpg"); } }
  .mainvisual:after {
    content: "";
    display: block;
    height: 100%;
    min-height: 100vh;
    max-height: calc(var(--vh, 1vh) * 100);
    pointer-events: none; }
    @media screen and (max-width: 768px) {
      .mainvisual:after {
        padding-bottom: 0;
        height: 100%;
        min-height: 100vh;
        max-height: calc(var(--vh, 1vh) * 100); } }
  .mainvisual .maincopy_wrap {
    max-width: 1700px;
    position: absolute;
    left: 3.64%;
    bottom: 3%;
    width: 88.021%; }
    @media screen and (max-width: 768px) {
      .mainvisual .maincopy_wrap {
        left: 2.6%;
        bottom: 15%;
        width: 70%; } }
    @media screen and (max-width: 480px) {
      .mainvisual .maincopy_wrap {
        width: 80%;
        bottom: 23%; } }
    .mainvisual .maincopy_wrap .maincopy {
      position: relative;
      overflow: hidden; }
      .mainvisual .maincopy_wrap .maincopy span {
        display: block;
        transform-origin: left top;
        transform: translateY(100%) rotate(7deg);
        transition: 0.6s transform ease-in-out 1.4s; }
      .mainvisual .maincopy_wrap .maincopy.copy02 span {
        width: 82.96%; }
        @media screen and (max-width: 768px) {
          .mainvisual .maincopy_wrap .maincopy.copy02 span {
            width: 100%; } }
      .mainvisual .maincopy_wrap .maincopy.copy03, .mainvisual .maincopy_wrap .maincopy.copy04 {
        display: none; }
        @media screen and (max-width: 768px) {
          .mainvisual .maincopy_wrap .maincopy.copy03, .mainvisual .maincopy_wrap .maincopy.copy04 {
            display: block; } }
    body.loaded .mainvisual .maincopy_wrap .maincopy span {
      transform: translateY(0) rotate(0deg); }
  .mainvisual .main_logo {
    position: absolute;
    right: 3%;
    bottom: 9%;
    width: 13.2292%;
    max-width: 254px;
    text-align: right;
    opacity: 0;
    transition: 0.6s opacity ease-in-out 1.4s;
    /*
    @include mq(2000){
    	right:3%;
    }
    */ }
    @media screen and (max-width: 1200px) {
      .mainvisual .main_logo {
        bottom: 7.5%; } }
    @media screen and (max-width: 768px) {
      .mainvisual .main_logo {
        right: 15%;
        bottom: 15.5%;
        width: 30%; } }
    @media screen and (max-width: 480px) {
      .mainvisual .main_logo {
        right: 10%;
        bottom: 23.5%; } }
    body.loaded .mainvisual .main_logo {
      opacity: 1; }

.flex {
  display: flex;
  justify-content: space-between; }

.sec_ttl_wrap {
  padding: 420px 0 320px;
  max-width: 1660px;
  margin: 0 auto;
  width: calc(100% - 80px);
  justify-content: flex-start;
  align-items: flex-start; }
  @media screen and (max-width: 768px) {
    .sec_ttl_wrap {
      padding: 200px 0 160px; } }
  @media screen and (max-width: 480px) {
    .sec_ttl_wrap {
      width: calc(100% - 60px);
      flex-wrap: wrap;
      padding: 145px 0 80px; } }
  .sec_ttl_wrap.beige {
    color: #E7DFD3; }
  .sec_ttl_wrap .s01 {
    font-size: 30px;
    width: 300px; }
    @media screen and (max-width: 1600px) {
      .sec_ttl_wrap .s01 {
        width: 250px; } }
    @media screen and (max-width: 1200px) {
      .sec_ttl_wrap .s01 {
        width: 200px; } }
    @media screen and (max-width: 768px) {
      .sec_ttl_wrap .s01 {
        font-size: 20px;
        width: 120px; } }
    @media screen and (max-width: 480px) {
      .sec_ttl_wrap .s01 {
        width: 100%;
        font-size: 20px;
        margin-bottom: 80px; } }
  .sec_ttl_wrap .s02 {
    font-size: 60px;
    line-height: 1.4; }
    @media screen and (max-width: 1680px) {
      .sec_ttl_wrap .s02 {
        font-size: 3.05vw; } }
    @media screen and (max-width: 1300px) {
      .sec_ttl_wrap .s02 {
        font-size: 2.9vw; } }
    @media screen and (max-width: 768px) {
      .sec_ttl_wrap .s02 {
        font-size: 3.8vw;
        width: 42%; } }
    @media screen and (max-width: 480px) {
      .sec_ttl_wrap .s02 {
        font-size: 30px;
        width: 100%;
        margin-bottom: 50px;
        line-height: 1.6; } }
  .sec_ttl_wrap .s03 {
    font-size: 18px;
    margin-left: 6.22%;
    margin-top: 15px;
    width: 40%; }
    @media screen and (max-width: 1500px) {
      .sec_ttl_wrap .s03 {
        font-size: 1.2vw;
        margin-left: 5%; } }
    @media screen and (max-width: 1200px) {
      .sec_ttl_wrap .s03 {
        font-size: 1.5vw;
        margin-top: 5px;
        width: 50%; } }
    @media screen and (max-width: 768px) {
      .sec_ttl_wrap .s03 {
        width: 40%;
        font-size: 12px;
        margin-left: 0; } }
    @media screen and (max-width: 480px) {
      .sec_ttl_wrap .s03 {
        width: 100%;
        font-size: 16px;
        margin-top: 0;
        margin-left: 0;
        line-height: 2; } }

.img_scroll {
  position: relative; }
  .img_scroll .grid_wrap {
    position: relative; }
  .img_scroll .grid {
    pointer-events: none;
    position: relative;
    width: 100%;
    /*
    display: grid;
    grid-template-columns: repeat(8,1fr);
    */
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
    .img_scroll .grid .grid__item {
      position: relative;
      position: absolute;
      will-change: transform;
      /*
      	grid-column: var(--c);
      	grid-row: var(--r);
      */
      width: 18.75%;
      			/*
      			&.grid11{
      				right: 33.6459%;
          			bottom: 3%;
      				@include mq($br_sp){
      					right:8.6459%;
      				}
      			}
      			&.grid12{
      				right: 21.6459%;
          			bottom: 17%;
      				@include mq($br_tb){
      					right: 13.6459%;
      				}
      			}
      			*/ }
      @media screen and (max-width: 768px) {
        .img_scroll .grid .grid__item {
          width: 23%; } }
      @media screen and (max-width: 480px) {
        .img_scroll .grid .grid__item {
          opacity: 0.7;
          width: 45%; } }
      .img_scroll .grid .grid__item:before {
        content: "";
        display: block;
        padding-bottom: 100%; }
      .img_scroll .grid .grid__item.grid01 {
        left: 0;
        top: 8%; }
        @media screen and (max-width: 480px) {
          .img_scroll .grid .grid__item.grid01 {
            top: 3%;
            left: -10%; } }
      .img_scroll .grid .grid__item.grid02 {
        right: 0;
        top: 13%; }
        @media screen and (max-width: 480px) {
          .img_scroll .grid .grid__item.grid02 {
            top: 8%;
            right: -10%; } }
      .img_scroll .grid .grid__item.grid03 {
        left: 9.21875%;
        top: 22%; }
        @media screen and (max-width: 768px) {
          .img_scroll .grid .grid__item.grid03 {
            left: 2.5%; } }
        @media screen and (max-width: 480px) {
          .img_scroll .grid .grid__item.grid03 {
            left: 0; } }
      .img_scroll .grid .grid__item.grid04 {
        right: 9.21875%;
        top: 28.5%; }
        @media screen and (max-width: 768px) {
          .img_scroll .grid .grid__item.grid04 {
            right: 2.5%; } }
      .img_scroll .grid .grid__item.grid05 {
        left: 0;
        top: 40%; }
      .img_scroll .grid .grid__item.grid06 {
        right: 0;
        top: 46%; }
      .img_scroll .grid .grid__item.grid07 {
        left: 9.21875%;
        top: 56%; }
        @media screen and (max-width: 768px) {
          .img_scroll .grid .grid__item.grid07 {
            left: 2.5%; } }
      .img_scroll .grid .grid__item.grid08 {
        right: 9.21875%;
        top: 68%; }
        @media screen and (max-width: 768px) {
          .img_scroll .grid .grid__item.grid08 {
            right: 2.5%; } }
      .img_scroll .grid .grid__item.grid09 {
        left: 0;
        bottom: 14%; }
      .img_scroll .grid .grid__item.grid10 {
        right: 0%;
        bottom: 7%; }
        @media screen and (max-width: 480px) {
          .img_scroll .grid .grid__item.grid10 {
            bottom: 1%; } }
    .img_scroll .grid .grid__item-img {
      position: relative;
      width: 100%;
      height: auto;
      aspect-ratio: 1;
      background-size: cover;
      background-position: 50% 50%;
      will-change: transform, opacity;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0; }
  .img_scroll .text_cont {
    padding: 30.67% 40px 29.29%; }
    @media screen and (max-width: 480px) {
      .img_scroll .text_cont {
        padding: 145px 0; } }
    .img_scroll .text_cont .text_wrap {
      text-align: center;
      color: #FFF;
      max-width: 906px;
      box-sizing: content-box;
      margin-left: 25%;
      opacity: 1;
      transform: translateY(0); }
      @media screen and (max-width: 1200px) {
        .img_scroll .text_cont .text_wrap {
          margin-left: 13%; } }
      @media screen and (max-width: 768px) {
        .img_scroll .text_cont .text_wrap {
          margin-left: 7%; } }
      @media screen and (max-width: 480px) {
        .img_scroll .text_cont .text_wrap {
          margin-left: 0; } }
      .img_scroll .text_cont .text_wrap .about_img {
        margin-bottom: 100px;
        opacity: 1;
        transform: translateY(0); }
        @media screen and (max-width: 768px) {
          .img_scroll .text_cont .text_wrap .about_img {
            max-width: 600px;
            margin-bottom: 60px; } }
        @media screen and (max-width: 480px) {
          .img_scroll .text_cont .text_wrap .about_img {
            width: 94.6875%; } }
        .img_scroll .text_cont .text_wrap .about_img p:nth-of-type(n+2) {
          margin-top: 50px; }
          @media screen and (max-width: 480px) {
            .img_scroll .text_cont .text_wrap .about_img p:nth-of-type(n+2) {
              margin-top: 15px; } }
      .img_scroll .text_cont .text_wrap .read_wrap {
        max-width: 800px;
        margin: 0 auto;
        opacity: 1;
        transform: translateY(0);
        /*
        @include mq($br_sp){
        	width: 90%;
        	margin: 0 auto;
        }
        */ }
        @media screen and (max-width: 768px) {
          .img_scroll .text_cont .text_wrap .read_wrap {
            max-width: 590px; } }
        @media screen and (max-width: 480px) {
          .img_scroll .text_cont .text_wrap .read_wrap {
            width: calc(100% - 60px);
            margin: 0 auto; } }
        .img_scroll .text_cont .text_wrap .read_wrap .read {
          text-align: left;
          line-height: 5;
          opacity: 0;
          transform: translateY(30px);
          transition: 1s all ease-in-out 0s;
          font-size: 16px;
          letter-spacing: 0.05em;
          color: #E7DFD3; }
          @media screen and (max-width: 480px) {
            .img_scroll .text_cont .text_wrap .read_wrap .read {
              letter-spacing: normal; } }
          @media screen and (max-width: 480px) {
            .img_scroll .text_cont .text_wrap .read_wrap .read {
              letter-spacing: 0.05em;
              line-height: 2.8; } }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(2) {
            transition-delay: 0.05s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(3) {
            transition-delay: 0.1s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(4) {
            transition-delay: 0.15s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(5) {
            transition-delay: 0.2s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(6) {
            transition-delay: 0.4s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(7) {
            transition-delay: 0.45s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(8) {
            transition-delay: 0.5s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(9) {
            transition-delay: 0.55s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(10) {
            transition-delay: 0.6s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(11) {
            transition-delay: 0.8s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(12) {
            transition-delay: 0.85s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(13) {
            transition-delay: 0.9s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(14) {
            transition-delay: 0.95s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(15) {
            transition-delay: 1s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read:nth-of-type(16) {
            transition-delay: 1.05s; }
          .img_scroll .text_cont .text_wrap .read_wrap .read.separate {
            margin-bottom: 80px; }
            @media screen and (max-width: 768px) {
              .img_scroll .text_cont .text_wrap .read_wrap .read.separate {
                margin-bottom: 50px; } }
        .img_scroll .text_cont .text_wrap .read_wrap.p-view .read {
          opacity: 1;
          transform: translateY(0); }

.curtain_wrap {
  position: relative; }
  .curtain_wrap .curtain,
  .curtain_wrap .curtain02,
  .curtain_wrap .curtain03 {
    position: fixed;
    top: 0%;
    width: 100%;
    height: 100%;
    pointer-events: none; }
    .curtain_wrap .curtain li,
    .curtain_wrap .curtain02 li,
    .curtain_wrap .curtain03 li {
      position: absolute;
      left: 0;
      width: 100%;
      height: 20%; }
      .curtain_wrap .curtain li:nth-child(2),
      .curtain_wrap .curtain02 li:nth-child(2),
      .curtain_wrap .curtain03 li:nth-child(2) {
        top: 20%; }
      .curtain_wrap .curtain li:nth-child(3),
      .curtain_wrap .curtain02 li:nth-child(3),
      .curtain_wrap .curtain03 li:nth-child(3) {
        top: 40%; }
      .curtain_wrap .curtain li:nth-child(4),
      .curtain_wrap .curtain02 li:nth-child(4),
      .curtain_wrap .curtain03 li:nth-child(4) {
        top: 60%; }
      .curtain_wrap .curtain li:nth-child(5),
      .curtain_wrap .curtain02 li:nth-child(5),
      .curtain_wrap .curtain03 li:nth-child(5) {
        top: 80%; }
      .curtain_wrap .curtain li .border,
      .curtain_wrap .curtain02 li .border,
      .curtain_wrap .curtain03 li .border {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        height: 0;
        background: #E7DFD3; }
  .curtain_wrap .curtain {
    z-index: -3; }
  .curtain_wrap .curtain02 {
    z-index: -2; }
    .curtain_wrap .curtain02 li .border {
      background: #F3EFE9; }
  .curtain_wrap .curtain03 {
    z-index: -2; }
    .curtain_wrap .curtain03 li .border {
      background: #18130A; }

.blend {
  mix-blend-mode: exclusion; }

.lineup_wrap {
  position: relative;
  padding-bottom: 300px; }
  @media screen and (max-width: 480px) {
    .lineup_wrap {
      padding-bottom: 100px; } }
  .lineup_wrap .menu {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    width: calc(100% - 40px); }
    @media screen and (max-width: 480px) {
      .lineup_wrap .menu {
        width: calc(100% - 60px); } }
    .lineup_wrap .menu .menu__item {
      display: block;
      position: relative;
      width: 100%;
      padding: 0 20px 0 60px;
      margin-bottom: 150px;
      counter-increment: step-counter;
      transition: 0.3s all ease-in-out 0s;
      opacity: 0.5;
      transform: translateX(40px) !important; }
      @media screen and (max-width: 1400px) {
        .lineup_wrap .menu .menu__item {
          margin-bottom: 70px; } }
      @media screen and (max-width: 1200px) {
        .lineup_wrap .menu .menu__item {
          transform: translateX(30px) !important; } }
      @media screen and (max-width: 768px) {
        .lineup_wrap .menu .menu__item {
          opacity: 1;
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          padding: 0;
          margin-bottom: 60px;
          transform: translateX(0px) !important;
          pointer-events: none; } }
      .lineup_wrap .menu .menu__item::before {
        text-align: left;
        content: "0" counter(step-counter);
        color: #333;
        opacity: 0;
        position: absolute;
        left: 0;
        top: 0;
        font-weight: 100;
        line-height: 1;
        padding-right: 0.5rem;
        place-items: center;
        font-size: 30px;
        transform: translateX(1rem);
        transition: transform 0.3s, opacity 0.6s;
        font-family: freight-big-pro, serif;
        font-weight: 400;
        font-style: normal; }
        @media screen and (max-width: 768px) {
          .lineup_wrap .menu .menu__item::before {
            opacity: 1;
            font-size: 60px;
            position: static;
            display: inline-block;
            transform: none !important; } }
      body:not(.mobile) .lineup_wrap .menu .menu__item:hover {
        opacity: 1;
        transform: translateX(0) !important; }
        body:not(.mobile) .lineup_wrap .menu .menu__item:hover::before {
          opacity: 1;
          transform: translateX(0); }
      @media screen and (max-width: 768px) {
        .lineup_wrap .menu .menu__item.last_menu {
          margin-bottom: 0; } }
      .lineup_wrap .menu .menu__item .menu_item-text {
        position: relative;
        cursor: pointer;
        display: block;
        line-height: 0.8; }
        @media screen and (max-width: 768px) {
          .lineup_wrap .menu .menu__item .menu_item-text {
            display: inline-block; } }
        .lineup_wrap .menu .menu__item .menu_item-text .menu_item-textinner {
          font-size: 90px;
          position: relative;
          display: block;
          white-space: nowrap;
          color: #333;
          transition: 0.3s text-shadow linear 0s; }
          @media screen and (max-width: 1700px) {
            .lineup_wrap .menu .menu__item .menu_item-text .menu_item-textinner {
              font-size: 5.29vw; } }
          @media screen and (max-width: 1200px) {
            .lineup_wrap .menu .menu__item .menu_item-text .menu_item-textinner {
              font-size: 5.7vw; } }
          @media screen and (max-width: 768px) {
            .lineup_wrap .menu .menu__item .menu_item-text .menu_item-textinner {
              font-size: 20px;
              margin-top: 10px; } }
          @media screen and (max-width: 480px) {
            .lineup_wrap .menu .menu__item .menu_item-text .menu_item-textinner {
              font-size: 12px; } }
      .lineup_wrap .menu .menu__item .menu_item-sub {
        font-size: 22px;
        display: block;
        color: #333;
        opacity: 0;
        transition: transform 0.3s, opacity 0.6s; }
        @media screen and (max-width: 1700px) {
          .lineup_wrap .menu .menu__item .menu_item-sub {
            font-size: 19px; } }
        @media screen and (max-width: 1200px) {
          .lineup_wrap .menu .menu__item .menu_item-sub {
            font-size: 18px; } }
        @media screen and (max-width: 768px) {
          .lineup_wrap .menu .menu__item .menu_item-sub {
            opacity: 1;
            font-size: 22px;
            width: 100%;
            margin-top: 5px; } }
      .lineup_wrap .menu .menu__item .tablet_wrap {
        display: none; }
        @media screen and (max-width: 768px) {
          .lineup_wrap .menu .menu__item .tablet_wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 0;
            pointer-events: all; } }
        @media screen and (max-width: 480px) {
          .lineup_wrap .menu .menu__item .tablet_wrap {
            flex-wrap: wrap; } }
        .lineup_wrap .menu .menu__item .tablet_wrap .tb_image {
          width: 50%;
          position: relative; }
          @media screen and (max-width: 480px) {
            .lineup_wrap .menu .menu__item .tablet_wrap .tb_image {
              width: 100%;
              margin-bottom: 20px; } }
          .lineup_wrap .menu .menu__item .tablet_wrap .tb_image .cap {
            position: absolute;
            right: 5px;
            bottom: 5px;
            font-size: 10px; }
            .lineup_wrap .menu .menu__item .tablet_wrap .tb_image .cap.white {
              color: #FFF; }
        .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap {
          width: 46%; }
          @media screen and (max-width: 480px) {
            .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap {
              width: 100%; } }
          .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .tb_box {
            border: 1px solid rgba(24, 19, 10, 0.3);
            padding: 10px;
            margin: 15px auto; }
          .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .tb_txt {
            font-size: 14px; }
            @media screen and (max-width: 768px) {
              .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .tb_txt {
                font-size: 13px; } }
            .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .tb_txt.big {
              font-size: 15px;
              text-align: center; }
              @media screen and (max-width: 480px) {
                .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .tb_txt.big {
                  font-size: 14px; } }
            .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .tb_txt.indent {
              text-indent: -1em;
              padding-left: 1em; }
          .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .link_btn {
            margin: 0 auto; }
            .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .link_btn li {
              width: 100%; }
              .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .link_btn li:nth-child(1) {
                margin-bottom: 10px; }
              .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .link_btn li a {
                display: block;
                font-size: 20px;
                color: #000;
                padding: 10px 5px;
                text-align: center; }
                @media screen and (max-width: 480px) {
                  .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .link_btn li a {
                    padding: 20px 5px; } }
                .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .link_btn li a .small {
                  font-size: 70%; }
                .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .link_btn li a .block {
                  display: block; }
                .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .link_btn li a.comingsoon {
                  line-height: 1.4;
                  pointer-events: none; }
                  .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .link_btn li a.comingsoon span {
                    opacity: 0.7; }
              .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .link_btn li.rsv a {
                color: #E7DFD3;
                background: #18130A; }
              .lineup_wrap .menu .menu__item .tablet_wrap .tb_txt_wrap .link_btn li.site a {
                background: #F3EFE9; }
      body:not(.mobile) .lineup_wrap .menu .menu__item:hover .menu_item-textinner {
        color: #333; }
      body:not(.mobile) .lineup_wrap .menu .menu__item:hover .menu_item-sub {
        color: #333;
        opacity: 1;
        transform: translateX(0); }
  .lineup_wrap .hover-reveal {
    position: absolute;
    z-index: -1;
    width: 300px;
    height: 400px;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    will-change: transform, filter; }
  .lineup_wrap .hover-reveal__inner {
    overflow: hidden; }
  .lineup_wrap .hover-reveal__inner,
  .lineup_wrap .hover-reveal__img {
    width: 100%;
    height: 100%;
    position: relative; }
  .lineup_wrap .hover-reveal__img {
    background-size: cover;
    background-position: 50% 50%; }

.cursor {
  display: none; }

@media (any-pointer: fine) {
  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    pointer-events: none;
    opacity: 0 !important; }

  .cursor__inner {
    fill: var(--cursor-fill);
    stroke: var(--cursor-stroke);
    stroke-width: var(--cursor-stroke-width);
    opacity: 0.7; }

  .credits {
    padding-left: 25vw; } }
.cielia_cont {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 100000; }
  @media screen and (max-width: 768px) {
    .cielia_cont {
      display: none; } }
  .cielia_cont > div {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: 1s opacity ease-in-out 0s;
    pointer-events: none; }
    .cielia_cont > div.active {
      opacity: 1;
      pointer-events: all;
      transition: 0s opacity ease-in-out 0.8s; }
    .cielia_cont > div .cielia_modal_close {
      position: absolute;
      right: 0;
      bottom: 0;
      line-height: 0;
      transition: 0.3s transform ease-in-out 0s;
      transform-origin: right bottom;
      cursor: pointer;
      background: #E7DFD3; }
    .cielia_cont > div .modal_l {
      display: flex;
      justify-content: center;
      align-items: center;
      background: #18130A;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 50%;
      color: #E7DFD3; }
      .cielia_cont > div .modal_l .modal_l_in {
        max-width: 660px;
        margin: -133px auto 0;
        width: calc(100% - 80px); }
        .cielia_cont > div .modal_l .modal_l_in .name {
          justify-content: flex-start;
          align-items: center;
          margin-bottom: 80px; }
          @media screen and (max-width: 1200px) {
            .cielia_cont > div .modal_l .modal_l_in .name {
              margin-bottom: 50px; } }
          .cielia_cont > div .modal_l .modal_l_in .name .en_num {
            font-size: 174px;
            color: rgba(231, 223, 211, 0.3);
            line-height: 0.6;
            margin-top: -30px; }
            @media screen and (max-width: 1600px) {
              .cielia_cont > div .modal_l .modal_l_in .name .en_num {
                font-size: 11vw; } }
            @media screen and (max-width: 1200px) {
              .cielia_cont > div .modal_l .modal_l_in .name .en_num {
                font-size: 10vw; } }
          .cielia_cont > div .modal_l .modal_l_in .name .name_r {
            margin-left: 20px; }
            .cielia_cont > div .modal_l .modal_l_in .name .name_r .name01 {
              font-size: 42px;
              margin-bottom: 20px;
              line-height: 1; }
              @media screen and (max-width: 1600px) {
                .cielia_cont > div .modal_l .modal_l_in .name .name_r .name01 {
                  font-size: 2.6vw; } }
              @media screen and (max-width: 1200px) {
                .cielia_cont > div .modal_l .modal_l_in .name .name_r .name01 {
                  font-size: 2.45vw;
                  margin-bottom: 15px; } }
            .cielia_cont > div .modal_l .modal_l_in .name .name_r .name02 {
              font-size: 20px; }
              @media screen and (max-width: 1600px) {
                .cielia_cont > div .modal_l .modal_l_in .name .name_r .name02 {
                  font-size: 1.3vw; } }
        .cielia_cont > div .modal_l .modal_l_in .text {
          font-size: 18px;
          line-height: 2;
          margin-bottom: 30px; }
          @media screen and (max-width: 1600px) {
            .cielia_cont > div .modal_l .modal_l_in .text {
              font-size: 16px; } }
        .cielia_cont > div .modal_l .modal_l_in .text_box {
          border: 1px solid rgba(231, 223, 211, 0.2);
          padding: 20px; }
          .cielia_cont > div .modal_l .modal_l_in .text_box .t01 {
            font-size: 18px;
            text-align: center;
            font-weight: 700;
            margin-bottom: 15px; }
          .cielia_cont > div .modal_l .modal_l_in .text_box .t02 {
            font-size: 16px; }
      .cielia_cont > div .modal_l .modal_link_btn {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        display: flex; }
        .cielia_cont > div .modal_l .modal_link_btn li {
          width: 50%;
          width: 100%;
          height: 133px;
          display: flex;
          justify-content: center;
          align-items: center; }
          .cielia_cont > div .modal_l .modal_link_btn li a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 16px 10px;
            text-align: center;
            font-size: 30px;
            font-size: 26px;
            height: 100%;
            position: relative;
            color: #000; }
            @media screen and (max-width: 1500px) {
              .cielia_cont > div .modal_l .modal_link_btn li a {
                font-size: 1.8vw; } }
            .cielia_cont > div .modal_l .modal_link_btn li a.comingsoon {
              pointer-events: none; }
              .cielia_cont > div .modal_l .modal_link_btn li a.comingsoon p {
                flex-direction: column;
                opacity: 0.5; }
            .cielia_cont > div .modal_l .modal_link_btn li a p {
              position: absolute;
              left: 0;
              right: 0;
              top: 0;
              bottom: 0;
              text-align: center;
              margin: auto;
              display: flex;
              justify-content: center;
              align-items: center;
              flex-direction: row; }
              .cielia_cont > div .modal_l .modal_link_btn li a p .small {
                font-size: 66%;
                font-size: 61%; }
              .cielia_cont > div .modal_l .modal_link_btn li a p .block {
                display: block; }
            body:not(.mobile) .cielia_cont > div .modal_l .modal_link_btn li a:hover:after {
              opacity: 1; }
          .cielia_cont > div .modal_l .modal_link_btn li.rsv a {
            background: #E2D2BA; }
          .cielia_cont > div .modal_l .modal_link_btn li.site a {
            background: #F5F5F5; }
    .cielia_cont > div .modal_r {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 50%; }
      .cielia_cont > div .modal_r .image {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top; }
        .cielia_cont > div .modal_r .image.image01 {
          background-image: url("images/modal_parse01.jpg"); }
        .cielia_cont > div .modal_r .image.image02 {
          background-image: url("images/modal_parse02.jpg"); }
        .cielia_cont > div .modal_r .image.image03 {
          background-image: url("images/modal_parse03.jpg"); }
        .cielia_cont > div .modal_r .image.image04 {
          background-image: url("images/modal_parse04.jpg"); }
        .cielia_cont > div .modal_r .image.image05 {
          background-image: url("images/modal_parse03.jpg"); }
        .cielia_cont > div .modal_r .image.image06 {
          background-image: url("images/modal_parse06.jpg"); }
        .cielia_cont > div .modal_r .image.image07 {
          background-image: url("images/modal_parse07.jpg"); }
        .cielia_cont > div .modal_r .image.image08 {
          background-image: url("images/modal_parse08.jpg"); }
        .cielia_cont > div .modal_r .image.image09 {
          background-image: url("images/modal_parse09.jpg"); }
        .cielia_cont > div .modal_r .image.image10 {
          background-image: url("images/modal_parse10.jpg"); }
        .cielia_cont > div .modal_r .modal_cap {
        position: absolute;
        left: 10px;
        bottom: 5px;
        font-size: 10px; }
        .cielia_cont > div .modal_r .modal_cap.white {
          color: #FFF; }

.flow_wrap {
  position: relative;
  padding-bottom: 300px;
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
  /* 画像サイズ調整 */ }
  @media screen and (max-width: 480px) {
    .flow_wrap {
      padding: 0 0px 150px; } }
  .flow_wrap .flow_in {
    max-width: 1700px;
    justify-content: space-between;
    position: relative;
    /*
    &.on02,
    &.on03,
    &.on04,
    &.on05,
    &.on06{
    	.image_wrap{
    		.scroll_content_inner{
    			.image_box{
    				&.image_box_01{opacity: 0;pointer-events: none;}
    			}
    		}
    	}
    }
    */ }
    @media screen and (max-width: 1200px) {
      .flow_wrap .flow_in {
        max-width: 1200px; } }
    @media screen and (max-width: 480px) {
      .flow_wrap .flow_in {
        padding: 0 0 0 20px; } }
    .flow_wrap .flow_in.fixed .image_wrap .scroll_content {
      position: fixed;
      left: 0; }
      .flow_wrap .flow_in.fixed .image_wrap .scroll_content .scroll_content_inner {
        position: relative;
        width: 46.316%;
        max-width: 880px; }
        @media screen and (max-width: 1700px) {
          .flow_wrap .flow_in.fixed .image_wrap .scroll_content .scroll_content_inner {
            width: 51.77%; } }
        @media screen and (max-width: 768px) {
          .flow_wrap .flow_in.fixed .image_wrap .scroll_content .scroll_content_inner {
            width: 46%; } }
    .flow_wrap .flow_in.bottom .image_wrap .scroll_content {
      top: auto;
      bottom: 0;
      left: 0;
      position: absolute; }
      .flow_wrap .flow_in.bottom .image_wrap .scroll_content .scroll_content_inner {
        width: 100%; }
    .flow_wrap .flow_in.on01 .image_wrap .scroll_content_inner .image_box.image_box_01 {
      opacity: 1;
      pointer-events: all; }
    .flow_wrap .flow_in.on01.change01 .image_wrap .scroll_content_inner .image_box.image_box_01 {
      transform: translateY(-50px);
      opacity: 0; }
    .flow_wrap .flow_in.on02 .image_wrap .scroll_content_inner .image_box.image_box_02 {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0); }
    .flow_wrap .flow_in.on03 .image_wrap .scroll_content_inner .image_box.image_box_03 {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0); }
    .flow_wrap .flow_in.on03.change02 .image_wrap .scroll_content_inner .image_box.image_box_02 {
      transform: translateY(-50px);
      opacity: 0;
      transition: 0.5s opacity ease-in 0s,0.5s transform ease-int 0s; }
    .flow_wrap .flow_in.on04 .image_wrap .scroll_content_inner .image_box.image_box_04 {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
      transition: 0.5s opacity ease-in 0s,0.5s transform ease-in 0s; }
    .flow_wrap .flow_in.on04.change03 .image_wrap .scroll_content_inner .image_box.image_box_03 {
      transform: translateY(-50px);
      opacity: 0; }
    .flow_wrap .flow_in.on05 .image_wrap .scroll_content_inner .image_box.image_box_05 {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
      transition: 0.5s opacity ease-in 0s,0.5s transform ease-in 0s; }
    .flow_wrap .flow_in.on05.change04 .image_wrap .scroll_content_inner .image_box.image_box_04 {
      transform: translateY(-50px);
      opacity: 0; }
    .flow_wrap .flow_in.on06 .image_wrap .scroll_content_inner .image_box.image_box_06 {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
      transition: 0.5s opacity ease-in 0s,0.5s transform ease-in 0s; }
    .flow_wrap .flow_in.on06.change05 .image_wrap .scroll_content_inner .image_box.image_box_05 {
      transform: translateY(-50px);
      opacity: 0; }
    .flow_wrap .flow_in.num01 .flow .flow_box.flow_box01 .flow_num {
      opacity: 1;
      background: #000;
      color: #FFF; }
    .flow_wrap .flow_in.num02 .flow .flow_box.flow_box02 .flow_num {
      opacity: 1;
      background: #000;
      color: #FFF; }
    .flow_wrap .flow_in.num03 .flow .flow_box.flow_box03 .flow_num {
      opacity: 1;
      background: #000;
      color: #FFF; }
    .flow_wrap .flow_in.num04 .flow .flow_box.flow_box04 .flow_num {
      opacity: 1;
      background: #000;
      color: #FFF; }
    .flow_wrap .flow_in.num05 .flow .flow_box.flow_box05 .flow_num {
      opacity: 1;
      background: #000;
      color: #FFF; }
    .flow_wrap .flow_in.num06 .flow .flow_box.flow_box06 .flow_num {
      opacity: 1;
      background: #000;
      color: #FFF; }
    .flow_wrap .flow_in .image_wrap {
      width: 51.77%;
      position: relative; }
      @media screen and (max-width: 768px) {
        .flow_wrap .flow_in .image_wrap {
          width: 46%; } }
      @media screen and (max-width: 480px) {
        .flow_wrap .flow_in .image_wrap {
          display: none; } }
      .flow_wrap .flow_in .image_wrap .scroll_content {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0; }
        .flow_wrap .flow_in .image_wrap .scroll_content .scroll_content_inner .image_box {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          width: 100%;
          opacity: 0;
          pointer-events: none;
          transform: translateY(50px);
          transition: 0.5s opacity ease-in-out 0s,0.5s transform ease-in-out 0s; }
          .flow_wrap .flow_in .image_wrap .scroll_content .scroll_content_inner .image_box p {
            pointer-events: none; }
            .flow_wrap .flow_in .image_wrap .scroll_content .scroll_content_inner .image_box p img {
              width: 100%;
              pointer-events: none; }
          .flow_wrap .flow_in .image_wrap .scroll_content .scroll_content_inner .image_box.image_box_01 {
            position: relative;
            opacity: 1;
            pointer-events: all;
            transform: translateY(0); }
          .flow_wrap .flow_in .image_wrap .scroll_content .scroll_content_inner .image_box .swiper-container-fade .swiper-slide {
            pointer-events: none; }
    .flow_wrap .flow_in .flow {
      width: 40.83%;
      margin-top: 12%;
      margin-right: 40px; }
      @media screen and (max-width: 768px) {
        .flow_wrap .flow_in .flow {
          width: 45.83%; } }
      @media screen and (max-width: 480px) {
        .flow_wrap .flow_in .flow {
          width: 100%;
          margin-right: 0;
          margin-top: 0; } }
      .flow_wrap .flow_in .flow .flow_box {
        padding-bottom: 400px;
        overflow: hidden;
        position: relative; }
        @media screen and (max-width: 1200px) {
          .flow_wrap .flow_in .flow .flow_box {
            padding-bottom: 300px; } }
        @media screen and (max-width: 768px) {
          .flow_wrap .flow_in .flow .flow_box {
            padding-bottom: 150px; } }
        @media screen and (max-width: 480px) {
          .flow_wrap .flow_in .flow .flow_box {
            padding-bottom: 60px; } }
        .flow_wrap .flow_in .flow .flow_box:last-of-type {
          padding-bottom: 20%; }
          @media screen and (max-width: 1400px) {
            .flow_wrap .flow_in .flow .flow_box:last-of-type {
              padding-bottom: 15%; } }
          @media screen and (max-width: 1200px) {
            .flow_wrap .flow_in .flow .flow_box:last-of-type {
              padding-bottom: 10%; } }
          @media screen and (max-width: 960px) {
            .flow_wrap .flow_in .flow .flow_box:last-of-type {
              padding-bottom: 5%; } }
          @media screen and (max-width: 768px) {
            .flow_wrap .flow_in .flow .flow_box:last-of-type {
              padding-bottom: 0; } }
        .flow_wrap .flow_in .flow .flow_box .flow_num {
          width: 114px;
          height: 114px;
          border: 1px solid #18130A;
          background: #FFF;
          border-radius: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
          opacity: 0.5;
          transition: 0.3s all ease-in-out 0s;
          z-index: 2; }
          @media screen and (max-width: 1200px) {
            .flow_wrap .flow_in .flow .flow_box .flow_num {
              width: 80px;
              height: 80px; } }
          @media screen and (max-width: 480px) {
            .flow_wrap .flow_in .flow .flow_box .flow_num {
              width: 54px;
              height: 54px; } }
          .flow_wrap .flow_in .flow .flow_box .flow_num .num {
            font-size: 30px; }
            @media screen and (max-width: 1200px) {
              .flow_wrap .flow_in .flow .flow_box .flow_num .num {
                font-size: 24px; } }
            @media screen and (max-width: 768px) {
              .flow_wrap .flow_in .flow .flow_box .flow_num .num {
                font-size: 20px; } }
        .flow_wrap .flow_in .flow .flow_box .underline {
          position: absolute;
          left: 57px;
          top: 114px;
          background: #000;
          width: 1px;
          margin: auto; }
          @media screen and (max-width: 1200px) {
            .flow_wrap .flow_in .flow .flow_box .underline {
              left: 40px;
              top: 80px; } }
          @media screen and (max-width: 480px) {
            .flow_wrap .flow_in .flow .flow_box .underline {
              left: 27px;
              top: 54px; } }
          .flow_wrap .flow_in .flow .flow_box .underline.dummy {
            height: 100%;
            opacity: 0.2; }
        .flow_wrap .flow_in .flow .flow_box .timeline {
          position: absolute;
          left: 57px;
          top: 114px;
          bottom: 0; }
          @media screen and (max-width: 1200px) {
            .flow_wrap .flow_in .flow .flow_box .timeline {
              left: 40px;
              top: 80px; } }
          @media screen and (max-width: 480px) {
            .flow_wrap .flow_in .flow .flow_box .timeline {
              left: 27px;
              top: 54px; } }
          .flow_wrap .flow_in .flow .flow_box .timeline .border-line {
            position: absolute;
            left: 0;
            top: 0;
            background: #000;
            width: 1px; }
        .flow_wrap .flow_in .flow .flow_box .flow_text {
          margin-top: 5%;
          width: calc(100% - 144px); }
          @media screen and (max-width: 1200px) {
            .flow_wrap .flow_in .flow .flow_box .flow_text {
              width: calc(100% - 100px); } }
          @media screen and (max-width: 768px) {
            .flow_wrap .flow_in .flow .flow_box .flow_text {
              margin-top: 10%; } }
          @media screen and (max-width: 480px) {
            .flow_wrap .flow_in .flow .flow_box .flow_text {
              margin-top: 4%;
              width: calc(100% - 74px); } }
          .flow_wrap .flow_in .flow .flow_box .flow_text .title {
            font-size: 40px;
            line-height: 1.4;
            margin-bottom: 60px; }
            @media screen and (max-width: 1600px) {
              .flow_wrap .flow_in .flow .flow_box .flow_text .title {
                font-size: 2.3vw; } }
            @media screen and (max-width: 768px) {
              .flow_wrap .flow_in .flow .flow_box .flow_text .title {
                margin-bottom: 40px; } }
            @media screen and (max-width: 480px) {
              .flow_wrap .flow_in .flow .flow_box .flow_text .title {
                font-size: 20px;
                padding-right: 20px; } }
          .flow_wrap .flow_in .flow .flow_box .flow_text .read {
            font-size: 16px; }
            @media screen and (max-width: 768px) {
              .flow_wrap .flow_in .flow .flow_box .flow_text .read {
                font-size: 14px; } }
            @media screen and (max-width: 480px) {
              .flow_wrap .flow_in .flow .flow_box .flow_text .read {
                padding-right: 20px; } }
        .flow_wrap .flow_in .flow .flow_box .sp_image {
          margin-top: 20px;
          display: none; }
          @media screen and (max-width: 480px) {
            .flow_wrap .flow_in .flow .flow_box .sp_image {
              display: block;
              margin-top: 30px; } }
          .flow_wrap .flow_in .flow .flow_box .sp_image p:not(:first-of-type) {
            margin-top: 5px; }
  .flow_wrap .swiper-container {
    overflow: visible; }
  .flow_wrap .swiper-pagination {
    width: auto;
    left: 20px;
    bottom: auto;
    font-size: 30px;
    top: 100%; }
  .flow_wrap .swiper-button-prev,
  .flow_wrap .swiper-button-next {
    transition: 0.3s all ease-in-out 0s; }
  .flow_wrap .swiper-button-prev:after,
  .flow_wrap .swiper-button-next:after {
    bottom: auto;
    content: "";
    height: 0;
    margin: auto;
    position: absolute;
    top: auto;
    width: 0; }
  .flow_wrap .swiper-button-prev:after {
    content: "";
    margin: 0;
    padding: 0;
    border: none;
    border-bottom: solid 1px #000;
    border-left: solid 1px #000;
    position: absolute;
    top: 20px;
    margin-top: -8px;
    left: 4px;
    height: 12px;
    width: 50px;
    transform: skewX(-55deg);
    transition: 0.3s all ease-in-out 0s; }
  .flow_wrap .swiper-button-next:after {
    content: "";
    margin: 0;
    padding: 0;
    border: none;
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
    position: absolute;
    top: 20px;
    margin-top: -8px;
    right: 4px;
    height: 12px;
    width: 50px;
    transform: skewX(55deg);
    transition: 0.3s all ease-in-out 0s; }
  .flow_wrap .swiper-slide img {
    height: auto;
    width: 100%; }
  .flow_wrap .swiper_btn {
    position: absolute;
    right: 20px;
    top: calc(100% + 10px);
    display: flex;
    justify-content: space-between;
    max-width: 175px;
    width: 100%;
    height: 40px; }
    @media screen and (max-width: 768px) {
      .flow_wrap .swiper_btn {
        max-width: 125px; } }
    .flow_wrap .swiper_btn:after {
      content: "";
      position: absolute;
      left: 50%;
      top: 5px;
      bottom: 5px;
      width: 1px;
      background: rgba(24, 19, 10, 0.3); }
  .flow_wrap .swiper-button-prev,
  .flow_wrap .swiper-container-rtl .swiper-button-next,
  .flow_wrap .swiper-button-next,
  .flow_wrap .swiper-container-rtl .swiper-button-prev {
    width: 40px;
    height: 40px; }
  .flow_wrap .swiper-button-prev, .flow_wrap .swiper-container-rtl .swiper-button-next {
    left: 6px; }
  .flow_wrap .swiper-button-prev:hover, .flow_wrap .swiper-container-rtl .swiper-button-next:hover {
    left: -6px; }
  .flow_wrap .swiper-button-next, .flow_wrap .swiper-container-rtl .swiper-button-prev {
    right: 6px; }
  .flow_wrap .swiper-button-next:hover, .flow_wrap .swiper-container-rtl .swiper-button-prev:hover {
    right: -6px; }

.image_box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }
  @media screen and (max-width: 768px) {
    .image_box {
      max-width: 560px;
      width: 100%;
      margin: 0 auto; } }
  .bottom .image_box {
    top: auto;
    bottom: 0; }
  @media screen and (max-width: 768px) {
    .image_box {
      position: static; } }

.image_item {
  transform: translateY(-100%);
  overflow: hidden;
  opacity: 0;
  transition-property: transform,opacity;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out; }
  .image_item > .image_inner {
    transform: translateY(100%);
    opacity: 0;
    transition-property: transform,opacity;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out; }
    @media screen and (max-width: 768px) {
      .p-view .image_item > .image_inner {
        transform: translateY(0);
        opacity: 1; } }

.paramove_wrap {
  transform: translateX(-15%);
  padding: 400px 0 0; }
  @media screen and (max-width: 768px) {
    .paramove_wrap {
      padding: 200px 0 0; } }
  @media screen and (max-width: 480px) {
    .paramove_wrap {
      padding: 150px 0 0; } }

.para_txt {
  line-height: 1;
  position: relative;
  will-change: transform; }
  .para_txt.mix_blend {
    mix-blend-mode: exclusion; }
  .para_txt img {
    max-width: none; }

.flow_txt_wrap {
  position: relative; }

.floor_wrap {
  position: relative; }
  @media screen and (max-width: 480px) {
    .floor_wrap .floor_in {
      flex-wrap: wrap; } }
  .floor_wrap .floor_in .floor_btn_wrap {
    width: 157px;
    position: relative; }
    @media screen and (max-width: 768px) {
      .floor_wrap .floor_in .floor_btn_wrap {
        width: 90px; } }
    @media screen and (max-width: 480px) {
      .floor_wrap .floor_in .floor_btn_wrap {
        width: 100%;
        order: 2; } }
    .floor_wrap .floor_in .floor_btn_wrap .floor_btn {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column; }
      @media screen and (max-width: 768px) {
        .floor_wrap .floor_in .floor_btn_wrap .floor_btn {
          padding: 0 10px; } }
      @media screen and (max-width: 480px) {
        .floor_wrap .floor_in .floor_btn_wrap .floor_btn {
          position: relative;
          flex-direction: row;
          padding: 10px 0;
          flex-wrap: wrap; } }
      .floor_wrap .floor_in .floor_btn_wrap .floor_btn > div {
        position: relative; }
        .floor_wrap .floor_in .floor_btn_wrap .floor_btn > div p {
          max-width: 100px;
          margin: 0 auto;
          position: relative;
          cursor: pointer; }
          .floor_wrap .floor_in .floor_btn_wrap .floor_btn > div p.diamond {
            opacity: 0.3;
            transition: 0.5s opacity ease-in-out 0s; }
          .floor_wrap .floor_in .floor_btn_wrap .floor_btn > div p.floor_txt {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            text-align: center; }
            @media screen and (max-width: 1200px) {
              .floor_wrap .floor_in .floor_btn_wrap .floor_btn > div p.floor_txt {
                font-size: 17px; } }
            .floor_wrap .floor_in .floor_btn_wrap .floor_btn > div p.floor_txt .big {
              display: inline-block;
              line-height: 1;
              font-size: 150%; }
        .floor_wrap .floor_in .floor_btn_wrap .floor_btn > div.active p.diamond, body:not(.mobile) .floor_wrap .floor_in .floor_btn_wrap .floor_btn > div:hover p.diamond {
          opacity: 1; }
      .floor_wrap .floor_in .floor_btn_wrap .floor_btn .sp_prot_txt {
        display: none; }
        @media screen and (max-width: 480px) {
          .floor_wrap .floor_in .floor_btn_wrap .floor_btn .sp_prot_txt {
            width: 100%;
            font-size: 10px;
            color: #E7DFD3;
            display: block;
            border-top: 1px solid rgba(231, 223, 211, 0.2);
            padding-top: 20px;
            margin-top: 10px;
            text-align: center; } }
  .floor_wrap .floor_in .floor_l {
    width: 41.83%;
    background: #E7DFD3;
    padding: 20px 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media screen and (max-width: 480px) {
      .floor_wrap .floor_in .floor_l {
        width: 100%;
        order: 1; } }
    .floor_wrap .floor_in .floor_l .floow_img {
      max-width: 728px;
      margin: 0 auto;
      width: 100%;
      position: relative; }
      @media screen and (max-width: 480px) {
        .floor_wrap .floor_in .floor_l .floow_img {
          margin: 0 auto 20px; } }
      .floor_wrap .floor_in .floor_l .floow_img li {
        position: relative;
        opacity: 0;
        transition: 0.5s opacity ease-in-out 0s; }
        .floor_wrap .floor_in .floor_l .floow_img li.img_2f {
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0;
          opacity: 0;
          pointer-events: none; }
        .floor_wrap .floor_in .floor_l .floow_img li.active {
          opacity: 1;
          pointer-events: all; }
          .floor_wrap .floor_in .floor_l .floow_img li.active.img_2f {
            opacity: 1;
            pointer-events: all; }
        .floor_wrap .floor_in .floor_l .floow_img li .floor_img_wrap p {
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0;
          opacity: 0;
          transition: 0.5s opacity ease-in-out 0s; }
          .floor_wrap .floor_in .floor_l .floow_img li .floor_img_wrap p.floor1_01, .floor_wrap .floor_in .floor_l .floow_img li .floor_img_wrap p.floor2_01 {
            position: relative; }
          .floor_wrap .floor_in .floor_l .floow_img li .floor_img_wrap p.active {
            opacity: 1; }
    .floor_wrap .floor_in .floor_l .prot {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0; }
      .floor_wrap .floor_in .floor_l .prot > div {
        position: absolute;
        width: 6.869%;
        cursor: pointer;
        transition: 0.3s transform ease-in-out 0s;
        transform-origin: center; }
        @media screen and (max-width: 768px) {
          .floor_wrap .floor_in .floor_l .prot > div {
            transform: scale(1.25); } }
        body:not(.mobile) .floor_wrap .floor_in .floor_l .prot > div:hover {
          transform: scale(1.25); }
        .floor_wrap .floor_in .floor_l .prot > div:before {
          content: "";
          display: block;
          padding-bottom: 100%;
          background: #000;
          border-radius: 100%; }
        .floor_wrap .floor_in .floor_l .prot > div p {
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 22px;
          color: #E7DFD3;
          text-align: center; }
          @media screen and (max-width: 1200px) {
            .floor_wrap .floor_in .floor_l .prot > div p {
              font-size: 24px; } }
          @media screen and (max-width: 768px) {
            .floor_wrap .floor_in .floor_l .prot > div p {
              font-size: 15px; } }
        .floor_wrap .floor_in .floor_l .prot > div.floor1_01 {
          right: 18%;
          top: 40%; }
        .floor_wrap .floor_in .floor_l .prot > div.floor1_02 {
          left: 40%;
          bottom: 12%; }
        .floor_wrap .floor_in .floor_l .prot > div.floor1_03 {
          right: 54%;
          top: 58.6%; }
        .floor_wrap .floor_in .floor_l .prot > div.floor1_04 {
          left: 11.5%;
          bottom: 10%; }
        .floor_wrap .floor_in .floor_l .prot > div.floor2_01 {
          right: 20%;
          bottom: 24%; }
        .floor_wrap .floor_in .floor_l .prot > div.floor2_02 {
          left: 43%;
          bottom: 52.5%; }
        .floor_wrap .floor_in .floor_l .prot > div.floor2_03 {
          left: 43%;
          top: 40%; }
  .floor_wrap .floor_in .floor_r {
    position: relative;
    background: #F3EFE9;
    width: 50%; }
    @media screen and (max-width: 480px) {
      .floor_wrap .floor_in .floor_r {
        width: 100%;
        opacity: 0;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 100vh;
        display: flex;
        justify-content: center;
        pointer-events: none;
        z-index: 10000;
        transition: 0.5s opacity ease-in-out 0s; } }
    @media screen and (max-width: 480px) {
      .floor_wrap .floor_in .floor_r.active {
        opacity: 1;
        pointer-events: all; } }
    .floor_wrap .floor_in .floor_r .floor_close {
      display: none; }
      @media screen and (max-width: 480px) {
        .floor_wrap .floor_in .floor_r .floor_close {
          position: absolute;
          right: 20px;
          bottom: 20px;
          background: #000;
          width: 40px;
          height: 40px;
          border: 1px solid #FFF;
          border-radius: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          z-index: 2; } }
      @media screen and (max-width: 480px) {
        .floor_wrap .floor_in .floor_r .floor_close span {
          font-size: 14px;
          color: #FFF; } }
    .floor_wrap .floor_in .floor_r .floor_1f {
      position: relative; }
    .floor_wrap .floor_in .floor_r .floor_2f {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      opacity: 0;
      pointer-events: none;
      transition: 0.5s opacity ease-in-out 0s; }
    .floor_wrap .floor_in .floor_r .floor_number {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      opacity: 0;
      pointer-events: none;
      transition: 0.5s opacity ease-in-out 0s; }
      .floor_wrap .floor_in .floor_r .floor_number.active {
        position: relative;
        opacity: 1; }
      .floor_wrap .floor_in .floor_r .floor_number .photo_txt {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        position: relative;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        opacity: 0;
        pointer-events: none;
        transition: 0.5s opacity ease-in-out 0s; }
        .floor_wrap .floor_in .floor_r .floor_number .photo_txt.active {
          opacity: 1;
          position: relative; }
      .floor_wrap .floor_in .floor_r .floor_number .text_wrap {
        padding: 60px 0px;
        max-width: 700px;
        margin: 0 auto;
        width: calc(100% - 40px);
        min-height: 330px; }
        @media screen and (max-width: 768px) {
          .floor_wrap .floor_in .floor_r .floor_number .text_wrap {
            padding: 20px 0px;
            min-height: 270px; } }
        .floor_wrap .floor_in .floor_r .floor_number .text_wrap .number {
          width: 80px;
          height: 80px;
          background: #000;
          border-radius: 100%;
          position: relative; }
          @media screen and (max-width: 1200px) {
            .floor_wrap .floor_in .floor_r .floor_number .text_wrap .number {
              width: 60px;
              height: 60px; } }
          @media screen and (max-width: 768px) {
            .floor_wrap .floor_in .floor_r .floor_number .text_wrap .number {
              width: 30px;
              height: 30px; } }
          .floor_wrap .floor_in .floor_r .floor_number .text_wrap .number span {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            color: #E7DFD3; }
            @media screen and (max-width: 1200px) {
              .floor_wrap .floor_in .floor_r .floor_number .text_wrap .number span {
                font-size: 19px; } }
            @media screen and (max-width: 768px) {
              .floor_wrap .floor_in .floor_r .floor_number .text_wrap .number span {
                font-size: 16px; } }
        .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text {
          width: calc(100% - 100px);
          margin-top: 2%; }
          @media screen and (max-width: 1200px) {
            .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text {
              width: calc(100% - 80px); } }
          @media screen and (max-width: 768px) {
            .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text {
              margin-top: 0%;
              width: calc(100% - 50px); } }
          .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .floor_ttl {
            font-size: 34px;
            margin-bottom: 30px;
            line-height: 1.5; }
            @media screen and (max-width: 1500px) {
              .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .floor_ttl {
                font-size: 28px; } }
            @media screen and (max-width: 1200px) {
              .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .floor_ttl {
                font-size: 2vw; } }
            @media screen and (max-width: 768px) {
              .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .floor_ttl {
                font-size: 2.8vw;
                margin-bottom: 20px; } }
            @media screen and (max-width: 480px) {
              .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .floor_ttl {
                font-size: 5.2vw; } }
            .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .floor_ttl.flex {
              justify-content: flex-start;
              align-items: center; }
              @media screen and (max-width: 768px) {
                .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .floor_ttl.flex {
                  flex-wrap: wrap; } }
              .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .floor_ttl.flex .small {
                margin-left: 15px;
                font-size: 16px; }
                @media screen and (max-width: 1500px) {
                  .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .floor_ttl.flex .small {
                    font-size: 12px; } }
                @media screen and (max-width: 1200px) {
                  .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .floor_ttl.flex .small {
                    font-size: 10px; } }
                @media screen and (max-width: 768px) {
                  .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .floor_ttl.flex .small {
                    width: 100%;
                    font-size: 12px;
                    margin-left: 0; } }
          .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .read {
            font-size: 16px; }
            @media screen and (max-width: 1200px) {
              .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .read {
                font-size: 14px; } }
            @media screen and (max-width: 768px) {
              .floor_wrap .floor_in .floor_r .floor_number .text_wrap .text .read {
                font-size: 13px; } }

/*	life design	*/
.museum_wrap {
  position: relative;
  padding: 0 0 490px;
  background: #18130A;
  z-index: 2; }
  @media screen and (max-width: 768px) {
    .museum_wrap {
      padding: 0 0 250px; } }
  @media screen and (max-width: 480px) {
    .museum_wrap {
      padding: 0 0 150px; } }
  .museum_wrap .tile_img {
    max-width: 2300px;
    width: 120.961%;
    margin: 0 auto 100px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: -10%; }
    @media screen and (max-width: 768px) {
      .museum_wrap .tile_img {
        max-width: 1600px;
        width: 130%;
        margin: 0 auto 100px; } }
    .museum_wrap .tile_img.rev {
      margin-left: 0;
      margin-right: -10%; }
    .museum_wrap .tile_img li {
      width: 16.53%;
      max-width: 380px; }
      @media screen and (max-width: 768px) {
        .museum_wrap .tile_img li {
          /*width:17%;*/ } }
      .museum_wrap .tile_img li p {
        display: block;
        overflow: hidden;
        cursor: pointer;
        position: relative;
        transition: 0.3s all ease-in-out 0s;
        clip-path: circle(100%); }
        .museum_wrap .tile_img li p:before {
          content: "";
          padding-bottom: 100%;
          display: block; }
        .museum_wrap .tile_img li p:after {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0;
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          transform-origin: center;
          transition: 0.3s all ease-in-out 0s;
          will-change: transform,opacity; }
        .museum_wrap .tile_img li p.tile01:after {
          background-image: url("../images/tile_img01.png"); }
        .museum_wrap .tile_img li p.tile02:after {
          background-image: url("../images/tile_img02.png"); }
        .museum_wrap .tile_img li p.tile03:after {
          background-image: url("../images/tile_img03.png"); }
        .museum_wrap .tile_img li p.tile04:after {
          background-image: url("../images/tile_img04.png"); }
        .museum_wrap .tile_img li p.tile05:after {
          background-image: url("../images/tile_img05.png"); }
        .museum_wrap .tile_img li p.tile06:after {
          background-image: url("../images/tile_img06.png"); }
        .museum_wrap .tile_img li p.tile07:after {
          background-image: url("../images/tile_img07.png"); }
        .museum_wrap .tile_img li p.tile08:after {
          background-image: url("../images/tile_img08.png"); }
        .museum_wrap .tile_img li p.tile09:after {
          background-image: url("../images/tile_img09.png"); }
        .museum_wrap .tile_img li p.tile10:after {
          background-image: url("../images/tile_img10.png"); }
        .museum_wrap .tile_img li p.tile11:after {
          background-image: url("../images/tile_img11.png"); }
        .museum_wrap .tile_img li p.tile12:after {
          background-image: url("../images/tile_img12.png"); }
        .museum_wrap .tile_img li p.tile13:after {
          background-image: url("../images/tile_img13.png"); }
        .museum_wrap .tile_img li p.tile14:after {
          background-image: url("../images/tile_img14.png"); }
        .museum_wrap .tile_img li p.tile15:after {
          background-image: url("../images/tile_img15.png"); }
        @media screen and (max-width: 768px) {
          .museum_wrap .tile_img li p:hover {
            border-radius: none; } }
        body:not(.mobile) .museum_wrap .tile_img li p:not(.maru):hover {
          clip-path: circle(50% at 50%); }
          @media screen and (max-width: 768px) {
            body:not(.mobile) .museum_wrap .tile_img li p:not(.maru):hover {
              clip-path: none; } }
        body:not(.mobile) .museum_wrap .tile_img li p:hover:after {
          transform: scale(1.3);
          opacity: 0.5; }
        body:not(.mobile) .museum_wrap .tile_img li p:hover.maru {
          border-radius: 0; }
        .museum_wrap .tile_img li p.maru {
          clip-path: circle(50% at 50%); }
        body:not(.mobile) .museum_wrap .tile_img li p.maru:hover {
          clip-path: circle(70.7% at 50% 50%); }
  .museum_wrap .designer_comment {
    max-width: 1720px;
    margin: 160px auto 0;
    width: calc(100% - 80px);
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media screen and (max-width: 768px) {
      .museum_wrap .designer_comment {
        flex-wrap: wrap; } }
    .museum_wrap .designer_comment .d_left {
      width: 37.68%; }
      @media screen and (max-width: 768px) {
        .museum_wrap .designer_comment .d_left {
          width: 100%;
          margin-bottom: 50px; } }
    .museum_wrap .designer_comment .d_ctr {
      width: 15.291%;
      color: #F3EFE9; }
      @media screen and (max-width: 768px) {
        .museum_wrap .designer_comment .d_ctr {
          width: 30%; } }
      @media screen and (max-width: 480px) {
        .museum_wrap .designer_comment .d_ctr {
          width: 100%;
          margin-bottom: 50px;
          display: flex;
          align-items: center;
          justify-content: space-between; } }
      .museum_wrap .designer_comment .d_ctr .d_photo {
        width: 100%; }
        @media screen and (max-width: 480px) {
          .museum_wrap .designer_comment .d_ctr .d_photo {
            width: 45%; } }
      .museum_wrap .designer_comment .d_ctr .sp_name {
        display: none; }
        @media screen and (max-width: 480px) {
          .museum_wrap .designer_comment .d_ctr .sp_name {
            display: block;
            width: 45%; } }
    .museum_wrap .designer_comment .name01 {
      font-size: 16px;
      line-height: 1.4; }
      @media screen and (max-width: 1500px) {
        .museum_wrap .designer_comment .name01 {
          font-size: 1.1vw; } }
      @media screen and (max-width: 1200px) {
        .museum_wrap .designer_comment .name01 {
          font-size: 1vw; } }
      @media screen and (max-width: 768px) {
        .museum_wrap .designer_comment .name01 {
          font-size: 1.5vw; } }
      @media screen and (max-width: 480px) {
        .museum_wrap .designer_comment .name01 {
          font-size: 12px;
          margin-bottom: 10px; } }
    .museum_wrap .designer_comment .name02 {
      font-size: 40px; }
      @media screen and (max-width: 1500px) {
        .museum_wrap .designer_comment .name02 {
          font-size: 2.8vw; } }
      @media screen and (max-width: 1200px) {
        .museum_wrap .designer_comment .name02 {
          font-size: 2.2vw; } }
      @media screen and (max-width: 768px) {
        .museum_wrap .designer_comment .name02 {
          font-size: 5.2vw; } }
      @media screen and (max-width: 480px) {
        .museum_wrap .designer_comment .name02 {
          font-size: 20px;
          margin-bottom: 10px; } }
    .museum_wrap .designer_comment .name03 {
      font-size: 14px; }
      @media screen and (max-width: 1500px) {
        .museum_wrap .designer_comment .name03 {
          font-size: 1vw; } }
      @media screen and (max-width: 768px) {
        .museum_wrap .designer_comment .name03 {
          font-size: 1.8vw; } }
      @media screen and (max-width: 480px) {
        .museum_wrap .designer_comment .name03 {
          font-size: 10px; } }
    .museum_wrap .designer_comment .d_right {
      color: #F3EFE9;
      width: 37.5%; }
      @media screen and (max-width: 768px) {
        .museum_wrap .designer_comment .d_right {
          width: 65%; } }
      @media screen and (max-width: 480px) {
        .museum_wrap .designer_comment .d_right {
          width: 100%; } }
      .museum_wrap .designer_comment .d_right .d_r_in {
        align-items: center;
        margin-bottom: 30px; }
        @media screen and (max-width: 1500px) {
          .museum_wrap .designer_comment .d_right .d_r_in {
            margin-bottom: 20px; } }
        @media screen and (max-width: 480px) {
          .museum_wrap .designer_comment .d_right .d_r_in {
            display: none; } }
      .museum_wrap .designer_comment .d_right .d_read {
        font-size: 16px;
        opacity: 0.8; }
        @media screen and (max-width: 1500px) {
          .museum_wrap .designer_comment .d_right .d_read {
            font-size: 14px; } }
        @media screen and (max-width: 480px) {
          .museum_wrap .designer_comment .d_right .d_read {
            line-height: 2; } }
  .museum_wrap .sp_slider_wrap {
    display: none; }
    @media screen and (max-width: 480px) {
      .museum_wrap .sp_slider_wrap {
        display: block; } }
  .museum_wrap .sp_slider {
    /* 前への矢印カスタマイズ */
    /* 次への矢印カスタマイズ */
    /* 画像サイズ調整 */ }
    @media screen and (max-width: 480px) {
      .museum_wrap .sp_slider {
        overflow: visible; } }
    .museum_wrap .sp_slider .swiper-slider p img {
      width: 100%; }
    .museum_wrap .sp_slider .swiper-container {
      overflow: visible; }
    .museum_wrap .sp_slider .swiper-pagination {
      width: auto;
      left: 20px;
      font-size: 30px;
      line-height: 1;
      color: #E7DFD3;
      bottom: auto;
      top: calc(100% + 10px); }
    .museum_wrap .sp_slider .swiper-button-prev:after,
    .museum_wrap .sp_slider .swiper-button-next:after {
      bottom: auto;
      content: "";
      height: 0;
      margin: auto;
      position: absolute;
      top: auto;
      width: 0; }
    .museum_wrap .sp_slider .swiper-button-prev:after {
      content: "";
      margin: 0;
      padding: 0;
      border: none;
      border-bottom: solid 1px #E7DFD3;
      border-left: solid 1px #E7DFD3;
      position: absolute;
      top: 20px;
      margin-top: -4px;
      left: 4px;
      height: 6px;
      width: 30px;
      transform: skewX(-45deg);
      transition: 0.3s all ease-in-out 0s; }
    .museum_wrap .sp_slider .swiper-button-next:after {
      content: "";
      margin: 0;
      padding: 0;
      border: none;
      border-bottom: solid 1px #E7DFD3;
      border-right: solid 1px #E7DFD3;
      position: absolute;
      top: 20px;
      margin-top: -4px;
      right: 4px;
      height: 6px;
      width: 30px;
      transform: skewX(45deg);
      transition: 0.3s all ease-in-out 0s; }
    .museum_wrap .sp_slider .swiper-slide img {
      height: auto;
      width: 100%; }
    .museum_wrap .sp_slider .swiper_btn {
      position: absolute;
      right: 20px;
      top: calc(100% + 15px);
      display: flex;
      justify-content: space-between;
      max-width: 120px;
      width: 100%;
      height: 40px; }
      .museum_wrap .sp_slider .swiper_btn:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background: rgba(231, 223, 211, 0.3); }
    .museum_wrap .sp_slider .swiper-button-prev,
    .museum_wrap .sp_slider .swiper-container-rtl .swiper-button-next,
    .museum_wrap .sp_slider .swiper-button-next,
    .museum_wrap .sp_slider .swiper-container-rtl .swiper-button-prev {
      width: 40px;
      height: 40px; }
    .museum_wrap .sp_slider .swiper-button-prev, .museum_wrap .sp_slider .swiper-container-rtl .swiper-button-next {
      left: 6px; }
    .museum_wrap .sp_slider .swiper-button-next, .museum_wrap .sp_slider .swiper-container-rtl .swiper-button-prev {
      right: 6px; }

.modal_slider_wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: 1s opacity ease-in-out 0s;
  pointer-events: none;
  z-index: 100000;
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
  /* 画像サイズ調整 */ }
  @media screen and (max-width: 480px) {
    .modal_slider_wrap {
      display: none; } }
  body.modal_slider_open .modal_slider_wrap {
    opacity: 1;
    pointer-events: all;
    transition: 0s opacity ease-in-out 0.9s; }
  .modal_slider_wrap .modal_slide {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
  .modal_slider_wrap .modal_link_close {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    cursor: pointer;
    width: 133px;
    height: 133px;
    background: #E7DFD3; }
  .modal_slider_wrap .bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh; }
    .modal_slider_wrap .bg:before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
    .modal_slider_wrap .bg.bg01:before {
      background-image: url("images/modal/modal_photo01.jpg"); }
    .modal_slider_wrap .bg.bg02:before {
      background-image: url("images/modal/modal_photo02.jpg"); }
    .modal_slider_wrap .bg.bg03:before {
      background-image: url("images/modal/modal_photo03.jpg"); }
    .modal_slider_wrap .bg.bg04:before {
      background-image: url("images/modal/modal_photo04.jpg"); }
    .modal_slider_wrap .bg.bg05:before {
      background-image: url("images/modal/modal_photo05.jpg"); }
    .modal_slider_wrap .bg.bg06:before {
      background-image: url("images/modal/modal_photo06.jpg"); }
    .modal_slider_wrap .bg.bg07:before {
      background-image: url("images/modal/modal_photo07.jpg"); }
    .modal_slider_wrap .bg.bg08:before {
      background-image: url("images/modal/modal_photo08.jpg"); }
    .modal_slider_wrap .bg.bg09:before {
      background-image: url("images/modal/modal_photo09.jpg"); }
    .modal_slider_wrap .bg.bg10:before {
      background-image: url("images/modal/modal_photo10.jpg"); }
    .modal_slider_wrap .bg.bg11:before {
      background-image: url("images/modal/modal_photo11.jpg"); }
    .modal_slider_wrap .bg.bg12:before {
      background-image: url("images/modal/modal_photo12.jpg"); }
    .modal_slider_wrap .bg.bg13:before {
      background-image: url("images/modal/modal_photo13.jpg"); }
    .modal_slider_wrap .bg.bg14:before {
      background-image: url("images/modal/modal_photo14.jpg"); }
    .modal_slider_wrap .bg.bg15:before {
      background-image: url("images/modal/modal_photo15.jpg"); }
  .modal_slider_wrap .swiper-pagination {
    width: auto;
    left: 20px;
    font-size: 30px;
    line-height: 1;
    color: #E7DFD3;
    bottom: 30px;
    z-index: 2; }
  .modal_slider_wrap .swiper-button-prev:after,
  .modal_slider_wrap .swiper-button-next:after {
    bottom: auto;
    content: "";
    height: 0;
    margin: auto;
    position: absolute;
    top: auto;
    width: 0; }
  .modal_slider_wrap .swiper-button-prev:after {
    content: "";
    margin: 0;
    padding: 0;
    border: none;
    border-bottom: solid 1px #E7DFD3;
    border-left: solid 1px #E7DFD3;
    position: absolute;
    top: 20px;
    margin-top: -4px;
    left: 4px;
    height: 14px;
    width: 70px;
    transform: skewX(-45deg);
    transition: 0.3s all ease-in-out 0s; }
  .modal_slider_wrap .swiper-button-next:after {
    content: "";
    margin: 0;
    padding: 0;
    border: none;
    border-bottom: solid 1px #E7DFD3;
    border-right: solid 1px #E7DFD3;
    position: absolute;
    top: 20px;
    margin-top: -4px;
    right: 4px;
    height: 14px;
    width: 70px;
    transform: skewX(45deg);
    transition: 0.3s all ease-in-out 0s; }
  .modal_slider_wrap .swiper-slide img {
    height: auto;
    width: 100%; }
  .modal_slider_wrap .swiper_btn {
    position: absolute;
    left: 0;
    right: 0px;
    bottom: 30px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    max-width: 200px;
    width: 100%;
    height: 40px; }
    .modal_slider_wrap .swiper_btn:after {
      content: "";
      position: absolute;
      left: 50%;
      top: 10px;
      bottom: 0;
      width: 1px;
      background: rgba(231, 223, 211, 0.3);
      z-index: 2; }
  .modal_slider_wrap .swiper-button-prev,
  .modal_slider_wrap .swiper-container-rtl .swiper-button-next,
  .modal_slider_wrap .swiper-button-next,
  .modal_slider_wrap .swiper-container-rtl .swiper-button-prev {
    width: 70px;
    height: 40px;
    transition: 0.3s all ease-in-out 0s; }
  .modal_slider_wrap .swiper-button-prev, .modal_slider_wrap .swiper-container-rtl .swiper-button-next {
    left: 6px; }
  .modal_slider_wrap .swiper-button-prev:hover, .modal_slider_wrap .swiper-container-rtl .swiper-button-next:hover {
    left: -6px; }
  .modal_slider_wrap .swiper-button-next, .modal_slider_wrap .swiper-container-rtl .swiper-button-prev {
    right: 6px; }
  .modal_slider_wrap .swiper-button-next:hover, .modal_slider_wrap .swiper-container-rtl .swiper-button-prev:hover {
    right: -6px; }

.news_wrap {
  position: relative;
  z-index: 2;
  background: #E7DFD3;
  padding: 400px 40px 370px; }
  @media screen and (max-width: 768px) {
    .news_wrap {
      padding: 200px 40px 170px; } }
  .news_wrap .news_in {
    max-width: 1400px;
    margin: 0 auto; }
    @media screen and (max-width: 480px) {
      .news_wrap .news_in {
        flex-wrap: wrap; } }
    .news_wrap .news_in .news_ttl {
      font-size: 30px;
      line-height: 0.7;
      color: #000; }
      @media screen and (max-width: 768px) {
        .news_wrap .news_in .news_ttl {
          font-size: 20px; } }
      @media screen and (max-width: 480px) {
        .news_wrap .news_in .news_ttl {
          font-size: 30px;
          width: 100%;
          margin-bottom: 60px; } }
    .news_wrap .news_in .news_box {
      width: 85%;
      border-top: 1px solid rgba(0, 0, 0, 0.2); }
      @media screen and (max-width: 480px) {
        .news_wrap .news_in .news_box {
          width: 100%; } }
      .news_wrap .news_in .news_box .box_in {
        padding: 30px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
        @media screen and (max-width: 480px) {
          .news_wrap .news_in .news_box .box_in {
            width: 100%;
            flex-wrap: wrap;
            padding: 30px 0; } }
        .news_wrap .news_in .news_box .box_in .day {
          width: 120px;
          font-size: 16px;
          font-weight: bold; }
          @media screen and (max-width: 768px) {
            .news_wrap .news_in .news_box .box_in .day {
              font-size: 14ox;
              width: 100px; } }
          @media screen and (max-width: 480px) {
            .news_wrap .news_in .news_box .box_in .day {
              width: 100px;
              margin-bottom: 20px; } }
        .news_wrap .news_in .news_box .box_in .article {
          width: calc(100% - 200px); }
          @media screen and (max-width: 768px) {
            .news_wrap .news_in .news_box .box_in .article {
              width: calc(100% - 140px); } }
          @media screen and (max-width: 480px) {
            .news_wrap .news_in .news_box .box_in .article {
              width: 100%; } }
        body:not(.mobile) .news_wrap .news_in .news_box .box_in .arti_txt a:hover {
          text-decoration: underline; }
      .news_wrap .news_in .news_box .banner_wrap {
        margin-top: 110px; }
        @media screen and (max-width: 768px) {
          .news_wrap .news_in .news_box .banner_wrap {
            margin-top: 80px; } }
        @media screen and (max-width: 480px) {
          .news_wrap .news_in .news_box .banner_wrap {
            margin-top: 60px; } }
        .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in {
          cursor: pointer;
          display: flex;
          justify-content: space-between;
          align-items: center;
          background: #F3EFE9;
          padding: 60px 69px;
          border: 1px solid rgba(24, 19, 10, 0.3);
          width: 100%;
          position: relative; }
          @media screen and (max-width: 1200px) {
            .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in {
              padding: 40px 49px; } }
          @media screen and (max-width: 768px) {
            .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in {
              padding: 30px 29px; } }
          @media screen and (max-width: 480px) {
            .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in {
              flex-wrap: wrap; } }
          .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in .logo_sdgs {
            width: 42.69%; }
            @media screen and (max-width: 480px) {
              .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in .logo_sdgs {
                width: 100%;
                margin-right: 0;
                margin-bottom: 20px; } }
          .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in .arti_txt {
            width: 42.88%;
            font-size: 16px; }
            @media screen and (max-width: 768px) {
              .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in .arti_txt {
                font-size: 14px; } }
            @media screen and (max-width: 480px) {
              .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in .arti_txt {
                width: 60%;
                font-size: 10px; } }
          .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in .arrow {
            position: relative;
            width: 24px;
            height: 24px;
            opacity: 0.3;
            transition: 0.5s opacity linear 0s,0.5s transform linear 0s;
            will-change: opacity,transform; }
            @media screen and (max-width: 480px) {
              .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in .arrow {
                margin-right: 20px;
                transform: scale(1.4); } }
            .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in .arrow:before {
              content: "";
              position: absolute;
              right: 0%;
              top: 58%;
              width: 24px;
              height: 1px;
              background: #000; }
            .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in .arrow:after {
              content: "";
              position: absolute;
              right: 5.7%;
              top: 50%;
              width: 17px;
              height: 17px;
              margin-top: -0.4em;
              border-top: 1px solid #000;
              border-right: 1px solid #000;
              -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
          body:not(.mobile) .news_wrap .news_in .news_box .banner_wrap .banner_wrap_in:hover .arrow {
            opacity: 1;
            transform: translateX(10px); }

.museum_modal {
  display: none; }

.iziModal.hasScroll .iziModal-wrap {
  overflow-y: hidden !important;
  overflow-x: hidden !important; }

/*	SDGSモーダル	*/
.sdgs_wrap {
  background: #F3EFE9;
  padding: 220px 0 256px;
  position: relative;
  width: calc(100% - 80px);
  margin: 0 auto; }
  @media screen and (max-width: 1024px) {
    .sdgs_wrap {
      padding: 120px 0 160px; } }
  @media screen and (max-width: 768px) {
    .sdgs_wrap {
      padding: 100px 0 120px; } }
  @media screen and (max-width: 480px) {
    .sdgs_wrap {
      padding: 80px 0 120px;
      width: calc(100% - 40px); } }
  .sdgs_wrap .sdgs_in .sdgs_ttl {
    margin-bottom: 190px;
    text-align: center; }
    @media screen and (max-width: 1024px) {
      .sdgs_wrap .sdgs_in .sdgs_ttl {
        margin-bottom: 100px; } }
    @media screen and (max-width: 768px) {
      .sdgs_wrap .sdgs_in .sdgs_ttl {
        margin-bottom: 80px; } }
    @media screen and (max-width: 480px) {
      .sdgs_wrap .sdgs_in .sdgs_ttl {
        margin: 0 -20px 80px; } }
    @media screen and (max-width: 480px) {
      .sdgs_wrap .sdgs_in .sdgs_ttl img {
        width: 100%; } }
  .sdgs_wrap .sdgs_in .sdgs_box {
    max-width: 1150px;
    margin: 0 auto 130px; }
    @media screen and (max-width: 1024px) {
      .sdgs_wrap .sdgs_in .sdgs_box {
        margin-bottom: 80px; } }
    @media screen and (max-width: 480px) {
      .sdgs_wrap .sdgs_in .sdgs_box {
        margin-bottom: 70px; } }
    .sdgs_wrap .sdgs_in .sdgs_box .modal_read {
      font-size: 18px;
      line-height: 2; }
      @media screen and (max-width: 480px) {
        .sdgs_wrap .sdgs_in .sdgs_box .modal_read {
          font-size: 16px; } }
    .sdgs_wrap .sdgs_in .sdgs_box .sdgs_flex {
      align-items: center;
      margin-bottom: 60px; }
      @media screen and (max-width: 480px) {
        .sdgs_wrap .sdgs_in .sdgs_box .sdgs_flex {
          flex-wrap: wrap;
          justify-content: center;
          margin-bottom: 30px; } }
      .sdgs_wrap .sdgs_in .sdgs_box .sdgs_flex .logo_black {
        width: 47.31%; }
        @media screen and (max-width: 480px) {
          .sdgs_wrap .sdgs_in .sdgs_box .sdgs_flex .logo_black {
            width: 100%;
            max-width: 260px;
            margin: 0 auto 20px;
            text-align: center; } }
      .sdgs_wrap .sdgs_in .sdgs_box .sdgs_flex .sdgs_txt {
        font-size: 60px; }
        @media screen and (max-width: 1200px) {
          .sdgs_wrap .sdgs_in .sdgs_box .sdgs_flex .sdgs_txt {
            font-size: 5.2vw; } }
        @media screen and (max-width: 480px) {
          .sdgs_wrap .sdgs_in .sdgs_box .sdgs_flex .sdgs_txt {
            font-size: 30px;
            text-align: center; } }
  .sdgs_wrap .sdgs_in .sdgs_logo {
    max-width: 870px;
    margin: 0 auto 120px; }
    @media screen and (max-width: 1024px) {
      .sdgs_wrap .sdgs_in .sdgs_logo {
        margin-bottom: 100px; } }
    @media screen and (max-width: 480px) {
      .sdgs_wrap .sdgs_in .sdgs_logo {
        flex-wrap: wrap; } }
    .sdgs_wrap .sdgs_in .sdgs_logo .logo_l {
      width: 44.72%; }
      @media screen and (max-width: 480px) {
        .sdgs_wrap .sdgs_in .sdgs_logo .logo_l {
          width: 100%;
          margin-bottom: 30px; } }
    .sdgs_wrap .sdgs_in .sdgs_logo .logo_r {
      width: 48.51%; }
      @media screen and (max-width: 480px) {
        .sdgs_wrap .sdgs_in .sdgs_logo .logo_r {
          width: 100%; } }
  .sdgs_wrap .sdgs_in .sdfs_img {
    max-width: 1480px;
    margin: 0 auto; }
    @media screen and (max-width: 480px) {
      .sdgs_wrap .sdgs_in .sdfs_img {
        flex-wrap: wrap;
        max-width: 245px;
        margin: 0 auto; } }
    .sdgs_wrap .sdgs_in .sdfs_img li {
      width: 16.56%; }
      @media screen and (max-width: 480px) {
        .sdgs_wrap .sdgs_in .sdfs_img li {
          width: 100%;
          margin-bottom: 70px; } }
      @media screen and (max-width: 480px) {
        .sdgs_wrap .sdgs_in .sdfs_img li:last-child {
          margin-bottom: 0; } }
      .sdgs_wrap .sdgs_in .sdfs_img li .text {
        line-height: 1.6;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 25px; }
        @media screen and (max-width: 1400px) {
          .sdgs_wrap .sdgs_in .sdfs_img li .text {
            font-size: 16px; } }
        @media screen and (max-width: 768px) {
          .sdgs_wrap .sdgs_in .sdfs_img li .text {
            font-size: 14px; } }
        @media screen and (max-width: 480px) {
          .sdgs_wrap .sdgs_in .sdfs_img li .text {
            font-size: 20px; } }
      @media screen and (max-width: 768px) {
        .sdgs_wrap .sdgs_in .sdfs_img li .mark_flex {
          flex-wrap: wrap; } }
      @media screen and (max-width: 480px) {
        .sdgs_wrap .sdgs_in .sdfs_img li .mark_flex {
          flex-wrap: nowrap; } }
      .sdgs_wrap .sdgs_in .sdfs_img li .mark_flex .mark {
        width: 22.86%; }
        @media screen and (max-width: 768px) {
          .sdgs_wrap .sdgs_in .sdfs_img li .mark_flex .mark {
            font-size: 14px; } }
      .sdgs_wrap .sdgs_in .sdfs_img li .mark_flex .caption {
        font-size: 10px;
        width: 75%; }
        @media screen and (max-width: 768px) {
          .sdgs_wrap .sdgs_in .sdfs_img li .mark_flex .caption {
            width: 100%;
            margin-top: 10px; } }
        @media screen and (max-width: 480px) {
          .sdgs_wrap .sdgs_in .sdfs_img li .mark_flex .caption {
            width: 75%;
            margin-top: 0; } }
      .sdgs_wrap .sdgs_in .sdfs_img li .mark02 {
        width: 74.29%; }

.sdgs_modal_close {
  position: fixed;
  right: 0px;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
  width: 133px;
  height: 133px;
  background: #18130A; }
  @media screen and (max-width: 480px) {
    .sdgs_modal_close {
      right: 0;
      width: 90px;
      height: 90px; } }

.foot_area {
  position: relative;
  padding: 320px 0; }
  @media screen and (max-width: 768px) {
    .foot_area {
      padding: 200px 0; } }
  @media screen and (max-width: 480px) {
    .foot_area {
      padding: 70px 0; } }
  .foot_area .foot_bg {
    /*	
    	z-index opacity JSで操作して、表示・非表示切り替え
    	z-index:-3;
    */
    opacity: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/foot_bg.jpg);
    pointer-events: none;
    /*
    &:after{
    	content:"";
    	position: absolute;
    	left:0;
    	right:0;
    	top:0;
    	bottom:0;
    	background:rgba(#18130A,0.7);
    }
    */ }
    @media screen and (max-width: 480px) {
      .foot_area .foot_bg {
        background-image: url(../images/foot_bg_sp.jpg); } }
  .foot_area .foot_in {
    max-width: 1600px;
    margin: 0 auto;
    margin: 0 auto 300px;
    position: relative;
    z-index: 3;
    width: calc(100% - 80px); }
    @media screen and (max-width: 1200px) {
      .foot_area .foot_in {
        margin: 0 auto 150px; } }
    @media screen and (max-width: 768px) {
      .foot_area .foot_in {
        flex-wrap: wrap;
        margin: 0 auto 100px; } }
    @media screen and (max-width: 480px) {
      .foot_area .foot_in {
        flex-wrap: wrap; } }
    .foot_area .foot_in .foot_ttl {
      font-size: 18px;
      color: #E7DFD3;
      line-height: 1.4;
      letter-spacing: 0.2em;
      margin-bottom: 70px; }
      @media screen and (max-width: 1400px) {
        .foot_area .foot_in .foot_ttl {
          font-size: 15px; } }
      @media screen and (max-width: 1200px) {
        .foot_area .foot_in .foot_ttl {
          margin-bottom: 40px; } }
      @media screen and (max-width: 768px) {
        .foot_area .foot_in .foot_ttl {
          font-size: 17px;
          margin-bottom: 30px; } }
      @media screen and (max-width: 480px) {
        .foot_area .foot_in .foot_ttl {
          font-size: 10px;
          margin-bottom: 15px; } }
    .foot_area .foot_in .foot_txt {
      font-size: 18px;
      color: #E7DFD3;
      margin-bottom: 40px; }
      @media screen and (max-width: 1400px) {
        .foot_area .foot_in .foot_txt {
          font-size: 15px; } }
      @media screen and (max-width: 1200px) {
        .foot_area .foot_in .foot_txt {
          font-size: 13px; } }
      @media screen and (max-width: 768px) {
        .foot_area .foot_in .foot_txt {
          margin-bottom: 30px; } }
      @media screen and (max-width: 480px) {
        .foot_area .foot_in .foot_txt {
          font-size: 14px;
          margin-bottom: 15px; } }
    .foot_area .foot_in .foot_l {
      color: #E7DFD3; }
      @media screen and (max-width: 768px) {
        .foot_area .foot_in .foot_l {
          width: 100%;
          margin-bottom: 80px; } }
      @media screen and (max-width: 480px) {
        .foot_area .foot_in .foot_l {
          margin-bottom: 40px; } }
      .foot_area .foot_in .foot_l .cielia01 {
        font-size: 80px;
        line-height: 0.8;
        margin-bottom: 15px; }
        @media screen and (max-width: 1480px) {
          .foot_area .foot_in .foot_l .cielia01 {
            font-size: 4.9vw; } }
        @media screen and (max-width: 1200px) {
          .foot_area .foot_in .foot_l .cielia01 {
            font-size: 4vw; } }
        @media screen and (max-width: 768px) {
          .foot_area .foot_in .foot_l .cielia01 {
            font-size: 10vw; } }
        @media screen and (max-width: 480px) {
          .foot_area .foot_in .foot_l .cielia01 {
            font-size: 42px; } }
      .foot_area .foot_in .foot_l .cielia02 {
        font-size: 40px;
        line-height: 1.4; }
        @media screen and (max-width: 1480px) {
          .foot_area .foot_in .foot_l .cielia02 {
            font-size: 2.6vw; } }
        @media screen and (max-width: 1200px) {
          .foot_area .foot_in .foot_l .cielia02 {
            font-size: 2vw; } }
        @media screen and (max-width: 768px) {
          .foot_area .foot_in .foot_l .cielia02 {
            font-size: 6vw; } }
        @media screen and (max-width: 480px) {
          .foot_area .foot_in .foot_l .cielia02 {
            font-size: 20px; } }
    .foot_area .foot_in .foot_c {
      margin: 0 30px; }
      @media screen and (max-width: 768px) {
        .foot_area .foot_in .foot_c {
          margin: 0;
          width: 48%; } }
      @media screen and (max-width: 480px) {
        .foot_area .foot_in .foot_c {
          width: 100%;
          margin-bottom: 60px; } }
      .foot_area .foot_in .foot_c .foot_tel a {
        display: flex;
        align-items: center;
        font-size: 40px;
        line-height: 1;
        font-family: garamond,serif;
        color: #E7DFD3; }
        @media screen and (max-width: 1400px) {
          .foot_area .foot_in .foot_c .foot_tel a {
            font-size: 32px; } }
        @media screen and (max-width: 768px) {
          .foot_area .foot_in .foot_c .foot_tel a {
            font-size: 4.8vw; } }
        @media screen and (max-width: 480px) {
          .foot_area .foot_in .foot_c .foot_tel a {
            font-size: 8.8vw; } }
        .foot_area .foot_in .foot_c .foot_tel a span {
          margin-right: 5px;
          line-height: 0; }
        body:not(.mobile) .foot_area .foot_in .foot_c .foot_tel a {
          pointer-events: none; }
    @media screen and (max-width: 768px) {
      .foot_area .foot_in .foot_r {
        width: 48%; } }
    @media screen and (max-width: 480px) {
      .foot_area .foot_in .foot_r {
        width: 100%; } }
    .foot_area .foot_in .foot_r .map_btn {
      max-width: 300px; }
      .foot_area .foot_in .foot_r .map_btn a {
        display: block;
        background: rgba(24, 19, 10, 0.5);
        border: 1px solid #E7DFD3;
        padding: 44px 20px;
        border-radius: 50px;
        text-align: center;
        font-size: 22px;
        color: #E7DFD3;
        position: relative;
        overflow: hidden;
        letter-spacing: 0.15em;
        transition: 0.5s all ease-in-out 0s; }
        @media screen and (max-width: 480px) {
          .foot_area .foot_in .foot_r .map_btn a {
            font-size: 20px;
            padding: 38px 20px; } }
        .foot_area .foot_in .foot_r .map_btn a p {
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0;
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%;
          text-align: center; }
        .foot_area .foot_in .foot_r .map_btn a .icon {
          position: absolute;
          left: 20px;
          top: 50%;
          margin-top: -12px;
          line-height: 0; }
          .foot_area .foot_in .foot_r .map_btn a .icon img {
            transition: 0.5s opacity ease-in-out 0s; }
            .foot_area .foot_in .foot_r .map_btn a .icon img.off {
              position: relative; }
            .foot_area .foot_in .foot_r .map_btn a .icon img.on {
              position: absolute;
              left: 0;
              top: 0;
              opacity: 0; }
        body:not(.mobile) .foot_area .foot_in .foot_r .map_btn a:hover {
          background: #E7DFD3;
          color: #000; }
          body:not(.mobile) .foot_area .foot_in .foot_r .map_btn a:hover .icon img.off {
            opacity: 0; }
          body:not(.mobile) .foot_area .foot_in .foot_r .map_btn a:hover .icon img.on {
            opacity: 1; }
  .foot_area .foot_in02 {
    position: relative;
    z-index: 3;
    max-width: 1787px;
    margin: 0 auto;
    padding: 0px 20px;
    position: relative;
    border-top: 1px solid #E7DFD3;
    border-bottom: 1px solid #E7DFD3; }
    .foot_area .foot_in02 a {
      align-items: center;
      position: relative;
      justify-content: flex-start;
      padding: 40px 0; }
      @media screen and (max-width: 480px) {
        .foot_area .foot_in02 a {
          flex-wrap: wrap; } }
      .foot_area .foot_in02 a .f01 {
        overflow: hidden;
        max-width: 1060px;
        width: 60.68%; }
        @media screen and (max-width: 768px) {
          .foot_area .foot_in02 a .f01 {
            width: 50%; } }
        @media screen and (max-width: 480px) {
          .foot_area .foot_in02 a .f01 {
            width: 100%;
            margin-bottom: 30px; } }
        @media screen and (max-width: 1200px) {
          .foot_area .foot_in02 a .f01 .f01_in img {
            width: 200%; } }
        @media screen and (max-width: 768px) {
          .foot_area .foot_in02 a .f01 .f01_in img {
            width: 300%; } }
        .foot_area .foot_in02 a .f01 .f01_in .loop_img {
          width: 100%;
          height: 172px;
          background: url("images/reserve.svg") repeat-x;
          background-position: 0 0;
          animation: bgroop 20s linear infinite; }
          @media screen and (max-width: 768px) {
            .foot_area .foot_in02 a .f01 .f01_in .loop_img {
              height: 142px;
              background-size: auto 100%;
              animation: bgroop_tb 20s linear infinite; } }
          @media screen and (max-width: 480px) {
            .foot_area .foot_in02 a .f01 .f01_in .loop_img {
              height: 142px;
              background-size: auto 100%;
              animation: bgroop_tb 20s linear infinite; } }
          @media screen and (max-width: 480px) {
            .foot_area .foot_in02 a .f01 .f01_in .loop_img {
              height: 80px;
              animation: bgroop_sp 20s linear infinite; } }
      .foot_area .foot_in02 a .f02 {
        color: #E7DFD3;
        margin-left: 2%;
        width: 24%; }
        @media screen and (max-width: 768px) {
          .foot_area .foot_in02 a .f02 {
            width: 30%;
            margin-left: 7%; } }
        @media screen and (max-width: 480px) {
          .foot_area .foot_in02 a .f02 {
            margin-left: 0; } }
        @media screen and (max-width: 480px) {
          .foot_area .foot_in02 a .f02 {
            width: calc(100% - 90px); } }
        .foot_area .foot_in02 a .f02 .txt01 {
          font-size: 30px;
          line-height: 1.2;
          margin-bottom: 20px;
          margin-top: 15px; }
          @media screen and (max-width: 1400px) {
            .foot_area .foot_in02 a .f02 .txt01 {
              font-size: 2.2vw; } }
          @media screen and (max-width: 768px) {
            .foot_area .foot_in02 a .f02 .txt01 {
              font-size: 3.6vw; } }
          @media screen and (max-width: 480px) {
            .foot_area .foot_in02 a .f02 .txt01 {
              margin-top: 0px;
              font-size: 18px;
              margin-bottom: 10px; } }
        .foot_area .foot_in02 a .f02 .txt02 {
          font-size: 20px; }
          @media screen and (max-width: 1600px) {
            .foot_area .foot_in02 a .f02 .txt02 {
              font-size: 1.2vw; } }
          @media screen and (max-width: 768px) {
            .foot_area .foot_in02 a .f02 .txt02 {
              font-size: 1.4vw;
              line-height: 1.8; } }
          @media screen and (max-width: 480px) {
            .foot_area .foot_in02 a .f02 .txt02 {
              font-size: 10px; } }
      .foot_area .foot_in02 a .f03 {
        max-width: 150px;
        width: 8.59%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        padding: 40px;
        box-sizing: content-box;
        display: flex;
        justify-content: center;
        align-items: center;
        /*position: relative;*/
        /*overflow: hidden;*/ }
        @media screen and (max-width: 768px) {
          .foot_area .foot_in02 a .f03 {
            width: 12.45%;
            padding: 0;
            max-width: 130px; } }
        @media screen and (max-width: 480px) {
          .foot_area .foot_in02 a .f03 {
            width: 68px;
            position: relative; } }
        .foot_area .foot_in02 a .f03 .arrow {
          position: relative; }
          .foot_area .foot_in02 a .f03 .arrow span {
            display: block; }
            .foot_area .foot_in02 a .f03 .arrow span.arrow01 {
              transition: 0.2s all cubic-bezier(0, 0, 0, 1) 0.2s; }
            .foot_area .foot_in02 a .f03 .arrow span.arrow02 {
              position: absolute;
              left: 0;
              top: 0;
              opacity: 0;
              transition: 0.2s all cubic-bezier(1, 0, 1, 1) 0s;
              transform: translateX(-50%) translateY(50%); }
      body:not(.mobile) .foot_area .foot_in02 a:hover .f03 .arrow span.arrow01 {
        opacity: 0;
        transition: 0.2s all cubic-bezier(1, 0, 1, 1) 0s;
        transform: translateX(50%) translateY(-50%); }
      body:not(.mobile) .foot_area .foot_in02 a:hover .f03 .arrow span.arrow02 {
        opacity: 1;
        transition: 0.2s all cubic-bezier(0, 0, 0, 1) 0.2s;
        transform: translateX(0%) translateY(0%); }

@keyframes bgroop {
  from {
    background-position: 0 0; }
  to {
    background-position: -2174px 0; } }
@keyframes bgroop_tb {
  from {
    background-position: 0 0; }
  to {
    background-position: -1793px 0; } }
@keyframes bgroop_sp {
  from {
    background-position: 0 0; }
  to {
    background-position: -1010px 0; } }
.cap_area {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #18130A;
  padding: 60px 0;
  border-bottom: 1px solid rgba(231, 223, 211, 0.2); }
  @media screen and (max-width: 480px) {
    .cap_area {
      padding: 50px 0; } }
  .cap_area .cap_in {
    max-width: 1600px;
    margin: 0 auto;
    width: calc(100% - 40px); }
    .cap_area .cap_in p {
      font-size: 10px;
      color: #E7DFD3;
      text-indent: -1em;
      padding-left: 1em; }
      .cap_area .cap_in p:not(:first-child) {
        margin-top: 5px; }

.modal_cont {
  display: none; }

.iziModal {
  width: 100%;
  height: 100vh !important;
  max-width: 100% !important;
  box-shadow: none !important;
  background: none !important; }

.modal_in {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100vh; }
  .modal_in .numbering {
    position: absolute;
    left: 60px;
    bottom: 50px;
    font-size: 30px;
    color: #FFF;
    line-height: 1; }
  .modal_in .modal_bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
    .modal_in .modal_bg.modal_bg01 {
      background-image: url("images/modal/modal_photo01.jpg"); }
    .modal_in .modal_bg.modal_bg02 {
      background-image: url("images/modal/modal_photo02.jpg"); }
    .modal_in .modal_bg.modal_bg03 {
      background-image: url("images/modal/modal_photo03.jpg"); }
    .modal_in .modal_bg.modal_bg04 {
      background-image: url("images/modal/modal_photo04.jpg"); }
    .modal_in .modal_bg.modal_bg05 {
      background-image: url("images/modal/modal_photo05.jpg"); }
    .modal_in .modal_bg.modal_bg06 {
      background-image: url("images/modal/modal_photo06.jpg"); }
    .modal_in .modal_bg.modal_bg07 {
      background-image: url("images/modal/modal_photo07.jpg"); }
    .modal_in .modal_bg.modal_bg08 {
      background-image: url("images/modal/modal_photo08.jpg"); }
    .modal_in .modal_bg.modal_bg09 {
      background-image: url("images/modal/modal_photo09.jpg"); }
    .modal_in .modal_bg.modal_bg10 {
      background-image: url("images/modal/modal_photo10.jpg"); }
    .modal_in .modal_bg.modal_bg11 {
      background-image: url("images/modal/modal_photo11.jpg"); }
    .modal_in .modal_bg.modal_bg12 {
      background-image: url("images/modal/modal_photo12.jpg"); }
    .modal_in .modal_bg.modal_bg13 {
      background-image: url("images/modal/modal_photo13.jpg"); }
    .modal_in .modal_bg.modal_bg14 {
      background-image: url("images/modal/modal_photo14.jpg"); }
    .modal_in .modal_bg.modal_bg15 {
      background-image: url("images/modal/modal_photo15.jpg"); }
  .modal_in .controls {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 30px;
    max-width: 232px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between; }
    .modal_in .controls:before {
      content: "";
      position: absolute;
      left: 50%;
      top: 10px;
      bottom: 0;
      margin: auto;
      height: 30px;
      width: 1px;
      background: rgba(231, 223, 211, 0.3); }
    .modal_in .controls li {
      width: 70px;
      height: 70px;
      position: relative;
      cursor: pointer; }
      body:not(.mobile) .modal_in .controls li:hover.prev span {
        left: -10px; }
      body:not(.mobile) .modal_in .controls li:hover.next span {
        right: -10px; }
      .modal_in .controls li span {
        position: absolute;
        margin: 0;
        padding: 0;
        border: none;
        position: absolute;
        top: 50%;
        margin-top: -4px;
        height: 14px;
        width: 70px;
        transition: 0.3s all ease-in-out 0s; }
      .modal_in .controls li.prev span {
        border-bottom: solid 1px #E7DFD3;
        border-left: solid 1px #E7DFD3;
        left: 0px;
        transform: skewX(-55deg); }
      .modal_in .controls li.next span {
        border-bottom: solid 1px #E7DFD3;
        border-right: solid 1px #E7DFD3;
        right: 0px;
        transform: skewX(55deg); }
  .modal_in .modal_close_img {
    position: absolute;
    right: 0;
    bottom: 0;
    line-height: 0;
    cursor: pointer;
    transition: 0.3s transform ease-in-out 0s;
    transform-origin: right bottom;
    will-change: transform; }
    body:not(.mobile) .modal_in .modal_close_img:hover {
      transform: scale(1.1); }

.museum_open_bg {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100vh;
  background: #E7DFD3;
  opacity: 0;
  z-index: 99998;
  pointer-events: none; }

body.museum_open .museum_open_bg {
  opacity: 1; }

.modal_in02 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: #E7DFD3; }
  .modal_in02 .image_txt .text_box {
    padding: 30px 20px 0;
    margin-bottom: 40px; }
    .modal_in02 .image_txt .text_box .num_flex {
      margin-bottom: 25px;
      align-items: center; }
      .modal_in02 .image_txt .text_box .num_flex .num {
        width: 53px;
        height: 53px;
        background: #18130A;
        border-radius: 100%;
        position: relative; }
        .modal_in02 .image_txt .text_box .num_flex .num span {
          position: absolute;
          left: 0;
          top: 0;
          bottom: 0;
          right: 0;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 22px;
          color: #E7DFD3; }
      .modal_in02 .image_txt .text_box .num_flex .text_name {
        width: calc(100% - 73px); }
        .modal_in02 .image_txt .text_box .num_flex .text_name .t01 {
          font-size: 20px;
          line-height: 1.4; }
        .modal_in02 .image_txt .text_box .num_flex .text_name .t02 {
          font-size: 12px;
          line-height: 1.4; }
      .modal_in02 .image_txt .text_box .num_flex .text_read {
        font-size: 12px; }
  .modal_in02 .image_txt .btn_etc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px; }
    .modal_in02 .image_txt .btn_etc .numbering {
      /*
      position: absolute;
      left:20px;
      bottom:20px;
      */
      font-size: 20px;
      color: #18130A;
      line-height: 1; }
    .modal_in02 .image_txt .btn_etc .controls02 {
      /*
      position: absolute;
      left:20px;
      right:20px;
      bottom:15px;
      */
      position: relative;
      max-width: 80px;
      width: 100%;
      margin: auto;
      display: flex;
      justify-content: space-between; }
      .modal_in02 .image_txt .btn_etc .controls02:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background: #18130A; }
      .modal_in02 .image_txt .btn_etc .controls02 li {
        width: 30px;
        height: 30px;
        position: relative;
        cursor: pointer; }
        .modal_in02 .image_txt .btn_etc .controls02 li span {
          position: absolute;
          margin: 0;
          padding: 0;
          border: none;
          position: absolute;
          top: 50%;
          margin-top: -4px;
          height: 5px;
          width: 24px;
          transition: 0.3s all ease-in-out 0s; }
        .modal_in02 .image_txt .btn_etc .controls02 li.prev span {
          border-bottom: solid 1px #18130A;
          border-left: solid 1px #18130A;
          left: 0px;
          transform: skewX(-55deg); }
        .modal_in02 .image_txt .btn_etc .controls02 li.next span {
          border-bottom: solid 1px #18130A;
          border-right: solid 1px #18130A;
          right: 0px;
          transform: skewX(55deg); }
    .modal_in02 .image_txt .btn_etc .floor_close {
      /*
      position: absolute;
      right:0;
      bottom:0;
      */
      width: 55px;
      height: 55px;
      background: #18130A;
      display: flex;
      justify-content: center;
      align-items: center; }

/*# sourceMappingURL=top.css.map */
