@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	-webkit-text-size-adjust: none;
	color: #262626;	/*全体の文字色*/
	
	font-family: "m-plus-2c", sans-serif;
    font-weight: 400;
    font-style: normal;
	
	font-size: 17px;	/*文字サイズ*/
	line-height: 1;		/*行間*/
	background: #000000;	/*背景色*/
	
}}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {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%;}

img {
	/* 保存禁止 */
	pointer-events: none;
}
/* リンク（全般）設定 */
a {
  color: #dccb18;
  text-decoration: none;
  transition: 0.3s;   /* なめらかに変化させる */
}

/* ホバー時 */
a:hover {
  color: #e83929;     /* ← 変更 */
}

/*コンテナー（ホームページを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 900px;	/*ブロックの最大幅*/
	margin: 0 auto;
	padding: 0 3%;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
	text-align: center;	/*内容を中央よせ*/
}
/* ロゴ全体を中央に */
#logo {
  display: flex;
  justify-content: center;  /* 横位置 */
  align-items: center;      /* 縦中央（必要なら） */
  margin: 20px 0 60px 0;
}

/* ロゴ画像 */
#logo img {
  width: 280px;      /* ←ここを変えればサイズ変更可能 */
  max-width: 100%;   /* 画面より大きくならない */
  height: auto;      /* 縦横比維持 */
}


@media (max-width: 250px) {
  #logo img {
    width: 70%;   /* 画面幅に対して90% */
  }
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg img {
	border-radius: 10px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/
	margin-bottom: 40px;	/*下に空けるスペース*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
#menubar {
	text-align: center;		/*文字をセンタリング*/
	font-size: 18px;		/*文字サイズ*/
	margin-bottom: 40px;	/*下に空けるスペース*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	display: inline;	/*横並びにする設定*/
}
#menubar li a {
	text-decoration: none;
	padding: 15px 30px;	/*各メニュー内の余白。上下に15px、左右に30pxあけるという意味。*/
}
/*マウスオン時の設定*/
#menubar li a:hover {
	color: #3d2d21;	/*文字色*/
	border-bottom: 4px solid #3d2d21;	/*下線の幅、線種、色*/
}

/*コンテンツ（見出しバーや文字などが入っているブロック）
---------------------------------------------------------------------------*/

h1 {
  margin-bottom: 0;
}

/*コンテンツのh2タグの設定*/
#contents h2 {
    clear: both;
    margin-bottom: 30px;

    color: #262626;              /* 文字色 */
    background: none;         /* 背景削除 */

    padding-bottom: 5px;     /* 線との間隔 */
    border-bottom: 1px solid #262626;  /* 3px区切り線 */

    font-family: "Droog",
             -apple-system,
             BlinkMacSystemFont,
             "Segoe UI",
             "Hiragino Kaku Gothic ProN",
             "Yu Gothic",
             Meiryo,
             sans-serif;
}



/*コンテンツのh3タグの設定*/
#contents h3 {
	clear: both;
    margin-bottom: 30px;

    color: #f3f3f2;              /* 文字色 */
    background: none;         /* 背景削除 */

    padding-bottom: 5px;     /* 線との間隔 */
    border-bottom: 1px solid #f3f3f2;  /* 3px区切り線 */

    font-family: "Droog",
             -apple-system,
             BlinkMacSystemFont,
             "Segoe UI",
             "Hiragino Kaku Gothic ProN",
             "Yu Gothic",
             Meiryo,
             sans-serif;
}



#contents h4 {
  display: inline-block;
  background-color: f4f4f4;
}



/*コンテンツのp(段落)タグ設定*/
#contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}
#contents section + section {
	margin-top: 30px;
}

/*区切り線*/
.divider {
  border: none;              /* デフォルト線を消す */
  height: 1px;               /* 太さ */
  background-color: #262626; /* 色 */
  margin: 30px 0;            /* 上下余白 */
}



/*Galleryページ
---------------------------------------------------------------------------*/

/* ===== Section spacing ===== */
.gallery-section,
.full-image {
  padding-top: 15px;
  padding-bottom: 0;
}

/* ===== 共通コンテナ幅 ===== */
.container {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

/* ===== Grid ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

/* ===== Single Image ===== */
.full-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}


/*フッター(ページ最下部のcopyrightのパーツ)設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;	/*文字をセンタリング*/
	padding: 30px 0px 10px;	/*上、左右、下へのボックス内の余白*/
	color: #999999;   /* ← 通常テキスト */
}
footer a {
	text-decoration: none;
	border: none;
	color: #999999;   /* リンク色 */
  text-decoration: none;    /* 下線なし */
}
footer .pr {
	display: block;
}
footer p.footer-note {
	font-size: 12px;
	color: #262626;
	line-height: 1.6;
	margin-top: 20px;
	text-align: left;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #eee;	/*背景色*/
}
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;	/*センタリング*/
	width: 30%;			/*幅*/
}



/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.color1 {color: #3d2d21;}
.pr {font-size: 12px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}



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


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

/*メニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	display: block;	/*縦並びにする設定*/
	margin-bottom: 10px;
}
#menubar li a {
	text-decoration: none;
	padding: 8px 30px;	/*各メニュー内の余白。*/
}


	/*Galleryページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	padding: 10px;	/*ボックス内の余白*/
}




/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}

}

	/*Galleryページ背景
---------------------------------------------------------------------------*/

.bg-fixed {
  background-image: url("../images/f_background.png");
  background-position: center;       /* 中央配置 */
  background-repeat: no-repeat;
  background-size: cover;            /* 画面いっぱいに広げる */
  background-attachment: fixed;
}

.small-text {
  font-size: 12px;
}

/*リンク内の長い文字列を強制的に折り返す指定*/

a {
  overflow-wrap: break-word;
  word-break: break-word;
}
.link-list li a:hover {
  color: #e83929;        /* ← ホバー色 */
}

/*リンクボタン===============================*/

/* 共通ボタン */
.btn {
  display: inline-block;
  color: #20232a;
  padding: 0px 5px;
  text-decoration: none;
  margin: 0 5px;
  border-radius: 1px;   /* kadomaru? */
}

/* 色パターン */
.btn-gray {
  background-color: #acbebe;
}

.btn-yellow {
  background-color: #efefef;
}

/* ホバー時（2種類共通） */
.btn:hover {
  background-color: #F00040; /* 変えたい色 */
  color: #ffffff;            /* 文字色も変更 */
}

/* 配置パターン */
.center {
  text-align: center;
}

.left {
  text-align: left;
}
