@charset "utf-8";

/* 管理画面　*/

.gjs-dashed .spMenu {
    opacity: 1;
    pointer-events: auto;
}

/*----------*/

.sp-header-illust-box01 {
    max-width: 106px;
    width: 20%;
    position: absolute;
    left: 10%;
    bottom: 10%;
    z-index: 0;
}

.header-menu-contact-area {
    margin: 40px;
    max-width: 580px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 24px 20px;
}

.sp-menu-link-area {
    margin: 20px 0 0;
    max-width: 316px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hPcHamBox01-container {
    /* position: fixed; */
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.sp-header-contact-area {
    margin: 40px auto 0;
    max-width: 399px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.spNavListBox01 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*----- ハンバーガーメニュー -----*/


.spNavBtnTxt {
    margin: 5px auto 0;
    font-size: 12px;
    color: #FFF;
}

.spNavLinkTxt {
    margin: 5px auto 0;
    font-size: 12px;
    color: #FFFFFF;
}

.hPcHamBox01 {
    margin: 0 0 0 auto;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: var(--bg-secondary);
    transform-origin: center;
    transition: all .3s;
}

.hPcHamBox01:hover {
    /* opacity: 0.7; */
	transform: scale(1.2);
}

/* .spNavBtn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.spNavBtn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.spNavBtnBar {
    width: 30px;
    height: 12px;
    position: relative;
}

.spNavBtnBarItem {
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    right: 0;
    transition: ease .5s;
}

.spNavBtnBarItem:nth-of-type(1) {
    top: 0;
	width: 100%;
}

.spNavBtnBarItem:nth-of-type(2) {
    display: none;
    top: 44%;
	width: 100%;
}

.spNavBtnBarItem:nth-of-type(3) {
    bottom: 0;
	width: 100%;
}

.open .spNavBtnBar {
    width: 70%;
}

.open .spNavBtnBarItem {
    transition: ease .5s;
}

.open .spNavBtnBarItem:nth-of-type(1) {
    transform: translateY(6px) rotate(-30deg);
}

.open .spNavBtnBarItem:nth-of-type(2) {
    opacity: 0;
}

.open .spNavBtnBarItem:nth-of-type(3) {
    transform: translateY(-1px) rotate(30deg);
	bottom: 20%;
	width: 100%;
}

.spMenu {
    margin: auto;
    padding: 0;
    max-width: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    /* left: 0; */
    right: -100%;
    /* bottom: 0; */
    /*background: rgb(0 0 0 / 25%);*/
    z-index: 999;
    /* pointer-events: none; */
    transition: ease .5s;
    /* transition: opacity 0.4s ease, transform 0.4s ease; */
    /* opacity: 0; */
}

.spMenu.open {
    /* opacity: 1; */
    /* pointer-events: auto; */
    right: 0;
}

.spMenuArea {
    width: 100%;
    height: 100%;
}

.spMenuConte {
    padding: 110px 15px 130px;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 0 0 auto;
    background: #EFE6D2;
}

.spMenuConte::-webkit-scrollbar {
    display:none;
}

.hSpNavBox {
    max-width: 266px;
    width: 100%;
    margin: 10px 0 0;
    text-align: center;
}

.spNavList01 {
	margin: 24px 0 0;
    display: block;
    color: var(--base-font-color);
    font-size: 16px;
    font-weight: 700;
	letter-spacing: 0.05em;
    position: relative;
    transition: all .3s;
}

/* .spNavList01::before {
    content: "";
    display: block;
	margin: 28px 0 0;
    width: 0;
    height: 1px;
    background: var(--bg-primary);
    position: absolute;
    left: 0;
    bottom: -2%;
    margin: auto;
    transition: all .4s;
} */

.spNavList01:hover {
    color: var(--base-font-color);
}

.spNavList01 p {
    display: inline;
    padding: 0 0 5px;
    position: relative;
    transition: all .3s;
}

.spNavList01 p::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: var(--base-font-color);
    position: absolute;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: all .3s;
}

.spNavList01:hover p::before {
    width: 100%;
}

/* .spNavList01:hover::before {
    width: 100%;
} */

/*スマホ時のナビ*/

.spNav {
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
}

.spNavArea {
    width: 100%;
    height: 100%;
    display: flex;
    /* background: #ACACAC; */
    background: var(--primary);
}

.spNavBlock {
	flex: 1;
	display: flex;
}

.spNavConte-l {
	width: 33.33%;
    border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
}

.spNavConte-l:last-child {
	border-right: 0;
}

.spNavLink {
    padding: 5px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spNavLinkIconBx {
	width: 100%;
	height: 30px;
	position: relative;
}

.spNavLinkIconBx > * {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.spFa {
    font-size: 23px;
    color: #FFFFFF;
}

.spFa.spFa-pageTop {
	font-size: 20px;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

.header-menu-contact-area {
    grid-template-columns: repeat(2, 1fr);
}
    
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.header-sp-nav-area {
    flex-direction: row;
    justify-content: space-between;
}


.spNavListBox01 {
    align-items: flex-start;
}

.spNav {
    display: none;
}

.hHamBox {
    height: 96px;
    max-width: 96px;
    width: 100%;
    margin: 0;
}

.sp-menu-link-area {
    margin: 50px 0 0;
}

.spMenu {
    margin: 0 0 0 auto;
    max-width: 696px;
    width: 100%;
}

.spMenuConte {
    padding: 200px 15px 130px;
}

.hPcHamBox01-container {
    max-width: 555px;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.hPcHamBox01 {
    height: 50px;
    width: 50px;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1024px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */