.p-header {
	background: #EEEEEE;
	height: 4.375rem;
	transition: all 0.5s ease-in-out;
	height:60px;
	width:100%;
	/* position: sticky;
	top: 0;
	left:0; */
	z-index: 100;
	display:none;
}


.fade-in {
	opacity: 1;
	display:block;
  }
  
.p-header__inner {
	align-items: center;
	display: flex;
	height: inherit;
	justify-content: flex-end;
	padding: 0 0.9375rem;
	width: 100%;
}

.p-header__pc-nav {
	display: none;
	height: inherit;
}

.p-header__logoLink {
	color: #fff;
	display: block;
	font-size: 1.125rem;
}

.p-header__pc-snsBody {
	display: none;
}

.p-header__instagram {
	max-width: 2.5625rem;
	width: 100%;
}
.p-header__pc-snsBody a:hover,
.p-footerBody__item a :hover{
	opacity: .5;
}
.p-header__instagram img {
	-o-object-fit: contain;
	object-fit: contain;
}

.p-header__twitter {
	max-width: 2.5625rem;
	width: 100%;
}

.p-header__twitter img {
	-o-object-fit: contain;
	object-fit: contain;
}

.p-header__sp-body {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: auto;
	min-height: 100vh;
	padding: 6.25rem 0;
	position: fixed;
	width:100%;
	top:0;
	left:0;
}
.p-header__search {
	align-items: center;
	display: flex;
}

/* .p-header__search button,
[type=button],
[type=submit] {
	padding: 0 !important;
} */

.p-header__search button,
[type=button],
[type=submit] {
	background-color: #F3BABA;
	border-radius: 0;
	border-radius: initial;
	color: #F3BABA;
	display: inline-block;
	font-size: 8px;
	height: 2.1rem;
	position: relative;
	right: 4px;
	width: 2rem;
	padding:10px 1rem;
	overflow: hidden;
}

.p-header__search button[type=submit]::before {
	background-image: url("../images/common/pc-img/glass.webp");
	background-position: center;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.25rem;
	left: 0; /* ボタンの左側に配置 */
	margin-left: 4px; /* 余白を追加 */
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.25rem;
}

.p-header__search form {
	align-items: center;
	display: flex;
	/* max-width: 13.25rem; */
	position: relative;
}

.p-header__search form input {
	border: 1px solid #F3BABA;
	border-radius: 0 !important;
	border-radius: initial;
	font-size: 0.75rem;
	margin-top: 0;
	padding: 0.28125rem 0.625rem;
	width:180px;
}
.p-header__sp-title {
	display:block;
	position: relative;
	z-index: 19;
}
.p-header__sp-title figure img{
	width:191px;
	height:3.41rem;
	object-fit: cover;
}

.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
  }
  
header {
	height: 60px;
	width: 100%;
	background: #333;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: top 0.3s, opacity 0.3s; /* Added opacity transition */
	position: relative; /* Initial position */
	cursor: pointer; /* Add cursor to indicate clickable */
}
.fixed {
	position: sticky !important;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}
.fade-in {
	opacity: 1;
}

@media screen and (min-width: 768px) {

	.p-header{
		display:block;
	}

	.p-header__sp-title {
		display:none;
	}

    .p-header__inner {
        justify-content: space-between;
        margin: auto;
        max-width: 75rem;
        padding: 0 1.875rem;
        width: 100%;
    }
    
    .p-header__drawer {
        display: none;
    }
    
    .p-header__pc-nav {
        display: block;
    }
    
    .p-header__pc-snsBody {
        display: flex;
        gap: 1.5rem;
    }
    
    .p-header__instagram {
        display: inline-block;
    }
}
@media screen and (max-width: 1100px) {
	.p-header__search form input{
		width:150px;
	}
}
@media screen and (max-width: 950px) {
	.p-header__search form input{
		width:120px;
	}
}
@media screen and (max-width: 768px) {
	.p-header__search form input{
		width:170px;
	}
}