@charset "UTF-8";
/*
カラム制御：デフォルトで1～5カラムまで対応
PC用floatによるカラム制御

html：col_1～5まで対応
例）3列で折り返し
<ul class="col_3">
	<li></li>
	<li></li>
	<li></li>
</ul>

scss：mixinでカラム設定を自動処理化

.col_3 {
	@include colmg(30);
}

数値設定はアイテム間余白（デフォルトは20）;
※縦、横ともに外側への約は発生しない

*/
@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@500&display=swap");
/*-------------------------------------------*/
@font-face {
  font-family: "f_playfair";
  src: url("/common/font/PlayfairDisplay-VariableFont_wght.woff2") format("woff2"), url("/common/font/PlayfairDisplay-VariableFont_wght.woff") format("woff"), url("/common/font/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "f_quentin";
  src: url("/common/font/Quentin.woff2") format("woff2"), url("/common/font/Quentin.woff") format("woff"), url("/common/font/Quentin.ttf") format("truetype");
}
/*
源ノ明朝（typekit/Android代替用）
400：Reguler
500：Medium（デフォルト）
700：Bold
*/
/*
遊明朝（typekit/使用保留）
400：Reguler（デフォルト）

@mixin f_min6($weight:400) {
	font-family: yu-mincho-pr6, sans-serif;
	font-style: normal;
	font-weight:$weight;

	//webフォント文字太り対策
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
*/
/*
遊明朝N（typekit/使用保留）
400：Reguler（デフォルト）

@mixin f_min6n($weight:400) {
font-family: yu-mincho-pr6n, sans-serif;
	font-style: normal;
	font-weight:$weight;

	//webフォント文字太り対策
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
*/
/*Googlefont Gilda
400：Reguler（デフォルト）
*/
/*Googlefont Spartan
500：Medium（デフォルト）
*/
/*Playfair
400：Reguler（デフォルト）
*/
/*quentin
400：Reguler（デフォルト）
*/
/*
example
@include vaM;
*/
/*
example
@include taJ
*/
/*
example
@include dotted(#COLOR, WidthPX,SpaceingPX,HeightPX); 横破線
@include dotted(#e6e1d2, 4,4,2);
*/
/*
example
@include dotted-y(#COLOR, WidthPX,SpaceingPX,LengthPX,); 横破線
@include dotted-y(#e6e1d2, 4,4,2,10);
*/
@font-face {
  font-family: "icomoon";
  src: url("../../assets/fonts/icomoon.eot?gt18q1");
  src: url("../../assets/fonts/icomoon.eot?gt18q1#iefix") format("embedded-opentype"), url("../../assets/fonts/icomoon.ttf?gt18q1") format("truetype"), url("../../assets/fonts/icomoon.woff?gt18q1") format("woff"), url("../../assets/fonts/icomoon.svg?gt18q1#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-clock:before {
  content: "\e900";
}

.icon-loop2:before {
  content: "\e901";
}

/* -----------------------------------------------------------------------------

local common

----------------------------------------------------------------------------- */
.contentsWrap {
  padding-bottom: 0 !important;
}

/* -----------------------------------------------------------------------------

local layout

----------------------------------------------------------------------------- */
/* mvArea */
.sec_news .contTit {
  display: block;
  color: #c2293d;
  margin-bottom: 0.5rem;
}
.sec_news .contTit span {
  font-size: 0.5rem;
  font-family: "f_playfair", serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.sec_news .contTit::after {
  display: inline-block;
  content: attr(data-subtitle);
  color: #14141e;
  margin-left: 0.2rem;
  font-size: 0.18rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", sans-serif;
  font-weight: 400;
}
.sec_news .news-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -0.3rem -0.3rem 0;
}
@media screen and (max-width: 460px) {
  .sec_news .news-items {
    margin: 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.sec_news .news-item {
  position: relative;
  width: 33.3333333333%;
  padding: 0 0.3rem 0.3rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 460px) {
  .sec_news .news-item {
    width: calc((100% - 0.2rem) / 2);
    padding: 0 0 0.3rem 0;
  }
}
.sec_news .news-link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.no-touchevents .sec_news .news-link:hover ~ .news-figure .news-img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.sec_news .news-figure {
  width: 2.45rem;
  height: 1.9rem;
  overflow: hidden;
}
@media screen and (max-width: 460px) {
  .sec_news .news-figure {
    width: 100%;
    height: 30vw;
    font-size: 0;
  }
}
.sec_news .news-img {
  width: 2.45rem;
  height: 1.9rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 460px) {
  .sec_news .news-img {
    width: 100%;
    height: 30vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.sec_news .news-content {
  margin-top: 0.15rem;
}
.sec_news .news-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.1rem;
}
.sec_news .news-cat {
  position: relative;
  font-size: 0.14rem;
  padding: 0.05rem 0.1rem;
  color: #fff;
  margin-right: 0.1rem;
  z-index: 3;
}
@media screen and (max-width: 460px) {
  .sec_news .news-cat {
    font-size: 0.12rem;
    padding: 0.03rem 0.08rem;
  }
}
.sec_news .news-cat.mens {
  background: #000;
}
.sec_news .news-cat.women {
  background: #c2293d;
}
.sec_news .news-date {
  font-size: 0.14rem;
  font-family: source-han-serif-japanese, serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #BDC2C7;
  padding: 0.05rem 0;
}
@media screen and (max-width: 460px) {
  .sec_news .news-date {
    font-size: 0.12rem;
    padding: 0.025rem 0;
  }
}
.sec_news .news-title {
  font-size: 0.18rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", sans-serif;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 460px) {
  .sec_news .news-title {
    font-size: 0.16rem;
  }
}
.sec_news .news-foot {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

.sec_button {
  width: 100%;
  text-align: center;
  margin: 0 0 1rem;
}
@media screen and (max-width: 460px) {
  .sec_button {
    width: calc(100% - 0.3rem);
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin: 0.5rem auto;
  }
}
.sec_button .link-button {
  position: relative;
  display: block;
  width: 300px;
  margin: 0 auto;
  font-size: 0.16rem;
  border: 2px solid #ddd;
  padding: 0.15rem 0.25rem;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media screen and (max-width: 460px) {
  .sec_button .link-button {
    width: auto;
  }
}
.sec_button .link-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.25rem;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.no-touchevents .sec_button .link-button:hover {
  opacity: 0.6;
}