@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;
}

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	left:50%;
	bottom:20px;
    /*全体の高さ*/
	height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	position: absolute;
	left:-15px;
	top: -15px;
    /*テキストの形状*/
	color: #c3a945;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-family: "Judson", serif;
  font-weight: 400;
  font-style: normal;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 1px;
	height: 30px;
	background: #c3a945;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}

/* .magazine .main_top {
  background-image: url('../images/kvs.jpg');
  background-size: cover;
  position: relative;
} */

#header{
	width:100%;
	height: 100vh;
	position: relative;
}


/* #header:before{
	content:"";
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height: 100vh;
	background:url("../images/kvs.jpg") no-repeat center;
	background-size:cover;
} */

#header:before{
	content:"";
	position:fixed;
	top:0;
	right:0;
	z-index:-1;
	width:50%;
	height: 100%;
	background:url("https://skmk.itembox.design/item/2025christmas_content/kvs.jpg") no-repeat center;
	background-size:cover;
}


#container_wrap{
	/*下のかぶさるエリアの指定*/
	position: relative;
	z-index:1;
  padding: 10%;
  background-color: #F5F5F5;
}

.content_main .main_vs {
  position: fixed;
}


.content_main .top_menu .top_tex {
  margin: 10% 0;
}

.content_main .top_menu .top_tex p {
  text-align: center;
  margin: 0 auto;
}

.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 .gift_wrap {
  padding: 10%;
  background: #fff;
  border-radius: 10px;
  /* margin: 10% auto; */
  margin-top: 10%;
}

.content .gift_wrap span {
  font-family: "Monsieur La Doulaise", cursive;
  font-weight: 400;
  font-style: normal;
}

.content .gift_wrap h3 {
  font-size: 2.2rem;
  text-align: center;
  letter-spacing: .03em;
  font-family: "Judson", serif;
  font-weight: 400;
  font-style: normal;
  color: #4E4A47;
}

.content .gift_wrap p {
  font-size: 1.0rem;
}

.content .gift_keyword {
  text-align: center;
}

.content .gift_keyword ul {
  margin-top: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.content .gift_keyword li {
  /* background: #c18e2224; */
  border-radius: 50px;
  padding: 5%;
  width: 45%;
  margin: 6px;
  background: #4E4A47;
}

.content .gift_keyword li a {
  color: #fff;
  letter-spacing: .03em;
  font-family: "Judson", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  display: block;
}

.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;
}

/* .content .wrapping_tex span {
  font-family: "Monsieur La Doulaise", cursive;
  font-weight: 400;
  font-style: normal;
  color: #bd8714;
  font-size: 2.0rem;
} */

/* .content .present_wrap {
  border: solid 4px #832828;
  border-radius: 9% 14% 15% 13% / 43% 49% 40% 47%;
  padding: 10%;
} */

.content .period {
  margin: 10% auto 0;
  text-align: center;
}

/* .content .period_tex p {
  font-size: 1.0rem;
  color: #c18e22;
} */

.content .period p {
  border: 1px solid #c18e22;
  border-radius: 10px;
  padding: 10px 20px;
  display: inline-block;
}

.content .step_wrap {
  margin-top: 10%;
  background: #fff;
  padding: 4% 10%;
  background: #fff;
  border-radius: 10px;
}

.content .step_ttl {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: end;
}

.content .step .step_ttl p {
  font-size: 1.3rem;
}

.content .step {
  padding: 5%;
  text-align: left;
}

.content .step p {
  font-size: 1.0rem;
  margin-top: 10px;
}

.content .step#step1 {
  border-bottom: 1px solid #f5f5f5;
}

.content .step h3 {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: .03em;
  font-family: "Judson", serif;
  font-weight: 400;
  font-style: normal;
  color: #4E4A47;
  margin-right: 10px;
}

.content .step h3 span {
  font-family: "Monsieur La Doulaise", cursive;
  font-weight: 400;
  font-style: normal;
  /* margin-right: 2px; */
  font-size: 1.8rem;
}

.content .attention {
  /* padding: 25px 20px; */
  /* border: 1px solid #5d473a; */
  margin: 10% auto 20%;
  border-radius: 10px;
  text-align: left;
}

.content .attention p {
  font-size: 1.0rem;
}

.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%;
}



/* 線の描写 */
.scrolldown1::after{
  visibility: visible;
  display: block;
}









/* 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
----------------------------------------*/



}
