@charset "UTF-8";
/* CSS Document */
/*-----------------
MV
------------------*/
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.mv {
  width: 100%;
  height: 100svh;
  position: relative;
  background-color: #ecece7;
  position: sticky;
  top: 0;
  z-index: -1;
}

.mv .mv__slide {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.mv__slide .swiper-slide {
  overflow: hidden;
  height: 100%;
}

.mv__slide .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.mv__slide .swiper-slide-active img,
.mv__slide .swiper-slide-duplicate-active img,
.mv__slide .swiper-slide-prev img {
  -webkit-animation: zoomUp 12s linear 0s;
          animation: zoomUp 12s linear 0s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/* H1 TEXT */
.mv-txt {
  position: absolute;
  left: 7%;
  bottom: 50px;
  z-index: 1;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2rem;
  font-size: max(2.1vw, 22px);
}
@media (max-width: 840px) {
  .mv-txt {
    left: 8%;
    bottom: 50px;
  }
}
@media (max-width: 540px) {
  .mv-txt {
    font-size: 19px;
    left: 30px;
    bottom: 30px;
    letter-spacing: 0.15rem;
  }
}

/*scroll*/
.scroll-bar {
  position: absolute;
  left: 0.7%;
  bottom: 0;
  z-index: 2;
}
@media (max-width: 540px) {
  .scroll-bar {
    display: none;
  }
}

.scroll-bar__text {
  font-size: 11px;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
  height: 100px;
  text-align: right;
}
@media (max-width: 540px) {
  .scroll-bar__text {
    font-size: 10px;
  }
}

.scroll-bar__bar {
  width: 2px;
  height: 40px;
  background: rgb(255, 255, 255);
  margin-left: 8px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 540px) {
  .scroll-bar__bar {
    margin-left: 6px;
  }
}

.scroll-bar__bar::before {
  content: "";
  width: 100%;
  background: #000000;
  position: absolute;
  left: 0;
  top: 0;
  height: 40%;
  -webkit-animation: scroll 1.5s cubic-bezier(1, 0.2, 0.2, 1) infinite;
          animation: scroll 1.5s cubic-bezier(1, 0.2, 0.2, 1) infinite;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 250%, 0);
            transform: translate3d(0, 250%, 0);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 250%, 0);
            transform: translate3d(0, 250%, 0);
  }
}
/*-----------------
 slide-gallery
------------------*/
.top_loop {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: block;
}
.top_loop .loop_slide,
.top_loop .loop_slide2 {
  display: none;
}
.top_loop .loop_slide.slick-initialized,
.top_loop .loop_slide2.slick-initialized {
  display: block;
}
.top_loop .loop_slide div,
.top_loop .loop_slide2 div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_loop .loop_slide div img,
.top_loop .loop_slide2 div img {
  width: 700px;
  height: auto;
}
@media (max-width: 840px) {
  .top_loop .loop_slide div img,
  .top_loop .loop_slide2 div img {
    width: 580px;
  }
}
@media (max-width: 540px) {
  .top_loop .loop_slide div img,
  .top_loop .loop_slide2 div img {
    width: 360px;
  }
}
.top_loop .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: rgba(0, 0, 0, 0.35);
  content: "";
  z-index: 1;
}
.top_loop .sec-gallery-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.top_loop .sec-gallery-inner h2 {
  color: #fff;
  font-size: 45px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.15rem;
}
@media (max-width: 540px) {
  .top_loop .sec-gallery-inner h2 {
    font-size: 35px;
  }
}
.top_loop .button {
  background-color: #fff;
  color: #333 !important;
}
.top_loop .button:hover {
  background-color: #333;
  opacity: 1;
  color: #fff !important;
}
.top_loop .button:after {
  color: #333;
}
.top_loop .button:hover:after {
  color: #fff;
}

/*-----------------
 TITLE
------------------*/
/* tate-title */
@media screen and (min-width: 841px) {
  .sec-title-tate {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    position: absolute;
    top: 160px;
    left: 5%;
  }
  .sec-title-tate .sec-title-tate-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1;
    color: #333;
  }
  .sec-title-tate .sec-title-tate-txt:after {
    display: inline-block;
    width: 2px;
    height: 25px;
    margin-top: 10px;
    margin-left: -4px;
    background-color: #333;
    content: "";
  }
}
@media screen and (max-width: 840px) {
  .sec-title-tate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    color: #333;
    margin-bottom: 45px;
    margin-left: 19px;
  }
  .sec-title-tate:before {
    display: inline-block;
    width: 25px;
    height: 2px;
    margin-top: 2px;
    margin-right: 10px;
    background-color: #333;
    content: "";
  }
}
@media screen and (max-width: 540px) {
  .sec-title-tate {
    font-size: 2.8rem;
    margin-left: 0px;
    margin-bottom: 30px;
    overflow: hidden;
  }
  .sec-title-tate:before {
    width: 20px;
  }
}
/* top interview, faq*/
.sec-title-wrap {
  margin-bottom: 40px;
}
@media (max-width: 840px) {
  .sec-title-wrap {
    width: 88%;
    margin-left: auto;
    margin-right: auto;
  }
}
.sec-title-wrap .jp-large {
  margin-bottom: 20px;
}

/* border-title（TOP PRODUCT） */
.border-center-title {
  position: relative;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 540px) {
  .border-center-title {
    margin-bottom: 70px;
  }
}
.border-center-title .en {
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
  line-height: 1;
}
@media (max-width: 540px) {
  .border-center-title .en {
    font-size: 3.2rem;
  }
}
.border-center-title:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 40px;
  margin: 0 auto 30px;
  background: #333;
}
@media (max-width: 540px) {
  .border-center-title:before {
    height: 35px;
    margin-bottom: 20px;
  }
}

/* sec-title-en(TOP-SNS) */
.sec-title-en {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
  margin-bottom: 35px;
}
@media (max-width: 540px) {
  .sec-title-en {
    font-size: 2.8rem;
  }
}

/*-----------------
 right-col
------------------*/
.rt-container {
  width: 83%;
  margin-left: auto;
  margin-right: 0;
  overflow: hidden;
}
@media (max-width: 840px) {
  .rt-container {
    width: 100%;
    margin-right: auto;
    padding-left: 4%;
    padding-right: 4%;
  }
}

/*-----------------
 concept
------------------*/
.t-concept:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 66.6%;
  height: 700px;
  content: "";
  background-color: #ecece7;
}
@media (max-width: 840px) {
  .t-concept:before {
    height: 530px;
  }
}
@media (max-width: 540px) {
  .t-concept:before {
    width: 65%;
    height: 340px;
  }
}

.concept-title-wrap {
  margin-bottom: 88px;
  margin-left: 13.8%;
  position: relative;
}
@media (max-width: 540px) {
  .concept-title-wrap {
    margin-bottom: 40px;
    margin-left: 26px;
  }
}

.line-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-size: 1.8rem;
  color: #838f8f;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-bottom: 35px;
  margin-left: -28px;
}
@media (max-width: 540px) {
  .line-title {
    margin-bottom: 10px;
    font-size: 1.5rem;
    margin-left: -20px;
  }
}
.line-title:before {
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-top: 2px;
  margin-right: 10px;
  background-color: #838f8f;
  content: "";
}
@media (max-width: 540px) {
  .line-title:before {
    width: 15px;
  }
}

.t-concept .concept-img img {
  width: 100%;
  height: auto;
}

.t-concept .concept-img-1 {
  width: 28.26%;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 540px) {
  .t-concept .concept-img-1 {
    position: relative;
    width: 45%;
    margin-bottom: 50px;
  }
}
.t-concept .concept-img-2 {
  width: 15.69%;
  margin-left: auto;
  margin-right: 0;
  margin-top: -100px;
}
@media (max-width: 540px) {
  .t-concept .concept-img-2 {
    margin-top: 50px;
    width: 28%;
  }
}
.t-concept .concept-img-3 {
  width: 29.86%;
  margin-top: 5%;
  margin-right: 21%;
  margin-left: auto;
}
@media (max-width: 540px) {
  .t-concept .concept-img-3 {
    margin-top: -70px;
    margin-right: 35%;
    width: 50%;
  }
}

.t-concept .txt-wrap {
  padding-left: 39.9%;
  padding-top: 8vw;
  padding-right: 7%;
  z-index: 1;
  position: relative;
}
@media (max-width: 840px) {
  .t-concept .txt-wrap {
    padding-left: 36%;
    padding-top: 0;
  }
}
@media (max-width: 540px) {
  .t-concept .txt-wrap {
    padding-left: 7%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}
.t-concept .txt-wrap .danraku {
  margin-bottom: 40px;
}
@media (max-width: 540px) {
  .t-concept .txt-wrap .danraku {
    margin-bottom: 30px;
  }
}
.t-concept .txt-wrap .row-btn .line-button {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/*-----------------
 PRODUCT
------------------*/
.t-product .inner {
  width: 80%;
}
@media (max-width: 840px) {
  .t-product .inner {
    width: 100%;
  }
}

.product-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-flex:not(:last-of-type) {
  margin-bottom: 150px;
}
.product-flex .flex-left {
  width: 28.3%;
  height: 100%;
  position: sticky;
  top: 100px;
  text-align: left;
}
@media (max-width: 840px) {
  .product-flex .flex-left {
    padding-left: 40px;
  }
}
@media (max-width: 540px) {
  .product-flex .flex-left {
    width: 18%;
    padding-left: 0;
  }
}
.product-flex .flex-right {
  width: 71.7%;
}
@media (max-width: 540px) {
  .product-flex .flex-right {
    width: 82%;
  }
}

.t-product .number {
  overflow: hidden;
  line-height: 1;
  display: block;
  color: #333;
  margin-bottom: 30px;
  width: 50px;
  text-align: center;
}
@media (max-width: 540px) {
  .t-product .number {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
}
.t-product .number .en {
  font-size: 3.5rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
}
@media (max-width: 540px) {
  .t-product .number .en {
    font-size: 2.8rem;
  }
}
.t-product .number .en:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 12px;
  background: #333;
}

.t-product .product-title span {
  display: block;
}
.t-product .product-title .en {
  color: #838f8f;
  font-size: 14px;
  font-weight: 400;
  margin-top: 6px;
}

@media (max-width: 540px) {
  .t-product .product-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .t-product .product-title span {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    line-height: 1;
  }
  .t-product .product-title .jp-large {
    margin-bottom: 25px;
    letter-spacing: 0.1rem;
    font-size: 21px;
  }
  .t-product .product-title .en {
    margin-top: 0;
    font-size: 13px;
    letter-spacing: 0.15rem;
  }
}
.t-product .product-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 150px;
}
@media (max-width: 540px) {
  .t-product .product-img {
    margin-bottom: 100px;
  }
}
.t-product .product-img img {
  height: auto;
}
.t-product .product-img img:nth-of-type(1) {
  width: 62.95%;
}
.t-product .product-img img:nth-of-type(2) {
  width: 31.47%;
  margin-bottom: -70px;
}

.t-product .product-txt {
  padding-left: 6.5%;
  padding-right: 6.5%;
}
.t-product .product-txt h4 {
  margin-bottom: 30px;
}
@media (max-width: 540px) {
  .t-product .product-txt h4 {
    margin-bottom: 25px;
  }
}
.t-product .product-txt .row-btn {
  margin-top: 35px;
}
.t-product .product-txt .row-btn .line-button {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/*-----------------
 interview
------------------*/
.t-interview {
  background-color: #ecece7;
}

/*-----------------
 faq
------------------*/
.t-faq_area {
  width: 85%;
  position: relative;
  display: block;
  z-index: 2;
}
@media (max-width: 840px) {
  .t-faq_area {
    width: 88%;
    margin-left: auto;
    margin-right: auto;
  }
}

.t-faq_area .accordion_one .ac_header {
  border-bottom: 1px solid #ccc;
  padding: 12px 30px 12px 10px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 540px) {
  .t-faq_area .accordion_one .ac_header {
    padding-left: 0px;
  }
}

.t-faq_area .accordion_one .ac_header:hover {
  background-color: #f0f0f0;
}

.t-faq_area .accordion_one .ac_header.open {
  background-color: #f0f0f0;
}

.t-faq_area .accordion_one .ac_header.active {
  background-color: #333;
}

.t-faq_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 18px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (max-width: 540px) {
  .t-faq_area .accordion_one .ac_header .i_box {
    width: 14px;
    height: 14px;
    right: 5px;
  }
}

.t-faq_area .accordion_one .ac_header .i_box:before, .t-faq_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}

.t-faq_area .accordion_one .ac_header .i_box:before {
  border-top: 1px solid #333;
  width: 17px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
@media (max-width: 540px) {
  .t-faq_area .accordion_one .ac_header .i_box:before {
    width: 14px;
  }
}

.t-faq_area .accordion_one .ac_header .i_box:after {
  border-left: 1px solid #333;
  width: 0;
  height: 17px;
  top: 0;
  bottom: 0;
  right: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 540px) {
  .t-faq_area .accordion_one .ac_header .i_box:after {
    height: 14px;
    right: 6px;
  }
}

.t-faq_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}

.t-faq_area .accordion_one .ac_inner {
  display: none;
  padding: 10px 15px 25px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #ccc;
}

.t-faq_area .p-faq__headinner {
  display: block;
  padding-left: 30px;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 540px) {
  .t-faq_area .p-faq__headinner {
    font-size: 14px;
    padding-left: 22px;
  }
}

.t-faq_area .p-faq__bodyinner {
  font-size: 1.4rem;
}
@media (max-width: 540px) {
  .t-faq_area .p-faq__bodyinner {
    font-size: 13px;
  }
}
.t-faq_area .p-faq__bodyinner p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.t-faq_area .p-faq__bodyinner a {
  text-decoration: underline;
  color: #cc0000;
}

.t-faq_area .p-faq__headinner::before {
  position: absolute;
  left: 0;
  top: 40%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "Q．";
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 2.3rem;
  color: #838f8f;
}
@media (max-width: 540px) {
  .t-faq_area .p-faq__headinner::before {
    font-size: 20px;
  }
}

.t-faq .line-button {
  margin: 50px 0 0 auto;
}
@media (max-width: 540px) {
  .t-faq .line-button {
    margin-top: 30px;
  }
}

/*-----------------
 SNS
------------------*/
.t-sns {
  background-color: #f6f6f6;
  text-align: center;
}

.t-sns-list {
  width: 760px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.t-sns-list li {
  width: 50%;
}
.t-sns-list li:first-child {
  border-right: 1px solid #6d6d6d;
}
.t-sns-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 15px;
  padding-bottom: 15px;
}
.t-sns-list li a i {
  font-size: 30px;
  margin-bottom: 12px;
}
.t-sns-list li a .en {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media (max-width: 540px) {
  .t-sns-list li a .en {
    font-size: 1.8rem;
  }
}