@charset "UTF-8";
/* CSS Document */



/* contents-top */

.contents-top {
	width: 100%;
    padding: 100px 0px;
}

.contents-top img {
	width: 100%;
height: auto;
}



/* title_contents-top */

.title_contents-top {
    width: 100%;
    margin-bottom: 45px;
}

.contents01 .title_contents-top {
    text-align: center;
}

.title_contents-top h2, .title_contents-top h3 {
line-height: 1.2;
font-weight: var(--base-font-weight);
}


.title_contents-top h2 {
	font-size: var(--base-font-size);
    letter-spacing: 0.2em;
    margin-bottom: 5px;
}

.title_contents-top h3 {
    font-family: var(--title-font);
    font-weight: var(--base-font-weight3);
    font-size: 46px;
    color: var(--color-base);
}


/* main-img-top */

 .main-img-top {
        position: relative;
        width: 100%;
        height: 90vh;
    }
    
    .main-img-top .lay01 {
        position: relative;
        width: 100%;
        height: 90vh;
        overflow: hidden;
        z-index: 99;
    }
    
    .main-img-top .lay01::before {
        background-color: #000;
        display: none;
  content: "";
  position: absolute;
  transform: scale(100);
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  width: 2rem;
  height: 2rem;
  display: block;
  border-radius: 50%;
        animation-name: PageAnime-circle;
/*  animation-duration: 2s;*/
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
        animation-delay: 6s;
    }
    
    .main-img-top .lay01 .inner {
      margin: 0;
      padding: 0;
        width: 100%;
        height: 90vh;
      display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
        gap:0px 15px;
      overflow: hidden;
        animation: PageAnime-none 4s ease 6s forwards;
        position: relative;
        z-index: 99999;
    }
    
@keyframes PageAnime-circle {
  0% {
    transform: scale(100);
      filter: blur(0px);
  }
  100% {
    transform: scale(0);
      filter: blur(3px);
  }
}
    
@keyframes PageAnime-none {
  0% {
    opacity: 1;
      filter: blur(0px);
  }
  100% {
    opacity: 0;
      filter: blur(5px);
  }
}

    .text-box {
      opacity: 0;
      position: relative;
      animation-fill-mode: forwards;
    }
    
    .text-box img {
      height: 55px;
        width: auto;
    }

    /* 上からフェードイン */
    .text01 {
      animation: fadeDownIn 1.5s ease 1s forwards, moveDown 2s ease 4s forwards;
    }

    /* 下からフェードイン */
    .text02 {
      animation: fadeDownIn2 1.5s ease 2.5s forwards, moveUp 2s ease 4s forwards;
    }

    @keyframes fadeDownIn {
      0% {
        opacity: 0;
        transform: translateY(-80px);
      }
      100% {
        opacity: 1;
        transform: translateY(-50px);
      }
    }

    @keyframes fadeDownIn2 {
      0% {
        opacity: 0;
        transform: translateY(80px);
      }
      100% {
        opacity: 1;
        transform: translateY(50px);
      }
    }

    @keyframes moveDown {
      0% {
        transform: translateY(-50px);
      }
      100% {
        transform: translateY(0px);
      }
    }
    
    @keyframes moveUp {
      0% {
        transform: translateY(50px);
      }
      100% {
        transform: translateY(0px);
      }
    }
    
    .main-img-top .lay02 {
        position: absolute;
left: 0px;
top: 0px;
        width: 100%;
        height: 90vh;
        text-align: center;
        display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
        flex-direction: column;
        gap:60px;
    }

   .main-img-top .lay02 h2 {
       animation: moveDown2 2s ease 19.5s forwards;
    }
    
    .main-img-top .lay02 h2 img {
        height: 44px;
        width: auto;
    }

@keyframes moveDown2 {
      0% {
        transform: translateY(0px);
      }
      100% {
        transform: translateY(150px);
      }
    }
    
    .main-img-top .lay02 .logo-group {
        width: 100%;
        height: 250px;
        position: relative;
        animation: PageAnime-logogroup 1.5s ease 19.5s forwards;
    }
    
    .main-img-top .lay02 .logo-group li {
        position: absolute;
left: 0px;
top: 0px;
         width: 100%;
        height: 250px;
        display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
        opacity: 0;
    }
    
    .main-img-top .lay02 .logo-group li img {
        width: auto;
        max-height: 250px;
    }
    
    .main-img-top .lay02 .logo-group li.logo01 {
        animation: PageAnime-logo 1.5s ease 10s forwards;
    }
    
    .main-img-top .lay02 .logo-group li.logo02 {
        animation: PageAnime-logo 1.5s ease 11.5s forwards;
    }
    
    .main-img-top .lay02 .logo-group li.logo03 {
        animation: PageAnime-logo 1.5s ease 13s forwards;
    }
    
    .main-img-top .lay02 .logo-group li.logo04 {
        animation: PageAnime-logo 1.5s ease 14.5s forwards;
    }
    
    .main-img-top .lay02 .logo-group li.logo05 {
        animation: PageAnime-logo 1.5s ease 16s forwards;
    }
    
    .main-img-top .lay02 .logo-group li.logo06 {
        animation: PageAnime-logo 1.5s ease 17.5s forwards;
    }
    
    
    @keyframes PageAnime-logo {
      0% {
        opacity: 0;
        transform: translateY(-30px);
      }
      50% {
        opacity: 1;
        transform: translateY(0px);
        }
        100% {
        opacity: 0;
        transform: translateY(0px);
      }
    }
    
    
    @keyframes PageAnime-logogroup {
      0% {
        opacity: 1;
      }
        100% {
        opacity: 0;
      }
    }

   :root{
    --img-w: 14vw;
    --img-h: 12vw;
    --gap: 3vw; /* gap between images inside a set */
    --set-gap: 3.5vw; /* gap between set1 and set2 */
    --cols: 6;
    --set-width: calc(var(--cols) * var(--img-w) + (var(--cols) - 1) * var(--gap));
    --scroll-distance: calc(var(--set-width) + var(--set-gap));
  }


  /* ステージは横幅100%だが、プレビュー用に中央に固定幅の viewport を置く */
  .stage {
    width: 100%;
    height: 12vw;
    position: relative;
    display: flex;
    justify-content: center; /* ビューポートを中央配置 */
    align-items: center;
	  z-index: 1000;
  }

  /* ここが実際に見える領域（最初はこの幅に1セットがちょうど収まる） */
  .viewport {
    width: var(--set-width);
    height: var(--img-h);
    overflow: hidden; /* ② これで2セット目はスクロール開始前は見えない */
    position: relative;
  }

  /* 横に長いレーン。左端がちょうど最初のセットの左端に揃う */
  .scroll-lane {
    display: flex;
    position: absolute;
    left: 0; /* viewport の左端に揃える */
    top: 50%;
    transform: translateY(-50%); /* ① フェードイン時とスクロール時で Y 座標が変わらない */
    animation: scroll 24s linear infinite;
    animation-delay: 19.5s; /* フェードインが終わってから */
    align-items: center;
  }

  .image-set {
    display: flex;
    gap: var(--gap);
    margin-right: var(--set-gap); /* ③ セット間の余白 */
  }

  .imgset-logo {
    width: var(--img-w);
    height: var(--img-h);
    opacity: 0;
    animation: fadeMove 1s ease forwards;
    transform-origin: center center;
      display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
    /* フェードイン中の微小な縦ずれを完全に防ぐため translateY は使っていない */
  }
    
    .imgset-logo img {
    width: 100%;
height: auto;
  }

  @keyframes fadeMove {
    0% { opacity: 0; transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
  }

  /* スクロールはちょうど1セット分 + set-gap を左へ移動させる */
  @keyframes scroll {
    0% { transform: translateY(-50%) translateX(0); }
    100% { transform: translateY(-50%) translateX(calc(-1 * var(--scroll-distance))); }
  }

  /* 遅延 */
  .img01 { animation-delay: 10.5s; }
  .img02 { animation-delay: 12s; }
  .img03 { animation-delay: 13.5s; }
  .img04 { animation-delay: 15s; }
  .img05 { animation-delay: 16.5s; }
  .img06 { animation-delay: 18s; }
    





/* container */

.container {
	width: 100%;
    padding-top: 70px;
}

.container > section:not(:last-child) {
    margin-bottom: 100px;
}

.container p {
	line-height: 2.2;
}


/* contents01 */

.contents01 {
    width: 100%;
    text-align: center;
}

.contents01 h4 {
    font-weight: var(--base-font-weight2);
    color: var(--color-main);
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
}


/* contents02 */

.contents02, .contents04 {
	width: 100%;
	position: relative;
    background-color: var(--color-back01);
}

.contents02::before {
	content: "";
	position: absolute;
left: 0px;
top: 0px;
	background-image: url("../../images/top/img12.jpg");
background-position: center top;
background-repeat: no-repeat;
	background-size: 45% auto;
	width: 45%;
	height: 100%;
}

@media screen and (max-width: 1600px) {
    .contents02::before {
background-position: center top 30px;
	background-size: 70% auto;
	width: 38%;
}
}

.contents02 .box-inner {
	position: relative;
    padding: 80px 0px;
    padding-left: 220px;
}


/* contents03 */

.contents03 {
	width: 100%;
}

/* layout01 */

.layout01 {
    text-align: left;
}

.layout01 .box:not(:last-child) {
    margin-bottom: 50px;
}

.layout01 .box-value .item {
    display: flex;
  justify-content: space-between;
flex-wrap: wrap;
    position: relative;
    padding-bottom: 15px;
    padding-left: 60px;
    gap:0px 20px;
}

.layout01 .box-value .item:not(last-child) {
   margin-bottom: 20px;
}

.layout01 .box-value .item::before {
    content: "";
	position: absolute;
left: 20px;
top: 0px;
    color: var(--color-main);
    font-family: var(--title-font);
    line-height:0.9;
    font-size: 26px;
}

.layout01 .box-value .item:nth-child(1)::before {
    content: "1";
}

.layout01 .box-value .item:nth-child(2)::before {
    content: "2";
}

.layout01 .box-value .item:nth-child(3)::before {
    content: "3";
}

.layout01 .box-value .item:nth-child(4)::before {
    content: "4";
}

.layout01 .box-value .item::after {
    content: "";
	position: absolute;
left: 0px;
bottom: 0px;
	width: 670px;
	height: 3px;
    display: block;
    background : -moz-linear-gradient(0% -2196.18% 0deg,rgba(218, 207, 207, 1) 0%,rgba(218, 207, 207, 0.52) 48.29%,rgba(218, 207, 207, 0) 78.02%);
  background : -webkit-linear-gradient(0deg, rgba(218, 207, 207, 1) 0%, rgba(218, 207, 207, 0.52) 48.29%, rgba(218, 207, 207, 0) 78.02%);
  background : -webkit-gradient(linear,0% -2196.18% ,100% -2196.18% ,color-stop(0,rgba(218, 207, 207, 1) ),color-stop(0.4829,rgba(218, 207, 207, 0.52) ),color-stop(0.7802,rgba(218, 207, 207, 0) ));
  background : -o-linear-gradient(0deg, rgba(218, 207, 207, 1) 0%, rgba(218, 207, 207, 0.52) 48.29%, rgba(218, 207, 207, 0) 78.02%);
  background : -ms-linear-gradient(0deg, rgba(218, 207, 207, 1) 0%, rgba(218, 207, 207, 0.52) 48.29%, rgba(218, 207, 207, 0) 78.02%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#DACFCF', endColorstr='#DACFCF' ,GradientType=0)";
  background : linear-gradient(90deg, rgba(218, 207, 207, 1) 0%, rgba(218, 207, 207, 0.52) 48.29%, rgba(218, 207, 207, 0) 78.02%);
}

.layout01 h5 {
    font-size: 34px;
line-height: 1.2;
    font-family: var(--title-font);
    font-weight: var(--base-font-weight3);
    color: var(--color-main);
    position: relative;
    margin-bottom: 30px;
}

.layout01 h5::before {
    content: "";
	position: absolute;
left: 0px;
bottom: 0px;
	width: 330px;
	height: 20px;
    display: block;
    margin-bottom: -8px;
    margin-left: -5px;
    background : -moz-linear-gradient(0% -2196.18% 0deg,rgba(218, 207, 207, 1) 0%,rgba(218, 207, 207, 0.52) 48.29%,rgba(218, 207, 207, 0) 78.02%);
  background : -webkit-linear-gradient(0deg, rgba(218, 207, 207, 1) 0%, rgba(218, 207, 207, 0.52) 48.29%, rgba(218, 207, 207, 0) 78.02%);
  background : -webkit-gradient(linear,0% -2196.18% ,100% -2196.18% ,color-stop(0,rgba(218, 207, 207, 1) ),color-stop(0.4829,rgba(218, 207, 207, 0.52) ),color-stop(0.7802,rgba(218, 207, 207, 0) ));
  background : -o-linear-gradient(0deg, rgba(218, 207, 207, 1) 0%, rgba(218, 207, 207, 0.52) 48.29%, rgba(218, 207, 207, 0) 78.02%);
  background : -ms-linear-gradient(0deg, rgba(218, 207, 207, 1) 0%, rgba(218, 207, 207, 0.52) 48.29%, rgba(218, 207, 207, 0) 78.02%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#DACFCF', endColorstr='#DACFCF' ,GradientType=0)";
  background : linear-gradient(90deg, rgba(218, 207, 207, 1) 0%, rgba(218, 207, 207, 0.52) 48.29%, rgba(218, 207, 207, 0) 78.02%);
    z-index: -1;
}

.layout01 h5::after {
    content: "";
	display: inline-block;
    padding-left: 15px;
    font-family: var(--base-font);
    font-weight: var(--base-font-weight);
    font-size: 13px;
    letter-spacing: 0.25em;
}
.layout01 .box:nth-child(1) h5::after {
    content: "使命";
}
.layout01 .box:nth-child(2) h5::after {
    content: "行動指針";
}

.layout01 .box:nth-child(3) h5::after {
    content: "未来像";
}

.layout01 h6 {
    font-size: 20px;
line-height: 1.2;
    letter-spacing: 0.3em;
    font-weight: var(--base-font-weight2);
    color: var(--color-main);
}

.layout01 p {
    font-size: 20px;
line-height: 1.8;
    letter-spacing: 0.15em;
    font-weight: var(--base-font-weight2);
    color: var(--color-main);
}

.layout01 .box-value p {
    font-weight: var(--base-font-weight);
    font-size: 17px;
line-height: 1.5;
letter-spacing: 0.25em;
    flex: 1;
}



/* layout02 */

.layout02 h4 {
    text-align: right;
    padding-top: 40px;
    font-size: 20px;
line-height: 1.2;
letter-spacing: 0.15em;
font-weight: var(--base-font-weight);
}

.layout02 h4::before {
    content: "代表取締役";
	font-size: 15px;
    display: inline-block;
    padding-right: 15px;
}

.layout02 p {
    letter-spacing: 0.25em;
}


/* layout03 */

.layout03 .box {
    position: relative;
}

.layout03 > .box:not(:last-child) {
    margin-bottom: 65px;
}

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

.layout03 .box-wrap .box {
    width: 48.5%;
}

.layout03 .box::before {
    content: "";
	position: absolute;
left: 12px;
top: 0px;
font-weight: var(--base-font-weight3);
color: var(--color-main);
line-height: 1.2;
letter-spacing: 0.2em;
    margin-top: -27px;
}

.layout03 .box-link01::before {
    content: "会社情報";
}

.layout03 .box-link02::before {
    content: "ブランド一覧";
}

.layout03 .box-link03::before {
    content: "採用情報";
}

.layout03 .box-link04::before {
    content: "お問い合わせ";
}

.layout03 a {
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--color-back01);
    min-height: 180px;
    display: flex;
  justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
    padding-left: 40px;
    background-position: right center;
background-repeat: no-repeat;
background-size: cover;
}

.layout03 .box-link01 a {
    background-image: url("../../images/top/back-link01.png");
}

.layout03 .box-link02 a {
    background-image: url("../../images/top/back-link02.png");
}

.layout03 .box-link03 a {
    background-image: url("../../images/top/back-link03.png");
}

.layout03 .box-link04 a {
    background-image: url("../../images/common/back-contact.jpg");
}


.layout03 .box-wrap a {
    min-height: 240px;
}

.layout03 .box-link04 a {
    text-align: center;
    padding-left: 0px;
    justify-content: center;
    flex-direction: column;
}

.layout03 h6 {
    font-size: 42px;
line-height: 1.2;
letter-spacing: 0em;
font-family: var(--title-font);
font-weight: var(--base-font-weight3);
color: var(--color-main);
}

.layout03 .box-link04 h6 {
color: #FFF;
}

.layout03 p {
    font-size: 14px;
line-height: 1.6;
font-weight: var(--base-font-weight);
}

.layout03 .box-link03 p {
letter-spacing: 0.2em;
color: var(--color-main);
    padding-top: 15px;
}

.layout03 .box-link04 p {
color: #FFF;
    padding: 10px 0px 20px;
}

.layout03 .box-link04 span {
    font-size: 12px;
color: var(--color-main);
font-weight: 300;
line-height: 1.2;
letter-spacing: 0.3em;
    display: inline-block;
    background-color: #FFF;
    width: 280px;
    height: 60px;
    padding-top: 22px;
    padding-left: 40px;
    border-radius: 5px;
    position: relative;
}

.layout03 .box-link04 span::before {
    content: "";
	position: absolute;
left: 60px;
top: 15px;
	background-image: url("../../images/common/icon-contact.svg");
background-position: left top;
background-repeat: no-repeat;
	background-size: auto 100%;
	width: 48px;
	height: 27px;
}

.sp-view {
	display: none;
}

