@charset "UTF-8";

/*
1.base
2.layout
3.module
4.state
----------------------------------------*/

/* 1.base
----------------------------------------*/

/*aos*/
[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity,transform
}

[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0)
}



/*font*/

@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.woff") format("woff");
}

/*---------------------------------------------
Common Style
---------------------------------------------*/

/*margin,padding*/

.m0 {margin: 0 !important;}
.mat0 { margin-top: 0 !important;}
.mat10 { margin-top: 10px !important;}
.mat20 { margin-top: 20px !important;}
.mat30 { margin-top: 30px !important;}
.mat40 { margin-top: 40px !important;}
.mat50 { margin-top: 50px !important;}
.mat60 { margin-top: 60px !important;}
.mat70 { margin-top: 70px !important;}
.mat80 { margin-top: 80px !important;}
.mat90 { margin-top: 90px !important;}
.mmat40 { margin-top: -40px !important;}
.mmat20 { margin-top: -20px !important;}
.mmab20 { margin-bottom: -20px !important;}

.mab10 { margin-bottom: 10px !important;}
.mab20 { margin-bottom: 20px !important;}
.mab30 { margin-bottom: 30px !important;}
.mab40 { margin-bottom: 40px !important;}

.mar10 { margin-right: 10px !important;}
.mal10 { margin-left: 10px !important;}

.pat0 { padding-top: 0 !important;}
.pat20 { padding-top: 20px !important;}
.pat30 { padding-top: 30px !important;}
.pat40 { padding-top: 40px !important;}

.pab0 { padding-bottom: 0 !important;}
.pab10 { padding-bottom: 10px !important;}
.pab20 { padding-bottom: 20px !important;}

.pab30 { padding-bottom: 30px !important;}
.pab40 { padding-bottom: 40px !important;}

.par10 { padding-right: 10px !important;}
.pal10 { padding-left: 10px !important;}


/* font-size */
.fzs { font-size: 75% !important;}
.fzm { font-size: 87% !important;}
.fzl { font-size: 100% !important;}
.fzml { font-size: 115% !important;}
.fzxl { font-size: 135% !important;}
.fzxll { font-size: 150% !important;}
.fzxlll { font-size: 175% !important;}
.fzxllll { font-size: 200% !important;}
.fzxlllll { font-size: 250% !important;}
.fs60 { font-size: 60px !important;}

/* font-weight */
.fwn {font-weight: normal;}
.fwb {font-weight: bold;}

/* color */
.f_pink { color: #c50018 !important;}
.f_red { color: #BE1616 !important;}
.f_black { color: #000 !important;}
.f_white { color: #fff !important;}
.f_brown { color: #835a00 !important;}
.f_blue { color: #0000b8 !important;}

.bg_pink { background-color: #c50018 !important;}
.bg_grey {background-color: #f0efef !important;}
.bg_black {background-color: #000000 !important;}


/*display*/

.fl {float: left !important;}
.fr {float: right !important;}

.tal {text-align: left !important;}
.tac {text-align: center !important;}
.tar {text-align: right !important;}


.pc {display: block;}
.sp {display: none;}

@media (max-width: 768px) {
  .pc {display: none }
  .sp {display: block }
  .fs60 { font-size: 42px !important;}
  .mmat40 { margin-top: -20px !important;}

}

*,
*:before,
*:after {
  box-sizing: border-box;
}


/*ホバーを滑らかに処理*/
a {
  color: #000;
  text-decoration: none;
  transition: .3s;
}


a:hover {
  text-decoration: none;
}

.btn_img img {
  transition: .3s;
}

.btn_img:hover {
  opacity: 0.7;
}

img,source {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  margin-bottom: 0px;
}


picture{
  display: block;
}


/*---------------------------------------------
layout
---------------------------------------------*/
body {
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
  min-width: 1200px;
	width: 100%;
	height: 100%;
	position: relative;
}

html.is-hammenu-active {
  overflow: hidden;
}
html.is-hammenu-active #header{
  height: 100%;
}

#wrap {
  position: relative;
  padding-top: 98px;
  overflow: hidden;
}
#top #wrap{
  padding-top: 63px;
}
.container {
  position: relative;
  width: 1170px;
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 0px 0 60px;
}


@media (max-width: 768px) {
  body {
    min-width: 0;
  }
  #wrap {
    padding-top: 103px;
  }
  #top #wrap{
    padding-top: 68px;
  }
  .container {
    width: 100%;
    padding: 0 1vw;
  }

  .section {
    padding: 0 0 20px;
  }
}
dl{
    margin-block-start:0!important;
    margin-block-end:0!important;
}


/* カラム レイアウト */
.two_column,.three_column{
  margin-left:1.5vw;
  display: flex;
  flex-wrap: wrap;
}
.two_column > *,
.three_column > * {
  margin: 0 6px 6px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0px 2px 3px #00000029;
  border-radius: 6px;
}




.two_column > *,.four_column > * {
  width:calc((100% / 4) - 6px);
}

.three_column > * {
  width:calc((100% / 6) - 6px);
}



@media (max-width: 768px) {
  .two_column > *,.four_column > * {
    width:calc((100% / 2) - 6px);
  }
  .two_column > *:nth-child(2n) {
    margin-right: 0;
  }
  .three_column > * {
    width:calc((100% / 3) - 6px);
  }
  .three_column > *:nth-child(3n) {
    margin-right: 0;
  }

}


/* title
---------------------------------------------*/
.title {
  border-top:1px solid #eeeeee;
  position: relative;
  text-align: center;
  padding:50px 0 30px;
  background-color: #ffffff;
}


.title_sub {
  position: relative;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
  display: block;
  color: #BE1616;
}

.title_bottom{
  display: block;
  background: url(/clothes/_assets/images/common/h2_shadow.webp) no-repeat top center;
  background-size: 100% auto;
  width:100%;
  height:35px;
  margin-bottom: 30px;
}


.title_main {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #000000;
}



@media (max-width: 768px) {
  .title {
    padding:40px 0 16px;
  }

  .title_sub {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .title_main {
    font-size: 26px;
  }


  .title_bottom{
    background-size: 150% auto;
    margin-bottom: 10px;
    height:15px;
  }


}


/* btn
---------------------------------------------*/
.btn {
  position: relative;
  display: block;
  width: 510px;
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  border: 2px solid #000000;
  border-radius: 100px;
  margin: auto;
  box-shadow: 0px 2px 4px #00000029;
  background: #fff;
  transition: .3s;
}

.btn:hover {
  color: #fff;
  background: #000;
}

.btn::after {
  position: absolute;
  content: "";
  width: 17px;
  height: 9px;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/common/i_btn_arrow_black.svg) no-repeat;
}


.btn:hover::after {
  background: url(../images/common/i_btn_arrow.svg) no-repeat;
}

.btn[target="_blank"]:hover::after {
  color: #FFD8D8;
  background: none;
}


.btn-cv,
.btn-search,
.btn-green {
  font-size: 24px;
  color: #fff;
  padding: 15px 50px;
  border: 0;
}

.btn-cv {
  background: #BE1616;
  font-size: 27px;
  padding: 17px 30px;
  border: 2px solid #BE1616;
}

.btn-cv:hover {
  color: #BE1616;
  background: #fff;
  border: 2px solid #BE1616;

}

.btn-cv:hover::after {
  background: url(../images/common/i_btn_arrow_red.svg) no-repeat;
}


.btn-cv::before {
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.btn-cv::before {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 300;
  content: "\f044";
}


.btn-cv::after {
  background: url(../images/common/i_btn_arrow.svg) no-repeat;
}
.btn-cv:hover::after {
  background: url(../images/common/i_btn_arrow_red.svg) no-repeat;
}


@media (max-width: 768px) {
  .btn {
    width: 90%;
  }

  .btn-cv {
    font-size: calc(12px + 1.5vw);
    padding: 14px 30px;
  }
}


.sub_conductor {
    position: relative;
    width: 100%;
    text-align: center;
}
.sub_conductor > a.sub_btn {
  position: relative;
    display: block;
    width: 370px;
    margin: 0 auto;
    line-height: 2.4;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    border: solid 2px #333333;
    color: #000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50px;
    background: #fff;
    padding-top: 1px;
    font-weight: 700;
    cursor: pointer;
}
.sub_conductor > a.sub_btn:hover{
    background-color:#333333;

    color: #fff;
}

.sub_conductor > a.sub_btn::after {
  position: absolute;
  content: "";
  width: 17px;
  height: 9px;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/common/i_btn_arrow_black.svg) no-repeat;
}

.sub_conductor > a.sub_btn:hover::after{
  background: url(../images/common/i_btn_arrow.svg) no-repeat;
}

/*IE 調整*/
@media all and (-ms-high-contrast: none){
    .sub_conductor > a.sub_btn {
        font-family: inherit;
    }
    .sub_conductor > a.sub_btn.arrow_right:before {
        top: -4px;
    }
    .sub_conductor > a.sub_btn {
        font-family: inherit; /*IE10以下*/
    }
    .sub_conductor > a.sub_btn.arrow_right:before {
        top: -4px\9;
    }
}


@media ( max-width: 768px ) {

    .sub_conductor > a.sub_btn {
        line-height: 2.5;
        width: 90%;
    }
    
    .sub_conductor > a.sub_btn:hover{
        background-color:#fff;
    }
    
}


/* cheers
---------------------------------------------*/
.cheers {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 370px;
  height: 48px;
  font-size: 28px;
  margin: 0 auto 15px;
}

.cheers::after,
.cheers::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background: url(../images/common/i_cheers_line.svg) no-repeat;
  background-size: contain;
  bottom: 0;
}

.cheers::before {
  left: -8px;
}

.cheers::after {
  right: -10px;
  transform: scale(1, -1);
}


.cheers_text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size:87%;
  color: #BE1616;
  height: 100%;
}

@media (max-width: 768px) {
  .cheers {
    font-size: 16px;
    height: 30px;
    width: 200px;
    position: relative;
    line-height: 1.2;
  }


  .cheers_text {
    align-items: center;
    padding-bottom: 10px;
    font-size:100%;
  }

}

/* mainvis
---------------------------------------------*/

.mainvis{
  position: relative;
}


.mainvis .mainvis_text {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  top: 0;
  left: 0;
  line-height: 1.25;
  padding-top: 4.5%;
}



@keyframes slider-zoomin {
  0% {
    opacity: 0;
    transform: scale(1.0);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.mainvis .swiper-slide {
  background: #ffffff;
  position : relative;
  max-width :100vw;
  min-width: 1200px;
  height: 0;
  padding-top: 37%;
  margin : auto;
  text-align: center;
  overflow : hidden;
}

.bgImg{
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  animation: slider-zoomin 8s infinite;
}
.mainvis .swiper-slide img{
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.bgImg.src1 {
  animation-name: slider-zoomin;
  animation-delay: 0s;
}
.bgImg.src2 {
  animation-name: slider-zoomin;
  animation-delay: 2s;
  opacity: 0;
}
.bgImg.src3 {
  animation-name: slider-zoomin;
  animation-delay: 4s;
  opacity: 0;
}
.bgImg.src4 {
  animation-name: slider-zoomin;
  animation-delay: 6s;
  opacity: 0;
}
.bgImg.src5 {
  animation-name: slider-zoomin;
  animation-delay: 8s;
  opacity: 0;
}
.bgImg.src6 {
  animation-name: slider-zoomin;
  animation-delay: 10s;
  opacity: 0;
}
.bgImg.src7 {
  animation-name: slider-zoomin;
  animation-delay: 12s;
  opacity: 0;
}
.bgImg.src8 {
  animation-name: slider-zoomin;
  animation-delay: 14s;
  opacity: 0;
}
.bgImg.src9 {
  animation-name: slider-zoomin;
  animation-delay: 16s;
  opacity: 0;
}
.bgImg.src10 {
  animation-name: slider-zoomin;
  animation-delay: 18s;
  opacity: 0;
}
.bgImg.src11 {
  animation-name: slider-zoomin;
  animation-delay: 20s;
  opacity: 0;
}


.vis_area .swiper-pagination-fraction,
.vis_area .swiper-pagination-custom,
.vis_area .swiper-pagination-bullets {
  bottom: -13px;
  left: 0;
  width: 100%;
}

.vis_area .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #CCCCCC;
  opacity: 1;
}
.vis_area .swiper-pagination-bullet-active {
  background: #BE1616;
}
.vis_area .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
  
}

.mainvis .swiper-slide .mainvis_text {
  position: absolute;
  width: 540px;
  height: 380px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 45px 15px 0;
  background-color: rgba(0,0,0,0.48);
  margin: auto;
}
.mainvis .swiper-slide .mainvis_text .lead {
  width: 80%;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #FF7D7D;
  border-top: solid 1px #FF7D7D;
  border-bottom: solid 1px #FF7D7D;
  padding: 5px;
}
.mainvis .swiper-slide .mainvis_text .title_main {
  display: block;
  width: 100%;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
  color: #fff;
  text-shadow: none;
  margin: 15px 0 0 0;
}
.mainvis .swiper-slide .mainvis_text .title_main span {
  display: block;
  font-size: 100px;
  font-weight: 500;
  line-height: 1.2;
}

.mainvis .swiper-slide .mainvis_text .point {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.mainvis .swiper-slide .mainvis_text .point li {
  width: calc(80% / 3);
  height: 100%;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.1;
  color: #FF7D7D;
  border-top: solid 1px #FF7D7D;
  border-bottom: solid 1px #FF7D7D;
  padding: 16px 10px 4px;
  text-align: center;
}
.mainvis .swiper-slide .mainvis_text .point li + li {
  margin-left: 6px;
}
.mainvis .swiper-slide .mainvis_text .point li:nth-child(3) {
  font-size: 20px;
}
.mainvis .swiper-slide .mainvis_text .point li:nth-child(3) em {
  font-size: 36px;
}


.mainvis_slider .swiper-pagination-fraction,
.mainvis_slider .swiper-pagination-custom,
.mainvis_slider.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 5px;
}

.mainvis_slider .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #EEEEEE;
  opacity: 1;
}

.mainvis_slider .swiper-pagination-bullet-active {
  background: #BE1616;
}

.mainvis_slider.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}


@media (max-width: 768px) {

  .mainvis .mainvis_text {
    width: 100%;
    height: 100%;
    line-height: 1.25;
    justify-content: flex-start;
    padding-top: calc(20px + 10%);
  }

  .mainvis .swiper-slide {
    padding-top: 88%;
    min-width: auto;
  }

  .vis_area .swiper-pagination-fraction,
  .vis_area .swiper-pagination-custom,
  .vis_area .swiper-pagination-bullets {
    bottom: -13px;
  }

  .vis_area .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
  }

  .vis_area .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
  .mainvis .swiper-slide .mainvis_text {
    width: 74.67vw;
    height: 75%;
    padding: calc(10px + 6%) 15px 15px;
  }

  .mainvis .swiper-slide .mainvis_text .lead {
    font-size: 4vw;
    padding: 6px 5px 3px;
  }
  .mainvis .swiper-slide .mainvis_text .title_main  {
    width: 100%;
    font-weight: bold;
    font-size: 6vw;
    margin: 15px 0 0 0;
  }
  .mainvis .swiper-slide .mainvis_text .title_main span {
    font-size: 16.53vw;
  }
  .mainvis .swiper-slide .mainvis_text .point {
    width: 100%;
  }
  .mainvis .swiper-slide .mainvis_text .point li {
    height: 100%;
    padding: 10px 10px 5px;
    font-size: 3.3vw;
  }
  .mainvis .swiper-slide .mainvis_text .point li + li {
    margin-left: 6px;
  }
  .mainvis .swiper-slide .mainvis_text .point li:nth-child(3) {
    font-size: 3.3vw;
  }
  .mainvis .swiper-slide .mainvis_text .point li:nth-child(3) em {
    font-size: 5vw;
  }

  .mainvis_box {
    width: 100%;
    padding: 30px 40px;
  }

  .mainvis .mainvis_text h2 {
    font-weight: 500;
    font-size: 9vw;
    letter-spacing: -0.1em;
    text-shadow: 2px 2px 14px #092100;
  }


}

@media  (max-width: 432px) {
    .mainvis.pattern .mainvis_text h2 {
      font-size: 7vw;
    }
    .mainvis .swiper-slide .mainvis_text h2 {
      font-size:6vw;
    }
    .mainvis .swiper-slide .mainvis_text .point li {
      padding: 4px 10px 5px;
      font-size: 3.2vw;
    }
    .mainvis .swiper-slide .mainvis_text .point li + li {
      margin-left: 4px;
    }
    .mainvis .swiper-slide .mainvis_text .point li:nth-child(3) {
      font-size: 2.4vw;
    }
    .mainvis .swiper-slide .mainvis_text .point li:nth-child(3) em {
      font-size: 4vw;
    }
}
@media (max-width: 320px) {
  
    .mainvis.pattern .mainvis_text h2 {
      font-size: 5vw;
    }
    .mainvis .swiper-slide .mainvis_text .point li {
      font-size: 1.8vw;
    }
    .mainvis .swiper-slide .mainvis_text .point li + li {
      margin-left: 2px;
    }
    .mainvis .swiper-slide .mainvis_text .point li:nth-child(3) {
      font-size: 1.8vw;
    }
    .mainvis .swiper-slide .mainvis_text .point li:nth-child(3) em {
      font-size: 3vw;
    }
   
}


/*2nd layer*/
#brand .mainvis,#item .mainvis {
  min-height: 290px;
  background: #62B6B9;
}
.mainvis .container{
  width: 1170px;
  min-height: 290px;
  display: flex;
  align-items: center;
}
.mainvis .page_title{
  width:730px;
  padding: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.mainvis .title_en{
  font-size:60px;
  line-height: 1;
  font-family: "Akshar",sans-serif;
  width: 100%;
}
.mainvis .title_en.ja{
  font-weight: 700;
}
.mainvis .title_ja{
  font-size: 16px;
  display: block;
  width: 100%;
}

.mainvis .title_purchase{
  font-size:64px;
  font-weight: 700;
  color:#FFD900;
  line-height: 1.4;
  width: 100%;
}
.mainvis figure{
  height: 290px;
  display: flex;
  align-items: flex-end;
  margin: 0;
}
.mainvis figure img{
  width:auto;
  height: 270px;
  margin: 0 auto;
}
.mainvis .obj_text{
  position: absolute;
  z-index: 2;
  left: 720px;
  bottom:160px;
  margin: auto;
  background: url(/clothes/_assets/images/common/mainvis_text.svg) no-repeat;
  background-size: 100% auto;
  width:56px;
  height:112px;
}
.mainvis .obj_persent,.mainvis .obj_ok{
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom:180px;
  margin: auto;
  background: url(/clothes/_assets/images/common/mainvis_persent.svg) no-repeat;
  background-size: 100% auto;
  width:74px;
  height:82px;
  transform: rotate(20deg);
}
.obj_ok{
  background: url(/clothes/_assets/images/common/mainvis_ok.svg) no-repeat!important;
}

@media (max-width: 768px) {
  #brand .mainvis,#item .mainvis {
    min-height: 330px;
  }
  .mainvis .container{
    width: auto;
    min-height: 330px;
    display: flex;
    align-items: start;
  }
  .mainvis .page_title{
    width:auto;
  }
  .mainvis .page_title.oneline{
    margin:10px auto;
  }
  .mainvis .title_en{
    font-size:42px;
  }
  #item .mainvis .title_en{
    font-size:34px;
    letter-spacing: -0.1em;
  }
  .mainvis .title_ja{
    font-size: 14px;
  }

  .mainvis .title_purchase{
    font-size:56px;
  }
  #item .mainvis .title_purchase{
    line-height: 1.2;
  }
  .mainvis figure{
    position: absolute;
    display: block;
    z-index: 1; 
    bottom:0;
    left:0;
    right:0;
    width:auto;
    height: auto;
    margin: 0 auto;
    text-align: center;
  }
  .mainvis figure img{
    height: 186px;
   
  }
  .mainvis .obj_text{
    left: 5%;
    bottom:20%;
  }
  .mainvis .obj_persent,.mainvis .obj_ok{
    right: 6%;
    bottom:30%;
  }
}

.coupon_banner{
  width:100%;
  height: 24px;
  background: url(/clothes/_assets/images/common/coupon_banner.svg) repeat-x #FFD900;
}
.coupon_banner a{
  display: block;
  width: 100%;
  height: 100%;
}
/* maincvsection
---------------------------------------------*/
.maincvsection {
  padding: 40px 0 0;
}




/* tab
---------------------------------------------*/
.tab_btnlist {
  width: 870px;
  margin: 0 auto 30px;
  display: flex;
  background-color: #ffffff;
  box-shadow: 0px 2px 3px #00000066;
  border-radius: 25px;
}


.tab_btnrow {
  width: 100%;
  display: flex;
	flex-wrap: wrap;
  justify-content: center;
  
}

.tab_btnitem {
  width: 100%;
  
}

.tab_btnitem {
	width: calc(100% / 3 - 5px);
}
body#brand .tab_btnitem {
  width: calc(100% / 2 - 5px);
}
.tab_btn {
  text-align: center;
  margin:6px 0;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  background: none;
  border: 0;
  display: block;
  width: 100%;
  border-radius: 25px;
  padding: 12px 5px 10px;
  cursor: pointer;
  transition: .3s;
}

.tab_btn:hover {
  color: #333333;
}

.tab_btn.is-active {
  color: #fff;
  background: #333333;
}

@media (max-width: 768px) {
  .tab_btnlist {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
  }

  .tab_btnrow {
    flex-wrap: wrap;
  }

}



/* flowlist
---------------------------------------------*/

.flowlist {
  position: relative;
  display: block;
  padding: 0 8px;
  margin:0 auto;
  height: auto;
  position: relative;
  
}
.flowlist .video-inner {
  width: 100%;
  margin: 0 auto;
}

.flowlist .video {
  position: relative;
  width:640px;
  height: 400px;
  margin: auto;
  overflow: hidden;
}

.flowlist video{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
}


.video-btn {
    position: absolute;
    top:0;
    left:0;
    right:0;
    cursor: pointer;
    width: 100%;
    height: height:100%;
    bottom: 0;
    margin: auto;
    z-index: 1;
}
.video-btn:after{
  content:"";
}
.video-btn.pause:after{
  content:"";
  background: url(/clothes/_assets/images/common/circle-pause-sharp-solid.svg) no-repeat;
  background-size: 60px auto;
  color:#fff;
  position: absolute;
  display: block;
  top:0;
  bottom: 0;
  left:0;
  right:0;
  width: 60px;
  height: 60px;
  margin: auto;
  z-index: 1;
}

@media (max-width: 768px) {
  .flowlist {
    display: block;
    padding: 0 15px;
  }
  .flowlist .video {
    width:auto;
    padding-top: 63.25%;
    height: 0;

  }
 .flowlist .video video {
    width: 100% !important;
  }

}

/*box-present
---------------------------------------------*/
#box-present .container{
  text-align: center;
}

#box-present .container figure img{
  width:50%;
}

@media ( max-width: 768px ) {
  #box-present .container figure img{
  width:100%;
}

}

/* reasonlist
---------------------------------------------*/
.reasonlist {
  display: flex;
  flex-wrap: wrap;
}

.reasonlist_item {
  width: calc(100% / 3);
  border-right: 1px solid #CCCCCC;
  text-align: center;
  margin-top: 20px;
  padding: 20px 5px;
}

.reasonlist_item:nth-of-type(3n+1) {
  border-left: 1px solid #CCCCCC;
}

.reasonlist_img {
  width: 132px;
}

.reasonlist_text {
  
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-top: 12px;
}

.reasonlist_textem {
  font-size: 34px;
  color: #BE1616;
}


@media (max-width: 768px) {
  .reasonlist_item {
    width: calc(100% / 2);
    margin-top: 15px;
    padding: 5px 5px 15px;
  }

  .reasonlist_item:nth-of-type(3n+1) {
    border-left: 0;
  }

  .reasonlist_item:nth-of-type(2n+1) {
    border-left: 1px solid #CCCCCC;
  }

  .reasonlist_img {
    width: 80px;
    height: auto;
  }

  .reasonlist_text {
    font-size: 14px;
    margin-top: 9px;
  }

  .reasonlist_textem {
    font-size: 18px;
  }

}



/* purchasegraph
---------------------------------------------*/


.purchasegraph_inner {
  width:800px;
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
}

.purchasegraph_text {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}
.purchasegraph_text span{
  color:#BE1616;
  font-weight: 700;
}
.purchasegraph_text.-large {
  font-size: 36px;
  font-weight: 700;
  color: #BE1616;
  margin-top: 5px;
}
.purchasegraph .nostore{
  margin: 30px 40px;
}
.purchasegraph .nostore img{
  width:60%;
  height: auto;
}
.purchasegraph_img{
  width:40%;
  height: auto;
  margin:40px;
}

@media (max-width: 768px) {
  .purchasegraph {
    padding: 0;
  }

  .purchasegraph_inner {
    width: auto;
    margin-bottom: 25px;
  }
  .purchasegraph_img {
    width: 60%;
  }

  .purchasegraph_imgarea {
    width: 100%;
    margin: 0;
  }

  .purchasegraph_textarea {
    width: 100%;
  }

  .purchasegraph_text {
    font-size: 18px;
    line-height: 1.5;
  }

  .purchasegraph_text.-large {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 5px;
  }

  .purchasegraph .nostore{
    margin: 10px 40px 20px;
  }
  .purchasegraph .nostore img{
    width:100%;
    height: auto;
   
  }
  .purchasegraph_img{
    margin: 30px 0 0;
  }
}



/* breadcrumb
---------------------------------------------*/
.breadcrumb {
  background: #666666;
  padding: 11px 0;
}

.breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb_item {
  color: #fff;
  font-size: 14px;
}

.breadcrumb_item:not(:last-of-type) {
  position: relative;
  margin-right: 25px;
}

.breadcrumb_item:not(:last-of-type)::after {
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 6 Pro';
  font-weight: 300;
  font-size: 14px;
  color: #fff;
  top: 0;
  bottom: 0;
  right: -16px;
  display: flex;
  align-items: center;
}

.breadcrumb_link {
  color: #fff;
}

.breadcrumb_link:hover {
  color: #D5EFB2;
}

.breadcrumb_link i {
  color: #fff;
  font-size: 14px;
  margin-right: 5px;
}



/* header
---------------------------------------------*/
#header {
  position: absolute;
  min-width: 1200px;
  width: 100%;
  z-index: 99;
}


.header_row {
  position: relative;
  display: flex;
  align-items: center;
  height: 63px;
  z-index: 5;
  box-shadow: 0px 10px 6px -5px #00000040;
  background: #fff;
}

.header_textarea {
  display: flex;
  align-items: center;
  height: 100%;
}

.header_logo {
  margin-left: 8px;
}

.header_logoimg {
  width: 260px;
  height: auto;
  font-weight: 700;
  font-size: 25px;
}

.header_text {
  font-size: 10px;
}

.header_cv {
  display: flex;
  margin-left: auto;
  height: 100%;
}

.header_cvlink {
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 5px 15px;
  font-size: 26px;
  background: #fff;
  border: 0;
  cursor: pointer;
  color: #000000;
  transition: .3s;
}

.header_cvlink:hover {
  color: #cccccc;
}

.header_cvlink.-hammenu {
  width: 68px;
}

.header_cvtext.-close {
  display: none;
}

.header_cvlinkicon.-close {
  display: none;
}

.header_cvtext {
  font-size: 12px;
  margin-top: 8px;
}



.header_nav_wrap {
  position: absolute;
  z-index: 2;
  width: 100%;
  min-width: 1200px;
}

.header_nav {
  display: flex;
  background: #444;
  height: 44px;
}

.header_navitem {
  width: auto;
  flex-grow: 1;
}

.header_navitem:not(:last-of-type) {
  border-right: 1px solid #68844D;
}

.header_navlink {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  padding: 14px 10px;
  height: 100%;
  text-align: center;
  position: relative;

}


/* humburger menu*/
.header_hammenu {
  position: absolute;
  right: 0;
  top: 63px;
  transform: translateX(100%);
  transition: transform .3s;
  z-index: 1000;
}

/* is-active */
.header_hammenu.is-active {
  transform: translateX(0);
}

.header_cvlink.is-active {
  background: #333333;
  color: #fff!important;
}

.header_cvlink.is-active .header_cvtext.-open {
  display: none;
}

.header_cvlink.is-active .header_cvtext.-close {
  display: block;
}
.header_cvlink .header_cvlinkicon{
  position: relative;
  width: 44px;
}
.header_cvlink .header_cvlinkicon:after{
  position: absolute;
  content:"買取申込";
  bottom:-20px;
  left:0;
  right:0;
  margin: auto;
  font-size:10px;
  transform: scale(0.8);
}

.header_cvlink.is-active .header_cvlinkicon.-open {
  display: none;
}

.header_cvlink.is-active .header_cvlinkicon.-close {
  display: block;
}
.header_cvlink.-hammenu .header_cvlinkicon:after{
  content:"MENU";
}
.header_cvlink.-hammenu .header_cvlinkicon.-close:after{
  content:"CLOSE";
}
@media (max-width: 768px) {
  #header{
    min-width: auto;
  }
  .header_row {
    height: 68px;
  }
  .header_cvlink:hover {
    color: #000000;
  }
  .header_textarea {
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    padding: 10px 13px 13px 0px;
  }

  .header_logo {
    margin-right: 0;
  }

  .header_logoimg {

    width: 100%;
    font-size: 20px;
  }

  .header_text {
    padding-left: 10px;
    padding-top: 2px;
  }

  .header_cvlink {
    padding: 5px;
    font-size: 26px;
    justify-content: center;
  }

  .header_cvlink.-hammenu {
    width: 50px;
  }
  
  .header_cvlink.-search {
    display: none;
  }

  .header_cvtextpc {
    display: none;
  }

  .header_nav_wrap {
    min-width: auto;
  }


  .header_navlink {
    font-size: calc(8px + 1.5vw);
    padding: 12px 5px 10px;
  }
}
@media (max-width: 340px) {
   .header_navlink {
      font-size: 12px;
    }
}
@media (max-width: 311px) {
   .header_navlink {
      font-size: 10px;
    }
}
/* hammenu
---------------------------------------------*/
.hammenu {
  background: #333333;
  padding: 20px;
  height: 100%;
  width: 340px;
  height: calc(100vh - 63px);
  overflow-y: auto;
}

.hammenu_list {
  padding-bottom: 12px;
  border-bottom: 1px solid #666666;
}
.hammenu_list li:first-of-type{
  margin-top:10px;
}
.hammenu_link {
  position: relative;
  display: block;
  font-size: 14px;

  color: #fff;
  padding: 7px 30px 7px 0;
}

.hammenu_link.second {
  font-size: 13px;
  font-weight: normal;
  padding: 9px 30px 9px 20px;
}

.hammenu_link::after {
  position: absolute;
  content: "";
  width: 17px;
  height: 9px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/common/i_btn_arrow.svg) no-repeat;
  display: flex;
  align-items: center;
}

.hammenu_link[target="_blank"]::after {
  background: none;
  content: "\f35d";
  font-family: 'Font Awesome 6 Pro';
  color: #fff;
  bottom: 0;
}
.hammenu_productstitle a:hover,
.hammenu_productsbrand a:hover,
.hammenu_toggletext:hover,
.hammenu_link:hover,
.hammenu_productsserieslink:hover {
  color: #FFD8D8;
}

.hammenu_link.-large {
  border-bottom: 1px solid #666666;
  margin-bottom: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* hammenu_products */
.hammenu_products {
  padding-top: 20px;
}

.hammenu_productstitle a,
.hammenu_productsbrand a {
  color: #fff;
}

.hammenu_productstitle {
  font-size: 14px;
  color:#cccccc;
}

.hammenu_productsitem {
  padding-left: 20px;
  border-bottom: 1px solid #666666;
}
.hammenu_productsitem.nopadding{
  margin-top:30px;
   padding-left: 0px;
}

.hammenu_togglebtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #333333;
  border: 0;
  width: 100%;
  padding: 12px 0;
}

.hammenu_productsbrand {
  font-size: 14px;
  color: #fff;
}

.hammenu_toggleicon {
  display: flex;
  align-items: center;
}

.hammenu_toggletext {
  font-size: 12px;
  color: #fff;
}

.hammenu_toggletext i {
  font-size: 14px;
  margin-left: 5px;
}

.hammenu_togglebtn .hammenu_toggletext.-close {
  display: none;
}

.hammenu_productsseries {
  padding-left: 25px;
  padding-bottom: 10px;
  font-size: 12px;
  color:#999;
}
.hammenu_productsseries p{
   padding: 3px 0;
}
.hammenu_productsserieslink {
  display: block;
  color: #fff;
  padding: 3px 0;
}

/* is-active */
.hammenu_toggleicon.is-active .hammenu_toggletext.-open {
  display: none;
}

.hammenu_toggleicon.is-active .hammenu_toggletext.-close {
  display: block;
}

@media (max-width: 768px) {
  .header_hammenu {
    top: 68px;
  }
  .hammenu {
    padding: 20px 20px 100px;
  }
	.hammenu_toggletext i {
		margin-left: 3px;
	}
}

/*第二階層ナビ*/

header nav{
  width: 100%;
  height: 35px;
  padding-top:4px;
  background: #EEEEEE;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav ul li{
  margin-right:30px;
  padding-right:30px;
  border-right: 1px solid #ccc;
}
header nav ul li:first-of-type{
  padding-left: 30px;
  border-left:  1px solid #ccc;
}
header nav ul li:last-of-type{
  margin-right:0px;
}

@media (max-width: 768px) {
  header nav{
    padding-top:2px;
  }
  header nav ul li{
    padding-right:0;
    border-right: none;
  }
  header nav ul li:first-of-type{
    padding-left: 0px;
    border-left:  none;
  }
}

/* footer
---------------------------------------------*/
.footer_inner {
  background: #333333;
  padding: 25px 0;
  text-align: center;
}

.footer_top {
  padding-bottom: 40px;
  border-bottom: 1px solid #CCCCCC;
}

.footer_inner a:hover {
  color: #FFD8D8;
}

.footer_bottom {
  padding-top: 38px;
}

.footer_logoimg {
  width: 153px;
  height: auto;
}

.footer_toplink {
  margin: 15px auto 30px;
}

.footer_toplink a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.footer_list {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.footer_list li {
  border-left:1px solid #666;
  width:calc(100%/5);
  margin-bottom:20px;
}

.footer_list li:nth-child(5n),
.footer_list li:last-of-type{
  border-right:1px solid #666;
}

.footer_list.-small{
  width:100%;
}
.footer_list.-small li{
  width:calc(100%/6 - 10px);
}
.footer_list.-small li:nth-child(5n){
 border-right:none;
}

.footer_list a {
  display: block;
  padding: 1px 14px;
  color: #fff;
  font-size: 14px;
}

.footer_list.-small a {
  font-size: 13px;
  font-weight: 400;
}

.footer_address {
  margin-top: 42px;
  color: #fff;
  font-size: 14px;
}

.footer_addresstext {
  line-height: 2.2;
}

.footer_copyright {
  margin-top: 38px;
}

.footer_copyright small {
  font-size: 14px;
}

.footer_sns {
  display: flex;
  justify-content: flex-end;
}

.footer_sns li + li {
  margin-left: 20px;
}

.footer_sns img {
  width: 36px;
  height: auto;
}

footer .page-top {
  display: none;
  position: fixed;
  bottom: 75px;
  right: 10px;
  width: 70px;
  height: 70px;
  background: #666666;
  border-radius: 6px;
}

footer .page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

footer .page-top a:hover {
  opacity: 1;
  transform: translate(0px, -5px);
}

@media (max-width: 768px) {
  .footer_inner {
    padding: 25px 20px 130px;
  }

  .footer_list {
    flex-wrap: wrap;
  }

  .footer_list a {
    display: block;
    padding: 1px 10px;
    color: #fff;
    font-size: 12px;
  }

  .footer_list.-small a {
    font-size: 10px;
    font-weight: 400;
  }

  .footer_list li {
    font-size: 12px;
    width:calc(100% / 2);
    margin-bottom:15px;
  }
  .footer_list li:nth-child(5n){
   border-right:none;
  }
  .footer_list li:nth-child(2n),
  .footer_list.-small li:nth-child(3n){
    border-right:1px solid #666;
  }

  .footer_list.-small{
    width:100%;
  }
  .footer_list.-small li{
    width:calc(100%/3 - 10px);
  }
   .footer_list.-small li:nth-child(3n){
     border-right:1px solid #666;
   }

  .footer_sns {
    margin-top: 60px;
    justify-content: center;
  }

  .footer_sns img {
    width: 50px;
  }

  footer .page-top {
    bottom: 10px;
  }
}


/* 買取実績 */
#results {
  padding-bottom: 50px;
}

#results .purchaselist {
  padding: 15px 8px 0;
  display: flex;
  flex-wrap: wrap;
}

#results a.list {
  position: relative;
  margin: 0 6px 15px;
  padding:8px 10px 140px;
  box-sizing: border-box;
  border-radius: 3px;
  background-color: #eee;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.16);
  width: calc((100% / 6) - 12px);
}

 #results .purchaselist_item .purchase_genre_content {
  position: relative;
  height: 130px;
  text-align: center;
  margin: 0;
  box-sizing: border-box;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
 #results .purchaselist_item .purchase_genre_content img {
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
}
 #results .purchaselist_item::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 9px;
  width: 40px;
  height: 43px;
  background: url(../../_assets/images/common/i_restrictions.webp) no-repeat;
  background-size: contain;
  z-index: 1;
}


 #results .purchaselist_item .purchase_data2,
 #results .purchaselist_item .purchase_data3 {
  font-size: 10px;
  line-height: 1.4;
  color: #000;
  text-align: left;
  margin: 7px 0 3px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}


#results .purchaselist_item .purchase_data3 {
  margin: 3px 0 5px;
}

 #results .purchaselist_item .purchase_name2 {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  color: #000;
}
 #results .purchaselist_item .purchase_name3 {
  position: absolute;
  font-weight: 300;
  background: #fff;
  font-family: 'Akshar', sans-serif;
  width: 52%;
  height: 20px;
  margin: auto;
  padding: 0;
  bottom: 38px;
  right: 0;
  left:0;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  border-radius: 6px;
}
#results .purchaselist_item .purchase_name3 span {
  position: absolute;
  top: -2px;
  right: 5px;
  color: #000;
}

 #results .purchaselist_item .purchase_name3:before {
  content: "状態ランク";
  position: absolute;
  z-index: 1;
  font-size: 10px;
  color: #000;
  top: 6px;
  left: -27px;
  right:0px;
  margin: auto;
  font-weight: normal;
  line-height: 1;
}


 #results .purchaselist_item .purchase_prise2 {
  position: absolute;
  bottom:80px;
  left:0;
  right: 0;
  font-weight: bold;
  font-size: 137.5%;
  color: #BE1616;
  z-index: 1;
  text-align: center;
  margin: 10px auto 0;
  line-height: 1.4;
}

#results .purchaselist_item .purchase_prise2 span {
  font-size: 168.1%;
  font-weight: 500;
  font-family: 'Akshar', sans-serif;
}

 #results .purchaselist_item .purchase_prise2::after {
  content: '';
  position: absolute;
  background: url(/clothes/_assets/images/common/bg_shadow-yellow.webp) no-repeat;
  background-size: contain;
  width: 200px;
  height: 13px;
  bottom: -5px;
  left:0;
  right: 0;
  margin: auto;
  z-index: -1;
}

 #results .purchaselist_item .purchase_text {
  position: absolute;
  bottom:63px;
  left:0;
  right: 0;
  margin: 10px 10px 0;
  text-align: center;
  color: #BE1616;
  font-weight: 600;
  font-size: 12px;
  z-index: 2;
}
 #results .purchaselist_item .purchase_subdate {
  position: absolute;
  margin: 0 auto;
  bottom:16px;
  left:0;
  right: 0;
  text-align: center;
  font-size: 10px;
  z-index: 2;
}
#smartphone-purchaselist .more-btn button {
  cursor: pointer;
}



@media (max-width: 768px) {
  #results {
    padding-bottom: 30px;
  }
  #results .purchaselist {
    margin-left:6px ;
  }

  #results a.list {
   /* width: calc((100% - 12px) / 3);*/
    width: calc((100% - 12px) / 2);
    margin: 0 6px 15px 0 !important;
    background-color: #eee;
    padding: 8px 10px 100px;
    border-radius: 6px;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.16);
  }

  /*#results .purchaselist_item:nth-child(3n) {
    margin-right: 0 !important;
  }*/
  #results a.list:nth-child(2n) {
    margin: 0 0 15px 0 !important; !important;
  }

  /*topのみ横スクロールに*/
  #top #results .purchaselist {
    flex-wrap: nowrap;
    overflow-x: scroll;
  
  }
  #top #results a.list  {
    width: calc((98% - 12px) / 2);
    flex-shrink: 0;
  }

  #top #results a.list:nth-child(2n) {
    margin: 0 6px 15px 0 !important;
  }

  #results .purchaselist_item .purchase_genre_content {
    /*height: 17vw;*/
    height: 29vw;
    padding: 0;
  }

  #results .purchaselist_item .purchase_data2, #results .purchaselist_item .purchase_data3{
    margin: 5px 0 2px;
  }

  #results .purchaselist_item .purchase_name2 {
    font-size: 14px;
    margin-top: 5px;
  }
  #results .purchaselist_item .purchase_data3 {
    margin: 2px 0 0;
  }
  #results .purchaselist_item .purchase_name3:before {
    font-size: 10px;
    left: 10px;
    margin: auto;
    right:auto;
  }
  #results .purchaselist_item .purchase_name3 span {
    top: -2px;
    font-size:20px;
  }
  #results .purchaselist_item .purchase_prise2 {
    bottom:62px;
    font-size: 130% !important;
  }


  #results .purchaselist_item .purchase_prise2::after {
    background-size: contain;
    width: 100px;
    left: -8px;
    bottom: -6px; 
  }

  /*#results .purchaselist_item::before {
    width: 23px;
    height: 25px;
    left: 6px;
  }*/
  #results .purchaselist_item::before {
    width: 43px;
    height: 34px;
    left: 6px;
  }

  #results .purchaselist_item .purchase_text {
    bottom:51px;
    font-size: 80%;
  }
  #results .purchaselist_item .purchase_name3 {
    bottom:28px;
    font-size: 14px;
    padding: 18px 0 0px;
  }
  #results .purchaselist_item .purchase_subdate{
    /*bottom:11px;*/
    bottom:8px;
    font-size:65%;
  }
}


/*ラベル（「開く」ボタン）*/
input[type="checkbox"].on-off{
  position: absolute;
  top: 50%;
  display: block;
  opacity: 0;
}
.open-label{
  position: absolute;
  margin: 0 auto 0;
  padding: 0.8em 0.8em 0.6em;
  display: block;
  color: #000;
  font-weight: bold;
  text-align: center;
  background: #ffffff;
  border: 2px solid #000;
  border-radius: 24px;
  position: relative;
  width: 350px;
  right: 0;
  left: 0;
  cursor: pointer;
  transition: .3s;
  z-index: 5;
}

.open-label:before{
  display: block;
  position: absolute;
  font-family: 'Fontawesome';
  width: 14px;
  height: 14px;
  color: #000;
  font-size: 140%;  
  content: "\f107";
  top:8px;
  right: 20px;
}
.open-label::after{
  content:'もっと見る'; 

}

.open-label:active{
  box-shadow: 0 0 0 0;
}
.open-label:hover{
  background: #000;
  color: #fff;
}
.open-label:hover:before {
  color: #fff;
}

.on-off:checked ~ .open-label:before{
    display: block;
    position: absolute;
    font-family: 'Fontawesome';
    width: 14px;
    height: 14px;
    color: #000;
    font-size: 140%;  
    content: "\f106";
    top:8px;
    right: 20px;
}
.on-off:checked ~ .open-label:hover:before{
    color: #fff;
}
.on-off:checked ~ .open-label:after{
  content: '閉じる';
}

/*開閉エリア*/
.open{
  max-height: 1500px;
  overflow: hidden;
  transition: .5s;
  position: relative;
  padding: 5px 0 0;
}
.open::before {
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #ffffff  100%);
}
.on-off:checked ~ .open{
  max-height: 100%;
}
/*開閉エリアにぼかしを乗せる*/
.open::before{
  content:'';
  background: linear-gradient(to bottom, transparent,rgba(255,255,255,1)100%);
  position: absolute;
  top: 1240px;
  left:0;
  right:0;
  bottom:0;
  z-index: 10;
}
/*開いたらぼかしを消す*/
.on-off:checked ~ .open::before{
  background: none;
  z-index: -1;
}

@media screen and (max-width: 768px){
  /*ラベル（「開く」ボタン）*/
  .open-label{
    width:90%;
    left:0;
  }

  /*開閉エリア*/
  .open{
    max-height: 1400px;
    padding: 0;
  }
  .open-label:hover{
    background: #fff;
    color: #000;
  }
  .open-label:hover:before {
    color: #000;
  }
  .on-off:checked ~ .open-label:hover:before{
    color: #000;
  }
}




/*-------高価買取カラムボタン---------*/
/*strength_list=今季の買取強化ブランド*/
/*brand_list=高価買取リスト*/
/*genre_list=高価買取ジャンル*/
/*item_list=高価買取アイテム*/

.strength_list > *{
  position: relative;
  min-height: 120px;
  transition: .3s;
}

.strength_list > * a{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction:column;
  box-sizing:border-box;
  width: 100%;
  height: 100%;
  background: #eeeeee;
}
.strength_list > * a:hover{
  background: #FFD8D8;
}
.strength_list > * a span,
.brand_list > * a span{
  font-family: "Akshar";
  font-weight: 700;
  font-size:20px;
  line-height: 1;
  margin-bottom:5px;
}

.strength_list > * a p,
.brand_list > * a p
{  
  font-size:10px;
}

.brand_list > *{
  overflow: hidden;
}

.brand_list > * a,
.genre_list > * a,
.item_list > * a{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction:column;
  box-sizing:border-box;

}


.brand_list > * a{
  min-height: 130px;
  background-size: 100% auto!important;
}
.brand_list > * a:hover{
  opacity: 0.7;
}

.brand_list > * a > *{
  color:#ffffff;
  width: 100%;
  height:auto;
  
}
.genre_list > *{
  background: #ffffff;
}

.genre_list > * a{
  min-height: 130px;
  background-size: auto 100%!important;
  font-weight: 700;
}
.genre_list > * a:hover{
  opacity: 0.7;
}

.genre_list > * a > *{
  margin-left:80px;
}

.item_list > *{
  background: #eeeeee;
}


.item_list > * a {
  min-height: 140px;
  background-size: 64% auto!important;
}

.item_list > * a:hover {
  opacity: 0.7;
}

.item_list > * a > *{
  font-weight: 700;
  margin-top:-60px;
}

/*取り扱いなし*/
.no_sell{
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

@media (max-width: 768px) {
  .strength_list > *{
    min-height: 25vw;
  }

  .strength_list > * a span,
  .brand_list > * a span{
    font-size:4.7vw;
  }
  .genre_list > * a{
    min-height: 80px;
  }
  .genre_list > * a > * {
    margin-left: 15vw;
  }

  .item_list > * a {
    background-size:auto 70px!important;
  }
}


/*買取対象ブランド一覧*/
.brandname .container {
  position: relative;
}

.char-list { 
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  padding: 0 1vw;
  background-color: #fff;
}
.char-list ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 0 15px 0;
  font-size: 14px;
  font-weight: bold;
}
.char-list li {
  float: left;
  width: calc((100% - 48px) / 13);
  margin: 4px 4px 0 0;
  text-align: center;
}
.char-list li:nth-child(13n) {
  margin-right: 0;
}
.char-list li a {
  display: block;
  height: 40px;
  border-radius: 6px;
  background: #eee;
  color: #000;
  line-height: 40px;
  transition: .5s;
  cursor: pointer;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.16);
}
.char-list li a:hover{
  background: #FFD8D8;
}
.brandname_list_area {
  padding: 105px 5.33vw 0;
  height: 500px;
  overflow-y: scroll;
  margin: auto;
}

[id*="chara-"] {
  padding-top: 125px;
  margin-top: -105px;
}
.initials {
  border-radius: 6px;
  background: #eee;
  padding: 10px;
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.brandname_list {
  display: flex;
  flex-wrap: wrap;
}
.brandname_list li {
  width: 50%;
  padding: 10px 5px;
  border-bottom: solid 1px #ccc;
  font-size: 14px;
  font-weight: bold;
}
.brandname_list li .kana {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: normal;
}
#chara-other {
  margin-bottom: 170px;
}



/*検索ボックス*/


#search_block{
  background: #000000;
}

.search_title{
  position: relative;
  background: url(/clothes/_assets/images/common/title_search.svg) no-repeat top 30px center;
  background-size:50px auto;
  padding-top:100px;
  margin:30px 0;
  color: #ffffff;
}

.search_title > *{
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}
.search_wrap {
  position: relative;
  text-align: center;
  width: 80%;
  margin: auto;
}
.autoComplete_wrapper {
  display: block!important;
}
#search_block .search_wrap input {
  width: 100%;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 10px;
  background: #EEEEEE;
  box-shadow: inset 0px 2px 4px #00000029;
  padding:20px 0 18px 14px;
  color: #000;
  height: auto;
}

#search_block .search_wrap input::placeholder{color: #000;}

#search_block .search_wrap button{
  position: absolute;
  top:7px;
  right:7px;
  border-radius: 8px;
  background: #333333;
  font-size: 16px;
  color:#ffffff;
  width:8em;
  padding:12px 0 8px;
}

#search_block #search_error{
  text-align: left;
  position: relative;
  margin-top:10px;
  color:#FFC6C6;
  padding-left:1.5em;
}
#search_block #search_error:after{
  position: absolute;
  content:"\f071";
  font-family: "Font Awesome 6 Pro solid";
  font-weight: 700;
  width: 1em;
  height: 1me;
  top:0;
  left:0;
}

#search_block #search_result_ok,
#search_block #search_result_no{
  position: relative;
  background: #FFD8D8;
  padding:30px 5vw 20px;
  border-radius: 10px;
  text-align: center;
  margin-top:6px;
}

#search_block #search_result_no{
  background: #EEEEEE;
  font-weight: 700;
}

#search_block #search_result_ok:after,
#search_block #search_result_no:after{
  position: absolute;
  display: block;
  content:"▼";
  width:1em;
  height: 1em;
  color:#000000;
  transform:scaleX(3);
  top:-6px;
  left:0;
  right: 0;
  margin: auto;
}

#search_block #search_result_ok .red_txt,
#search_block #search_result_ok .black_txt{
  font-size:16px;
  font-weight: 700;
  color:#BE1616;
  text-decoration: underline;
  text-decoration-thickness:0.5px;
  text-underline-offset:4px;
  line-height:1.5;
}
#search_block #search_result_ok .black_txt{
  color:#000000;
}
#search_block #search_result_ok .result_camp span{
  color:#BE1616!important;
  text-decoration-color:#BE1616!important;
}
#search_block #search_result_ok .result_camp em{
  font-size:28px;
}



.autoComplete_wrapper>ul{
    margin: -7px 0 0 0!important;
    border-radius: 0 0 0.6rem 0.6rem!important;
    border: none!important;
    box-shadow: inset 0px -2px 4px #00000029!important;
}

@media (max-width: 768px) {
  .search_title{
    background-size: auto;
    padding-top:80px;
  }
  .search_title > *{
    font-size: 26px;
  }
  .search_wrap {
    width: 100%;
  }
  #search_block .search_wrap button{
    top:1.5vw;
    right:3vw;
    width:4em;
    padding:16px 0 14px;
  }
}

/*洋服と一緒にお送りください!!*/
.together dl{
  display: flex;
  font-size:14px;
}
.together dt{ 
  width:30%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eeeeee;
  font-weight: 700;
  box-sizing: border-box;
  padding:14px 0;
  border-top:1px solid #666666;
}
.together dd{
  width:70%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  padding:14px;
  border-top:1px solid #cccccc;
}
.together dl:last-of-type dt{
  border-bottom:1px solid #666666;
}
.together dl:last-of-type dd{
  border-bottom:1px solid #cccccc;
}

/*高価買取リスト*/
.purchase_list li{
  position: relative;
  display: flex;
  align-items: stretch;
  padding-bottom: 80px;
  background: #ffffff;
}

.purchase_list figure {
  width: 100%;
  text-align: center;
  margin:0;
  padding:20px 0px 10px;
  box-sizing: border-box;
  font-size: 0;
}

.purchase_list figure img {
  max-width: 100%;
  width:auto;
  height:auto;
}
.purchase_list li a:hover figure img {
  opacity: 0.7;
}

.purchase_list dl {
  width: 100%;
  padding:0 30px;
  box-sizing: border-box;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
  line-height: 1.3;
}

.purchase_list .purchase_brand {
  font-size:75%;
}
.purchase_list .purchase_brand em{
  margin-right:0.5em;
}
.purchase_list .purchase_genre{
  width:100%;
}
.purchase_list .purchase_name {
  margin: 6px 0 0;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.purchase_list .price_box{
  position: absolute;
  bottom:0;
  left:0;
  right:0;
  padding:10px 30px 10px;
}
.purchase_list .purchase_prise {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  color:#BE1616;
}

.purchase_list .purchase_prise span {
  font-size: 46px;
  display: inline-block;
  margin: 0 0 0 auto;
  z-index: 3;
  font-family: 'Akshar', sans-serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-right: 5px;
  position: relative;
  top: 3px;
}

.purchase_list .purchase_prise em {
  width: 2em;
  font-size: 12px;
  font-weight: normal;
  position: relative;
  top: -10px;
  color:#000000;
}
@media (max-width: 768px) {
  .purchase_list li{
    padding-bottom: 70px;
  }
  .purchase_list figure {
    padding:10px;
  }
  .purchase_list dl {
    padding:0 10px;
  }
  .purchase_list .price_box{
    padding:10px 10px 6px;
  }
  .purchase_list .purchase_prise {
    font-size: 14px;
  }
  .purchase_list .purchase_prise span {
    font-size: 34px;
  }
  .purchase_list .purchase_prise em {
    font-size: 10px;
  }

}


/*こんな状態でも買取できます*/
.situation{
  display: flex;
  flex-wrap: wrap;
}
.situation ul{
  width:calc((100% / 2) - 20px);
  margin:10px 10px 0 0;
  display: flex;
  box-sizing: border-box;
}
.situation ul:nth-child(2n){
  margin:10px 0 0 0;
}
.situation li:first-of-type{
  width:24%;
  box-sizing: border-box;
  padding:0 0 10px 0;
  border-bottom:1px solid #666666;
}
.situation li:first-of-type img{
  border-radius: 6px;
  
}
.situation li:last-of-type{
  width:76%;
  box-sizing: border-box;
  border-bottom:1px solid #cccccc;
}
.situation dl{
  margin:6px 0 0 16px;
}
.situation dt{ 
  font-weight: 700;
  box-sizing: border-box;
  margin-bottom:6px;
}
.situation dd{
  padding:0 10px 10px 0;
}
.situation dd span{
  font-size:87%;
  display: block;
}

@media (max-width: 768px) {
  .situation ul{
    width:100%;
    margin:10px 10px 0;
  }
  .situation ul:nth-child(2n){
    margin:10px 10px 0;
  }
}

/*アイテム・高く売るコツ*/
#item .point{
  display: flex;
  flex-wrap: wrap;
}
#item .point ul{
  padding:20px;
  margin:20px 10px 0px 0;
  display: flex;
  box-sizing: border-box;

}
#item .point ul:nth-of-type(odd){
  background: #eee;
}
#item .point li:first-of-type{
  width:16%;
  padding:0 20px 20px 0;
  box-sizing: border-box;
}
#item .point li:first-of-type img{
  border-radius: 6px;
  
}
#item .point li:last-of-type{
  width:80%;
  box-sizing: border-box;
 
}
#item .point dl{
  margin:6px 0 0 16px;
}
#item .point dt{ 
  font-weight: 700;
  font-size:120%;
  box-sizing: border-box;
  margin-bottom:6px;
  margin-top:20px;
}
#item .point dd{
  font-size:87%;
  letter-spacing: 0.05em;
  line-height: 1.8;
  position: relative;
   z-index: 1;
}
#item .point dd:first-letter {
    font-size: 170%;
    margin:0.6em 0.8em 0 0.4em;
    float: left;
    line-height: 1;
    color:#fff;
}
#item .point dd:before {
  background: #333;
  content:"";
  width:3em;
  height: 3em;
  display: block;
  position: absolute;
  z-index: -1;
  top:0.3em;
  left:0;
}


#item .point .trigger{
  color:#BE1616;
  display: block;
  text-align: right;
  margin:10px 0;
}

@media (max-width: 768px) {
  #item .point ul{
    display: block;
    width:100%;
    margin:10px 10px 0;
  }
  #item .point ul:nth-child(2n){
    margin:10px 10px 0;
  }
  #item .point li{
    width: 100%!important;
  }
  #item .point li:first-of-type{
    border: none;
    text-align: center;
  }
  #item .point li img{
    height:200px;
    width: auto;
    margin: auto;
  }
  #item .point dl{
    margin: 6px 0 0 0px;
  }
}



/*買取できない商品*/
#no_purchase .no_purchase_title{
  position: relative;
  padding-top:120px;
  margin:50px 0;
  text-align: center;
}
#no_purchase .no_purchase_title:before{
  position: absolute;
  display: block;
  content:"";
  background: url(/clothes/_assets/images/common/caution.svg) no-repeat;
  background-size:50px auto;
  width:50px;
  height: 50px;
  top:50px;
  left:0;
  right:0;
  margin: auto;
}
#no_purchase .no_purchase_title h2{
  font-size:42px;
  font-weight: 700;
}
#no_purchase .no_purchase_title p{
  font-size:14px;
  font-weight: 300;
}
#no_purchase dl{
  margin-bottom:20px;
}
#no_purchase dt{
  position: relative;
  background: #ffffff;
  padding:14px;
  border-radius: 6px;
  font-weight: 700;
  margin-bottom:20px;
}
#no_purchase dt:before{
  content:"\2b";
  position: absolute;
  right:20px;
  top:25%;
  font-family: "Font Awesome 6 pro";
  font-size:16px;
}
#no_purchase dd{
  padding:0 50px;
  margin-bottom: 20px;
}
#no_purchase li{
  position: relative;
  padding-left:1.2em;
  margin-bottom:0.3em;
}
#no_purchase li:before{
  position: absolute;
  content:"\f057";
  display: block;
  left:0;
  top:0;
  color:#666666;
  font-size:14px;
  font-family: "Font Awesome 6 pro";
}
#no_purchase dt.js-active:before{
  content:"\f068";
}

@media (max-width: 768px) {
  #no_purchase .no_purchase_title{
    padding-top:80px;
    margin:30px 0;
  }
  #no_purchase .no_purchase_title:before{
    background-size:40px;
    width:40px;
    height: 40px;
    top:30px;
  }

  #no_purchase .no_purchase_title h2{
    font-size:24px;
  }
  #no_purchase dt:before{
    right:5vw;
  }
  #no_purchase dd{
    padding: 0 14px;
  }
}

/*faq*/
#faq dl{
  width:90%;
  margin:auto;
}
#faq h3{
  background: #eeeeee;
  text-align: center;
  padding:12px 12px 10px;
  line-height: 1.3;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  margin:40px 0;
}
#faq h3:first-of-type{
  margin-top:0;
}
#faq dl {
  margin-bottom: 20px;
}

#faq dt {
  display: block;
  border-bottom: 1px solid #333;
  padding: 8px 16px 8px 66px;
  position: relative;
  color: #000;
  font-size: 125%;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: bold;
}

#faq dt:after {
  content: "Q";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 48px;
  font-size: 150%;
  font-weight: bold;
  background-color: #333;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  font-family: "Oswald";
  font-weight: 700;
  bottom: 0;
  left: 0;
}

#faq dd {
  display: block;
  padding: 0;
  margin-left: 100px;
  padding: 8px 8px 30px 0px;
  position: relative;

}

#faq dd:after {
  content: "A";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  font-family: 'Akshar', sans-serif;
  font-weight: 700;
  bottom: 0;
  left: 0;
  font-size: 150%;
  color: #aa2d22;
  top: 1px;
  left: -30px;
}

#faq dt span {
  display: block;
  cursor: pointer;
  position: relative;
}

#faq dt span:before {
  position:absolute;
  content: '\2b';
  font-family: 'Font Awesome 6 pro';
  font-size:16px;
  top:0;
  right:0px;
}

#faq dt.js-active span:before {
  content: "\f068";
}

#faq dd strong {
  font-size: 16px;
  color:#BE1616;
  font-weight: bold;
  display: block;
}
#faq dd a{
  color:#000;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .section#faq{
    padding: 0px 0 50px;
  }
  #faq h3{
     margin:30px 0;
  }

  #faq dl{
    width:auto;
  }
  #faq dt {
    vertical-align: middle;
    font-size: 100%;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 46px;
    padding: 8px 30px 8px 45px;
  }

  #faq dt:after {
    width: 36px;
  }
  #faq dt span:before {
    right:-22px;
  }

  #faq dd {
    margin-left: 40px;
    padding: 8px 0px 16px 4px;
    position: relative;
  }

  #faq dt.js-active span.i_plus:before {
    font-size: 140%;
    font-weight: 700;
  }
  #faq .sub_conductor>a.sub_btn{
    line-height: 2.3;
  }
}




/* 追従ボタン */
.fixed_btn {
  height: 50px;
  background: #BE1616;
  border-radius: 12px 12px 0 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 570px;
  display: none;
  margin: auto;
  z-index: 98;
}

.fixed_btn a {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  width: 60%;
  box-sizing: border-box;
  color: #FFFFFF;
  align-items: center;
  position: relative;
  top: 2%;
}

.fixed_btn a::after {
  content: '';
  width: 26px;
  height: 14px;
  background: url(/mobilebuy/_assets/images/common/i_btn_arrow.svg) no-repeat;
  background-size: contain;
  position: relative;
  right:-20px;
  top: -2px;

}
.fixed_btn .left_box{
  background: #ffffff;
  border-radius: 6px 0px 0px 0px;
  overflow: hidden;
  display: flex;
  width:40%;
  box-sizing: border-box;
}
.fixed_btn .bubble {
  color: #BE1616;
  width:16em;
  font-size: 12px;
  background: #FFFFFF;
  box-shadow: 4px 0px 4px #00000033;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 20px;
  margin-right: 26px;
  position: relative;
}
.fixed_btn .bubble em{
  font-size:14px;
}
.fixed_btn .bubble::after {
  position: absolute;
  top: 31%;
  right: -18px;
  content: '';
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-left: 12px solid #fff;
}

.fixed_btn .day{
  width:10em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color:#BE1616;
  padding-bottom:3px;
}
.fixed_btn .day em{
  font-size:38px;
  line-height:33px;
  font-weight: 500;
  font-family: "Akshar",serif;
}

@media (max-width: 767px) {
  .fixed_btn {
    height: 46px;
    border-radius: 6px 6px 0 0;
    width: 90%;
  }

  .fixed_btn a {
    width:50%;
    font-size: 20px;
  }

  .fixed_btn a::after {
    content: '';
    width: 17px;
    height: 8px;
    position: relative;
    top: -2px;

  }
  .fixed_btn .left_box{
    width:50%;
  }
  .fixed_btn .bubble {
    border-radius: 6px 0px 0px 0px;
    padding: 5px 7px 5px 16px;
    margin-right: 13px;
  }

  .fixed_btn .bubble::after {
    right: -14px;
    content: '';
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left: 5px solid #fff;
  }
}


.campaign_block{
  background: #EEEEEE;
  border-radius: 0 0 6px 6px;
  text-align: center;
  padding:40px 0;
}

.campaign_block dl{
  width:530px;
  margin:10px auto 0px;
  display: flex;
  flex-wrap: wrap;
  font-weight: 700;
  align-items: baseline;
  padding-bottom:1.5vw;
}

.campaign_block dl dt{
  width:33%;
  border-bottom:1px solid #000;
  text-align: right;
  font-size:28px;
  padding:0 10px;
  box-sizing: border-box;
}

.campaign_block dl dd{
  width:67%;
  border-bottom:2px solid #BE1616;
  color:#BE1616;
  font-size:34px;
  line-height: 0.9;
  text-align: left;
  box-sizing: border-box;
}

.campaign_block dd span{
  font-size:150%;
}

.campaign_block dl:first-of-type dd{
  font-size:34px;
  line-height: 1;
}
.campaign_block dl:last-of-type dd{
  font-size:40px;
}

@media (max-width: 767px) {
  .campaign_block{
    padding:20px 0;
  }
  .campaign_block dl{
    width:80%;
    margin:10px auto 0px;
    padding-bottom:2vw;
  }

  .campaign_block dl dt{
    width:35%;
    font-size:4.6vw;
    padding:0 10px 5px;
  }

  .campaign_block dl dd{
    width:65%;
    font-size:5vw;
    line-height: 1.35;
  }

  .campaign_block dd span{
    font-size:150%;
  }

  .campaign_block dl:first-of-type dd{
    font-size:4.6vw;
    line-height: 1.4;
  }
  .campaign_block dl:last-of-type dd{
    font-size:6vw;
    line-height: 1.25;
  }
}


.campaign_span {
	width: 1170px;
	margin: 40px auto;
}
.campaign_span dl {
	width: 1170px;
}
.campaign_span dt{
	position: relative;
	width: 100%;
	height: 40px;
	margin: 20px 0 0;
	background: #333;
	color: #ffffff;
	text-align: center;
	line-height: 40px;
	letter-spacing: 2px;
	font-size: 120%;
	font-weight: bold;
	border-radius: 10px;
	vertical-align: middle;
}
.campaign_span dt:after{
	position: absolute;
	z-index: -5;
	top: 30px;
	left: 50%;
	width: 15px;
	height: 15px;
	margin-left: -10px;
	background: #333;
	transform: rotate(45deg);
	content: "";
}
.campaign_span dd {
	width: 100%;
	height: 70px;
	margin: 10px 0;
	text-align: center;
	font-size: 150%;
	font-weight: bold;
	line-height: 70px;
	border-bottom: 1px solid #000;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.campaign_span {
		width: 90%;
		margin: 30px auto 60px;
	}
	.campaign_span dl {
		width: 100%;
	}
	.campaign_span dd {
		height: auto;
		line-height: 1.8;
		font-size: 130%;
	}
}

#about_brand figure {
  text-align: center;
}
#about_brand figure img{
  width:auto;
  height: auto;
}
#about_brand p{
  width:640px;
  margin: 20px auto 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  #about_brand figure img{
    width:80%;
    height: auto;
  }
  #about_brand p{
    width:auto;
    margin: 20px 5% 0;
    line-height: 1.6;
  }

}


/* カラム系 リンク */
#content_list .two_column > li {
  background: #fff;
  position: relative;
  padding:16px;
}
#content_list .two_column > li a{
  display: block;
  transition: .3s;
}
#content_list .two_column > li a:hover{
  opacity: 0.7;
}
#content_list .two_column > li p{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px 0 0;
  font-weight: bold;
}

#content_list .two_column > li span{
  font-size: 74%;
  font-weight: normal;
  width: 100%;
  color:#BE1616;
}

@media (max-width: 768px) {
  #content_list .two_column > li span{
    font-size: 82%;
  }

}



/*！！！！！！！！！！毎回スマホで崩れるyotopoのレビュー部分。絶対消さない！！！！！！！！*/
@media (max-width: 768px) {
    .bottom-line-items-container-desktop .bottom-line-items-wrapper .yotpo-star-distribution-wrapper{
      width:40%;
    }
    .yotpo .yotpo-regular-box{
      padding: 25px 0 0px!important;
    }
    .yotpo .new-yotpo-small-box{
      margin: 0px 10px 0 10px!important;
    }

}


a.no_link{
  pointer-events: none;
}


/*----------------------------------------------
お知らせ枠 TOP
----------------------------------------------*/
#top .news			{ display: table; background-color:#f2f2f2; height:auto; width: 100%; box-sizing: border-box; font-weight:bold; }
#top .news_header	{ font-family: 'Overpass', sans-serif; display: table-cell; width:22%;background-color:#c50018;text-align:right;color:#ffffff;padding:10px 20px 10px 0; box-sizing: border-box; }
#top .news_main		{ display: table-cell; width:78%;padding:10px 20px; box-sizing: border-box; }

@media (max-width: 768px) {
  #top .news_header	{ width:26%; font-size: 12px; text-align:center; padding:10px 0; }
  #top .news_main		{ width:74%; padding:10px; }

}



/*----------------------------------------------
買取実績詳細
----------------------------------------------*/

.result_firstview{
  padding:20px 4vw;
}

.result_firstview .result_name{
  border-left:4px solid #BE1616;
  padding-left:10px;
  margin-bottom: 30px;
}
.result_firstview .result_brand{
  margin-bottom:5px;
}

.result_firstview .result_item{
  font-size:20px;
  font-weight: 700;
}
.result_firstview .result_item span{
  font-size:16px;
}
.result_firstview .result_item span{
  
}
.result_firstview .result_img{
  position: relative;
  margin:0 0 20px;
}
.result_firstview .result_img::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 9px;
  width: 40px;
  height: 43px;
  background: url(../../_assets/images/common/i_restrictions.webp) no-repeat;
  background-size: contain;
  z-index: 1;
}

.result_firstview .result_price{
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #BE1616;
  margin-bottom:30px;
}
.result_firstview .result_price span{
  font-size: 34px;
  font-size: 180%;
  font-weight: 500;
  font-family: 'Akshar', sans-serif;
  margin-left: 10px;
}
.result_firstview .result_price::after {
    content: '';
    position: absolute;
    background: url(/clothes/_assets/images/common/bg_shadow-yellow.webp) no-repeat;
    background-size: contain;
    width: 300px;
    height: 24px;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}
.result_firstview .result_data{
  margin-bottom:30px;
}
.result_firstview .result_data dl{
  display: flex;
  box-sizing: border-box;
  border-bottom: 1px solid #cccccc;
  padding: 10px 0 9px;
  margin-bottom:12px;
}
.result_firstview .result_data dt{
  width:30%;
  font-weight: 700;
}
.result_firstview .result_data dd{
  width:70%;
}


.result_comment{
  padding:30px 20px;
  margin:0 4vw 30px;
  background: #eeeeee;
  text-align: center;
  box-shadow: 0px 4px 14px -5px #bababa;
}

.result_comment_title{
  margin: 0 auto 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}
.result_comment_title:before{
  display: inline-block;
  content:"＼";
  font-size:10px;
  margin-right: 5px;
}
.result_comment_title:after{
  display: inline-block;
  content:"／";
  font-size:10px;
  margin-left: 5px;
}

.result_comment_subtitle{
  font-size:20px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
  color:#BE1616;
}

.result_comment_block{
  text-align: left;
  background-image: linear-gradient(to bottom, #ccc 1px, transparent 0px);
  background-size: 100% 2em; 
  background-repeat: repeat-y;
  padding: 0 2px 100px;
  line-height: 2em; 
  font-size: 0.9em;
  position: relative;
}
.result_comment_block p{
  padding-top: 0.03em;
}
.result_comment_block:after{
  content:"";
  background: url(/clothes/_assets/images/common/satei.webp) no-repeat bottom right;
  background-size: contain;
  width:100px;
  height: 150px;
  display: block;
  z-index: 1;
  position: absolute;
  bottom:-50px;
  right: 0;
}

@media screen and (min-width: 769px) {
  
  .result_firstview {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: 0;
    margin:40px auto;
    min-height:434px;
  }
  .result_firstview .result_name{
    position: absolute;
    right:0;
    top:0;
    width:45%;
  }
 
  .result_firstview .result_img {
    width: 55%;
    flex-shrink: 0;
    margin: 0;
  }
  .result_firstview .result_img img{
    width:90%;
    height: auto;
  }

  .result_firstview .pc-block{
    width:45%;
    position: absolute;
    bottom:0;
    right: 0;
   }
  .result_firstview .result_price{
    justify-content: right;
  }
  .result_firstview .result_price,
  .result_firstview .result_data {
    width: 100%;
  }

  .result_firstview .result_data dd{
    width:70%;
  }


  .result_firstview .result_price::after{
    margin:0;
    left:auto;
    right:0;
  }
  .result_firstview .result_data{
    font-size:14px;
  }
  .result_comment{
    padding:30px 40px;
    margin:0 0 40px;

  }

    .result_firstview .result_img::before{
    width: 52px;
    height: 60px;
  }
}

#safety2 section{
  padding:20px;
  border:1px solid;
  margin:80px auto;
  width:900px;
}
#safety2 a{
  color:#183ec9;
}

#safety2 .text_safety2{
  text-align: center;
  font-size:28px;
  font-weight: bold;
}
#safety2 .text_safety2 p{
  width:25em;
  position: relative;
  margin: auto;
}
#safety2 .text_safety2 p:before,#safety2 .text_safety2 p:after{
  font-family: 'Fontawesome';
  content: "\f141 \f141";
  display: inline-block;
  position: absolute;
  width:50px;
  font-size: 24px;
  color:#000;
  bottom:0px;
}

#safety2 .text_safety2 p:before{
  left:-40px;
  transform: rotate(45deg);
}
#safety2 .text_safety2 p:after{
  right:-40px;
  transform: rotate(-45deg);
}

#safety2 .safety2 .arrow_text
 {line-height:30px;
 margin-left:20px;
 font-size:20px;
}
@media (max-width: 768px) {
#safety2 section{
  padding:10px;
  margin:50px auto;
  width:95%;
}

  #safety2 .text_safety2{
    font-size:18px;
  }
  #safety2 .text_safety2 p{
    width:14em;
    margin-bottom: 5px;
  }
  #safety2 .text_safety2 p:before,#safety2 .text_safety2 p:after{
    bottom:0px;
  font-size: 20px;
  }
#safety2 .safety2 .arrow_text
 {line-height:20px;
 margin-left:0px;
 font-size:14px;
}
}
