/* ===========================================
 * header
=========================================== */

#header {
	height: 80px;
	width: 100%;
	min-width: 1250px;
	position: fixed;
	z-index: 99;
	top: 0;
}

#headerInner {
	width: 100%;
	height: 80px;
	padding: 0 120px 0 50px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	transition: .5s;
}
header.scrolled #headerInner{
	background: #FDFCF8;
}
#headerInner_logo {
	width: 210px;
	height: auto;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-size: 0;
}
header.scrolled #headerInner_logo{
	display: none;
	transition: .5s;
}

#headerInner_logo img{
	width: 100%;
	height: auto;
	object-fit: cover;
	vertical-align: bottom;
	margin-top: -10px;
}
#headerInner_logo_s {
	width: 210px;
	height: auto;
	display: none;
}
header.scrolled #headerInner_logo_s{
	display: block;
	transition: .5s;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-size: 0;
}

#headerInner_logo_s img{
	width: 100%;
	height: auto;
	object-fit: cover;
	vertical-align: bottom;
	margin-top: -10px;
}

#headerInner_nav {
	display: flex;
	flex-wrap: nowrap;
	margin-right: calc(50vw - 308px);
}

#headerInner_nav ul{
	display: flex;
	align-items: center;
}

#headerInner_nav ul li{
	margin-right: 30px;
	text-align: center;
}

#headerInner_nav ul li a{
	display: block;
	color: #FDFCF8;
	font-weight: 400;
	font-size: 15px;
	transition: .5s;
	white-space: nowrap;
}

header.scrolled #headerInner_nav ul li a{
	color: #010005;
}
#headerInner_nav ul li a:hover{
	opacity: 0.7;
}


/*drawer navi*/
#header_drawer_nav{
	
}
#drawer_nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    visibility: hidden;
	opacity: 0;
    left: 0;
	top: 0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#323336;
	overflow-y: auto; /* ←これ追加 */
    -webkit-overflow-scrolling: touch; /* ←iOS対策（重要） */

    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#drawer_nav.panelactive{
	opacity: 1;
    visibility: visible;
}

#header_drawer_navInner_blockA{
	width: 100%;
	height: 80px;
	padding: 0 120px 0 50px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	transition: .5s;
}
#drawer_nav_logo{
	width: 210px;
	height: auto;
}
#drawer_nav_logo img{
	width: 100%;
	height: auto;
	object-fit: cover;
}

/*ナビゲーションの縦スクロール*/
#drawer_nav-list{
	width: 1088px;
	margin: 100px auto 40px;
	display: flex;
	justify-content: space-between;
}
#drawer_nav-list ul{
	list-style: none;
}
#drawer_nav-list ul li{
	padding-bottom: 30px;
	font-size: 13px;
	line-height: normal;
}
#drawer_nav-list ul li span{
	display: block;
	font-weight: 700;
	font-size: 20px;
}
#drawer_nav-list ul li span::first-letter{
	color: #B40019;
}
#drawer_nav-list ul li a{
	color: #fff;
	font-weight: 400;
	display: block;
}
#drawer_nav-list ul li a:hover{
	opacity: .7;
}

#header_drawer_navInner{
}

#header_drawer_navInner_blockB {
	width: 1088px;
	margin: 0 auto;
	padding-bottom: 60px;
}
#header_drawer_navInner_blockB ul{
	display: flex;
	justify-content: center;
	column-gap: 20px;
	margin-bottom: 40px;
}

#header_drawer_navInner_blockB ul li{
	width: 200px;
	height: 40px;
	background: #FDFCF8;
	border-radius: 20px;
	text-align: center;
	font-size: 15px;
	position: relative;
}
#header_drawer_navInner_blockB ul li::after{
	content: "";
	background: url("../../img/common/arrow.svg") no-repeat center top;
	width: 8px;
	height: 14px;
	position: absolute;
	right: 20px;
	top: 13px;
}
#header_drawer_navInner_blockB ul li a{
	line-height: 40px;
	display: block;
	color: #010005;
}
#header_drawer_navInner_blockB ul li:hover{
	opacity: .7;
}
#header_drawer_navInner_blockB p{
	text-align: center;
	font-size: 14px;
}
#header_drawer_navInner_blockB p a{
	color: #777777;
}
#header_drawer_navInner_blockB .sns_link{
	display: flex;
	justify-content: center;
	column-gap: 20px;
	margin-top: 40px;
}
#header_drawer_navInner_blockB .sns_link div a i{
	color: #959596;
	font-size: 20px;
}

/*========= ボタンのためのCSS ===============*/
.drawer_nav_openbtn{
	position:absolute;
    z-index: 9999;/*ボタンを最前面に*/
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
	cursor: pointer;
    width: 64px;
    height:20px;
	display: block;
}
  
/*×に変化*/  
.drawer_nav_openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 1px;
	background: #FDFCF8;
    width: 64px;
	transition: .5s;
  }
header.scrolled .drawer_nav_openbtn span{
	background: #323336;
}

.drawer_nav_openbtn span:nth-of-type(1) {
  top:0; 
}

.drawer_nav_openbtn span:nth-of-type(2) {
  top:15px;
}

.drawer_nav_openbtn.active span:nth-of-type(1) {
	top: 5px;
	-webkit-transform: rotate(160deg);
	-moz-transform: rotate(160deg);
	transform: rotate(160deg);
	background: #FDFCF8;
}

.drawer_nav_openbtn.active span:nth-of-type(2){
	top: 5px;
	-webkit-transform: rotate(-160deg);
	-moz-transform: rotate(-160deg);
	transform: rotate(-160deg);
	width: 64px;
	background: #FDFCF8;
}

input::placeholder {
    color: #C4C4C4; /* 好きな色に変更 */
}


@media screen and (max-width:640px){
	
	

	#header {
		height: 80px;
		width: 640px;
		min-width: 640px;
		position: fixed;
		z-index: 99;
		top: 0;
	}

	#headerInner {
		width: 100%;
		height: 80px;
		padding: 0 100px 0 30px;
		box-sizing: border-box;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		transition: .5s;
	}
	header.scrolled #headerInner{
		background: #FDFCF8;
	}
	#headerInner_logo {
		width: 280px;
		height: auto;
		margin: 0;
		padding: 0;
		line-height: 1;
		font-size: 0;
	}
	header.scrolled #headerInner_logo{
		display: none;
		transition: .5s;
	}

	#headerInner_logo img{
		width: 100%;
		height: auto;
		object-fit: cover;
		vertical-align: bottom;
	}
	#headerInner_logo_s {
		width: 280px;
		height: auto;
		display: none;
	}
	header.scrolled #headerInner_logo_s{
		display: block;
		transition: .5s;
		margin: 0;
		padding: 0;
		line-height: 1;
		font-size: 0;
	}

	#headerInner_logo_s img{
		width: 100%;
		height: auto;
		object-fit: cover;
		vertical-align: bottom;
	}

	/*drawer navi*/
	#header_drawer_nav{

	}
	#drawer_nav{
		/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
		position:fixed;
		z-index: 999;
		visibility: hidden;
		opacity: 0;
		left: 0;
		top: 0;
		width:640px;
		height: 100vh;/*ナビの高さ*/
		background: #323336;
		/*動き*/
		transition: all 0.6s;
	}

	/*アクティブクラスがついたら位置を0に*/
	#drawer_nav.panelactive{
		opacity: 1;
		visibility: visible;
	}

	#header_drawer_navInner_blockA{
		width: 640px;
		height: 80px;
		padding: 0 100px 0 30px;
		box-sizing: border-box;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		transition: .5s;
	}
	#drawer_nav_logo{
		width: 280px;
		height: auto;
	}
	#drawer_nav_logo img{
		width: 100%;
		height: auto;
		object-fit: cover;
	}
	/*ナビゲーションの縦スクロール*/
	#drawer_nav-list{
		width: 580px;
		margin: 60px auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#drawer_nav-list ul{
		list-style: none;
	}
	#drawer_nav-list ul li{
		width: 290px;
		padding-bottom: 0;
		font-size: 20px;
		line-height: normal;
	}
	#drawer_nav-list ul li a{
		color: #fff;
		font-weight: 400;
		display: block;
		padding: 20px 0;
	}
	#drawer_nav-list ul li a::before{
		content: "■";
		color: #B40019;
	}
	#drawer_nav-list ul li a:hover{
		opacity: .7;
	}

	#header_drawer_navInner{
	}

	#header_drawer_navInner_blockB {
		width: 580px;
		margin: 0 auto;
		padding-bottom: 60px;
	}
	#header_drawer_navInner_blockB .block{
		display: flex;
		justify-content: space-between;
	}
	#header_drawer_navInner_blockB ul{
		display: block;
		justify-content: center;
		column-gap: 20px;
		margin-bottom: 40px;
	}

	#header_drawer_navInner_blockB ul li{
		width: 260px;
		height: 66px;
		background: #FDFCF8;
		border-radius: 33px;
		text-align: center;
		font-size: 22px;
		position: relative;
		margin-bottom: 46px;
	}
	#header_drawer_navInner_blockB ul li::after{
		content: "";
		background: url("../../img/common/arrow.svg") no-repeat center top;
		width: 8px;
		height: 14px;
		position: absolute;
		right: 30px;
		top: 25px;
	}
	#header_drawer_navInner_blockB ul li a{
		line-height: 66px;
		display: block;
		color: #010005;
	}
	#header_drawer_navInner_blockB ul li:hover{
		opacity: .7;
	}
	#header_drawer_navInner_blockB .block .img_box{
		width: 290px;
		height: auto;
	}
	#header_drawer_navInner_blockB .block .img_box img{
		width: 290px;
		height: auto;
		object-fit: cover;
	}
	#header_drawer_navInner_blockB .sns_link{
		display: flex;
		justify-content: center;
		column-gap: 40px;
		margin-top: 0;
	}
	#header_drawer_navInner_blockB .sns_link div a i{
		color: #959596;
		font-size: 40px;
	}

	/*========= ボタンのためのCSS ===============*/
	.drawer_nav_openbtn{
		position:absolute;
		z-index: 9999;/*ボタンを最前面に*/
		top: 50%;
		right: 30px;
		transform: translateY(-50%);
		cursor: pointer;
		width: 64px;
		height:20px;
		display: block;
	}

	/*×に変化*/  
	.drawer_nav_openbtn span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 0;
		height: 1px;
		background: #FDFCF8;
		width: 64px;
		transition: .5s;
	  }
	header.scrolled .drawer_nav_openbtn span{
		background: #323336;
	}

	.drawer_nav_openbtn span:nth-of-type(1) {
	  top:0; 
	}

	.drawer_nav_openbtn span:nth-of-type(2) {
	  top:15px;
	}

	.drawer_nav_openbtn.active span:nth-of-type(1) {
		top: 5px;
		-webkit-transform: rotate(160deg);
		-moz-transform: rotate(160deg);
		transform: rotate(160deg);
		background: #FDFCF8;
	}

	.drawer_nav_openbtn.active span:nth-of-type(2){
		top: 5px;
		-webkit-transform: rotate(-160deg);
		-moz-transform: rotate(-160deg);
		transform: rotate(-160deg);
		width: 64px;
		background: #FDFCF8;
	}
	
	
}


/* ===========================================
 * footer
=========================================== */
#page-top {
    width: 40px;
    height: 35px;
	position: absolute;
    bottom: 85px;
    right: 50px;
    z-index: 10;
}
#page-top img{
    width: 100%;
    object-fit: cover;
}
#page-top a {
	display: block;
}



footer {
	width: 100%;
	background: #323336;
	padding: 50px 0 0;
	position: relative;
}

footer .block{
	display: flex;
	justify-content: space-between;
}
#footer_info {
	width: 320px;
}
#footer_logo {
	width: 236px;
	height: auto;
	margin-bottom: 40px;
}
#footer_infoInner_logo img{
	width: 236px;
	height: auto;
	object-fit: cover;
}
#footer_text address,
#footer_text p{
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	color: #D0D0D0;
}
#footer_text p.tel{
	font-size: 20px;
	margin: 20px 0;
}
footer .sns_link{
	display: flex;
	column-gap: 20px;
}
footer .sns_link a i{
	font-size: 20px;
	color: #959596;
}

#footer_contact{
	margin-top: 80px;
}

#footer_contact ul{
	display: flex;
	column-gap: 20px;
	margin-bottom: 40px;
}

#footer_contact ul li{
	width: 200px;
	height: 40px;
	background: #FDFCF8;
	border-radius: 20px;
	text-align: center;
	font-size: 15px;
	position: relative;
}
#footer_contact ul li img{
	display: none;
	width: 8px;
	height: 14px;
	object-fit: cover;
}
#footer_contact ul li::after{
	content: "";
	background: url("../../img/common/arrow.svg") no-repeat center top;
	width: 8px;
	height: 14px;
	position: absolute;
	right: 20px;
	top: 13px;
}
#footer_contact ul li a{
	line-height: 40px;
	display: block;
	color: #010005;
}
#footer_contact ul li:hover{
	opacity: .7;
}
#footer_nav{
	margin: 40px 0 25px;
}
#footer_nav ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#footer_nav ul li a{
	font-size: 12px;
	font-weight: 200;
	color: #D0D0D0;
}


#footer_copy {
	background: #FDFCF8;
	padding: 18px 0;
}
footer #footer_copy .block{
	justify-content: flex-end;
	column-gap: 20px;
}
footer #footer_copy p{
	font-size: 12px;
}
footer #footer_copy p a{
	color: #010005;
}



@media screen and (max-width:640px){
	
	#page-top {
		width: 60px;
		height: 52px;
		position: absolute;
		bottom: 180px;
		right: 50px;
		z-index: 1;
	}
	#page-top img{
		width: 100%;
		object-fit: cover;
	}
	#page-top a {
		display: block;
	}
	
	footer {
		width: 100%;
		background: #323336;
		padding: 50px 0 0;
		position: relative;
	}

	footer .block{
		display: block;
		justify-content: space-between;
	}
	#footer_info {
		width: 580px;
	}
	#footer_logo {
		width: 280px;
		height: auto;
		margin-bottom: 40px;
	}
	#footer_logo img{
		width: 280px;
		height: auto;
		object-fit: cover;
	}
	#footer_text address,
	#footer_text p{
		font-size: 22px;
		font-weight: 400;
		font-style: normal;
		color: #D0D0D0;
	}
	#footer_text p.tel{
		font-size: 26px;
		margin: 20px 0;
	}
	footer .sns_link{
		display: flex;
		column-gap: 40px;
	}
	footer .sns_link a i{
		font-size: 40px;
		color: #959596;
	}

	#footer_contact{
	  margin-top: 0;
	  width: 640px;
	  background: rgba(253, 252, 248, 0.7); /* ← 半透明にするのがポイント */
	  position: fixed;
	  bottom: 0;
	  left: 0;
	  z-index: 5;

	  backdrop-filter: blur(10px);
	  -webkit-backdrop-filter: blur(10px); /* Safari対応 */
	}

	#footer_contact ul{
		display: flex;
		justify-content: center;
		column-gap: 40px;
		margin-bottom: 0;
		padding: 20px 0;
	}

	#footer_contact ul li{
		width: auto;
		height: auto;
		background: none;
		border-radius: 20px;
		text-align: center;
		font-size: 22px;
		position: relative;
	}
	#footer_contact ul li img{
		display: inline-block;
		width: 8px;
		height: 14px;
		object-fit: cover;
		vertical-align: baseline;
		margin-left: 10px;
	}
	#footer_contact ul li::after{
		content: "";
		background: none;
		width: 8px;
		height: 14px;
		position: absolute;
		right: 20px;
		top: 13px;
	}
	#footer_contact ul li a{
		line-height: normal;
		display: block;
		color: #010005;
	}
	#footer_contact ul li:hover{
		opacity: .7;
	}
	#footer_nav{
		display: none;
	}
	#footer_copy {
		margin-top: 40px;
		background: #FDFCF8;
		padding: 18px 0 90px;
	}
	footer #footer_copy .block{
		display: flex;
		justify-content: flex-end;
		column-gap: 20px;
	}
	footer #footer_copy p{
		font-size: 20px;
	}
	footer #footer_copy p a{
		color: #010005;
	}
	
	
}

/* ===========================================
 * pankuzu
=========================================== */

#sub_breadcrumb {
	padding-top: 10px;
	width: 1340px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 20px;
	text-align: right;
	position: relative;
	z-index: 5;
	font-size:0;
}

#sub_breadcrumb li{
	display: inline-block;
	font-size: 12px;
	color: #3e3e3e;
}

#sub_breadcrumb li a{
	display: block;
	color: #3e3e3e;
}
#sub_breadcrumb li.white,
#sub_breadcrumb li.white a{
	color: #FDFCF8;
}
#sub_breadcrumb li a:hover{
	opacity: 0.7;
}

#sub_breadcrumb li a:after{
	content: '/';
}


@media screen and (max-width:640px){
	
	#sub_breadcrumb {
		display: none;
	}
	
	
}
/* ===========================================
 * content
=========================================== */

.content{
	width: 1088px;
	margin: 0 auto;
}

.sub_content{
	width: 1340px;
	margin: 0 auto;
}

.gray{
	background: #E8E8E4;
}
@media screen and (max-width:640px){

	.content{
		width: 580px;
		margin: 0 auto;
	}

	.sub_content{
		width: 580px;
		margin: 0 auto;
	}
	
}



/* ===========================================
 * sub
=========================================== */
#sub_slider {
	width: 100%;
	height: 100vh;
    position: relative;
}
#sub_slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000; /* 黒 */
  mix-blend-mode: multiply; /* ← ここが乗算 */
  opacity: 0.32; /* 濃さ調整 */
  z-index: 1;
}
#sub_slider .sub_slider_img{
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
#sub_slider .sub_slider_img img{
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
#sub_slider .sub_desc{
    position: absolute;
	width: 1088px;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 10;
	color: #FDFCF8;
}
#sub_slider .sub_desc h1{
	font-size: 14px;
}
#sub_slider .sub_desc h1 span{
	font-size: 40px;
	display: block;
	font-weight: 700;
}
#sub_slider .sub_desc h1 span::first-letter{
	color: #B40019;
}

@media screen and (max-width:640px){
	#sub_slider {
		width: 100%;
		height: 100vh;
		position: relative;
	}
	#sub_slider::after {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background: #000; /* 黒 */
	  mix-blend-mode: multiply; /* ← ここが乗算 */
	  opacity: 0.32; /* 濃さ調整 */
	  z-index: 1;
	}
	#sub_slider .sub_slider_img{
		width: 100%;
		height: 100vh;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
	}
	#sub_slider .sub_slider_img img{
		width: 100%;
		height: 100vh;
		object-fit: cover;
	}
	#sub_slider .sub_desc{
		position: absolute;
		width: 580px;
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
		z-index: 10;
		color: #FDFCF8;
	}
	#sub_slider .sub_desc h1{
		font-size: 22px;
	}
	#sub_slider .sub_desc h1 span{
		font-size: 54px;
		display: block;
		font-weight: 700;
	}
	#sub_slider .sub_desc h1 span::first-letter{
		color: #B40019;
	}
	
}


/*PAGER*/
#pagination{
	width: 500px;
	margin: 50px auto 0;
}
#pagination table{
	border-collapse:collapse;
	width: 500px;
}
#pagination table td{
	text-align: center;
	font-size: 12px;
	width: 156px;
}

#pagination table td a{
	color: #010005;
	display: block;
	line-height: 40px;
}
#pagination table .next_btn,
#pagination table .prev_btn,
#pagination table .list_btn{
	width: 156px;
	height: 40px;
	background: #FDFCF8;
	border: 1px solid #010005;
}


@media screen and (max-width:640px){

	#pagination{
		width: 500px;
		margin: 50px auto 0;
	}
	#pagination table{
		border-collapse:collapse;
		width: 500px;
	}
	#pagination table td{
		text-align: center;
		font-size: 18px;
		width: 156px;
	}

	#pagination table td a{
		color: #010005;
		display: block;
		line-height: 40px;
	}
	#pagination table .next_btn,
	#pagination table .prev_btn,
	#pagination table .list_btn{
		width: 156px;
		height: 40px;
		background: #FDFCF8;
		border: 1px solid #010005;
	}
}
