@charset "utf-8";
/* CSS Document */

/* ▼メインバナー */
#topImg{
	text-align:center;
}

    .slider {
        width: 100%;
        margin: 0px auto;
    }

    .slick-slide {
      margin: 0px 0px;
    }

    .slick-slide img {
      width: 100%;
    }

    .slick-prev:before,
    .slick-next:before {
        color: black;
    }

.slider {
  display:none;
}
.slider.slick-initialized {
  display: block;
}

/* ▲メインバナー */

h2{
	/*padding:12px 0 15px 50px !important;*/
	margin-bottom: 40px;
}


/* ▼バナーエリア */
.bannerArea{
	margin-bottom:40px;
}

.bannerArea .lineArea{
	margin-bottom:20px;
}

.bannerArea .lineArea img{
	width:100%;
}

.bannerArea .lineArea img.lineSp{
	display: none;
}
/* ▲バナーエリア */


/* ▼断熱工事について */
.setumeiArea{
	margin-bottom:60px;
}

.setumeiArea h2{
	text-align: center;
	font-size:32px;
	line-height:160%;
	color:#333;
}

#contents h3{
	color:#000;
	border-bottom:1px solid #4A8220;
	background-color: transparent;
	
	margin:60px auto 0;
	padding:10px;
	text-align: center;
	font-size: 24px;
}

#contents h3 strong{
	color:#4A8220;
}

/*.setumeiArea h4{
	position:relative;
	display: flex;
	text-align: center;
	background-color: #4A8220;
	color:#fff;
	font-size:18px;
}*/

/* ▼説明エリアのh4 */
.setumeiArea h4 {
    position: relative; /* 疑似要素の位置決めの基準とする */
    display: flex;
    justify-content: center; /* text-align: center; の代わりにflexで中央揃え */
    align-items: center; /* 垂直方向の中央揃え */
    background-color: #4A8220;
    color: #fff;
    font-size: 18px;
    padding: 5px 10px; /* 上下のパディングを追加して三角形のためのスペースを確保 */
    margin-bottom: 20px; /* 三角形と次のコンテンツの間にスペースを作る */
}

.setumeiArea h4::after {
    content: ''; /* 疑似要素にはcontentプロパティが必要 */
    position: absolute; /* 親要素（h4）を基準に絶対配置 */
    bottom: -10px; /* h4の下に配置（この値を調整して、どれだけ下に出るか決めます） */
    left: 50%; /* 左端から50%の位置に移動 */
    transform: translateX(-50%); /* 中央揃えのためにX軸方向に自身の幅の半分だけ戻す */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px; /* 上辺10px、左右10px、下辺0pxの三角形 */
    border-color: #4A8220 transparent transparent transparent; /* 上辺の色をh4と同じに */
}

/* ▲説明エリアのh4 */

.setumeiArea p{
	line-height:160%;
	font-size:18px;
}


/* --- メリットリスト (ol) --- */
.setumeiArea ol {
    list-style: none; /* デフォルトのリストスタイルを非表示にする */
    padding: 0; /* デフォルトのパディングをリセット */
    margin: 0; /* デフォルトのマージンをリセット */
	
	counter-reset: list-item; /* カウンターをリセットし、常に1から開始するようにする */
}

.setumeiArea ol li {
    position: relative; /* アイコン配置の基準 */
    background-color: #f7fcf5; /* 薄い緑系の背景色 */
    border: 1px solid #c9e0bf; /* #4A8220を明るくしたボーダー */
    border-radius: 8px; /* 角を丸くする */
    margin-bottom: 15px; /* 各メリット間の余白 */
    padding: 15px 20px 15px 55px; /* アイコンのための左パディング */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* 軽い影で立体感を */
    line-height: 1.6; /* 行間を調整して読みやすく */
    font-size: 16px; /* 本文のフォントサイズ */
    color: #333; /* テキストの色 */
}

/* 各メリットの番号をアイコンとして表示 */
.setumeiArea ol li::before {
	counter-increment: number 1;
    content: counter(list-item); /* リストの番号を自動取得 */
    /*counter-increment: list-item;*/ /* カウンターをインクリメント */
    position: absolute;
    left: 15px; /* 左からの位置 */
    top: 15px; /* 上からの位置 */
    font-size: 20px; /* 番号のサイズ */
    font-weight: bold;
    color: #ffffff; /* 白い文字色 */
    background-color: #4A8220; /* ベースカラーを適用 */
    border-radius: 50%; /* 丸い形にする */
    width: 30px; /* 丸の幅 */
    height: 30px; /* 丸の高さ */
    display: flex; /* 番号を丸の中で中央揃え */
    justify-content: center;
    align-items: center;
    flex-shrink: 0; /* 縮まないように */
}

.setumeiArea ol li strong {
    color: #4A8220; /* 強調部分にベースカラー */
    font-size: 18px; /* 強調部分のフォントサイズを少し大きく */
    display: block; /* 強調部分と本文を改行 */
    margin-bottom: 5px; /* 強調部分と本文の間の余白 */
}

.setumeiArea ol li br {
    display: none; /* strongタグで改行を表現するため、brは非表示にする */
}

/* --- レスポンシブ対応 --- */
@media only screen and (max-width: 768px) { /* スマホ向け調整 */
    .setumeiArea ol li {
        margin-bottom: 12px; /* スマホでの余白 */
        padding: 12px 15px 12px 50px; /* スマホでのパディング */
        font-size: 14px; /* スマホでの本文フォントサイズ */
        border-radius: 6px;
    }

    .setumeiArea ol li::before {
        left: 12px; /* スマホでのアイコン位置 */
        top: 12px; /* スマホでのアイコン位置 */
        font-size: 18px; /* スマホでの番号サイズ */
        width: 28px;
        height: 28px;
    }

    .setumeiArea ol li strong {
        font-size: 16px; /* スマホでの強調部分のフォントサイズ */
        margin-bottom: 3px;
    }
}
/* ▲断熱工事について */



/* ▼お知らせ */
div#oshirase{
	margin-bottom:10px;
	width:100%;
}

div#oshirase h2{
	text-align: center;
	font-size:28px;
	color:#333;
}


div#oshirase{
	margin-bottom:5px;
}

div#oshirase .box {
    border: 1px solid #dcdcdc; /* 全体を囲む薄いグレーのボーダー */
    border-radius: 8px; /* 角を丸くする */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* 軽い影で立体感を */
    background-color: #ffffff; /* 白い背景 */
    padding: 15px; /* ボックス全体のパディング */
	margin-bottom:60px;
}

div#oshirase .box ul {
    padding: 0; /* リストのデフォルトパディングをリセット */
    margin: 0; /* リストのデフォルトマージンをリセット */
    list-style: none; /* リストのマーカーを非表示 */
}

div#oshirase .box li {
    font-size: 16px;
    line-height: 1.6; /* 行間を調整して読みやすく */
    margin-bottom: 0; /* li自体の下マージンをリセット（pタグで調整） */
    color: #333; /* 基本のテキスト色 */
}

/* 各お知らせの段落スタイル */
div#oshirase .box li p {
    margin-bottom: 15px; /* 各段落間の余白 */
    font-size: 16px; /* 各段落の基本フォントサイズ */
    line-height: 1.6;
}

div#oshirase .box li p:last-child {
    margin-bottom: 0; /* 最後の段落の下マージンは不要 */
}

/* レスポンシブ対応 */
@media only screen and (max-width: 768px) {
    div#oshirase {
        margin-bottom: 20px;
    }

    div#oshirase h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    div#oshirase .box {
        padding: 10px;
        border-radius: 6px;
    }

    div#oshirase .box li p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
}
/* ▲お知らせ */



/* ▼最新情報 */

/* --- 最新情報セクション全体 (div#new) --- */
div#new {
    margin-bottom: 60px; /* 下部マージンを確保 */
}

div#new h2{
	text-align: center;
	font-size:28px;
	color:#333;
}

/* --- 最新情報リストのボックス (div#new .box) --- */
div#new .box {
    overflow-y: auto; /* 縦方向のみスクロールバーを表示 */
    height: 300px; /* 高さを少し増やして、より多くの情報が見えるように */
    background-color: #ffffff; /* 白い背景 */
    border: 1px solid #dcdcdc; /* 薄いグレーのボーダー */
    border-radius: 8px; /* 角を丸くする */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* 軽い影 */
    padding: 10px; /* ボックス全体のパディング */
}

/* --- 最新情報のリスト (ul#whatsnew-list) --- */
ul#whatsnew-list {
    list-style: none; /* デフォルトのリストマーカーを非表示 */
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* 日付見出しのスタイル */
ul#whatsnew-list .news-date-heading {
    padding: 10px 5px;
    font-weight: bold;
    color: #4A8220; /* ベースカラーで日付を強調 */
    border-top: 1px dashed #c9e0bf; /* ベースカラーを明るくした点線ボーダー */
    background-color: #f7fcf5; /* 薄い緑系の背景 */
    margin-top: 10px; /* 日付見出しの上の余白 */
}

ul#whatsnew-list .news-date-heading:first-child {
    margin-top: 0; /* 最初のアイテムは上マージンなし */
    border-top: none; /* 最初のアイテムは上ボーダーなし */
}

ul#whatsnew-list .news-date-heading .date-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
ul#whatsnew-list .news-date-heading .date-icon img {
    vertical-align: middle; /* アイコンをテキストと中央揃え */
}


/* 各ニュースアイテムのスタイル */
ul#whatsnew-list li:not(.news-date-heading) { /* 日付見出しではないliに適用 */
    display: flex; /* Flexboxでアイコンとタイトルを横並び */
    align-items: flex-start; /* 上端揃え */
    padding: 8px 5px;
    border-bottom: 1px solid #eee; /* 薄い区切り線 */
}

ul#whatsnew-list li:not(.news-date-heading):last-of-type { /* その日付の最後のニュースアイテムの下ボーダー */
    border-bottom: none;
}

ul#whatsnew-list li:not(.news-date-heading) .news-category-icon {
    flex-shrink: 0; /* 縮まないように */
    width: 90px; /* アイコン領域の幅 */
    text-align: center;
    margin-right: 10px; /* アイコンとタイトルの間隔 */
}

ul#whatsnew-list li:not(.news-date-heading) .news-category-icon img {
    width: 72px; /* カテゴリアイコンのサイズを調整 */
    height: auto;
    display: block; /* ブロック要素にして中央寄せ可能に */
    margin: 0 auto; /* 中央寄せ */
}

ul#whatsnew-list li:not(.news-date-heading) .news-title-text {
    flex-grow: 1; /* 残りのスペースを埋める */
}

ul#whatsnew-list li:not(.news-date-heading) a {
    color: #333; /* リンク色を濃いグレーに */
    text-decoration: none; /* 下線をなくす */
    display: block; /* クリック領域を広げる */
}

ul#whatsnew-list li:not(.news-date-heading) a:hover {
    color: #4A8220; /* ホバーでベースカラーに */
    text-decoration: underline; /* ホバーで下線を表示 */
}


/* --- レスポンシブ対応 --- */
@media only screen and (max-width: 768px) {
    div#new {
        margin-bottom: 30px;
    }

    div#new h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    div#new .box {
        height: 280px; /* スマホで少し高さを調整 */
        padding: 5px;
        border-radius: 6px;
    }

    ul#whatsnew-list {
        font-size: 14px; /* スマホでのフォントサイズ */
    }

    ul#whatsnew-list .news-date-heading {
        padding: 8px 5px;
        font-size: 14px;
    }

    ul#whatsnew-list li:not(.news-date-heading) {
        flex-direction: column; /* スマホでは縦並び */
        align-items: flex-start; /* 左寄せ */
        padding: 8px 5px;
    }

    ul#whatsnew-list li:not(.news-date-heading) .news-category-icon {
        /*width: auto;*/ /* 幅指定を解除 */
        margin-right: 0;
        margin-bottom: 5px; /* アイコンとタイトルの間にスペース */
    }
    ul#whatsnew-list li:not(.news-date-heading) .news-category-icon img {
        /*width: 25px;*/ /* スマホでアイコンサイズを調整 */
        margin: 0; /* 中央寄せを解除 */
    }

    ul#whatsnew-list li:not(.news-date-heading) .news-title-text {
        width: 100%; /* タイトルが全幅を占める */
    }

    ul#whatsnew-list li:not(.news-date-heading) a {
        font-size: 14px;
    }
}
/* ▲最新情報 */



/* ▼Q&Aダイジェスト */
div#qa{
	margin-bottom:60px;
}


div#qa h2{
	text-align: center;
	font-size:28px;
	color:#333;
}


/* --- Q&Aの各項目を囲む枠 (waku) --- */
div#qa div.waku {
    margin-bottom: 25px; /* 各Q&A項目間の余白 */
    background-color: #ffffff; /* 白い背景 */
    border-radius: 8px; /* 角を丸くする */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 軽い影で立体感を出す */
    overflow: hidden; /* 角丸で内容がはみ出ないように */
}

/* --- 質問部分 (wakuQ) --- */
div#qa div.wakuQ {
    position: relative; /* 疑似要素の基準位置とする */
    padding: 15px 20px 15px 75px; /* Qアイコンとテキストのためのパディング調整 */
    background-color: #e0f2d7; /* #4A8220を明るくした色 */
    color: #333; /* 読みやすい濃いグレーの文字色 */
    font-size: 17px;
    line-height: 1.6;
    font-weight: bold; /* 質問を太字に */
    border-bottom: 1px solid #c9e0bf; /* 質問と回答の間に薄い線 */
    /* background-image は疑似要素で代替するため削除 */
    /* border-top, border-left, border-right もまとめてwakuで定義するため削除 */
}

/* Qアイコンの疑似要素 */
div#qa div.wakuQ::before {
    content: 'Q'; /* Qの文字を表示 */
    position: absolute;
    left: 20px; /* 左からの位置 */
    top: 50%; /* 垂直方向の中央 */
    transform: translateY(-50%); /* 自身の高さの半分だけ上に移動して中央揃え */
    font-size: 28px; /* アイコンのサイズ */
    font-weight: bold;
    color: #4A8220; /* ベースカラーを適用 */
    background-color: #ffffff; /* 白い背景でQを目立たせる */
    border: 2px solid #4A8220; /* ベースカラーのボーダー */
    border-radius: 50%; /* 丸い形にする */
    width: 40px; /* 丸の幅 */
    height: 40px; /* 丸の高さ */
    display: flex; /* Qを丸の中で中央揃え */
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 軽い影 */
}

/* --- 回答部分 (wakuA) --- */
div#qa div.wakuA {
    position: relative; /* 疑似要素の基準位置とする */
    padding: 15px 20px 15px 75px; /* Aアイコンとテキストのためのパディング調整 */
    background-color: #f7fcf5; /* 非常に薄い緑の背景 */
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    /* height: 100%; は不要。コンテンツに合わせて自動調整 */
    /* background-image, border は疑似要素とwakuで定義するため削除 */
}

/* Aアイコンの疑似要素 */
div#qa div.wakuA::before {
    content: 'A'; /* Aの文字を表示 */
    position: absolute;
    left: 20px; /* 左からの位置 */
    top: 20px; /* 上からの位置（テキストの開始に合わせる） */
    font-size: 28px; /* アイコンのサイズ */
    font-weight: bold;
    color: #4A8220; /* ベースカラーを適用 */
    background-color: #ffffff; /* 白い背景でAを目立たせる */
    border: 2px solid #4A8220; /* ベースカラーのボーダー */
    border-radius: 50%; /* 丸い形にする */
    width: 40px; /* 丸の幅 */
    height: 40px; /* 丸の高さ */
    display: flex; /* Aを丸の中で中央揃え */
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 軽い影 */
}

div#qa div.wakuA p {
    margin-top: 0; /* pタグのデフォルトマージンをリセット */
    margin-bottom: 10px; /* 各段落間のマージン */
}

div#qa div.wakuA p:last-child {
    margin-bottom: 0; /* 最後の段落の下マージンは不要 */
}

div#qa div.wakuA strong {
    color: #4A8220; /* 強調部分にベースカラー */
}

/* --- 右寄せ画像 (img.imgRight) --- */
div#qa img.imgRight {
    float: right;
    margin-left: 15px; /* テキストとの間隔を確保 */
    margin-bottom: 10px; /* 下にテキストが続く場合のマージン */
    padding: 5px;
    border: 1px solid #c9e0bf; /* ベースカラーに合わせた薄いボーダー */
    background-color: #ffffff;
    border-radius: 5px; /* 角丸にする */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 軽い影 */
    max-width: 40%; /* 親要素に対する最大幅を設定 */
    height: auto;
}


/* --- レスポンシブ対応 --- */
@media only screen and (max-width: 768px) { /* スマートフォン向けの調整 */
    div.waku {
        margin-bottom: 15px;
        border-radius: 6px;
    }

    div.wakuQ,
    div.wakuA {
        padding: 12px 15px 12px 55px; /* Q/Aアイコンのスペースを少し減らす */
        font-size: 15px; /* フォントサイズを小さく */
        line-height: 1.5;
    }

    div.wakuQ::before,
    div.wakuA::before {
        left: 15px; /* アイコンの左位置を調整 */
        font-size: 24px; /* アイコンサイズを小さく */
        width: 35px;
        height: 35px;
        border-width: 1px; /* ボーダーを細く */
    }
    div.wakuA::before {
        top: 15px; /* 回答アイコンのトップ位置も調整 */
    }

    div.wakuA p {
        margin-bottom: 8px;
    }

    img.imgRight {
        float: none; /* スマホではフロートを解除 */
        width: 95%; /* 幅を広げる */
        max-width: none; /* max-widthを解除してwidthを適用 */
        margin: 10px auto; /* 中央寄せ */
        display: block; /* ブロック要素にして中央寄せ可能に */
    }
}

/* @media only screen and (max-width:360px) は、768px以下のメディアクエリでカバーできるため、
   既存の重複する定義は削除または統合しました。 */

@media only screen and (max-width:360px){
img.imgRight{
	float:none;
	width:95%;
	margin-left:0;
	margin-bottom:10px;
}
}
/* ▲Q&Aダイジェスト */



/* ▼オリコバナー */
div#orico{
	text-align: center;
	margin:10px 0 60px;
	padding-top: 120px;
	margin-top:-120px;
}

div#orico p{
	font-size:12px;
	margin-top:0;
}
/* ▲オリコバナー */



/* ▼リンクバナー */
.linkbanner{
	margin-bottom:60px;
	text-align: center;
	/* アイテムの配置を制御しやすくするためにFlexboxを追加 */
	display: flex;
	flex-wrap: wrap; /* アイテムを次の行に折り返すことを許可 */
	justify-content: center; /* アイテムが折り返したときに中央に配置 */
	gap: 20px; /* 画像間にスペースを追加 */
}

.linkbanner a {
	/* デフォルトでは個々のリンク要素がコンテンツの幅になります */
	display: block; /* aタグをブロック要素にして幅と高さを設定可能に */
	/* imgが100%になるので、aタグのデフォルトの幅は指定しない */
}

.linkbanner img {
	max-width: 100%; /* 親（aタグ）の幅いっぱいに広がるようにする */
	height: auto; /* アスペクト比を維持 */
	vertical-align: middle; /* 画像の下にできる余白をなくすため */
}


/* 画面幅が1200px以下のスタイル */
@media (max-width: 1200px) {
	.linkbanner a {
		/* 各aタグ（リンク要素）の幅を均等に縮小 */
		/* 5つのリンクとギャップを考慮して、約19%に設定します */
		/* ここは元の画像サイズや、表示したい縮小率によって微調整してください */
		/*width: 19%;*/ /* aタグの幅を縮小 */
		width: calc(100% / 5 - 20px);
	}
}

/* 画面幅が700px以下のスタイル */
@media (max-width: 700px) {
	.linkbanner a {
		width: calc(100% / 2 - 20px);
	}
}
/* ▲リンクバナー */







/* ▼太陽光発電とセットの屋根改修キャンペーン */
.solar{
	margin-top:10px;
	margin-bottom:60px;
	padding:5px 20px 20px;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	background-color:#F4F1E8 !important;
}

.solar h2{
	text-align: center;
	background: linear-gradient(180deg, rgb(236, 196, 51), rgb(185, 157, 0));
	border-bottom:none;
	padding:5px !important;
	font-size:32px;
	line-height:120%;
	color:#fff;
}

.solar .solar-flex{
	width:100%;
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	grid-column-gap: 2%
}

.solar .solar-flex .txtArea{
	width: 66%;
}

.solar .solar-flex .txtArea strong{
	font-size: 110%;
}

.solar .solar-flex .imgArea{
	width: 32%;
}

.solar .solar-flex .imgArea img{
	width:100%;
}

.solar .tel{
	margin: 10px 0 0 0;
	text-align: center;
	font-size: 110%;
}

/* ▲太陽光発電とセットの屋根改修キャンペーン */


#droneArea{
	margin-bottom:20px;
}

#droneArea img{
	width:100%;
	filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.4));
}

#droneArea img:hover{
	filter: none;
    transition: 0.2s ;
}


#droneArea img.lineSp{
	display: none;
}


.worksButtonArea{
    margin:0;
    width:100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

a.worksButtonAreaItem{
    width: calc(100% / 3 - 3%);
	/*width:20% !important;*/
    height:130px;
    margin-bottom:10px;
    padding:20px 10px;
    text-align: left;
    background-repeat: no-repeat;
    background-size:cover;
	background-position: bottom;
	background-color:#fff;
    color:#010101;
	text-decoration: none !important;
    filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.4));
	border:1px solid #333;
}

.worksButtonAreaItem:hover{
    text-decoration: none;
    filter: none;
    transition: 0.2s ;
}

.worksButtonAreaItem:not(:last-of-type){
    margin-right: 10px;
}

.worksButtonArea .yaneBg{
    background-image:url("../../img/index/worksButtonBgYane.jpg");
}

.worksButtonArea .gaihekiBg{
    background-image:url("../../img/index/worksButtonBgGaiheki.jpg");
}

.worksButtonArea .amadoiBg{
    background-image:url("../../img/index/worksButtonBgAmadoi.jpg");
}

.worksButtonAreaItem .listTitle{
    font-size:22px;
    line-height: 120%;
    font-weight: bold;
    color: #152F86;
}



#aisatuArea{
	float:right;
	width: 80%;
	margin-bottom:40px;
}

#sidemenuArea{
	float:left;
	width:18%;
	padding-top:12px;
	margin-bottom:40px;
}
#sidemenuArea div{
	margin-bottom:10px;
}

#sidemenuArea a:hover img{
	opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}








div#Banner{
	margin:20px 0 0 0;
}


div#Calendar{
	clear:both;
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	width:100%;
}

div#Calendar .yotei{
	/*width:680px;*/
	background-color:#2C393F;
	color:#fff;
	margin-bottom:10px;
}

div#Calendar .yotei dl {
	clear:left;
}

div#Calendar .yotei dd, div#Calendar .yotei dt {
	padding:2px 5px;
}
div#Calendar .yotei dt {
	font-weight:normal;
	width:250px;
	padding-left:10px;
	font-size:12px;	
	float:left;
}
div#Calendar .yotei dd {
	font-size:12px;
	line-height:140%;
	margin-left:300px;
}


div#Calendar .nendo{
	margin-top:30px;
	font-size: 20px;
	font-weight: bold !important;
	border-left:8px solid #877000;
	padding-left: 10px;
}

div#Calendar .yoyaku{
	text-align:right;
	font-size:12px;
	margin-bottom:5px;
}

div#Calendar .chui{
	margin-right:0px;
}

div#Calendar .ca table{
	/*width:680px;*/
	width:100%;
	border-top:1px solid #666;
	border-left:1px solid #666;
}


div#Calendar .ca th {
	padding:3px;
	border-bottom:1px solid #666;
	border-right:1px solid #666;
}

div#Calendar .ca td {
	padding:3px;
	border-bottom:1px solid #666;
	border-right:1px solid #666;
	vertical-align:top;
}

.youbi{
	width:82px;
	background-color:#DBE3FF;
}

.sun{
	width:82px;
	background-color:#FFCCCC;
	color:#FF3300;
}

.sat{
	width:82px;
	background-color:#66CCFF;
	color:#0066CC;
}

.month{
	width:30px;
	background-color:#CCCC00;
	font-size:22px;
}

.day{
	font-size:16px;
	background-color:#ECF9FF;
	font-weight:bold;
	padding:3px;
}

.sunday{
	color:#FF3300;
	font-size:16px;
	background-color:#FFCCCC;
	font-weight:bold;
	padding:3px;
}

.saturday{
	color:#0066CC;
	font-size:16px;
	background-color:#66CCFF;
	font-weight:bold;
	padding:3px;
}

.today{
	font-size:16px;
	background-color:#FFCC33;
	font-weight:bold;
	padding:3px;
}



.caNaiyou{
	font-size:12px;
	border-bottom:1px dotted #999;
	padding:3px;
}

table#whatsnew {
	font-size:14px;
	width:100%;
	margin:0;
	vertical-align:top;
	text-align:left;
}
table#whatsnew td {
	padding:2px 4px;
}
table#whatsnew img {
	vertical-align:middle;
	border:0 none;
	padding:0 4px 0 0;
}





div#osiraseGaiheki{
	margin:5px 0;
	padding:5px 10px;
	border:2px solid #003399;
	background-color:#EEFCFF;
	font-size:16px;
	line-height:130%;
}

/* facebookなど */
#infoArea .facebook{
	float:left;
	width:350px;
	margin-left:5px;
}

#infoArea .twitter{
	float:right;
	padding-right:5px;
}



@media only screen and (max-width:750px){
	#droneArea img.line{
		display: none;
	}
	
	#droneArea img.lineSp{
		display: block;
	}
}