@charset "utf-8";
/* home.css */

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* KV　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#kv {
	height: 100vh;
	width: 100%;
	background-image: url(../images/home_kv.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
#kv .inner {
	position: relative;
	height: 100vh;
}

/* テキスト */
#kv_text {
	position: absolute;
	width: 550px;
	right: 0px;
	bottom: 170px;
}
#kv_text h2 {
	font-size: 50px;
	line-height: 1.2em;
	margin-bottom: 40px;
}

/* スクロール */
#kv_scroll {
	text-align: center;
	font-size: 18px;
	position: absolute;
	right: 200px;
	bottom: -120px;
}
.c-scrolldown {
	width: 1px;
	height: 240px;
	margin: 0 auto;
	overflow: hidden;
}
.c-scrolldown .c-line {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 50%);
  background-position: 0 -240px;
  background-size: 100% 200%;
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrolldown {
  0% {
    background-position: 0 -240px;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 240px;
  }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 羽二重くるみについて　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_about {
	padding-top: 190px;
	padding-bottom: 190px;
}

/* 写真 */
#about_pic {
	width: 50%;
	height: 700px;
	background-image: url(../images/home_about_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

/* テキスト */
#about_text {
	width: 600px;
	height: 700px;
	position: relative;
	display: flex;
    writing-mode: vertical-rl;
    align-items: center;
}
#about_text h3 {
	font-size: 30px;
	position: absolute;
	top: 0px;
	right: 0px;
}
#about_text h3 span {
	font-size: 27px;
	display: block;
	padding-left: 10px;
}
#about_text h4 {
	font-size: 24px;
	position: absolute;
	top: 0px;
	right: 110px;
}
#about_text p {
	position: absolute;
	right: 260px;
	top: 0px;
	font-size: 20px;
	line-height: 1.8em;
}

/* ボタン位置 */
#about_more {
	position: absolute;
	right: 0px;
	bottom: 20px;
	writing-mode: horizontal-tb;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* more ボタン　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.bt_more {	
}
.bt_more a {
	color: #FFFFFF;
	text-decoration: none;
}
.bt_more img {
	width: 70px;
	height: auto;
	vertical-align: middle;
	margin-left: 20px;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* つなぎスクロールバー　　　　　　　　                                         */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.scroll_box {
	width: 1px;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	left: 0px;
	right: 0px;
	top: -120px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 商品ギャラリー　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_gallery {
	padding-top: 150px;
	padding-bottom: 140px;
	background-image: url(../images/home_gallery_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
}
#area_gallery h3 {
	text-align: center;
	font-size: 27px;
	margin-bottom: 60px;
}
#area_gallery h3 span {
	font-size: 15px;
	display: block;
}
.item_list {
	width: 360px;
	margin-right: 60px;
	margin-bottom: 65px;
	float: left;
	position: relative;
}
.item_list:nth-child(3n) {
	margin-right: 0px;
}

/* サムネイル */
.item_thumb {
	margin-bottom: 12px;
	overflow: hidden;
	position: relative;
	z-index: 9;
}
.item_thumb img {
	width: 100%;
	height: auto;
	transition-duration: 0.3s;
}
.item_thumb img:hover {
	transform: scale(1.1);
    transition-duration: 0.3s;
}

/* リボン */
.item_ribbon {
	width: 45px;
	height: 150px;
	background-color: #FFFFFF;
	color: #333333;
	display: flex;
	writing-mode: vertical-rl;
	align-items: center;
	position: absolute;
	top: -7px;
	right: 15px;
	text-align: center;
	justify-content: center;
	letter-spacing: 5px;
	z-index: 10;
}

/* ボタン */
.item_list .bt_more {
	text-align: center;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* お知らせ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_news {
	padding-top: 270px;
	padding-bottom: 220px;
	position: relative;
}
#area_news .inner {
	position: relative;
}
#news_scroll {
	text-align: center;
	position: absolute;
	top: -270px;
	left: 35px;
	width: 3px;
}
#area_news h3 {
	font-size: 27px;
	margin-bottom: 30px;
}
#area_news h3 span {
	font-size: 15px;
	display: block;
}
#news_roll {
	position: absolute;
	left: 40px;
	top: -270px;
}


/* リスト */
.news_list {
	width: 261px;
	margin-right: 52px;
	margin-bottom: 80px;
	float: left;
}
.news_list:nth-child(4n) {
	margin-right: 0px;
}

/* サムネイル */
.news_thumb {
	margin-bottom: 25px;
	height: 261px;
	background-size: cover;
	background-position: center center;
}

/* テキストエリア */
.news_text {
	line-height: 1.75em;
	font-size: 20px;
}

/* 日付 */
.news_date {
	font-size: 15px;
	margin-bottom: 12px;
}
.news_date a {
	color: #FFFFFF;
	text-decoration: none;
}
.bl-hover {
	opacity: 0.6;
	webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 店舗情報　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_info {
	padding-top: 160px;
	position: relative;
	padding-bottom: 300px;
}
#area_info h3 {
	text-align: center;
	font-size: 27px;
	margin-bottom: 60px;
}
#area_info h3 span {
	font-size: 15px;
	display: block;
}

/* 写真エリア */
#info_pic {
	width: 50%;
	height: 986px;
	background-image: url(../images/home_info_bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

/* テキストエリア */
#info_text {
	width: 600px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 120px;
}
.shop_list {
	margin-top: 90px;
}
.shop_list h4 {
	margin-bottom: 10px;
	font-size: 20px;
	padding-bottom: 10px;
}
.shop_list h4 span {
	border-bottom: 1px solid #FFFFFF;
	padding-bottom: 10px;
}
.shop_list li {
	font-size: 20px;
	line-height: 2em;
}

.shop_list li a {
	text-decoration: none;
	color: #FFFFFF;
}

/* ボタン */
.shop_list .bt_more {
	margin-left: 160px;
	font-size: 20px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* メッセージ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_message {
	padding-top: 150px;
	padding-bottom: 260px;
	background-image: url(../images/home_message_bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#area_message .inner {
	position: relative;
}
#area_message .scroll_box {
	top: -270px !important;
	left: 40px !important;
	right: auto;
}
#area_message h3 {
	font-size: 27px;
	margin-bottom: 30px;
}
#area_message h3 span {
	font-size: 15px;
	display: block;
}

/* flex枠 */
#msg_tbl {
	display: flex;
}

/* テキスト */
#msg_text {
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: bottom;
	order: 0;
}
#msg_text h4 {
	font-size: 30px;
	line-height: 1.6em;
	margin-bottom: 40px;
}
#msg_text p {
	font-size: 20px;
	line-height: 35px;
	width: 561px;
}

#msg_text .bt_more {
	margin-top: 30px;
	text-align: right;
}

/* 代表写真 */
#msg_pic {
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: bottom;
	padding-left: 80px;
	order: 1;
}
#msg_pic img {
	width: 395px;
	height: auto;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* オンラインショップ・お問い合わせ                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_link {
	padding-top: 360px;
	padding-bottom: 360px;
	position: relative;
}
#area_link .box_fl_left {
	text-align: center;
	width: 50%;
}

#area_link .box_fl_right {
	width: 50%;
	text-align: center;
}

/* サムネイル */
.link_thumb {
	width: 430px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	overflow: hidden;
	position: relative;
}
.link_thumb img {
	width: 100%;
	height: auto;
	transition-duration: 0.3s;
}
.link_thumb img:hover {
	transform: scale(1.1);
    transition-duration: 0.3s;
}

/* h3 */
#area_link h3 {
	text-align: center;
	font-size: 27px;
}
#area_link h3 span {
	font-size: 15px;
	display: block;
	width: 180px;
	margin-left: auto;
	margin-right: auto;
	border-top: 1px solid #FFFFFF;
	margin-top: 10px;
	padding-top: 5px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* SNSアイコン　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_sns {
	padding-top: 220px;
	padding-bottom: 220px;
	position: relative;
}
#area_sns ul {
	text-align: center;
}
#area_sns li {
	display: inline-block;
	margin-left: 40px;
	margin-right: 40px;
}
#area_sns li img {
	width: 60px;
	height: auto;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* カレンダー　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_calender {
	padding-top: 150px;
	position: relative;
}
#area_calender .inner {
	width: 1120px;
}

#area_calender h3 {
	text-align: center;
	font-size: 27px;
	margin-bottom: 60px;
}
#area_calender h3 span {
	font-size: 15px;
	display: block;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* モーダルウィンドウ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.modal {
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.70);
	color: #000000;
}
.modal-content {
	background-color: #FFFFFF;
	margin-top: 15%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 32px;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 20px;
	border: 1px solid #888888;
	width: 40%;
	position: relative;
}
.modal h3 {
	color: #800000;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.6em;
	text-align: center;
	margin-bottom: 20px;
}
.modal p {
	margin-bottom: 12px;
}
.modal a {
	color: #0073BE;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.modal a:hover {
	color: #0FA1FF;
}

/* -- ボタン ----------------------------------------------- */
.close-button {
	color: #aaaaaa;
	float: right;
	font-size: 34px;
	font-weight: bold;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
	top: -15px;
	right: -10px;
}
.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}













/* ↓↓↓↓↓↓↓↓↓↓ ---以下スマホ--- ↓↓↓↓↓↓↓↓↓↓ */


@media screen and (max-width: 768px) {
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* モーダル　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.modal-content {
	width: 90%;  /* モーダルウィンドウの横幅 */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 14px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* KV　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* テキスト */
#kv_text {
	position: relative;
	width: 100%;
	height: calc(100vh - 120px);
	writing-mode: vertical-rl;
	bottom: auto;
	right: auto;
	display: flex;
	justify-content: center;/*横中央*/
	align-items: center;/*縦中央*/
}
#kv_text h2 {
	font-size: 40px;
	background-image: url(../images/home_sp_h2_bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	padding-top: 50px;
	padding-right: 50px;
	padding-bottom: 50px;
	padding-left: 50px;
}
#kv_text h2 span {
	font-size: 30px;
}

#kv_text p {
	font-size: 15px;
	line-height: 1.6em;
	position: absolute;
	bottom: 0px;
	text-align: center;
	left: 0px;
	right: 0px;
	writing-mode: horizontal-tb;
	padding-left: 30px;
	padding-right: 30px;
}
	
/* スクロール */
#kv_scroll {
	font-size: 15px;
	position: absolute;
	right: 0px;
	bottom: -45px;
	left: 0px;
	margin-left: auto;
	margin-right: auto;
}
.c-scrolldown {
	height: 90px;
}
.c-scrolldown .c-line {
  background-position: 0 -90px;
}

@keyframes scrolldown {
  0% {
    background-position: 0 -90px;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 90px;
  }
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 羽二重くるみについて　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_about {
	padding-top: 80px;
	padding-bottom: 90px;
	background-image: url(../images/home_about_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

/* 写真 */
#about_pic {
	display: none;
}

/* テキスト */
#about_text {
	width: 100%;
	height: auto;
}
#about_text h3 {
	top: 0px;
	right: 0px;
	left: 0px;
	margin-left: auto;
	margin-right: auto;
	width: 55px;
}
#about_text h4 {
	position: static;
	writing-mode: horizontal-tb !important;
	margin-top: 350px;
	text-align: center;
	margin-bottom: 30px;
	line-height: 1.8em;
}
#about_text p {
	position: static;
	writing-mode: horizontal-tb !important;
	text-align: center;
	margin-bottom: 30px;
	line-height: 1.8em;
	font-size: 16px;
}

/* ボタン位置 */
#about_more {
	position: static;
	text-align: center;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* つなぎスクロールバー　　　　　　　　                                         */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.scroll_box {
	top: -45px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 商品ギャラリー　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_gallery {
	padding-top: 90px;
	padding-bottom: 90px;
}
#area_gallery h3 {
	font-size: 27px;
	margin-bottom: 45px;
}
#area_gallery h3 span {
	font-size: 12px;
}
.item_list {
	width: 100%;
	margin-right: 0px;
	margin-bottom: 30px;
	float: none;
}

/* サムネイル */
.item_thumb {
	margin-bottom: 0px;
}

/* リボン */
.item_ribbon {
	width: 36px;
	height: 120px;
}

/* ボタン */
.item_list .bt_more {
	display: none;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* お知らせ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_news {
	padding-top: 120px;
	padding-bottom: 90px;
}
#area_news h3 {
	text-align: center;
}
#area_news h3 span {
	font-size: 12px;
}
#news_scroll {
	top: -120px;
	left: 0px;
	width: auto;
	right: 0px;
}	
	
/* リスト */
.news_list {
	width: 100%;
	margin-right: 0px;
	margin-bottom: 30px;
	float: none;
}

/* サムネイル */
.news_thumb {
	margin-bottom: 0px;
	height: 130px;
	width: 130px;
	float: left;
}

/* テキストエリア */
.news_text {
	padding-left: 150px;
	line-height: 1.6em;
	font-size: 16px;
}

/* 日付 */
.news_date {
	font-size: 12px;
	margin-bottom: 5px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 店舗情報　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_info {
	padding-top: 90px;
	padding-bottom: 50px;
	background-image: url(../images/home_info_bg_sp.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#area_info h3 {
	margin-bottom: 75px;
}
#area_info h3 span {
	font-size: 12px;
}

/* 写真エリア */
#info_pic {
	display: none;
}

/* テキストエリア */
#info_text {
	width: 100%;
	padding-left: 0px;
}
.shop_list {
	margin-top: 0px;
	margin-bottom: 120px;
}
.shop_list h4 {
	margin-bottom: 10px;
	text-align: center;
}
.shop_list li {
	text-align: center;
	font-size: 16px;
	line-height: 1.6em;
}

/* ボタン */
.shop_list .bt_more {
	margin-left: 0px;
	text-align: center;
	font-size: 16px;
	margin-top: 15px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* メッセージ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_message {
	padding-top: 90px;
	padding-bottom: 90px;
}
#area_message .scroll_box {
	top: -135px !important;
}
#area_message h3 span {
	font-size: 12px;
}

/* flex枠 */
#msg_tbl {
	display: inherit;
	margin-top: -100px;
}

/* テキスト */
#msg_text {
	width: 100%;
}
#msg_text h4 {
	font-size: 18px;
	line-height: 1.6em;
	margin-bottom: 30px;
}
#msg_text p {
	font-size: 16px;
	line-height: 1.6em;
	width: 100%;
}


/* 代表写真 */
#msg_pic {
	width: 100%;
	padding-left: 0px;
	margin-bottom: 10px;
	text-align: right;
}
#msg_pic img {
	width: 230px;
	height: auto;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* オンラインショップ・お問い合わせ                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_link {
	padding-top: 90px;
	padding-bottom: 150px;
	position: relative;
}
#area_link .box_fl_left {
	width: 100%;
	margin-bottom: 100px;
}
#area_link .box_fl_right {
	width: 100%;
}

/* サムネイル */
.link_thumb {
	width: 100%;
}

/* h3 */
#area_link h3 span {
	font-size: 12px;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* SNSアイコン　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_sns {
	padding-top: 150px;
	padding-bottom: 150px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* カレンダー　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#area_calender {
	padding-top: 90px;
	padding-left: 15px;
	padding-right: 15px;
}
#area_calender .inner {
	width: 100%;
}
#area_calender h3 {
	margin-bottom: 30px;
}
#area_calender h3 span {
	font-size: 12px;
}
}
