/* 見出し */
.heading-2 {
    padding:.8em .4em;
    margin-bottom: 2em;
    border-bottom: 3px solid #2589d0;
    background-color: #ffffff;
    color: #333333;
	font-size:24px;
}

/* ヘッダー */
.footer-001 {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 25px 10px 10px;
    background-color: #2589d0;
}
.footer-001__logo {
    width: 130px;
    height: 30px;
}
.footer-001__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.5em;
    list-style-type: none;
    margin: 0 0 .5em;
    padding: .5em;
}
.footer-001__link {
    color: #fff;
    font-weight: 200;
    text-decoration: none;
}
.footer-001__copyright {
    margin: 0;
    color: #ffffffb3;
    font-weight: 200;
    font-size: .8em;
}

/* 付箋型ボックス */
.box-011 {
    position: relative;
    max-width: 750px;
    margin: 4em 2em 0;
    padding: 1em 1.5em;
    border: 2px solid #2589d0;
    border-radius: 3px;
	font-weight: bold;
}
.box-011 span {
    position: absolute;
    top: -1.9em;
    left: -2px;
    padding: .2em .8em;
    border-radius: 5px 5px 0 0;
    background-color: #2589d0;
    color: #fff;
    font-size: 130%;
}
.box-011 p {
    margin: 0;
    color: #333;
}

/* 警告テキスト用ボックス */
.box-004 {
    display: flex;
    grid-gap: 0 .7em;
    margin: 0 auto;
    padding: 1em;
    border-radius: 5px;
    background-color: #ffebee;
    color: #333333;
}
.box-004::before {
    width: 24px;
    height: 24px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.8659 3.00017L22.3922 19.5002C22.6684 19.9785 22.5045 20.5901 22.0262 20.8662C21.8742 20.954 21.7017 21.0002 21.5262 21.0002H2.47363C1.92135 21.0002 1.47363 20.5525 1.47363 20.0002C1.47363 19.8246 1.51984 19.6522 1.60761 19.5002L11.1339 3.00017C11.41 2.52187 12.0216 2.358 12.4999 2.63414C12.6519 2.72191 12.7782 2.84815 12.8659 3.00017ZM10.9999 16.0002V18.0002H12.9999V16.0002H10.9999ZM10.9999 9.00017V14.0002H12.9999V9.00017H10.9999Z' fill='%23f06060'%3E%3C/path%3E%3C/svg%3E");
}
.box-004 p {
    margin: 0;
    padding: 0 0 0 .7em;
    border-left: 1px solid #f06060;
}

/* アップデートプログラムリンク用ボタン */
.button-44 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0 .1em;
    padding: .9em 2em;
    border: 1px solid #333333;
    border-radius: 5px;
    background-image: repeating-linear-gradient(-45deg, #eee, #eee 1px, #ffffff 1px, #ffffff 4px);
    color: #333333;
    font-weight: 600;
    font-size: 1em;
    transition: box-shadow .3s;
}
.button-44:hover {
    box-shadow: 0 7px 30px -5px rgb(0 0 0 / 20%);
}

/* 画像とテキスト横並び */
.side-img {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1em;
}
.side-img img{
  width: 220px;
}
p.side-txt {
  display: inline-block;
  width: auto;
  margin-left: 15px;
  margin-bottom: 1em;
}

/* トップへ戻るボタン */
.page_top_btn {
position: fixed;
bottom: 10px;
right: 10px;
font-weight: bold;
padding: 0.7em;
text-align: center;
background: #2589d0;
color: #fff;
transition: 0.3s0;
}

/* マウスオーバー時 */
.page_top_btn:hover {
background: #2589d0;
color:  #fff;
}

.page_top_btn a {
  text-decoration: none;
}

/* リスト */
.list-8 {
    position: relative;
    padding: 1em 1em 1em 2.5em;
    margin: 2em 2em 0;
    max-width: 750px;
    border: 2px solid #2589d0;
}

.list-8 > div {
    position: absolute;
    top: -.75em;
    left: 1em;
    padding: 0 .5em;
    background-color: #fff;
    color: #2589d0;
    font-weight: 600;
}

.list-8 ul {
    list-style-type: disc;
    margin: 0;
    padding: 0;
}

.list-8 li {
    padding: .1em .3em .1em 0;
}

.list-8 li::marker {
    color: #2589d0;
    font-size: 1.1em;
}