@charset "UTF-8";
/* ▼▼▼ トップ
======================================================*/
#main {
  background: #ECECEC;
}

.btn {
  width: min(100%, 200px);
  border: 2px solid #121212;
  border-radius: 30px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 14px;
}
.btn:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #121212;
  color: #fff;
  transition: all 0.3s ease;
}
.btn a {
  display: block;
  height: 100%;
  height: 40px;
  padding: 0 15px;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
  font-weight: 500;
}
.btn a:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .btn {
    width: min(100%, 180px);
    font-size: 13px;
  }
  .btn a {
    height: 40px;
  }
}

section {
  padding: 150px 0 180px;
}
section.container {
  padding-left: 5vw;
  padding-right: 5vw;
}
section.bg {
  background: #121212;
  color: #ECECEC;
}
section.bg h2 span::before {
  background: #121212;
}
section h2 {
  font-size: 82px;
  margin-bottom: 40px;
  line-height: 1;
}
section h2 span {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
section h2 span::before {
  content: "";
  background: #ECECEC;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 70px 0;
  }
  section h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }
}

.fv {
  padding: 150px 3vw 80px;
  text-align: right;
}
.fv p {
  display: inline-block;
  font-size: 16px;
  line-height: 2;
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-in-out 0.5s forwards;
          animation: fadeIn 1s ease-in-out 0.5s forwards;
}
@media screen and (max-width: 767px) {
  .fv {
    padding: 80px 5vw 50px;
  }
  .fv p {
    font-size: 13px;
    line-height: 1.8;
  }
}

h1 {
  margin-bottom: 100px;
  font-size: 90px;
  line-height: 1;
  overflow: hidden;
}
h1 span {
  display: block;
  -webkit-animation: slidIn 1s ease-in-out forwards;
          animation: slidIn 1s ease-in-out forwards;
}
h1 small {
  display: inline-block;
  font-size: 38px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 50px;
    font-size: 55px;
  }
  h1 span {
    text-align: center;
  }
  h1 small {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 22px;
  }
}

.top_slide {
  background: #ECECEC;
  font-size: 0;
  line-height: 1;
}
.top_slide .swiper-slide {
  width: 100%;
  aspect-ratio: 1/0.7;
}
.top_slide .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top_slide .swiper-slide {
    aspect-ratio: 1/0.9;
  }
}

.slidIn.animate.active {
  -webkit-animation: slidIn 1s ease-in-out forwards;
          animation: slidIn 1s ease-in-out forwards;
}

@-webkit-keyframes slidIn {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slidIn {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeIn.animate {
  opacity: 0;
}
.fadeIn.animate.active {
  -webkit-animation: fadeIn 1s ease forwards;
          animation: fadeIn 1s ease forwards;
}
.fadeIn.animate.top_slide.active {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInRright.animate {
  opacity: 0;
}
.fadeInRright.animate.active {
  -webkit-animation: fadeInRright 0.8s ease-in 0.1s forwards;
          animation: fadeInRright 0.8s ease-in 0.1s forwards;
}

@-webkit-keyframes fadeInRright {
  0% {
    opacity: 0;
    -webkit-transform: translatex(80px);
            transform: translatex(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInRright {
  0% {
    opacity: 0;
    -webkit-transform: translatex(80px);
            transform: translatex(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
h2.animate.active span::before {
  -webkit-animation: slideRight 1s ease forwards;
          animation: slideRight 1s ease forwards;
}

@-webkit-keyframes slideRight {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

@keyframes slideRight {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
/* brand
------------------------------------------ */
.brand_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}

/* sell
------------------------------------------ */
#sell h3 {
  font-size: 22px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #sell h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.flow li.bg01 .num {
  background: #999;
}
.flow li.bg01 .num::before {
  border-color: #999 transparent transparent transparent;
}

.flow li.bg02 .num {
  background: #777;
}
.flow li.bg02 .num::before {
  border-color: #777 transparent transparent transparent;
}

.flow li.bg03 .num {
  background: #555;
}
.flow li.bg03 .num::before {
  border-color: #555 transparent transparent transparent;
}

.flow li.bg04 .num {
  background: #333;
}
.flow li.bg04 .num::before {
  border-color: #333 transparent transparent transparent;
}

.flow li.bg05 .num {
  background: #121212;
}
.flow li.bg05 .num::before {
  border-color: #121212 transparent transparent transparent;
}

.tab_wrap {
  width: min(100%, 1000px);
  margin: 0 auto;
}

.tab_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  margin-bottom: 50px;
  position: relative;
}
.tab_list::after {
  content: "";
  border-bottom: 1px solid #121212;
  width: 100vw;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .tab_list {
    margin-bottom: 30px;
  }
}
.tab_list .tab {
  background: #bbb;
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 5px;
  height: 50px;
  width: min(100%, 200px);
  border: 1px solid #999;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  color: #777;
  font-size: 17px;
  cursor: pointer;
  position: relative;
}
.tab_list .tab.active {
  opacity: 1;
  border-color: #121212;
  background: #ECECEC;
  color: #121212;
  font-weight: 500;
  z-index: 2;
}
.tab_list .tab.active::before {
  content: "";
  border-bottom: 2px solid #ECECEC;
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 3;
}
.tab_list .tab.shop:not(.active) span::before {
  background: url(../img/icon_shop_over.svg) no-repeat left center/25px;
}
@media screen and (max-width: 767px) {
  .tab_list .tab.shop:not(.active) span::before {
    background-size: 20px;
  }
}
.tab_list .tab.courier:not(.active) span::before {
  background: url(../img/icon_courier_over.svg) no-repeat left center/35px;
}
@media screen and (max-width: 767px) {
  .tab_list .tab.courier:not(.active) span::before {
    background-size: 30px;
  }
}
.tab_list .tab span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.tab_list .tab span::before {
  content: "";
  width: 35px;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .tab_list .tab {
    width: min(100%, 150px);
    font-size: 14px;
    height: 40px;
  }
  .tab_list .tab.shop img {
    width: 20px;
  }
  .tab_list .tab.courier img {
    width: 30px;
  }
}

.tab_article_list .flow {
  margin-bottom: 40px;
}

.tab_article {
  display: none;
}
.tab_article.active {
  display: block;
}

.flow li {
  background: #fff;
  padding: 20px 15px 20px 105px;
  position: relative;
}
.flow li:not(:last-child) {
  margin-bottom: 25px;
}
.flow li:not(:last-child) .num::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 35px 0 35px;
  position: absolute;
  top: 100%;
  left: 0;
}
.flow li p {
  font-weight: bold;
  margin-bottom: 10px;
}
.flow li .btn {
  margin-top: 20px;
}
.flow li .notes {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}
.flow .num {
  width: 70px;
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  color: #fff;
  text-align: center;
  font-size: 13px;
  position: absolute;
  top: -5px;
  left: 15px;
}
.flow .num span {
  display: block;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .flow li {
    padding-left: 70px;
  }
  .flow li:not(:last-child) {
    margin-bottom: 20px;
  }
  .flow li:not(:last-child) .num::before {
    border-width: 15px 25px 0 25px;
  }
  .flow li .num {
    width: 50px;
    left: 10px;
    font-size: 11px;
  }
  .flow li .num span {
    font-size: 20px;
  }
}

.desc {
  display: inline-block;
  font-size: 12px;
}
.desc li {
  text-indent: -1em;
  padding-left: 1em;
}
.desc li::before {
  content: "※";
}

/* access
------------------------------------------ */
#access {
  display: grid;
  grid-template-columns: max(40vw, 450px) 1fr;
  padding: 0;
}
#access .txt_area {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px 0 120px;
}
@media screen and (max-width: 767px) {
  #access {
    display: block;
  }
  #access .txt_area {
    display: block;
    padding: 70px 5vw;
  }
}

.map {
  width: 100%;
  height: 100%;
}
.map iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .map {
    height: 250px;
  }
}