@charset "UTF-8";

/* ================================================ */
/*  Base																						*/
/* ================================================ */

html{
	overflow: auto;
    scroll-behavior: smooth;
}

body{
    -webkit-text-size-adjust: 100%;
    color: #000;
    padding: 0;
    text-align: left;
    height: auto;
    font-size: 16px;
	line-height: 2.0em;
    font-family: Noto Sans JP, 游ゴシック体, yugothic, Yu Gothic M, 游ゴシック Medium, Yu Gothic Medium, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN W3, hirakakupron-w3, ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, meiryo, osaka, ＭＳ Ｐゴシック, MS PGothic, helvetica Neue, helveticaneue, helvetica, arial, Segoe UI, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
	overflow: hidden;
}

img {
width: 100%;
}


/* border-box */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
 }

/*++++++++++++++++++++++++++
	Link : Text
++++++++++++++++++++++++++*/
a {
    text-decoration: none;
    color: #000;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    opacity:1;
}

a:active {
    text-decoration: none;
}


/*++++++++++++++++++++++++++
	font
++++++++++++++++++++++++++*/

em {
    font-style: normal;
}

/*++++++++++++++++++++++++++
	Link : Img
++++++++++++++++++++++++++*/
/*  PC  */
@media screen and (min-width: 641px){
	a:hover img {
		filter: alpha(opacity=75);
		-moz-opacity:0.75;
		opacity:0.75;
	}
	a:hover{
		filter: alpha(opacity=75);
		-moz-opacity:0.75;
		opacity:0.75;
	}
}


/*++++++++++++++++++++++++++
	改行
++++++++++++++++++++++++++*/
@media screen and (min-width: 600px){
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 600px){
  .pc { display:none; }
  .sp { display:block; }
}


/*++++++++++++++++++++++++++
	汎用クラス
++++++++++++++++++++++++++*/

dl,dt,dd,ul,ol,li{
	margin: 0px;
	padding: 0px;
	list-style:none;
}

.clear_both {
	clear: both;
}
.indent {
	text-indent: -1em;
	padding-left: 1em;
}



