@charset "utf-8";

/*====================================
	
----------------------------------
  Color
----------------------------------
メイン    : #000
アクセント : 

----------------------------------
  Structure
----------------------------------
0. レイアウト系
1. リスト・テーブル
2. 中央揃え
3. 改行
4. テキスト装飾
5. 追加汎用css

====================================*/

/* 表示・非表示
-------------------------------- */
@media screen and (min-width: 769px) {
  .pc-none_bp768 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp-none_bp768 {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .pc-none_bp480 {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .sp-none_bp480 {
    display: none;
  }
}
/*----------------------------------
	0. レイアウト系
------------------------------------*/
/*
ブレイクポイントの設定用クラス .bp768 .bp480 .bp420 
を切り替えて使ってください。
.column-box 又は .float-box に設定して下さい
*/

/* ------ カラム（flex） ------- */
.column-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.column-box > div {
  float: none!important;
  margin-bottom: 30px;
}
.column-box.mb-none > div {
  margin-bottom: 0;
}
.column-box hr {
  display: none;
}
.column-box.reverse {
  -webkit-flex-direction: row-reverse;
   flex-direction: row-reverse;
}
.jcs{
    justify-content: start;
}
.alc{
    align-items: center;
}
/* カラム幅指定(均等幅隙間あり) */
.column-box__2col {
  width: 47% !important;
  max-width: 570px;
}
.column-box__3col {
  width: 31% !important;
  max-width: 370px;
}
.column-box__4col {
  width: 23% !important;
  max-width: 270px;
}
.column-box__5col {
  width: 18% !important;
  max-width: 210px;
}
.column-box__6col {
  width: 15% !important;
  max-width: 180px;
}
.column-box__7col {
  width: 13% !important;
  max-width: 130px;
}
.column-box__8col {
  width: 46% !important;
  max-width: 570px;
}
/* カラム幅指定(均等幅隙間なし) */
.column-box__2p {
  width: 50% !important;
}
.column-box__3p {
  width: 33% !important;
}
.column-box__3p:nth-child(2) {
  width: 34% !important;
}
.column-box__4p {
  width: 25% !important;
}
/* カラム幅指定(カスタム用) */
.column-box__80 {
  width: 80%!important;
}
.column-box__70 {
  width: 70%!important;
}
.column-box__65 {
  width: 65%!important;
}
.column-box__60 {
  width: 60%!important;
}
.column-box__57{
    width:57%!important;
}
.column-box__50 {
  width: 50%!important;
}
.column-box__40 {
  width: 40%!important;
}
.column-box__35 {
  width: 35%!important;
}
.column-box__32 {
  width: 32%!important;
}
.column-box__30 {
  width: 30%!important;
}
.column-box__25 {
  width: 35%!important;
}
.column-box__20 {
  width: 20%!important;
}
/* 
最終行レイアウト維持のためのclass
コンテンツの数が変動する場合設定してください。
.column-box に設定してください。
*/
/* -------------------------------------- */
/* ３カラム用 */
.column-box--3return::after {
  content:"";
  display: block;
  width: 31%;
}
/* ４カラム用 */
.column-box--4return::before {
  content:"";
  display: block;
  width:23%;
  order:1;
}
.column-box--4return::after {
  content:"";
  display: block;
  width :23%;
}
/* -------------------------------------- */
/* ブレイクポイント-汎用 */
@media screen and (max-width: 1200px) {
  .column-box.bp1200 > [class*="column-box__"] {
    width: 100%!important;
    margin: 0 auto 3%!important;
  }
}
@media screen and (max-width: 768px) {
  .bp768 > [class*="column-box__"] {
    width: 100% !important;
    margin-bottom: 20px;
    max-width: inherit;
  }
}
@media screen and (max-width: 480px) {
  .bp480 > [class*="column-box__"] {
    width: 100% !important;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 320px) {
  .bp320 > [class*="column-box__"] {
    width: 100% !important;
    margin-bottom: 20px;
  }
}
/* ブレイクポイント-中央揃え */
@media screen and (max-width: 800px) {
  .column-box.bp800-c {
    -webkit-justify-content: space-around; 
    justify-content: space-around;
  }
  .column-box.bp800-c > [class*="column-box__"] {
    width: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  .column-box.bp768-c {
    -webkit-justify-content: space-around; 
    justify-content: space-around;
  }
  .column-box.bp768-c > [class*="column-box__"] {
    width: 100% !important;
  }
}
@media screen and (max-width: 480px) {
  .column-box.bp480-c {
    -webkit-justify-content: space-around; 
    justify-content: space-around;
  }
  .column-box.bp480-c > [class*="column-box__"] {
    width: 100% !important;
  }
}
@media screen and (max-width: 320px) {
  .column-box.bp320-c {
    -webkit-justify-content: space-around; 
    justify-content: space-around;
  }
  .column-box.bp320-c > [class*="column-box__"] {
    width: 100% !important;
  }
}
/* android4対策 */
@media screen and (max-width: 980px) {
  body.and4 .column-box {
    display: block;
    text-align: center;
  }
  body.and4 .column-box > div {
    display: inline-block;
  }
}

/* ------ カラム（float） ------- */

.float-box {
  overflow: hidden;
}
.float-box__left {
  float: left !important;
}
.float-box__right {
  float: right !important;
}
@media screen and (max-width: 768px) {
  .bp768 .float-box__left,
  .bp768 .float-box__right {
    float: none !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 480px) {
  .bp480 .float-box__left,
  .bp480 .float-box__right {
    float: none !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 320px) {
  .bp320 .float-box__left,
  .bp320 .float-box__right {
    float: none !important;
    width: 100% !important;
  }
}



/*----------------------------------
	1. リスト・テーブル
------------------------------------*/

/* ------ リスト（ul,ol） ------- */
/* リストスタイルクリア */
.list_style_clear {
  list-style: none;
  margin: 0;
}
.list_style_clear li {
  margin: 0 0 1.2em;
}
/* 黒ぶち */
.list_style01 {
  list-style-type: disc;
  margin: 0 0 0 25px;
}
.list_style01 li {
  margin: 0 0 20px;
  list-style-type: disc;
}
.list_style01v2 {
  list-style-type: disc;
  margin: 0 0 0 35px;
}
.list_style01v2 li {
  margin: 0 0 20px;
  list-style-type: disc;
}
/* 丸 */
.list_style02 {
  list-style-type: circle;
  margin: 0 0 0 25px;
}
.list_style02 li {
  margin: 0 0 20px;
  list-style-type: circle;
}
/* 四角 */
.list_style03 {
  list-style-type: square;
  margin: 0 0 0 25px;
}
.list_style03 li {
  margin: 0 0 20px;
  list-style-type: square;
}
/* 三角 */
.list_style04 {
  list-style-type: disc;
}
.list_style04 li {
    margin-left: 1.8em;
    list-style-type: none;
}
.list_style04 li:before{
    content: ' ';
    border: transparent solid 0.3em;
    border-left-color: #000000;
    position: absolute;
    height: 0;
    width: 0;
    left: 1em;
    margin: 0px;
    margin-top: 0.4em;
    padding: 0px;
}
/* 番号 */
.list_number {
  list-style-type: decimal;
  margin: 0 0 0 25px;
}
.list_number li {
  margin-bottom: 20px;
  list-style-type: decimal;
}


/* ------ テーブル ------- */
.table-style01 {
  width: 100%;
}
.table-style01 th,
.table-style01 td {
  border: solid 1px #999;
  padding: 10px;
}
.table-style01 th {
  background-color: #ccc;
  text-align: left;
}
.table-style02 {
  border: none;
  font-size: 1.6rem;
}
.table-style02 td,
.table-style02 th {
  border: solid 2px #fff;
  padding: 2%;
}
.table-style02 th {
  background-color: #e6e6e6;
  text-align: center;
  width: 140px;
  padding: 2% 0;
}
.table-style02 td {
  background-color: #efefef;
}
@media screen and (max-width: 480px) {
  .table-style02 td,
  .table-style02 th {
    display: block;
    width: auto;
  }
}



/*----------------------------------
	2. 中央揃え
------------------------------------*/

/* ------ 中央揃え ------- */
/* position(高さ指定必要) */
.center-box01 {
  position: relative;
}
.center-box01__cell {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
/* position(高さ指定不要) */
.center-box02 {
  position: relative;
}
.center-box02__cell {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
/* flex(幅・高さ指定不要) */
.center-box03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items : center;
  align-items : center;
}



/*----------------------------------
	3. 改行
------------------------------------*/
/* 
スマホ用の改行の表示・非表示切り替えです。
ブレイクポイントの数値の後に -on(表示) -off(非表示) で切り替わります。
*/
/* ------ 改行 ------- */
@media screen and (max-width: 768px) {
  br.bp768-off {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  br.bp768-on {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  br.bp480-off {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  br.bp480-on {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  br.bp420-off {
    display: none;
  }
}
@media screen and (min-width: 421px) {
  br.bp420-on {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  br.bp320-off {
    display: none;
  }
}
@media screen and (max-width: 480px) and (min-width: 320px){
    br.bp480-on-320-off{
        display:none;
    }
    
}

/* ------ イメージ ------- */
@media screen and (max-width: 800px) {
  img.bp800-off {
    display: none;
  }
}
@media screen and (min-width: 801px) {
  img.bp800-on {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  img.bp768-off {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  img.bp768-on {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  img.bp480-off {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  img.bp480-on {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  img.bp420-off {
    display: none;
  }
}
@media screen and (min-width: 421px) {
  img.bp420-on {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  img.bp320-off {
    display: none;
  }
}



/*----------------------------------
	4. テキスト装飾
------------------------------------*/

/* ----------- フォントサイズ ------------ */
.font-size--24 {
  font-size: 2.4rem;
  margin: 0 0 0.8em;
}
.font-size--22 {
  font-size: 2.2rem;
  margin: 0 0 0.8em;
}
.font-size--20 {
  font-size: 2.0rem;
  margin: 0 0 0.8em;
}
.font-size--18 {
  font-size: 1.8rem;
  margin: 0 0 0.8em;
}
.font-size--16 {
  font-size: 1.6rem;
  margin: 0 0 0.8em;
}
.font-size--14 {
  font-size: 1.4rem;
  margin: 0 0 0.8em;
}
@media screen and (max-width: 768px) {
  .font-size--24 {
    font-size: 2.2rem;
  }
  .font-size--22 {
    font-size: 2.0rem;
  }
  .font-size--20 {
    font-size: 1.8rem;
  }
}
/* ------ テキスト揃え ------ */
.l-txt {
  text-align: left;
}
.r-txt {
  text-align: right;
}
.c-txt {
  text-align: center;
}
/* ------ 三角アイコン ------- */
.icon-triangle {
  position: relative;
  padding-left: 30px;
}
.icon-triangle::before {
  content: "";
  position: absolute;
  top: 50%; left:10px;
  display: block;
  width: 0px;
  height: 0px;
  margin-top: -8px;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent;
}
/* 色指定 */
.icon-triangle--color::before{
  border-left-color: #fff;
}


/*----------------------------------
	5. マージン
------------------------------------*/
.mb-00 {
  margin-bottom: 0px!important;
}
.mb-10 {
  margin-bottom: 10px!important;
}
.mb-15 {
  margin-bottom: 15px!important;
}
.mb-20 {
  margin-bottom: 20px!important;
}
.mb-30 {
  margin-bottom: 30px!important;
}
.mb-40 {
  margin-bottom: 40px!important;
}
.mb-50 {
  margin-bottom: 50px!important;
}
.mb-60 {
  margin-bottom: 60px!important;
}
.mb-70 {
  margin-bottom: 70px!important;
}
.mb-80 {
  margin-bottom: 80px!important;
}
.mb-90 {
  margin-bottom: 90px!important;
}

.mt-50{
    margin-top:50px;
}
@media screen and (max-width: 768px){
    .mt-50{
        margin-top:0;
    }
}

/*----------------------------------
	6. 追加汎用CSS
------------------------------------*/
/* ------ ボックス装飾 ------ */
.bg-lightgray {
  background-color: #eff0f1;
}
.bg-none {
  background-color : transparent;
}
.box-shadow {
  box-shadow: 5px 5px 7px 0px rgba(0,0,0,0.45);
  -webkit-box-shadow: 5px 5px 7px 0px rgba(0,0,0,0.45);
  -moz-box-shadow: 5px 5px 7px 0px rgba(0,0,0,0.45);
}
.border-bule {
  border: solid 1px #0b3186;
  border-radius: 15px;
}
.border-green {
  border: solid 1px #0e7f35;
  border-radius: 15px;
}

/* ------ テキスト装飾 ------ */
.mincho {
  font-family: 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.t-lightblue { 
  color:#00a7b0 !important;
}



/* ------ ボタンデザイン ------ */
.btn_style01,
.btn_style01-s,
.btn_style01-b {
  margin: 50px auto;
}
.btn_style01.btn_m0,
.btn_style01-s.btn_m0 {
  margin: 0 auto;
}
.btn_style01 a,
.btn_style01-s a,
.btn_style01-b a {
  display: block; 
  background: url(../../images/icon_arrow_01.png) no-repeat 90% center;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  padding: 10px 50px 10px 15px;
  background-color: #6d65aa;
  border-radius: 15px;
  width: 280px;
  margin: 0 auto;
  box-sizing: border-box;
}
.btn_style01-s a {
  padding: 7px 30px 6px 10px;
  width: 250px;
}
.btn_style01-b a {
  padding: 12px 30px 10px 10px;
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 30px;
}
.btn_style01 a:hover,
.btn_style01-s a:hover,
.btn_style01-b a:hover {
  text-decoration: none;
  opacity: 0.5;
} 
.btn_style01 a img,
.btn_style01-s a img,
.btn_style01-b a img {
  vertical-align: middle;
  margin-right: 10px;
  box-sizing: border-box;
}
.btn_style01.green a,
.btn_style01-s.green a,
.btn_style01-b.green a {
  background-color: #b4d000;
}

.btn_style02 a {
    display: block;
    background: url(../../images/icon_arrow_01.png) no-repeat 90% center;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    padding: 10px 50px 10px 50px;
    background-color: #6d65aa;
    width: 100%;
    margin: 0 auto;
  box-sizing: border-box;
}


.bg-wave {
    background-image: url(../../images/wave_bg-l_top.jpg), url(../../images/wave_bg-l_bottom.jpg);
    background-position: top,bottom;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #eeeeee;
  padding: 90px 0;
}
.bg-wave-s {
    background-image: url(../../images/wave-s_bg-l_top.png), url(../../images/wave-s_bg-l_bottom.png);
    background-position: top,bottom;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #eeeeee;
  padding: 100px 0;
}


.box_style01 {
  background-color: #eeeeee;
  padding: 15px 15px;
  border-radius: 20px;
  box-sizing: border-box;
}



/*----------------------------------
	 BodyTalk用
------------------------------------*/
.bodytalker .btn-style01 a {
  background: url(../../images/icon-arrow02.png) no-repeat right 15px center;
  border-bottom: 4px solid #00479D;
  color: #00479D;
}

.btn-style02 a {
  display: block;
  background: url(../../images/icon-arrow06.png) no-repeat right 10px center #fff;
  box-shadow: 5px 5px 7px 0px rgba(0,0,0,0.45);
  -webkit-box-shadow: 5px 5px 7px 0px rgba(0,0,0,0.45);
  -moz-box-shadow: 5px 5px 7px 0px rgba(0,0,0,0.45);
  border-radius: 7px;
	-webkit-border-radius: 7px;	
	-moz-border-radius: 7px;
  color: #00a7b0;
  font-size: 1.6rem;
  text-align: center;
  padding: 10px 45px 10px 0;
}
.btn-style02 a:hover {
  background-image: url(../../images/icon-arrow05.png);
  background-color: #00a7b0;
  color: #fff;
  text-decoration: none;
}
[class*="btn-style03"] a {
  display: block;
  background: url(../../images/icon-arrow05.png) no-repeat right 10px center #009ea7;
  font-size: 1.6rem;
  padding: 0.5em 45px 0.5em 20px;
  border-radius: 20px;
  color: #fff;
  margin: 0 auto 1em;
  text-align: center;
  border: solid 1px #009ea7;
}
.btn-style03 a:hover {
  background-image: url(../../images/icon-arrow01.png);
  background-color: #fff;
  color: #009ea7;
  border: solid 1px #009ea7;
  text-decoration: none;
  margin: 0 auto calc(1em - 2px);
}
.btn-style03_bt a {
  display: block;
  background-color: #004794;
  border: solid 1px #004794;
}
.btn-style03_bt a:hover {
  background-image: url(../../images/icon-arrow02.png);
  background-color: #fff;
  color: #004794;
  border: solid 1px #004794;
  text-decoration: none;
}
.btn-style03_bt_white a {
  display: block;
  background: url(../../images/icon-arrow02.png) no-repeat right 10px center #ffffff;
  color: #004794;
  border:none;
  box-shadow:0px 0px 6px 1px rgba(0,0,0,0.3);
  -webkit-box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.3);
}
.btn-style03_bt_white a:hover {
  background-image: url(../../images/icon-arrow03.png);
  background-color: #004794;
  color: #fff;
  text-decoration: none;
}




/* 画像トリミング */
.trimming_circle {
    border-radius: 50%;
}
.trimming_r10 {
    border-radius: 10px;
}
[class*="circle-trimming"] {
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
[class*="circle-trimming"] > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.circle-trimming01 {
  width: 300px;
  height: 300px;
}
.circle-trimming01 img {
  width: 100%;
  height: auto;
}
.circle-trimming02 {
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 480px) {
  .circle-trimming01 {
    width: 250px;
    height: 250px;
  }
}
.circle-trimming03 {
  width: 250px;
  height: 250px;
}


/* 角丸 */
.radius {
  border-radius: 10px;
}









/* ------ ボディートークについて　円のデザイン調節 ------ */
.box-white .column-box__60 {
  line-height: 2em;
}
.about-c-box_2-2 {
  background: url(../../images/about-bt-common__bg-pink.png) no-repeat;
  background-size: 70px auto;
  background-position: left bottom;
}
.about-c-box_2-3 {
  background: url(../../images/about-bt-pg2__bg1.png) no-repeat;
  background-size: 220px auto;
  background-position: center bottom;
  padding-bottom: 80px;
}
.about-c-box_2-4 {
  background: url(../../images/about-bt-common__bg-blue.png) no-repeat;
  background-size: 50px auto;
  background-position: left bottom;
  padding-bottom: 30px;
}
.about-c-box_3-2 {
  background: url(../../images/about-bt-pg3__bg1.png) no-repeat;
  background-size: 150px auto;
  background-position: center bottom;
  padding-bottom: 90px;
}
.about-c-box_3-3 {
  padding-bottom: 30px;
}
.about-c-box_3-5 {
  padding: 30px 0;
}
.about-c-box_3-6 {
  background: url(../../images/about-bt-common__bg-blue.png) no-repeat;
  background-size: 50px auto;
  background-position: right bottom;
  padding-top: 50px; 
}
.about-c-box_3-7 {
  padding: 50px 0;
}
.about-c-box_3-9 {
  padding-top: 30px;
}
.about-c-box_4-1 {
  background: url(../../images/about-bt-pg4__bg1.png) no-repeat;
  background-size: 180px auto;
  background-position: center bottom;
  padding-bottom: 90px; 
}
.about-c-box_4-2 {
  background: url(../../images/about-bt-common__bg-beige.png) no-repeat;
  background-size: 50px auto;
  background-position: left bottom;
}
.about-c-box_4-3 {
  background: url(../../images/about-bt-pg4__bg2.png) no-repeat;
  background-size: 180px auto;
  background-position: right bottom;
  padding-bottom: 90px;
}
.about-c-box_4-4 {
  background: url(../../images/about-bt-common__bg-pink.png) no-repeat;
  background-size: 50px auto;
  background-position: left bottom;
}
.about-c-box_5-2 {
  background: url(../../images/about-bt-common__bg-blue.png) no-repeat;
  background-size: 50px auto;
  background-position: left bottom;
}
.about-c-box_5-3 {
  background: url(../../images/about-bt-common__bg-beige.png) no-repeat;
  background-size: 50px auto;
  background-position: right bottom;
}
.about-c-box_6-1 {
  background: url(../../images/about-bt-common__bg-blue.png) no-repeat;
  background-size: 50px auto;
  background-position: right 10% bottom;
  padding-bottom: 40px;
}
.about-c-box_6-2 {
  background: url(../../images/about-bt-pg6__bg1.png) no-repeat;
  background-size: 130px auto;
  background-position: left 10% bottom;
  padding-bottom: 80px;
}
.about-c-box_6-3 {
  background: url(../../images/about-bt-common__bg-blue.png) no-repeat;
  background-size: 50px auto;
  background-position: right bottom;
}
.about-c-box_6-4 {
  background: url(../../images/about-bt-common__bg-beige.png) no-repeat;
  background-size: 70px auto;
  background-position: left bottom;
  padding-bottom: 60px;
}
.about-c-box_6-6 {
  background: url(../../images/about-bt-common__bg-blue.png) no-repeat;
  background-size: 50px auto;
  background-position: left 10% bottom;
  padding-bottom: 40px;
}

/* ------ ショッピング会員　ドメイン文字色 ------ */
.mail_chek{
    color:#ff0000;
}
.bp768-br{
    display:none;
}

/* ------ 会員専用ページ　タイトルデザイン用 ------ */
.h__toolTitleStyle{
    padding:5px;
    font-size:2em;
    font-weight:bold;
    color:#f09400;
    border-bottom:3px solid #f09400;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.h__toolTitleStyle img{
    width:60px;
    vertical-align: bottom;
}
.e__toolTitleStyle{
    padding:5px;
    font-size:2em;
    font-weight:bold;
    color:#a9cc06;
    border-bottom:3px solid #a9cc06;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.e__toolTitleStyle img{
    width:60px;
    margin-right: 10px;
    vertical-align: baseline;
}


.dlTableStyle{
    margin-top:30px;
}
.dlTableStyle tr td:nth-of-type(2){
    width:50px;
    text-align:center;
}
.dlTableStyle tr td{
    vertical-align: middle;
    padding: 8px 15px;
}
.dlTableStyle tr:nth-child(even){
    background-color:#eeeeee;
}