@media screen and (min-width: 768px) {
  /* CB_の列数によってTextBoxの高さを変える
  ------------------------------------------ */
  .Col2_ .HeightM_ { min-height: 170px; }
  .Col3_ .HeightM_ { min-height: 240px; }
  .Col4_ .HeightM_ { min-height: 300px; }
  .HeightM_ { min-height: 135px; }

  .Col2_ .HeightS_ { min-height: 120px; }
  .Col3_ .HeightS_ { min-height: 170px; }
  .Col4_ .HeightS_ { min-height: 200px; }
  .HeightS_ { min-height: 70px; }
}

/* FREE AREA
--------------------------- */
section.ContentArea {
  margin: 0 auto;
  width: 95%;
  border-radius: 60px;
}
section.ContentArea.RadiusT {
  border-radius: 60px 60px 0 0;
}

/* ///// 見出し /////////////////////////////// */
@media screen and (min-width: 768px) {
  .HeadingBox_ h1 {
    font-size: 30px;
    font-weight: bold;
  }
  .HeadingBox_ h2 {
    font-size: 25px;
    font-weight: bold;
  }
  .HeadingBox_ h3 {
    font-size: 20px;
    font-weight: bold;
  }
  .HeadingBox_ h4,.HeadingBox_ h5,.HeadingBox_ h6 {
    font-size: 18px;
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) {
  .HeadingBox_ h1 {
    font-size: 20px;
    font-weight: bold;
  }
  .HeadingBox_ h2,.HeadingBox_ h3,.HeadingBox_ h4,
  .HeadingBox_ h5,.HeadingBox_ h6 {
    font-size: 18px;
    font-weight: bold;
  }
}

/* --- Preset Style --- */
.HdgStyleA_ {
  border-top: 3px #fb100e solid;
  padding: 10px 15px;
  background-color: #f2f2f2;
}
.HdgStyleB_ {
  border-radius:10px;
  padding: 7px 15px;
  background-color: #fdf4f0;
}
.HdgStyleC_ {
  border-bottom: 1px silver solid;
  padding: 3px;
}
.HdgStyleD_ { padding: 3px 5px; }
.HdgStyleD_ > * {
  border-left: 6px #fb100e solid;
  padding-left: 10px !important;
}
.HdgStyleE_ {
  margin-bottom: 30px;
}
.HdgStyleE_ h1{
  text-align: center;
  font-size: 42px;
  font-weight: 700;
}
.HdgStyleE_ h2{
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 580px) {
  .HdgStyleE_ h1{
    font-size: 21px;
    margin-bottom: 30px;
  }
}

/* ///// 画像 ///////////////////////////////// */
img.ImgBorderA_ {
  margin: 3px;
  border: 1px #ccc solid;
  padding: 1px;
}
img.ImgBorderB_ {
  margin: 3px;
  border: 5px #fff solid;
  box-shadow: 0 0 2em rgba(0,0,0,.75);
}
a:hover img.ImgHover_ { opacity: 0.7; }

/* ///// ボタン /////////////////////////////// */
.ButtonBox_ a {
  display: table;
  box-sizing: border-box;
  margin: 0 auto;
  width: 280px;
  padding: 10px 30px;
  text-align: center;
  text-decoration:none;
}

.Col3_ .ButtonBox_ a { width: 250px; }
.Col4_ .ButtonBox_ a { width: 100%; }
.Col5_ .ButtonBox_ a { width: 100%; }

/* Preset Style */
a.BtnStyleA_ {
  color: #ff6021;
  border: 2px solid #ff6021;
  border-radius: 50vw;
  display: block;
  padding: 10px 30px;
  background: #fff;
}
a.BtnStyleA_:hover {
  background-color: #F7000B;
  text-decoration: none;
  color: #fff;
}


/* Preset Color */
a.BtnColorA_ {
  border-color: #0065f7;
  background-color: #e80000;
  background-color: #e49c9f;
  color: #fff;
}
a.BtnColorA_:hover { background-color: #bb0909; }

/* ///// テーブル ///////////////////////////// */
.TableBox_ table caption { font-weight: bold; }

/* Preset Style */
table.TblStyleA_ th {
  border: 1px #ccc solid;
  width: 30%;
  background-color: #f5f5f5;
  text-align: left;
}
table.TblStyleA_ td { border: 1px #ccc solid; }

table.TblStyleB_ tr { border-bottom: 1px gray dotted; }
table.TblStyleB_ th { width: 30%; }

table.TblStyleC_ tr { border-bottom: 1px gray dotted; }
table.TblStyleC_ th { width: 30%; background-color: #f5f5f5; }

/* ///// その他 /////////////////////////////// */
/* フォントカラー */
.FntColorA_ { color: #444 !important; }
.FntColorB_ { color: #7aae49 !important; }
.FntColorC_ { color: #fc5755 !important; }
.FntColorD_ { color: #fff !important; }

.FntStyleA_ { letter-spacing: 5px; font-family: 'Lora', serif; }

/* 背景色 */
.BgColorA_ { background-color: #fafafa !important; }
.BgColorB_ { background-color: #fdf4f0 !important; }

/* BOXの影 */
.ShadowA_ { box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.1); }

/* 線の色 */
.Bdr_,.BdrT_,.BdrB_,.BdrTB_,.BdrL_,.BdrR_,.BdrLR_ { border-color: #ccc; }
.Dotted_ { border-color: gray; }
.Dashed_ { border-color: #ccc; }

.BdrColorA_ {
  border-color: #40b5f2;
}

/* ///// STYLES /////////////////////////////// */

/* リストマークなしリスト */
.ListStyleA_ {
  margin: 0; padding: 0;
  list-style: none;
}

ol.BgcInList,
ul.BgcInList {
  border-radius:10px;
  padding: 20px;
  background-color: #ebf1e6;
}
.BgcInList li {
  margin: 0 0 10px 30px;
}
.BgcInList > :last-child { margin-bottom: 0; }

/* TEXT BOX
=============================================== */

/* 画像キャプション */
figcaption { font-weight: bold; }

/* テーブル */
.Th30P th { width: 30%; }
.Th40P th { width: 40%; }
.Th50P th { width: 50%; }
.Th70P th { width: 70%; }

/* DLタグ */
dl.DlStyleA { margin: 0 0 15px; }
.DlStyleA dt { margin-top: 10px; font-weight: bold; }
.DlStyleA dd { margin: 0; }
.DlStyleA dt:first-child { margin-top: 0; }

.Marker {
  background-image: linear-gradient(transparent 60%, #e3fafe 40%);
}

/* ///// SET LIST STYLES /////////////////////////////// */

.SetListStyleA {
  clear: both;
  margin-bottom: 15px;
  border-bottom: 1px #ccc solid;
  padding: 0 0 15px;
}
.SetListStyleA .ImageBox_ img {
  max-width: 300px;
}
.SetListStyleA .HeadingBox_ a {
  color: #444;
}

@media screen and (min-width: 768px) {
  .SetListStyleA { overflow: hidden; }
  .SetListStyleA .ImageBox_ {
    float: left;
    box-sizing: border-box;
    margin: 0;
    width: 320px;
    text-align: left;
  }
  .SetListStyleA .TextArea_ {
    float: left;
    box-sizing: border-box;
    width: calc(100% - 320px);
  }
}
@media screen and (max-width: 767px) {
  .SetListStyleA .HeadingBox_ { text-align: center; }
  .SetListStyleA .HeadingBox_ a { text-decoration: underline; }
}

/* 行間多め */
ul.ListMgnB15_ {
  margin: 1em 0;
  padding-left: 32px;
  list-style-type: disc;
}
.ListMgnB15_ li,.ListMgnB15 li {
  margin-bottom: 15px;
}

/* リストのデフォルト化 */
/* 会社概要のリスト */
ul.ListDefault {
  margin: 0 0 1em 0;
	padding-left: 40px;
  list-style-type: disc;
}
ul.ListDefault ul {
  list-style-type: circle;
}

ul.ListDefault ul ul {
  list-style-type: square;
}
ul.ListDefault a{
  color: #fb100e;
}

