@charset "utf-8";

body {
	font: 16px "Hiragino Kaku Gothic ProN","メイリオ",'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	background: #fff;
	color: #000;
}

a {
    color: #000;
    text-decoration: none;
}

* { box-sizing: border-box; }

.pc { display: block; }
.sp { display: none; }

.contentsWrap {
    display: flex;
    flex-direction: column;
    height: 100vh;
}


/*HEADER------------------------------------------------*/
header {
	width:100%;
	height: 82px;
}
header .inner {
	width: inherit;
	max-width: 1050px;
	margin: 0 auto;
	padding: 5px 0;
    overflow: hidden;
    position: relative;
}
header .logo {
    width: 179px;
    height: 73px;
    margin: 0 0 0 5px;
}
header .logo img {
	width: 100%;
}
#menu {
    position: absolute;
    top: 32px;
    right: 0;
}
#menu ul {
    font-size: 0;
}
#menu ul li {
    min-width: 95px;
    height: 24px;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 0 30px;
	display: inline-block;
}
#menu ul li:first-child {
    margin: 0;
}
#menu ul li a {
	border-radius: 12px;
    font-weight: bold;
    padding: 0 20px;
    display: block;
}
#menu ul li a:hover {
	background: #ff7e74;
	color: #fff;
}


#lang {
	margin: 0 0 0 40px;
	float: right;
}
#lang li{
	padding: 14px 20px 0 0;
	margin: 0;
}
#lang li a{
	padding: 10px 20px;
	margin: 0 0 0 -20px;
	background: #ffffff;
	border-radius: 20px;
}
#lang li a:hover{
	background: #ff7e74;
	color: #ffffff;
}
#lang #current{
	color:#cccccc;
}


/*FOOTER------------------------------------------------*/
footer {
	width:100%;
	height: 60px;
	background: #fff;
    margin-top: auto;
}
footer p {
	font-size: 15px;
    line-height: 60px;
    text-align: center;
}
footer a {
	text-decoration: underline;
}
footer a:hover{
	text-decoration: none;
}

/*PAGE TOP------------------------------------------------*/
#page-top {
    position: fixed;
    bottom: 50px;
    right: 20px;
    display: none;
    z-index: 1010;
}
#page-top a {
    background: #ff9577;
    border-radius: 25px;
    color: #fff;
    width: 50px;
    height: 50px;
    padding: 14px 0;
    text-align: center;
    text-decoration: none;
    display: block;
}
#page-top a:hover {
    background: #ffb193;
}

/*スマホ用-----------------------------------------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
    }
    
    .pc { display: none; }
    .sp { display: block; }


    /*HEADER------------------------------------------------*/
    header {
        height: auto;
    }
    header .inner {
        max-width: 100%;
        padding: 5px 0 0;
    }
    header .logo {
        width: 179px;
        height: 73px;
        margin: 0 0 0 5px;
    }
    #menu{
        border-top: #ffe1f2 1px solid;
        width: 100%;
        height: auto;
        padding: 0 3.6vw;
        position: static;
    }
    #menu ul {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    #menu ul li {
        width: auto;
        min-width: 0;
        height: 42px;
        margin: 0;
        padding: 10px 0;
        font-size: 2.66vw;
        display: block;
    }
    #menu ul li a {
        height: 24px;
        border-radius: 12px;
        padding: 0 11px;
        line-height: 24px;
    }


    /*PAGE TOP------------------------------------------------*/
    #page-top {
        bottom: 15px;
        right: 10px;
    }
}


