@charset "utf-8";
html {
  scroll-behavior: smooth;
}

body {
	font-family: "メイリオ";
	margin: 0;
	padding: 0;
	background: #FFF;
}

/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { 
	padding: 0;
	margin: 0;
}

li {
	font-family: "メイリオ";
	font-size: 13px;
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: justify;
	text-justify: inter-ideograph;
}


li a {
	font-size: 13px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	list-style: none;
	text-decoration: none;
}

li a:hover {
    /** 半透明（全体） ******************************/
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
/*********************
『filter:alpha(opacity=50);』--【IE】/ 透過無しの状態"100%"を指定する際は「filter:alpha(opacity=100);」。
『-moz-opacity: 0.5;』--【Firefox（Mozilla）】/ 透過無しの状態"100%"を指定する際は「-moz-opacity:1;」。
『opacity: 0.5;』--【SafariやOpera】/ 透過無しの状態"100%"を指定する際は「opacity:1;」。
**********************/
}


h4, h5, h6, p {
	font-family: "メイリオ";
	margin-top: 0;	 /* 上マージンを削除すると、マージンを含む div からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 */
	padding-right: 15px;
	padding-left: 15px; /* div 自体ではなく div 内でエレメントの両側に余白を追加すると、ボックスモデル計算が不要になります。代わりに、両側に余白を指定した div をネストして使用することもできます。 */
}


p {
	font-family: "メイリオ";
	font-size: 13px;
	margin: 0;
	padding: 0;
	text-align: justify;
	text-justify: inter-ideograph;
}


p a { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	font-family: "メイリオ";
	font-size: 13px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}


a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	border: none;
}

/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
	color:#414958;
	text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
a:visited {
	color: #4E5869;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
	text-decoration: none;
}

/* ~~ このコンテナが他のすべての div を囲み、パーセンテージに基づいた幅を指定します。~~ */






/**　link show　***********************************************************************************/


/** block *****************************************/
.pc-show-block {
    display: block;
}
.pc-hide-block {
  display: none;
}

@media screen and (max-width: 480px) {
  .pc-show-block {
    display: none;
  }
  .pc-hide-block {
    display: block;
  }
}


/** inline-block *****************************************/
.pc-show-inline {
    display: inline-block;
}
.pc-hide-inline {
  display: none;
}

@media screen and (max-width: 480px) {
  .pc-show-inline {
    display: none;
  }
  .pc-hide-inline {
    display: inline-block;
  }
}


/** none *****************************************/
.pc-show {
}
.pc-hide {
  display: none;
}

@media screen and (max-width: 480px) {
  .pc-show {
    display: none;
  }
  .pc-hide {
      display: inline;
  }
}






/**　header_pc　***********************************************************************************/
/*************************************************************************************/
@media screen and (max-width: 480px) { /*ウィンドウ幅が最大480pxの場合にPC非表示*/
.header_pc {
	display: none;
}
}
@media screen and (min-width: 481px) { /*ウィンドウ幅が最少481pxの場合にPC表示*/
.header_pc {
    width: 1080px;
	height: auto;
	margin: 0 auto;
	padding: 10px 0 10px 0;
	background: #FFF;
}
}
/*************************************************************************************/


/**　header_sp　***********************************************************************************/
/*************************************************************************************/
@media screen and (min-width: 481px) { /*ウィンドウ幅が最少481pxの場合にSP非表示*/
.header_sp {
	display: none;
}
}
@media screen and (max-width: 480px) { /*ウィンドウ幅が最大480pxの場合にSP表示*/
.header_sp {
	width: 100%;
    position: fixed;
    margin: 0;
    padding: 0;
    z-index:9999;
}
}
/*************************************************************************************/




/*************************************************************************************/

@media screen and (min-width: 481px) { /*ウィンドウ幅が最少481pxの場合にPC表示*/

.okc {
    display: none;
}
}

@media screen and (max-width: 480px) { /*ウィンドウ幅が最少480pxの場合にPC非表示*/
.okc {
    font-family: "メイリオ";
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    padding: 16px 0 13px;
    margin: 0;
    text-align: center;
    background: #204DA0;
}
}

/** top_template ***********************/

.header_pc p.h1 {
	display: block;
    float: left;
	width: 660px;
	font-family: "メイリオ";
	font-size: 15px;
    font-weight: bold;
	line-height: 18px;
	margin: 0;
    padding: 15px 0 0;
}

.header_pc p.mess {
	display: block;
    float: left;
	width: 660px;
	font-family: "メイリオ";
	font-size: 14px;
	line-height: 16px;
	margin: 0 0 22px;
    padding: 3px 0 0;
}




/** コンテント ここから　↓↓↓　*****************************************************************************************************/
#content {
    overflow: hidden;
    width: 100%;
	padding: 0;
    margin: 0 auto 30px;
	clear: both;
}


/***************************************************************************************************************************/
/** 【PC用】　↓↓↓　*****************************************************************************************************/
@media screen and (min-width: 481px) { /*ウィンドウ幅が最少481pxの場合にPC表示*/

    
#content .topimg {
	width: 1080px;
}

#content .topimg h1 {
	font-size: 30px;
	margin: 0 20px;
    padding: 28px 0 0;
    border-bottom: 2px solid #000;
}

#content .topimg h2{
	font-size: 20px;
	line-height: 30px;
    margin: 1px 20px 0;
	padding: 0 38px;
    text-align: right;
    border-top: 1px solid #000;
}
    
/******************************　headline-area ↓↓↓　【PC】***************************************************************/
#content .headline-area {
	width: 1080px;
	height: auto;
    margin: 20px auto 30px;
    clear: both;
}
    

/******************************　headline ↓↓↓　【PC】***************************************************************/
#content .headline {
	float: left;
	width: 280px;
	height: auto;
	margin: 0 0 30px 0;
    box-shadow:2px 2px 4px -2px #555555;
}
    
#content .sub-headline {
	float: left;
	width: 280px;
	height: auto;
	padding: 0;
	margin: 0;
	background: #FBF9F0;
}


#content .sub-headline p.title {
	font-size: 18px;
	font-weight: bold;
	color: #FFF;
	background: #8B7925;
	text-align: center;
	padding: 10px 0;
	margin: 0 0 20px 0;
}


#content .sub-headline li {
	padding: 0 5px 10px;
	margin: 0 10px 20px;
	border-bottom: 1px dotted #CCC;
}


#content .sub-headline li p {
	font-size: 13px;
	margin: 0 0 10px 0;
}


#content .sub-headline li p.top {
	font-size: 18px;
	font-weight: bold;
	margin: 0;
	padding: 0;
}
/** ---------------  sub-headline　ここまで ↑↑↑　------------------------------ */

    
#content {
	width: 1024px;
	height: auto;
	margin: 0 auto;
	padding: 0 0 10px 0;
	background: #FFF;
	clear: both;
}



#content .top-img {
	overflow: hidden;
	float: left;
	width: 698px;
	height: auto;
	padding: 30px 0 30px 20px;
	margin: 0 0 0 30px;
}


#content .top-img h2 {
	font-family: "メイリオ";
	font-size: 40px;
	line-height: 45px;
	margin: 0;
	padding: 0 0 10px;
	border-bottom: 2px solid #333;
}


#content .top-img h3 {
	font-family: "メイリオ";
	font-size: 20px;
	margin: 1px 0 0 0;
	padding: 0 0 10px;
	text-align: right;
	border-top: 1px solid #666;
}



/** ---------------  main1　ここから ↓↓↓　------------------------------ */
#content .main1 {
	float: left;
	width: 678px;
	padding: 30px 0 30px 40px;
	margin: 0 0 0 30px;
}

#content .main1 .history {
	width: 684px;
	margin: 20px 0 0 0;
}


#content .main1 .history table {
	width: 684px;
	margin: 0 0 0 0;
	border-collapse: collapse;
}


#content .main1 .history table th {
	padding: 5px 10px;
	white-space: nowrap;
	background-color: #C8E9EA;
	border-top: 1px solid #42A8AA;
}


#content .main1 .history table td.month {
	padding: 5px 10px;
	white-space: nowrap;
	text-align: right;
	background-color: #DCF1F1;
}


#content .main1 .history table td.month p {
	text-align: right;
}


#content .main1 .history table td {
	padding: 5px 10px;
	border-top: 1px solid #42A8AA;
}    
    
    
}/*ウィンドウ幅が最少481pxの場合にPC表示終了*/
/** 【PC用】　↑↑↑　*****************************************************************************************************/
/***************************************************************************************************************************/



/************************************************************************************************************************************/
/** 【SP用】　↓↓↓　***************************************************************************************************************/
#nav-drawer {
    display: inline-block;
    position: relative;
    padding: 11px 12px 8px 17px;
    margin: 0 80% 0 0;
    background: #204DA0;/**　【#content .topimg】のbackgroundにあわせる　**/
        /** 角丸 **/
    border-radius: 50px;        /* CSS3草案 */  
    -webkit-border-radius: 50px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 50px;   /* Firefox用 */  
        /** 半透明（背景のみ） **/
	background-color: rgba( 32, 77, 160, 0.70 );/**　色を変える（backgroundカラーをR㎇にする）　**/
/*********************
0が「完全に透明」　1が「完全に不透明」で、小数を使って不透明割合を指定
「55％不透明(＝45％透明)」
**********************/
}

#nav-drawer p.menu {
    font-family: "メイリオ";
    display: block;
    font-size: 10px;
    color: #ffffff;
    padding: 0;
    margin: 0 3px 0 0;
    text-align: center;
}

/** ---------------  topimg　ここから ↓↓↓ 　--------------------------------------- **/
@media screen and (max-width: 480px) { /*ウィンドウ幅が最少480pxの場合にPC非表示*/

    
#content .topimg {
	width: 100%;
    margin: 0 0 0 0;
	padding: 0 0 10px 0;
    background: #204DA0;
    clear: both;
}

#content .topimg h1 {
    font-family: "メイリオ";
	font-size: 25px;
	color: #FFF;
	text-align: center;
    padding: 15px 0 0;
    margin: 0;
    line-height: 120%;
}

#content .topimg h2{
    font-family: "メイリオ";
    font-size: 18px;
    font-weight: normal;
	color: #FFF;
	text-align: center;
    padding: 0;
    margin: 10px 10px 0 0;
}

#content .topimg h3 {
    font-family: "メイリオ";
    font-size: 12px;
    font-weight: normal;
	color: #FFF;
	text-align: center;
    padding: 0;
    margin: 0 10px 0 0;
}   
    
/******************************　main1 ↓↓↓　【SP】***************************************************************/

#content .main1 {
	width: auto;
    padding: 1.5rem;
}

#content .text {
    margin: 0.5rem 0;
}

#content .main1 .history table {
	border-collapse: collapse;
}

#content .main1 .history table th {
	padding: 5px 10px;
	white-space: nowrap;
	background-color: #C8E9EA;
	border-top: 1px solid #42A8AA;
}


#content .main1 .history table td.month {
	padding: 5px 10px;
	white-space: nowrap;
	text-align: right;
	background-color: #DCF1F1;
}


#content .main1 .history table td.month p {
	text-align: right;
}


#content .main1 .history table td {
	padding: 5px 10px;
	border-top: 1px solid #42A8AA;
}    
    
}/*ウィンドウ幅が最少480pxの場合にPC非表示終了*/
/** 【S用】　↑↑↑　*****************************************************************************************************/
/***************************************************************************************************************************/
    
    
    

    
/** コンテント ここまで　↑↑↑　*****************************************************************************************************/



