@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: 50%;
	height: 100vh;
}

/*右エリア*/
#container{
	width:35%;
}

.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: #F0ECE7;
}

.content_main {
  /* width: 35%; */
  /* height: 100vh; */
  box-shadow: 0px 0px 7px #949494;
  z-index: 1000;
}

.content_right {
  width: 15%;
  height: 100vh;
  background-color: #F0ECE7;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.content_menu {
  position: relative;
  width: 100%;
  height: 100vh;
}

.menu_wrap {
  width: 500px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.magazine_wrap .ttl_wrap {
  text-align: center;
}

.magazine_wrap .ttl_wrap img {
  width: 25px;
  height: 25px;
  animation:3s linear infinite rotation1;
}

@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

.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);
}
}


.magazine_wrap .ttl_wrap h1 {
  font-size: 4.5rem;
  text-align: center;
  letter-spacing: .03em;
  color: #832828;
  font-family: "Italiana", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 12px;
}

.menu_contents {
  margin: 5% auto 10%;
}

.magazine_wrap .menu_item {
  display: flex;
  align-items:center;
  width: 80%;
  margin: 0 auto ;
  border-top: 2px solid #fff;
  padding: 5% 5% 5% 2%;
  position: relative;
}

.magazine_wrap .menu_item#item_3 {
  border-bottom: 2px solid #fff;
}

.magazine_wrap .menu_item a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}

.menu_contents .menu_item:hover{
  background-color: #ffffff90;
}

.magazine_wrap .menu_item .icon {
  width: 12%;
}

.magazine_wrap .menu_item .content_ttl {
  width: 78%;
  margin-left: 5%;
}

.magazine_wrap .menu_item .content_ttl p {
  font-size: 1.0rem;
}

.magazine_wrap .menu_item .content_ttl h2 {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 170%;
  letter-spacing: .03em;
  font-size: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #432c1e;
}

.magazine_wrap .menu_item .anchor {
  width: 5%;
}

.menu_btn {
  width: 275px;
  font-size: 1.2rem;
  color: #432c1e;
  text-align: center;
  padding: 15px 0;
  border-radius: 8px;
  border: 1px solid #432c1e;
  margin: 5% auto 0;
  letter-spacing: .03em;
}

.menu_btn a {
  display: block;
}

/* .menu_btn:hover {
  background-color: #432c1e;
  color: #fff;
} */

.content_main .main_top {
  background-color: #5D473A;
}

.content_main .ttl_wrap#main_ttl {
  padding: 10% 0 15%;
}

.magazine_wrap .ttl_wrap h1#main_h1 {
  color: #fff;
}


.content_main .mai_manu {
  margin: 10% 0 15%;
}

.content_main .main_tex {
  margin: 5% auto 10%;
  text-align: center;
}

.content_main .menu_item {
  background-color: #f0ece7;
  border-radius: 20px;
  margin-top: 3%;
  border-top: none;
  padding: 5%;
}


.main_content {
  background-color: #F0ECE7;
}

.main_content .content_wrap {
  padding: 15% 0;
}

/* .main_content .content_wrap::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
} */


.main_content .content_h2 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.main_content .content_h2 h2 {
  font-size: 3.0rem;
  text-align: center;
  color: #832828;
  font-family: "Italiana", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 10px;
}

.main_content .content_h2 img {
  width: 20px;
  height: 20px;
  animation:3s linear infinite rotation1;
}

.main_content .content_tex {
  text-align: center;
  margin-top: 10%;
}

.main_content .staff_wrap {
  width: 80%;
  margin: 10% auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.main_content .staff_wrap img {
  width: 33%;
  border: 0.5px solid #432c1e99;
  box-shadow: 0 0 0 0.5px #432c1e99;
  box-sizing: border-box;
}

.main_content .staff_wrap a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}

.content_btn {
  width: 300px;
  font-size: 1.5rem;
  text-align: center;
  padding: 15px 0;
  border-radius: 8px;
  /* border: 1px solid #432c1e; */
  margin: 10% auto 0;
  letter-spacing: .03em;
  background-color: #631e1e;
}

.content_btn a {
  display: block;
  color: #fff;
}

.content_btn:hover {
  opacity: 0.7;
}








.main_contentB {
  background-color: #5d473adb;
}

.main_contentB .content_wrap {
  padding: 15% 0;
}

.main_contentB .content_wrap::before {
  content: "";
  display: block;
  height: 100px; /* 調整したい高さ（固定ヘッダーの高さ） */
  margin-top: -100px; /* heightと同じ分のネガティブマージン */
  visibility: hidden;
}

.main_contentB .content_h2 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.main_contentB .content_h2 h2 {
  font-size: 3.0rem;
  text-align: center;
  color: #fff;
  font-family: "Italiana", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 10px;
}

.main_contentB .content_h2 img {
  width: 20px;
  height: 20px;
  animation:3s linear infinite rotation1;
}

.main_contentB .content_tex {
  text-align: center;
  margin-top: 10%;
  color: #fff;
}

.main_contentB .keyword {
  text-align: center;
}

.main_contentB .keyword ul {
  margin-top: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.main_contentB .keyword li {
  background: #F3F3F3;
  border-radius: 50px;
  padding: 2.5%;
  width: 25%;
  margin: 6px;
}

.main_contentB .keyword li a {
  font-size: 1.3rem;
}

.main_contentB .giftwrapping {
  margin: 5% auto 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 90%;
  }

  .main_contentB .wrapping_img {
    width: 35%;
  }

  .main_contentB .wrapping_tex {
    width: 55%;
  }

.main_contentB .wrapping_tex h3 {
  font-size: 2.0rem;
  text-align: center;
  color: #fff;
  font-family: "Italiana", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.main_contentB .wrapping_tex p {
  color: #fff;
  margin-top: 5%;
  font-size: 1.1rem;
}

.wrapping_btn {
  width: 300px;
  font-size: 1.5rem;
  margin: 5% auto 0;
  text-align: center;
  padding: 15px 0;
  border-radius: 8px;
  border: 1px solid #ffffff;
  letter-spacing: .03em;
}

.wrapping_btn a {
    display: block;
    color: #ffffff;
}

/* .wrapping_btn:hover {
  background-color: #ffffff;
  color: #5d473adb;
} */




.main_content .period {
  margin: 5% auto 0;
  text-align: center;
}

.main_content .period p {
  border: 1px solid #cba564;
  border-radius: 10px;
  padding: 10px 20px;
  display: inline-block;
}

.main_content .howto {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  margin-top: 10%;
}

.main_content .howto .step {
  width: 35%;
}

.main_content .howto .step p {
  padding: 3px 2px;
}

.main_content .attention {
  padding: 25px 20px;
  border: 1px solid #5d473a;
  width: 90%;
  margin: 10% auto 0;
  border-radius: 10px;
}

.home_btn {
  width: 300px;
  font-size: 1.5rem;
  margin: 10% auto;
  text-align: center;
  padding: 15px 0;
  border-radius: 8px;
  border: 1px solid #432c1e;
  letter-spacing: .03em;
}

.home_btn a {
  display: block;
  color: #432c1e;
}

/* .home_btn:hover {
  background-color: #631e1e;
  color: #fff;
} */
























/*----------------------------------------
	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:1100px){
  #container{
	/*横半分50%にする*/
	width:50%;
  }

  .content_right {
    display: none;
  }

}







  /*----------------------------------------
  	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;
    }

    .content_menu {
      display: none;
    }

    .content_left {
      display: none;
    }


    /* .content_left {
      width: calc(50% - 250px);
    } */

    /* .content_main {
      width: 500px;
    } */

    /* .content_right {
      width: calc(50% - 250px);
    } */

    #wrapper{
    	display: block;/*display:flex;を解除*/
    }

    #fixed-area{
     	position:relative!important;/*position stickyを解除*/
    }

    #container{
    	width:100%;/*横幅を100%にして1列に見せる*/
    }

    /* .main_contentB .keyword li a {
      font-size: 1.1rem;
    } */



  }



  /* ----------------------------------------
  	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: 30% auto;
} */

.content_main {
  width: 100%;
  height: auto;
}

.magazine_wrap .menu_item {
  width: 90%;
}

.magazine_wrap p {
  font-size: 1.2rem;
}


.main_content .content_h2 h2 {
  font-size: 2.5rem;
}

.main_contentB .keyword li {
  width: 45%;
  padding: 4.5%
}

.main_content .howto .step {
    width: 40%;
}

/* css追記 */

.fs-l-pageMain {
  padding-left: 0px;
  padding-right: 0px;
}

.content_main {
  box-shadow: none;
}








/* css追記 */

/* 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
----------------------------------------*/



}
