@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');


body {
  padding: 0;
  margin: 0;
}

html { font-size: 62.5%; } /* font-size‚Í16px‚Ì62.5%‚Ì10px */

a { text-decoration: none; }

#wrap img {
  line-height: 0;
  vertical-align: bottom;
  width: 100%;
  -webkit-backface-visibility: hidden;
}

/* contents */
.img_none {display: none;}

#wrap {
  width: 1000px;
  display: block;
  margin: 0 auto;
  /* font-family: 'Noto Serif JP', sans-serif; */
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #ffffff;
}

#wrap .mv {
  width: 100%;
  position: relative;
  background-color: #ffffff;
}

#wrap .mv_logo {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#wrap .mv_logo .img {
  width: 100%;
}

#wrap .mv ul {
  margin-top: 0;
  margin-bottom: 0;
}

#wrap .lead {
  width: 62.5%;
  display: block;
  margin: 90px auto 0px;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.9;
  text-align: center;
  color: #000000;
}

#wrap p {
  margin: 0;
  padding: 0;
}

#wrap #profile.ses{
  width: 430px;
  display: block;
  margin: 200px auto 0;
}

#wrap #profile .prof {
  width: 430px;
  display: block;
  margin: 0 auto 0;

  font-family: 'Noto Serif JP', sans-serif; 
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: -0.01em;
}

#wrap #profile .prof .name01  {
  font-size: 3.1rem;
  margin: 0 auto 0;
}

#wrap #profile .prof .name02  {
  font-size: 2.38rem;
  margin: 0 auto 0;
}

#wrap #profile .prof img {
  width: 100%;
}

#wrap #profile .profile_txt {
  width: 100%;
  display: block;
  margin: 30px auto 0;
  font-family: 'Noto Serif JP', sans-serif; 
}

#wrap #profile .profile_txt p {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000000;
  text-align: left;
}
#wrap #profile .insta a {
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  color: #000000;
  border-bottom: 1px solid #000000;
}

/* ses */
#wrap .ses {
  width: 1000px;
  display: block;
  margin: 200px auto 0;
}

#wrap .ses h2 {
  width: 100%;
  font-size: 3.4rem;
  line-height: 1.4;
  color: #111111;
  font-weight: 700;
  letter-spacing: 0em;
  margin: 0;
}

#wrap .ses h3 {
  width: 100%;
  font-size: 3rem;
  line-height: 1.5;
  color: #111111;
  font-weight: 500;
  letter-spacing: 0em;
  margin: 0;
}

#wrap .sec_txt {
  text-align: center;
  color: #444444;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.9;
}

#wrap .price {
  width: 100%;
  text-align: right;
  font-weight: 300;
  font-size: 10px;
  line-height: 2;
}

#wrap .checkItem {
  width: 8.5rem;
  height: 8.5rem;
}

#wrap .btn_check {
  width: 63px;
  margin: 1.4rem auto 0 0;
}

#wrap .relativeBox {
  position: relative;
  width: 100%;
}

#wrap .relativeBox > img {
  width: 100%;
}

#wrap .btn_check02 img,
#wrap .btn_check img {
  width: 100%;
}



/* chgImg */
#wrap .crd_area {
  width: 100%;
    display: flex;
    justify-content: space-between;
}

#wrap .chgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Animation base */
.animated {
  -webkit-animation-duration: 3s;
  opacity: 0;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.imgMain {
  line-height: 0;
  filter: grayscale(100); 
  /* transition: filter 0.2s; */
}

.imgMain.on {
  filter: grayscale(0); 
  transition: filter 4s;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.once {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.jsImage {
  -webkit-animation-name: fadeInUp;
/*  -webkit-animation-name: fadeIn; */
  animation-name: fadeInUp;
/*  animation-name: fadeIn; */
  transition: 3s;
  animation-duration: 1.5s; 
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* slideUp */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}


/* sec01 */
#wrap #sec01.ses {
  margin-top: 100px;
}

#wrap #sec01 h2 {
  position: absolute;
  text-align: center;
  position: absolute;
  width: 50%;
  top: 2%;
  left: 25%;
  z-index: 2;
}

#wrap #sec01 h3 {
  position: absolute;
  text-align: left;
  position: absolute;
  width: 48%;
  top: 33.5%;
  left: 46%;
  z-index: 2;
}

#wrap #sec01 .checkItem {
  position: absolute;
  top: 6%;
  left: 65%;
  z-index: 2;
}

#wrap #sec01 .sec_txt {
  text-align: left;
  position: absolute;
  width: 48%;
  top: 42%;
  left: 46%;
  z-index: 2;
}

#wrap #sec01 .img01 {
  position: absolute;
  width: 50%;
  top: 0;
  left: 25%;
  z-index: 2;
}

#wrap #sec01 .img02 {
  position: absolute;
  width: 39%;
  top: 38%;
  left: 4.4%;
  z-index: 1;
}

#wrap #sec01 .img03 {
  position: absolute;
  width: 34%;
  bottom: 17.5%;
  left: 52.4%;
  z-index: 1;
}

#wrap #sec01 .img04 {
  position: absolute;
  width: 30%;
  bottom: 0;
  left: 9%;
  z-index: 1;
}

#wrap #sec01 .price {
  position: absolute;
  width: 14%;
  right: 15%;
  bottom: 8%;
  z-index: 1;
}

#wrap #sec01 .btn_check {
  position: absolute;
  bottom: 6%;
  right: 15%;
  z-index: 1;
}

/* sec02 */
#wrap #sec02 h2 {
  position: absolute;
  text-align: right;
  position: absolute;
  width: 50%;
  top: 2.5%;
  right: 5%;
  z-index: 1;
}

#wrap #sec02 h3 {
  position: absolute;
  text-align: left;
  position: absolute;
  width: 48%;
  top: 25.7%;
  left: 50%;
  z-index: 3;
}

#wrap #sec02 .checkItem {
  position: absolute;
  top: 8.5%;
  right: 5%;
  z-index: 1;
}

#wrap #sec02 .sec_txt {
  text-align: left;
  position: absolute;
  width: 48%;
  top: 45%;
  left: 3%;
  z-index: 1;
}

#wrap #sec02 .img01 {
  position: absolute;
  width: 53%;
  top: 0;
  left: 5%;
  z-index: 2;
}

#wrap #sec02 .img02 {
  position: absolute;
  width: 45.6%;
  top: 32.8%;
  right: 3.8%;
  z-index: 1;
}

#wrap #sec02 .img03 {
  position: absolute;
  width: 34%;
  bottom: 15%;
  left: 9.3%;
  z-index: 1;
}

#wrap #sec02 .img04 {
  position: absolute;
  width: 35.7%;
  bottom: 0;
  right: 14%;
  z-index: 1;
}

#wrap #sec02 .price {
  position: absolute;
  width: 14%;
  left: 29%;
  bottom: 5%;
  z-index: 1;
}

#wrap #sec02 .btn_check {
  position: absolute;
  bottom: 3.5%;
  left: 36.5%;
  z-index: 1;
}

/* sec03 */
#wrap #sec03 .cntnr01 {
  display: flex;
}

#wrap #sec03 .in01 {
  width: 90%;
  text-align: right;
}

#wrap #sec03 .in02 {
  width: 10%;
}

#wrap #sec03 .in03 {
  width: 50%;
}

#wrap #sec03 h2 {
  text-align: right;
}

#wrap #sec03 h3 {
  width: 98%;
  margin: 60px 0 0 2%;
}

#wrap #sec03 .checkItem {
  margin: 7px 0 0 auto
}

#wrap #sec03 .sec_txt {
  width: 98%;
  margin: 60px 0 0 2%;
  text-align: left;
}

#wrap #sec03 .img01 {
  width: 96%;
  margin-top: 5px;
  margin-left: 4%;
}

#wrap #sec03 .img02 {
  width: 96%;
  text-align: left;
  margin-top: 5px;
}

#wrap #sec03 .price {
  margin: 40px 0 0 2%;
  text-align: left;
}

#wrap #sec03 .btn_check {
  margin: 2rem 0 0 2%;
}

/* sec04 */
#wrap #sec04 h3 {
  position: absolute;
  text-align: left;
  position: absolute;
  width: 51%;
  top: 2.5%;
  left: 48%;
  z-index: 1;
}

#wrap #sec04 .sec_txt {
  text-align: left;
  position: absolute;
  width: 52%;
  top: 10.5%;
  left: 48%;
  z-index: 1;
}

#wrap #sec04 .img01 {
  position: absolute;
  width: 37%;
  top: 0;
  left: 8.4%;
  z-index: 1;
}

#wrap #sec04 .img02 {
  position: absolute;
  width: 37%;
  top: 36.4%;
  left: 8.4%;
  z-index: 1;
}

#wrap #sec04 .img03 {
  position: absolute;
  width: 37%;
  bottom: 36.4%;
  right: 8.4%;
  z-index: 1;
}

#wrap #sec04 .img04 {
  position: absolute;
  width: 37%;
  bottom: 0;
  right: 8.4%;
  z-index: 1;
}

#wrap #sec04 .price {
  position: absolute;
  width: 14%;
  left: 31.5%;
  bottom: 13%;
  z-index: 1;
}

#wrap #sec04 .btn_check {
  position: absolute;
  bottom: 11%;
  left: 39%;
  z-index: 1;
}

/* sec05 */
#wrap #sec05 h2 {
  position: absolute;
  width: 40.5%;
  top: 0.5%;
  right: 5%;
  z-index: 1;
}

#wrap #sec05 h3 {
  position: absolute;
  text-align: left;
  position: absolute;
  width: 80%;
  top: 46.5%;
  left: 6%;
  z-index: 1;
}

#wrap #sec05 .checkItem {
  position: absolute;
  top: 6.5%;
  right: 7%;
  z-index: 4;
}

#wrap #sec05 .sec_txt {
  text-align: left;
  position: absolute;
  width: 48%;
  top: 56%;
  left: 6%;
  z-index: 1;
}

#wrap #sec05 .img01 {
  position: absolute;
  width: 31%;
  top: 0;
  left: 5.2%;
  z-index: 1;
}

#wrap #sec05 .img02 {
  position: absolute;
  width: 31%;;
  top: 10%;
  right: 34.5%;
  z-index: 2;
}

#wrap #sec05 .img03 {
  position: absolute;
  width: 31%;
  top: 5.5%;
  right: 5.2%;
  z-index: 3;
}

#wrap #sec05 .img04 {
  position: absolute;
  width: 26%;
  bottom: 0;
  left: 15.5%;
  z-index: 1;
}

#wrap #sec05 .img05 {
  position: absolute;
  width: 37%;
  bottom: 5%;
  right: 9.8%;
  z-index: 1;
}

#wrap #sec05 .price {
  width: 13%;
  margin: 2rem auto 0 28.4% ;
}

#wrap #sec05 .btn_check {
  margin: 2rem auto 0 34.8% ;
  z-index: 1;
}

/* sec06 */
#wrap #sec06 .cntnr02 {
  width: 73%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-around;
}

#wrap #sec06 h3 {
  width: 98%;
  text-align: center;
  margin: 55px auto;
}

#wrap #sec06 .sec_txt {
  width: 98%;
  margin: 60px 0 0 2%;
  text-align: center;
}

#wrap #sec06 .img01 {
  width: 44.5%;
  margin-left: auto;
  margin-right: auto;
}

#wrap #sec06 .img02 {
  width: 97.3%;
}

#wrap #sec06 .price {
  margin: 40px auto 0 ;
  text-align: center;
}

#wrap #sec06 .btn_check {
  margin: 2rem 0 0 46.7%;
}

/* sec07 */
#wrap #sec07 h2 {
  position: absolute;
  width: 24%;
  top: 7%;
  left: 31%;
  z-index: 2;
}

#wrap #sec07 h3 {
  position: absolute;
  text-align: left;
  position: absolute;
  width: 80%;
  top: 62%;
  left: 6%;
  z-index: 1;
}

#wrap #sec07 .checkItem {
  position: absolute;
  top: 11%;
  left: 45%;
  z-index: 4;
}

#wrap #sec07 .sec_txt {
  text-align: left;
  position: absolute;
  width: 48%;
  top: 70.5%;
  left: 6%;
  z-index: 1;
}

#wrap #sec07 .img01 {
  position: absolute;
  width: 50%;
  top: 0;
  right: 6%;
  z-index: 1;
}

#wrap #sec07 .crd_area {
  position: absolute;
  width: 36%;
  top: 60%;
  right: 6%;
  z-index: 2
}

#wrap #sec07 .price {
  position: absolute;
  width: 13%;
  bottom: 3%;
  left: 38%;
  z-index: 1
}

#wrap #sec07 .btn_check {
  position: absolute;
  bottom: 0.5%;
  left: 45%;
  z-index: 1
}

/* sec08 */
#wrap #sec08 .cntnr03 {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-around;
}

#wrap #sec08 .in05 {
  width: 50%;
}

#wrap #sec08 h2 {
  text-align: center;
  margin: 6rem auto;
}

#wrap #sec08 h3 {
  text-align: center;
  margin: 0 auto 7rem;
}

#wrap #sec08 .sec_txt {
  position: absolute;
  width: 45%;
  top: 0;
  left: 13.8%;
  text-align: left;
}

#wrap #sec08 .img01 {
  width: 98%;
  margin-left: auto;
  margin-right: auto;
}

#wrap #sec08 .checkItem {
  position: absolute;
  top: 3.5%;
  right: 13.8%;
  z-index: 2;
}

#wrap #sec08 .img02 {
  position: absolute;
  width: 32.5%;
  bottom: 0;
  left: 17.2%;
  z-index: 1;
}

#wrap #sec08 .img03 {
  position: absolute;
  width: 27%;
  top: 13%;
  right: 13.8%;
  z-index: 1;
}

#wrap #sec08 .price {
  position: absolute;
  width: 15%;
  bottom: 6%;
  left: 59%;
  text-align: left;
}

#wrap #sec08 .btn_check {
  position: absolute;
  bottom: 1%;
  left: 59%;
}

/* link */
#wrap .btnLink {
  width: 410px;
  margin: 190px auto 0;
}

#wrap .btnLink02 {
  width: 410px;
  margin: 90px auto 0;
}

#wrap .btnLink02 img,
#wrap .btnLink img {
  max-width: 100%;
}

#wrap .AIC {
  width: 284px;
  display: block;
  margin: 0 auto;
}

#wrap .COS {
  width: 284px;
  display: block;
  margin: 140px auto 0;
}

#wrap .Info {
  width: 97.56%;
  display: block;
  margin: 200px auto 0;
}

#wrap .brand_info {
  width: 100%;
  margin-top: 90px;
}

#wrap .brand_info .logo {
  width: 68%;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

#wrap .brand_info .snsLink {
  padding: 0;
  width: 60%;
  list-style-type: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  margin: 55px auto 0;
}

#wrap .snsLink li {
  width: 33%;
  text-align: center;
  vertical-align: middle;
}

#wrap .snsLink li img {
  width: 36px;
}

#wrap .snsLink li:nth-child(2) img {
  width: 33px;
}

#wrap .staff-credit {
  font-family: 'Noto Serif JP', sans-serif; 
  text-align: center;
  padding-top: 60px;
  padding-bottom: 50px;
}

#wrap .staff-credit .staff_wrap {
    display: inline-block;
}

#wrap .staff-credit .staff_wrap p {
    font-size: 14px;
    text-align: left;
    color: #666666;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.68;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  /* width: 82%; */
  width: 100%;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 20s infinite linear 0.5s both;
}

.scroll-infinity__item {
  /* width: calc(100vw / 3); */
  width: 500px;
}
.scroll-infinity__item>img {
  width: 100%;
}

#sec03 .scroll-infinity__wrap {
  width: 100%;
}
