@charset "UTF-8";

/*default
-------------------*/
body {
  padding: 0;
}

a:hover {
  /*
  opacity: 0.7;*/
  text-decoration: none;
  border: none;
  transition-duration: 1s;
}

a.disabled {
  pointer-events: none;
}

#page-footer .container {
  max-width: 1000px;
}

.container {
  width: 100%;
}

.breadcrumb {
  max-width: 100%;
  padding: 0 14.5%;
  background: #fff;
  max-width: 1000px;
  margin: 0 auto;
}

/*sp
-------------------*/
#Area {
  background-color: #0c142e;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: calc(30 / 16);
}
.lp_container a {
  transition: .4s;
}
.lp_container a:hover {
  opacity: .7;
}

/*flex*/
.item_flx {
  display: flex;
  justify-content: space-between;
}

.item_flx>div {
  z-index: 100;
}


/*main bnr
-------------------*/
.main_bnr {
  width: 100%;
  margin-bottom: 100px;
}

/*lp_nav
-------------------*/
.lp_nav {
  display: none;
  width: fit-content;
  position: sticky;
  left: 13.3%;
  top: 88px;
  z-index: 10;
}
.lp_nav_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp_nav_list li a {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 30px;
  position: relative;
  color: #fff;
  text-align: left;
  font-size: 24px;
  font-family: interstate-condensed, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.lp_nav_list li a::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: -15px;
  background: #fff;
}
.lp_nav_list li a.active::before {
  width: 8px;
}

/*brand
-------------------*/
.brand_block {
  width: 100%;
  margin: 0 auto;
}
#hideaways-black.brand_block {
  background: #171717;
  font-family: "noto-serif", serif;
  font-weight: 500;
}
.brand_block .brand_block_inner {
  width: 90%;
  max-width: 1728px;
  margin: 0 auto;
  padding: 200px 0 240px;
}
.brand_block h2 {
  width: 65.33%;
  max-width: 419px;
  margin: 0 auto 55px;
}
.brand_block .brand_txt {
  width: 85%;
  margin: 0 auto 165px;
}
.brand_block .brand_mv {
  width: 100%;
  position: relative;
  margin: 0 auto 320px;
}
.brand_block .brand_mv .brand_mv_ttl {
  width: 80%;
  max-width: 1628px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform-origin: center bottom;
}

/*style
-------------------*/
.style_block {
  width: 86.2%;
  max-width: 1200px;
  margin: 0 auto 100px;
}
.style_img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.style_img a {
  display: block;
  position: relative;
  color: #fff;
}
.style_img .img_main,
.style_img .style_txt {
  width: 53.6%;
  max-width: 600px;
}
.style_img .img_sub {
  width: 45.6%;
  max-width: 510px;
}
.style_img .img_main > a::after,
.style_img .img_sub > a::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  background: url(//ds-assets.store-image.jp/ncole/sp/hw_winter_collection_2025/icon_plus.png) no-repeat;
  background-size: 100%;
}
.style_img .main_name {
  margin: 30px auto 20px;
  font-size: 36px;
  font-family: oswald, sans-serif;
  font-weight: 700;
  line-height: 1;
}
#hideaways-black .style_img .main_name {
  font-family: "bodoni-urw", serif;
  font-weight: 400;
}
.style_img .main_name a {
  color: #fff;
}
.style_img .style_txt .main_name span {
  display: inline-block;
  position: relative;
}
.style_img .style_txt .main_name span::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -7px;
  left: 0;
  background: #fff;
}
.style_img .style_txt .main_price {
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
.style_img .style_txt .main_price a.not_tel {
  color: #fff;
  pointer-events: none;
  text-decoration: none;
}

/*modal
-------------------*/
.modal {
  display: none;
  width: 100%;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin: auto;
}
/* モーダル内側の指定 */
.modal-container {
  height: 90vh;
  aspect-ratio: 13 / 10;
  background: #0c142e;
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}
/* モーダルを閉じるボタンの指定 */
.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  cursor: pointer;
}
.modal-close::before,
.modal-close::after { 
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px; /* 棒の幅（太さ） */
  height: 50px; /* 棒の高さ */
  background: #fff;
} 
.modal-close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
/* モーダルのコンテンツ部分の指定 */
.modal-content {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
}
.modal__bg {
  width: 100%;
  height: 100vh;
  background: rgba(33,33,33,0.6);
}

/*coordinate
-------------------*/
.coordinate {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 100%;
}
.coordinate_main {
  width: 50%;
  height: auto;
}
.coordinate_item {
  width: 50%;
}
.coordinate_ttl {
  margin: 10% 0 3%;
  font-size: 30px;
  font-family: oswald, sans-serif;
  font-weight: 700;
  line-height: 1;
}
.coordinate_ttl span {
  display: inline-block;
  margin: 0 auto 10px;
  position: relative;
  font-size: 20px;
  font-weight: 300;
}
.coordinate_ttl span::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: 0;
  background: #fff;
}
#hideaways-black .coordinate_ttl {
  font-family: "bodoni-urw", serif;
  font-weight: 400;
}
#hideaways-black .coordinate_ttl span {
  font-weight: 300;
}
.coordinate_flx {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 64%;
  margin: 0 auto;
}
.coordinate_flx li {
  flex-basis: 46.5%;
  margin-bottom: 20px;
}
.coordinate_flx li p {
  margin: 16px 0 0;
  font-size: 12px;
  text-align: left;
}
.coordinate_flx li span {
  display: inline-block;
  margin-bottom: 4px;
  font-weight: bold;
  line-height: 1.6;
}
/*buy_btn*/
.coordinate_flx li a.buy_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 18px;
  margin-left: 10%;
  background: #fff;
  color: #000;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.1em;
}

/*lp_footer
-------------------*/
.lp_footer {
  width: 100%;
  margin: 0;
  padding: 0 0 100px;
  background: #171717;
}

@media (max-width: 1600px) {
}

@media (max-width: 1200px) {
}

@media (max-width: 1024px) {
  /*brand
  -------------------*/
  .brand_block .brand_block_inner {
    padding: 140px 0 130px;
  }
  .brand_block .brand_mv {
    margin-bottom: 200px;
  }

  /*style
  -------------------*/
  .style_img .main_name {
    font-size: 25px;
  }
  .style_img .style_txt .main_price {
    font-size: 16px;
  }

  /*modal
  -------------------*/
  .modal-container {
    width: 90%;
    height: fit-content;
    aspect-ratio: auto;
    padding: 2%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
  }

  /*coordinate
  -------------------*/
  .coordinate_flx li span {
    font-size: 10px;
  }
  .coordinate_flx li a.buy_btn {
    width: 30px;
    height: 15px;
    font-size: 10px;
  }
}

@media (max-width: 978px) {
  /*default
  -------------------*/
  #page-footer {
    margin: 0;
  }
  #page-footer .nav li {
    padding: 0;
  }
  #wrapper {
    padding-left: 0;
    padding-right: 0;
    overflow: clip;
  }
  #page-header .navbar-inner,
  #page-footer .nav, #head-bar {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  /*sp
  -------------------*/
  #Area {
    font-size: 12px;
  }

  /*main bnr
  -------------------*/
  .main_bnr {
    margin-bottom: 0;
  }

  /*lp_nav
  -------------------*/
  .lp_nav {
    display: block;
    width: 100%;
    height: 50px;
    left: 0;
    top: 105px;
    background: #010203;
  }
  .lp_nav_list {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 93%;
    height: 100%;
    margin: 0 auto;
  }
  .lp_nav_list li {
    width: 50%;
    position: relative;
  }
  .lp_nav_list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 16px;
  }
  .lp_nav_list li a::before {
    content: "";
    display: none;
  }
  .lp_nav_list li a::after {
    content: "";
    display: block;
    width: 11px;
    height: 6px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: url(//ds-assets.store-image.jp/ncole/sp/hw_winter_collection_2025/nav_arrow.png) no-repeat;
    background-size: 100%;
    background-position: top center;
  }
  .lp_nav_list li:first-child::before {
    content: "";
    width: 2px;
    height: 60%;
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: #fff;
  }

  /*brand
  -------------------*/
  .brand_block .brand_block_inner {
    width: 100%;
    padding: 100px 0 80px;
  }
  .brand_block h2 {
    margin-bottom: 25px;
  }
  .brand_block .brand_txt {
    margin-bottom: 85px;
    text-align: left;
  }
  .brand_block .brand_mv {
    margin-bottom: 100px;
  }

  /*style
  -------------------*/
  .style_block {
    margin-bottom: 50px;
  }
  .style_img {
    flex-direction: column;
    gap: 40px;
  }
  .style_img .img_main,
  .style_img .img_sub {
    width: 86.1%;
    max-width: none;
  }
  .style_img .style_txt {
    width: 100%;
    max-width: none;
  }
  .style_img .img_main > a::after,
  .style_img .img_sub > a::after {
    width: 30px;
    height: 30px;
    bottom: 15px;
    right: 15px;
  }
  .style_img .main_name {
    margin: 10px auto;
    font-size: 15px;
  }
  .style_img .style_txt .main_name span::before {
    height: 1px;
    bottom: -4px;
  }
  .style_img .style_txt .main_price {
    font-size: 11px;
  }

  /*modal
  -------------------*/
  .modal__bg {
    overflow: scroll;
  }
  .modal-container {
    width: 92.5%;
    top: 8%;
    bottom: auto;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
  }
  .modal-content {
    padding: 10% 4%;
  }
  .modal-close {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }
  .modal-close::before,
  .modal-close::after {
    height: 30px;
  }

  /*coordinate
  -------------------*/
  .coordinate {
    flex-direction: column;
  }
  .coordinate_main {
    width: 100%;
    padding-top: 5%;
  }
  .coordinate_item {
    width: 75%;
    margin: 5% auto 0;
  }
  .coordinate_ttl {
    margin: 0 0 15px;
    font-size: 17px;
  }
  .coordinate_ttl span {
    font-size: 11px;
  }
  .coordinate_ttl span::before {
    bottom: -3px;
  }
  .coordinate_flx {
    width: 100%;
  }
  .coordinate_flx li {
    flex-basis: 48.3%;
    margin-bottom: 12px;
  }
  .coordinate_flx li p {
    margin-top: 3%;
    line-height: calc(30 / 20);
  }
}

@media screen and (max-width: 320px) {
}