/* index.html
---------------------------------------------------- */
#splash-animation {
  position: fixed;
  z-index: 9999;
  inset: 0;
  animation: splash-bg 3s ease forwards;
}
#splash-animation .sa-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}
#splash-animation .sa-inner .sa-logo {
  width: 130px;
  opacity: 0;
  transform: scale(0.9);
  animation: logo-fade 2.4s ease forwards;
  animation-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  #splash-animation .sa-inner .sa-logo {
    width: 100px;
  }
}
#splash-animation .sa-inner .sa-logo img {
  width: 100%;
  height: auto;
}

@keyframes logo-fade {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  60% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes splash-bg {
  0%, 75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
#main-visual {
  padding: 0 10px;
}
#main-visual .mv-inner {
  position: relative;
}
#main-visual .mv-slider {
  width: 100%;
  height: calc(100vh - max(5.625rem, 80px));
}
@media screen and (max-width: 1199px) {
  #main-visual .mv-slider {
    height: calc(100vh - 80px);
  }
}
@media screen and (max-width: 767px) {
  #main-visual .mv-slider {
    height: calc(100svh - 60px);
  }
}
#main-visual .mv-slider .slider-mv {
  width: 100%;
  height: 100%;
}
#main-visual .mv-slider .slider-mv .swiper-img {
  width: 100%;
  height: 100%;
}
#main-visual .mv-slider .slider-mv .swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes zoomPan {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
#main-visual .mv-slider .swiper-slide-active .swiper-img img,
#main-visual .mv-slider .swiper-slide-duplicate-active .swiper-img img,
#main-visual .mv-slider .swiper-slide-prev .swiper-img img {
  animation: zoomPan 8s linear 0s normal both;
}

.__content-style01 {
  position: relative;
  color: #fff;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .__content-style01::before {
    position: absolute;
    top: 0;
    z-index: -1;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.__content-style01 .sec-inner {
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .__content-style01 .sec-inner {
    width: 100%;
  }
}
.__content-style01 .sec-inner .sec-ttl {
  text-align: start;
}
.__content-style01 .sec-inner .sec-ttl h2 span.__en {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .__content-style01 .sec-inner .sec-ttl h2 span.__en {
    display: block;
  }
}
.__content-style01 .sec-inner .sec-content p {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .__content-style01 .sec-inner .sec-content p {
    line-height: 2em;
    margin-top: 3em;
  }
}
.__content-style01 .sec-inner .sec-content p:nth-of-type(1) {
  margin-top: 0;
}

/* sec-news
---------------------------------------------------- */
.sec-news .btn-wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 6em;
}
@media screen and (max-width: 1199px) {
  .sec-news .btn-wrap {
    margin-top: 4em;
  }
}
.sec-news .btn-wrap a {
  padding: 0.4em 0;
}
@media screen and (max-width: 767px) {
  .sec-news .btn-wrap a {
    font-size: min(4vw, 1em);
  }
}
.sec-news .btn-wrap a i {
  font-size: 0.75em;
  margin-left: 0.8em;
}

/* sec-concept
---------------------------------------------------- */
.sec-concept {
  background-image: url(../images/concept-bgimg.jpg);
  background-position: 65% 50%;
  padding: 120px 0;
}
@media screen and (max-width: 1199px) {
  .sec-concept {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-concept {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}
.sec-concept .sec-inner .sec-content p.__name {
  font-size: 0.9em;
  margin-top: 6em;
}
.sec-concept .sec-inner .sec-content p.__name img {
  display: inline-block;
  margin-bottom: -0.4em;
  margin-left: 2em;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 1199px) {
  .sec-concept .sec-inner .sec-content p.__name img {
    width: 9em;
    height: auto;
  }
}

/* sec-products
---------------------------------------------------- */
.sec-products {
  overflow-x: clip;
}
.sec-products .products-list {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .sec-products .products-list {
    margin-top: 0;
  }
}
.sec-products .products-list ul .products-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5rem;
}
.sec-products .products-list ul .products-list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1199px) {
  .sec-products .products-list ul .products-list-item {
    margin-top: 80px;
  }
}
@media screen and (max-width: 991px) {
  .sec-products .products-list ul .products-list-item {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sec-products .products-list ul .products-list-item {
    margin-top: 60px;
  }
}
.sec-products .products-list ul .products-list-item .item-txt {
  width: calc(50% - 6em);
  margin-bottom: 2em;
}
@media screen and (max-width: 1199px) {
  .sec-products .products-list ul .products-list-item .item-txt {
    width: calc(50% - 5rem);
  }
}
@media screen and (max-width: 991px) {
  .sec-products .products-list ul .products-list-item .item-txt {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec-products .products-list ul .products-list-item .item-txt {
    margin-bottom: 1em;
  }
}
.sec-products .products-list ul .products-list-item .item-txt h3 {
  font-size: 5rem;
  font-family: "Cormorant Upright", "Shippori Mincho", serif;
}
@media screen and (max-width: 991px) {
  .sec-products .products-list ul .products-list-item .item-txt h3 {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 767px) {
  .sec-products .products-list ul .products-list-item .item-txt h3 {
    font-size: 2em;
  }
}
.sec-products .products-list ul .products-list-item .item-txt h3.__seal {
  font-size: 3.75rem;
}
@media screen and (max-width: 991px) {
  .sec-products .products-list ul .products-list-item .item-txt h3.__seal {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 767px) {
  .sec-products .products-list ul .products-list-item .item-txt h3.__seal {
    font-size: 2em;
  }
}
.sec-products .products-list ul .products-list-item .item-txt p {
  margin-top: 1em;
}
@media screen and (max-width: 991px) {
  .sec-products .products-list ul .products-list-item .item-txt p {
    margin-top: 0;
    margin-bottom: 1em;
  }
}
.sec-products .products-list ul .products-list-item .item-img {
  position: relative;
  width: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .sec-products .products-list ul .products-list-item .item-img {
    width: 100%;
  }
}
.sec-products .products-list ul .products-list-item .item-img .item-slider {
  width: 100%;
  padding-bottom: 2em;
}
.sec-products .products-list ul .products-list-item .item-img .item-slider .swiper-wrapper .swiper-slide .swiper-img {
  width: 100%;
  aspect-ratio: 3/2;
}
.sec-products .products-list ul .products-list-item .item-img .item-slider .swiper-wrapper .swiper-slide .swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-products .products-list ul .products-list-item .item-img .swiper-button-next,
.sec-products .products-list ul .products-list-item .item-img .swiper-button-prev {
  width: -moz-fit-content;
  width: fit-content;
  --swiper-navigation-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: all 0.48s ease;
}
.sec-products .products-list ul .products-list-item .item-img .swiper-button-next::after,
.sec-products .products-list ul .products-list-item .item-img .swiper-button-prev::after {
  font-size: 1.5em;
}
@media screen and (max-width: 767px) {
  .sec-products .products-list ul .products-list-item .item-img .swiper-button-next::after,
  .sec-products .products-list ul .products-list-item .item-img .swiper-button-prev::after {
    font-size: 1em;
  }
}
.sec-products .products-list ul .products-list-item .item-img .swiper-button-next {
  right: 1.6em;
}
@media screen and (max-width: 767px) {
  .sec-products .products-list ul .products-list-item .item-img .swiper-button-next {
    right: 1em;
  }
}
.sec-products .products-list ul .products-list-item .item-img .swiper-button-prev {
  left: 1.6em;
}
@media screen and (max-width: 767px) {
  .sec-products .products-list ul .products-list-item .item-img .swiper-button-prev {
    left: 1em;
  }
}
.sec-products .products-list ul .products-list-item .item-img:hover .swiper-button-next,
.sec-products .products-list ul .products-list-item .item-img:hover .swiper-button-prev {
  opacity: 1;
}
.sec-products .products-list ul .products-list-item .item-img .swiper-pagination {
  width: -moz-fit-content;
  width: fit-content;
  left: initial;
  bottom: 0;
  right: 0;
}
.sec-products .products-list ul .products-list-item .item-img .swiper-pagination-bullet {
  background-color: #333;
  width: 0.4em;
  height: 0.4em;
  margin: 0 0.2em;
}
.sec-products .repair-content {
  background-image: url(../images/repair-bgimg.jpg);
  background-position: 30% 50%;
  padding: 140px 0;
}
@media screen and (max-width: 1199px) {
  .sec-products .repair-content {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-products .repair-content {
    padding: 90px 0;
  }
}
.sec-products .repair-content .sec-content p.__info {
  line-height: 2em;
}
.sec-products .repair-content .sec-content p span.__num {
  font-size: 1.5em;
  line-height: 1em;
  margin-left: 0.4em;
}
.sec-products .repair-content .sec-content p span.__num a {
  display: inline;
  font-size: 1em;
}
.sec-products .howto-content {
  background-image: url(../images/bgimg-fade.jpg);
  background-size: cover;
  background-position: 0% 0%;
}
.sec-products .howto-content .__inner {
  position: relative;
  z-index: 2;
  margin-top: 1em;
}
@media screen and (max-width: 1199px) {
  .sec-products .howto-content .__inner {
    margin-top: 0;
  }
}
.sec-products .howto-content .content-ttl {
  margin-bottom: 2em;
}
.sec-products .howto-content .content-ttl h3 {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1199px) {
  .sec-products .howto-content .content-ttl h3 {
    font-size: 1.125em;
  }
}
.sec-products .howto-content .video-wrap {
  width: 65.625rem;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .sec-products .howto-content .video-wrap {
    width: min(100%, 800px);
  }
}
.sec-products .howto-content .video-wrap video {
  width: 100%;
}

/* sec-sns
---------------------------------------------------- */
.sec-sns .sec-inner {
  padding-bottom: 0;
}
.sec-sns .sns-link-list {
  width: 65.625rem;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .sec-sns .sns-link-list {
    width: min(100%, 800px);
  }
}
.sec-sns .sns-link-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec-sns .sns-link-list ul .link-list-item {
  width: calc(33.3333333333% - 1.3333333333em);
}
@media screen and (max-width: 1199px) {
  .sec-sns .sns-link-list ul .link-list-item {
    width: calc(33.3333333333% - 1.6666666667rem);
  }
}
@media screen and (max-width: 767px) {
  .sec-sns .sns-link-list ul .link-list-item {
    width: 100%;
    margin-top: 2.4em;
  }
  .sec-sns .sns-link-list ul .link-list-item:nth-of-type(1) {
    margin-top: 0;
  }
}
.sec-sns .sns-link-list ul .link-list-item a {
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 2em;
  margin-top: 0.6em;
  background-color: #fff;
  box-shadow: 0px 0px 16px 0px rgba(120, 120, 120, 0.1);
  transition: all 0.4s ease;
}
.sec-sns .sns-link-list ul .link-list-item a .item-icon {
  width: 5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: clip;
  margin: 0 auto;
  margin-top: -2.6em;
}
.sec-sns .sns-link-list ul .link-list-item a .item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-sns .sns-link-list ul .link-list-item a .item-name {
  font-size: 1.375em;
}
.sec-sns .sns-link-list ul .link-list-item a .item-name i {
  color: #666;
  display: block;
  margin-top: 0.8em;
  margin-bottom: 0.4em;
}
.sec-sns .sns-link-list ul .link-list-item a .item-detail {
  font-size: 0.9em;
  margin-top: 1.2em;
  padding-top: 1em;
  border-top: solid 1px #999;
}
.sec-sns .sns-link-list ul .link-list-item a:hover {
  opacity: 0.6;
}
.sec-sns .sns-link-list ul .link-list-item.__online-shop {
  width: 100%;
  margin-top: 3em;
  margin-bottom: 1em;
}
.sec-sns .sns-link-list ul .link-list-item.__online-shop a {
  position: relative;
  color: #fff;
  background-image: url(../images/outlet-banner.jpg);
  background-size: cover;
  background-position: 65% 50%;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.4);
  padding-top: 80px;
  padding-bottom: 80px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .sec-sns .sns-link-list ul .link-list-item.__online-shop a {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
.sec-sns .sns-link-list ul .link-list-item.__online-shop a .item-detail {
  border-top: none;
  padding-top: 0;
}
.sec-sns .sns-link-list ul .link-list-item.__online-shop a .item-detail img {
  display: inline-block;
  width: 0.8em;
  height: auto;
  margin-left: 0.4em;
  margin-bottom: 0.4em;
}

/* sec-company
---------------------------------------------------- */
.sec-company {
  padding-top: 0;
}
.sec-company .sec-ttl p {
  margin-top: 2em;
}
@media screen and (max-width: 991px) {
  .sec-company .sec-ttl p {
    text-align: start;
  }
}
.sec-company .company-info {
  width: 65.625rem;
  margin: 0 auto;
  border: solid 1px #999;
}
@media screen and (max-width: 1199px) {
  .sec-company .company-info {
    width: min(100%, 800px);
  }
}
.sec-company .company-info dl {
  display: flex;
  border-bottom: solid 1px #999;
  padding: 1em 2em;
}
.sec-company .company-info dl:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .sec-company .company-info dl {
    display: block;
    padding: 1.2em 1em 1.6em;
  }
}
.sec-company .company-info dl dt {
  font-weight: 400;
  width: 10em;
}
@media screen and (max-width: 767px) {
  .sec-company .company-info dl dt {
    font-size: 0.95em;
    width: 100%;
    padding-bottom: 0.8em;
    margin-bottom: 0.8em;
    border-bottom: solid 1px #ccc;
  }
}
@media screen and (max-width: 767px) {
  .sec-company .company-info dl dd {
    font-size: 0.95em;
  }
}
.sec-company .company-info dl dd a {
  display: inline;
  font-size: 1em;
}
.sec-company .access-content .content-ttl h3 {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1199px) {
  .sec-company .access-content .content-ttl h3 {
    font-size: 1.125em;
  }
}
.sec-company .access-content .content-ttl p {
  margin-top: 2em;
}
.sec-company .access-content .__note {
  margin-top: 0.9em;
}
.sec-company .access-content .__note li {
  font-size: 0.9em;
}
.sec-company .access-content .map-wrap {
  width: 100%;
  height: 30rem;
  margin-top: 3em;
}
@media screen and (max-width: 1199px) {
  .sec-company .access-content .map-wrap {
    height: 560px;
  }
}
@media screen and (max-width: 767px) {
  .sec-company .access-content .map-wrap {
    height: 400px;
  }
}
.sec-company .access-content .map-wrap iframe {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=index.css.map */