*,*::before,*::after{box-sizing:border-box}
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}
ul[role="list"],ol[role="list"]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

body,a,p{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-decoration: none;
  line-height: 1.6;
  letter-spacing: 0.08rem;
}
body{
  position: relative;
}
ul{
  padding: 0;
}
li{
  list-style: none;
}
img{
  max-width: 100%;
  height: auto;
}
.pc{
  display: block;
}
.sp{
  display: none;
}
.flex-box{
  display: flex;
}
.slide-box{
  max-width: 100%;
  overflow: hidden;
}
/* リンクボックス */
.link-box{
  margin: 2% auto 0;
}
.cart-btm{
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  margin-bottom: 0.7em;
  color: #fff;
}
.price-area{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cart-yen{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(18px,1.4vw);
  letter-spacing: 0.06rem;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
}
.cart-yen img{
  width: min(12px,0.9vw);
  margin: 0 0.5rem 0 0;
}
.cart-yen span{
  margin: 0 0 -2px 3%;
  font-size: min(10px,0.95vw);
}
.cart-btm .btn{
  margin: 0 0 0 3%;
  padding: 0.4em 1em;
  text-align: center;
  color: #fff;
  line-height: 1em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: min(12px,0.95vw);
}
.btn-arrow{
  position: relative;
  -webkit-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
}
.btn-arrow span{
  display: inline-block;
  position: relative;
  letter-spacing: 0.02rem;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: transform;
}
.cart-btm:hover .btn-arrow span {
  -webkit-transform: translate3d(-.5rem, 0, 0);
  transform: translate3d(-.5rem, 0, 0);
}
.btn-arrow img{
  position: absolute;
  width: 1.1em;
  right: 0px;
  right: 0rem;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: right, opacity;
}
.btn-arrow img *{
  stroke-width: 5;
  -webkit-text-stroke-color: transparent;
}
.cart-btm:hover .btn-arrow img {
  opacity: 1;
  right: -0.8rem;
}
/* アニメーション */
.clippath-right{
  opacity: 0;
}
.clippath-right.active{
  animation-name: clippath-right;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath-right{
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.clippath-left{
  opacity: 0;
}
.clippath-left.active{
  animation-name: clippath-left;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath-left{
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.zoomin{
  animation: zoomin;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes zoomin{
  0%{
    opacity: 0;
    filter: blur(6px);
    transform: scale(1.15);
  }
  40%{
    opacity: 1;
  }
  100%{
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
.fadein{
  opacity: 0;
}
.fadein.active{
  animation-name: fade;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 2.8s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fade{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slideup{
  opacity: 0;
}
.slideup.active{
  animation: slideup;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transition: ease-out;
  opacity: 0;
}
@keyframes slideup{
  0% {
    opacity: 0;
    transform: translate(0, 80px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* header */
.header{
  position: relative;
  width: 100%;
  aspect-ratio: 2560 / 1440;
}
.header .inner{
  display: flex;
  width: 100%;
  height: 100%;
}
.header .mv01{
  position: relative;
  background: rgba(225,164,187,0.2);
}
.header .mv02{
  position: relative;
  background: rgba(175,185,187,0.2);
}
.header .logo-link{
  position: relative;
  width: 100%;
  height: 16.5%;
}
.header .logo-link .mv-link{
  display: block;
  width: 100%;
  height: 100%;
}
.header .mv01 .logo-link .image{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: calc(330 / 1280 * 100%);
}
.header .mv02 .logo-link .image{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: calc(372 / 1280 * 100%);
}
.header .title{
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(595 / 2560 * 100%);
}
.header .text{
  position: absolute;
  top: 60%;
  left: 51%;
  transform: translateX(-50%);
  width: calc(932 / 2560 * 100%);
}
.header .text .image.active{
  animation-delay: 2.2s;
}
.header .logo{
  position: absolute;
  top: 1%;
  right: 2%;
  width: calc(220 / 2560 * 100%);
  z-index: 1;
}
.header .arrow{
  position: absolute;
  bottom: -2.5%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(16 / 1280 * 100%);
}
/* 共通 */
.intro .text-area .number{
  width: calc(611 / 611 * 100%);
}
.intro .text-area .text,
.brand02 .campaign .text{
  margin-top: 20%;
  text-align: justify;
  font-size: min(18px,1.3vw);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  line-height: 2;
}
.brand01 .text,
.brand02 .text{
  margin-top: 1.5%;
  text-align: center;
  font-size: min(26px,1.6vw);
}
.brand01 .link-btn,
.brand02 .link-btn{
  position: relative;
  width: calc(902 / 2560 * 100%);
  margin: 8% auto 0;
}
.brand01 .btn,
.brand02 .btn{
  position: relative;
}
.brand01 .btn .mask,
.brand02 .btn .mask{
  position: absolute;
  top: 0;
  left: 0;
  width: 99%;
  height: 95%;
  z-index: -1;
}
.brand01 .link-btn .image,
.brand02 .link-btn .image{
  transition: 0.6s ease-in-out;
}
.brand01 .link-btn:hover .image,
.brand02 .link-btn:hover .image{
  opacity: 0.8;
}
.brand01 .limited,
.brand02 .recommend{
  margin-top: 10%;
}
.brand01 .limited .title,
.brand02 .recommend .title{
  width: calc(1071 / 2560 * 100%);
  margin: 0 auto;
}
.brand01 .limited .text,
.brand02 .recommend .text{
  font-weight: bold;
}
.brand01 .limited .list,
.brand02 .recommend .list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6%;
  width: calc(1515 / 2560 * 100%);
  margin: 2% auto 0;
  padding-bottom: 3%;
  border-radius: 80px;
}
.brand01 .limited .list .item,
.brand02 .recommend .list .item{
  width: calc(608 / 1515 * 100%);
  margin-top: 6%;
}
.brand01 .limited .list .item .image,
.brand02 .recommend .list .item .image{
  border-radius: 30px;
  outline: 3px solid transparent;
  transition: 0.6s ease-in-out;
}
.brand01 .limited .item-name,
.brand02 .recommend .item-name{
  margin-top: 4%;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: min(16px,1.2vw);
}
.brand01 .category .list .list-text,
.brand02 .category .list .list-text{
  padding: 6% 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: min(20px, 1.3vw);
  letter-spacing: 0.2rem;
}
.brand01 .category,
.brand02 .category{
  margin-top: 10%;
}
.brand01 .category .title,
.brand02 .category .title{
  width: calc(1013 / 2560 * 100%);
}
.brand01 .category .text,
.brand02 .category .text{
  text-align: left;
  margin-left: 11.5%;
  margin-right: auto;
}
/* brand01 */
.brand01{
  position: relative;
  margin-top: 10%;
  padding-top: 6%;
}
.brand01 .back-color-wrap{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  aspect-ratio: 2560 / 846;
  background : linear-gradient(0deg, rgba(225, 164, 187, 1) 24.26%, rgba(225, 164, 187, 0) 100%);
  opacity: 0.1;
  transform: rotate(180deg);
}
.brand01 .intro{
  display: flex;
  justify-content: space-between;
  width: calc(2199 / 2560 * 100%);
  margin: 0 0 0 auto;
}
.brand01 .intro .text-area{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(611 / 2199 * 100%);
}
.brand01 .intro .text-area .logo{
  width: calc(428 / 611 * 100%);
  margin-top: 24%;
}
.brand01 .intro .photo-area{
  width: calc(1378 / 2199 * 100%);
}
.brand01 .limited .list{
  background: rgba(225,164,187,0.2);
}
.brand01 .cart-btm .btn{
  background: #e1a4bb;
}
.brand01 .limited .list .item a:hover .image{
  border-radius: 50px;
  outline: 3px solid #e1a4bb;
}
.brand01 .category .list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(1700 / 2560 * 100%);
  margin: -6% auto 0;
}
.brand01 .category .list .item{
  position: relative;
  width: calc(800 / 1700 * 100%);
  height: fit-content;
  background: #fff;
  transition: 0.6s ease-in-out;
}
.brand01 .category .list .item:nth-child(odd){
  margin-top: 18%;
}
.brand01 .category .list .item:nth-child(3){
  margin-top: 8%;
}
.brand01 .category .list .item:nth-child(4){
  margin-top: -10%;
}
.brand01 .category .list .item:hover,
.brand02 .category .list .item:hover{
  background: rgba(255,255,255,0.6);
}
.brand01 .category .list .back-color{
  position: absolute;
  top: 2%;
  left: 2.5%;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(225,164,187,0.2);
  z-index: -1;
}
.brand01 .btn .mask{
  background: #e1a4bb;
}
/* brand02 */
.brand02{
  position: relative;
  margin-top: 10%;
  padding-top: 6%;
}
.brand02 .back-color-wrap{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  aspect-ratio: 2560 / 846;
  background : linear-gradient(0deg, rgba(175, 185, 187, 1) 24.26%, rgba(175, 185, 187, 0) 100%);
  opacity : 0.15;
  transform: rotate(180deg);
}
.brand02 .intro{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: calc(2199 / 2560 * 100%);
}
.brand02 .intro .photo-area{
  width: calc(1378 / 2199 * 100%);
}
.brand02 .intro .photo-area .photo-box{
  display: flex;
}
.brand02 .intro .text-area{
  width: calc(611 / 2199 * 100%);
}
.brand02 .intro .text-area .logo{
  width: calc(468 / 611 * 100%);
  margin: 24% auto 0;
}
.brand02 .campaign{
  display: flex;
  justify-content: space-between;
  width: calc(2000 / 2560 * 100%);
  margin: 10% auto 0;
}
.brand02 .campaign .text-area{
  width: calc(740 / 2000 * 100%);
}
.brand02 .campaign .title{
  width: calc(688 / 740 * 100%);
}
.brand02 .campaign .title.active{
  animation-delay: 0s;
}
.brand02 .campaign .text-title{
  margin-top: -1.5em;
  margin-left: 10%;
  font-size: min(25px,1.5vw);
  font-weight: 700;
}
.brand02 .campaign .text{
  margin-top: 6%;
  margin-left: 10%;
}
.brand02 .campaign .photo-area{
  width: calc(1138 / 2000 * 100%);
  margin-top: 3%;
}
.brand02 .campaign-btn{
  width: calc(650 / 740 * 100%);
  margin: 8% auto 0 10%;
  background: #afb9bb;
}
.brand02 .campaign-btn .link{
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}
.brand02 .campaign-btn .link:hover{
  opacity: 0.6;
}
.brand02 .campaign-btn .text{
  margin: 0 auto;
  padding: 1% 0;
  text-align: center;
  color: #fff;
  font-size: min(20px,1.2vw);
  letter-spacing: 0.2rem;
}
.brand02 .recommend .title{
  width: calc(1310 / 2560 * 100%);
  margin: 0 auto;
}
.brand02 .recommend .list{
  background: rgba(175,185,187,0.2);
}
.brand02 .recommend .list .item a:hover .image{
  border-radius: 50px;
  outline: 3px solid #afb9bb;
}
.brand02 .cart-btm .btn{
  background: #afb9bb;
}
.brand02 .category .list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(1860 / 2560 * 100%);
  margin: -8% auto 0;
}
.brand02 .category .list .item{
  position: relative;
  width: calc(880 / 1860 * 100%);
  height: fit-content;
  background: #fff;
  transition: 0.6s ease-in-out;
}
.brand02 .category .list .item:nth-child(odd){
  margin-top: 18%;
}
.brand02 .category .list .item:nth-child(3){
  margin-top: 6%;
}
.brand02 .category .list .item:nth-child(4){
  margin-top: -12%;
}
.brand02 .category .list .back-color{
  position: absolute;
  top: 2%;
  left: 2.5%;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(175,185,187,0.2);
  z-index: -1;
}
.brand02 .btn .mask{
  background: #afb9bb;
}
/*footer*/
.footer{
  color: #000;
  letter-spacing: 0.3em;
  margin-top: 12%;
  padding: 0 0 2% 0;
  position: relative;
  text-align: center;
}
.footer a{
  transition: 0.3s ease-in-out;
}
.footer a:hover img{
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}
.footer_sns {
  display: inline-block;
  width: 2.5%;
  margin: auto;
}
.f-ow {
  width: 120px;
  margin: 25px auto 0 auto;
}
.copyright {
  font-family: "Helvetica",serif;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin: 34px 0 0;
}
/* ページトップ */
.pagetop{
  position: fixed;
  right: 30px;
  bottom: 20px;
  width: 35px;
  z-index: 99;
}
/* sidenav */
.sidenav{
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8vw;
}
.sidenav .list .item{
  transition: 0.4s ease-in-out;
}
.sidenav .list .item:nth-child(2){
  display: block;
  margin-top: 20%;
}
.sidenav .list .item:hover{
  opacity: 0.8;
}
@media screen and (max-width:767px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .flex-box{
    flex-direction: column;
  }
  /* リンク */
  .link-box{
    margin-top: 4%;
  }
  .cart-title{
    font-size: 3.4vw;
    line-height: 1.2;
    letter-spacing: 0.06rem;
  }
  .size-area {
    margin: -1.25em auto 0.5em;
  }
  .size-area a{
    font-size: 0.8rem;
  }
  .cart-yen{
    font-size: 4.3vw;
    line-height: 1.2;
    letter-spacing: 0.04rem;
  }
  .cart-yen img{
    width: 0.95rem;
    margin: 0 0.3rem 0 0;
  }
  .cart-yen.size-space img {
    margin-right: 0.84rem;
  }
  .cart-yen.price img {
    margin-right: 0.81rem
  }
  .cart-yen span{
    font-size: 0.7rem;
    margin: 2px 2px -2px 2px;
  }
  .cart-btm .btn{
    margin-left: 1%;
    padding: 0.5em 1em;
    font-size: 0.7rem;
  }
  /* アニメーション */
  .clippath-left.active,
  .clippath-right.active,
  .slideup.active{
    animation-delay: 0s;
  }
  /* header */
  .header{
    aspect-ratio: 1280 / 2272;
    margin-bottom: 30%;
  }
  .header .photo{
    padding-top: 22%;
  }
  .header .logo-link{
    height: 12%;
    margin-top: 55%;
  }
  .header .mv01 .logo-link .image{
    width: calc(367 / 640 * 100%);
  }
  .header .mv02 .logo-link .image{
    width: calc(383 / 640 * 100%);
  }
  .header .arrow{
    bottom: -1.5%;
    width: calc(16 / 640 * 100%);
  }
  .header .title{
    top: 39%;
    width: calc(722 / 1280 * 100%);
  }
  .header .text{
    top: 74%;
    left: 50%;
    width: 100%;
    text-align: center;
    font-size: 4vw;
    letter-spacing: 0.1rem;
    line-height: 2;
  }
  .header .logo{
    top: 2%;
    right: 4%;
    width: calc(286 / 1280 * 100%);
  }
  /* 共通 */
  .brand01,
  .brand02{
    margin-top: 20%;
  }
  .intro .text-area .number{
    width: calc(601 / 1280 * 100%);
    margin: 0 auto;
  }
  .brand01 .back-color,
  .brand02 .back-color{
    aspect-ratio: 1280 / 846;
  }
  .intro .text-sp,
  .brand02 .campaign .text{
    width: calc(1160 / 1280 * 100%);
    margin: 6% auto 0;
    text-align: justify;
    font-size: 3.8vw;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    line-height: 1.8;
  }
  .brand01 .text, .brand02 .text{
    font-size: 4.4vw;
    letter-spacing: 0.16rem;
  }
  .brand01 .limited .list{
    width: calc(1198 / 1280 * 100%);
    margin: 10% 0 0 auto;
    padding-bottom: 6%;
    border-radius: 60px 0 0 60px;
  }
  .brand01 .limited .list .item,
  .brand02 .recommend .list .item{
    width: calc(998 / 1198 * 100%);
    margin-top: 10%;
  }
  .brand01 .limited .list .item .image, .brand02 .recommend .list .item .image{
    border-radius: 0;
  }
  .brand01 .limited .item-name, .brand02 .recommend .item-name{
    margin-top: 6%;
    font-size: 3.8vw;
  }
  .brand01 .category .title, .brand02 .category .title{
    width: calc(1070 / 1280 * 100%);
    margin-top: 20%;
  }
  .brand01 .category .list .list-text,
  .brand02 .category .list .list-text{
    padding: 6% 0 8%;
    font-size: 4vw;
  }
  .brand01 .category .text, .brand02 .category .text{
    font-weight: 700;
    letter-spacing: 0.06rem;
  }
  .brand01 .link-btn, .brand02 .link-btn{
    width: calc(1122 / 1280 * 100%);
    margin-top: 16%;
  }
  /* brand01 */
  .brand01 .intro{
    width: 100%;
    flex-direction: column;
  }
  .brand01 .intro .text-area{
    width: 100%;
  }
  .brand01 .intro .text-area .logo{
    width: calc(800 / 1280 * 100%);
    margin-top: 10%;
  }
  .brand01 .intro .photo-area{
    width: calc(1160 / 1280 * 100%);
    margin: 10% auto 0;
  }
  .brand01 .limited .title{
    width: 100%;
    margin-top: 20%;
  }
  .brand01 .category .list{
    flex-direction: column;
    width: calc(1000 / 1280 * 100%);
    margin: 0 auto;
  }
  .brand01 .category .list .item{
    width: 100%;
  }
  .brand01 .category .list .item,
  .brand01 .category .list .item:nth-child(3),
  .brand01 .category .list .item:nth-child(4){
    margin-top: 14%;
  }
  .brand01 .category .list .back-color{
    background: e1a4bb;

  }
  /* brand02 */
  .brand02 .intro{
    width: 100%;
    flex-direction: column;
  }
  .brand02 .intro .text-area{
    width: 100%;
  }
  .brand02 .intro .text-area .logo{
    width: calc(800 / 1280 * 100%);
    margin: 10% auto 0;
  }
  .brand02 .intro .photo-area{
    width: calc(1160 / 1280 * 100%);
    margin: 10% auto 0;
  }
  .brand02 .limited .title{
    width: 100%;
    margin-top: 20%;
  }
  .brand02 .category .list{
    flex-direction: column;
    width: calc(1000 / 1280 * 100%);
    margin: 0 auto;
  }
  .brand02 .category .list .item{
    width: 100%;
  }
  .brand02 .category .list .item,
  .brand02 .category .list .item:nth-child(3),
  .brand02 .category .list .item:nth-child(4){
    margin-top: 14%;
  }
  .brand02 .category .list .back-color{
    background: rgba(255,255,255,1);
  }
  .brand02 .campaign{
    flex-direction: column-reverse;
    width: 100%;
  }
  .brand02 .campaign .text-area{
    width: 100%;
  }
  .brand02 .campaign .photo-area{
    width: 100%;
  }
  .brand02 .campaign .title{
    width: calc(1012 / 1280 * 100%);
    margin: 0 auto 0 3%;
  }
  .brand02 .campaign .photo-area .image{
    width: calc(1170 / 1280 * 100%);
    margin: -10% 0 0 auto;
  }
  .brand02 .campaign .text-title{
    margin-top: 4%;
    margin-left: 9%;
    font-size: 4.4vw;
  }
  .brand02 .campaign .text{
   width: calc(1046 / 1280 * 100%);
   margin-top: 2%;
   text-align: justify;
   letter-spacing: 0.08rem;
  }
  .brand02 .campaign-btn{
    width: calc(1052 / 1280 * 100%);
    margin: 8% auto 0;
  }
  .brand02 .campaign-btn .text{
    padding: 2% 0;
    text-align: center;
    font-size: 4vw;
  }
  .brand02 .recommend{
    margin-top: 20%;
  }
  .brand02 .recommend .title{
    width: 100%;
  }
  .brand02 .recommend .list{
    width: calc(1198 / 1280 * 100%);
    margin: 10% auto 0 0;
    padding-bottom: 6%;
    border-radius: 0 60px 60px 0;
  }
  .brand02 .category .list .back-color{
    background: rgba(175, 185, 187, 1);
  }
  .brand02 .category .list .list-text{
    font-size: 4.8vw;
  }
  .brand02 .category .list .list-text span{
    font-size: 3.8vw;
  }
  /* フッター */
  .footer{
    margin-top: 20%;
    padding-bottom: 22%;
  }
  .footer_sns{
    width: 8vw;
  }
  .f-ow{
    margin-top: 3%;
  }
  .footer_copyright{
    font-size: 10px;
    letter-spacing: 0.02em;
    margin: 5% 0 0 0;
  }
  .footnav{
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
  }
  .footnav .list{
    display: flex;
    margin: 0;
    padding: 0;
  }
}
