@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
/*--------------------------------------------
共通 
--------------------------------------------*/
#christmascake-20231001 {
    text-align: center;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

#christmascake-20231001 * {
    box-sizing: border-box;
}

#christmascake-20231001 a {
    text-decoration: none;
}


/*--------------------------------------------
MV
--------------------------------------------*/
#christmascake-20231001 .mv {
    margin: 0;
	  position: relative;
}

#christmascake-20231001 .mv img {
    max-width: 100%;
}

/*--------------------------------------------
カテゴリ名
--------------------------------------------*/

#christmascake-20231001 .category-name {
    position: absolute;
	  bottom: 50px;
	  left: 25%;
	  font-size: 36px;
	  color: #fff;
}




/*--------------------------------------------
ナビ
--------------------------------------------*/
#christmascake-20231001 .navi_area {
    padding: 20px 10px;
    letter-spacing: .1rem;
	  background-color: #f0e5b8;
}



#christmascake-20231001 .navi{
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
}

/*--------------------------------------------
ナビ＞テキストボタン
--------------------------------------------*/
#christmascake-20231001 .navi li {
    position: relative;
    font-size: 14px;
    text-decoration: none;
    transition: .4s;
    margin-bottom: 5px;
}


#christmascake-20231001 .navi li:hover {
    opacity: .7;
    cursor: pointer;
}

#christmascake-20231001 .navi li a {
    color: #0c6d5f;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 0.8em 0;
    font-family: "Noto Serif JP", sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.08em;
    background: #fff;
	  border: 2px solid #0c6d5f;
    flex-direction: column;
    background-size: 30px 30px;
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
	line-height: 1.2;
}


#christmascake-20231001 .navi li a:after {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #0c6d5f;
    border-right: solid 2px #0c6d5f;
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -4px;
}




#christmascake-20231001 .navi li a .txt-s {
    font-size: 15px;
    letter-spacing: 0;
}



/*--------------------------------------------
３列
--------------------------------------------*/
#christmascake-20231001 .navi {
    margin-top: 0;
}


#christmascake-20231001 .navi li {
    width: calc((99.97% - 15px) / 3);
    height: 70px;
	margin-right: 5px;
}



#christmascake-20231001 .navi li:last-child {
    margin-right: 0;
}





/*--------------------------------------------
PCSP_表示・非表示切り替え
--------------------------------------------*/
#christmascake-20231001 .pc {
    display: block;
}

#christmascake-20231001 .sp {
    display: none;
}

