@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
----------------------------------------*/
/*========= スクロールダウンのためのCSS ===============*/

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  left:50%;
  bottom:10px;
    /*全体の高さ*/
  height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
  position: absolute;
  left:-15px;
  top: -15px;
    /*テキストの形状*/
  color: #000;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
    /*線の形状*/
  width: 1px;
  height: 30px;
  background: #000;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}

/*========= レイアウトのためのCSS ===============*/

h1{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color:#8c428d;
  /* text-shadow: 0 0 15px #666; */
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: .03em;
  font-family: 'Noto Serif Display', serif;
  /* font-weight: 400; */
}

h1 span {
  font-size: 1.3rem;
}

.magazine p {
  font-family: Hiragino Kaku Gothic Pro,Meiryo,sans-serif;
  line-height: 180%;
  letter-spacing: .03em;
  font-size: 1.3rem;
}



#splash{
  width:100%;
  height: 100vh;
  position: relative;
  z-index: 999;
}

#splash_logo{
  content: '';
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height: 100vh;
  /*背景画像設定*/
  background:url("https://skmk.itembox.design/item/magazine240915/top_pc2.jpg") no-repeat center;
  background-size:cover;
}


#look_header{
  width:100%;
  height: 100vh;
  position: relative;
}

#look_header:before{
  content: '';
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height: 100vh;
  /*背景画像設定*/
  background:url("https://skmk.itembox.design/item/magazine240915/top_pc1.jpg") no-repeat center;
  background-size:cover;
}

#container{
  position: relative;
  z-index:1;
  /* background:#eee; */
  /* padding:600px 0; */
  text-align: center;
}


/* fadeIn */
.fadeIn{
animation-name: fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger{
  opacity: 0;
}

/*==================================================
スライダーのためのcss
===================================*/
.look_slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
}
/*　背景画像設定　*/

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:auto;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}


.magazine .content {
  width: 100%;
  margin: 10% auto 0;
  position: relative;
}



.magazine .content .look {
  width: 520px;
  margin: 0 auto;
}

.magazine .content .look .style {
  width: 100%;
  cursor: pointer;
  position: relative;
}


.magazine .content .look img {
  width: 100%;
}

.magazine .content .look .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition:	all 0.2s ease;
	transition:		all 0.2s ease;
}

.magazine .content .look .mask:hover {
  opacity: 1;
}

.magazine .content .look .mask p {
  font-size: 1.6rem;
  text-align: center;
  border: 1px solid #fff;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  width: 60%;
  color: #fff;
  padding: 5px 0;
  font-family: 'Noto Serif Display', serif;
}

.magazine .footer {
  background: #eee;
  padding: 5% 0 10%;
}





/* モダール */
.modal-span {
  cursor: pointer;
  text-decoration: underline;
}

.modal-outer {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgb(203 203 203 / 80%);
  z-index: 10000;
}

/* .modal-inner {
  width: 100%;
  height: 100%;
  padding: 200px 0 50vh 0;
  margin: 0px;
  position: fixed;
} */

.modal-inner {
  width: 1000px;
  height: 600px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow-y: auto;
  background: #fff;
  padding: 20px;

}

.modal-wrap {
  height: auto;
  width: 100%;
  padding: 0px;
  margin: 0 auto;
}



/* .modal-wrap {
  height: auto;
  width: 1000px;
  padding: 0px;
  margin: 0 auto;
} */

.modal-inner .wrap {
  display: flex;
  flex-flow: nowrap;
  justify-content: space-around;
  align-items: flex-end;
}

.modal-inner .wrap .wrap_img {
  width: 48%;
}

.modal-inner .wrap .wrap_img img {
  width: 100%;
}

.modal-inner .wrap .tex {
  width: 48%;
}

.modal-inner .wrap .tex p {
  margin-top: 1.0rem;
  text-align: left;
}

.modal-inner .wrap .tex span {
  margin-top: 15px;
  display: block;
  font-size: 1.1rem;
}

.modal-inner .wrap .tex .buy_btn {
  margin-top: 15px;
  font-size: 1.3rem;
  text-align: center;
  border: 1px solid #000;
  width: 90%;
  padding: 10px 0;
}

.modal-inner .wrap .tex .buy_btn a {
  display: block;
}

.modal-inner .wrap .tex .buy_btn:hover {
  background: #fefefe70;
}





.show {
  display: block;
}

.modal-inner-header {
  /* margin-bottom: 25px; */
  width: 40px;
  height: 40px;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 99999;
  transition: all 0.25s ease-in 0s;
}

.modal-inner-header span {
  width: 22px;
  height: 1px;
  background-color: #111;
  position: absolute;
  cursor: pointer;
}

.modal-inner-header span:nth-child(1) {
  left: 0px;
  top: 20px;
  transform: rotate(45deg);
}

.modal-inner-header span:nth-child(2) {
  left: 0px;
  top: 20px;
  transform: rotate(-45deg);
}


.close-btn-bottom {
  margin-bottom: 0;
  width:150px;
  margin:0 auto;
  text-align: center;
}

.close-btn-bottom button {
  padding: 5px 10px;
  cursor: pointer;
}

.bold {
  font-weight: bold;
}

/* モダール */

.magazine .btn {
  width: 500px;
  /* height: 50px; */
  font-family: Hiragino Kaku Gothic Pro,Meiryo,sans-serif;
  font-size: 16px;
  text-align: center;
  margin: 5% auto;
  background: #FFFFFF;
  border: 1px solid black;
  padding: 12px 0;
}

.magazine .btn a {
  display: block;
}


.magazine .btn:hover {
  border-radius: 30px;
}

.magazine .btn#pre_btn {
  margin-top: 10%;
}


.fs-l-footer {
  margin-top: 0;
}

.layout_header_navi_logo img {
  display: none;
}

.fs-l-header {
  display: none;
}








/*----------------------------------------
	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
----------------------------------------*/










  /*----------------------------------------
  	pc/sp
  ----------------------------------------*/

/* PCだけで表示させたい
スマホのときは消えてほしい*/
  .sp-invisible
  {
      display: block;
  }
/* スマホで表示させたい
PCのときは消えてほしい*/
  .sp-display
  {
      display: none;
  }
  /*----------------------------------------
    pc/sp
  ----------------------------------------*/


  /* ----------------------------------------
  	Tablet
  ---------------------------------------- */

  @media only screen and (max-width: 768px)
  {

    .layout_header_meta_inner {
      width: 768px;
    }

    .layout_header_navi {
      width: 768px;
    }

    .re_layout_footer_wrap {
      display: none;
    }

    /* #header,
    #header:before{
      height: 90vh;
    } */


  }



  /* ----------------------------------------
  	Tablet
  ---------------------------------------- */








  @media only screen and (max-width: 519px)
  {


/*----------------------------------------
	pc/sp
----------------------------------------*/

/* PCだけで表示させたい
スマホのときは消えてほしい*/
.sp-invisible
{
    display: none;
}
/* スマホで表示させたい
PCのときは消えてほしい*/
.sp-display
{
    display: block;
}

/*----------------------------------------
  pc/sp
----------------------------------------*/


#look_header:before{
  background:url("https://skmk.itembox.design/item/magazine240915/top_sp1.jpg") no-repeat center;
  background-size:cover;
}

#splash_logo{
  background:url("https://skmk.itembox.design/item/magazine240915/top_sp2.jpg") no-repeat center;
  background-size:cover;
}


.scrolldown1 {
  height: 180px;
}

div:after {
  display: block;
  visibility: visible;
}


.slick-slider {
  margin-bottom: 0;
}

.magazine {
  width: 100%;
  margin: 0 auto;
}

.magazine .content .look {
  width: 100%;
}

.magazine h1 {
  font-size: 4.0rem;
}

.magazine .topimg img {
  width: 100%;
  margin: 20% auto 0%;
}

.magazine .topcmt p {
  width: 95%;
  font-size: 1.3rem;
}

.modal-inner {
  width: 100%;
  height: auto;
}

.modal-inner .wrap {
  display: block;
  margin: 20% auto 0;
}

.modal-inner .wrap .wrap_img {
  width: 100%;
}

.modal-inner .wrap .tex {
  width: 100%;
  margin-bottom: 100px;
}

.modal-inner .wrap .tex .buy_btn {
  margin: 15px auto;
}

.modal-inner .wrap .tex .buy_btn:hover {
  background: #fff;
}

.magazine .content .look .mask:hover {
  opacity: 0;
  display: block;
}

.magazine .content .look .style {
  width: 100%;
}












.modal-inner-header  {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 30px;
  top: 30px;
}

.modal-inner-header span:nth-child(1) {
  left: 0px;
  top: 10px;
  transform: rotate(45deg);
}

.modal-inner-header span:nth-child(2) {
  left: 0px;
  top: 10px;
  transform: rotate(-45deg);
}

.magazine .btn {
  width: 100%;
  font-size: 1.5rem;
  margin: 20% auto 0%;
  /* padding: 25px 0; */
  height: 5%;
  text-align: center;
  background: #ffff;
  padding: 5% 5%;
}

/* .magazine .btn a {
  padding: 5% 5%;
} */

.magazine .footer {
  padding: 10% 5% 30%;
  margin: 0 calc(50% - 50vw);
}


.magazine .btn:hover {
  border-radius: 0px;
}

.modal-inner .wrap .tex .buy_btn {
  width: 100%;
  padding: 15px 0;
  font-size: 1.4rem;
}










/* 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%;
}

.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
----------------------------------------*/



}
