@charset "utf-8";


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	-webkit-text-size-adjust: none;
}


/* 表ページ用設定 */
body.main-page {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
    background: #7cd0f3 url(./images/bg_s.png) repeat center top; /* スマホ・タブレット用背景（画像パスは適宜調整） */
    background: #7cd0f3 url(./images/bg.png) repeat center top/100px; /* PC用背景（画像パスは適宜調整、背景サイズ50%） */
    /* 背景画像がない場合のフォールバックカラー #7cd0f3 */
    color: #666; /* メインページの文字色 */
}

/* 裏ページ用設定 */
body.sub-page {
    margin: 0;
    padding: 0;
    background-color: #000; /* 真っ黒な背景 */
    color: #fff; /* 白いテキスト */
    font-family:  "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho Pro","ヒラギノ明朝 Pro", serif; /* サブページ用のフォント（不気味な雰囲気に合うように変更） */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;  /*画面全体に表示 */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* わずかな光の揺らぎ */
    -webkit-text-size-adjust: none;
    line-height: 1.8; /* 行間を広げて視認性を高める */
}

/* シンプルな白背景ページ用設定 */
body.white-page {
    background-color: #ffffff; /* 真っ白な背景 */
    color: #333; /* 濃いめのテキスト色で可読性を確保 */
    margin: 0px;
    padding: 0px;
    font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 15px;
    line-height: 2;
    -webkit-text-size-adjust: none;
}



h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,textarea,input {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/* ul要素に番号を付けるためのクラスを追加 */
ul.num {
  list-style-type: decimal; /* リストスタイルを番号（decimal）に設定 */
  padding-left: 40px; /* olと統一するために左側の余白を追加 */
  padding-bottom: 15px; /* olと統一するために下側の余白を追加 */
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #ff8c00;		/*リンクテキストの色*/
	transition: 0.5s;	/*同上*/
}
a:hover {
	color: #f35b7f;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*container（全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1100px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 4%;	/*上下、左右へのブロック内の余白*/
}

/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 50px;	/*高さ*/
	position: relative; 
}

/* sub-page のヘッダー高さ */
.sub-page header { 
        height: 80px;
}


/*ロゴ画像（※logo.cssにもロゴの設定があります）*/
#logo {
	z-index: 1;
	width: 10%;	/*ロゴ画像の幅（※トップページ以外）*/
	position: absolute;
	left: 1%;	/*ヘッダーブロックに対して左から1%の場所に配置（※トップページ以外）*/
        top: 1%;	/* ページの上から1%の場所に配置 */

/*	bottom: -200%;	ヘッダーブロックに対して下から-80pxの場所に配置（※トップページ以外）*/

	background: #ffdc00;	/*背景色*/
	border-radius: 50%;		/*角丸のサイズ*/
	transform: none;	/*回転する角度のリセット（※トップページ以外）*/
	border: 10px solid #fff;	/*枠線の幅、線種、色*/
	box-shadow: 2px 3px 8px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.3が透明度30%の事。*/
}

/*検索コンソール
---------------------------------------------------------------------------*/
#input-area {
  text-align: center;
  margin-top: 10px;
}

.input-group {
  display: flex;
  justify-content: right;
  position: fixed; /* 追従させる為にfixedの値を記述します */
  z-index: 99999; /* 他の要素の下に隠れないように全面配置させます */
  top: 20px; /* 上から20pxのところにバナーを配置します */
  right: 40px; /* 右から40pxのところにバナーを配置します */
  gap: 8px;
}

#mnemo-id {
  background-color: #eee;    /*検背景カラー*/
  border:none;      /*枠線を消す*/ 
  color: #000000;   /*テキスト色*/
  border-radius:4px 0 0 4px;    /*左側の角を少し丸める*/
  padding: 8px 12px;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 16px;      /*フォントサイズ指定*/
  width: 250px;    /*横幅*/
  outline: 0;      /*クリック時の青い枠線消す*/
}


#mnemo-id:focus {
  border-color: #00ff00;
}


#mnemo-button {
  width:70px;          /*横幅*/ 
  background: #7fbfff; /*背景色*/ 
  border:none;         /*枠線を消す*/
  color:#fff;          /*テキストカラー*/
  font-size:16px;      /*フォントサイズ指定*/ 
  padding: 8px 16px;
  font-family: Consolas, 'Courier New', monospace;
  border-radius:0 4px 4px 0;    /*右側の角を少し丸める*/ 
  cursor: pointer;     /*マウスを乗せると指差しポインターになる*/
}


#imnemo-button:hover {
  background-color: #92dbff;
  color: #000;
}


/*コンテンツ（メイン、サブブロックを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	overflow: hidden;
	border-radius: 10px 10px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
	background: #fff;	/*背景色*/
	padding: 3% 3% 0;	/*ボックス内の余白。上、左右、下。*/
}

/*裏ページのコンテンツ設定*/
#black-contents {
	clear: both;
	overflow: hidden;
	border-radius: 10px 10px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
	background: #000;	/*背景色*/
	padding: 3% 3% 20%;	/*ボックス内の余白。上、左右、下。*/
        top:30px;
}


/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 100%;		/*幅*/
	padding-top: 3%;	/*上に空ける余白*/
}

/*裏ページの大見出し*/
#main h1 {
    font-size: 2em; /* 大見出し */
    color: #ff4500; /* 強調文字の色（オレンジレッド系） */
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff4500; /* 下線 */

  /* デジタルノイズエフェクトの追加 */
  position: relative; /* 擬似要素の基準点 */
  overflow: hidden; /* はみ出しを隠す */
}

/* 擬似要素の作成 */
#main h1::before,
#main h1::after {
  content: attr(data-text); /* HTMLのdata-text属性からテキストを取得 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* 元のテキストと同じフォントスタイルを継承 */
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  
  opacity: 0.2; /* 透明度を低くしてさりげなく */
  pointer-events: none; /* クリックイベントを無効にする */
}

/* 擬似要素1: わずかなズレと色 */
#main h1::before {
  color: #00ffff; /* シアン系 */
  transform: translate(1px, 1px);
  animation: glitch-subtle 0.8s infinite linear alternate-reverse;
}

/* 擬似要素2: わずかなズレと色 */
#main h1::after {
  color: #c408c4; /* マゼンタ系 */
  transform: translate(-1px, -1px);
  animation: glitch-subtle 1.2s infinite linear alternate;
}

/* アニメーションの定義 */
@keyframes glitch-subtle {
  0% { transform: translate(1px, -5px); }
  25% { transform: translate(-1.5px, 1px); }
  50% { transform: translate(1px, 1px); }
  75% { transform: translate(-1.5px, -1px); }
  100% { transform: translate(1px, -5px); }
}

/*メインコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	font-size: 18px;	/*文字サイズ*/
	margin-bottom: 20px;
	padding: 5px 20px;	/*上下、左右への余白*/
	background: #ff8c00;	/*背景色*/
	border-radius: 30px;	/*角丸のサイズ*/
	color: #fff;			/*文字色*/
	position: relative;
}
/*装飾用画像の土台設定*/
#main h2::after, #main h3::after {
	display: block;
	position: absolute;
	right: 0px;	/*h2,h3タグに対して右から0pxの場所に配置*/
	top: -20px;	/*h2,h3タグに対して上から-20pxの場所に配置*/
}
/*装飾用画像（飛行機）*/
#main h2.bg1::after, #main h3.bg1::after {
	content: url(../images/bg1.png);
}
/*装飾用画像（木馬）*/
#main h2.bg2::after, #main h3.bg2::after {
	content: url(../images/bg2.png);
}
/*装飾用画像（列車）*/
#main h2.bg3::after, #main h3.bg3::after {
	content: url(../images/bg3.png);
}
/*装飾用画像が入った場合、テキストと画像が重ならないように右側に余白をとる設定*/
#main h2.bg1, #main h3.bg1,
#main h2.bg2, #main h3.bg2,
#main h2.bg3, #main h3.bg3 {
	padding-right: 160px;
}
/*メインコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	font-size: 20px;	/*文字サイズ*/
	color: #ff8c00;			/*文字色*/
	margin-bottom: 10px;
	padding: 2px 15px;	/*上下、左右への余白*/
	position: relative;
}

メインコンテンツの段落タグ設定
#main p {
	padding: 10px 20px 15px;	/*上、左右、下への余白*/
}

/*
#main h2 + p,
#main h3 + p,
#main h4 + p,
#main h5 + p {
	margin-top: -10px;
}
*/

body.main-page p {
    padding-left: 0; /* メインページのPタグの左インデントを0にする */
    /* その他のメインページPタグのスタイル（必要であれば） */
    padding: 10px 20px 15px; /* 元々のアドメンティア塾のCSSにあったPタグのpadding */
}

body.main-page hr.orange-line {
    border: none;         /* デフォルトのボーダーを削除 */
    border-top: 2px solid #ff4500; /* 上辺に1pxの白い実線（これが線として表示される） */
    margin: 10px 0;       /* 上下に余白 */
    width: 85%;          /* 幅を親要素に合わせる */
}

/*以下、裏パージ用*/
#main h4 {
	clear: both;
	font-size: 20px;
	margin-bottom: 1px;
	padding: 20px 0px 0px 10px;	/*上下、左右への余白*/
	background: #000;		/*背景色*/
	color: #fff;			/*文字色*/
	position: relative;
}

#main h5 {
	clear: both;
	font-size: 18px;
	margin-bottom: 1px;
	padding: 10px 0px 0px 10px;	/*上下、左右への余白*/
	background: #000;		/*背景色*/
	color: #ffd700;			/*文字色*/
	position: relative;
}


body.sub-page #manual-container {
    max-width: 800px; /* 読みやすい幅に制限 */
    margin: 40px auto; /* 上下左右に余白、中央配置 */
    padding: 30px;
    background-color: #1a1a1a; /* やや明るめの黒で、背景との区別をつける */
    border-radius: 8px; /* 角を少し丸める */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1); /* わずかな光沢 */
}

body.sub-page p {
    margin-bottom: 5px;
    padding-left: 10px; /* 左側に少しインデント */
}

body.sub-page strong {
    color: #ff4500; /* 強調文字の色（オレンジレッド系） */
}

body.sub-page .example {
    background-color: #2a2a2a; /* 例示ブロックの背景 */
    border: 1px solid #555;
    padding: 15px;
    margin-top: 15px;
    border-radius: 4px;
}

/*裏ページのホワイトライン*/
body.sub-page hr.white-line {
    border: none;         /* デフォルトのボーダーを削除 */
    border-top: 1px solid #fff; /* 上辺に1pxの白い実線（これが線として表示される） */
    margin: 10px 0;       /* 上下に余白 */
    width: 100%;          /* 幅を親要素に合わせる */
}

/*フッター設定
---------------------------------------------------------------------------*/
body.main-page footer {
	clear: both;
	background: #ff8c00;	/*背景色*/
	color: #fff;	/*文字色*/
	text-align: center;
	border-radius: 0px 0px 10px 10px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
	margin-bottom: 50px;
	padding: 15px 0;
}

/*裏ページ用フッター*/
body.sub-page footer {
	clear: both;
	background: #000;	/*背景色*/
	color: #fff;	/*文字色*/
	text-align: center;
	margin-bottom: 50px;
	padding: 15px 0;
}

/* シンプルな白背景ページ用フッター */
body.white-page footer {
    clear: both;
    background: #f0f0f0; /* ややグレーの背景 */
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    padding: 15px 0;
    border-top: 1px solid #eee; /* 上部に軽い線 */
}

footer a {
	color: #fff;
	text-decoration: none;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0 20px;
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	color: #ff8c00;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #eee;	/*下線の幅、線種、色*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 95%;	/*テーブル幅*/
	margin: 0 auto 20px;
	border: 3px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
}
.ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブル内側の線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #eee;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}
/*テーブルta1内にリストタグを入れた場合の設定*/
.ta1 td ul.disc {padding-bottom: 10px;padding-left: 20px;}
.ta1 td ol {padding-bottom: 0;padding-left: 22px;}

/*ta2設定*/
.ta2 {
	width: 85%;	/*テーブル幅*/
	margin: 0 auto 20px;
	border: 3px solid #666;	/*テーブル外側の線の幅、線種、色*/
}
.ta2 td, .ta2 th {
	border: 1px solid #666;	/*テーブル内側の線の幅、線種、色*/
	padding: 10px 10px;	/*ボックス内の余白*/
	word-break: break-all;
        text-align: left;
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #666;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/左側ボックス*/
.ta2 th {
	font-weight: normal;
}


/*ta3設定*/
.ta3 {
	width: 95%;	/*テーブル幅*/
	margin: 0 auto 20px;
	border: 3px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
}
.ta3 td, .ta3 th {
	border: 1px solid #ccc;	/*テーブル内側の線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta3 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #eee;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta3の左側ボックス*/
.ta3 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta3 th img {
	width: 100%;
}
/*テーブルta1内にリストタグを入れた場合の設定*/
.ta3 td ul.disc {padding-bottom: 10px;padding-left: 20px;}
.ta3 td ol {padding-bottom: 0;padding-left: 22px;}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #ff8c00;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	width: 50px;	/*幅*/
	line-height: 50px;	/*高さ*/
	border-radius: 50%;	/*角丸のサイズ*/
	margin-bottom: 10px;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #999;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	text-shadow: none;
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0 20px 15px 40px;list-style: disc;}
.color1, .color1 a {color: #f35b7f;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;float: right;}
.sh {display: none;}



/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){


/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 60px;	/*高さ*/
}

/*ロゴ画像（※logo.cssにもロゴの設定があります）*/
#logo {
	width: 15%;	/*ロゴの幅（※トップページ以外）*/
        top: 1%;	/* ページの上から1%の場所に配置 */
}


/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: none;
	width: auto;
	padding: 3% 0 0;	/*上、左右、下へのボックス内の余白*/
}

}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*ロゴ画像（※logo.cssにもロゴの設定があります）*/
#logo {
	width: 15%;	/*ロゴの幅（※トップページ以外）*/
        top: 1%;	/* ページの上から1%の場所に配置 */
}


/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.fl-half{float:left;width:45%;margin-left:3%;}
.sh {display:block;}
.pc {display:none;}

}



/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像（※logo.cssにもロゴの設定があります）*/
#logo {
	width: 15%;	/*ロゴの幅（※トップページ以外）*/
        top: 1%;	/* ページの上から1%の場所に配置 */
/*	bottom: -20px;	ヘッダーブロックに対して下から-20pxの場所に配置（※トップページ以外）*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*装飾用画像を非表示にする*/
#main h2.bg1::after, #main h3.bg1::after,
#main h2.bg2::after, #main h3.bg2::after,
#main h2.bg3::after, #main h3.bg3::after {
	content: url(none);
}
/*装飾用画像が入った場合、テキストと画像が重ならないように右側に入れていた余白をリセットする*/
#main h2.bg1, #main h3.bg1,
#main h2.bg2, #main h3.bg2,
#main h2.bg3, #main h3.bg3 {
	padding-right: 20px;
}

}



/*画面幅550px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:550px){

/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 60px;	/*高さ*/
}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 16px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
    overflow-x: hidden;
}  

/* コンテンツを中央寄せにするスタイルを削除または無効化 */
body.sub-page {
    display: block; /* Flexboxを無効化 */
    justify-content: initial;
    align-items: initial;
}


/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツのh2とh3タグ*/
#main h2, #main h3 {
	font-size: 18px;
	padding-left: 10px;
	padding-right: 10px;
	padding: 5px 10px;
}
/*メインコンテンツの段落タグ設定*/
#main p {
	padding: 0px 10px 15px;	/*上、左右、下への余白*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0 10px;
}

/*テーブル
---------------------------------------------------------------------------*/
/* テーブルを囲む要素（divなど）に横スクロールを設定 */
/* テーブルの外側に以下のHTMLを追加して使用してください */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* スムーズなスクロールを有効化 */
}

/* 既存のテーブル幅指定を解除して、テーブルが内容に合わせて広がるように調整 */
.ta1 {
  width: 100%;
}
.ta1 th, .ta1 td {
  white-space: nowrap; /* セル内のテキストを改行させない */
  width: 100%;
}


/*テーブル内の左側*/
.ta1 th {
	width: 30%;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
 	font-size: 14px;	/*文字サイズ*/
}

  /* .ta2のセル幅を自動調整に */
  .ta2 th, .ta2 td {
    white-space: nowrap; /* テキストの折り返しは無効のまま */
    width: auto; /* 幅を自動調整し、内容に合わせて広がるようにする */
  }

  /* .ta2のテーブル自体の幅を自動調整に */
  .ta2 {
    width: auto;
    min-width: 100%; /* 画面幅より小さい場合は100%の幅を確保 */
  }


    /* 既存のテーブル幅指定を解除して、テーブルが内容に合わせて広がるように調整 */
    .ta3 {
        width: 100%;
    }

    /* ta3の改善案 */
    .ta3 th, .ta3 td {
        /* 横スクロールではなく、縦に積むレイアウトに変更 */
        display: block;
        width: 100%; /* 幅を100%に */
        box-sizing: border-box;
        white-space: normal; /* テキストの折り返しを許可 */
        text-align: left;
        padding: 5px 10px; /* パディングを調整 */
    }
    .ta3 th {
        font-weight: bold; /* 見出しを太字に */
        background-color: #f0f0f0; /* 背景色を付けて見やすく */
    }
    .ta3 th img {
        display: block; /* 画像をブロック要素に変更 */
        margin: 0 auto; /* 画像を中央揃え */
        max-width: 120px; /* 画像の最大幅を固定 */
        height: auto;
    }
    .ta3 th.tamidashi {
        text-align: center;
        font-size: 16px;
    }


/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.fl-half{float:none;width:100%;margin-left:0;}

}



/*画面幅420px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:420px){

/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 60px;	/*高さ*/
	margin-bottom: 30px;	/*ヘッダーの下に空けるスペース*/
}

}



/*画面幅380px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:380px){

/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像（※logo.cssにもロゴの設定があります）*/
#logo {
	width: 15%;		/*ロゴ画像の幅*/
        top: 1%;	/* ページの上から1%の場所に配置 */
/*	bottom: -15px;	ヘッダーブロックに対して下から-35pxの場所に配置（※トップページ以外）*/
}

}