/*共通*************************************/
.Cont_Wrapper span,
.Cont_Wrapper p{
  font-weight: inherit;
}

.Cont_Wrapper {
  margin: 30px 0 0;
  width: 100%;
  font-family: "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic W3", "メイリオ",
    "Meiryo", Sans-Serif;
}

.Cont_Wrapper section {
  margin: 0 auto 60px;
}

.Cont_Wrapper section:nth-child(2){
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .Cont_Wrapper {
    margin: 10px auto 0;
  }
}

.sp_none {
  display: block;
}
.sp_only_new {
  display: none;
}

@media (max-width: 768px) {
  .sp_none {
    display: none;
  }
  .sp_only_new {
    display: block;
  }
}

p.text-style1 {
  margin-bottom: 20px;
}

.Cont_Wrapper h3 {
  font-weight: bold;
  font-size: 2.4em;
  line-height: 1;
  color: #434343;
  vertical-align: baseline;
  padding-bottom: 10px;
  margin-bottom: 25px;
  border-bottom: solid 1px #434343;
}
.Cont_Wrapper h3 span {
  vertical-align: baseline;
  font-weight: inherit;
}
.Cont_Wrapper h3 span.small {
  font-size: 95%;
}
.Cont_Wrapper h3 span.blue {
  color: #0058a8;
}
.Cont_Wrapper h3 span.vividblue {
  color: #38b7e0;
}
.Cont_Wrapper h3 span.gold {
  color: #bfa301;
}
.Cont_Wrapper h3 span.lgreen {
  color: #00ac7a;
}
.Cont_Wrapper h3 span.darkred {
  color: #802358;
}
@media (max-width: 768px) {
  /* 画面サイズ767px以下 */
  .Cont_Wrapper h3 {
    font-size: 1.5em;
    line-height: 1.5;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  /* 画面サイズが601pxから900pxまで */
  .Cont_Wrapper h3 {
    font-size: 1.8em;
  }
}

ruby > rt {
  font-size: 40%;
}
ruby {
  font-weight: inherit;
}

/*(2)CONT_BODY START*************************************/
/*** 共通項目 ***/
.Cont_Body {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* .Cont_Body div.Left_Box,
.Cont_Body div.Right_Box{
	width: 50%;
} */
.Cont_Body div.Bottom_Box {
  width: 100%;
  margin: 20px auto 0;
}
.Cont_Body div.Left_Box > div,
.Cont_Body div.Right_Box > div {
  margin-bottom: 20px;
}
.Cont_Body div.Left_Box > div:last-child,
.Cont_Body div.Right_Box > div:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  /* 画面サイズが767px以下 */
  .Cont_Body {
    display: flex;
    flex-basis: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
  }
  .Cont_Body div.Left_Box,
  .Cont_Body div.Right_Box {
    margin: 0 auto 20px;
    width: 100%;
    max-width: 440px;
  }
  .Cont_Body div.Bottom_Box {
    margin: 0 auto 20px;
  }
}
@media (min-width: 601px) and (max-width: 909px) {
  /* 画面サイズが601pxから909pxまで */
  .Cont_Body > div {
    width: 49%;
    max-width: unset;
  }
}

/*** 分類表 共通項目***/
.bunrui {
  /* max-width: 400px; */
  border: 5px solid #0058a8;
  box-sizing: border-box;
}

.bunrui div.bunruitext {
  background: #000000;
  padding: 12px 0px;
  text-align: center;
}
.bunrui div.bunruitext p {
  padding: 0 10px;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.4em;
}
.bunrui table {
  width: 100%;
  height: auto;
  border-collapse: collapse;
  background: #ffffff;
}
.bunrui table tr th {
  width: 30%;
  padding: 6px 0;
  text-align: center;
  background: #eeeeee;
  font-weight: bold;
  font-size: 1.3em;
  line-height: 1.5;
  border-right: solid 1px #666666;
  border-bottom: dotted 1px #666666;
}
.bunrui table tr td {
  width: 70%;
  padding: 6px 10px;
  text-align: left;
  border-bottom: dotted 1px #666666;
  font-size: 1.3em;
  line-height: 1.5;
}
.bunrui table tr:last-child th {
  border-bottom: none;
}
.bunrui table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 900px) {
  /* 画面サイズが900px以下 */
  .bunrui {
    border: 1px solid #000;
  }
  .bunrui div.bunruitext {
    padding: 10px 5px;
  }
  .bunrui div.bunruitext p {
    font-size: 1.1em;
  }
  .bunrui table tr th {
    padding: 5px 0;
    font-size: 1.1em;
  }
  .bunrui table tr td {
    padding: 5px;
    font-size: 1.1em;
  }
}

/*フロー図見出し*/
.flow_heading {
  margin-top: 40px;
}
/*ふきだしここから*/
.flow_heading h4.bubble {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.5em;
  font-weight: bold;
  vertical-align: baseline;
  color: #ffffff;
  background: #333333;
  margin-bottom: 18px;
  border-radius: 20px;
}
.flow_heading h4.bubble:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -16px;
  left: 25%;
  border: 8px solid transparent;
  border-top: 8px solid #333333;
  border-left: 8px solid #333333; /*三角に角度をつける*/
}
.flow_heading h4.bubble span {
  color: #ebcb70;
}
/*ふきだしここまで*/
.flow_heading h3 {
  width: 100%;
  padding: 15px 10px 10px;
  font-size: 1.8em;
  font-weight: bold;
  vertical-align: baseline;
  color: #454545;
  border: solid 1px #454545;
  background: #efefef;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.flow_heading h3 span {
  display: block;
  margin-top: 5px;
  font-size: 0.7em;
  color: #454545;
  font-weight: normal;
}
@media (max-width: 900px) {
  /* 画面サイズ900px以下 */
  .flow_heading h3 {
    padding: 8px 5px;
    font-size: 1.4em;
    line-height: 1.5;
  }
}

h3 .insurance {
  display: inline-block;
  padding: 5px 5px 3px;
  border: 1px solid #000;
  font-size: 80%;
  vertical-align: top;
}
