@charset "utf-8";
/* CSS Document */
/* 目次 
1. リセット
2. 共通
*/

/**************************************************
1. リセット
**************************************************/
* {
  margin: 0;
  padding: 0;
  line-height:1.0;}
article,aside,details,figcaption,figure,footer,pc-header,main,menu,nav,section,summary {display: block;}
html {font-size: 62.5%;}
body {font: normal 1.4rem/1.6  "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Osaka, sans-serif;
  color:#333;}
html,body{ margin:0; padding:0;}
table,thead,tbody,tr,th,td{border-collapse:collapse; border-spacing: 0;}
td,th {padding: 0;}
ul, ol{list-style: none;}
a {text-decoration: none; }
/*a:hover, a:active, a:focus {color: #33383f;}*/
img {vertical-align: bottom; border: 0;}
i, cite, em, var, address, dfn {font-style:normal;}
*, *:before, *:after {box-sizing: border-box;}
small { font-size: 12px;font-size: 1.2rem;}
button,select {text-transform: none;}
/* IE用 */
a {background-color: transparent;}
a:active,a:hover {outline: 0;}
button {overflow: visible;}
textarea {overflow: auto;}
/* firefox用リンクをクリックした後に表示される「枠線」を消す */
a,a:focus{outline: none;}
/* iOSでTEL link無効 */
a[href^="tel"]{
  color:inherit;
  text-decoration:none;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
/*スクロールバーの領域表示確保*/
html {overflow-y:scroll;}
/* body */
body{width:100%;}
/*スライダーの画像の右にできる余白を隠す*/
#container{overflow: hidden;}
/*タブ切り替え*/
.ChangeElem_Panel{display: none;}
/* Androidでタップ時、オレンジの枠を消す */
*,button {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-box-shadow: none;
    box-shadow: none;   
    outline: none;
}

/**************************************************
2. 共通
**************************************************/
/* clearfix */
.cf {
  clear: both;
}
.cf:after {
  content: "";
  height: 0;
  display: block;
  clear: both;
}
/* float */
.float-l{float: left;}
.float-r{float: right;}

/*リンク*/
a:hover{
  opacity: 0.8;
  transition: all 0.3s ease;
}

/*画像*/
img {
  width:100%;
  height:auto;
}
a:hover img,
a:active img {opacity: 0.8;}

/* Youtube */
.movie-wrap {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}
.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*------------------------------
レイアウト ※変更不可
------------------------------*/
/* background */
.bg-lightblue{
  background-color: #E5F5FA;
}
.bg-lightgreen{
  background-color: #EBF2F0;
}
.bg-beige{
  background-color: #EDEAE7;
}

/*------------------------------
テキスト ※変更不可
------------------------------*/
.font14{
  font-size: 1.4rem;
}
.bold {font-weight: bold;}
.text-l {text-align:left;}
.text-r {text-align:right;}
.text-c {text-align:center;}

/* 色 */
.white {color: #fff;}
.blue { color: #377EB9;}
.pink { color: #E67E8F;}


/* テキスト用余白 */
.ma-b05em {
  margin-bottom: 0.5em;
}
.ma-b1em {
  margin-bottom: 1em;
}

/*下線*/
.marker-yellow {
  background: linear-gradient(transparent 60%, #fce774 0%);
}
/* 1行目以降インデント */
.indentback{
  text-indent: -1em;
  padding-left: 1em;
}

/*------------------------------
テキストリンク ※変更不可
------------------------------*/
a.text-link:link,
a.text-link:visited,
a.text-link:hover,
a.text-link:active{
  color: #111;
  text-decoration: underline;
}
a.text-link:hover{
  opacity: 0.8;
}

/*------------------------------
リスト表示 ※変更不可
------------------------------*/
/* li一行目以降インデント */
ul.indent1>li {
  text-indent: -1em;
  padding-left: 1em;
}

/* disc・*/
ul.disc{
  margin-left: 2em;
}
ul.disc>li {
  list-style: disc;
  margin-bottom: 1em;
}
/* 123 */
ol.decimal{
  margin-left: 2em;
}
ol.decimal>li {
  list-style: decimal;
  margin-bottom: 1em;
}
/* abc */
ol.lower-latin{
  margin-left: 2em;
}
ol.lower-latin>li {
  list-style: lower-latin;
  margin-bottom: 1em;
}


/*--------------------------------------------------
画像スクロール共通 .sp-scroll
----------------------------------------------------*/
@media screen and (max-width: 699px) {
  .sp-scroll p{
    margin: 0 auto 5px ;
    width: 700px;
    height: auto;
  }
  /*スクロール*/
  .sp-scroll{
    overflow: auto;
  }
  /*スクロールバーの横幅指定*/
  .sp-scroll::-webkit-scrollbar {
    height: 10px;
  }
  /*スクロールバーの背景色・角丸指定*/
  .sp-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #eee;
  }
  /*スクロールバーの色・角丸指定*/
  .sp-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background:#aaa;
  }
}
/*--------------------------------------------------
テーブルスクロール共通 .sp-scroll-t
----------------------------------------------------*/
.sp-scroll-t table {
  margin: 0 0 10px;
}
/*スクロール*/
.sp-scroll-t{
  width: 100%;
  overflow: auto;
  margin-bottom: 10px;
}
/*スクロールバーの横幅指定*/
.sp-scroll-t::-webkit-scrollbar {
  height: 10px;
}
/*スクロールバーの背景色・角丸指定*/
.sp-scroll-t::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #eee;
}
/*スクロールバーの色・角丸指定*/
.sp-scroll-t::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background:#aaa;
}


