@charset "UTF-8";
html {
  scroll-behavior: smooth; /*スムーススクロール */
}
#bousai {
  max-width: 1000px;
  margin: 0px auto 120px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 16px;
}
#bousai a {
  transition: .3s ease;
}
#bousai a:hover {
  opacity: .6;
  text-decoration: none;
}
#bousai img {
  width: 100%;
}
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
.u-item-colors {
  display: none!important;
}

/* hdr */
.hdr {
  margin: 0 auto 50px;
  text-align: center;
  width: 1000px;
}
.hdr .lead {
  margin: 50px 0 0;
  line-height: 2;
}
.c_list {
  text-decoration:underline;
}

/* section */
section {
  text-align: center;
}
#bousai .menu_tit {
  position: relative;
  text-align: center;
  z-index: 1;
  font-size: 30px;
  margin-bottom: 30px;
}
#bousai .menu  {
  background-color: #FFF;
}
#bousai .menu_tit:after {
  content: "";
  position: absolute;
  left: 260px;
  bottom: 0;
  width: 510px;
  height: 15px;
  background: -webkit-repeating-linear-gradient(-45deg, #ffe200, #ffe200 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #ffe200, #ffe200 2px, #fff 2px, #fff 4px);
  z-index: -1;
}
#bousai .menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  background-color: #FFF;
}
#bousai .menu li {
  margin: 0px 5px 10px;
} 
#bousai .menu li a {
  width: 240px;
  height: 60px;
  padding: 20px 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.2;
  color: #FFF;
  background-color: #0e0e0e;
  position: relative; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#bousai .menu li a::after{
  content: '';
  border: 0;
  border-top: solid 3px #FFF;
  border-right: solid 3px #FFF;
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(135deg); 
}
#bousai .menu li a:hover {
  opacity: 0.7;
}
.sec {
  background-image : linear-gradient(to right, rgba(143, 143, 143, 0.933) 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: right bottom;
}
/* flex_box */
.flex_box {
  display: flex;
}
.flex_box p {
  width: 800px;
  padding: 0 30px;
  text-align: left;
  font-size: 17px;
  display: flex;
  align-items: center;
  line-height: 1.6;
  border: 2px solid #eeee;
}
.sec_tit {
  width: 200px;
  height: 120px;
  font-size: 18px;
  background-color: #0e0e0e;
  color: #FFF;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
}
.sec_tit::before {/*三角形左上*/
    content: "";
    top: 0;
    left: 0;
    border-bottom: 30px solid transparent;
    border-left: 30px solid #ffe200; /* ラベルの色はここで変更 */
    position: absolute;
    z-index: 100;
}
/* item */
.search-result {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 20px 0 0 0;
}
.u-item {
  width: 175px;
}
.u-item-gender {
  display: none;
}
.u-item-meta {
  text-align: left;
  font-size: 15px;
}
.sec01 {
  margin-top: 100px;
}
.sec {
  margin-bottom: 80px;
}
.outdoor_lead {
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
}

/* more_button */
.more_button {
  padding: 40px 0 50px;
}
.more_button a {
  display: block;
  width: 400px;
  margin: 0 auto;
  padding: 20px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  line-height: 1.0;
  letter-spacing: 0.1em;
  color: #000;
  border: 2px solid #000;
  position: relative; 
}
.more_button ::after{
  content: '';
  border: 0;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg); 
}
.more_button a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 750px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
#bousai {
  font-size: calc(25* (100vw / 750));
  margin: 0 auto calc(25* (100vw / 750));
}
/* hdr */
.hdr {
  margin: 0 auto calc(50* (100vw / 750));
  text-align: center;
  width: 100%;
}
.hdr .lead {
  margin: calc(50* (100vw / 750)) 0 0;
  line-height: 2;
  font-size: calc(30* (100vw / 750));

}
.c_list {
  text-decoration:underline;
}

/* section */
section {
  text-align: center;
}
#bousai .menu_tit {
  position: relative;
  text-align: center;
  z-index: 1;
  font-size: calc(35* (100vw / 750));
  margin-bottom: calc(30* (100vw / 750));
}
#bousai .menu_tit:after {
  content: "";
  position: absolute;
  left: calc(90* (100vw / 750));
  bottom: calc(8* (100vw / 750));
  width: calc(589* (100vw / 750));
  height: calc(19* (100vw / 750));
  background: -webkit-repeating-linear-gradient(-45deg, #ffe200, #ffe200 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #ffe200, #ffe200 2px, #fff 2px, #fff 4px);
  z-index: -1;
}
#bousai .menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#bousai .menu li {
  margin: 0px calc(5* (100vw / 750)) calc(10* (100vw / 750));
} 
#bousai .menu li a {
  width: calc(356* (100vw / 750));
  height: calc(95* (100vw / 750));
  padding: calc(20* (100vw / 750)) calc(30* (100vw / 750));
  font-size: calc(25* (100vw / 750));
  font-weight: 500;
  text-decoration: none;
  line-height: 1.2;
  color: #FFF;
  background-color: #0e0e0e;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
#bousai .menu li a::after{
  content: '';
  border: 0;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  display: inline-block;
  width: calc(10* (100vw / 750));
  height: calc(10* (100vw / 750));
  position: absolute;
  top: 50%;
  right: calc(25* (100vw / 750));
  transform: translateY(-50%) rotate(135deg); 
}
#bousai .menu li a:hover {
  opacity: 0.7;
}
.sec {
  background-image : linear-gradient(to right, rgba(143, 143, 143, 0.933) 2px, transparent 2px);
  background-size: calc(10* (100vw / 750)) calc(2* (100vw / 750));
  background-repeat: repeat-x;
  background-position: right bottom;
}
/* flex_box */
.flex_box {
  display: inherit;
}
.c_list {
  font-size: calc(28* (100vw / 750));
}
.flex_box p {
  width: 100%!important;
  padding: calc(35* (100vw / 750)) calc(30* (100vw / 750));
  display: flex;
  align-items: center;
  line-height: 1.8;
  border: 2px solid #eeee;
  font-size: calc(30* (100vw / 750));
  text-align: justify;
}
.sec_tit {
  width: 100%;
  height: calc(110* (100vw / 750));
  font-size: calc(35* (100vw / 750));
  background-color: #0e0e0e;
  color: #FFF;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
}
.sec_tit::before {/*三角形左上*/
    content: "";
    top: 0;
    left: 0;
    border-bottom: calc(60* (100vw / 750)) solid transparent;
    border-left: calc(60* (100vw / 750)) solid #ffe200; /* ラベルの色はここで変更 */
    position: absolute;
    z-index: 100;
}
/* item */
.search-result {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: calc(50* (100vw / 750)) 0 calc(10* (100vw / 750));
}
.u-item-gender {
  display: none;
}
.u-item-meta {
  text-align: left;
  font-size: calc(25* (100vw / 750));
}
.slick-slide {
  margin-right: calc(30* (100vw / 750))!important;
}
.sec01 {
  margin-top: calc(100* (100vw / 750));
}
.sec {
  margin-bottom: calc(80* (100vw / 750));
}
.outdoor_lead {
  text-align: center;
  line-height: 2;
  font-size: calc(30* (100vw / 750));
}
.more_button {
  padding: calc(30* (100vw / 750)) 0 calc(80* (100vw / 750));
}
  /* more_button */
  .more_button a {
    width: 90%;
    font-size: calc(16 * (100vw / 375));
    padding: calc(25* (100vw / 750)) 0;
    border-radius: calc(60* (100vw / 750));
    line-height: 1.2;
    border: calc(2* (100vw / 750)) solid #000;

  }

}