@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;
	/*横半分50%　縦を100vhにする*/
	width: 50%;
	height: 100vh;
}

/*右エリア*/
#container{
	/*横半分50%にする*/
	width:50%;
}

/* フェードアップ */
.fadeUpTrigger{
  opacity: 0;
}

.fadeIn {
    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 {
  height: auto;
  margin: 7% auto 0;
  width: 650px;
} */

.magazine h1 {
  font-size: 4.0rem;
  text-align: center;
  /* letter-spacing: .03em; */
  font-family: "Judson", serif;
  font-weight: 400;
  font-style: normal;
  color: #26631B;
  line-height: 96%;
  margin-top: 7px;
}

.magazine p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 180%;
  letter-spacing: .03em;
  font-size: 1.3rem;
}


.magazine img {
  width: 100%;
  height: auto;
}

.magazine .content_main p {
  color: #4E4A47;
}

.magazine .content_main h2 {
  font-size: 2.0rem;
  text-align: center;
  letter-spacing: .03em;
  font-family: "Judson", serif;
  font-weight: 400;
  font-style: normal;
  color: #26631B;
}

.magazine .content_left {
  background-color: #F5F5F5;
}

.magazine .menu_wrap {
  width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  border: solid 4px #26631B;
  padding: 10%;
  border-radius: 10px;
}

.magazine .menu_wrap .main_ttl {
  text-align: center;
  border-bottom: 1px solid #26631B;
  padding-bottom: 30px;
}

.magazine .menu_wrap .main_ttl .star img {
  width: 23%;
}

.magazine .content_left h2 {
  font-size: 2.0rem;
  letter-spacing: .03em;
  font-family: "Judson", serif;
  font-weight: 400;
  font-style: normal;
  color: #26631B;
}

.magazine .content_left p {
  color: #26631B;
  font-size: 1.1rem;
}

.magazine .content_left .menu_box {
  padding: 0% 5% 10%;
}

.magazine .content_left .menu {
  margin-top: 10%;
}

.menu_btn {
  width: 275px;
  font-size: 1.2rem;
  color: #26631B;
  text-align: center;
  letter-spacing: 0.03em;
  padding: 15px 0px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #26631B;
  border-image: initial;
  margin: 5% auto 0px;
}

.menu_btn a {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 180%;
  letter-spacing: .03em;
  font-size: 1.3rem;
  color: #26631B;
}

#container_wrap{
	/*下のかぶさるエリアの指定*/
	position: relative;
	z-index:1;
  padding: 10%;
  background-color: #F5F5F5;
}



.content_main .top_menu .menu_box {
  margin: 0 auto;
  border: solid 2px #26631B;
  border-radius: 10px;
  padding: 5%;
}

.content_main .top_menu .menu_box .menu {
  padding: 5% 5% 5% 2%;
}

.content_main .top_menu .menu_box .menu#center {
  border-bottom: 1px dotted #26631B;
  border-top: 1px dotted #26631B;
}


.content_main .top_menu .menu_box .menu h2 {
  font-size: 2.0rem;
  letter-spacing: .03em;
  font-family: "Judson", serif;
  font-weight: 400;
  font-style: normal;
  color: #26631B;
  display: inline-block;
}

.content_main .top_menu .menu_box .menu p {
  color: #26631B;
  font-size: 1.1rem;
}

.content_main .content {
  padding: 10%;
}

.content_main .content {
  text-align: center;
}
.content_main .content .content_ttl img {
  width: 10%;
}

.content_main .content .content_ttl h2 {
  margin-top: 5px;
  font-size: 2.2rem;
}

.content_main .content .content_tex {
  margin-top: 5%;
}

.content_main .content .content_tex p {
  font-size: 1.2rem;
}


/* 画像の重なり動作 */

.box{
	opacity: 0;
}

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(0);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* 画像の重なり動作 */

.content_main .content .staff_img {
  position: relative;
  margin-top: 5%;
}

.content_main .content .staff_img img:nth-of-type(2) {
  position: absolute;
  right: 0%;
  bottom: 0%;
}

.content_main .content .staff_img img:nth-of-type(3) {
  position: absolute;
  right: 0%;
  bottom: 0%;
}



/*== 線の上を別の線が伸びる */

.content_btn{
    /*線の基点とするためrelativeを指定*/
	position:relative;
    /*リンクの形状*/
	color:#4E4A47;
    padding: 10px 50px 10px 30px;
	display:inline-block;
    text-decoration: none;
    outline: none;
}

/*線の設定*/
.content_btn::before,
.content_btn::after{
	content:'';
    /*絶対配置で線の位置を決める*/
	position:absolute;
	z-index:1;
	bottom:0;
	left:0;
     /*線の形状*/
	background:#26631B;
	width:100%;
	height:2px;
    /*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
}

 /*hover時に伸びる線の形状*/
.content_btn::after{
	width:0;
	background:#c18e22;
}

 /*hover時に100%に伸びる*/
.content_btn:hover::after {
	width:100%;
}

 /*矢印の設定*/
.content_btn span::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 1.3em;
    right: 20px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 1px solid #4E4A47;
    border-right: 1px solid #4E4A47;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hover時に矢印が移動*/
.content_btn:hover span::after {
	right:15px;
}

.content .gift_slider {
  margin-top: 10%;
}

.content .gift_slider img {
  width:100%;/*スライダー内の画像を横幅100%に*/
  height:auto;
  border-radius: 10%;
}

.gift_slider .slick-slide {
    margin:0 5px;/*スライド左右の余白調整*/
}

.content .staff_content {
  margin: 10% auto;
}

.content .staff_content .staff_ttl h3 {
  font-size: 2.2rem;
  text-align: center;
  letter-spacing: .03em;
  font-family: "Judson", serif;
  font-weight: 400;
  font-style: normal;
  color: #4E4A47;
}

.content .staff_content .staff_ttl h3 span {
  font-family: "Monsieur La Doulaise", cursive;
  font-weight: 400;
  font-style: normal;
  color: #4E4A47;
}

.content .staff_content .staff_ttl hr {
  display: block;
  height: 1px;
  border: 0;
  width: 90%;
  border-top: 1px solid #8b8989;
  margin: 2% auto;
}

.content .staff_content .staff_slider {
  margin-top: 10%;
}

/*==================================================
スライダーのためのcss
===================================*/
.staff_slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100%;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

.content .staff_content .staff_tex {
  margin-top: 5%;
  text-align: left;
}

.content .staff_content .staff_tex p {
  font-size: 1.2rem;
}

.content .staff_content .staff_item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
  margin-top: 5%;
  align-items: center;
}

.content .staff_content .staff_item .item_img {
  width: 15%;
}

.content .staff_content .staff_item .item_crz {
  width: 83%;
  text-align: left;
}

.content .staff_content .staff_item .item_crz p {
  font-size: 1.1rem;
}

.content .staff_content .staff_item a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60%;
}

.content .giftwrapping {
  margin: 10% auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 4%;
  background: #fff;
  border-radius: 10px;
}

.content .wrapping_img {
  width: 30%;
}

.content .wrapping_tex {
  width: 65%;
}

.content .wrapping_tex p {
  font-size: 1.1rem;
  text-align: left;
}











.present_btn {
  width: 300px;
  font-size: 1.3rem;
  text-align: center;
  padding: 15px 0;
  border-radius: 8px;
  /* border: 1px solid #432c1e; */
  margin: 10% auto 0;
  letter-spacing: .03em;
  background-color: #631e1e;
}

.present_btn a {
  display: block;
  color: #fff;
}

.home_btn {
  width: 300px;
  font-size: 1.3rem;
  text-align: center;
  padding: 15px 0;
  border-radius: 8px;
  border: 1px solid #4E4A47;
  margin: 10% auto 0;
  letter-spacing: .03em;
  /* background-color: #631e1e; */
}

.home_btn a {
  display: block;
  color: #4E4A47;
}











/*----------------------------------------
	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 only screen and (max-width: 1000px) {

  #wrapper{
	display: block;/*display:flex;を解除*/
}

  #fixed-area{
   	display: none;
  }

  #container{
  	width:100%;/*横幅を100%にして1列に見せる*/
  }

  #header:before {
    width: 100%;
  }



}








  /*----------------------------------------
  	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;
    }

  }



  /* ----------------------------------------
  	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;
}

.magazine h1 {
  font-size: 56px;
}

.magazine .topimg img {
  width: 100%;
  margin: 20% auto 0%;
}

.magazine .topcmt p {
  width: 95%;
  font-size: 13px;
} */

#container_wrap {
  padding: 10% 5% 20%;
}

.content_main .content .content_ttl img {
  width: 15%;
}

.content_main .content {
  padding: 10% 0%;
  margin-top: 10%;
}

.content .step_wrap {
  padding: 4% 2%;
}










/* 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
----------------------------------------*/



}
