@charset "utf-8";
/******************************************
 ■ 画面幅指定なし（PC）
******************************************/
/* common */
html {
    font-family: "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-size: 19px;
    background-color: #fff;
    color: #1E1E1E;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a:hover img {
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    opacity: .7;
}
a {
    text-decoration: none;
    color: #29abe2;
}
a:hover {
    color: #333;
}
a.toumei_click {
    opacity: 0;
    background-color: #FFF;
    display: block;
}
a:hover.toumei_click {
    -webkit-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    opacity: .7;
}
/* container header contents footer */
.lp_block {
    max-width: 984px;
    margin: auto;
    background-color: #FFF;
}
.lp_block section {
    position: relative;
}
.lp_block img {
    width: 100%;
}
/* slider */
.slider {
	margin: auto;
	padding: 10px;
	overflow: hidden;
	height:250px;
	background-color: #edeede;/**/
}

img.w20 {
	width: unset;/**/
	max-width: 220px;
	height: auto;
	margin-right: 10px;
}
/* pc ⇔ sp */
.pc {
    display: block;
}
.sp {
    display: none;
}

/******************************************
 ■ 画面幅768px以下（タブレット）を上書き
******************************************/
@media screen and (max-width: 768px) {
/* pc ⇔ sp */
.pc {
    display: none;
}
.sp {
    display: block;
}
}
