/* 画像とテーブル */
/* ----------------------------------------- */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td, th {
  padding: 8px;
  border-bottom: 1px solid #ccc;
}

.profile-container {
  width: 100%;
  padding: 15px;
}

@media screen and (min-width: 1200px) {
  .profile-container {
    max-width: 900px;
    margin: 0 auto;
  }
}

/* 既存のデザインを壊さない */
/* ----------------------------------------- */
.fighter-name {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.fighter-photo {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto 15px;
}

.fighter-table th {
  width: 30%;
  text-align: left;
  background: #f5f5f5;
  vertical-align: top;}

.fighter-intro, .fighter-comment {
  line-height: 1.7;
  margin-bottom: 20px;
}

/*既存のデザインを壊さない（実績） *//* ----------------------------------------- */

.fighter-table2 th {
  width: 30%;
  text-align: left;
  background: #f8f8ff;
  vertical-align: top;}

/*リンク（通常：灰色） *//* ----------------------------------------- */a:link {
  color: #a9a9a9;
}a:visited {
  color: #a9a9a9;
}a:hover {
  color: #a9a9a9;
}
a:active {
  color: #a9a9a9;
}/*区切り（点線） *//* ----------------------------------------- */.cp_hr01 {
	border-width: 1px 0 0 0;
	border-style: dotted;
	border-color: #1e88e5;
}