header {
    height: 60px;
    width: 100%;
    padding: 0px 15px;
    position: fixed;
    top: 0;
    z-index: 10;
    display: flex;
    text-align: center;
    background-color: #f9f8f4;
}

header ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.logo {
    font-size: 25px;
}
nav .pc ul {
    /* display: flex; */
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    display: block;
}
/* nav ul ul{
	display: block;
} */


nav .pc li{
    position: relative;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 50px;
    /* text-transform: uppercase; */
    display: inline-block;
}

nav ul li a{
    display: block;
    text-decoration: none;
    color: #D86F7C !important;
    line-height: 50px;
    padding: 0 20px;
}

nav ul li a:hover{
	/* color: #f8ccd3 !important; */
    color: #D86F7C !important;
	/* border-bottom: solid 1px currentColor; */
}

nav .pc li.has-child ul li a:hover,
nav .pc li.has-child ul li a:active{
	color: #fff !important;
	background:#FFDBE1 !important;
}

/* nav li.has-child ul {
    display: block;
    position: absolute;
    left: 0;
    top: 40px;
    z-index: 4;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    width: 200px;
} */

nav li.has-child ul {
    position: absolute;
    left: 0;
    top: 62px;
    z-index: 4;
    background: #28BFE7;
    width: 180px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}
nav ul ul {
    display: block;
}

nav li.has-child ul li {
    background: #28BFE7;
    width: 180px;
    visibility: hidden;
}

nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
    visibility: collapse;
    opacity: 1;
}

/*ナビゲーションaタグの形状*/
/* nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#3577CA;
} */

.sm {
    display: none;
}

nav {
    margin: auto !important;
    text-align: center;
}



/* nav li.has-child ul{
    display: block;
	position: absolute;
	left:0;
	top: 40px;
	z-index: 4;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
	width: 200px;
}

nav li.has-child li{
    text-align: center;
	background:#f9f8f4;
	width: 200px;
    transition: all  0.3s ease;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	color: #fff !important;
	background:#FFDBE1 !important;
} */


/**********************************　
以下、ハンバーガーメニューの設定　
************************************/
/* 900px未満 */
@media (max-width: 900px) {
    .pc {
        display: none;
    }

    #hamburger {
        background-color: transparent;
        position: relative;
        cursor: pointer;
        margin: 0 0 0 auto;
        height: 60px;
        width: 60px;
    }

    .icon span {
        position: absolute;
        width: 30px;
        height: 4px;
        background-color: black;
        border-radius: 8px;
        transition: ease 0.75s;
    }

    .icon span:nth-of-type(1) {
        top: 16px;
    }
    .icon span:nth-of-type(2) {
        top: 28px;
    }
    .icon span:nth-of-type(3) {
        bottom: 16px;
    }

    .close span:nth-of-type(1) {
        transform: rotate(45deg);
        top: 28px;
    }

    .close span:nth-of-type(2) {
        opacity: 0;
    }

    .close span:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 28px;
    }

    .sm {
        top: 50px;
        left: 0px;
        position: absolute;
        z-index: 10;
        width: 100%;
        color: #fff !important;
        background:#FFDBE1 !important;
        display: none;	/*ハンバーガーメニューのリスト（スマホ用）を非表示*/
    }

    ul {
        flex-direction: column;
    }

    a {
        text-align: center; 
        border-top: solid 0.5px rgba(255, 255, 255, 0.6);
    }
}