@charset "UTF-8";


* {
  font-family: 'Overpass', 'Noto Sans JP', sans-serif;
}


html {
  font-size: 62.5%;
}



/*----------------------------------------
	clearfix
----------------------------------------*/
.clearfix:after {
content: "";
display: block;
clear: both;
}
/*----------------------------------------
	clearfix
----------------------------------------*/

/*左と右を囲う全体のエリア*/
#wrapper{
	position: relative;/*position stickyの基点にするため relativeをかける*/
	display: flex;/*左エリア、右エリア横並び指定*/
	flex-wrap: wrap;/*ボックスの折り返し可*/
}

/*左エリア*/
#fixed-area{
  /*左固定記述*/
  position: -webkit-sticky;/*Safari用*/
  position: sticky;
  top:0;
	width: 40%;
	height: 100vh;
}

/*メインエリア*/
#container{
	width:500px;
}

/*右エリア*/
.content_right {
  width: calc(60% - 500px);
  height: 100vh;
  background-color: #3f2e25;;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

/*========= 現在地表示のためのCSS ===============*/

#header{
	height: 0px;/*Headerの高さ設定*/
	width:100%;
	background:#fff;
}


/* 以下はレイアウトのための CSS*/

/* nav ul{
    list-style: none;
    display: flex;
} */

nav ul li a{
    color: #fff;
    padding:5px;
    /* transition:all 0.3s; */
}

nav ul li.current a {
  border-bottom: 1px solid #fff;
  padding-bottom:5px;
}

/* nav ul li.current a,
nav ul li a:hover{
  text-decoration : underline;
} */


.fadeUpTrigger{
opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:3s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(0);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}


/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	/* height: 100%; */
  width: 100%;
  /* height: auto; */
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

.magazine_wrap p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 180%;
  letter-spacing: .03em;
  font-size: 1.3rem;
}


.magazine_wrap img {
  width: 100%;
  height: auto;
}


.content_left {
  background-color: #3f2e25;
  position: relative;
}

.mainpc_winter p {
  color: #fff;
}

.content_left .mainpc_ttl {
  position: absolute;
  bottom: 10%;
  left: 5%;
}

.content_left .mainpc_winter {
  margin: 7% 0 0 5%;
  writing-mode: vertical-rl;
}

.content_left .mainpc_winter p {
  letter-spacing: .2em;
  text-align: left;
  font-family: "Noto Serif Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "wdth" 100;
}



.content_left .mainpc_ttl h1 {
  font-size: 38px;
  letter-spacing: .03em;
  color: #fff;
  text-align: left;
  font-family: "Noto Serif Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "wdth" 100;
  width: 85%;
}

.content_left .mainpc_ttl p {
  color: #fff;
  margin-top: 5%;
  font-size: 1.0rem;
  letter-spacing: .2em;
}


.content_left .mainpc_ttl .looklist {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
}

.content_left .mainpc_ttl .looklist p {
  font-family: "Noto Serif Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "wdth" 100;
  margin-top: 0;
  font-size: 1.3rem;
}

.content_left .mainpc_ttl .looklist ul {
  display: flex;
  margin-top: 10px;
}

.content_left .mainpc_ttl .looklist li {
  list-style: none;
  margin-left: 10px;
  font-family: "Noto Serif Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "wdth" 100;
  font-size: 1.3rem;
}

.content_left .mainpc_ttl .looklist li a {
  /* color: #fff; */
  font-size: 1.2rem;
  letter-spacing: .2em;
  font-family: "Noto Serif Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "wdth" 100;
}

/* メインコンテンツ */

.top_menu {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 10%;
  background: #D8D5CB;
}

.top_menu .menu_wrap {
  width: 23%;
  margin-top: 20px;
}

.top_menu .menu_wrap p {
  font-size: 1.0rem;
  text-align: center;

}


.content_main .content_wrap {
  padding: 10% 10%;
  background: #efeee9;
}

.content_wrap .content_top {
  position: relative;
}

.content_wrap .content_top .top_ttl {
  position: absolute;
  top: 2%;
  left: 100%;
  writing-mode: vertical-rl;
}

.content_wrap .content_top .top_ttl h2 {
  font-size: 2.5rem;
  letter-spacing: .03em;
  color: #3d3d3d;
  text-align: left;
  font-family: "Noto Serif Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "wdth" 100;
}

.content_wrap .content_top .top_ttl h2 span {
  font-size: 4.0rem;
  font-weight: 300;
  font-family: "Noto Serif Display", serif;
}

.content_wrap .content_top .top_ttl p {
  color: #3d3d3d;
  font-size: 1.2rem;
  margin-top: 2%;
}


.content_wrap .content_flex {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 5%;
}

.content_wrap .content_flex img {
  width: 49%;
  height: auto;
}

.content_wrap .content_btm {
  margin-top: 5%;
}

.content_wrap .coat_box {
  margin-top: 5%;
  border: 1px solid #000000;
  padding: 15px;
}

.content_wrap .coat_box .item_name {
  border-bottom: 1px solid #3d3d3d;
  padding-bottom: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content_wrap .coat_box .item_name a {
  font-size: 1.2rem
}

.content_wrap .coat_box .item_brand {
  border-bottom: 1px solid #3d3d3d;
  padding-bottom: 2px;
}

.content_wrap .coat_box span {
  letter-spacing: .03em;
  color: #3d3d3d;
  text-align: left;
  font-family: "Noto Serif Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
  font-variation-settings: "wdth" 100;
}

.content_wrap .coat_box .coat_wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 5% 2% 0;
  align-items: center;
}

.content_wrap .coat_box .coat_wrap .coat_img {
  width: 40%;
}

.content_wrap .coat_box .coat_wrap p {
  width: 55%;
  font-size: 1.2rem;
}

.content_wrap .item_box {
  margin-top: 5%;
}

.content_wrap .item_wrap {
  margin-top: 2%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.content_wrap .item_wrap img {
  width: 17%;
}

.content_wrap .item_wrap p {
  width: 80%;
  font-size: 1.1rem;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content_wrap .item_wrap a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.staffcredit {
  /* margin-top: 20%; */
  border-top: 1px solid #3f2e25;
  border-bottom: 1px solid #3f2e25;
  padding: 10% 0;
  background: #efeee9;
}

.staffcredit li {
  line-height: 180%;
  letter-spacing: .03em;
  font-size: 1.0rem;
  color: #3B3B3B;
  text-align: center;
}

.footer_btn {
  /* margin: 25% auto 30%; */
  padding: 25% 0 30%;
  background: #efeee9;
}

.home_btn {
  width: 300px;
  font-size: 1.5rem;
  margin: 10% auto 0;
  text-align: center;
  padding: 15px 0;
  border-radius: 8px;
  border: 1px solid #3f2e25;
  letter-spacing: .03em;
}

.home_btn a {
  display: block;
  color: #3f2e25;
}







/*----------------------------------------
	reset
----------------------------------------*/
body {
  min-width: auto;
}
.fs-l-main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.fs-l-pageMain {
  width: 100%;
  max-width: none;
}

.layout_menu {
  display: none;
}

.layout_header_delivery {
  display: none!important;
}

.fs-c-heading.fs-c-heading--page {
display: none!important;
}

.layout_header_keywords {
  display: none;
}

.layout_header_form_input {
  font-size: 0;
}


.layout_header_search {
  display: none;
}

.re_gnavi_wrap {
  display: none;
}

.layout_header_user {
  display: none;
}

.re_layout_header_utility .layout_header_utility-navi {
  display: none;
}

.re_header_user_menu {
  display: none;
}


/*----------------------------------------
	reset
----------------------------------------*/


@media screen and (max-width:1200px){

.content_left .mainpc_ttl .looklist {
  display: block;
}

.content_wrap .content_top .top_ttl {
  top: 2%;
}

.content_wrap .content_top .top_ttl h2 {
font-size: 2.0rem;
}

.content_wrap .content_top .top_ttl h2 span {
  font-size: 3.0rem;
}

.content_wrap .content_top .top_ttl p {
  font-size: 1.0rem;
}


}





  /*----------------------------------------
  	pc/sp
  ----------------------------------------*/

/* PCだけで表示させたい
スマホのときは消えてほしい*/
  .sp-invisible
  {
      display: block;
  }
/* スマホで表示させたい
PCのときは消えてほしい*/
  .sp-display
  {
      display: none;
  }

  .tb-invisible
  {
    display: block;
  }

  .tb-display
  {
    display: none;
  }

  /*----------------------------------------
    pc/sp
  ----------------------------------------*/


  /* ----------------------------------------
  	Tablet
  ---------------------------------------- */

  @media only screen and (max-width: 1000px)
  {

    #wrapper{
    	display: block;/*display:flex;を解除*/
    }

    #fixed-area{
      display: none;
    }
    #container{
    	width:100%;/*横幅を100%にして1列に見せる*/
    }

    .content_right {
      display: none;
    }

    .tb-invisible
    {
        display: none;
    }

    .tb-display
    {
        display: block;
    }

    .content_main .ttl_sp {
      padding: 10%;
      background: #D8D5CB;
    }

    .content_main .ttl_sp p {
      margin-top: 5%;
    }

    .magazine_wrap p {
      font-size: 1.5rem;
    }

    .content_wrap .coat_box .coat_wrap p {
      font-size: 1.5rem;
    }

    .content_wrap .item_wrap p {
      font-size: 1.5rem;
    }

    .content_wrap .content_top .top_ttl h2 span {
      font-size: 4.0rem;
    }

    .content_wrap .content_top .top_ttl h2 {
      font-size: 2.5rem;
    }

    .content_wrap .coat_box .item_name a {
      font-size: 1.5rem;
    }



  }



  /* ----------------------------------------
  	Tablet
  ---------------------------------------- */








  @media only screen and (max-width: 519px)
  {


/*----------------------------------------
	pc/sp
----------------------------------------*/

/* PCだけで表示させたい
スマホのときは消えてほしい*/
.sp-invisible
{
    display: none;
}
/* スマホで表示させたい
PCのときは消えてほしい*/
.sp-display
{
    display: block;
}

/*----------------------------------------
  pc/sp
----------------------------------------*/


/* .content_main .ttl_sp {
  padding: 10% 5%;
  background: #D8D5CB;
} */

/* .content_main .ttl_sp p {
  margin-top: 5%;
} */

.top_menu {
  padding: 10% 5%;
}

.content_wrap .content_top .top_ttl h2 {
  font-size: 1.5rem;
}

.content_wrap .content_top .top_ttl h2 span {
  font-size: 2.0rem;
}

.magazine_wrap p {
  font-size: 1.1rem;
}

.content_wrap .coat_box .coat_wrap {
  display: block;
}

.content_wrap .coat_box .coat_wrap .coat_img {
  width: 100%;
}

.content_wrap .coat_box .coat_wrap p {
  width: 100%;
  font-size: 1.1rem;
  margin-top: 5%;
}

.content_wrap .item_wrap img {
  width: 20%;
}

.content_wrap .item_wrap p {
  width: 75%;
}

.content_wrap .coat_box .item_name a {
  font-size: 1.2rem;
}

.content_wrap .item_wrap p {
  font-size: 1.1rem;
}








/* sp_footer_navi */

.sp_footer_navi220426_magazine {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  background: #f7f7f7;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 800000001;
  position: fixed;
  box-shadow: 0 -2px 4px 0 rgb(0 0 0 / 13%);
}

.sp_footer_navi_box220426_magazine {
  width: 20%;
  padding: 2%;
  display: block;
  text-align: center;
  /* border-right: 1px solid #fff; */
}

.sp_footer_navi_box220426_magazine p {
  font-size: 10px;
  margin-top: 4px;
  line-height: 1;
}

.sp_footer_navi_box220426_magazine img {
  width: 40%;
}


#toTop {
  bottom: 60px;
}


/* sp_footer_navi */



/*----------------------------------------
reset
----------------------------------------*/

body {
  min-width: auto;
}

.fs-l-main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.fs-l-pageMain {
  width: 100%;
  /* 左右の余白削除 */
  padding-left: 0px;
  padding-right: 0px;
}

.layout_header_navi {
  display: none;
}

.header-gnavi-category {
  display: none!important;
}

ul.sp-header-gnavi.fs-p-accountInfo.fs-clientInfo.is-ready {
  display: none!important;
}

.fs-l-header__drawerOpener {
  display: none;
}

.psLink img {
  display: none;
}

.re_keyword_form_wrap {
  display: none;
}

.search-price {
  display: none;
}

.re_footer-navi {
  display: none!important;
}

.footer-sns {
  display: none;
}

.footer-under {
  display: none;
}

.fs-clientInfo.is-ready {
    display: none;
}



/*----------------------------------------
reset
----------------------------------------*/



}
