/* スタイルガイド */
:root {
  --color-title: #24292E;
  --color-primary: #24292E;
  --color-btn: #2a2a2a;
  --color-magazine: #707070;
  --color-footer: #333333;
}

/*個別リセット*/
a {
  text-decoration: none;
}

ul{
  padding: 0;
}
ul li {
  list-style: none;
}

figure {
  margin: 0;
}

.info li{
  padding: 0;
}


/* タイポグラフィー */
body {
  font-family: Arial、Hiragino Sans、Hiragino Kaku Gothic ProN、Meiryo、sans-serif;
}

ul li {
  line-height: 2rem;
}

a:hover{
  opacity: 0.7;
}

footer a{
  color: #fff;

}

/* ボタン */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 0.75rem;
  border: 1px solid  black ;
  color: var(--color-btn);
}

/* メディアクエリの指定
@media screen and (max-width:896px){}
@media not screen and (max-width:896px){}
 */

/* コンテンツの幅指定 */
.contents-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/*表示非表示*/
@media screen and (max-width:896px) {
  .sp-none {
    display: none;
  }
}

@media not screen and (max-width:896px) {
  .pc-none {
    display: none;
  }
}

/*-------------------------
common
---------------------------*/

img {
  max-width: 100%;
  
}

/*-------------------------
ヘッダー
---------------------------*/
header {
  height: 100vh;
  background-image:url(img/mainvisual.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.title img {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  background-color: var(--color-title);
}

/*-------------------------
雑誌
---------------------------*/

#magazine {
  margin-bottom: 40px;
  text-align: center;
}


#magazine .parent_flex_magazine {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;

}

.child_flex_magazine {
  /* width: 49%; */
  position: relative;
  flex-basis: 49%;
}


.child_flex_magazine .title {
  margin-bottom: 2rem;
}


.child_flex_magazine .text {
  max-width: 290px;
  padding: 15px 0;
  margin: 0 auto;
  color: white;
  font-weight: bold;
  line-height: 5px;
  text-align: center;
  background-color: var(--color-primary);
  opacity: 0.8;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
}


@media screen and (max-width:896px) {
  #magazine .parent_flex_magazine {
    flex-direction: column;
  }

  .child_flex_magazine {
    width: 100%;
  }

  .child_flex_magazine .img-magazine{
    margin-bottom: 30px;
  }
  
  .flex-catalog-antique .text-catalog-antique a{
    margin-bottom: 80px;
    
  }
}

@media not screen and (max-width:896px) {

}

/*-------------------------
ファッション
---------------------------*/

#fashion{
  height: 600px;
  padding-top: 40px;
  background-image: url(img/fashion.jpg);
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}



/*-------------------------
カタログ・アンティーク
---------------------------*/
#catalog-antique{
  background-color: #f5f5f5;
  padding-top: 60px;
}
.text-catalog-antique{
  text-align: center;
}


.text-catalog-antique p{
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: justify;
  font-size: 18px;
  line-height: 28px;
}
@media screen and (max-width:896px){
  .text-catalog-antique h2{
    margin-top:60px;
  }
  

}
@media not screen and (max-width:896px){
  .flex-catalog-antique{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 30px; */
  }

  .text-catalog-antique{
    width: 48%;
  }

  .img-catalog-antique{
    width: 48%;
  }
   .img-catalog-antique img{ 
    width: 100%;
  } 
  
  
  
  
}




/*-------------------------
フッター
---------------------------*/
footer {
  background-color: var(--color-footer);
  margin-top: 40px;
}


.footer-title h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--color-title);
}

/* .info:hover { */
  /* text-decoration: underline; */
/* } */

.info li::before {
  content: "・";
}

.contact li::before {
  content: "・";
}

.copy-right {
  padding: 1rem;
  font-size: 10px;
  text-align: center;
  background-color: #fff;

}



@media screen and (max-width:450px) {
  footer .footer-flex {
    padding: 0 40px;
  }


  .footer-title {
    text-align: center;
    padding-top:30px;
  }
  .info li{
    padding-left: 20px;
  }

  .border{
    width: 100%;
    height: 0.01rem;
    background-color: #fff;
  }
  
  .contact {
    padding-bottom: 30px;
  }

  .contact li{
    padding-left:20px;
  }


}

@media not screen and (max-width:450px) {
  .footer-flex {
    padding: 40px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

}