@charset "utf-8";

/************** 共通設定 **************/

body {
    font-family: '游明朝体','游明朝','Yu Mincho', YuMincho,'Sawarabi Mincho',serif;
    background-color: #FFF;
    color: #000;
    font-size: 62.5%;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
.inner {
    width: 85%;
    margin: 0 auto;
}

/************** textLine **************/

.inner h2 img {
    float: left;
}
.inner h2 p {
    font-size: 3.6em;
    padding: 15px;
}

/************** button **************/

.button {
    width: 310px;
    margin: 0 auto;
}
.button2 {
    width: 310px;
    margin: 0 auto;
}
.button p {
    margin-top: 10px; 
    padding: 10px 15px;
    font-family: '游ゴシック体',"游ゴシック", 'Yu Gothic', YuGothic, 'Noto Sans Japanese',sans-serif;
    font-size: 1.6em;
    text-align: center;
    border-radius: 10px;
}
.button2 p {
    margin-top: 10px; 
    padding: 10px 15px;
    font-family: '游ゴシック体',"游ゴシック", 'Yu Gothic', YuGothic, 'Noto Sans Japanese',sans-serif;
    font-size: 1.6em;
    text-align: center;
}
.button a {
    color: #FFF;
    text-decoration: none;
}
.button2 a {
    color: #FFF;
    text-decoration: none;
}
.button p:hover {
    animation: big 0.2s;
    animation-fill-mode: forwards;
}
.button2 p:hover {
    animation: big 0.2s;
    animation-fill-mode: forwards;
}
@keyframes big {
    0% {transform: scale(1);}
    100% {transform: scale(1.1);}
}
.button p:active {
    animation: small 0.1s;
    animation-fill-mode: forwards;
}
.button2 p:active {
    animation: small 0.1s;
    animation-fill-mode: forwards;
}
@keyframes small {
    100% {transform: scale(0.9);}
}


/************** page_top **************/

#pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: none;
    cursor: pointer;
}

/************** header **************/

header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 100;
}

header a {
    text-decoration: none;
    color: #FFF;
}

#logo {
    width: 25%;
    float: left;
}
#logo h2 {
    float: left;
    padding: 10px 6% 0 0;
}
#logo h1 {
    font-size: 1.8em;
    padding-top: 16px;
    line-height: 35px;
}
#logo span {
    font-weight: bold;
    font-size: 2em;
}
#navigation {
    float: right;
    height: 100px;
}
#sns {
    width: 180px;
    height: 34px;
    padding-top: 15px;
    float: right;
}
#sns li {
    margin-right: 13.5%;
    float: left;
    font-family: '游ゴシック体',"游ゴシック", 'Yu Gothic', YuGothic, 'Noto Sans Japanese', sans-serif;
    font-size: 2.2em;
}
#sns li:last-child {
    margin-right: 0;
}
.blog {
    padding: 5px 0 0 2%;
}
.blog a:hover {
    color: #c14b23;
}
#menu {
    width: 815px;
    height: 12px;
    float: right;
    margin-top: 16px;
}
#menu li {
    float: left;
    margin-right: 4%;
    margin-bottom: 10px;
    font-size: 1.8em;
}
#menu li:last-child {
    margin-right: 0;
}
#menu a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}
#menu a:before {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #FFF;
    transform: scale(0,1);
    transition: 0.4s;
}
#menu a:hover:before {
    transform: scale(1);
}

#dl-menu {
	display: none;
}

/************** footer **************/

footer {
    line-height: 1.5em;
    text-align: center;
    margin-bottom: 20px;
}
footer span {
    font-size: 1.2em;
}

/************** fadein **************/

.fadein {
    opacity: 0;
    transform: translate(0,50px);
    transition: all 1500ms;
}
.fadein.scrollin {
    opacity: 1;
    transform: translate(0,0);
}

/************** responsive **************/

@media screen and (min-width: 1500px) { 
    .inner {
        width: 1360px;
    }
}

@media screen and (max-width: 1024px) {
    .inner {
        width: 94%;
        margin: 0 auto;
    }
    #logo {
        width: 26%;
    }
    #sns li {
        margin-right: 15%;
    }
    #sns li:last-child {
        margin-right: 0;
    }
    #menu {
        width: 695px;
    }
    #menu li {
        margin-right: 3.5%;
        font-size: 1.6em;
    }
    #menu li:last-child {
        margin-right: 0;
    }    
}

@media screen and (max-width: 960px) {
    .inner {
        width: 93%;
    }
    #logo {
        width: 35%;
    }
    nav {
		display: none;
	}
    #sns {
        display: none;
    }
    #dl-menu {
		display: block;
		position: fixed;
		top: 37px;
		right: 20px;
	}
	
	#dl-menu ul li a {
		text-decoration: none;
		color: #000;
	}
    .blog {
        padding: 0;
    }
}

@media screen and (max-width: 560px) {
    .inner {
        width: 95%;
    }
    .inner h2 p {
        font-size: 3.2em;
        padding: 15px 0;
    }
    #logo {
        width: 85%;
    }
    #logo h2 {
        padding-right: 2%;
    }
    footer p {
        font-size: 0.5em;
        line-height: 1.5em;
    }
    footer span {
        font-size: 1.2em;
    } 
}