@charset "UTF-8";

/*======================================================
全端末共通設定
======================================================*/

/*-----------------------------
フォント設定
-----------------------------*/



/*-----------------------------
便利な使い回し
-----------------------------*/

/*　テーブル標準 */

.ta th, .ta td, .ta caption{
    border:1px solid #999;
    padding:4px;
    
}

/* スマホのときだけ表示しない設定 */
    

    @media screen and (max-width: 480px) {
        .no-sm{
            display: none;
        }
    }



/*　マージンだけとかフロートとかフォントサイズとか　*/

.box {
	margin-bottom: 30px;
	overflow: hidden;
}

.mb10 {
	margin-bottom: 10px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb30{
    margin-bottom:30px;
}

.m {
	margin-bottom: 30px;
}

.alignleft {
	margin-right: 80px;
	margin-bottom: 20px;
	float: left;
}

.alignright {
	margin-left: 80px;
	margin-bottom: 20px;
	float: right;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

.font10 {
	font-size: 1.0rem;
}

.font11{
    font-size:1.1rem;
}

.font12{
    font-size:1.2rem;
}

.font13{
    font-size:1.3rem;
}

.font14{
    font-size:1.4rem;
}

.font15{
    font-size:1.5rem;
}

.font16{    
    font-size:1.6rem;
}
.font17{    
    font-size:1.7rem;
}
.font18{    
    font-size:1.8rem;
}
.font19{    
    font-size:1.9rem;
}
.font20{    
    font-size:2.0rem;
}
.font21{    
    font-size:2.1rem;
}
.font22{    
    font-size:2.2rem;
}
.font23{    
    font-size:2.3rem;
}

/*　よく使う色　*/

.redb{
    color:#f00;
    font-weight: bold;
}

.red{
    color:#f00;
}

/*　マージンの削除 */

dl dt, dl dd{
    padding:0;
    margin:0;
}

/* イメージを100%で　*/

img{
    max-width: 100%;
    height: auto;
    width /***/:auto;
}

.resize img{ 
    max-width: 100vw;
}

/*　　マウスオーバー設定　*/


a:hover img{
    opacity: 0.5;
    filter: alpha(opacity=50);
    -webkit-transition:0.4s;
    transition: 0.4s;
}

.tel-link a:link,.tel-link a:hover,.tel-link a:active{
    text-decoration: none;
}

a:link,a:visited{
    color:#666;
}

a:hover{
    color:#F70241;
}


/*　　禁則処理　*/

p{ line-break: normal; }
p{ line-break: strict; }




/*======================================================
PC向けおよび大型タブレット向けのレイアウトの指定：481px～768px
======================================================*/
@media screen and (min-width: 481px) {
    

    
}
/*======================================================
PC向けおよび大型タブレット向けのレイアウトの指定：769px～
======================================================*/

@media only screen and (min-width: 768px) {
    
     

    
}