@charset "UTF-8";
  
  /* 基本設定 */
html {
	font-family: sans-serif;
}

html * {
	box-sizing: border-box;
}

/* ※注：このCSSは、トップページ(index.html)用です。班別のページ用は、"hey!.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: 22px;
}

.side_menu.open {
  left: 0;
}

/* ヘッダー「パソコン技術部」の部分（電気電子工学科のWebサイトをパクったとこ） */
.header {
  width: 100vw;
  height: 100svh; /* ← 100vhより安全（AI曰く） */  
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦中央 */
  align-items: center;     /* 横中央 */
  padding: 0;
  text-align: center;
  position: relative;
}

/* ヘッダー内の画像「パソコン技術部」の部分（フォントはマキナス4Square） */
.pcteclogomkns{
  width: min(480px, 80vw); 
  height: auto;
  margin: 0;
}


.scrollimg{
	width: 100px;
}

.scroll-area {
  position: absolute;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ハイパーリンク */
a {
	font-family: "Zen Kaku Gothic New";
	color: #00ffff;
}
/* マウスでホバーしてるとき */
a:hover {
	color: #00ff66;
}
/* リンク踏んだ後 */
a:visited {
	color #00ff00;
}

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-style: normal;
}

li {
  font-family: "Zen Kaku Gothic New";		/* 活動班についてのリストのやつ */
  font-size: 20px;
}

/* 「活動班について」と、「エス・バードとのコラボについて」のところ */
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;
}

h1{
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  margin-left: 0;
  padding-left: 10px;
  user-select: none;
}

footer{
  font-size: 18px;
  font-family: "Zen Kaku Gothic New";
}

.sologo{
  float: right;
  max-width: 20%;
	height: auto;
	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;
}

.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) {
  
  h2 {
	  font-size: 20px
  }

  /* 本文の文字も少し詰める */
  p {
    font-size: 16px;            /* 文字サイズ小さめ */
    line-height: 1.4;           /* 行間を狭める */
    letter-spacing: 0;          /* 文字間は標準に */
  }

  li {
	font-size: 16px;
  }
	
  /* 画像（横並び → 縦並び） */
  .flex-box {
    flex-direction: column;     /* 縦並び */
    gap: 8px;                   /* 余白を小さく */
  }
