@charset "UTF-8";
@import url(common.css);
.eachTextAnime span {
  opacity: 0;
}

/* sugawara 2022-05-09 change */
.eachTextAnime.appeartext span {
  display: inline-block;
  animation: text_anime_on 0.1s ease-out forwards, color_change 3.1s 1.565s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
@keyframes text_fadein {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes color_change {
  0% {
    color: #333;
  }
  100% {
    color: #fff;
  }
}
/* End sugawara change */
/* sugawara 2022-05-09 add
/* loading
---------------------------------------------------------------------------- */
.loading {
  position: fixed;
  background-color: #fff;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}

.loading svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 30%;
  min-width: 250px;
}

.loading svg path.b {
  fill: none;
  stroke: #fff;
  stroke-width: 90;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

.loading svg path {
  fill: none;
  stroke: #333;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  stroke-width: 1;
  animation: handwriting 3s ease-in forwards;
}

@keyframes handwriting {
  0% {
    fill: transparent;
    stroke-dashoffset: 1500;
  }
  50% {
    fill: transparent;
  }
  100% {
    fill: #333;
    stroke-dashoffset: 0;
  }
}
/* End sugawara add */
/* index */
section {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 150px;
  background-color: #ffffff;
}

.sec-title {
  position: relative;
  padding-left: 90px;
  font-size: 1.5em;
}
.sec-title::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0;
  width: 70px;
  height: 1px;
  background-color: #464646;
}

.loading {
  display: block;
  position: fixed;
  background-color: #fff;
  width: 100vw;
  height: 100vh;
}

.mainvisual {
  width: 100%;
  height: 100vh;
  padding: 0;
  background-size: cover;
}
.mainvisual .video {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.mainvisual .video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
}
.mainvisual .catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%) translateY(20%);
  color: #ffffff;
}
.mainvisual .catch h2 {
  font-size: 3.8em;
  margin-bottom: 70px;
  display: block;
  text-shadow: 0 0 18px rgba(82, 82, 82, 0.5);
}
.mainvisual .catch h2 span {
  display: inline-block;
  opacity: 0;
}
.mainvisual .catch p {
  padding-left: 0.75em;
  font-size: 1.625em;
  text-align: center;
  text-shadow: 0 0 14px rgba(82, 82, 82, 0.5);
}
.bn-area{
  padding:20px 0 0 0!important;

}
.bn-area .bn-inner{
  max-width:1140px;
  margin:0 auto;
  text-align: center;

}
.leadtext {
  padding-top: 120px;
}
.leadtext p {
  text-align: center;
  font-size: 1.3em;
}
.leadtext p + p {
  margin-top: 60px;
}

.kodawari h3, .company h3 {
  font-size: 1.8em;
  margin-bottom: 1em;
}

.kodawari .flexbox {
  justify-content: flex-end;
}
.kodawari .box-left {
  position: relative;
  width: calc(50% - 50px);
  max-width: 490px;
  margin-right: 50px;
  padding-bottom: 60px;
}
.kodawari .box-left .link-more {
  bottom: 0;
  right: 50px;
}
.kodawari .box-right {
  width: 50%;
}

.company .flexbox {
  justify-content: flex-start;
}
.company .box-right {
  position: relative;
  width: calc(50% - 50px);
  max-width: 490px;
  margin-left: 50px;
  padding-bottom: 60px;
}
.company .box-right .link-more {
  bottom: 0;
  right: 50px;
}
.company .box-left {
  width: 50%;
}

.product h2, .shop h2 {
  font-size: 2.785em;
  text-align: center;
  margin-bottom: 1em;
}

.product ul {
  flex-wrap: wrap;
}
.product ul li {
  width: calc(50% - 10px);
  margin-bottom: 20px;
}
.product ul li img {
  display: block;
}
.product ul li .photo {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.product ul li .photo img {
  transition: 0.3s all;
  vertical-align: bottom;
}
.product ul li:hover .photo img {
  transform: scale(1.1, 1.1);
  transition: 0.8s all;
}

.bgarea {
  position: relative;
  background-color: inherit;
  padding: 0;
}
.bgarea::before {
  content: "";
  display: block;
  padding-top: 32.5%;
}
.bgarea::after {
  content: "";
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-image: url("../image/top/top_imageborder.jpg");
  background-position: center;
  background-size: 100% auto;
  opacity: 1;
  box-sizing: inherit;
  background-repeat: no-repeat;
}

.shop ul {
  flex-wrap: wrap;
}
.shop ul li {
  width: calc(33.333% - 8px);
}
.shop ul li a.link-more {
  position: relative;
}
.shop ul li a.link-more .photo {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.shop ul li a.link-more .photo img {
  transition: 0.3s all;
  vertical-align: bottom;
}
.shop ul li a.link-more:hover .photo img {
  transform: scale(1.1, 1.1);
  transition: 0.8s all;
}
.shop ul li p {
  position: relative;
  font-size: 0.9em;
  margin-right: 50px;
  text-align: right;
}
.news {
  margin-top:60px;
}
.news .newsarea {
  position: relative;
  padding: 0 170px 0 60px;
}
.news .newsarea ul {
  padding-left: 40px;
}
.news .newsarea ul li {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.125em;
  margin-top: 40px;
  line-height: 1.25em;
}
.news .newsarea ul li .date {
  margin-right: 30px;
}
.news .newsarea ul li .category {
  margin-right: 30px;
  background-color: #dddddd;
  padding: 2px 10px;
  font-size: 0.805em;
}
.news .newsarea .link-more {
  right: 60px;
  bottom: 0;
}

.pagelink .lineTrigger {
  width: calc(50% - 25px);
  padding: 0;
  margin: 0;
  font-size: 1.75em;
  text-align: center;
}
.pagelink .lineTrigger a {
  position: relative;
  display: block;
  padding: 25px;
}
.pagelink .lineTrigger a::before {
  content: "";
  position: absolute;
  right: 46px;
  top: calc(25px + 0.8em);
  height: 8px;
  width: 30px;
  background-image: url("../common_img/arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.pagelink .lineTrigger::before, .pagelink .lineTrigger::after, .pagelink .lineTrigger .line2::before, .pagelink .lineTrigger .line2::after {
  background: #acacac;
}

.inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

/* view more */
.link-more {
  position: absolute;
  font-size: 1.25em;
  overflow: visible;
}
.link-more:hover {
  color: #caaaad;
  transition: all .4s;
  /*??¢ã????¡ã?¼ã?·ã?§ã?³ã??è¨­å??*/
}

/*===========================================================================*/
/*  media quary:1200px  */
/*===========================================================================*/
/*===========================================================================*/
/*  media quary:1000px  */
/*===========================================================================*/
@media screen and (max-width: 1000px) {
  .flexbox {
    flex-wrap: wrap;
  }

  .pagelink .lineTrigger {
    width: calc(50% - 20px);
    font-size: 1.5em;
  }
  .pagelink .lineTrigger a::before {
    right: 30px;
  }
}
/*===========================================================================*/
/*  media quary:768px  */
/*===========================================================================*/
@media screen and (max-width: 768px) {
  section {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 80px;
  }

  .mainvisual {
    margin: 0;
    height: 80vh;
    margin-top: -20px;
  }
  .mainvisual .video {
    height: 80vh;
    margin: 0;
  }
  .mainvisual .catch {
    width: 100%;
    top: 27%;
    transform: translateX(-50%) translateY(27%);
  }
  .mainvisual .catch h2 {
    font-size: 2.25em;
    margin-bottom: 40px;
  }
  .mainvisual .catch p {
    font-size: 1.25em;
  }

  .leadtext {
    padding-top: 80px;
  }
  .leadtext p {
    max-width: 480px;
    margin: 0 auto 30px;
    text-align: left;
    font-size: 1.1em;
  }

  .sec-title {
    padding-left: 50px;
    font-size: 1.1em;
    margin-bottom: 0.75em;
  }
  .sec-title::before {
    top: 1em;
    width: 40px;
  }

  .kodawari h3, .company h3 {
    font-size: 1.4em;
  }

  .kodawari .flexbox {
    justify-content: center;
  }
  .kodawari .box-left {
    position: relative;
    margin-right: 0;
    padding-bottom: 80px;
    width: 100%;
  }
  .kodawari .box-left .link-more {
    bottom: 25px;
    right: 3em;
  }
  .kodawari .box-right {
    width: 100%;
    margin-left: -18px;
    margin-right: -18px;
  }

  .company .flexbox {
    justify-content: center;
    flex-direction: column-reverse;
  }
  .company .box-right {
    width: 100%;
    margin-left: 0;
    position: relative;
    padding-bottom: 80px;
  }
  .company .box-right .link-more {
    bottom: 25px;
    right: 3em;
  }
  .company .box-left {
    width: 100%;
    margin-left: -18px;
    margin-right: -18px;
  }

  .product h2, .shop h2 {
    font-size: 1.75em;
  }

  .product .flexbox {
    display: block;
  }
  .product ul li {
    width: 100%;
    margin-bottom: 10px;
  }

  .bgarea::before {
    padding-top: 70.8%;
  }
  .bgarea::after {
    background-size: cover;
  }

  .shop ul {
    max-width: 373px;
    margin: 0 auto;
  }
  .shop ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  .shop ul li img {
    vertical-align: bottom;
  }

  .news .newsarea {
    padding: 0 0 60px 0;
  }
  .news .newsarea ul {
    padding: 0;
  }
  .news .newsarea ul li {
    display: block;
  }
  .news .newsarea ul li span {
    margin-right: 10px !important;
  }
  .news .newsarea ul li a {
    margin-top: 10px;
  }

  .pagelink .lineTrigger {
    width: 100%;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    font-size: 1.2em;
  }
  .pagelink .lineTrigger a {
    padding: 20px;
  }
  .pagelink .lineTrigger a::before {
    right: 20px;
    top: calc(20px + 0.8em);
  }
}
/*===========================================================================*/
/*  media quary:479px  */
/*===========================================================================*/
@media screen and (max-width: 479px) {
  .blog .kiji-inner {
    display: block;
  }
  .blog .kiji {
    width: 100%;
  }
  .blog .kiji a {
    display: flex;
    justify-content: space-between;
  }
  .blog .kiji a .txt {
    width: calc(100% - 130px);
  }
  .blog .kiji a .txt h2 {
    margin-bottom: 0em;
    border: none;
    font-size: 0.9em;
  }
  .blog .kiji a .thumbnail span {
    top: 0;
    right: 0;
    font-size: 0.6em;
  }
  .blog .kiji a .thumbnail img {
    width: 120px;
    height: 90px;
  }

  .insta ul li {
    padding: 1%;
    width: 48%;
  }
  .insta ul li img {
    width: 160px;
    height: 160px;
    object-fit: cover;
  }
}
/*# sourceMappingURL=style.css.map */

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