@charset "utf-8";
/*
グローバルメニュー 
*/
#g-nav {
	position: fixed;
	z-index: -1;
	opacity: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background: url(../images/common/bg_pattern_br.svg);
	transition: all 0.6s;
	pointer-events: none;
	background-size: 70px;
}
@media screen and (min-width:768px) { 
	#g-nav {
		background-size: auto;
	}
}
#g-nav.panelactive {
	opacity: 1;
	z-index: 999;
	transition: all .6s;
	pointer-events: all;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
	/*ナビの数が増えた場合縦スクロール*/
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	/*表示する高さ*/
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
	display: none;
}
#g-nav.panelactive ul {
	display: block;
}
#g-nav li {
	line-height: 1.5;
}
#g-nav li a {
	color: #fff;
	letter-spacing: 0.1em;
	line-height: 1.5;
	display: flex;
	align-items: center;
}
/* ボタン */
.openbtn{
	--btn-color: #39261C;
	position: fixed;
	top: 8px;
	right: 8px;
	z-index: 1000;
	background: transparent;
	cursor: pointer;
	width: clamp( 42px, 3.8vw, 64px);
	height: clamp( 42px, 3.8vw, 64px);
	border-radius: 50%;
	border: 1px solid var(--btn-color);
	/* transition: all 0.8s; */
}
@media screen and (min-width:768px) { 
	.openbtn{
		top: 1vw;
		right: 1.8vw;
	}
}
.openbtn::before,
.openbtn::after {
	font-size: 15px;
	font-size: clamp( 10px, .9vw, 15px);
	font-family: 'Alata', sans-serif;
	letter-spacing: .2em;
	transition: all .3s;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.openbtn::before {
	content:"MENU";
	color: var(--btn-color);
	opacity: 1;
}
.openbtn::after {
	content:"CLOSE";
	color: #fff;
	opacity: 0;
	letter-spacing: .1em;
}
.openbtn.active::before {
	opacity: 0;
}
.openbtn.active::after {
	opacity: 1;
}
.openbtn.active {
	border: 1px solid #fff;
}
@media screen and (min-width:768px) { 
	.openbtn.active {
		border: 2px solid #fff;
	}
}
@media screen and (min-width:1200px) { 
	.openbtn{
		border: 2px solid var(--btn-color);
	}
	.openbtn:hover{
		border-color: #fff;
		background-color: #fff;
		transition: all 0.8s;
	}
	.openbtn:hover:after {
		color: #CCC5BB;
		transition: all 0.8s;
	}
	.openbtn.active:hover:after {
		color: #CCC5BB;
		transition: all 0.8s;
	}
}
/* メニュー中身 */
/* ロゴ */
.header_logo {
	position: fixed;
	left: 3.1vw;
	top: 2vw;
	z-index: 1000;
	width: clamp( 100px, 9.4vw, 180px);
}
.header_logo_sp {
	display: none;
	width: 100px;
	margin: 20px 0 0 20px;
}
.gnav_list_1st_box {
	width: 74vw;
	margin: 8.5vh 0 0 10vw;
}

@media (max-width: 768px) and (min-height: 812px) {
	.gnav_list_1st_box {
		margin-top: 72px;
	}
}
@media screen and (min-height:1080px) { 
	.gnav_list_1st_box {
		top: 295px;
	}
}
.gnav_list_2nd_box {
	display: flex;
	gap: 20px 0;
	flex-direction: column;
	margin: 20px 0;
}
@media screen and (min-width:768px) { 
	.gnav_list_1st_box {
		display: flex;
		justify-content: space-between;
		position: absolute;
		width: 100%;
		max-width: 1314px;
		width: 84vw;
		top: 50%;
		left: 50%;
		transform: translateX(-50%)translateY(-50%);
		padding: 0 0 50px;
		margin-left: 0;
	}
	.gnav_list_2nd_box {
		width: 62vw;
		max-width: 891px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 0;
		flex-direction: row;
		margin: 0;
	}
	.gnav_list_2nd_box .gnav_list {
		width: 29vw;
		max-width: 383px;
	}
}
@media screen and (min-width:1920px) { 
	.gnav_list_1st_box {
		width: 68vw;
	}
	.gnav_list_2nd_box {
		width: 46vw;
	}
	.gnav_list_2nd_box .gnav_list {
		width: 20vw;
	}
}
.gnav_list {
	font-size: 15px;
	color: #fff;
}
.gnav_list li:first-child {
	font-size: 40px;
	line-height: 1;
}
#g-nav li a,
.gnav_list li:first-child {
	letter-spacing: .2em;
}
@media screen and (min-width:768px) {
	.gnav_list {
		font-size: clamp( 13px, 1.4vw, 24px);
	}
}
.gnav_list li+li {
	margin-top: 10px;
}
@media screen and (min-width:768px) { 
	.gnav_list li:first-child {
		font-size: clamp( 35px, 3.6vw, 60px);
		margin-bottom: 50px;
	}
	.gnav_list li+li {
		margin-top: 25px;
	}
}
@media screen and (min-width:1200px) { 
	#g-nav li a.gnav_link_headline:hover {
		color: rgba(255, 255, 255, .5);
	}
}
/*
btn
*/
.btn {
  position: relative;
  background-color: #fff;
  width: 100%;
  max-width: 184px;
  border-radius: 40px;
	font-size: clamp(15px, 1.57vw, 30px);
  letter-spacing: .2em;
  display: block;
  padding: 7px 35px;
}
.btn:before{
  content:"";
  width: 26px;
  height:0.5px;
  background-color: #39261C;
  display: block;
  position: absolute;
  top: 50.5%;
  transform: translateY(-50%);
  right: 20px;
  transition: all .4s ease-out;
}
.btn:after{
  content:"";
  background-image: url(../images/common/btn_arw_brwn.svg);
	background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  background-size: contain;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  right: 5px;
}
@media screen and (min-width:768px) { 
  .btn {
		max-width: 242px;
		padding: 10px 45px;
	}
	.btn:before{
		width: 32px;
		right: 28px;
	}
	.btn:after{
		right: 10px;
		width: 41px;
  	height: 41px;
	}
}
@media screen and (min-width:1200px) { 
  .btn:hover::before {
    width: 12px;
    transition: all .4s ease-out;
  }
}
@media screen and (min-width:1400px) { 
	.btn {
		padding: 11px 10px;
		padding-right: 80px;
		max-width: 364px;
		text-align: center;
	}
	.btn:after{
		width: 57px;
		height: 57px;
	}
	.btn:before{
		width: 48px;
		height: 1px;
		right: 34px;
	}
}
@media screen and (min-width:1500px) { 
	.btn:before{
		right: 37px;
	}
	.btn:after{
		width: 64px;
		height: 64px;
	}
}
.gnav_btn {
  position: relative;
  width: 100%;
  display: block;
	min-height: 35px;
}
.gnav_btn:before{
  content:"";
  width: 26px;
  height:0.5px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50.5%;
  transform: translateY(-50%);
  right: 20px;
  transition: all .4s ease-out;
}
.gnav_btn:after{
  content:"";
  background-image: url(../images/common/gnav_btn_arw.svg);
	background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
}
@media screen and (min-width:768px) { 
	.gnav_btn:before{
		width: clamp( 32px, 2.5vw, 48px);
		right: clamp( 28px, 2.22vw, 37px);
	}
	.gnav_btn:after{
		right: 10px;
		width: clamp( 42px, 3.8vw, 64px);
  	height: clamp( 42px, 3.8vw, 64px);
	}
	.gnav_btn {
		min-height: clamp( 42px, 3.8vw, 64px);
	}
}
@media screen and (min-width:1200px) { 
  .gnav_btn:hover::before {
    width: 12px;
    transition: all .4s ease-out;
  }
}
@media screen and (min-width:1400px) { 
  .gnav_btn::before {
    height: 1px;
  }
}
/* morebtn */
.morebtn {
  position: relative;
  width: 100%;
  max-width: 102px;
  display: inline-block;
}
.morebtn span {
  display: block;
  color: #565B3A;
  font-size: 10px;
  letter-spacing: .2em;
  padding: 0 0 18px;
  transition: all .4s ease-out;
}
@media screen and (min-width:768px) {
  .itemlink_morebtn_wrap,
	.morebtn {
		max-width: 113px;
	}
	.morebtn span {
		font-size: 12px;
		padding: 0 0 35px;
	}
}
@media screen and (min-width:1400px) {
  .itemlink_morebtn_wrap,
	.morebtn {
    max-width: 170px;
  } 
  .morebtn span {
    font-size: 18px;
  }
}
.morebtn:before{
  content:"";
  width: 84px;
  height: 0.5px;
  background-color: #565B3A;
  display: block;
  position: absolute;
  top: 50.5%;
  transform: translateY(-50%);
  right: 19px;
  transition: all .4s ease-out;
}
.morebtn:after{
  content:"";
  background-image: url(../images/common/btn_arw.svg);
  background-repeat: no-repeat;
  width: 43px;
  height: 43px;
  background-size: contain;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (min-width:768px) { 
	.morebtn:before{
		width: 95px;
	}
}
@media screen and (min-width:1200px) { 
	.itemlink:hover .morebtn span,
	.morebtn:hover span,
  .linup_list a:hover .morebtn span {
    transform: translateX(10px);
  }
	.itemlink:hover .morebtn::before,
  .morebtn:hover::before,
  .linup_list a:hover .morebtn::before {
    width: 85px;
  }
}
@media screen and (min-width:1400px) { 
  .morebtn:before{
    width: 143px;
    height: 1px;
    right: 27px;
  }
  .morebtn:after{
    width: 64px;
    height: 64px;
  }
	.itemlink:hover .morebtn span,
  .morebtn:hover span,
  .linup_list a:hover .morebtn span {
    transform: translateX(20px);
  }
	.itemlink:hover .morebtn::before,
  .morebtn:hover::before,
  .linup_list a:hover .morebtn::before {
    width: 123px;
  }
}
/*
footer
*/
.footer_bg_wrap {
	position: relative;
	padding-top: 61%;
}
.footer_bg_wrap {
	content: "";
	display: block;
	background-image: url(../images/common/footer_bg_sp.webp);
	width: 100%;
	height: 100%;
	background-size: auto 153vw;
	z-index: -1;
	background-position: center bottom;
	background-attachment: fixed;
	background-repeat: no-repeat;
}
@media screen and (min-width:425px) { 
	.footer_bg_wrap {
		background-size: auto 125vw;
	}
}
@media screen and (min-width:768px) { 
	.footer_bg_wrap {
		padding-top: 33%;
	}
	.footer_bg_wrap {
		background-image: url(../images/common/footer_bg.webp);
		background-position: left bottom;
		background-size: auto 56vw;
	}
}
/* パララックス */
/* .bg_display::before {
  content: "";
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: -1;
	width: 100%;
	background: url("../images/common/footer_bg.webp") center center no-repeat;
	background-size: cover;
	height: 100vh;
	transition: all 0.5s ease-out;
}
.bg_fix::before {
  position: absolute;
}
.parallax {
  height: 200px;
}
@media only screen and (min-width: 768px) {
  .parallax {
    height: 400px;
  }
}
@media only screen and (min-width: 1200px) {
  .parallax {
    height: 600px;
  }
} */
.footer_contents_wrap {
	background-color: #39261C;
}
.copyright {
	color: #fff;
	font-size: clamp( 10px, .7vw, 14px);
	letter-spacing: .2em;
	text-align: center;
}
@media screen and (min-width:768px) { 
	.copyright {
		font-size: 14px;
	}
}
.footer_contents_wrap {
	padding: 5.86vw 0;
	line-height: 1.5;
}
.footer_link,
.footer_logo_wrap {
	text-align: center;
}
.footer_logo_wrap {
	max-width: 192px;
	width: 10vw;
	min-width: 100px;
	margin: auto;
}
.footer_link {
	padding: 11px 0 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
}
.footer_link .text_link {
	color: #fff;
	letter-spacing: .2em;
	font-size: clamp( 11px, 0.94vw, 18px);
}
.footer_link .insta_link {
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (min-width:768px) { 
	.footer_contents_wrap {
		padding: 10px 0;
	}
}
@media screen and (min-width:800px) { 
	.footer_contents_wrap {
		padding: 2.60vw 0;
	}
	.footer_link {
		padding: 17px 0 10px;
		gap: 10px;
	}
}
/*
Noとテキスト
*/
.number::before {
  content: "";
  display: block;
  background-image: url(../images/top/concept.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  width: clamp( 56px, 3.4em, 120px);
  height: clamp( 14px, .9em, 31px);
}
.number {
  color: #fff;
  font-size: clamp(15px, 2.2vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}
/*
itemlink
*/
.itemlink_inner {
  padding: clamp( 70px, 10vw, 192px) 0;
}
.itemlink_wrap {
  margin: auto;
  width: 60vw;
  max-width: 280px;
}
@media screen and (min-width:768px) { 
  .itemlink_wrap {
    width: 70vw;
    max-width: 1344px;
  }
  .itemlink {
    display: flex;
    align-items: center;
    padding: 1vw 2vw;
  }
}
.itemlink_wrap li+li {
  margin-top: 40px;
}
@media screen and (min-width:768px) { 
  .itemlink_wrap li+li {
    margin-top: 2.5vw;
  }
}
.itemlink_img {
  width: 50vw;
  margin: auto;
  max-width: 200px;
}
.itemlink_img img {
  transition: all .4s ease-out;
}
@media screen and (min-width:768px) { 
  .itemlink_img {
    width: 20vw;
    max-width: 396px;
    margin-right: 3.6vw;
  }
}
@media screen and (min-width:1200px) { 
  .itemlink:hover .itemlink_img img {
    transform: scale(1.05);
  }
}
.itemlink_txt_wrap p {
  text-align: center;
  line-height: 1.5;
}
.itemlink_txt_wrap p+p {
  margin-top: 5px;
}
.itemlink_txt_wrap {
  margin: 10px 0 0;
  transition: all .4s ease-out;
}
@media screen and (min-width:768px) { 
  .itemlink_txt_wrap {
    width: 31.6vw;
  }
  .itemlink_txt_wrap p {
    text-align: left;
  }
}
@media screen and (min-width:1200px) { 
  .itemlink:hover .itemlink_txt_wrap {
    transform: translateX(10px);
  }
}
@media screen and (min-width:1400px) { 
  .itemlink:hover .itemlink_txt_wrap {
    transform: translateX(20px);
  }
}
.itemlink_ttl {
  font-size: clamp( 29px, 3vw, 58px);
  letter-spacing: .2em;
}
.itemlink_ttl.smaller {
  font-size: clamp( 23px, 2.5vw, 48px);
  letter-spacing: .1em;
  line-height: 1.2;
}
.itemlink_name {
  font-size: clamp( 13px, 1.25vw, 24px);
  letter-spacing: .1em;
}
.itemlink_price {
  font-size: clamp( 11px, 1.04vw, 20px);
  letter-spacing: .1em;
}
@media screen and (min-width:768px) { 
  .itemlink_ttl {
    font-size: clamp( 27px, 3vw, 58px);
  }
  .itemlink_ttl.smaller {
    font-size: clamp( 21px, 2.5vw, 48px);
  }
  .itemlink_name {
    font-size: clamp( 12px, 1.25vw, 24px);
  }
}
.itemlink_morebtn_wrap {
  margin: 0 0 0 auto;
}
/* morebtn */
.itemlink_morebtn_wrap {
  text-align: right;
  margin-top: 15px;
}
@media screen and (min-width:768px) { 
  .itemlink_morebtn_wrap {
    width: 100%;
  }
}
.itemlink_btn_wrap {
  margin: 5vw 0 0;
}
.itemlink_btn_wrap .btn {
  margin: auto;
}
/* 色変更 */
.itemlink_morebtn_wrap .morebtn span {
  color: #39261C;
}
.itemlink_morebtn_wrap .morebtn:before {
  background-color: #39261C;
}
.itemlink_morebtn_wrap .morebtn:after {
  background-image: url(../images/common/btn_arw_brwn.svg);
}
/* 白に変更 */
.btn_bg_brown .btn {
	background-color: #39261C;
	color: #fff;
	padding-right: 52px;
	max-width: none;
	width: fit-content;
} 
.btn_bg_brown .btn:before {
  background-color: #fff;
}
.btn_bg_brown .btn:after {
  background-image: url(../images/common/btn_arw_white.svg);
}
.btn_text::before{
	content:"";
	background: url(../images/common/icon_cart.svg) no-repeat center bottom;
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	margin: 0 0.6em -0.16em 0;
}
@media screen and (min-width:768px) { 
	.btn_bg_brown .btn {
		padding: 11px 60px;
    padding-right: 82px;
	}
}
@media screen and (min-width:1440px) { 
	.btn_bg_brown .btn {
		padding: 11px 80px;
    padding-right: 102px;
	}
}