<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*
カラム制御：デフォルトで1～5カラムまで対応
PC用floatによるカラム制御

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

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

.col_3 {
	@include colmg(30);
}

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

*/
@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@500&amp;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_archive .contTit {
  display: block;
  font-size: 0.28rem;
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 460px) {
  .sec_archive .contTit {
    margin-bottom: 0.3rem;
  }
}
.sec_archive .archive-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 460px) {
  .sec_archive .archive-items {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.sec_archive .archive-item {
  position: relative;
  width: calc((100% - 0.6rem) / 3);
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 460px) {
  .sec_archive .archive-item {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0;
  }
}
.sec_archive .archive-item:nth-of-type(3n) {
  margin-right: 0;
}
.sec_archive .archive-link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.sec_archive .archive-link:hover ~ .archive-figure .archive-img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.sec_archive .archive-figure {
  width: 2.45rem;
  height: 1.9rem;
  overflow: hidden;
  margin-right: 0.5rem;
}
@media screen and (max-width: 460px) {
  .sec_archive .archive-figure {
    width: 100%;
    height: 30vw;
    font-size: 0;
    margin-right: 0;
  }
}
.sec_archive .archive-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_archive .archive-img {
    width: 100%;
    height: 30vw;
    margin-right: 0;
  }
}
.sec_archive .archive-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0.15rem;
}
.sec_archive .archive-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.1rem;
}
.sec_archive .archive-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_archive .archive-cat {
    font-size: 0.12rem;
    padding: 0.03rem 0.08rem;
  }
}
.sec_archive .archive-cat.mens {
  background: #000;
}
.sec_archive .archive-cat.women {
  background: #c2293d;
}
.sec_archive .archive-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_archive .archive-date {
    font-size: 0.12rem;
    padding: 0.025rem 0;
  }
}
.sec_archive .archive-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_archive .archive-title {
    font-size: 0.16rem;
  }
}
.sec_archive .archive-none {
  font-size: 0.18rem;
}

.pagination {
  margin-top: 1rem;
  padding: 0.1rem 0;
  border-top: 2px solid #dcdcdc;
  border-bottom: 2px solid #dcdcdc;
}
@media screen and (max-width: 460px) {
  .pagination {
    margin: 0.75rem 0;
  }
}
.pagination .wp-pagenavi {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.pagination .wp-pagenavi &gt; a,
.pagination .wp-pagenavi &gt; span {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  padding: 0 0.15rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", sans-serif;
  font-weight: 400;
  font-size: 0.24rem;
  color: #dcdcdc;
  letter-spacing: 0;
  line-height: 2;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
}
@media screen and (max-width: 460px) {
  .pagination .wp-pagenavi &gt; a,
  .pagination .wp-pagenavi &gt; span {
    font-size: 0.19rem;
    padding: 0 0.12rem;
  }
}
.no-touchevents .pagination .wp-pagenavi &gt; a:hover {
  color: #d20035;
}
.no-touchevents .pagination .wp-pagenavi &gt; a:hover:before {
  border-color: #d20035;
}
.pagination .wp-pagenavi .extend {
  padding: 0;
}
.pagination .wp-pagenavi .current {
  color: #d20035;
  text-decoration: underline;
}
.pagination .wp-pagenavi .previouspostslink,
.pagination .wp-pagenavi .nextpostslink {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.4rem;
  height: 0.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 460px) {
  .pagination .wp-pagenavi .previouspostslink,
  .pagination .wp-pagenavi .nextpostslink {
    width: 0.2rem;
    height: 0.3rem;
  }
}
.pagination .wp-pagenavi .previouspostslink:before,
.pagination .wp-pagenavi .nextpostslink:before {
  content: "";
  position: absolute;
  top: calc(50% - 0.1rem);
  display: block;
  width: 0.2rem;
  height: 0.2rem;
  border-top: 2px solid #d20035;
  border-left: 2px solid #d20035;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
@media screen and (max-width: 460px) {
  .pagination .wp-pagenavi .previouspostslink:before,
  .pagination .wp-pagenavi .nextpostslink:before {
    top: calc(50% - 0.03rem);
    width: 0.14rem;
    height: 0.14rem;
  }
}
.pagination .wp-pagenavi .previouspostslink {
  left: 0;
}
.pagination .wp-pagenavi .nextpostslink {
  right: 0;
}
.pagination .wp-pagenavi .nextpostslink:before {
  -webkit-transform: translateX(-0.1rem) rotate(135deg);
          transform: translateX(-0.1rem) rotate(135deg);
}</pre></body></html>