@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
}

#attention {
  color: #F50408;
  font-size: xx-large;
  text-align: center;
  text-decoration: underline;
  font-weight: bolder;
}
.container {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #FFF;
  padding: 0px;
  float: none;
  height: auto;
  width: 900px;
	  max-width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
}
.container .middle img {
  width: 100%;
}
#information h2 {
  color: #0C17F0;
  font-size: 2.6rem;
  text-align: center;
}
#information ul {
  list-style: none;
  font-size: 2vw; /* フォントの大きさを画面の大きさに比例させる */
}
#information ul li {
  padding: 5px 10px;
  margin-right: 0px; /* このパラメーターを調整すると、画像とシャドウのバランスが図れます. 左側の幅がどこで調整できるのか不明*/
  max-width: 100%;
}
#information ul li time {
  display: block;
  margin: 5px 0;
  font-size: 1.2rem;
}
#information ul li p {
  line-height: 1.5;
}
#information ul li p::before {
  content: "▶︎";
  margin-right: 5px;
  font-size: 1.2rem;
  vertical-align: top;
}
#information ul li:nth-child(even) { /* oddで奇数の行に、evenで偶数の行に*/
  background-color: #f5f3f0;
}
#test_l {
  float: left;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  max-width: 100%;
  height: auto;
}
.container .middle_outline { /* スライダーの下に付けた箱 */
  margin-left: auto;
  margin-right: auto;
  margin-top: 120px;
  background-color: rgba(149, 247, 175, 1.00);
  display: block;
}
.middle { /* 中央の画像のCSS */
  position: relative;
  width: 600px;
  height: auto;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
img {
  max-width: 100%;
}
/* ここからレスポンシブル(成功)をコピペしたところ */

.container_TEST { /* .contaner_TESTにすると、画像の縮小ができなくなったが、max-width: 100%; を .container に付けたらなおった！！ (^o^)*/
  margin: 0px auto;
  max-width: 100%;
  width: 1000px;
  background-color: green;
  text-align: right;
  border: 3px solid #f6bb9a;
  color: rgba(255, 255, 255, 1.00);
}

.text {
    margin: 20px;
    font-size: 6vw;	/* vwを使うと、フォントの大きさがレスポンシブル対応になる*/
}


.container .img {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 120px;
    width: 60%;
	display: block; /* 余白が生じないように、画像をブロック要素として表示 */
}

img {
  max-width: 100%; /* 画像の幅を100％に設定する */
}

/* ここからプルダウンメニューをコピペしたところ*/

.menu {
    position: relative;
    width: 100%;
    /* height: 35px; なくて良い */
    max-width: 1000px;
    margin: 0 auto;
	list-style-type: none;
}

.menu > li {
	float: left;
	width: 20%; /* グローバルナビ5つの場合 */
	height: 150px;
	/* ↑150pxにすることで、プルダウンメニューが指定できるようになった */
	line-height: 35px;
	/*background: rgb(29, 33, 19);*/
	/*background-color: #EF58E9;*/
	list-style-type: none;
}

.menu > li.menu__single:nth-child(1) {
width: 10%;
}

.menu > li.menu__single:nth-child(3) {
width: 22%;
}

.menu > li.menu__single:nth-child(4) {
width: 15%;
}

.menu > li.menu__single:nth-child(5) {
width: 12%;
}


.menu > li a {
	display: block;
	color: #FFFFFF;
	
}

.menu > li a:hover {
    color: #999;

}

.menu__second-level {
    width: 100%;
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.menu > li:hover {
	/*background: #072A24;*/
	background-color: rgba(255,255,255,0.00);
	-webkit-transition: all .5s;
	transition: all .5s;
}

.menu__second-level li {
    border-top: 1px solid #111;
}


.menu__second-level li a:hover {
    background: #111;
    background-color: rgba(239,88,233,0.00); /* hover で背後を透明化 */
}

/* 下矢印 */
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 15px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}

.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
	position: absolute;
	width: 100%;
	/*background: #072A24;*/
	background-color: rgba(255,255,255,0.01);	/*メニューの背景色の設定*/
	list-style-type: none;/*ポチを消した！　やったぜ！ゆうちゃん！！(^O^)*/
	-webkit-transition: all .2s ease;
	transition: all .5s ease;
}

li.menu__single:hover ul.menu__second-level {
    top: 0px;
    visibility: visible;
    opacity: 1;
}

/* 以下、Topicのプルダウンメニューの幅が狭くなる問題を修正したスクリプト（ChatGPT）*/

.menu > li.menu__topic ul.menu__second-level {
  width: auto; /* 自動幅 */
	margin-left: 0px;

}