@charset "UTF-8";
html{
    font-size: 100%;
}body {
    font-family: "Arial、Hiragino Sans、Hiragino Kaku Gothic ProN、Meiryo、sans-serif";
    letter-spacing: 0.05em;
    position: relative;
  }
img {
    width: 100%;
  }
.title{
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 30px;
}
  /*****************
      PC LapTop
   *****************/
/*mainvisual header*/
  .mainvisual{
    margin-bottom: 70px;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/mainvisual.jpg);
    background-size: cover;
    background-position: center top;
}
  .mainvisual p{
    border: solid 3px #555;
    width: 90px;
    text-align: center;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #555;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
   
  }
/*magazine section*/
.magazine{
  max-width: 1200px;
  padding: 0 5%;
  margin: auto;
}
.desc{
  text-align: center;
  margin-bottom: 30px;
}
.magazin_box{
  width: 100%;
  display: flex;
  justify-content:space-between;

}
.archive {
  width: 49%;
  position: relative;
}
.new{
  width: 49%;
  position: relative;
}
.magazine_text_box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 要素の中央に移動4点セットは雛形 */

  border: solid 2px #555;
  padding: 30px;

  color: white;
  background-color: rgba(0, 0, 0, 0.5);
}
.magazine_title{
  text-align: center;
  font-size: 24px;
}
.magazine_text{
  text-align: center;
}
/*fashion*/
.fashion{
  background-image: url(../img/fashion.jpg);
  width: 100vw;
  height: 50vh;
  background-position: center top;
  background-size: cover;
  margin-top: 70px;
  object-fit: cover;
  position: relative;
 
}
.fashion_text_box{
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%);
}
.readmore{
  text-align: center;
  border: solid 2px #555;
  width: 100px;
  margin: 0 auto;/*中央寄せ*/
  margin-bottom: 70px;
  border-radius: 2px;
}
/*catalog_antique*/
.catalog_antique{
  background-color: #ece5e5;
  padding: 5%;
}
.flex{
  width: 100%;
  margin-top: 70px;
  display: flex;
  padding: 0 5%;
  justify-content: space-between;
}
.flex_left{
  width: 49%;
}
.flex_right{
  width: 49%;
}
.flex_title{
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.antique{
  margin-top: 30px;
}
/*footer*/
footer{
  width: 100%;
  text-align: center;
}
.footer_flex{
  height: 200px;
  display: flex;
  background-color: #363636;
  justify-content:space-around;
  align-items: center;
  color: #fff;
}
.middle p{
 text-align: left;
}
.footer_right p{
  text-align: left;
  word-wrap: break-word; /* 単語が長い場合に改行 */
  overflow-wrap: break-word; /* 単語がはみ出る場合の改行 */
  white-space: normal; 
}
  /*****************
       Responsive
  ******************/
@media screen and (max-width: 896px) {
/*mainvisual*/
.mainvisual{
  width: 100%;
  background-size:cover;
  object-fit: cover;
}
.magazin_box{
  flex-direction: column;

}
.archive{
  width: 100%;
}
.new{
  width: 100%;
}
.archive + .new{
  margin-top: 20px;
}
.fashion{
  height: 500px;
}
.fashion_text_box{
  margin-top: 20px;
  width: 100%;
  transform: none;
  left: 0;
  top: 0;
}
.catalog_antique{
  width: 100%;
}
.flex{
  flex-direction: column;
  justify-content: left;
  /*padding: 0;*/
  margin-top: 20px;
}
.flex_left{
  width: 100%;
}
.flex_right{
  width: 100%;
 
}

footer{
 width: 100%;

  /*text-align: left;*/
}
.footer_flex{
  height: 300px;
  background-color: #1e1d1d;
  width: 100%;
  padding: 5%;
 /* margin: 0 auto;*/
  flex-direction: column;
  align-items: normal;
}
.footer_last{
  text-align: center;
  height: 50px;
  padding: 20px;
}
.middle{
  margin-top: 15px;
}
.middle ul li {
  text-align: left;
}
.footer_right{
  margin-top: 15px;
  width: 80%;
}
.footer_right p{
  width: 100%; /* 幅を100%に設定 */
  word-wrap: break-word; /* 単語が長い場合に改行 */
  overflow-wrap: break-word; /* 単語がはみ出る場合の改行 */
  white-space: normal; /* テキストを自動的に改行 */
}
}





