@charset "utf-8";@charset "utf-8";

/* ===================================
    全体レイアウト用
==================================== */
#Area {
	font-family: "Inter", sans-serif;
	/*font-family: 'Shippori Mincho B1', serif;*/
	text-align: center;
	color:#333333;
	width: 100%;
	margin: 0 auto;
	display: block;
	overflow: hidden;
	max-width: 1400px;
}

.img {
	text-align: center;
	margin: 0 auto;
}

/*スマホの時だけ改行*/
.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }	
}

/* 余白*/
.spece {
 margin-bottom:3%;
}	

.spece2 {
    padding-top: 10%;
    text-align: center;
}

.spece_text {
 margin-bottom:-2%;
	font-weight: 400;
}	


.spece_bottom {
 margin-bottom:25%;
}	


img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

p {
	font-size: 16px;
	/*font-family: "Libre Baskerville", serif;*/
  /*font-weight: 400;*/
  font-style: normal;
	color: #333333;
}

.border_1 {
	border-top: 1px solid #d1cbc2;
	width: 80%;
	margin: 10% auto 9% auto;
}

.backcolor {
  background-image:url("/photo/page/20241102/back_12.jpg");
}


/* ===================================
    雪の指示
==================================== */

.snow {
  /*雪の色*/
  color: snow;
  /*雪の大きさ*/
  font-size: 8px;
  /*初期位置*/
  position: fixed;
  top: -5%;
  /*雪を適当な幅で降らせる*/
  text-shadow:
  5vw   -100px 2px,
  10vw  -400px 3px,
  20vw  -500px 4px,
  30vw  -580px 1px,
  39vw  -250px 2px,
  42vw  -340px 5px,
  56vw  -150px 2px,
  63vw  -180px 0,
  78vw  -220px 4px,
  86vw  -320px 9px,
  94vw  -170px 7px;
  /*雪アニメーション1*/
  animation: roll 16s linear infinite;
}
  /*2つめの雪アニメーション*/
.snow2nd{animation: anim 14s linear infinite;}

@keyframes roll {
    0% {transform:rotate(0deg);}
   90% {opacity:1;}
   100% {transform:rotate(20deg);top:100%;opacity:0;}
}
@keyframes anim {
  100% {color:transparent;top:150%;}
}


/*===============================
 スライド部分
===============================*/
li {
    list-style: none;
}
 
ul {
    margin: 0;
    padding: 0;
}
 
.slide-animation {
    display: flex;
    gap: 5px;
    overflow: hidden;
	margin-bottom: 4%;
}
 
.slide-animation li {
     width: 100%;
}
 
.slide-contents {
    display: flex;
    gap: 5px;
    animation: loopAnimation 25s linear infinite;
}
 
@keyframes loopAnimation {
    0% {
    transform: translate(0%);
    }
    100% {
    transform: translate(-100%);
    }
}


 .gifts_item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    width: 51.2vw;
    max-width: 28.1rem;
    /*min-width: 19.2rem;*/
    /*margin: 0 .5rem;*/
    border-radius: .8rem;
    overflow: hidden;
   /* aspect-ratio: 352 / 469;*/
}

/* ===================================
    バナー部分
==================================== */
.mainimage {
	width: 100%;
	display: block;
	margin: 0 auto;
	max-width: 2000px;
	text-align: center;
}

/*一番上のバナー*/
.mainimage img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 2000px;
	text-align: center;
		margin: 0 auto;
}


/*===================================
TOPテキスト
===================================*/

.top_text {
	width: 65%;
	margin: 3% auto 5% auto;
	text-align: center;
	/*font-family: 'Shippori Mincho B1';*/
}

.top_text_01 {
	font-size: 35px;
	color: #224e1f;
	line-height: 75px;
	font-weight: 500;
	letter-spacing: 0.01em;
	margin-top: -3%;
	font-family: "Times New Roman", Times, "serif"
}

.top_text_02 {
	font-size: 20px;
	color: #333333;
	line-height: 23px;
}

.top_text_03 {
	font-size: 16px;
	color: #333333;
    margin-top: 2%;
	line-height: 2.2em;
	margin-bottom: 10%;
}


.top_text span {
	text-decoration:underline;
}

.mini {
	font-size: 12px;
	/*font-family: 'Shippori Mincho B1';*/
}




/* ===================================
    TOPボタン
==================================== */

.top_button {  display: grid;
  grid-template-columns: 300px 300px;
  /*grid-template-rows: 300px;*/
  gap: 1% 12%;
  grid-auto-flow: row;
  grid-template-areas:
    "btn_women btn_men";
	text-align: center;
	margin: 0 auto;
	max-width: 685px;
	margin-top: 5%;
    margin-bottom: 5%;
}

.btn_women { grid-area: btn_women; }
.btn_men { grid-area: btn_men; }


.btn_women,.btn_men {
	max-width: 300px;
    text-align: center;
    line-height: 2.5;
    border-radius: 30px 30px 30px 30px;
    padding: 0.5em;
	font-family: "Times New Roman", Times, "serif"
}

.btn_women {
	color: #fff;
	background: #6f2222;
}

.btn_women:hover {
	background: #f4f2ed;
  color: #6f2222;
	border: 1px solid #6f2222;
	font-weight: 700;
}

.btn_men {
	color: #fff;
	background: #0f254a;
}

.btn_men:hover {
	background: #f4f2ed;
  color: #0f254a;
	border: 1px solid #0f254a;
	font-weight: 700;
}


/*===============================
 スライド部分
===============================*/

.gifts_item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    width: 25.2vw;
    max-width: 28.1rem;
    border-radius: .8rem;
    overflow: hidden;
}


.tab-title,.hh_text_top,.gift_text_top {
font-family: "Times New Roman", Times, "serif"	
}


/* ===================================
    youtube挿入 
==================================== */
.youtube {
	margin-top: 3%;
}

.youtube_text {
	font-size: 14px;
	width: 80%;
    text-align: center;
    margin: 2% auto;
	font-weight: 400;
	/*color: #333333;*/
}


.btn_ytb {
	max-width: 250px;
    text-align: center;
    line-height: 2.5;
    border-radius: 30px 30px 30px 30px;
    padding: 0.5em;
	/*font-family: "Times New Roman", Times, "serif";*/
	color: #fff;
	background: #c3a723;
	margin: 0 auto;
}
	

.btn_ytb:hover {
	background: #f4f2ed;
  color: #c3a723;
	border: 1px solid #c3a723;
	font-weight: 700;
}




/*================================
HAPPY HOLIDAYSの詳細
=================================*/

.hh_text_top {
	font-size:25px;
	margin-bottom: 4%;
	letter-spacing: 0.08em;
	line-height: 1.2;
	/*color: #6f2222;*/
}

.hh_text_top span {
	font-size: 13px;
}

.hh {  display: grid;
  grid-template-columns: 410px 340px;
  grid-template-rows: 300px;
  gap: 1% 5%;
  grid-auto-flow: row;
  grid-template-areas:
    "hh_image hh_text";
	text-align: center;
    margin: 0 auto;
    width: 790px;
}

.hh_image { grid-area: hh_image; }

.hh_image img {
	border-radius: 10px;
}

.hh_text { grid-area: hh_text; }

.hh_text_deteil {
	width: 80%;
    text-align: center;
    margin: 20% auto 10%;
    line-height: 1.8;
	font-weight: 400;	
}

.hh_text_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c3a723;
    /*border: 1px solid #000;*/
    box-sizing: border-box;
    width: 150px;
    height: 45px;
    padding: 0 6% 0 6%;
    color: #fff;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 5% auto 3% auto;
	border-radius: 30px 30px 30px 30px;
	}

.hh_text_btn:hover {
	background: #f4f2ed;
  color: #af941a;
	border: 1px solid #af941a;
	font-weight: 700;
}





/*================================
ギフトラッピングの詳細
=================================*/
.gift {  display: grid;
  grid-template-columns: 410px 340px;
  /*grid-template-rows: 300px;*/
  gap: 1% 5%;
  grid-auto-flow: row;
  grid-template-areas:
    "gift_image gift_text";
	text-align: center;
    margin: 0 auto;
    width: 790px;
}

.gift_image { grid-area: gift_image; }

.gift_text { grid-area: gift_text; }

.gift_text_top {
	font-size:25px;
	margin-bottom: 4%;
	letter-spacing: 0.08em;
	line-height: 1.2;
	/*color: #6f2222;*/
}

.gift_text_top span {
	font-size: 13px;
}

.gift_text_deteil {
	width: 80%;
    text-align: center;
    margin: 19% auto 10%;
    line-height: 1.8;
	font-weight: 400;	
}

.gift_text_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c3a723;
    /*border: 1px solid #000;*/
    box-sizing: border-box;
    width: 150px;
    height: 45px;
    padding: 0 6% 0 6%;
    color: #fff;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 5% auto 3% auto;
	border-radius: 30px 30px 30px 30px;
	}

.gift_text_btn:hover {
	background: #f4f2ed;
  color: #af941a;
	border: 1px solid #af941a;
	font-weight: 700;
}





/*画像ブロック*/
.gift_image {
	clear: left;
	width: 100%;
	margin-bottom: 20px;
	position: relative;
}

/*３枚画像の共通設定*/
.gift_image img:nth-of-type(1),.gift_image img:nth-of-type(2),.gift_image img:nth-of-type(3) {
	-webkit-animation-duration: 15s;	/*実行する時間。「s」は秒の事。*/
	animation-duration: 15s;			/*同上*/
	-webkit-animation-iteration-count:infinite;	/*実行する回数。「infinite」は無限に繰り返す意味。*/
	animation-iteration-count:infinite;			/*同上*/
	border-radius: 10px;	/*角丸のサイズ。大きくすれば角の丸みが大きくなる。角丸が不要ならこの１行削除。*/
}

/*１枚目*/
.gift_image img:nth-of-type(1) {
	-webkit-animation-name: slide1;		/*上で設定しているキーフレーム（keyframes）の名前*/
	animation-name: slide1;				/*同上*/
	position: relative;
	width: 100%;
	height: auto;
}

/*２枚目*/
.gift_image img:nth-of-type(2) {
	-webkit-animation-name: slide2;		/*上で設定しているキーフレーム（keyframes）の名前*/
	animation-name: slide2;				/*同上*/
	position: absolute;
	left:0px;
	top:0px;
	width: 100%;
	height: auto;
}

/*３枚目*/
.gift_image img:nth-of-type(3) {
	-webkit-animation-name: slide3;		/*上で設定しているキーフレーム（keyframes）の名前*/
	animation-name: slide3;				/*同上*/
	position: absolute;
	left:0px;
	top:0px;
	width: 100%;
	height: auto;
}



/*===================================
テキスト
===================================*/
.title {
	font-size: 26px;
	margin: 5% auto 1%;
	font-weight: 700;
}

.title_sub {
	font-weight: 700;
	margin-bottom: 1%;
	font-size: 16px;
}

.title_sub_2 {
	font-weight: 400;
	width: 50%;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 4%;
	font-size: 15px;
}

/*===================================
商品の小画像＆詳細
===================================*/
.details {
	font-size: 14px;
	text-align: center;
}

.details span {
	color: #8a5f62;
	/*font-weight: 700;*/
}

.buy {
	color: #fff;
        -webkit-box-pack: center;
        align-items: center;
    height: 100%;
    font-weight: 700;
    line-height: 2;
    letter-spacing: .06em;
    border: 1px solid #fff;
    border-radius: 100px;
	padding: 0px 12px;
}

.buy:hover {
	border: 1px solid #fff;
	background: #fff;
    color: #6f2222;
}

/*===================================
ボタン系
===================================*/
/*黒細ライン＆ホバーグレー*/
a.btn_01,a.btn_03 {
display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 450px;
    height: 55px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
     margin: 4% auto 4% auto;
}

a.btn_01:hover,a.btn_03:hover {
  background: #9b9b9d;
  color: #fff;
	    border: 1px solid #9b9b9d;

}

a.btn_01:before,a.btn_03:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_01:hover:before,a.btn_03:hover:before {
  border-color: transparent transparent transparent #fff;
}


/*黒細ライン＆ホバーも黒*/
a.btn_02 {
display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 400px;
    height: 55px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
        margin: 2% auto 4% auto;
}

a.btn_02:hover {
  background: #000;
  color: #fff;
}

a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}



/*===============================
 タブ部分
===============================*/
.tab-title {
	font-size: 25px;
	margin-bottom: 3%;
	letter-spacing: 0.08em;
	line-height: 1.2;
	/*color: #6f2222;*/
}

.tab-title span {
	font-size: 13px;
}

.tab-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
	/*font-family: "futura-pt";*/
}

.tab-2 > label {
    flex: 1 1;
    order: -1;
    opacity: .5;
    min-width: 70px;
    padding: 0.8em 0.7em;
    border-radius: 5px 5px 0 0;
    background-color: #c3a722;
    color: #fff;
    font-size: 1.0em;
    text-align: center;
    cursor: pointer;
}

.tab-2 > label:hover {
    opacity: .8;
}

.tab-2 input {
    display: none;
}

.tab-2 > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
    background-color: #fff;
}

.tab-2 label:has(:checked) {
    opacity: 1;
}

.tab-2 label:has(:checked) + div {
    display: block;
}

/*===================================
リストボタン(検索タグ)
===================================*/
.list_btn {
    display: grid;
    grid-template-columns: 22% 22% 22% 22%;
    /* grid-template-rows: 50px; */
    gap: 2% 2.7%;
    grid-auto-flow: row;
    grid-template-areas: "top_btn-1 top_btn-2 top_btn-3 top_btn-4";
    max-width: 830px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 2%;
    margin-left: 3%;
	}

.list_btn-1 { grid-area: top_btn-1;}
.list_btn-2 { grid-area: top_btn-2; }
.list_btn-3 { grid-area: top_btn-3; }
.list_btn-4 { grid-area: top_btn-4; }


.list_btn-1,.list_btn-2,.list_btn-3,.list_btn-4 {
	max-width: 220px;
    text-align: center;
    line-height: 2;
    border-radius: 30px 30px 30px 30px;
    padding: 0.5em;
	font-size: 13px;
    border: 1.5px dashed #224e1f;
	color: #333333;
	background: #fff;
	font-weight: 500;
}

.list_btn span{
	margin-top: -1%;
	font-size: 17px;
	}	

.list_btn img {
    width: 10%;
    margin: 0 0 2% 7%;
}

/*===================================
リストボタンのホバー
===================================*/

.list_btn-1:hover,.list_btn-2:hover,.list_btn-3:hover,.list_btn-4:hover{
background-color: #224e1f;
	color: #fff;
	  transition: .3s;
border: none;
}


 

/*================================
その他の記事の記述
=================================*/

.other {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    /* grid-template-rows: 200px; */
    gap: 2% 2.7%;
    grid-auto-flow: row;
    grid-template-areas: "other-1 other-2 other-3 other-4";
    text-align: center;
    margin: 0 auto;
    max-width: 85%;
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }

.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 10% auto 1%;
	font-size: 20px;
}

.other_details {
font-size: 15px;
text-align-last: left;	
}



/*================================
tablet
=================================*/
@media(max-width: 834px){
#Area .imageArea ul.row-fluid {
    width: 90%;
    text-align: center;
    margin: 5% auto 0;
  }	
	
.top {
    line-height: 2.0;
    font-size: 16px;
    font-weight: 400;
    margin: 5% auto;
}	
	
.top_text {
	font-size: 14px;
	line-height: 2.5;
	margin-top: 3%;
	color: #fff;
}
	
	
.top_text_01 {
	font-size: 26px;
	color: #224e1f;
	line-height: 55px;
	font-weight: 500;
	letter-spacing: 0.01em;
	margin-top: -12%;
	font-family: "Times New Roman", Times, "serif"
}
	
	
.top_text_02 {
    font-size: 18px;
    color: #333333;
    line-height: 23px;
	}	
	
	
.top_text_03 {
    font-size: 15px;
    color: #333333;
    margin-top: 2%;
    line-height: 2.2em;
    margin-bottom: 10%;
}	
		
	
/* ===================================
    TOPボタン
==================================== */	
	
.top_button {
    display: grid;
    grid-template-columns: 46% 46%;
    /* grid-template-rows: 300px; */
    gap: 1% 8%;
    grid-auto-flow: row;
    grid-template-areas: "btn_women btn_men";
    text-align: center;
    margin: 0 auto;
    max-width: 80%;
	margin-top: 5%;
    margin-bottom: 5%;
}	
	
	
	
	
/* ===================================
   youtube埋め込み
==================================== */
.youtube {
   width: 80%;
   aspect-ratio: 16 / 9;
   text-align: center;
   margin: 0 auto;
}
	
.youtube iframe {
  width: 100%;
  height: 100%;
}
	
	
.btn_ytb {
    max-width: 200px;
    text-align: center;
    line-height: 2.5;
    border-radius: 30px 30px 30px 30px;
    padding: 0.3em;
    /*ont-family: "Times New Roman", Times, "serif";*/
    color: #fff;
    background: #c3a723;
    margin: 0 auto;
}	
	
	
	
/*===================================
リストボタン(検索タグ)
===================================*/
.tab-title {
	font-size: 22px;
	margin-bottom: 2%;
	letter-spacing: 0.08em;
	/*color: #6f2222;*/
}	
	
.tag {
	width: 90%;
}
	
	
.tag_text {
	font-size: 22px;
	margin-bottom: 4%;
    padding-top: 6%;
}

.tag_text img {
	width: 8%;
}	
	
	
.list_btn {
    display: grid;
    grid-template-columns: 21% 21% 21% 21%;
    grid-template-rows: 100%;
    gap: 3% 1%;
    grid-auto-flow: row;
    grid-template-areas: "top_btn-1 top_btn-2 top_btn-3 top_btn-4";
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
	margin-bottom: 2%;
    margin-left: 11%;
}
	
	.list_btn-1, .list_btn-2, .list_btn-3, .list_btn-4 {
	max-width: 155px;
    text-align: center;
    /* margin-bottom: 10px; */
    line-height: 2;
    border-radius: 30px 30px 30px 30px;
    padding: 0.5em;
	border: 1.5px dashed #224e1f;
    color: #872a2a;
    background: #fff;
    font-weight: 900;
	font-size: 10px;
	}

/*===================================
テキスト
===================================*/
	
.title {
    font-size: 16px;
    margin: 5% auto 1%;
    font-weight: 700;
}
	
.title_sub {
    font-weight: 700;
    margin-bottom: 1%;
    font-size: 16px;
}	
	
.title_sub_2 {
    font-weight: 400;
    width: 70%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 6%;
    font-size: 13px;
}
	
	
/*================================
HAPPY HOLIDAYSの詳細
=================================*/

.hh {  display: grid;
  grid-template-columns: 44% 38%;
  grid-template-rows: 300px;
  gap: 1% 2%;
  grid-auto-flow: row;
  grid-template-areas:
    "hh_image hh_text";
	text-align: center;
    margin: 0 auto;
    width: 760px;
	margin-left: 5%;
}

.hh_image { grid-area: hh_image; }
	
.hh_image img {
	border-radius: 10px;
}	

.hh_text { grid-area: hh_text; }

.hh_text_top {
	font-size:22px;
	margin-bottom: 3%;
	letter-spacing: 0.08em;
	/*color: #6f2222;*/
}

.hh_text_deteil {
	width: 80%;
    text-align: center;
    margin: 15% auto 10%;
    line-height: 1.8;
	font-size: 12px;
}


.hh_text_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c3a723;
    /* border: 1px solid #000; */
    box-sizing: border-box;
    width: 140px;
    height: 40px;
    padding: 0 6% 0 6%;
    color: #fff;
    font-size: 12px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 4% auto 3% auto;
    border-radius: 30px 30px 30px 30px;
}
	
	
/*================================
ギフトラッピングの詳細
=================================*/

.gift {  display: grid;
  grid-template-columns: 44% 38%;
  /*grid-template-rows: 300px;*/
  gap: 1% 2%;
  grid-auto-flow: row;
  grid-template-areas:
    "gift_image gift_text";
	text-align: center;
    margin: 0 auto;
    width: 760px;
	margin-left: 5%;
}

.gift_image { grid-area: gift_image; }

.gift_text { grid-area: gift_text; }

.gift_text_top {
	font-size:22px;
	margin-bottom: 3%;
	letter-spacing: 0.08em;
	/*color: #6f2222;*/
}

.gift_text_deteil {
	width: 80%;
    text-align: center;
    margin: 15% auto 10%;
    line-height: 1.8;
	font-size: 12px;
}


.gift_text_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c3a723;
    /* border: 1px solid #000; */
    box-sizing: border-box;
    width: 140px;
    height: 40px;
    padding: 0 6% 0 6%;
    color: #fff;
    font-size: 12px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 4% auto 3% auto;
    border-radius: 30px 30px 30px 30px;
}
	
		
/*===================================
ボタン系
===================================*/
a.btn_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 330px;
    height: 45px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 5% auto 3% auto;	
	}
	
a.btn_03 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 330px;
    height: 45px;
    padding: 0 13% 0 15%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 5% auto 3% auto;	
	}	

/*================================
その他の記事の記述
=================================*/

.other {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 2% 2.7%;
    grid-auto-flow: row;
    grid-template-areas: "other-1 other-2 other-3 other-4";
    text-align: center;
    margin: 0 auto;
    max-width: 85%;
	
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }


.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 10% auto 1%;
	font-size: 17px;
}

	
	
	
	}
	
/*===================================
SMP
====================================*/

@media (max-width: 480px) {
#Area .imageArea ul.row-fluid {
    width: 100%;
    text-align: center;
    margin: 0 auto;
	font-family: "Inter", sans-serif;
  }
	
.spece_bottom {
 margin-bottom:40%;
}	
	
.spece_text {
 margin-bottom: 0px;
}	
	

	
/*===============================
 スライド部分
===============================*/

.slide-container {
    width: 100%;
    margin: 0px auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.slide-wrapper {
  display: flex;
  animation: slide-flow 10s infinite linear 1s both;
}
.slide{
  width: 40%;
  object-fit:cover;
}

.slide-wrapper img {
	width: 40%;
}
	
	

@keyframes slide-flow {
     0% {transform: translateX(0);}
 100% {transform: translateX(-100%);}
}	
	

	
/* ===================================
    TOPテキスト
==================================== */	
	
.top_text {
	width: 80%;
    font-size: 14px;
    line-height: 2;
    margin: 10% auto 10%;
	color: #fff;
	}	
	
.top_text_01 {
	font-size: 25px;
	color: #224e1f;
	line-height: 1.4;
	font-weight: 500;
	margin-bottom: 5%;
	margin-top: -10%;
	font-family: "Times New Roman", Times, "serif"
}	
	
.top_text_02 {
    font-size: 18px;
    color: #333333;
    /*font-family: "ryo-gothic-plusn";*/
    line-height: 23px;
}		

.top_text_03 {
    font-size: 14px;
    color: #333333;
    margin-top: 2%;
    /*font-family: "ryo-gothic-plusn";*/
    line-height: 1.8;
    margin-bottom: 16%;
}	

	
/* ===================================
    TOPボタン
==================================== */	
.top_button {
    display: block;
    grid-template-columns: 46% 46%;
    /* grid-template-rows: 300px; */
    gap: 1% 8%;
    grid-auto-flow: row;
    grid-template-areas: "btn_women btn_men";
    text-align: center;
    margin: 0 auto;
    max-width: 73%;
	margin-top: 20%;
    margin-bottom: 20%;
}		
	
.btn_women,.btn_men {
	max-width: 365px;
    text-align: center;
    line-height: 2.5;
    border-radius: 30px 30px 30px 30px;
	font-size: 15px;
	font-family: "Times New Roman", Times, "serif"
}
	
.btn_women {
	color: #fff;
	background: #6f2222;
	padding: 2.5%;
	margin-bottom: 10%;
	margin-top:  7%;
}

.btn_men {
	color: #fff;
	background: #0f254a;
	padding: 2.5%;
	}
		
/*===============================
 スライド部分
===============================*/


li {
    list-style: none;
}
 
ul {
    margin: 0;
    padding: 0;
}
 
.slide-animation {
    display: flex;
    gap: 5px;
    overflow: hidden;
}
 
.slide-animation li {
     width: 100%;
}
 
.slide-contents {
    display: flex;
    gap: 5px;
    animation: loopAnimation 25s linear infinite;
}
 
@keyframes loopAnimation {
    0% {
    transform: translate(0%);
    }
    100% {
    transform: translate(-100%);
    }
}


 .gifts_item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    width: 51.2vw;
    max-width: 15.1rem;
    /*min-width: 19.2rem;*/
    /*margin: 0 .5rem;*/
    border-radius: .8rem;
    overflow: hidden;
   /* aspect-ratio: 352 / 469;*/
}
	
	
/* ===================================
   youtube埋め込み
==================================== */
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
	margin-top: 5%;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
	
.youtube_text {
	font-size: 14px;
	width:90%;
    text-align: center;
    margin: 4% auto 9%;
	color: #333333;
	line-height: 1.8;
}
	
	
	
.btn_ytb {
	justify-content: center;
	align-items: center;
	background: #c3a723;
	/* border: 1px solid #000; */
	box-sizing: border-box;
	width: 190px;
	height: 40px;
	padding: 0.5% 6% 0 6%;
	color: #fff;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	position: relative;
	transition-duration: 0.2s;
	margin: 5% auto 3% auto;
	border-radius: 30px 30px 30px 30px;
}
		
/*================================
HAPPY HOLIDAYSの詳細
=================================*/

.hh {  display: block;
  grid-template-columns: 410px 340px;
  grid-template-rows: 300px;
  gap: 1% 5%;
  grid-auto-flow: row;
  grid-template-areas:
    "hh_image hh_text";
	text-align: center;
    margin: 0 auto;
    max-width: 500px;
	width: 90%;
}

.hh_image { grid-area: hh_image; }

.hh_image img {
		width: 100%;
	border-radius: 10px;
	margin-bottom: 20px;
	}		
	
.hh_text { grid-area: hh_text; }

.hh_text_top {
	font-size:22px;
	margin-top: 5%;
	margin-bottom: 5%;
	letter-spacing: 0.08em;
	line-height: 1.0;
	/*color: #6f2222;*/
}
	
.hh_text_top span {	
	font-family: "Inter", sans-serif;
	}
	
.hh_text_deteil {
	width: 90%;
    text-align: center;
    margin: 0 auto 9%;
    line-height: 1.8;
	font-size: 14px;
}


.hh_text_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c3a723;
    /*border: 1px solid #000;*/
    box-sizing: border-box;
    width: 190px;
    height: 40px;
    padding: 0 6% 0 6%;
    color: #fff;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 5% auto 3% auto;
	border-radius: 30px 30px 30px 30px;
	}
	
	
	
	
/*================================
ギフトラッピングの詳細
=================================*/

.gift {  display: block;
  grid-template-columns: 410px 340px;
  grid-template-rows: 300px;
  gap: 1% 5%;
  grid-auto-flow: row;
  grid-template-areas:
    "gift_image gift_text";
	text-align: center;
    margin: 0 auto;
    max-width: 500px;
	width: 90%;
}

.gift_image { grid-area: gift_image; }

.gift_image img {
		width: 90%;
	}	
	
.gift_text { grid-area: gift_text; }

.gift_text_top {
	font-size:22px;
	margin-top: 5%;
	margin-bottom: 5%;
	letter-spacing: 0.08em;
	line-height: 1.0;
	/*color: #6f2222;*/
}
	
	.gift_text_top span {
	font-family: "Inter", sans-serif;
	}	

.gift_text_deteil {
	width: 90%;
    text-align: center;
    margin: 0 auto 9%;
    line-height: 1.8;
	font-size: 14px;
}


.gift_text_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c3a723;
    /*border: 1px solid #000;*/
    box-sizing: border-box;
    width: 190px;
    height: 40px;
    padding: 0 6% 0 6%;
    color: #fff;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 5% auto 3% auto;
	border-radius: 30px 30px 30px 30px;
	}
	
	
	
	
	
.border_1 {
	border-top: 1px solid #d1cbc2;
	width: 80%;
	margin: 20% auto 10% auto;
}	
	
	
.image_width {  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 49% 49%;
  gap: 4% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid1 img_wid2"
    "img_wid3 img_wid4";
 margin-bottom: 10%;
}

.img_wid1 { grid-area: img_wid1; }
.img_wid2 { grid-area: img_wid2; }
.img_wid3 { grid-area: img_wid3; }
.img_wid4 { grid-area: img_wid4; }
	
	
	
.image_width_2 {  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 49% 49%;
  gap: 4% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid5 img_wid6"
    "img_wid7 img_wid8";
 margin-bottom: 10%;
}

.img_wid5 { grid-area: img_wid5; }
.img_wid6 { grid-area: img_wid6; }
.img_wid7 { grid-area: img_wid7; }
.img_wid8 { grid-area: img_wid8; }
		

	
.image_width_3 {  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 49% 49%;
  gap: 4% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid9 img_wid10"
    "img_wid11 img_wid12";
 margin-bottom: 10%;
}

.img_wid9 { grid-area: img_wid9; }
.img_wid10 { grid-area: img_wid10; }
.img_wid11 { grid-area: img_wid11; }
.img_wid12 { grid-area: img_wid12; }
	
	
.image_width_4 {  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 49% 49%;
  gap: 4% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid13 img_wid14"
    "img_wid15 img_wid16";
 margin-bottom: 10%;
}

.img_wid13 { grid-area: img_wid13; }
.img_wid14 { grid-area: img_wid14; }
.img_wid15 { grid-area: img_wid15; }
.img_wid16 { grid-area: img_wid16; }	
			
	
	
.img_wid1 img{
    /*width: 350px;*/
    transition: 1.0s;
    transform: rotateY(0deg );
}
.img_wid1:hover img {
    transform: rotateY( 360deg );
}
	
	
/*================================
ギフト検索タグ
=================================*/

.tab-title {
    font-size: 22px;
    margin-bottom: 5%;
	line-height: 1.0;
	letter-spacing: 0.08em;
	/*color: #6f2222;*/
}
	
.tab-title span
	{
	font-family: "Inter", sans-serif;	
	}
	
.tag {
	width: 100%;
}
	
	
.tag_text {
	font-size: 20px;
	margin-bottom: 7%;
    padding-top: 10%;
}

.tag_text img {
	width: 9%;
}	
		
	
.list_btn {
        display: grid;
        grid-template-columns: 47% 47%;
        grid-template-rows: 42% 42%;
        gap: 15% 5%;
        grid-template-areas:
        "list_btn-1 list_btn-2"
        "list_btn-3 list_btn-4";
        max-width: 450px;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 4%;
        margin-left: 2%;
}

.list_btn-1 { grid-area: list_btn-1; }
.list_btn-2 { grid-area: list_btn-2; }
.list_btn-3 { grid-area: list_btn-3; }
.list_btn-4 { grid-area: list_btn-4; }
	
	
.list_btn-1,.list_btn-2,.list_btn-3,.list_btn-4 {
    max-width: 155px;
    text-align: center;
    line-height: 3.0;
    border-radius: 30px 30px 30px 30px;
    padding: 0 0.5em 0.5em 0.5em;
    border: 1px dashed #224e1f;
    color: #333333;
    background: #fff;
    font-weight: 500;
    font-size: 11px;
    }
	
.list_btn span{
	font-size: 10px;
	}		
	
	
.list_btn img {
    width: 13%;
    margin: 0 0 2% 7%;
}	
	
a.btn_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 75%;
    height: 40px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 14% auto 3% auto;	
	}
	
a.btn_03 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 75%;
    height: 40px;
    padding: 0 13% 0 19%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 14% auto -6% auto;	
	}	
	
.text {
    font-size: 14px;
    margin: 0 3% 5% 3%;		
}	
	
.title {
        font-size: 19px;
        margin: 18% 3% 2% 3%;
        font-weight: 700;
        width: 91%;
    }
	
.title_sub {
    font-weight: 700;
    margin-bottom: 1%;
    font-size: 16px;
	width: 85%;
    text-align: center;
    margin: 0 auto;
}	
	
.title_sub_2 {
    font-weight: 400;
    width: 85%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 6%;
    font-size: 13px;
	margin-top: 3%;
}

	
	
/*===================================
PICU UP
===================================*/
.pickup {
	width: 88%;
	margin: 0 auto;
	margin-top: 20%;

}

.p_title {
	font-size: 22px;
	text-align: left;
}	
	
	
.pickup_image {  display: grid;
  grid-template-columns: 40% 40% 40% 40%;
  grid-template-rows: 49% 49%;
  gap: 1% 2%;
  grid-auto-flow: row;
	
 overflow-x: auto;
	overflow-y: none;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;	
}

.picimg_01 { grid-area: 1 / 1 / 2 / 2; }
.picimg_02 { grid-area: 1 / 2 / 2 / 3; }
.picimg_03 { grid-area: 1 / 3 / 2 / 4; }
.picimg_04 { grid-area: 1 / 4 / 2 / 5; }
.picimg_05 { grid-area: 2 / 1 / 3 / 2; }
.picimg_06 { grid-area: 2 / 2 / 3 / 3; }
.picimg_07 { grid-area: 2 / 3 / 3 / 4; }
.picimg_08 { grid-area: 2 / 4 / 3 / 5; }
	
	
.picimg_01,.picimg_02,.picimg_03,.picimg_04,.picimg_05,.picimg_06,.picimg_07,.picimg_08 {
  display: inline-block;
	width: 90%;
	margin: 10px;
	}
			
/*================================
その他の記事の記述
=================================*/
	
.other {
        display: grid;
        grid-template-columns: 49% 49%;
        grid-template-rows: 50% 50%;
        gap: 3% 3%;
        grid-auto-flow: row;
        grid-template-areas:
        "other-1 other-2"
        "other-3 other-4";
        text-align: center;
        margin: 0 auto;
        max-width: 86%;
	    margin-bottom: 35%
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }
	

	
.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 20% auto 1%;
	font-size: 15px;
}
	
.other_details {
font-size: 12px;
text-align: left;	
}
	
	}

/*===================================
商品横並びのコンテナー
===================================*/


.image_width {  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  grid-template-rows: 100%;
  gap: 12px 12px;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid1 img_wid2 img_wid3 img_wid4";
		max-width: 1100px;
	text-align: center;
	margin: 0 auto;	
	margin-bottom: 7%;
}

.img_wid1 { grid-area: img_wid1; }
.img_wid2 { grid-area: img_wid2; }
.img_wid3 { grid-area: img_wid3; }
.img_wid4 { grid-area: img_wid4; }



.image_width_2 {  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  grid-template-rows: 100%;
  gap: 12px 12px;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid5 img_wid6 img_wid7 img_wid8";
		max-width: 1100px;
	text-align: center;
	margin: 0 auto;	
	margin-bottom: 7%;
}

.img_wid5 { grid-area: img_wid5; }
.img_wid6 { grid-area: img_wid6; }
.img_wid7 { grid-area: img_wid7; }
.img_wid8 { grid-area: img_wid8; }



.image_width_3 {  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  grid-template-rows: 100%;
  gap: 12px 12px;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid9 img_wid10 img_wid11 img_wid12";
		max-width: 1100px;
	text-align: center;
	margin: 0 auto;	
	margin-bottom: 7%;
}

.img_wid9 { grid-area: img_wid9; }
.img_wid10 { grid-area: img_wid10; }
.img_wid11 { grid-area: img_wid11; }
.img_wid12 { grid-area: img_wid12; }



.image_width_4 {  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  grid-template-rows: 100%;
  gap: 12px 12px;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid13 img_wid14 img_wid15 img_wid16";
		max-width: 1100px;
	text-align: center;
	margin: 0 auto;	
	margin-bottom: 7%;
}

.img_wid13 { grid-area: img_wid13; }
.img_wid14 { grid-area: img_wid14; }
.img_wid15 { grid-area: img_wid15; }
.img_wid15 { grid-area: img_wid16; }


.image_width_5 {  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  grid-template-rows: 100%;
  gap: 12px 12px;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid17 img_wid18 img_wid19 img_wid20";
		max-width: 1100px;
	text-align: center;
	margin: 0 auto;	
	margin-bottom: 7%;
}

.img_wid17 { grid-area: img_wid17; }
.img_wid18 { grid-area: img_wid18; }
.img_wid19 { grid-area: img_wid19; }
.img_wid20 { grid-area: img_wid20; }


.image_width_6 {  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  grid-template-rows: 100%;
  gap: 12px 12px;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid21 img_wid22 img_wid23 img_wid24";
		max-width: 1100px;
	text-align: center;
	margin: 0 auto;	
	margin-bottom: 7%;
}

.img_wid21 { grid-area: img_wid21; }
.img_wid22 { grid-area: img_wid22; }
.img_wid23 { grid-area: img_wid23; }
.img_wid24 { grid-area: img_wid24; }




/*===================================
商品の小画像＆詳細
===================================*/
.details {
	font-size: 14px;
	text-align: center;
}

.details span {
	color: #8a5f62;
	/*font-weight: 700;*/
}

.buy {
	color: #fff;
        -webkit-box-pack: center;
        align-items: center;
    height: 100%;
    font-weight: 700;
    line-height: 2;
    letter-spacing: .06em;
    border: 1px solid #fff;
    border-radius: 100px;
	padding: 0px 12px;
}

.buy:hover {
	border: 1px solid #fff;
	background: #fff;
    color: #6f2222;

}



/*===================================
PICU UP
===================================*/
.pickup {
	width: 88%;
	margin: 0 auto;

}

.p_title {
	font-size: 30px;
	text-align: left;
}



.pickup_image {  
	display: grid;
  grid-template-columns: 20.5% 20.5% 20.5% 20.5%;
  grid-template-rows: 51% 51%;
  gap: 1% 6%;
  grid-auto-flow: row;
}


.picimg_01 { grid-area: 1 / 1 / 2 / 2; }
.picimg_02 { grid-area: 1 / 2 / 2 / 3; }
.picimg_03 { grid-area: 1 / 3 / 2 / 4; }
.picimg_04 { grid-area: 1 / 4 / 2 / 5; }
.picimg_05 { grid-area: 2 / 1 / 3 / 2; }
.picimg_06 { grid-area: 2 / 2 / 3 / 3; }
.picimg_07 { grid-area: 2 / 3 / 3 / 4; }
.picimg_08 { grid-area: 2 / 4 / 3 / 5; }



/*===================================
ボタン系
===================================*/

/*黒細ライン＆ホバーグレー*/
a.btn_01,a.btn_03 {
display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 450px;
    height: 55px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
     margin: 4% auto 4% auto;
}

a.btn_01:hover,a.btn_03:hover {
  background: #9b9b9d;
  color: #fff;
	    border: 1px solid #9b9b9d;

}

a.btn_01:before,a.btn_03:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_01:hover:before,a.btn_03:hover:before {
  border-color: transparent transparent transparent #fff;
}




/*黒細ライン＆ホバーも黒*/
a.btn_02 {
display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 400px;
    height: 55px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
        margin: 2% auto 4% auto;
}

a.btn_02:hover {
  background: #000;
  color: #fff;
}

a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}



/*================================
その他の記事の記述
=================================*/

.other {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    /* grid-template-rows: 200px; */
    gap: 2% 2.7%;
    grid-auto-flow: row;
    grid-template-areas: "other-1 other-2 other-3 other-4";
    text-align: center;
    margin: 0 auto;
    max-width: 85%;
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }

.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 10% auto 1%;
	font-size: 20px;
}


.other_details {
font-size: 15px;
text-align-last: left;	
}


/*================================
tablet
=================================*/
@media(max-width: 834px){
#Area .imageArea ul.row-fluid {
    width: 100%;
    text-align: center;
    margin: 5% auto 0;
  }	
	
.top {
    line-height: 2.0;
    font-size: 16px;
    font-weight: 400;
    margin: 5% auto;
}	
	
.top_text {
	font-size: 25px;
	line-height: 2.5;
	margin-top: 9%;
	color: #fff;
}
	
	
/* ===================================
   youtube埋め込み
==================================== */
.youtube {
   width: 80%;
   aspect-ratio: 16 / 9;
   text-align: center;
   margin: 0 auto;
}
	
.youtube iframe {
  width: 100%;
  height: 100%;
}
	
	
	
/*===================================
リストボタン
===================================*/
.list_btn {
    display: grid;
    grid-template-columns: 24% 24% 24% 24%;
    grid-template-rows: 100%;
    gap: 3% 1%;
    grid-auto-flow: row;
    grid-template-areas: "top_btn-1 top_btn-2 top_btn-3 top_btn-4";
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
	margin-bottom: 2%;
    /*background-color: aqua;*/	
}
	
	.list_btn-1, .list_btn-2, .list_btn-3, .list_btn-4 {
	max-width: 155px;
    text-align: center;
    /* margin-bottom: 10px; */
    line-height: 2.5;
    border-radius: 30px 30px 30px 30px;
    padding: 0.5em;
	color: #fff;
	background: #6f2222;
		font-size: 11px;
	}

/*===================================
テキスト
===================================*/
	
.title {
    font-size: 16px;
    margin: 5% auto 1%;
    font-weight: 700;
}
	
.title_sub {
    font-weight: 700;
    margin-bottom: 1%;
    font-size: 16px;
}	
	
.title_sub_2 {
    font-weight: 300;
    width: 70%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 6%;
    font-size: 13px;
}
	
/*===================================
商品横並びのコンテナー
===================================*/	
/*.image_width {
    max-width: 688px;
    text-align: center;
	margin: 0 auto;	}
	*/
	

/*===================================
商品の小画像＆詳細
===================================*/
.ex_1, .ex_2, .ex_3, .ex_4 {
    font-size: 9px;
}	
	
.image_detail {
    display: grid;
    grid-template-columns: 37px 114px 37px 114px 37px 114px 37px 114px;
    grid-template-rows: 45px;
    gap: 12px 12px;
    grid-auto-flow: row;
    grid-template-areas: "img_small_1 ex_1 img_small_2 ex_2 img_small_3 ex_3 img_small_4 ex_4";
    max-width: 688px;
    text-align: center;
	margin: 2% auto 1% auto;
	}
	
/*===================================
ボタン系
===================================*/
a.btn_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 330px;
    height: 45px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 5% auto 3% auto;	
	}
	
a.btn_03 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 330px;
    height: 45px;
    padding: 0 13% 0 15%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 5% auto 3% auto;	
	}	

/*================================
その他の記事の記述
=================================*/

.other {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 2% 2.7%;
    grid-auto-flow: row;
    grid-template-areas: "other-1 other-2 other-3 other-4";
    text-align: center;
    margin: 0 auto;
    max-width: 85%;
	
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }


.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 10% auto 1%;
	font-size: 17px;
}

	
	
	
	}
	
/*===================================
SMP
====================================*/

@media (max-width: 480px) {
#Area .imageArea ul.row-fluid {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
	
	
.spece_bottom {
 margin-bottom:40%;
}		
	
	
/* ===================================
   youtube埋め込み
==================================== */
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
	margin-top: 5%;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
	
.youtube_text {
	font-size: 14px;
	width: 80%;
    text-align: center;
    margin: 0 auto;
}
	
		
	
	
	
.border_1 {
	border-top: 1px solid #d1cbc2;
	width: 80%;
	margin: 20% auto 10% auto;
}	
	
	
.image_width {  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 49% 49%;
  gap: 4% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid1 img_wid2"
    "img_wid3 img_wid4";
 margin-bottom: 10%;
}

.img_wid1 { grid-area: img_wid1; }
.img_wid2 { grid-area: img_wid2; }
.img_wid3 { grid-area: img_wid3; }
.img_wid4 { grid-area: img_wid4; }
	
	
	
.image_width_2 {  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 49% 49%;
  gap: 4% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid5 img_wid6"
    "img_wid7 img_wid8";
 margin-bottom: 10%;
}

.img_wid5 { grid-area: img_wid5; }
.img_wid6 { grid-area: img_wid6; }
.img_wid7 { grid-area: img_wid7; }
.img_wid8 { grid-area: img_wid8; }
		

	
.image_width_3 {  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 49% 49%;
  gap: 4% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid9 img_wid10"
    "img_wid11 img_wid12";
 margin-bottom: 10%;
}

.img_wid9 { grid-area: img_wid9; }
.img_wid10 { grid-area: img_wid10; }
.img_wid11 { grid-area: img_wid11; }
.img_wid12 { grid-area: img_wid12; }
	
	
.image_width_4 {  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 49% 49%;
  gap: 4% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid13 img_wid14"
    "img_wid15 img_wid16";
 margin-bottom: 10%;
}

.img_wid13 { grid-area: img_wid13; }
.img_wid14 { grid-area: img_wid14; }
.img_wid15 { grid-area: img_wid15; }
.img_wid16 { grid-area: img_wid16; }	
			
	
.image_width_5 {  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 49% 49%;
  gap: 4% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid17 img_wid18"
    "img_wid19 img_wid20";
 margin-bottom: 10%;
}

.img_wid17 { grid-area: img_wid17; }
.img_wid18 { grid-area: img_wid18; }
.img_wid19 { grid-area: img_wid19; }
.img_wid20 { grid-area: img_wid20; }	
	
	
.image_width_6 {  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 49% 49%;
  gap: 4% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid21 img_wid22"
    "img_wid23 img_wid24";
 margin-bottom: 10%;
}

.img_wid21 { grid-area: img_wid21; }
.img_wid22 { grid-area: img_wid22; }
.img_wid23 { grid-area: img_wid23; }
.img_wid24 { grid-area: img_wid24; }	
	
	
/*	
.img_wid1 img{
    transition: 1.0s;
    transform: rotateY(0deg );
}
.img_wid1:hover img {
    transform: rotateY( 360deg );
}
*/	
	
/***************************************/	
		
	
.list_btn {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-template-rows: 50% 50%;
    gap: 30% 2%;
    grid-template-areas: "list_btn-1 list_btn-2"
    "list_btn-3 list_btn-4";
    max-width: 323px;
    margin: 0 auto;
	text-align: center;
	margin-bottom: 20%;
}

.list_btn-1 { grid-area: list_btn-1; }
.list_btn-2 { grid-area: list_btn-2; }
.list_btn-3 { grid-area: list_btn-3; }
.list_btn-4 { grid-area: list_btn-4; }
	
	
.list_btn-1,.list_btn-2,.list_btn-3,.list_btn-4 {
	max-width: 155px;
    text-align: center;
    line-height: 2.5;
    border-radius: 30px 30px 30px 30px;
    padding: 0.5em;
	color: #fff;
    background: #6f2222;
	font-size: 12px;
	font-weight: 800;
}
	
	
.list_btn span{
	font-size: 10px;
	}		
	
	
.list_btn img {
    width: 13%;
    margin: 0 0 2% 7%;
}	
	
a.btn_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 75%;
    height: 40px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 14% auto 3% auto;	
	}
	
a.btn_03 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 75%;
    height: 40px;
    padding: 0 13% 0 19%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 14% auto -6% auto;	
	}	
	
	
.text {
    font-size: 14px;
    margin: 0 3% 5% 3%;		
}	
	
	
.title {
        font-size: 19px;
        margin: 18% 3% 2% 3%;
        font-weight: 700;
        width: 91%;
    }
	
.title_sub {
    font-weight: 700;
    margin-bottom: 1%;
    font-size: 16px;
	width: 85%;
    text-align: center;
    margin: 0 auto;
	
}	
	
.title_sub_2 {
    font-weight: 300;
    width: 85%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 6%;
    font-size: 13px;
	margin-top: 3%;
}
	
	
.top_text {
	width: 80%;
    font-size: 20px;
    line-height: 1.5;
    margin: 18% auto 13%;
	color: #fff;
	}	
	
/*================================
商品詳細
=================================*/

.details {
	font-size: 13px;
	text-align: center;
}
	
.buy {
	color: #fff;
        -webkit-box-pack: center;
        align-items: center;
    height: 100%;
    font-weight: 700;
    line-height: 2;
    letter-spacing: .06em;
    border: 1px solid #fff;
    border-radius: 100px;
	padding: 2px 20px;
}
	
	
	
/*===================================
PICU UP
===================================*/
.pickup {
	width: 88%;
	margin: 0 auto;
	margin-top: 20%;

}

.p_title {
	font-size: 22px;
	text-align: left;
}	
	
	
.pickup_image {  display: grid;
  grid-template-columns: 40% 40% 40% 40%;
  grid-template-rows: 49% 49%;
  gap: 1% 2%;
  grid-auto-flow: row;
	
 overflow-x: auto;
	overflow-y: none;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;	
}

.picimg_01 { grid-area: 1 / 1 / 2 / 2; }
.picimg_02 { grid-area: 1 / 2 / 2 / 3; }
.picimg_03 { grid-area: 1 / 3 / 2 / 4; }
.picimg_04 { grid-area: 1 / 4 / 2 / 5; }
.picimg_05 { grid-area: 2 / 1 / 3 / 2; }
.picimg_06 { grid-area: 2 / 2 / 3 / 3; }
.picimg_07 { grid-area: 2 / 3 / 3 / 4; }
.picimg_08 { grid-area: 2 / 4 / 3 / 5; }
	
	
.picimg_01,.picimg_02,.picimg_03,.picimg_04,.picimg_05,.picimg_06,.picimg_07,.picimg_08 {
  display: inline-block;
	width: 90%;
	margin: 10px;
	}
			
/*================================
その他の記事の記述
=================================*/
	
.other {
        display: grid;
        grid-template-columns: 49% 49%;
        grid-template-rows: 50% 50%;
        gap: 3% 3%;
        grid-auto-flow: row;
        grid-template-areas:
        "other-1 other-2"
        "other-3 other-4";
        text-align: center;
        margin: 0 auto;
        max-width: 86%;
	    margin-bottom: 35%
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }
	

	
.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 20% auto 1%;
	font-size: 15px;
}
	
.other_details {
font-size: 12px;
text-align: left;	
}
	
	}



