@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");
/* foundation
-------------------- */
/* color
-------------------- */
/* font family
-------------------- */
/* break point
-------------------- */
/* auto size
-------------------- */
/* media queries
-------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, "メイリオ", sans-serif;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Google Map
-------------------- */
.c-gmap {
  position: relative;
  width: 100%;
  padding-top: 75%;
}
@media screen and (min-width: 768px) {
  .c-gmap {
    padding-top: 50%;
  }
}
.c-gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* YouTube
-------------------- */
.c-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* Video
-------------------- */
.c-video {
  width: 100%;
}

/* 改行の設定
-------------------- */
.c-br {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-br {
    display: block;
  }
}

.c-br-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-br-sp {
    display: none;
  }
}

/* keyframes
-------------------- */
@-webkit-keyframes animation-bar {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  10% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  85% {
    -webkit-transform-origin: top right;
            transform-origin: top right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  95% {
    -webkit-transform-origin: top right;
            transform-origin: top right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes animation-bar {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  10% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  85% {
    -webkit-transform-origin: top right;
            transform-origin: top right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  95% {
    -webkit-transform-origin: top right;
            transform-origin: top right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/* layout
-------------------- */
.l-loadingAnim {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: all 3s cubic-bezier(0.06, 0.28, 0.01, 0.99);
  transition: all 3s cubic-bezier(0.06, 0.28, 0.01, 0.99);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  background-color: rgb(255, 255, 255);
}

.loaded .l-loadingAnim {
  background-color: rgba(255, 255, 255, 0);
}

.logo {
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 1;
  z-index: 1002;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 45.3333333333vw;
  height: 36.2666666667vw;
}
@media screen and (min-width: 768px) {
  .logo {
    width: 170px;
    height: 136px;
  }
}

.loaded .logo {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.l-main {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 21.6vw;
  padding-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding: 120px 70px 0;
  }
}
.l-main-second {
  padding-top: 30.1333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main-second {
    padding-top: 155px;
  }
}

/* Scroll Animation
-------------------- */
.is-visible {
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
.is-visible:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(50%, #fff), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(right, #fff 50%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(-90deg, #fff 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 200%;
  background-position: 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: background-position 1s ease;
  transition: background-position 1s ease;
  pointer-events: none;
  z-index: 1;
}
.is-visible.reveal:after {
  background-position: -100% 0;
}

/* Top
-------------------- */
.c-nav-top {
  padding-bottom: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-nav-top {
    padding-bottom: 70px;
  }
}

.l-top-look .p-card-item {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .l-top-look .p-card-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-top-look .p-card-item:not(:last-child) {
  margin-bottom: 12vw;
}
@media screen and (min-width: 768px) {
  .l-top-look .p-card-item:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .l-top-look .p-card-item figcaption {
    width: 280px;
  }
}

/* Swiper
-------------------- */
.l-swiper {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-swiper {
    margin-bottom: 21.3333333333vw;
  }
}
.l-swiper .swiper-pagination {
  bottom: -8vw !important;
  z-index: 1;
}
.l-swiper .swiper-pagination-bullet {
  border: 1px solid #707070;
  background-color: #fff;
  opacity: 1;
}
.l-swiper .swiper-pagination-bullet-active {
  background-color: #707070;
}
@media screen and (min-width: 768px) {
  .l-swiper .swiper .swiper-apparel-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
}
@media screen and (min-width: 768px) {
  .l-swiper .swiper .swiper-apparel-wrapper .swiper-slide {
    width: calc(50% - 15px);
    margin: 0 7.5px 15px;
  }
  .l-swiper .swiper .swiper-apparel-wrapper .swiper-slide:last-child {
    margin-bottom: 0;
  }
}

/* Shoes & Apparel
-------------------- */
@media screen and (min-width: 768px) {
  .l-section {
    margin-left: 150px;
  }
}
.l-section .p-card-3col a .c-text {
  margin-top: 15px;
  margin-left: 0;
}

/* Single */
@media screen and (min-width: 768px) {
  .l-shoes-single .l-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 150px;
    width: calc(100% - 150px);
  }
}
@media screen and (min-width: 768px) {
  .l-shoes-single .l-inner .l-swiper {
    width: calc(100% - 280px);
  }
}
@media screen and (max-width: 767px) {
  .l-shoes-single .l-inner .l-swiper .swiper {
    margin-left: -5.3333333333vw;
    margin-right: -5.3333333333vw;
  }
}
.l-shoes-single .l-inner .l-shoes-single__content {
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .l-shoes-single .l-inner .l-shoes-single__content {
    width: 280px;
    font-size: 1.1rem;
    padding-left: 15px;
  }
}
.l-shoes-single .l-inner .l-shoes-single__content .c-item-title {
  font-size: 3.2vw;
  font-weight: normal;
  margin-bottom: 0.8vw;
}
@media screen and (min-width: 768px) {
  .l-shoes-single .l-inner .l-shoes-single__content .c-item-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}
.l-shoes-single .l-inner .l-shoes-single__content .c-price {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .l-shoes-single .l-inner .l-shoes-single__content .c-price {
    margin-bottom: 10px;
  }
}
.l-shoes-single .l-inner .l-shoes-single__content .c-button-content {
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-shoes-single .l-inner .l-shoes-single__content .c-button-content {
    margin-bottom: 5px;
  }
}
.l-shoes-single .l-inner .l-shoes-single__content .c-caution {
  font-size: 2.6666666667vw;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .l-shoes-single .l-inner .l-shoes-single__content .c-caution {
    font-size: 1rem;
  }
}
.l-shoes-single .l-inner .l-shoes-single__content-text {
  line-height: 1.7;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-shoes-single .l-inner .l-shoes-single__content-text {
    margin-top: 20px;
  }
  .l-shoes-single .l-inner .l-shoes-single__content-text:last-child {
    margin-top: 45px;
  }
}
.l-shoes-single .l-inner .l-shoes-single__content-text ul {
  margin-top: 2.6666666667vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .l-shoes-single .l-inner .l-shoes-single__content-text ul {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.l-shoes-single .l-inner .l-shoes-single__content .p-card-chart {
  margin-top: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-shoes-single .l-inner .l-shoes-single__content .p-card-chart {
    margin-top: 40px;
  }
}

/* Team
-------------------- */
@media screen and (min-width: 768px) {
  .l-team {
    margin-left: 150px;
  }
}
@media screen and (min-width: 768px) {
  .l-team .p-card {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media screen and (min-width: 768px) {
  .l-team .p-card-item {
    width: calc(50% - 30px);
    margin: 60px 15px 0;
  }
}
@media screen and (min-width: 768px) {
  .l-team .p-card-item figure figcaption {
    margin-top: 15px;
    margin-left: 0;
  }
}

/* Team Single */
@media screen and (min-width: 768px) {
  .l-team-single .l-inner {
    margin-left: 150px;
  }
}
.l-team-single .l-inner .p-card-single__head {
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .l-team-single .l-inner .p-card-single__head {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-team-single .l-inner .l-swiper {
    margin-left: -5.3333333333vw;
    margin-right: -5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-team-single .l-inner .l-swiper {
    width: calc(100% - 280px);
  }
}
.l-team-single .l-inner .l-swiper .swiper-pagination {
  bottom: 4vw !important;
}
@media screen and (min-width: 768px) {
  .l-team-single .l-inner .l-swiper .swiper-pagination {
    bottom: 30px !important;
  }
}
.l-team-single .l-inner .l-swiper .swiper-pagination-bullet {
  border: none;
  background-color: #fff;
  opacity: 1;
}
.l-team-single .l-inner .l-swiper .swiper-pagination-bullet-active {
  background-color: #707070;
}

/* Movie
-------------------- */
@media screen and (min-width: 768px) {
  .l-movie .l-inner {
    margin-left: 150px;
  }
}
.l-movie .l-inner .p-card-item {
  width: 100%;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.l-movie .l-inner .p-card-item:not(:last-child) {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-movie .l-inner .p-card-item:not(:last-child) {
    margin-bottom: 120px;
  }
}
.l-movie .l-inner .p-card-item .c-text {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .l-movie .l-inner .p-card-item .c-text {
    margin-top: 10px;
  }
}

/* Look
-------------------- */
@media screen and (min-width: 768px) {
  .l-features .l-inner {
    margin-left: 150px;
  }
}
.l-features .l-inner .p-card-item {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .l-features .l-inner .p-card-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-features .l-inner .p-card-item:not(:last-child) {
  margin-bottom: 12vw;
}
@media screen and (min-width: 768px) {
  .l-features .l-inner .p-card-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .l-features .l-inner .p-card-item img {
    max-width: 520px;
    width: calc(100% - 280px);
  }
}
@media screen and (min-width: 768px) {
  .l-features .l-inner .p-card-item .figcaption {
    width: 280px;
  }
}

/* Features
-------------------- */
@media screen and (min-width: 768px) {
  .l-features .l-inner {
    margin-left: 150px;
  }
}
.l-features .l-inner .p-card-item {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .l-features .l-inner .p-card-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: flex-end;
            flex-direction: column;
            max-width: 520px;
  }
}
.l-features .l-inner .p-card-item:not(:last-child) {
  margin-bottom: 12vw;
}
@media screen and (min-width: 768px) {
  .l-features .l-inner .p-card-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .l-features .l-inner .p-card-item img {
    max-width: 520px;
    width: 100%;
    margin-bottom: 20px;
  }
  .l-features .l-inner .p-card-item .c-text {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .l-features .l-inner .p-card-item .figcaption {
    width: 280px;
  }
}

/* Shop List
-------------------- */
@media screen and (max-width: 767px) {
  .l-shoplist {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-shoplist .l-inner {
    margin-left: 150px;
  }
}
.l-shoplist .l-inner .p-card-shoplist:not(:last-child) {
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .l-shoplist .l-inner .p-card-shoplist:not(:last-child) {
    margin-bottom: 60px;
  }
}

/* object
-------------------- */
.p-header {
  width: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 2;
}
.p-header-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header-inner {
    padding: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-header-inner {
    height: 120px;
    padding-left: 70px;
    padding-right: 70px;
  }
}
.p-header-inner__content {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header-inner__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .p-header-inner__content {
    height: inherit;
  }
}
@media screen and (min-width: 768px) {
  .p-header-inner__content .c-shopping {
    position: absolute;
    top: 30px;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-header-inner__content .c-logo {
    position: absolute;
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px) {
  .p-header-inner__content .c-menu {
    display: none;
  }
}
.p-header-inner__content .c-nav-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-header-inner__content .c-nav-header {
    left: 0;
    padding: 21.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-header-inner__content .c-nav-header {
    width: 150px;
    padding-top: 45px;
    top: 120px;
    opacity: 1;
    visibility: visible;
  }
}
.p-header-inner__content .c-nav-header.is-active {
  opacity: 1;
  visibility: visible;
}
.p-header-inner__content .c-nav-shopping {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 4;
}
.p-header-inner__content .c-nav-shopping .l-inner {
  max-width: 1100px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 21.3333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header-inner__content .c-nav-shopping .l-inner {
    padding: 95px 125px 0;
  }
}
.p-header-inner__content .c-nav-shopping .l-inner .c-close {
  position: absolute;
  top: 6.6666666667vw;
  left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-header-inner__content .c-nav-shopping .l-inner .c-close {
    top: 32px;
    left: 71px;
  }
}
.p-header-inner__content .c-nav-shopping.is-active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .p-header-inner .c-nav-breadcrumb {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-header-inner .c-nav-breadcrumb {
    position: absolute;
    left: 220px;
    bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-header-top .c-nav-header {
    display: none;
  }
}

.p-fv {
  margin-bottom: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-fv {
    margin-bottom: 60px;
  }
}
.p-fv p {
  font-size: 2.9333333333vw;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-fv p {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

.p-fv-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-fv-sp {
    display: none;
  }
}

.p-fv-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-fv-pc {
    display: block;
  }
}

.p-card-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-card-item img {
    max-width: 650px;
    width: calc(100% - 280px);
  }
}
.p-card-item .c-text {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-card-item .c-text {
    text-align: left;
    margin-top: 0;
    margin-left: 30px;
  }
}

.p-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -12vw;
  margin-left: -1.3333333333vw;
  margin-right: -1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-card {
    margin: -60px -7.5px 0;
  }
}
.p-card-item {
  width: calc(50% - 2.667vw);
  margin-top: 12vw;
  margin-left: 1.3333333333vw;
  margin-right: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-card-item {
    width: calc(33.33% - 15px);
    margin: 60px 7.5px 0;
  }
}
.p-card-item figure div img {
  width: 100%;
}
.p-card-item figure figcaption {
  font-size: 3.2vw;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-card-item figure figcaption {
    font-size: 1.5rem;
  }
}
.p-card-item figure figcaption .c-text-price {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-card-item figure figcaption .c-text-price {
    font-size: 1.2rem;
    margin-top: 5px;
  }
}

.p-card-shoplist {
  line-height: 1.7;
}
.p-card-shoplist dt {
  font-size: 3.2vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-card-shoplist dt {
    font-size: 1.8rem;
  }
}
.p-card-shoplist dd {
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .p-card-shoplist dd {
    font-size: 1.2rem;
  }
}
.p-card-shoplist dd a,
.p-card-shoplist dd span {
  font-size: 3.2vw;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .p-card-shoplist dd a,
  .p-card-shoplist dd span {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-card-single__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .p-card-single__head figure {
    width: calc(100% - 280px);
  }
}
@media screen and (min-width: 768px) {
  .p-card-single__head-text {
    width: 280px;
    padding-left: 15px;
  }
}
.p-card-single__head-text .l-inner {
  margin-bottom: 8vw;
}
@media screen and (max-width: 767px) {
  .p-card-single__head-text .l-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-card-single__head-text .l-inner {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-card-single__head-text .l-inner .c-social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 10px;
  }
}
.p-card-single__head-text .l-inner .c-social a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-transform: opacity 0.3s;
          transform: opacity 0.3s;
}
.p-card-single__head-text .l-inner .c-social a span {
  color: #000000;
  margin-top: 0;
  margin-left: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-card-single__head-text .l-inner .c-social a span {
    font-size: 1.1rem;
    margin-left: 5px;
  }
}
.p-card-single__head-text .l-inner .c-social a:hover {
  opacity: 0.6;
}
.p-card-single__head-text p {
  font-size: 3.2vw;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-card-single__head-text p {
    font-size: 1.1rem;
  }
}
.p-card-single__head-text p:not(:last-child) {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-card-single__head-text p:not(:last-child) {
    margin-bottom: 20px;
  }
}

.p-card-chart {
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .p-card-chart {
    font-size: 1.2rem;
  }
}
.p-card-chart h3 {
  font-size: 3.2vw;
  font-weight: normal;
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-card-chart h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}
.p-card-chart__content dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #707070;
  padding: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-card-chart__content dl {
    padding: 10px;
  }
}
.p-card-chart__content dl:first-of-type {
  border-top: 1px solid #707070;
}
.p-card-chart__content dl dt {
  width: 44vw;
}
@media screen and (min-width: 768px) {
  .p-card-chart__content dl dt {
    width: 145px;
  }
}
.p-card-chart__content dl dd {
  width: 4vw;
}
.p-card-chart__content dl dd:not(:last-child) {
  margin-right: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-card-chart__content dl dd:not(:last-child) {
    margin-right: 25px;
  }
}
@media screen and (min-width: 768px) {
  .p-card-chart__content dl dd {
    width: 15px;
  }
}

.p-footer {
  margin-top: 21.3333333333vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-footer {
    margin-top: 200px;
    margin-bottom: 15px;
  }
}
.p-footer-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-footer-inner {
    padding-left: 70px;
    padding-right: 70px;
  }
}
.p-footer-inner .c-nav {
  padding-bottom: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-footer-inner .c-nav {
    display: none;
  }
}
.p-footer-inner .c-social {
  margin-bottom: 6.6666666667vw;
  width: 37.3333333333vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-footer-inner .c-social {
    width: 150px;
    margin-bottom: 20px;
  }
}
.p-footer-inner .c-copylight {
  color: #707070;
  font-size: 2.9333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer-inner .c-copylight {
    font-size: 1.2rem;
  }
}
.p-footer-second .p-footer-inner .c-nav {
  display: none;
}

.c-logo {
  display: inline-block;
  background-image: url(/assets/images/common/logo-gravis.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30.4vw;
  height: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .c-logo {
    width: 135px;
    height: 30px;
  }
}

.c-menu {
  width: 5.3333333333vw;
  height: 3.7333333333vw;
  position: relative;
  z-index: 3;
}
.c-menu-content {
  width: 100%;
  height: 100%;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  position: relative;
}
.c-menu-content div {
  width: 100%;
  height: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  overflow: hidden;
}
.c-menu-content div:first-child {
  top: 0;
}
.c-menu-content div:first-child span {
  -webkit-animation: animation-bar 4s infinite forwards 0.1s;
          animation: animation-bar 4s infinite forwards 0.1s;
}
.c-menu-content div:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-menu-content div:nth-child(2) span {
  -webkit-animation: animation-bar 4s infinite forwards 0.2s;
          animation: animation-bar 4s infinite forwards 0.2s;
}
.c-menu-content div:last-child {
  bottom: 0;
}
.c-menu-content div:last-child span {
  -webkit-animation: animation-bar 4s infinite forwards 0.3s;
          animation: animation-bar 4s infinite forwards 0.3s;
}
.c-menu-content div span {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000;
}
.c-menu.is-active .c-menu-content div:first-child {
  -webkit-transform: translateY(1.333vw) rotate(45deg);
          transform: translateY(1.333vw) rotate(45deg);
}
.c-menu.is-active .c-menu-content div:nth-child(2) {
  opacity: 0;
}
.c-menu.is-active .c-menu-content div:last-child {
  -webkit-transform: translateY(-1.867vw) rotate(-45deg);
          transform: translateY(-1.867vw) rotate(-45deg);
}

.c-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow-x: scroll;
}
.c-nav-link {
  position: relative;
}
.c-nav-slash__sp {
  display: inline-block;
  font-size: 2.9333333333vw;
  margin-left: 1.8666666667vw;
  margin-right: 1.8666666667vw;
}
@media screen and (min-width: 768px) {
  .c-nav-slash__sp {
    font-size: 1.4rem;
    margin-left: 7px;
    margin-right: 7px;
  }
}

.c-nav::-webkit-scrollbar {
  display: none; /*Google Chrome、Safari、Microsoft Edge対応のスクロールバー非表示コード*/
}

.c-nav-details summary {
  display: block;
  font-size: 4vw;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-nav-details summary {
    font-size: 1.5rem;
  }
}
.c-nav-details summary::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-nav-details ul {
    margin-left: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .c-nav-details ul {
    margin-left: 10px;
  }
}
.c-nav-details ul li {
  margin-top: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .c-nav-details ul li {
    margin-top: 8px;
  }
}
.c-nav-details ul li a {
  font-size: 3.467vw !important;
  font-weight: normal !important;
}
@media screen and (min-width: 768px) {
  .c-nav-details ul li a {
    font-size: 1.1rem !important;
  }
}

.c-nav-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
.c-nav-breadcrumb__link {
  font-size: 2.9333333333vw;
  text-transform: uppercase;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-nav-breadcrumb__link {
    font-size: 1.4rem;
  }
}
.c-nav-breadcrumb__slash__sp {
  display: inline-block;
  font-size: 2.9333333333vw;
  margin-left: 1.8666666667vw;
  margin-right: 1.8666666667vw;
}
@media screen and (min-width: 768px) {
  .c-nav-breadcrumb__slash__sp {
    font-size: 1.4rem;
    margin-left: 7px;
    margin-right: 7px;
  }
}

.c-nav-header__link:not(:last-child) {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-nav-header__link:not(:last-child) {
    margin-bottom: 30px;
  }
}
.c-nav-header__link a,
.c-nav-header__link span {
  font-size: 4vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-nav-header__link a,
  .c-nav-header__link span {
    font-size: 1.5rem;
  }
}
.c-nav-header__link span {
  text-transform: uppercase;
}

.c-nav-shopping ul {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-nav-shopping ul {
    margin-bottom: 20px;
  }
}
.c-nav-shopping ul li:first-of-type {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-nav-shopping ul li:first-of-type {
    margin-bottom: 20px;
  }
}
.c-nav-shopping ul li a {
  font-size: 4vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-nav-shopping ul li a {
    font-size: 1.5rem;
  }
}
.c-nav-shopping p {
  font-size: 2.5333333333vw;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .c-nav-shopping p {
    font-size: 1rem;
  }
}

.c-nav-dropdown {
  display: none;
  position: absolute;
  top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-nav-dropdown {
    top: 25px;
  }
}
.c-nav-dropdown a {
  color: #707070;
  font-size: 2.6666666667vw;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-nav-dropdown a {
    font-size: 1.2rem;
  }
}
.c-nav-dropdown a:not(:last-child) {
  margin-right: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-nav-dropdown a:not(:last-child) {
    margin-right: 15px;
  }
}
.c-nav-dropdown a:after {
  background-color: #707070;
}

.c-nav-top__dropdown.is-active.is-active {
  display: block;
}

.c-nav-footer__dropdown.is-active.is-active {
  display: block;
}

.c-text {
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 1.4rem;
  }
}

.c-text-shop__name {
  font-weight: bold !important;
  font-size: 2.933vw !important;
}
@media screen and (min-width: 768px) {
  .c-text-shop__name {
    font-size: 1.6rem !important;
  }
}

.c-text-right {
  text-align: right;
}

.c-text-jpEn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-text-jpEn dt {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .c-text-jpEn dt {
    font-size: 1.4rem;
  }
}
.c-text-jpEn dd {
  font-size: 2.6666666667vw;
  margin-left: 4vw;
}
@media screen and (min-width: 768px) {
  .c-text-jpEn dd {
    font-size: 1.2rem;
    margin-left: 15px;
  }
}

.c-icon-instagram {
  display: inline-block;
  background-image: url(/assets/images/common/icon-instagram.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6.1333333333vw;
  height: 6.1333333333vw;
}
@media screen and (min-width: 768px) {
  .c-icon-instagram {
    width: 18px;
    height: 18px;
  }
}

.--icon-instagram__small {
  width: 3.7333333333vw;
  height: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .--icon-instagram__small {
    width: 14px;
    height: 14px;
  }
}

.c-icon-shopping {
  display: inline-block;
  background-image: url(/assets/images/common/icon-shopping.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 4.8vw;
  height: 5.6vw;
}
@media screen and (min-width: 768px) {
  .c-icon-shopping {
    width: 22px;
    height: 26px;
  }
}

.c-close div {
  position: relative;
  width: 5.3333333333vw;
  height: 5.3333333333vw;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-close div {
    width: 20px;
    height: 20px;
  }
}
.c-close div:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(2.4vw) rotate(45deg);
          transform: translateY(2.4vw) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .c-close div:before {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
}
.c-close div:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(2.4vw) rotate(-45deg);
          transform: translateY(2.4vw) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .c-close div:after {
    -webkit-transform: translateY(10px) rotate(-45deg);
            transform: translateY(10px) rotate(-45deg);
  }
}

.c-button {
  font-size: 2.9333333333vw;
  color: #000000;
  text-transform: uppercase;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 1.4rem;
  }
}

.c-button-main {
  display: inline-block;
  text-transform: capitalize;
  max-width: 34.6666666667vw;
  width: 100%;
  font-size: 2.6666666667vw;
  font-weight: 500;
  text-align: center;
  padding-top: 0.2666666667vw;
  padding-left: 1.3333333333vw;
  padding-right: 1.3333333333vw;
  padding-bottom: 0.2666666667vw;
  color: #000000;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: -webkit-gradient(linear, right top, left top, from(#000000), color-stop(#000000), color-stop(#fff), to(#fff));
  background: -webkit-linear-gradient(right, #000000, #000000, #fff, #fff);
  background: linear-gradient(270deg, #000000, #000000, #fff, #fff);
  background-position: 1% 50%;
  background-size: 300% 300%;
  border: 1px solid #000000;
}
@media screen and (min-width: 768px) {
  .c-button-main {
    max-width: 130px;
    font-size: 1rem;
    padding: 1px 5px;
  }
}
.c-button-main:hover {
  background-position: 99% 50%;
  color: #fff;
}

.c-button-underbar {
  font-size: 2.9333333333vw;
  color: #000000;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-button-underbar {
    font-size: 1.4rem;
  }
}
.c-button-underbar:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000000;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-button-underbar:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.c-button-social__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-button-social__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-button-social i {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-button-social span {
  color: #707070;
  font-size: 2.9333333333vw;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-button-social span {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.c-button-social:hover i {
  opacity: 0.6;
}

.c-card-button figure div {
  overflow: hidden;
}
.c-card-button figure div img {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.c-card-button figure figcaption {
  color: #000000;
}
.c-card-button:hover figure img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.c-button-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-button-content {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .c-button-content a:first-of-type {
    margin-right: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .c-button-content {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}