@charset "UTF-8";
  
  /* 基本設定 */
html {
	font-family: sans-serif;
}

html * {
	box-sizing: border-box;
}


/* ※注：このCSSは、班別のページ(～～squad.html)用です。トップページ(index.html)用は、"style.css"です。間違えないように気を付けてください。 */


/*Google Fontsのフォント指定（Zen Kaku Gothic New, BIZ UDPGothic, Zen Old Mincho）*/
.zen-kaku-gothic-new-light {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.biz-udpgothic-regular {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.biz-udpgothic-bold {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}


.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-old-mincho-medium {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-old-mincho-semibold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.zen-old-mincho-bold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.zen-old-mincho-black {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-style: normal;
}
/* ここまでがフォントの呼び出しコード */


/*ここから先が本番*/

body {
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif; 
  
	margin:  0 0 0 0;
	color: #fff;
  background: linear-gradient(33deg, #02245b, #109fc3);
}

/* ページ左上の「☰」の設定 */
.menu_button {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1001;
  background-color: #02245b;
  color: #fff;
  font-family: sans-serif;
  font-size: 32px;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
}
.menu_button:hover{
	background-color: #999;
}

.side_menu{
  position: fixed;
  top: 0;
  left: -250px; /* 非表示 */
  width: 250px;
  height: 100%;
  background-color: #02245b;
  color: white;
  transition: left 0.3s ease;
  z-index: 1000;
  padding: 60px 16px 16px;
}

.side_menu ul {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

.side_menu li {
  margin: 50px 0;
}

.side_menu a {
  color: white;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;		/* フォントの太さ指定　ここでは500なのでMedium */
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease; /* ホバーした時のアニメーション！アニメーションって...ンフーンフフフフフ */
}

.side_menu a:hover {
  color: #000;
  background-color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-weight: 900;		/* フォントの太さ指定　ここでは900なのでBlack */
  font-size: 24px;
}

.side_menu.open {
  left: 0;
}

.header {
  width: auto;
  height: 200px;
  color: white;
  padding: 40px 0; /* 少し大きめに */
  border-bottom: #fff solid 1px;
}

.header h1 {
  font-family: "Zen Kaku Gothic New";
  font-weight: 900;		/* フォントの太さ指定　ここでは900なのでBlack */
  font-size: 38px;
  margin: 0 0 0 0;
  padding-top: 30px;
  color: white;
  letter-spacing: 3px;
}


p,h1,h2,h3,h4,h5,h6 {
	margin-top: 10;
}
  
p {
  line-height: 1.6;
  font-size: 20px;
  font-family: "Zen Kaku Gothic New";
  font-weight: 400;		/* フォントの太さ指定　ここでは400なのでRegular */
  font-style: normal;
  
}

.logo {
    float: right;
	max-width: 30%;
	height: auto;
	padding: 0 0 0 1em;		/* 文字と画像との余白 */
}

.sakuhin{
    font-family: "Zen Kaku Gothic New";
    color: #000;
    font-weight: bold;
	  width: 50%;
	  max-height: fit-content;
	  padding: 0 1em 1em 0;		/* 文字と画像との余白 */
    display: flex;

}

.kakudai{
  display: none;
  position: fixed;
  z-index: 2000; /* サイドメニューより上に表示 */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.kakudai-content{
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 10px #fff;
}

.kakudai.open{
  display: flex;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* 「作品例」のところ */
h6{
    font-family: "Zen Old Mincho";
    font-size: 28px;
    font-weight: 900;
	font-style: italic;
    border-left: #fff solid 1px;
	border-bottom: #fff solid 1px;
    padding-left: 5px;
	padding-top: 40px;
}

/* 「活動の様子」など */
h2{
    font-family: "Zen Old Mincho";
    font-size: 28px;
    font-weight: 900;
	font-style: italic;
    border-left: #fff solid 1px;
	border-bottom: #fff solid 1px;
    padding-left: 5px;
	padding-top: 40px;
}

.pspr{
  float: right;
  max-width: 15%;
	height: auto;
	padding: 0 1em 1em 0;		/* 文字と画像との余白 */
  display: flex;
}

h1{
  font-size: 30px;
  color: #fff;
  margin-left: 0;
  font-family:"Zen Kaku Gothic New";
  font-weight: 900;
  padding-left: 10px;
  
  letter-spacing: 2px;
  
}

footer{
  font-size: 18px;
  font-family: "Zen Kaku Gothic New";
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

.flex-box {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.wrapper {
	margin:	0 auto 0 auto;		/* 余白（変えなくてよい） */
	max-width: 1300px;		/* 最大表示幅（変えなくてよい） */

}

/* h1～h6の基本フォント。ZenOldMinchoが表示できない場合は、Yu MinchoやHiragino Minchoなどから表示できるフォントに置き換える。*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
}

/* スマホ用スタイル */
@media (max-width: 600px) {

  /* 見出し (h1) の文字間隔を狭める */
  h1 {
    font-size: 24px;            /* 少し小さめ */
    letter-spacing: 1px;        /* PC時より狭め */
    line-height: 1.3;           /* 行間もタイトに */
    padding-left: 5px;          /* 左余白を減らす */
  }
  
  h2 {
	  font-size: 20px;
  }

  h6 {
	  font-size: 20px;
  }
	
  /* 本文の文字も少し詰める */
  p {
    font-size: 16px;            /* 文字サイズ小さめ */
    line-height: 1.4;           /* 行間を狭める */
    letter-spacing: 0;          /* 文字間は標準に */
  }

  /* 画像（横並び → 縦並び） */
  .flex-box {
    flex-direction: column;     /* 縦並び */
    gap: 8px;                   /* 余白を小さく */
  }

  /* 個別の画像サイズ調整例 */
   .sakuhin  {
    max-width: 100%;            /* スマホ幅にフィット */
    float: none;                /* 回り込み解除 */
    display: block;
    margin: 0 auto;             /* 中央寄せ */
    padding: 0;                 /* 余白を詰める */
  }

}























