@charset "UTF-8";

/*********************
HOME
*********************/

.paragraph {
  line-height: 2.2;
}

p.paragraph {
  margin-bottom: 1.4em;
}

@media screen and (max-width: 768px) {
  .paragraph {
    line-height: 1.8;
  }
}

.lead-text {
  font-size: 1.1em;
}

/*********************
MAINPICT
*********************/
#home-bg {
  position: absolute;
  top: 0;
  background: #FFF;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#home-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  animation: anime 15s 0s infinite;
  animation-name: main-slide;
  /*animation-duration: 1s;*/
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

#home-bg img:nth-of-type(1) {
  animation: main-slide 15s infinite;
}

#home-bg img:nth-of-type(2) {
  animation: main-slide 15s 5s infinite;
}

#home-bg img:nth-of-type(3) {
  animation: main-slide 15s 10s infinite;
}

@keyframes fadeInImg {
  0% {
    opacity: 0;
    transform: scale(1.01);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes main-slide {
  0% {
    opacity: 0;
    transform: scale(1.01);
    filter: blur(6px);
    z-index: 1;
  }
  20% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  60% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  80% {
    opacity: 0;
    transform: scale(1.01);
    filter: blur(6px);
  }
  100% {
    opacity: 0;
    transform: scale(1.01);
    filter: blur(6px);
    z-index: -1;
  }
}

/*********************
SECTION-FIRST
*********************/
#home-first .main-inner {
  position: absolute;
  top: 45%;
  left: 20%;
  z-index: 1;
}
#home-first header {
  position: relative;
  z-index: 100;
}

#home-first .main-inner .logo img {
  display: block;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

#home-first .main-inner .logo.black {
  width: 200px;
  margin-bottom: 40px;
}

#home-first .main-inner .logo.ieni {
  width: 340px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media screen and (min-width: 980px) {
  #home-bg .img-sp {
    display: none;
  }
}

@media screen and (max-width: 979px) {
  #home-bg .img-pc {
    display: none;
  }
}

@media screen and (max-width: 879px) {
  #home-first .main-inner {
    position: absolute;
    top: 45%;
    left: 10%;
  }

  #home-first .main-inner .logo.black {
    width: 110px;
    margin-bottom: 40px;
  }

  #home-first .main-inner .logo.ieni {
    width: 220px;
  }
}

/*********************
SECTION-CONCEPT
*********************/
#section-concept::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  background: url(../images/bg-img.jpg) no-repeat;
  background-size: cover;
}

#section-concept .content-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}

#section-concept .content-inner {}

#section-concept h2 {
  font-size: 6em;
  font-weight: 200;
  margin-bottom: 0;
}

#section-concept .pict-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

#section-concept .pict-wrapper img {
  width: 120px;
}

@media screen and (min-width: 1350px) {}

@media screen and (max-width: 1349px) {}

@media screen and (max-width: 1109px) {}

@media screen and (max-width: 680px) {
  #section-concept h2 {
    font-size: 4em;
  }

  #section-concept .pict-wrapper {
    gap: 5px;
  }

  #section-concept .pict-wrapper img {
    width: 60px;
  }
}

/* TITLE-LEFT */
@media screen and (min-width: 980px) {
  .title-left article {
    display: flex;
  }

  .title-left article h2 {
    width: 20%;
  }

  .title-left article .main {
    width: 80%;
  }
}


/* BLOCK-HEIGHT100 */
.block-height100 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media screen and (max-height: 667px) {
  .block-height100 {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 680px;
    overflow: auto;
  }
}

/*********************
SECTION-NEWS
*********************/
#section-news .news-list li {
  display: flex;
  padding: .5em 0;
}

#section-news .news-list li .date {
  width: 8em;
}

#section-news .news-list li .body {
  width: calc(100% - 8em);
}

/*********************
SECTION-CAETGORY
*********************/
ul.cat-list,
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

ul.cat-list li a {
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  display: block;
}

ul.cat-list li figure,
.product-list .inner figure {
  overflow: hidden;
  margin-bottom: .5em;
}

ul.cat-list li figure img,
.product-list .inner figure img {
  transition: .2s ease-in-out;
}

ul.cat-list li:hover figure img,
.product-list .inner:hover figure img {
  transform: scale(1.05);
}

ul.cat-list li,
.product-list .inner {
  width: calc((100% - 120px) / 4);
}

@media screen and (max-width: 979px) {

  ul.cat-list li,
  .product-list .inner {
    width: calc((100% - 80px) / 3);
  }
}

@media screen and (max-width: 780px) {

  ul.cat-list,
  .product-list {
    gap: 20px;
  }

  ul.cat-list li {
    width: calc((100% - 40px) / 3);
  }

  .product-list .inner {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (max-width: 579px) {
  ul.cat-list li {
    width: calc((100% - 20px) / 2);
  }

  .product-list .inner {
    width: 100%;
  }
}

/*********************
SECTION-SERIES
*********************/
#section-series {
  background: #333 url(../images/design-bg-tab.jpg) no-repeat left center;
  color: white;
}

.series-list .inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.series-list .inner figure {
  width: 30%;
  margin-right: 40px;
  overflow: hidden;
}

.series-list .inner .body {
  width: calc(70% - 40px);
}

.series-list .inner figure img {
  transition: .2s ease-in-out;
}

.series-list .inner:hover figure img {
  transform: scale(1.05);
  opacity: .7;
}

.series-list .inner .body h3 {
  font-size: 1.6em;
  margin-bottom: .5em;
}

.series-list .inner .body .btn {
  font-size: .9em;
  background: #222;
  color: white;
  display: inline-block;
  margin-top: 1.5em;
  padding: .5em 1.5em .6em;
  border-radius: 3px;
}

.series-list .inner a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/*********************
PRODUCT-LIST
*********************/
/* TITLE */
.product-title.archive {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 680px;
  margin-bottom: 2em;
}

.product-title.archive .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-title.archive .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-title.archive h2 {
  position: relative;
  font-size: 4em;
  letter-spacing: .2em;
  font-weight: 400;
  font-family: var(--EN-gothic);
}

@media screen and (max-width: 979px) {
  .product-title.archive {
    min-height: 480px;
    margin-bottom: 1em;
  }
}

/* LIST */
.product-list .inner {
  position: relative;
  transition: .3s;
}

.product-list .inner a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-list .inner:hover {
  opacity: .7;
}

.product-list .title {
  margin-bottom: 1em;
  font-weight: 500;
  color: #000;
}
.product-list .num {
  font-size: .9em;
}

/* gallery */
#gallery-wrapper.gallery {
  overflow: hidden;
}

#gallery-wrapper.gallery .swiper {
  overflow: visible;
}

#gallery-wrapper.gallery .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

#gallery-wrapper.gallery .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

#gallery-wrapper.gallery .slide {
  overflow: hidden;
  width: 16vw;
  height: 10vw;
}

@media screen and (max-width: 780px) {
  #gallery-wrapper.gallery .slide {
    width: 33vw;
    height: 20vw;
  }
}

/*********************
PRODUCT
PAGE-TITLE
*********************/
.product-title {
  text-align: center;
  padding: 2em;
}

.product-title h2 {
  font-family: var(--JP-gothic);
  letter-spacing: 0;
  font-weight: 500;
}


@media screen and (max-width: 780px) {
  .product-title {
    padding-top: 3em;
  }

  .product-title h2 {
    font-size: 1.4em;
  }
}

/* cat */
.product-title .cat-tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.product-title .cat-tag a {
  text-decoration: none;
  display: block;
  font-size: .9em;
  padding: .2em 1em;
  border: 1px solid #999;
  border-radius: 30px;
}

/*********************
PRODUCT-GALLERY
*********************/

#product-gallery .product-gallery {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

#product-gallery .product-gallery>* {
  width: calc(50% - 10px);
}

#product-gallery .product-gallery .main figcaption {
  font-size: 1.2em;
  margin-top: 10px;
}

#product-gallery .product-gallery .thumb-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}

#product-gallery .product-gallery .thumb-media {
  position: relative;
  width: calc((100% - 2px) / 3);
  cursor: pointer;
  transition: .3s ease-in-out;
}

#product-gallery .product-gallery .thumb-media.thumb-media-active {
  opacity: .5;
}

#product-gallery .product-gallery .thumb-media::after {
  transition: .2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0);
}

#product-gallery .product-gallery .thumb-media.thumb-media-active::after {
  border: 6px solid rgba(255, 255, 255, .5);
}

#product-gallery .product-gallery .thumb-media:hover {
  opacity: .6;
}

#product-gallery .product-gallery .caption {
  margin-top: 10px;
  font-size: .8em;
  padding: .1em 1em;
  background-color: #fafafa;
  border: 1px solid #EEE;
  border-radius: 3px;
  width: 100%;
}

@media screen and (max-width: 679px) {

  #product-gallery .product-gallery .swiper {
    margin-bottom: 20px;
  }

  #product-gallery .product-gallery {
    flex-direction: column;
    align-items: start;
  }

  #product-gallery .product-gallery>* {
    width: 100%;
  }
  #product-gallery .product-gallery .thumb-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}
#product-gallery .product-gallery .thumb-media {
  width: calc((100% - 8px) / 9);
}
#product-gallery .product-gallery .caption {
  width: 100%;
}
}

/*********************
PRODUCT-MOVIE
*********************/

#product-movie {
  background: #f2f2f2 url(../images/bg-img.jpg) no-repeat;
  background-size: cover;
}

#product-movie .youtube {
  margin-bottom: 20px;
}

#product-movie .youtube:last-of-type {
  margin-bottom: 0;
}

/*********************
PRODUCT-DETAIL
*********************/
.section-sep {
  border-top: 1px solid #EEE;
}

#product-detail .main .yoko .inner {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
}
#product-detail .main .yoko .inner .text {
  padding: 1.6em;
  padding-left: 0;
}

#product-detail .main p,
#product-evidence .main p {
  margin: 0;
}
#product-detail .main h3,
#product-evidence .main h3 {
  letter-spacing: 0;
  margin-bottom: .5em;
  color: #222;
}

/* YOKO */
.yoko .inner:last-of-type {
  margin-bottom: 0;
}
.yoko .inner .text {
  line-height: 1.8;
}
.yoko .inner .text h4 {
  font-size: 1.4em;
  margin-bottom: .5em;
  font-weight: 600;
  color: #222;
}

@media screen and (min-width: 780px) {
.yoko .inner {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#product-evidence .yoko .inner {
  flex-direction: row-reverse;
}
.yoko .inner figure {
  width: 40%;
}
.yoko .inner .text {
  width: calc(60% - 40px);
}
}

@media screen and (max-width: 779px) {
.yoko .inner {
  margin-bottom: 40px;
}
.yoko .inner figure {
  text-align: center;
  margin-bottom: 1em;
}
#product-detail .main .yoko .inner .text {
  padding: 1.6em;
  padding-top: 0;
}
}

/*********************
PRODUCT-OUTLINE
*********************/
#product-outline .btns {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2em;
  gap: 1em;
}

@media screen and (max-width: 480px) {
  #product-outline .btns {
    gap: 0;
  }
}

/*********************
ANIMATION
*********************/
.fadeIn {
  transition: all .8s;
  transition-delay: .2s;
  transform: translateY(30px);
  opacity: 0;
  filter: blur(3px);
}

@media screen and (min-width: 680px) {
  .fadeIn.anime1st {
    transition-delay: .2s;
    transform: translateY(10px);
  }

  .fadeIn.anime2nd {
    transition-delay: .4s;
    transform: translateY(10px);
  }

  .fadeIn.anime3rd {
    transition-delay: .6s;
    transform: translateY(10px);
  }

  .fadeIn.anime4th {
    transition-delay: .8s;
    transform: translateY(10px);
  }
}

.fadeIn.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  filter: blur(0);
}

/* IMG */
.fadeIn.animeIMG {
  transition: all .7s;
  transition-delay: .2s;
  transform: translateX(30px);
  opacity: 0;
  filter: blur(6px);
}

.fadeIn.is-active.animeIMG {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  filter: blur(0);
}


/*********************
SIDE-BANNER
*********************/
.side-banner {
  position: fixed;
  z-index: 10;
  transition: .2s;
}

.side-banner a {
  display: block;
  padding: 1.2em 1em;
  background-color: #222;
  color: white;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .side-banner {
    top: 140px;
    right: 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: pre;
  }

  .side-banner.fixed {
    max-width: 80px;
  }
}

@media screen and (max-width: 767px) {
  .side-banner {
    bottom: 0;
    left: 0;
  }
  .side-banner a {
    width: 40vw;
    min-width: 220px;
  padding: 1em 1.2em;
}
}