@charset "utf-8";
/* CSS Document */

/*googlefonts*/

/*Adobefonts*/
@import url("https://use.typekit.net/kgv0mfa.css");
/*
Trajan Pro 3 Regular
font-family: "trajan-pro-3", serif;
font-weight: 400;
font-style: normal;
*/

/*================================
目次
================================

■FSの設定打消し
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.当選内容

5.アイテム
6.プロフィール
7.フッター

*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■FSの設定打消し
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fs-l-main *{
	min-width: initial;
    min-width: auto;
    min-height: initial;
    min-height: auto;
}

/*メインエリアの横幅制限解除ここから*/
.fs-l-pageMain {
	max-width: 100%;
}

.fs-l-main{
	max-width: 100%;
	padding:0;
	margin:0;
}
/*メインエリアの横幅制限解除ここまで*/


.fs-c-breadcrumb{
	padding-top:80px;
}
@media screen and (max-width:768px) {
	.fs-c-breadcrumb{
		padding-top:80px;
	}
}

/* 「現在登録されている商品はありません。」を非表示 */
.fs-c-noResultMessage { display: none }

/* 文字サイズ調整 */
.fs-l-main{
	font-size:1.1em;
}

/*共通フッターのマージン調整*/
.footer-sp{
	margin-top: 0 !important;
}

/*自動生成商品エリアのマージンゼロ/余白が発生するため*/
.fs-c-productList{
	margin:0;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*例：brタグにclassを追加
PCのみで改行→pc <br class="pc">
SPのみで改行→sp <br class="sp">
※両方共通の改行の場合は<br>のみでOK

他、PCとSPで表示を分けたい部分にも使用可能
*/

@media screen and (min-width: 768px){
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 768px){
  .pc { display:none; }
  .sp { display:block; }
}



/*================================
1.全体
================================*/

body{
/*背景色*/
	background-color: #fff;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	line-height: 1.8;
	letter-spacing: 0.05em;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 400;
	color:#000;
	font-size:14px;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#000;
}
.js-main a:hover,a:hover img{
	opacity:0.6;
    -moz-opacity:0.6;
    filter:alpha(opacity = 60);
}


/*widthなどの適応範囲をborder基準に変更*/
.js-main *, .js-main *:before, .js-main *:after{
	-webkit-box-sizing: border-box; /* Webkit */
	-moz-box-sizing: border-box; /* Firefox */
	box-sizing: border-box; /* 標準 */
}


/*SP版画像サイズ制御*/
@media screen and (max-width:768px) {
    /*　画面サイズが768px以下の時はここを読み込む　*/
	.js-main img{
	width:100%;
	height: auto;
	}
}

/*PC980px、SP100%*/
.js-container{
	width:100%;
	max-width:980px;
	margin:auto;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
2.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.button019 a {
	background: #7e2221;
	border-radius: 100px;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	max-width: 280px;
	padding: 10px 25px;
	color:#e2cf8f;
	transition: 0.3s ease-in-out;
	/*font-weight: 500;*/
	border:solid 1px #7e2221;
}
.button019 a:after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 1rem;
	font-size: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: right 0.3s;
	width: 6px;
	height: 6px;
	border-top: solid 1px currentColor;
	border-right: solid 1px currentColor;
	transform: translateY(-50%) rotate(45deg);
}
.button019 a:hover {
	background: #7e2221;
	color: #e2cf8f;
	opacity: 0.8;
}
.button019 a:hover:after {
	right: 1.4rem;
}

/*ボタン色変更*/
.button019.btncolor02 a{
	background: #d9cda4;
	color:#7e2221;
}



/*共通padding設定*/
.main-padding{
	padding: 100px 0;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding: 3em 0;
	}
}

/*共通margin設定*/
.main-margin{
	margin: 100px auto;
}
@media screen and (max-width: 768px){
	.main-margin{
		margin: 6em auto;
	}
}


/*見出し*/
.main-title{
	font-size:1.5em;
	letter-spacing: 0.1em;
	line-height: 1.5;
}
.main-title span {
	/*color: #b52b2b;*/
	font-weight: 900;
	font-size: 1.3em;
}
.main-subtitle{
	margin-top:1em;
	margin-bottom:50px;
	font-size:0.9em;
	letter-spacing: 0.23em;
}
.main-subtitle_notice{
	margin:3em auto;
	padding:1em;
	width:90%;
	max-width:500px;
	border:1px solid #666;
	border-radius: 7px;
}
.main-subtitle_notice span{
	color:tomato;
}



/*フォント指定*/
/*Trajan Pro 3 Regular*/
.font01{
	font-family: "trajan-pro-3", serif;
	font-weight: 400;
	font-style: normal;
}

/*色指定*/
/*背景色*/
.bgcolor01{
	background-color: #7e2221;
}
.bgcolor02{
	background-color: #f4f4f4;
}

/*フォント色*/
.fontcolor01{
	color: #df92c0;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインビジュアル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-visual{
	margin-bottom:0;
	width:100%;
	/*background-color: #b52b2b;*/
	line-height: 0;
}
.main-visual img{
	width:100%;
}

h1{
	margin:0;
	line-height: 0;
}


/*～～～期間終了～～～*/
.main-notice{
	/*padding-top:116px;
	padding-bottom:116px;*/
	background-color: #E8E8E8;
}
.main-notice .inbox{
	display: inline-block;
	background-color: #7e2221;
	color:#fff;
	padding:20px 30px ;
}
.notice-head{
	font-size:1.5em;
	letter-spacing: 0.23em;
	line-height: 1.5;

	border-bottom:1px solid #fff;
	padding-bottom:0.35em;
}
.notice-text{
	padding-top:1.25em;
}
@media screen and (max-width: 768px){
	.main-notice{
		padding-bottom:5em;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.main-intro{
	color:#d9cda4;
}

.main-intro_head img{
	width:150px;
	max-width:25%;
	margin-bottom:35px;
}

.main-intro_text01{
	margin-bottom:35px;
}

.main-intro_text02{
	margin: 35px auto;
	padding:20px;
	
	width:85%;
	max-width:300px;

	border: 2px solid #d9cda4;
	border-radius: 15px;
}
.main-intro_text02_01{
	margin-bottom:0.5em;
	font-size:1.25em;
}
.main-intro_text02_02{
	font-size:1.5em;
	font-weight: 700;
	line-height:1.4;
	margin-bottom:0.5em;
}
.main-intro_text02_03{
	font-size:0.8em;
}

.main-intro_text03{
	margin: 35px auto;
}
.main-intro_text03_01{
	margin-top: 0.8em;
	font-size:0.8em;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.メインコンテンツ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-contents{
	color:#9a8d5f;
}

.contents_wrapper{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
	align-items: flex-start;
	
	width:90%;
	max-width:550px;
	
	margin:auto;
}
.contents_wrapper .contents_item {
	width: calc( ( 100% - 40px ) / 2 );
	margin-right: 40px;
	margin-bottom:60px;
}
.contents_wrapper .contents_item:nth-child(2n) {
	margin-right: 0;
}
@media screen and (max-width: 768px){
	.contents_wrapper .contents_item {
		width: calc( ( 100% - 5% ) / 2 );
		margin-right: 5%;
		margin-bottom:2em;
	}
}



.contents_item{
	border: 2px solid #9a8d5f;
	border-radius: 0 30px 0 30px;
	
	position: relative;
}
.contents_item img{
	width:100%;
	border-radius: 0 30px 0 0;
}
.contents_textbox01{
	padding:5%;
}
.contents_text01{
	font-size:0.8em;
}
.contents_text02{
	font-size:1em;
	font-weight:700;
	line-height:1.5;
}
.contents_text03{
	margin-top:0.2em;
	font-size:0.8em;
}
.contents_text04{
	border-top: dotted 1px ;
	margin-top:0.3em;
	padding-top:0.5em;
	font-weight: 700;
}
@media screen and (max-width: 768px){
	.contents_item{
		border-radius: 0 4vw 0 4vw;
	}
	.contents_item img{
		border-radius: 0 4vw 0 0;
	}
	.contents_text01{
		font-size:2vw;
	}
	.contents_text02{
		font-size:3vw;
	}
	.contents_text03{
		font-size:2.5vw;
	}
}


.contents_icon{
	position: absolute;
	top:-15px;
	left:-15px;
	
	width:55px;
	height:55px;
	border-radius:50%;
	background:#324a3a;
	/*display:flexで中央配置*/
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
		
	font-size:1.5em;
	color:#d9cda4;
}
@media screen and (max-width: 768px){
	.contents_icon{
		top:-15px;
		left:-10px;
		width:10vw;
		height:10vw;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.詳細
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.detail{
	width:100%;
	margin:0;
}


.detail_contents{
	margin:50px auto 0;
	padding:40px 40px 1px;
	width:500px;
	background-color: #fff;
	color:#000;
	text-align: justify;
}
@media screen and (max-width: 768px){
	.detail_contents{
		padding: 2em 5% 1px;
		width:90%;
	}
}
.contents-title{
	color:#fff;
	background-color: #393939;
	padding: 0.5em 1em 0.3em;
	margin-bottom:1em;
	font-weight: bold;
}
.contents-text{
	padding: 0.5em;
	margin-bottom:3em;
}

.contents-text .heading{
	font-weight: bold;
	font-size:1.2em;
	line-height:1.3;

	margin-top:1em;
	margin-bottom:0.5em;

	padding-bottom:0.2em;
	border-bottom:solid 1px #000;
}

.contents-text .heading_icon{
	margin-bottom:0.3em;
}
.contents-text .heading_icon span{
	display: inline-block;
	color:#fff;
	background-color: #000;
	font-size:0.6em;
	font-weight: normal;
	padding:0.3em 0.8em 0.1em;

}

/*SP*/
@media screen and (max-width: 768px){

}


/*注意書き*/
.contents-text ul{
	    padding-left: 30px;
}
.contents-text li{
	    margin-top:0.8em;
}
@media screen and (max-width: 768px){
	.contents-text ul{
	    padding-left: 5%;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-footer{
	
}
.contents-footer img{
	width:100%;
}

.footer-brandlogo{
	width:70%;
	max-width: 300px;
}
.footer-brandlogo_img{
	padding-bottom:1.5em;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.フェードインエフェクト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fadein-top {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.delighters：スクロールアニメーション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*animation-ふわっと出現*/
/* 基本のスタイル */
.animation.delighter {
	  transition: all .8s ease-out;
      transform: translateX(0%);
      opacity: 0;
   }
/* スタート時のスタイル */
   .animation.delighter.started {
      transform:none;
	  opacity:1;
   }
/* エンド時のスタイル */
   .animation.delighter.started.ended {
      
   }


/*animation_swing-下からふわっと出現*/
/* 基本のスタイル */
.animation_swing.delighter {
  transition: all 1.25s ease-out;
  transform: translateY(25%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation_swing.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation_swing.delighter.started.ended {

}


/*animation_blur-じわっと出現*/
/* 基本のスタイル */
.animation_blur.delighter {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* スタート時のスタイル */
.animation_blur.delighter.started {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}
/* エンド時のスタイル */
.animation_blur.delighter.started.ended {

}
/* アニメーション設定 */
@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
      opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}