@charset "utf-8";

/*基本設定
---------------------------------------*/

html {
    font-size: 62.5%;
    /* 標準の文字サイズを10pxに設定 */
}
body {
    color: #000;
    font-size: 1.5rem;
    font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.5;
    background: #ddd;
    -webkit-text-size-adjust: 100%;/* フォントサイズ自動調整OFF */
}

/*Google Font
---------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
.opensans      {font-family: 'Open Sans', sans-serif;}
.opensans.w400 {font-weight: 400;}
.opensans.w600 {font-weight: 600;}
.opensans.w700 {font-weight: 700;}

/*画像の自動リサイズ
---------------------------------------*/
img {
    max-width: 100%;
    height: auto;
}

/*SP/PC表示切り替え
---------------------------------------*/
.sp { display: block !important; }
.pc { display: none  !important; }

@media only screen and (min-width: 769px) {
.sp { display: none  !important; }
.pc { display: block !important; }
}

/*リンク
---------------------------------------*/
a:link {color: #1d85ca;text-decoration: underline;}
a:visited {color: #1d85ca;text-decoration: underline;}
a:hover {color: #ec4536;text-decoration: underline;}
a:active {color: #ec4536;text-decoration: underline;}

/*テキスト関連
---------------------------------------*/
p,ul,ol,dl,table {
    margin-bottom: 1.6rem;
}
h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 2rem;
}
h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
}
h3 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 2rem;
}
h4,h5,h6 {
    margin-bottom: .5rem;
}
p {}
em {}
strong {}
ul,ol {}
ol {list-style: decimal inside;}
li {margin-bottom: .5rem;}
dl {}
dt {
    font-weight: bold;
    margin-bottom: .5rem;
}
dd {}
caption {
    text-align: left;
    font-weight: bold;
    margin-bottom: .5rem;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th,td {
    padding: 20px;
    vertical-align: middle;
    border: 1px solid #ddd;
}
th {
    background: #f5f5f5;
}
td {
    background: #fff;
}



/*構造
---------------------------------------*/


#wrapper {}

.container {
    padding: 30px;
    background: #fff;
}

.container_w100 {
    padding: 30px;
    background: #fff;
}

/*ヘッダー
---------------------------------------*/

header {
    width: 100%;
    height: 100px;
    line-height: 100px;
    background: #000;
    color: #fff;
    text-align: center;
}

/*メイン
---------------------------------------*/

main {
  max-width: 750px;
  padding: 30px;
  background: #fff;
  margin: 30px auto;
}

/*フッター
---------------------------------------*/

footer {
    width: 100%;
    height: 100px;
    line-height: 100px;
    background: #000;
    color: #fff;
    text-align: center;
}


/* PC
=============================================== */
@media only screen and (min-width: 769px) {

    .container {
        max-width: 960px;
        margin: 0 auto;
    }

}

/*end-PC*/














































/*調整用スタイル
---------------------------------------*/

/*マージン*/
.mt5 {margin-top: 5px !important;}
.mt10{margin-top:10px !important;}
.mt15{margin-top:15px !important;}
.mt20{margin-top:20px !important;}
.mt25{margin-top:25px !important;}
.mt30{margin-top:30px !important;}
.mt35{margin-top:35px !important;}
.mt40{margin-top:40px !important;}
.mt45{margin-top:45px !important;}
.mt50{margin-top:50px !important;}

.mb5 {margin-bottom: 5px !important;}
.mb10{margin-bottom:10px !important;}
.mb15{margin-bottom:15px !important;}
.mb20{margin-bottom:20px !important;}
.mb25{margin-bottom:25px !important;}
.mb30{margin-bottom:30px !important;}
.mb35{margin-bottom:35px !important;}
.mb40{margin-bottom:40px !important;}
.mb45{margin-bottom:45px !important;}
.mb50{margin-bottom:50px !important;}

.ml5 {margin-left: 5px !important;}
.ml10{margin-left:10px !important;}
.ml15{margin-left:15px !important;}
.ml20{margin-left:20px !important;}
.ml25{margin-left:25px !important;}
.ml30{margin-left:30px !important;}
.ml35{margin-left:35px !important;}
.ml40{margin-left:40px !important;}
.ml45{margin-left:45px !important;}
.ml50{margin-left:50px !important;}

.mr5{margin-right: 5px !important;}
.mr10{margin-right:10px !important;}
.mr15{margin-right:15px !important;}
.mr20{margin-right:20px !important;}
.mr25{margin-right:25px !important;}
.mr30{margin-right:30px !important;}
.mr35{margin-right:35px !important;}
.mr40{margin-right:40px !important;}
.mr45{margin-right:45px !important;}
.mr50{margin-right:50px !important;}

.noMg{margin:0 !important;}

/*左右マージン*/
.inr5 {padding:0  5px;}
.inr10{padding:0 10px;}
.inr15{padding:0 15px;}
.inr20{padding:0 20px;}
.inr25{padding:0 25px;}
.inr30{padding:0 30px;}
.inr35{padding:0 35px;}
.inr40{padding:0 40px;}
.inr45{padding:0 45px;}
.inr50{padding:0 50px;}

/*フロート*/
.float-l{float:left;}
.float-r{float:right;}

/*アライン*/
.align-c{text-align: center !important;}
.align-l{text-align: left   !important;}
.align-r{text-align: right  !important;}

/*フォントサイズ（相対）*/
big   {font-size:1.2em}
small {font-size:0.8em}

.learge    {font-size:1.2em}
.x-learge  {font-size:1.4em}
.small     {font-size:0.8em}
.x-small   {font-size:0.6em}

/*画像透過*/
a.imgHover:hover img{
    opacity:0.7;
    filter: alpha(opacity=70);
    -ms-filter:"alpha( opacity=70)";
    transition: opacity 0.3s ease;
}

/*回りこみ解除禁止（簡易crearfix）*/
.ovh{overflow:hidden;}

/*boeder*/
hr.border{
	clear:both;
	padding:0;
	display:block;
	height:1px;
	border:0;   
	border-top:1px dotted #666;
}