@charset "utf-8";

/* ==================================================

■color
■basic layout
 - site_wrap
 - mv
 - position
 - flex
 - fix-bg
■header
 - SEO
 - logo
 - nav
 - iconArea
■footer
■copy
■pageTop
■全ページ共通スタイル
 - 非表示
■編集画面用CSS

================================================== */

/* ==================================================
	■color
================================================== */

:root{
	--i_bg_color: #fff; /*背景色*/
	--i_txt_color: #333;    /*テキスト*/
	--i_main_color: #DEB887;    /*メイン*/
	--i_sub_color: #BE9663; /*アクセント*/
	--i_sub2_color: #FDF5E6;    /*薄い色*/
	--i_sub3_color: #d9f3f1;    /*薄い色*/
	--i_btn_color: #DEB887; /*ボタン*/
	--i_btn_hover_color: #BE9663;  /*ボタンhover*/
	--i_btn_txt_color: #fff;    /*ボタンテキスト*/
	--i_btn_hover_txt_color: #fff;  /*ボタンテキスト*/
	--i_shadow_color: rgba(85, 85, 85, 0.3);    /*シャドウ*/
	--i_border_color: #DEDACF;  /*ボーダー*/
	--i_noimg_bg_color: #f5f5f5;    /*画像無し*/
	--i_gray_color: #888888;
}



/* ==================================================
	■basic layout
================================================== */

#wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--i_bg_color);
	color: var(--i_txt_color);
	font-family: 'JetBrains Mono','Zen Maru Gothic', sans-serif;
	font-feature-settings: "palt";
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 0;
	line-height: 1.8;
}

.main_content {
	width: 100%;
}

.main_content_innerTop {
  position: relative;
  z-index: 1;
}

/* ▽ TAB-SP layout ========== */
@media screen and (min-width:1025px){
	.pc-hidden:not(#editView .pc-hidden) {
		display: none;
	}
}

@media only screen and (max-width: 1024px) {
	#wrapper {
		width: 100%;
	}
	.cmshtml .main_content {
		position: inherit;
		width: 100%;
		margin-bottom: 0px;
	}
	.cmshtml div.main_content_innerTop {
		margin-bottom: 65vh;
	}
}

@media only screen and (max-width: 600px) {
	#wrapper {
		width: 100%;
	}
}

/* site_wrap
---------------------------------------------------- */

.site_wrap {
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.site_wrap > div {
	width: 94%;
	max-width: 1200px;
	margin: 0 auto !important;
}

@media (min-width: 1px) and (max-width: 576px) {
  .cmshtml .site_wrap,
  .cmshtml .rdblock.site_wrap > div {
	width: 94% !important;
	margin: auto !important;
  }
}


/* mv
---------------------------------------------------- */
.mv_outer {
	position: relative;
}

.mv_outer::before {
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgb(65 30 0 / 15%);
	z-index: 1;
}

.mv_img,.mv_text {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}


/* position
---------------------------------------------------- */
.p_relative {
	position: relative;
}
.p_absolute {
	position: absolute;
	height: 100%;
	top: 0;
}


/* flex
---------------------------------------------------- */
.ai-center {
	display: flex;
	align-items: center;
}

@media screen and (max-width: 576px) {
	.column-reverse {
		flex-direction: column-reverse;
	}
}


/* fix-bg
---------------------------------------------------- */
.fix_bg {
	width: 100%;
	height: 100vh;
	height: 100dvh;
	position: fixed;
	top: 0;
}

.main_content_inner {
	position: relative;
	z-index: 1;
}


/* ==================================================
	■header
================================================== */

#header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 10000;
	box-sizing: border-box;
	letter-spacing: 0.05rem;
	line-height: 1;
	transition: .3s;
}

.header_content {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header_nav .ul {
	display: flex;
	justify-content: flex-end;
}

.header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	padding: 0 2%;
	box-sizing: border-box;
}

.header_logo:not(.drawer_menu.scrolled .header_logo) {
	display: none ;
}

.header_logo img:not(.drawer_menu.scrolled .header_logo img):not(.drawer_menu.open .header_logo img) {
    filter: brightness(20);
}

.content .header_logo {
	display: block !important;
}

#header.scrolled.is-fixed {
	background: #fff;
}

#header.scrolled.is-fixed #seo_txt {
	display: none;
}

#header.scrolled.is-fixed .header_nav .li a {
	text-shadow: none;
	color: var(--i_txt_color);
}

#header.scrolled.is-fixed .header_nav .li a:hover {
	opacity: 0.7;
}

.header_nav .li {
		margin-left: 30px;
}

.header_nav .li a {
	font-size: clamp(12px,1.2vw,16px);
	display: block;
	color: #fff;
	text-shadow: 0px 0px 6px rgb(30 20 7 / 70%);
	padding: 20px 0;
}

.header_nav .li a:hover {
	color: #cfcfcf;
	text-shadow: 0px 0px 6px rgb(30 20 7 / 70%);
}

.header_content--sp {
	display: none;
}


/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1024px) {
	#header {
		width: 100%;
		height: 60px;
	}

	.header_content--sp {
		display: block;
		text-align: center;
		padding: 30px 30px;
		font-family: 'Zen Maru Gothic', sans-serif;
	}

	.header_nav .li a::before {
		display: none;
	}

	.header_inner {
		padding: 0 5%;
	}

	#header.drawer_menu.open .header_logo {
		display: block;
	}
}


/* SEO
---------------------------------------------------- */

#seo_txt {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 5px;
	left: 2%;
	z-index: 10001;
	pointer-events: none;
	color: #666666;
	transform: .3s;
}

#seo_txt h1 {
	font-size: 12px;
}

/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1024px) {
	#seo_txt {
		display: none;
	}
}




/* logo
---------------------------------------------------- */

#header .header_logo {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 2%;
}

.header_logo img {
	max-height: 60px;
	width: auto;
}

/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1024px) {
	.header__logo--sp,.header__logo--spTop {
		display: block;
	}

	.header__logo--pc {
		display: none;
	}

	.header__logo--spTop {
		height: 60px;
		width: 94px;
		display: flex;
		align-items: center ;
		margin-left: 20px;
	}
	#header .logo_sp a {
		display: inline-block;
		width: auto;
	}
	#header .logo_sp img {
		height: 50px;
		box-sizing: border-box;
		object-fit: contain;
		padding: 5px 55px 5px 3%
	}

	.header_logo img {
		max-height: 40px;
	}
}



/* nav
---------------------------------------------------- */

.header_right {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header_content {
	display: flex;
	column-gap: 15px;
	margin-left: 30px;
}


/* ▽ PC layout ========== */
@media only screen and (min-width: 1024px) {
	.header_nav .li {
		position: relative;
		transition: all 0.2s ease;
	}
	.header_nav .li .sub {
		display: none;
		width: 250px;
		transition: all 0.2s ease;
		-webkit-transition: all 0.2s ease;
		text-align: left;
	}
	.header_nav .li:hover .sub {
		display: block;
		font-size: 16px;
		position: absolute;
		width: 220px;
		height: auto;
		top: 100%;
		left: 0;
		background-color: var(--i_main_color);
		z-index: 1;
	}
	.header_nav .li:last-of-type:hover .sub {
		right: 0;
		left: auto;
	}
	.header_nav .li:hover .sub .s_li {
		border: 1px solid var(--i_bg_color);
	}
	.header_nav .li:hover .sub .s_li a {
		display: block;
		padding: 10px 5px;
	}
	.header_nav .li:hover .sub .s_li:not(:first-of-type) {
		border-top: none;
	}
	#menu-btn-check {
		display: none;
	}
}

@media only screen and (max-width: 1025px) {
	.header_content {
		display: flex;
		column-gap: 15px;
		margin-left: 0;
	}
}


/* iconArea
---------------------------------------------------- */
.header_icon a,.footer_icon a {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: var(--i_main_color);
	border-radius: 50pc;
	position: relative;
}

.header_icon a:hover,.footer_icon a:hover {
	background: var(--i_sub_color);
}

.header_icon img,.footer_icon img {
	width: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}


/* ==================================================
	■footer
================================================== */

#footer {
	position: relative;
	letter-spacing: 0.1rem;
	width: 100%;
	background: url(../img/bg_footer.png);
	font-family: 'Zen Maru Gothic', sans-serif;
}

#footer a {
	transition: .3s ease;
}

#footer a:hover{
	opacity: .7;
}

.footer_inner {
	display: flex;
	max-width: 1110px;
	margin: auto;
	padding: 80px 0;
	box-sizing: border-box;
}

.footer_left,.footer_right{
	width: 50%;
	display: flex;
}

.footer_left {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.footer_right {
	padding: 20px;
	border-left: 1px solid var(--i_gray_color);
	border-image: linear-gradient(to bottom, #ffffff00 10%, var(--i_gray_color) 10%, var(--i_gray_color) 90%, #ffffff00 90%);
	border-image-slice: 1;
}

.footer_nav {
	display: flex;
	height: 100%;
	width: 100%;
}

.footer_nav .ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	height: 200px;
	width: 100%;
	align-content: flex-end;
}

.footer_nav .li {
	height: 20%;
	margin-right: 50px;
	display: flex;
	align-items: center;
}

.footer_nav .li.footer_icon {
	height: 50px;
}

.footer_logo {
	max-width: 160px;
	margin-bottom: 15px;
}

.footer_contentBtm {
	display: flex;
	column-gap: 20px;
}


/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1024px) {
	.footer_inner {
		padding: 40px 0;
		justify-content: center;
	}
	.footer_left {
		width: calc(100% - 40px);
	}
	#footer .ul {
		margin: 0 auto;
	}
	.footer_right {
		display: none;
	}

	.footer_logo {
		margin: 0 auto 20px auto;
		width: clamp(230px,40vw,300px);
	}

	.footer_content {
		font-size: clamp(12px,2vw,16px);
	}

	.footer_contentTop {
		text-align: center;
	}

	.footer_contentBtm {
		column-gap: clamp(20px,4vw,47px);
		justify-content: center;
	}
}

@media only screen and (max-width: 768px) {
  .footer_logo img {
	width: 90px;
  }

  .copy {
	height: 30px;
	line-height: 30px;
	font-size: clamp(10px,2vw,14px);
  }

  .main_content_innerTop {
	margin-bottom: 65vh;
  }

  .cmshtml div.top-concept,.cmshtml div.top-material,
  .cmshtml div.top-news,.cmshtml div.top-shop {
	padding-top: 60px;
	padding-bottom: 60px;
  }

  .cmshtml .main_content .inner-text {
	padding-bottom: 40px;
  }
}

/* ==================================================
	■copy
================================================== */

.copy {
	height: 60px;
	color: rgba(255, 255, 255,0.7);
	font-size: clamp(10px,1vw,14px);
	text-align: center;
	background: url(../img/bg_copy.png);
	line-height: 60px;
}


/* ==================================================
	■pageTop
================================================== */

#pagetop_btn {
	position: fixed;
	z-index: 1000;
	right: calc(3% - 10px);
	bottom: calc(3vw - 10px);
	width: 60px;
	height: 120px;
	display: inline-block;
}

.pagetop_arrow {
	position: relative;
	display: block;
	top: 50%;
	left: 50%;
	width: 1px;
	height: 97px;
	background-color: var(--i_txt_color);
	transform: translate(-50%,-50%);
}

.pagetop_arrow::before {
	content: "PAGE TOP";
	position: absolute;
	bottom: -20px;
	left: -55px;
	display: block;
	width: 100px;
	height: 60px;
	transform: rotate(90deg);
	font-size: 12px;
}

.pagetop_arrow::after {
	content: "";
	position: absolute;
	top: 10px;
	right: -16px;
	display: block;
	width: 21px;
	height: 1px;
	background-color: var(--i_txt_color);
	transform: rotate(59deg);
}

#pagetop_btn a {
	display: block;
	height: 100%;
	width: 100%;
}

#pagetop_btn a:hover {
	opacity: .7;
}


/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1024px) {
	#pagetop_btn {
		right: 1%;
	}

	.pagetop_arrow {
	height: 73px;
	}

	.pagetop_arrow::before {
		left: -60px;
	bottom: -30px;
	font-size: 10px;
	}

	.pagetop_arrow::after {
		top: 7px;
	right: -12px;
	width: 16px;
	}
}


/* ==================================================
	■全ページ共通スタイル
================================================== */

/* 非表示
---------------------------------------------------- */
/*.hide {
	display: none;
}*/



/* ==================================================
	■編集画面用CSS
================================================== */

#editView .cmshtml #seo_txt {
	position: static;
}

#editView .cmshtml #header {
	position: static;
	height: auto;
	float: left;
}
#editView .cmshtml .header_inner {
	height: 100%;
}

#editView .cmshtml #header .num_area .tel, #editView .cmshtml #header .num_area .mail {
	width: 100%;
}

#editView .cmshtml .page_top {
	display: none;
}