@charset "UTF-8";


/* main
**********************************/
/* 枠 */
main {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

.main-contents {
    display: flex;
    justify-content: space-between;
}

/* 左メニュー */
aside {
    width: 100%;
    max-width: 220px;
    text-align: left;
    order: 1;
}

/* 記事部分 */
article {
    width: 100%;
    max-width: 780px;
    text-align: center;
    padding: 27px 10px 0px;
    order: 2;
}




/* 左メニュー設定
**********************************/

.menu-box {
    width: 200px;
    margin: 0 auto 10px;
    padding: 5px;
    background-color: #fff;
    border-radius: 5px;
    /*ドロップシャドウ*/
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.30);
    -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.30);
    -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.30);
}


/*メニュータイトル*/
.m-menu-ti {
    clear: both;
    background: #E4F0FF;
    padding: 5px;
    line-height: 1.2;
    margin: 0 0 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    position: relative;
}

/*メニュー*/
.m-menu {
    border-top: 1px solid #ccc;
    margin: 0 0 15px;
}

.m-menu ul {
    margin: 0 0 15px;
}

.m-menu li {
    border-bottom: 1px solid #ccc;
}

.m-menu li a {
    background: url(./images/li.png) no-repeat left center;
    padding: 7px 0 7px 16px;
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: #258fb8;
}

.m-menu li a:hover {
    background-color: #E4F0FF;
}





/* 右メイン設定
**********************************/
.main-box {
    width: 100%;
    max-width: 770px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 5px;
    /*ドロップシャドウ*/
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.30);
    -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.30);
    -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.30);
}

.main-txt {
    margin-bottom: 30px;
    padding: 0 15px 30px;
    text-align: left;
}

.main-txt p {
    font-size: 14px;
    line-height: 1.6em;
}

@media (max-width: 950px) {
    aside {
        display: none;
    }

    article {
        max-width: 950px;
    }

    .main-box {
        max-width: 950px;
    }

}




/* パンくず
**********************************/

.nav-list {
    display: flex;
    justify-content: left;
    max-width: 1000px;
    width: 100%;
    margin: 5px auto;
}

.nav-list li {
    float: left;
    font-size: 10px;
    font-weight: 500;
    margin-left: 8px;
    color: #333;
}

.nav-list li a {
    font-size: 10px;
    font-weight: 500;
    padding: 0 12px 0 0;
    background: url(../images/li2.png) no-repeat right center;
    color: #426BF2;
}


@media (max-width: 690px) {
    .nav-list {
        display: none;
    }

    .wrapper-box {
        padding-top: 15px;
    }

}






/* ========================================================
/* ■共通タイトル
=========================================================*/

/*タイトル*/

.main-top-waku {
    text-align: left;
background-color: #e6f1ff;
    border-radius: 5px 5px 0 0;
}


.main-ti-waku {
 font-size:25px;
    font-weight: 900;
    padding-left: 50px;
    line-height: 63px;
}

.main-title {
  position: relative;
}

.main-title::before {
  content: '';
  position: absolute;
  top: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;

  /* アイコンとテキストの間隔を調整するプロパティ */
  left: -36px;

  /* アイコンの上下位置を調整するプロパティ */
  transform: translateY(-50%);

  /* アイコンのサイズを調整するプロパティ */
  width: 30px;
  height: 63px;

  /* 表示させるアイコンのパスを指定 */
  background-image: url(../images/h1.png);
}


.main-ti-line {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #dddddd;	
    margin: 1px 0 10px;
}


.main-txt {
    margin-bottom: 30px;
    padding: 0 15px 30px;
    text-align: left;
}


/*サブタイトル*/
.main-txt h2{ font-size:15px; font-weight: 500; background:#E4F0FF; padding:5px 10px; line-height:1.2; margin:25px 0 10px;  border-radius: 5px;}

.main-txt h3 { font-size:14px; font-weight: 500; background:#EEF0F3; padding:5px 10px; line-height:1.2; margin:20px 0 10px;  border-radius: 5px;}
