@charset "utf-8";

/*------------------------------------------------------------
  IMPORTS & FONTS
------------------------------------------------------------*/
@import url("keyframes.css");
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Zen+Maru+Gothic:wght@500;700;900&display=swap');

/*------------------------------------------------------------
  BASE STYLES（全体設定）
------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #545454;	/*全体の文字色*/
	/*フォント種類*/
  	font-family: "Nunito", "Zen Maru Gothic", serif; 
  	font-size: 16px;		/*文字サイズ*/
	line-height: 2.0;		/*行間*/
	background: #b4c19a;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: square; padding-left: 40px;padding-bottom: 15px;}
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%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #545454;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #b4c19a;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1rem; /* ← これを追加！ */
}

/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;
	padding: 20px;
}
/*トップページのヘッダーブロックへの追加指定*/
.home header {
	padding: 0;
	position: relative;
}
/*ロゴ画像*/
header #logo img {
	width: 26%;		/*画像の幅*/
	
}
/*トップページのロゴ画像への追加指定*/
.home header #logo img {
	position: absolute;z-index: 1;
	width: 26%;	/*画像の幅*/
	left: 10%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	top: 8px;	/*ロゴやメニューが入っているブロックに対して、上からの配置場所の指定。*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	line-height: 2;
	text-align: center;
	font-size: 16px;	/*文字サイズ*/	
}
/*メニュー１個あたりの指定*/
#menubar li {
	display: inline-block;	/*横並びにする指定*/
	margin: 0px 5px;			/*上下、左右へのメニューの外側にとる余白*/
}
#menubar li a {
	text-decoration: none;display: block;
	padding: 10px 20px ;	/*上下、左右へのメニューの内側にとる余白*/
}
/*現在表示中(current)と、マウスオン時の指定*/
#menubar li.current a, #menubar li a:hover {
	background: #fff;	/*背景色*/
	color: #b4c19a;			/*文字色*/
	border-radius: 100px;	/*角丸のサイズ。大きめであれば適当で構いません。この１行を削除すると、長方形になります。*/
}

/*コンテンツ（ヘッダーとフッター以外を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	overflow: hidden;
	padding: 20px 3%;	/*上下、左右へのブロック内の余白*/
}
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	clear: both;
	margin-bottom: 30px;
	font-size: 24px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
}
/*コンテンツ内にあるh2(見出し)タグ（点線）指定*/
#contents h2 span {
	display: inline-block;
	background: url(../images/line1.png) repeat-x center bottom / auto 2px;	/*下線画像の読み込み。2pxは画像の高さの指定。*/
	padding: 0px 30px;	/*上下、左右への余白。文字の両サイドをここで空ける分だけ、下線が見えます。*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	clear: both;
	margin-bottom: 30px;
	font-size: 18px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
}
/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	padding: 0px 20px 30px;	/*（内側）上、左右、下への余白*/
}
/*コンテンツ内にあるh2(見出し)タグ（点線）指定*/
#contents h3 span {
	display: inline-block;
	background: url(../images/line1.png) repeat-x center bottom / auto 2px;	/*下線画像の読み込み。2pxは画像の高さの指定。*/
	padding: 0px 30px;	/*上下、左右への余白。文字の両サイドをここで空ける分だけ、下線が見えます。*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}
/*会員証画像の設定*/
#kaiinsyo img {
	margin: 0px 10px 20px 20px;	/*（外側）上、左右、下への余白*/
	width: 50%;			/*画像の幅*/
	border: 1px dotted #b4c19a; /*画像まわりのボーダーライン*/
}

/* コンサート写真の設定 */
#photo img {
	margin: 0px; /* 外側の余白は親要素で管理 */
	width: 100%; /* 枠内でフィットさせる */
	border-radius: 10px; /* 画像の角を丸く */
	display: block; /* インラインの隙間を除去 */
}

/* スマホなど画面幅が600px以下の場合 */
@media screen and (max-width: 600px) {
	#photo img {
		width: 100%; /* 枠内いっぱいに */
		border-radius: 10px;
	}
}

/* グリッドレイアウト */
.photo-item {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 1rem;
	justify-items: center;
	margin-bottom: 20px;
}

/* 各画像ブロックのスタイル（丸み＋影付き） */
.photo-img {
	background: #fff; /* 背景色（必要に応じて変更可） */
	padding: 10px; /* 内側の余白 */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* ふんわりとした影 */
	transition: transform 0.2s ease; /* アニメーション（オプション） */
}

/* ホバー時に少し拡大（オプション） */
.photo-img:hover {
	transform: scale(1.02);
}

  
  /* 画像の周囲を囲むクラス */
  .photo-img {
	text-align: center; /* 画像を中央に配置 */
  }
  
/* ボタンのデザイン */
.button022 a {
    position: relative;
	border-radius: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #eee;
    z-index: 0;
}
.button022 a:before, .button022 a:after {
  content: "";
  border-radius: 50px;
  position: absolute;
  display: block;
  transition: all 0.3s;
}
.button022 a:before {
  opacity: 0;
  width: 7px;
  height: 7px;
  top: 50%;
  right: 1.4rem;
  border-radius: 50px;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: translateY(-50%) rotate(45deg);
}
.button022 a:after {
  opacity: 0;
  right: -2px;
  bottom: -2px;
  background: #869666;
  z-index: -1;
  width: 0;
  height: 0;
  border-radius: 50px;

}
.button022 a:hover {
  padding: 10px 25px 10px 10px;
  color: #FFF;
  border-radius: 50px;
}
.button022 a:hover:before {
  opacity: 1;
  border-color: #FFF;
  border-radius: 50px;
}
.button022 a:hover:after {
  opacity: 1;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 50px;
}
.button022 {
    margin: 0 0 20px 0; /* 下20pxの余白 */
}
/* スクロールバーのデザイン */
.scroller {
    margin: 0 auto;
    width: 80%;
    background-color: #b4c19a;
    border: solid 4px #869666;
    border-radius: 5px;
    scrollbar-color: #b4c19a #869666;
    scrollbar-width: thin;
}
.flyer-row {
  display: flex;
  gap: 1rem;
  justify-content: flex-start; /* 左寄せ（必要に応じて） */
  flex-wrap: wrap; /* スマホで折り返し対応 */
  margin-bottom: 1.5rem;
  padding-left: 20px; /* ← 左側にスペースを追加 */
}

.flyer-row img {
  width: 200px;     /* 好みに応じて調整 */
  height: auto;
  display: block;
  border: 1px dotted #ccc; /* オプションで枠つけたいとき */
}

/*list-grid1（４カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list * { margin: 0; padding: 0; }

/* ボックス１個あたり */
.list-grid1 .list {
    display: grid;
    margin-bottom: 2rem; /* ボックスの下に空けるスペース */
    padding: 1rem; /* ボックス内の余白。１文字分。 */
    background: #fff; /* 背景色 */
    color: #111; /* 文字色 */
    grid-template-rows: auto 1fr auto; /* １つ目（figure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（textブロック））を残った幅で使う */
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1); /* ボックスの影 */
    border-radius: 10px; /* 角を丸くする */
}

/* ボックス内のp要素 */
.list-grid1 .list p {
    font-size: 0.85rem; /* 文字サイズを85%に */
    line-height: 1.5; /* 行間を狭くする */
}

/* ボックス内のfigure画像 */
.list-grid1 .list figure {
    margin: -1rem; /* 画像を枠いっぱいに表示させるため */
    margin-bottom: 0.5rem; /* 画像の下に空けるスペース */
}

.list-grid1 .list figure img {
    width: 100%; /* 画像の幅を100%に */
    height: auto;
    display: block;
}

/* 4カラムレイアウト（レスポンシブ対応） */
.list-grid1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4列に設定 */
    gap: 3vw; /* カラム間の隙間 */
}

/* 画面幅が800px以上の場合 */
@media screen and (min-width: 800px) {
    .list-grid1 {
        grid-template-columns: repeat(4, 1fr); /* 4列に設定 */
    }
}

/* 画面幅が768px以下の場合 */
@media screen and (max-width: 768px) {
    .list-grid1 {
        grid-template-columns: repeat(4, 1fr); /* 依然として4列 */
        gap: 5vw; /* カラム間の隙間を広く */
    }
}

/* 画面幅が480px以下の場合 */
@media screen and (max-width: 480px) {
    .list-grid1 {
        grid-template-columns: repeat(4, 1fr); /* 4列に設定 */
        gap: 8vw; /* カラム間の隙間をさらに広く */
    }
}

/*list-grid1-parts（コンサートの様子）
---------------------------------------------------------------------------*/
.list-grid1-parts .list-parts * {margin: 0;padding: 0;}

/*ブロック全体を囲むブロック*/
.list-grid1-parts {
	display: grid;
}

/*ボックス１個あたり*/
.list-grid1-parts .list-parts {
    display: grid;
	position: relative;
}

/*ボックス内のp要素*/
.list-grid1-parts .list-parts p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}

	/*画面幅500px以上の追加指定*/
	@media screen and (min-width:500px) {

	/*ブロック全体を囲むブロック*/
	.list-grid1-parts {
		grid-template-columns: repeat(2, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}

	}/*追加指定ここまで*/


	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*ブロック全体を囲むブロック*/
	.list-grid1-parts {
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-grid1-parts .list-parts {
	padding: 1rem;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #555;			/*文字色*/
    grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid1-parts .list-parts figure img {
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}


/*アイコン
---------------------------------------------------------------------------*/
/*共通*/
.list-grid1-parts .icon-bg1-parts,
.list-grid1-parts .icon-bg2-parts {
	overflow: hidden;
	position: absolute;
	left: -15px;	/*左からの配置場所*/
	top: -15px;		/*上からの配置場所*/
	font-size: 0.7rem;	/*文字サイズ。70%*/
	width: 4em;			/*幅*/
	line-height: 4em;	/*高さ*/
	text-align: center;	/*テキストをセンタリング*/
	border-radius: 50%;	/*円形にする*/
}

/*icon-bg1-parts（サンプルだと「NEW」）*/
.list-grid1-parts .icon-bg1-parts {
	background: #ff3535;	/*背景色*/
	color: #fff;			/*文字色*/
}

/*icon-bg2-parts（サンプルだと「UP」）*/
.list-grid1-parts .icon-bg2-parts {
	background: #358bff;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*写真の仕様*/
.list-parts figure a:hover img,
.list-parts figure a:active img {
  filter: brightness(1.15);
}


/*concert-gallery（写真ページ）
---------------------------------------------------------------------------*/
/* ギャラリー全体 */
.photo-gallery {
	display: grid; /* グリッドレイアウト */
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* 画像の最小幅を200pxに設定 */
	gap: 1rem; /* 写真の間隔を広げる */
	margin: 1rem; /* ギャラリー全体の余白 */
  }
  
  /* 写真のスタイル */
  .photo-item {
	position: relative;
	overflow: hidden;
  }
  
  .photo-item img {
	width: 100%;
	height: auto;
	display: block;
  }
  

/*listブロック
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	font-size: 90%;		/*文字サイズ*/
	margin-bottom: 30px;	/*ブロックの下に空けるスペース*/
}
/*各ブロックごとの設定（サムネイルタイプへの追加指定）*/
.list.thumb {
	width: 23%;			/*画像幅*/
	margin: 0 1% 30px;
	padding-top: 1%;
	float: left;		/*画像を左に回り込み*/
	text-align: center;
}
/*画像の設定*/
.list img {
	border-radius: 0%;	/*円形にする指定*/
	width: 15%;			/*画像の幅*/
	float: left;		/*画像を左に回り込み*/
	margin: 1% 5% 5% 5%;	/*画像の右に空けるスペース*/
	border: 1px dotted #b4c19a; /*画像まわりのボーダーライン*/
}
/*画像の設定（サムネイルタイプへの追加指定）*/
.list.thumb img {
	margin: 0;
	float: none;
	width: 60%;		/*画像の幅*/
}
/*マウスオン事*/
.list a:hover img {
	transition: 0.5s;
	opacity: 0.7;	/*透明度。70%色が出た状態。*/
}
/*マウスオン事（サムネイルタイプへの追加指定）*/
.list.thumb a:hover img {
	transform: scale(1.05);	/*ほんの少し画像を大きくする指定*/
}
/*h4タグ*/
.list h4 {
	font-size: 140%;	/*文字サイズ*/
}
/*h4タグ（サムネイルタイプへの追加指定）*/
.list.thumb h4 {
	font-size: 100%;	/*文字サイズ*/
}
/*p(段落)タグ*/
.list p {
	padding: 0 !important;
	line-height: 2;
}

/*option1（productページのブロックの右上に斜めに配置している帯）
---------------------------------------------------------------------------*/
.option1 {
	text-align: center;display: block;
	width: 300px;		/*幅*/
	position: absolute;
	right: 0px;	/*ボックスに対して右から0pxの場所に配置*/
	top: 0px;	/*ボックスに対して上から0pxの場所に配置*/
	transform: rotate(45deg) translate(93px,-45px);	/*45度回転。右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
	background: #869666;	/*背景色*/
	color: #fff;			/*文字色*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広くとる*/
	box-shadow: -3px 3px 10px rgba(0,0,0,0.15);	/*ボックスの影。右へ、下へ、ぼかし幅、0.15は色が15%出た状態の事。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding: 10px;
	font-size: 90%;
}
footer a {text-decoration: none;}
footer a:hover {color: #545454;}
footer .pr {display: block;}

/*友の会画像の設定*/
#banner img {
	width: 80%;			/*画像の幅*/
	border: 1px dotted #000000; /*画像まわりのボーダーライン*/
}
/*会員限定ページ画像の設定*/
#kaiingentei img {
	margin: 0px;	/*（外側）上、左右、下への余白*/
	width: 15%;			/*画像の幅*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	height: 140px;	/*高さ。内様がこれを超えるとスクロールバーが出ます。*/
	overflow: auto;
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 8em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/* スマホや小さい画面で文字サイズを小さくする */
@media screen and (max-width: 600px) {
  #new dt,
  #new dd {
    font-size: 0.8rem;  /* 文字サイズを80%に */
  }
}

/*トップページ内「コンサート」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/


/*box1指定（角丸のボックス）
---------------------------------------------------------------------------*/
.box1 {
	overflow: hidden;position: relative;
	padding: 20px 40px;		/*上下、左右へのボックス内の余白*/
	border-radius: 30px;	/*角丸のサイズ。この１行を削除すると、通常の長方形になります。*/
	margin-bottom: 30px;	/*下に空けるスペース*/
	background: #fff;		/*背景色*/
}
/*bg1タイプの背景色*/
.bg1 {
	background: #ede9e2;	/*背景色*/
}
.bg1 h2 {
	clear: both;
	margin-bottom: 30px;
	font-size: 24px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
}
/*コンテンツ内にあるh2(見出し)タグ（点線）指定*/
.bg1 h2 span {
	display: inline-block;
	background: url(../images/line1.png) repeat-x center bottom / auto 2px;	/*下線画像の読み込み。2pxは画像の高さの指定。*/
	padding: 0px 30px;	/*上下、左右への余白。文字の両サイドをここで空ける分だけ、下線が見えます。*/
}

/*bg2タイプの背景色*/
.bg2 {
	background: transparent;	/*背景を透明にする*/
	border: 2px dashed #fff;	/*枠線の幅、線種、色*/
}

/*テーブル1
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border-top: 1px solid #545454;	/*下の線の幅、線種、色*/
	text-align: center;		/*文字をセンタリング*/
	padding: 10px;			/*ボックス内の余白*/
	background: rgba(0,0,0,0.03);	/*背景色。0,0,0は黒の事で0.03は色が3%出た状態の事。*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;	/*文字をセンタリング*/
}
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;
	border-top: 1px solid #545454;		/*上の線の幅、線種、色*/
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border-bottom: 1px solid #545454;	/*各行の下線の幅、線種、色*/
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;	/*センタリング*/
	width: 10%;			/*幅*/
}
/*テーブル2 平会員
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta2-parts caption {
	border: solid 1px;              /* 枠線指定 */
	font-weight: bold;		/*太字に*/
	padding: 1rem;		/*ボックス内の余白*/
	background: #d1dabe;		/*背景色*/
	margin-bottom: rem;		/*テーブルの下に空けるスペース。２文字分。*/
}

/*テーブルブロック設定*/
.ta2-parts {
	border-collapse: separate;
	border-spacing: 0.1rem;	/*ここと、この下の数字は揃えておきます。要素間の隙間みたいなものです。*/
	table-layout: fixed;
	width: 100%;
	margin-bottom: 0.1rem;		/*テーブルの下に空けるスペース。２文字分。*/
}

/*th（左側）、td（右側）の共通設定*/
.ta2-parts th, .ta2-parts td {
	text-align: center;
	border: solid 1px;              /* 枠線指定 */
    table-layout: fixed;        /* セルの幅計算指定 */
	padding: 1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*テーブル3 名誉会長・会長・副会長
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta3-parts caption {
	font-weight: bold;		/*太字に*/
	padding: 0.2rem 1rem;	/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #b4c19a;			/*文字色*/
}

/*テーブルブロック設定*/
.ta3-parts {
	border-collapse: separate;
	border-spacing: 0.1rem;	/*ここと、この下の数字は揃えておきます。要素間の隙間みたいなものです。*/
	table-layout: fixed;
	width: 100%;
	margin-bottom: 1.0rem;		/*テーブルの下に空けるスペース。２文字分。*/
}

/*th（左側）、td（右側）の共通設定*/
.ta3-parts th, .ta3-parts td {
	text-align: center;
	border: solid 1px;              /* 枠線指定 */
	padding: 1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta3-parts th {
	width: 20%;				/*幅*/
	background: #d1dabe;	/*背景色*/
}

/*テーブル4（あゆみ3行）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta4-parts caption {
	font-weight: bold;		/*太字に*/
	padding: 0.1rem;	/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #b4c19a;			/*文字色*/
}
/*テーブルブロック設定*/
.ta4-parts {
	border-collapse: separate;
	border-spacing: 0.1rem;
	margin-bottom: 1.0rem;
	width: 80%;  /* テーブル全体の幅 */
	table-layout: fixed; /* 列幅固定も活かすなら入れてOK */
}

/*th（左側）、td（右側）の共通設定*/
.ta4-parts th, .ta4-parts td {
	text-align: center;
	border: solid 1px;              /* 枠線指定 */
	padding: 0.1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}
/*th（上側）のみの設定*/
.ta4-parts th {
	background: #d1dabe;	/*背景色*/
}
/* 最初の列の幅と背景 */
.ta4-parts tr th:first-child,
.ta4-parts tr td:first-child {
  width: 15%;
  background: #d1dabe;
}

/*テーブル5（あゆみ4行）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta5-parts caption {
	font-weight: bold;		/*太字に*/
	padding: 0.1rem;	/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #b4c19a;			/*文字色*/
}
/*テーブルブロック設定*/
.ta5-parts {
	border-collapse: separate;
	border-spacing: 0.1rem;
	margin-bottom: 1.0rem;
	width: 100%;  /* テーブル全体の幅 */
	table-layout: fixed; /* 列幅固定も活かすなら入れてOK */
}

/*th（左側）、td（右側）の共通設定*/
.ta5-parts th, .ta5-parts td {
	text-align: center;
	border: solid 1px;              /* 枠線指定 */
	padding: 0.1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}
/*th（上側）のみの設定*/
.ta5-parts th {
	background: #d1dabe;	/*背景色*/
}
/* 最初の列の幅と背景 */
.ta5-parts tr th:first-child,
.ta5-parts tr td:first-child {
  width: 15%;
  background: #d1dabe;
}


/*btn
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	-webkit-appearance: none;
	outline: none;
	border: 1px solid #869666;
	background: #869666;
	color: #fff;
	padding: 10px 30px;
	border-radius: 100px;
	font-size: 16px;
}
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;
	color: #869666;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body .nav-fix-pos-pagetop a {
	display: none;
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;position: fixed;animation-name: opa1;animation-duration: 1s;animation-fill-mode: forwards;
	width: 80px;		/*ボタンの幅*/
	line-height: 80px;	/*ボタンの高さ*/
	bottom: 50px;		/*画面の下からの配置場所指定*/
	right: 3%;			/*画面の右からの配置場所指定*/
	background: rgba(255,255,255,0.5);	/*背景色*/
	border: 1px dashed #ccc;			/*枠線の幅、線種、色*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すると正方形になります。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #fff;	/*背景色*/
	border: 1px dashed #b4c19a;			/*枠線の幅、線種、色*/
}

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

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 30px 42px;
}
ol {
	padding: 0 20px 30px 42px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: rgba(0,0,0,0.1);border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb30 {margin-bottom: 30px;}
.clear {clear: both;}
.color1, .color1 a {color: #869666;}
.m {font-size: 12px;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.wss {width: 30%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 40px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}




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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 15px;
	font-size: 0.95rem;
}

/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 200px;		/*画像の幅*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	font-size: 80%;
}
#menubar li a {
	padding: 0px 5px;	/*上下、左右へのメニューの内側にとる余白*/
}

/*listブロック
---------------------------------------------------------------------------*/
/*画像の設定（サムネイルタイプへの追加指定）*/
.list.thumb img {
	width: 90%;		/*画像の幅*/
}

/*box1指定（角丸のボックス）
---------------------------------------------------------------------------*/
.box1 {
	padding: 10px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 20px;	/*角丸のサイズ*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  #menubar {
    font-size: 14px; /* 2px小さく */
  }

  .button022 a {
    font-size: 14px; /* ボタン内テキストを小さめに */
    padding: 8px 20px; /* パディングも少し狭く */
  }

  #contents h2 {
    font-size: 20px; /* 見出しもやや小さく */
  }

  #contents h3 {
    font-size: 0.95rem;;
  }
}

/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*トップページのロゴ画像への追加指定*/
.home header #logo img {
	width: 30%;	/*画像の幅*/
	left: 8%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	top: 1px;	/*ロゴやメニューが入っているブロックに対して、上からの配置場所の指定。*/
}

/*コンテンツ（ヘッダーとフッター以外を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding: 30px 3%;
}
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	font-size: 18px;		/*文字サイズ*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	font-size: 16px;		/*文字サイズ*/
}
/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	padding: 0px 10px 30px;	/*上、左右、下への余白*/
	font-size: 0.95rem;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	width: 50px;		/*ボタンの幅*/
	line-height: 50px;	/*ボタンの高さ*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	padding: 0 10px 20px 25px;
}
ol {
	padding: 0 10px 20px 25px;
}

/*その他
---------------------------------------------------------------------------*/
.big1 {font-size: 20px;}
.mini1 {font-size: 9px;}
.sh {display:block;}
.pc {display:none;}
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}




