@charset "UTF-8";
/*---------- reset ----------*/
.main-area .main-inner {
  margin: 0;
  width: 100%;
}
/*---------- reset ----------*/
:root {
  --font-en-primary: "aw-conqueror-didot", serif;
  --font-en-secondary: "Crimson Text", serif;
  --color-basis: #000;
}

/*//////////////////////////////////////////////////
==========================================

Content

//////////////////////////////////////////////////*/
/* ===================== animation */
.contents__wrapper .js-fadeIn {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate3d(0, 2.5rem, 0);
  transform: translate3d(0, 2.5rem, 0);
}
.contents__wrapper .js-fadeIn.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.js-fadeIn.is-show > .fadeDelay > a + a {
  -webkit-animation: fadeSlide 3s ease-in-out 3s alternate infinite;
          animation: fadeSlide 3s ease-in-out 3s alternate infinite;
  opacity: 0;
}

.fadeDelay {
  position: relative;
}
.fadeDelay > a + a {
  position: absolute;
  top: 0;
  left: 0;
}

.is-active.fadeDelay {
  transition-delay: 0.2s;
}

@-webkit-keyframes fadeSlide {
  0% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
/* --- small viewport --- */
/* --- large viewport --- */
/* ===================== common */
.article {
  color: var(--color-basis);
  font-family: "garamond-premier-pro", serif;
  font-weight: 400;
  font-style: normal;
}
.article * {
  box-sizing: border-box;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}
.article * a {
  display: var(--display, block);
}
.article picture {
  display: block;
}
.article img,
.article video,
.article svg {
  width: 100%;
  height: auto;
}

/* --- small viewport --- */
@media screen and (max-width: 767px) {
  .article {
    -webkit-margin-after: 0;
    padding-bottom: calc(205 * (100vw / 750));
    background: #f8f4ef;
  }
  .hidden-sml {
    display: none;
  }
}
/* --- large viewport --- */
@media screen and (min-width: 768px) {
  .article {
    -webkit-margin-after: 0;
    margin-block-end: 0;
  }
  .hidden-lrg {
    display: none;
  }
}
/* ===================== movie */
.movie {
  position: relative;
  width: 100%;
}
.movie__button {
  position: absolute;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  cursor: pointer;
}
.movie__button p{
  display: flex;
  align-items: center;
}
.movie__button .sound-off {
  display: none;
}
.movie__button span {
  display: flex;
  align-items: center;
}
.movie__arrow{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
/* --- small viewport --- */
@media screen and (max-width: 767px) {
  .movie__button {
    right: 0;
    bottom: 0;
    padding: calc(48 * (100vw / 750));
    font-size: calc(20 * (100vw / 750));
  }
  .movie__arrow{
    bottom: calc(15 * (100vw / 750));
    width: calc(30 * (100vw / 750));
  }
  .movie__button .sound-on span{
    margin-left: calc(10 * (100vw / 750));
    width: calc(80 * (100vw / 750));
  }
  .movie__button .sound-off span{
    margin-left: calc(10 * (100vw / 750));
    width: calc(90 * (100vw / 750));
  }  
}
/* --- large viewport --- */
@media screen and (min-width: 768px) {
  .movie__button {
    left: 94%;
    bottom: 1.8rem;
    padding: 1rem;
    font-size: 2rem;
  }
  .movie__button .sound-on span{
    margin-left: 1rem;
    width: 3.84rem;
  }
  .movie__button .sound-off span{
    margin-left: 1rem;
    width: 4.2rem;
  }  
  .movie__arrow{
    bottom: 15px;
  }
}
/* ===================== hero */
/* --- small viewport --- */
@media screen and (max-width: 767px) {
  .hero {

  }
  .hero__desc {
  }
}
/* --- large viewport --- */
@media screen and (min-width: 768px) {
  .hero {

  }
  .hero__desc {

  }

}
/* ===================== desc */
.desc {
  text-align: center;
}
.desc > * {
  font-family: var(--font-en-primary);
}
.desc__heading > * {
  display: inline-block;
}
/* --- small viewport --- */
@media screen and (max-width: 767px) {
  .desc__heading {
    font-size: calc(122 * (100vw / 750));
  }
  .desc__heading .main {
    font-size: calc(45 * (100vw / 750));
  }
  .desc__heading .sub {
    -webkit-margin-before: calc(15 * (100vw / 750));
            margin-block-start: calc(15 * (100vw / 750));
    font-size: calc(16 * (100vw / 750));
  }
  .desc__lead {
    -webkit-margin-before: calc(25 * (100vw / 750));
            margin-block-start: calc(25 * (100vw / 750));
    font-size: calc(17 * (100vw / 750));
    line-height: 1.5294117647;
  }
}
/* --- large viewport --- */
@media screen and (min-width: 768px) {
  .desc__heading .main {
    font-size: 44px;
  }
  .desc__heading .sub {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
    font-size: 16px;
  }
  .desc__lead {
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
    font-size: 17px;
    line-height: 1.9411764706;
  }
}
/* ===================== contents */
/* --- common --- */
.contents__credit {
  font-family: var(--font-en-secondary);
}
.contents__credit a {
  --display: inline-block;
  font-feature-settings: "palt";
  letter-spacing: 0.015em;
}

/* --- small viewport --- */
@media screen and (max-width: 767px) {
  .contents .contents__credit {
    display: none;
  }
  .contents .contents__visual a {
    pointer-events: none;
  }
  .contents__credit {
    -webkit-margin-before: calc(60 * (100vw / 750));
            margin-block-start: calc(60 * (100vw / 750));
  }
  .contents__credit a {
    -webkit-margin-before: calc(20 * (100vw / 750));
            margin-block-start: calc(20 * (100vw / 750));
    font-size: calc(23 * (100vw / 750));
    -webkit-padding-after: calc(4 * (100vw / 750));
            padding-block-end: calc(4 * (100vw / 750));
    border-bottom: 1px solid #CBCBCB;
  }
}
/* --- large viewport --- */
@media screen and (min-width: 768px) {
  .contents{
    position: relative;
    transform: translateY(-2px);
  }
  .contents .contents__credit {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    opacity: 0;
    visibility: hidden;
    transition-duration: 1s;
  }
  .contents .contents__credit a {
    -webkit-margin-before: 14px;
            margin-block-start: 14px;
    font-size: 1.3rem;
    -webkit-padding-after: 2px;
            padding-block-end: 2px;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
  .contents__block {
    position: relative;
    z-index: 1;
  }
  /* .contents__block::after{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #000;
    z-index: -1;
  } */
  .contents__block:hover .contents__visual {
    opacity: 0.8;
  }
  .contents__block:hover .contents__credit {
    opacity: 1;
    visibility: visible;
  }
}
/* ===================== modal */
.articleModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--viewport-height);
  letter-spacing: 0.015em;
  background-color: #fff;
  overflow-y: auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.articleModal.is-show {
  visibility: visible;
  opacity: 1;
  z-index: 1000;
}
.articleModal__close {
  padding: 0;
  z-index: 1;
  color: var(--color-basis);
}
.articleModal__body {
  margin-inline: auto;
}
.articleModal__nav {
  display: flex;
  justify-content: space-between;
}
.articleModal__nav > * {
  font-family: var(--font-en-secondary);
}
.articleModal .desc {
  display: none;
}
.articleModal .swiper-button-prev, .articleModal .swiper-button-next {
  width: calc(15 * (100vw / 750));
  height: calc(48 * (100vw / 750));
  background-image: url(../img/arrow-slide.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.articleModal .swiper-button-prev::after, .articleModal .swiper-button-next::after {
  display: none;
}
.articleModal .swiper-button-prev {
  transform: scale(-1, 1);
  left: calc(15 * (100vw / 750));
}
.articleModal .swiper-button-next {
  right: calc(15 * (100vw / 750));
}
.articleModal .swiper-button-disabled {
  display: none;
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .articleModal {
    -webkit-padding-before: calc(135 * (100vw / 750));
            padding-block-start: calc(135 * (100vw / 750));
    -webkit-padding-after: calc(135 * (100vw / 750));
            padding-block-end: calc(135 * (100vw / 750));
    padding-inline: calc(50 * (100vw / 750));
  }
  .articleModal__close {
    font-size: calc(26 * (100vw / 750));
  }
  .articleModal__pagination {
    font-size: calc(26 * (100vw / 750));
  }
  .articleModal__wrapper {
    -webkit-margin-before: calc(120 * (100vw / 750));
            margin-block-start: calc(120 * (100vw / 750));
  }
}
/* --- for large viewport --- */

/* ===================== foot */
.foot__button {
  text-align: center;
  font-family: var(--font-en-secondary);
  margin-inline: auto;
}
.foot__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  letter-spacing: 0.02em;
  border: 1px solid var(--color-basis);
}

/* --- small viewport --- */
@media screen and (max-width: 767px) {
  .foot {
    -webkit-margin-before: calc(180 * (100vw / 750));
            margin-block-start: calc(180 * (100vw / 750));
  }
  .foot__credit .main {
    font-size: calc(18 * (100vw / 750));
  }
  .foot__credit .sub {
    -webkit-padding-before: calc(30 * (100vw / 750));
            padding-block-start: calc(30 * (100vw / 750));
    font-size: calc(16 * (100vw / 750));
    line-height: 2.5;
  }
  .foot__button {
    -webkit-margin-before: calc(167 * (100vw / 750));
            margin-block-start: calc(255 * (100vw / 750));
    width: calc(660 * (100vw / 750));
    height: calc(124 * (100vw / 750));
  }
  .foot__button a {
    font-size: calc(22 * (100vw / 750));
    line-height: 1.5454545455;
  }
}
/* --- large viewport --- */
@media screen and (min-width: 768px) {
  body {
    background: #f8f4ef;
  }
  .foot {
    -webkit-margin-before: 145px;
            margin-block-start: 145px;
  }
  .foot__credit .main {
    font-size: 13px;
  }
  .foot__credit .sub {
    -webkit-padding-before: 15px;
            padding-block-start: 15px;
    font-size: 12px;
    line-height: 2.4166666667;
  }
  .foot__button {
    -webkit-margin-before: 27rem;
            margin-block-start: 27rem;
    max-width: 1015px;
    width: 95%;
    height: 62px;
  }
  .foot__button a {
    font-size: 11px;
    line-height: 1.5454545455;
  }
}


/* ===================== contents */
#block-01{
  top: var(--sticky--block-01-pos);
}
#block-02{
  top: var(--sticky--block-02-pos);
}
#block-03{
  top: var(--sticky--block-03-pos);
}
#block-04{
  top: var(--sticky--block-04-pos);
}

.sec-bgArea {
  transition: cubic-bezier(0.455, 0.03, 0.515, 0.955) 1000ms;
}
/* --- small viewport --- */
.header {
  top: -95px;
}
@media screen and (max-width: 767px) {
  .main-area {
    padding-top: 0!important;
  }
  .btn-search,
  .btn-cart,
  h1.header-logo {
      overflow: hidden;
      opacity: 0;
  }
  .header.js-header-background {
      background-color: transparent;
  }
  .pc{display: none!important;}
  /* ttl */
  .image__wrapper{
    position: sticky;
    top: 0;
    left: 0;
  }
  .imgBox,
  .leadBox{
    margin: auto;
  }
  .imgBox.--01{
    width: calc(750 * (100vw / 750));
  }
  .logo__wrap{
    position: absolute;
    top: calc(505 * (100vw / 750));
    left: 50%;
    transform: translateX(-50%);
    width: calc(378 * (100vw / 750));
  }
  .imgBox.--02{
    width: calc(380 * (100vw / 750));
    margin: 0 auto 0;
  }
  .imgBox.--03{
    width: calc(750 * (100vw / 750));
  }
  .imgBox.--04{
    width: calc(678 * (100vw / 750));
    margin: calc(70 * (100vw / 750)) auto calc(70 * (100vw / 750));
  }
  .imgBox.--05{
    width: calc(750 * (100vw / 750));
  }
  .imgBox.--06{
    width: calc(380 * (100vw / 750));
    margin: auto;
  }
  .imgBox.--07{
    width: calc(750 * (100vw / 750));
    margin: 0 auto calc(70 * (100vw / 750));
  }
  .imgBox.--08{
    width: calc(678 * (100vw / 750));
    margin: 0 auto calc(70 * (100vw / 750));
  }
  .imgBox.--09{
    width: calc(750 * (100vw / 750));
  }
  .imgBox.--10{
    width: calc(380 * (100vw / 750));
  }
  .imgBox.--11{
    width: calc(750 * (100vw / 750));
    margin: 0 auto calc(150 * (100vw / 750));
  }
  .imgBox.--12{
    width: calc(570 * (100vw / 750));
    margin: 0 auto calc(150 * (100vw / 750));
  }
  .imgBox.--13{
    width: calc(750 * (100vw / 750));
    margin: 0 auto calc(150 * (100vw / 750));
  }
  .imgBox.--14{
    width: calc(678 * (100vw / 750));
    margin: 0 auto calc(70 * (100vw / 750));
  }
  .imgBox.--15{
    width: calc(750 * (100vw / 750));
    margin: 0 auto calc(70 * (100vw / 750));
  }
  .imgBox.--16{
    width: calc(678 * (100vw / 750));
    margin: 0 auto calc(70 * (100vw / 750));
  }
  .imgBox.--17{
    width: calc(750 * (100vw / 750));
  }
  .imgBox.--18{
    width: calc(380 * (100vw / 750));
  }
  .imgBox.--19{
    width: calc(750 * (100vw / 750));
    margin: 0 auto calc(70 * (100vw / 750));
  }
  .imgBox.--20{
    width: calc(680 * (100vw / 750));
    margin: 0 auto calc(70 * (100vw / 750));
  }
  .imgBox.--21{
    width: calc(750 * (100vw / 750));
    margin: 0 auto calc(70 * (100vw / 750));
  }
  .imgBox.--22{
    width: calc(750 * (100vw / 750));
    margin: 0 auto calc(70 * (100vw / 750));
  }
  .imgBox.--23{
    width: calc(680 * (100vw / 750));
    margin: 0 auto 0;
  }
  .imgBox.--24{
    width: calc(380 * (100vw / 750));
    margin: 0 auto calc(205 * (100vw / 750));
  }
  .imgBox.--25{
    width: calc(680 * (100vw / 750));
    margin: 0 auto calc(70 * (100vw / 750));
  }
  .imgBox.--26{
    width: calc(750 * (100vw / 750));
    margin: 0 auto calc(150 * (100vw / 750));
  }
  .imgBox.--27{
    width: calc(570 * (100vw / 750));
    margin: 0 auto calc(150 * (100vw / 750));
  }
  .imgBox.--28{
    width: calc(750 * (100vw / 750));
    margin: 0 auto calc(100 * (100vw / 750));
  }
  .imgBox.--29{
    width: calc(750 * (100vw / 750));
    margin: 0 auto calc(73 * (100vw / 750));
  }
  .imgBox.--30 {
    width: calc(570 * (100vw / 750));
    margin: 0 auto calc(65 * (100vw / 750));
  }
  .staff-credit {
    font-size: calc(23 * (100vw / 750));
    width: calc(395 * (100vw / 750));
    margin: 0 auto calc(40 * (100vw / 750));
    text-align: center;
    line-height: 1.52;
    letter-spacing: -0.025em;
  }
  .sec.--01 .leadBox{
    width: calc(508 * (100vw / 750));
    margin: 0 auto calc(178 * (100vw / 750));
  }
  .sec.--02 .leadBox{
    width: calc(520 * (100vw / 750));
    margin: 0 auto calc(185 * (100vw / 750));
  }
  .sec.--03 .leadBox{
    width: calc(520 * (100vw / 750));
    margin: 0 auto calc(185 * (100vw / 750));
  }
  .sec.--04 .leadBox{
    width: calc(514 * (100vw / 750));
    margin: 0 auto calc(175 * (100vw / 750));
  }
  .sec.--05 .leadBox{
    position: relative;
    width: calc(344 * (100vw / 750));
    margin: 0 auto calc(-50 * (100vw / 750));
    z-index: 1;
  }

  /* sec 01 */
  .sec {
    position: sticky;
    top: 0;
    left: 0;
    margin: 0;
    background: #f8f4ef;
  }
  .sec.--01 {
    padding-top: calc(200 * (100vw / 750));
    margin: 0 0 calc(180 * (100vw / 750));
  }
  .sec__title,
  .all_btn{
    font-feature-settings: "palt";
    /* font-family: adobe-garamond-pro, serif; */
    font-style: normal;
    font-weight: 400;
    font-size: calc(45 * (100vw / 750));
    letter-spacing: 0;
    text-align: center;
    margin: calc(75 * (100vw / 750)) auto calc(46 * (100vw / 750));
  }
  .all_btn{
    margin: 0 0 calc(290 * (100vw / 750));
    font-size: calc(52 * (100vw / 750));
  }
  .sec.--02 {
    padding-top: calc(180 * (100vw / 750));
    margin: 0 0 calc(180 * (100vw / 750));
  }
  .sec.--03 {
    padding-top: calc(200 * (100vw / 750));
  }

  /* sec 04 */
  .sec.--04{
    padding-top: calc(180 * (100vw / 750));
  }
  
  .sec.--05{
    padding-top: calc(200 * (100vw / 750));
    margin: calc(-1 * (100vw / 750)) auto calc(40 * (100vw / 750));
  }
  
  .sec.--05 .sec__title{
    width: calc(425 * (100vw / 750));
    margin: 0 auto calc(40 * (100vw / 750));
  }
  .sec.--05 .line{
    display: block;
    width: 1px;
    height: calc(315 * (100vw / 750));
    margin: 0 auto calc(20 * (100vw / 750));
  }
}



/* --- large viewport --- */
@media screen and (min-width: 768px) {
  .sp{display: none!important;}
  *{
    min-width: 0;
    min-height: 0; 
  }
  .movie{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto -1px;
  }
  .movie__detal{
    position: relative;
    width: 52vw;
    padding-right: 7vw;
  }
  .logo__wrap{
    width: 48vw;
    text-align: center;
  }
  .logo__wrap img{
    width: 19vw;
  }
  
  .sec-wrap{
    font-size: 0;
  }

  /* sec 05 */
  .sec.--04 {
    margin: 0;
  }
  
  /* ttl */
  .sec.--01 {
    position: sticky;
    top: 0;
    left: 0;
  }
  .left_bar {
    position: sticky;
    padding: 0;
    top: 14rem;
    left: 1.3rem;
    display: block;
    width: 1.96rem;
    z-index: 10;
  }
  /* ttl */
  .image__wrapper{
    position: sticky;
    top: 0;
    left: 0;
  }
  .imgBox,
  .leadBox{
    margin: auto;
  }
  .imgBox.--01{
    width: 100%;
  }
  .imgBox.--02{
  }
  .imgBox.--03{
    width: 52.5rem;
    margin: 0 0 2rem auto;
  }
  .imgBox.--04{
    width: 52.5rem;
    margin: 0 0 2rem auto;
  }
  .imgBox.--05{
    width: 52.5rem;
    margin: 0 0 0 auto;
  }
  .imgBox.--06{
    width: 25.7rem;
    margin: auto;
  }
  .imgBox.--07{
    width: 52.5rem;
    margin: 0 0 2rem auto;
  }
  .imgBox.--08{
    width: 52.5rem;
    margin: 0 0 2rem auto;
  }
  .imgBox.--09{
    width: 52.5rem;
    margin: 0 0 0 auto;
  }
  .imgBox.--10{
    width: auto;
  }
  .imgBox.--11{
    width: 52.5rem;
    margin: 0 auto 0 0;
  }
  .imgBox.--12{
    width: 34.0rem;
    margin: 15rem 9.2rem 19rem auto;
  }
  .imgBox.--13{
    width: 100%;
    margin: 0 auto 30rem;
  }
  .imgBox.--14,
  .imgBox.--15,
  .imgBox.--16,
  .imgBox.--17{
    width: 49.0rem;
  }
  .imgBox.--18{
    width: 25.9rem;
    margin: 0;
  }
  .imgBox.--19{
    width: 52.5rem;
    margin: 0 0 2rem auto;
  }
  .imgBox.--20{
    width: 52.5rem;
    margin: 0 0 2rem auto;
  }
  .imgBox.--21{
    width: 52.5rem;
    margin: 0 0 0 auto;
  }
  .imgBox.--22{
    width: 75.0rem;
    margin: 0 auto 7.0rem;
  }
  .imgBox.--23{
    width: 68.0rem;
    margin: 0;
  }
  .imgBox.--24{
    width: 25.6rem;
    margin: 0 0 5.2rem 0;
  }
  .imgBox.--25{
    width: auto;
  }
  .imgBox.--26{
    width: auto;
  }
  .imgBox.--27{
    width: 34.0rem;
    margin: 0 0 7rem auto;
  }
  .imgBox.--28{
    width: 52.5rem;
    margin: 0 auto 18.8rem;
  }
  .imgBox.--29{
    width: 100rem;
    margin: 0 auto 7.2rem;
  }
  .imgBox.--30 {
    width: 40rem;
    margin: 0 auto 6.7rem;
  }
  .staff-credit {
    text-align: center;
    width: 100%;
    margin: 0 auto 4.0rem;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .sec.--01 .leadBox{
    width: 25.6rem;
    margin: 0 auto 17.8rem;
  }
  .sec.--02 .leadBox{
    width: 25.7rem;
    margin: 0 auto 0;
  }
  .sec.--03 .leadBox{
    width: 25.5rem;
    margin: 0 auto 0;
  }
  .sec.--04 .leadBox{
    width: 25.7rem;
    margin: 0;
  }
  .sec.--05 .leadBox{
    position: relative;
    width: 25.6rem;
    margin: 0 0.3rem 0 0;
    z-index: 1;
  }

  .sec__title,
  .all_btn{
    font-feature-settings: "palt";
    font-style: normal;
    font-weight: 400;
    font-size: 2.5rem;
    letter-spacing: 0;
    text-align: center;
    margin: 4.8rem auto 2.2rem;
  }

  /* sec 01 */
  .sec {
    position: sticky;
    top: 0;
    left: 0;
    margin: 0;
    background: #f8f4ef;
  }
  .sec.--01 {
    padding-top: 20.0rem;
    margin: -62rem auto 0;
  }
  .sec.--01 .contents__block.--01 ,
  .sec.--02 .contents__block.--01 {
    width: 101.8rem;
    margin: auto;
  }
  .sec.--01 .contents__block:not(.--01) ,
  .sec.--02 .contents__block:not(.--01) {
    width: 100.3rem;
    margin: auto;
  }
  .sec.--01 .contents__block .about__wrap,
  .sec.--02 .contents__block .about__wrap{
    position: absolute;
    top: 0;
    left: 3.6rem;
    width: 26rem;
  }
  .all_btn{
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 0 19.4rem;
    font-size: 3.3rem;
    letter-spacing: 0;
  }
  .all_btn a{
    width: fit-content;
  }
  /* sec 02 */
  .sec.--02 {
    padding-top: 20.3rem;
  }
  /* sec 03 */
  .sec.--03 {
    padding-top: 20.0rem;
  }
  .sec.--03 .contents__block.--01 {
    width: 101.8rem;
    margin: auto;
  }
  .sec.--03 .contents__block:not(.--01) {
    width: 100.2rem;
    margin: auto;
  }
  .sec.--03 .contents__block .about__wrap{
    position: absolute;
    top: 0;
    right: 1.4rem;
    width: 25.9rem;
  }
  .sec.--03 .contents__block.--05{
    display: grid;
    align-items: start;
    justify-items: stretch;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.9rem 1.3rem;
  }

  /* sec 04 */
  .sec.--04{
    padding-top: 19.8rem;
  }
  .sec.--04 .contents__block.--01 {
    width: 97rem;
    margin: auto;
  }
  .sec.--04 .contents__block:not(.--01) {
    width: 100rem;
    margin: 0 auto 0;
  }
  .sec.--04 .contents__block.--04 .slider{
    width: 52.5rem;
    margin: 0 0 0 auto;
    overflow: hidden;
  }
  .sec.--04 .contents__block .about__wrap{
    position: absolute;
    top: 0;
    left: 1.4rem;
    width: 25.7rem;
  }
  

  /* sec 05 */
  .sec.--05{
    padding-top: 30rem;
    margin: 0rem auto 0;
    padding-bottom: 4.3rem;
  }
  .sec.--05 .sec__title{
    width: 24.5rem;
    margin: 0 auto 2.3rem;
  }
  .sec.--05 .--01 .sec__title{
    width: 25.6rem;
    margin: 0 0 2.3rem;
  }
  .sec.--05 .line{
    display: block;
    width: 1px;
    height: 22.9rem;
    margin: 0 auto 2.0rem;
  }
  .sec.--05 .contents__block.--01 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100rem;
    margin: auto;
  }
  .sec.--05 .contents__block.--02 {
    width: 99.7rem;
    margin: -51.6rem auto 15rem;
  }
  .sec.--05 .contents__block .about__wrap{
    position: absolute;
    top: 0;
    left: 1.4rem;
    width: 27.9rem;
  }
  .sec.--05 .contents__block.--02 .slider{
    width: 52.6rem;
  }
  .sec.--05 .contents__block.--03 {
    width: 82.5rem;
    margin: 0 auto 0;
  }

  .slick-dots{
    text-align: right;
    bottom: 1rem!important;
    right: 1.2rem;
  }
  .slick-dots li{
      width: 0.8rem!important;
      height: 0.8rem!important;
      margin: 0 0.4rem!important;
      box-sizing:border-box;
      border-radius: 50vh;
      border: 1px solid #fff;
      background: #fff;
  }
  .slick-dots li button{
      height: auto;
      width: auto;
      border-radius: 50vh;
      background: transparent;
  }
  .slick-dots li button:before{
      content:""!important;
      background: transparent;
  }
  .slick-dots li.slick-active{
      border: 1px solid #fff;
      width: 0.8rem!important;
      height: 0.8rem!important;
  }
  .slick-dots li.slick-active button:before{
      background: transparent!important;
  }
  .slick-dots li.slick-active ,
  .slick-dots li.slick-active button{
      background: transparent!important;
  }
  .slick-dots li button:before{
  }
}


/* ===================== responsive */
@media (max-width: 1400px) and (min-width: 768px) {
  html {
    font-size: 0.7142857143vw !important;
  }
}
.sec.--05 .line.js-fadeIn{
  position: relative;
  transform: translate3d(0, 0, 0);
}
.sec.--05 .line.js-fadeIn::before{
  position: absolute;
  top: 0;
  content: "";
  transition: height 0.8s;
  transform: translate(0);
  width: 1px;
  height: 0;
  background: #000;
}
.sec.--05 .line.js-fadeIn.is-show::before{
  transform: translate(0);
  height: 100%;
}
.logo__wrap.js-fadeIn.fadeDelay{
  transform: translate3d(-50%, 2.5rem, 0);
}
.logo__wrap.js-fadeIn.fadeDelay.is-show{
  transform: translate3d(-50%, 0, 0);
}
.js-fadeIn.fadeDelay{
  transition-delay: 1s;
}




@media (max-width: 1300px) and (min-width: 768px){
  html {
  font-size: calc(10 *(100vw / 1300));
  }
  .wrapBottom{
    overflow-x:hidden;
  }
}

