@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
----------------------------------------*/

.magazine {
  background-color: #edebe87a;
}

.magazine .magazine_wrap {
  width: 1000px;
  height: auto;
  margin: 7% auto 0;
  /* width: 650px; */
}

.magazine h1 {
  font-size: 43px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: .03em;
}

.magazine p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 180%;
  letter-spacing: .03em;
  font-size: 13px;

}

.magazine img {
  width: 100%;
  height: auto;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.slider-item {
  width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  /* height:100vh; */
  background-repeat: no-repeat;/*背景画像をリピートしない*/
  background-position: center;/*背景画像の位置を中央に*/
  background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(0);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.magazine .topcmt p {
  width: 90%;
  margin: 5% auto 0%;
  text-align: center;
}

.magazine .content {
  width: 100%;
  margin: 15% auto 0;
}

.magazine .content_main {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 5%;
}

.magazine .content .main_img {
  width: 48%;
  height: auto;
}

.magazine .content .main_tex {
  margin-top: 2%;
  width: 90%;
}

.magazine .content .item_wrap {
  margin-top: 2%;
  width: 60%;
}

.magazine .content .item_wrap p {
  color: #c71010;
}

.magazine .content .item_wrap span {
  color: #fff;
  background-color: #c71010;
  padding: 3px 15px;
  border-radius: 7px;
  margin-left: 5%;
}

.magazine .content .item_wrap small {
  padding-right: 3%;
}

.magazine .content .main_wrap {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

.magazine .content .main_wrap img {
  width: 50%;
  height: auto;
}

.magazine .content_item {
  margin: 15% auto 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.magazine .content_item img {
  width: 23%;
  height: auto;
}

.magazine .content_footer {
  position: relative;
  margin: 0% auto;
}

.magazine .content_footer::before {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #c71010;
  position: absolute;
  margin: 0% calc(50% - 50vw);
}

.magazine .content_footer .gb_icon {
  width: 20%;
  margin: 10% auto 0;
  padding-top: 5%;
}

.magazine .content_footer .cp_icon {
  width: 15%;
  margin: 0 auto;
  padding-bottom: 10%;
}












/*リンクの形状*/
#page-top a{
	/* display: flex; */
	/* justify-content:center; */
	/* align-items:center; */
	/* background:#942D2F; */
	/* border-radius: 5px; */
	/* width: 60px; */
	/* height: 60px; */
	/* color: #fff; */
	/* text-align: center; */
	/* text-transform: uppercase;  */
	/* text-decoration: none; */
	/* font-size:0.6rem; */
	transition:all 0.3s;
}

/* #page-top a:hover{
	background: #777;
} */

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: -30px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove{
	animation: LeftAnime 0.9s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/*　右の動き　*/

#page-top.RightMove{
	animation: RightAnime 0.9s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}

.magazine .page_top {
  width: 150px;
  height: 150px;
}


/*----------------------------------------
	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;
    }

    .magazine .magazine_wrap {
      width: 100%;
    }
  }



  /* ----------------------------------------
  	Tablet
  ---------------------------------------- */








  @media only screen and (max-width: 519px)
  {


/*----------------------------------------
	pc/sp
----------------------------------------*/

/* PCだけで表示させたい
スマホのときは消えてほしい*/
.sp-invisible
{
    display: none;
}
/* スマホで表示させたい
PCのときは消えてほしい*/
.sp-display
{
    display: block;
}

/*----------------------------------------
  pc/sp
----------------------------------------*/



.magazine {
  width: 100%;
  margin: 0% auto;
}

.magazine .magazine_wrap {
  width: 100%;
  padding-bottom: 30%;
}


.magazine h1 {
  font-size: 56px;
}

.magazine .topimg img {
  width: 100%;
  margin: 20% auto 0%;
}

.magazine .topcmt p {
  width: 95%;
  text-align: left;
}

.magazine .topcmt p br {
  display: none;
}

.magazine .content {
  margin-top: 25%;
}

.magazine .content_main {
  display: block;
  flex-wrap: wrap;
}

.magazine .content .main_img {
  width: 100%;
  margin-top: 5%;
}

.magazine .content .item_wrap {
  width: 100%;
}

.magazine .content .item_wrap p {
  width: 95%;
  margin: 0 auto;
  font-size: 11px;
}

.magazine .content .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.magazine .content .flex .main_img {
  width: 50%;
  height: auto;
  margin-top: 0;
}

#page-top {
  bottom: 55px;
}

.magazine .content_footer .gb_icon {
  margin: 20% auto 0;
  width: 35%;
}

.magazine .content_footer .cp_icon {
  width: 35%;
}







/* 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
----------------------------------------*/



}
