@charset "utf-8";
/*
Template:twentysixteen
Theme Name:twentysixteen_child
*/ 
@-ms-viewport {/* IEでスクロールバーがコンテンツに重なるやつ対策*/
    width: auto;
    initial-scale: 1;
}

html,
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    height: 100%;
}
body {
    color: #575757;
}

* {
    letter-spacing: .1em;
}

p {
    line-height: 1.7;
}

img,
picture {
		display: block;
}
img[src$=".svg"] {
    width: 100%;
}


/** media screen base **/
@media screen and (max-width:767px) {
.pc,.tablet {
    display: none;
}
.sp {
    display: block;
}
}
@media screen and (width:768px) {
.pc,.sp {
    display: none;
}
.tablet {
    display: block;
}
}
@media screen and (min-width:769px) {
.tablet,.sp {
    display: none;
}
.pc {
    display: block;
}
}
/** end media screen base **/

.flex {
    display: flex;
    justify-content: space-between;
}

/** リンクふわっと **/
a img,
a {
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -ms-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
}
a:hover img,
a:hover {
    opacity: .7;
    -webkit-opacity: .7;
    -moz-opacity: .7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
}
/** end リンクふわっと **/



/*———————————
color
———————————*/
:root {
    --accent-color: #F89826;
    --base-color: #2687CE;
    --main-color: #7BBAE8;
}


