@charset "utf-8";


.h1_gazou {
    height: 300px;
    object-fit: cover;
}
hr {
    max-width: 1000px;
    margin: auto;
    border: none;
    height: 1px;
    border-top: solid 1px #0175C2;
    color: #0175C2;
}

/* 文字を白に */
.text_white {
    color: #fff;
}
.text_white h1 {
    color: #fff;
}
.text_white .topics-path a {
    padding-right: 0;
    padding-left: 0;
    color: #fff;
    text-decoration: none;
}
.text_white .topics-path a:visited {
    color: #fff;
}
.text_white .topics-path a:hover {
    color: #aad8f7;
}
.text_white li {
    list-style-type: none;
    float: left;
    min-height: 20px;
    padding-right: 8px;
    color: #fff;
    line-height: 110%;
}

/* フッター */
.link_nonecolor .child , .link_nonecolor .txt a:visited {
    color: #3b2d26;
    text-decoration: none;
}
.link_nonecolor .child , .link_nonecolor .txt  a:hover{
  color : #00a0e9;
}
.link_nonecolor .child , .link_nonecolor .txt  a {
    color: #3b2d26;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 220%;
    white-space: nowrap;
}

.copy .child , .copy .txt a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 220%;
    white-space: nowrap;
}
.copy .child, .copy .txt a:visited {
    color: #fff;
}
.copy .child , .copy .txt  a:hover{
  color : #00a0e9;
}

/* 外部リンクアイコンを削除 */
.none_icon .link_blank:after {
    font-family: '';
    content: "";
}

.back_r_yellow .child + .child {
    background-color: #FFF7C8;
    padding: 20px;
    border-radius: 10px;
}

.back_white {
    background-color: #FFF;
    border-radius: 10px;
}

.short_hr hr {
    max-width: 1000px;
    margin: auto;
    border: none;
    height: 1px;
    border-top: solid 1px #171717;
    color: #171717;
}

/* リストの見た目にする */
.list_ten {
  display: flex;
  flex-direction: column;
  gap: 0.3em; /* 行間の調整 */
}

.list_ten .text_italic {
  display: flex;
  align-items: flex-start;
}

.list_ten .text_italic::before {
  content: "・";
  margin-right: 0.2em;
  flex-shrink: 0;
}

/* 番号付きの見た目にする */
.list_no {
  counter-reset: num;
}
.list_no .text_italic {
  display: flex;
}
.list_no .text_italic::before {
  counter-increment: num;
  content: counter(num) ".";
  margin-right: 0.2em;
}

/* （番号）の見た目にする */
.list_no_k {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  counter-reset: num;
}
.list_no_k .text_italic {
  display: flex;
  align-items: flex-start;
}
.list_no_k .text_italic::before {
  counter-increment: num;
  content: "（" counter(num) "）"; /* 数字を（ ）で囲む */
  margin-right: 0.2em;
  flex-shrink: 0;
}

/* テキストの1部をボックスで囲む */
.textbox_red .text_color3 {
    display: inline-block;
    font-weight: 500;
    background: #DD3B33;
    color: white;
    padding: 2px 5px 0px 5px;
    border-radius: 5px;
    margin: 0em 0em 0.2em 0em;
}
.textbox_blue .text_color3 {
    display: inline-block;
    font-weight: 500;
    background: #0175C2;
    color: white;
    padding: 2px 5px 0px 5px;
    border-radius: 5px;
    margin: 0em 0em 0.2em 0em;
}

/* 見出しを赤にする */
.midashi_red h2 {
    background: #DD3B33;
}

.midashi_red h3 {
    border-left: 5px solid #DD3B33;
}

.midashi_red h4 {
    color: #DD3B33;
    border-bottom: 1px solid #DD3B33;
}