@charset "UTF-8";

/* --------------------------
 * ヘッダー
 * --------------------------
 */
h1 {
    font-size: 150%;
/*    font-weight: bold;*/
    color: #333;
}
h2 {
    font-size: 120%;
    color: #000;
}
h4 {
    font-size: 105%;
    color: #000;
}
/* --------------------------
 * ナビゲーション
 * --------------------------
 */
navi{
text-align: center;
}
navi ul{
margin: 0 ;
padding: 0 ;
display: flex;
justify-content: space-evenly;
}
nav ul li{
list-style: none;
display: inline-block;
width: 18%;
min-width: 90px;
}
nav ul li a{
text-decoration: none;
color: #333;
}
nav ul li.current a{
color: #F33135;
}
nav ul li a:hover{
color: #E7DA66;
}
 
/* --------------------------
 * メイン画像
 * --------------------------
 */
.main-img {
    margin-top: 5px;
    margin-bottom: 0px;
    max-width: 500px;
    min-width: 350px;
}
.main-img img {
    width: 100%;
}
/* --------------------------
 * メイン
 * --------------------------
 */
a,
a:link,
a:visited {
    color: #880088;
    text-decoration: none;
}
a:hover {
    color: #FF0000;
    text-decoration: underline;
}
a:active {
    color: #FF0000;
    text-decoration: underline;
}
.line {
    border-top: 1px dotted  #666;
}
.date {
    width: 95%;
    margin: 8px 0;
    padding-left: 8px;
    font-size: 100%;
    font-weight: bold;
    line-height: 1.5;
    background: #333333;
    color: #FFFFFF;
}
h3 {
    margin: 15px 0 0;
    padding-left: 5px;
    border-left: 5px solid #999;
    color: #000000;
    font-size: 125%;
    font-weight: bold;
}
/* --------------------------
 * アコーディオンメニュー
 * --------------------------
 */
summary {
  display: block; /* デフォルトの三角アイコンを消す */
  cursor: pointer;
  position: relative;
  background-color: #F7EBDF;
  padding: 10px 20px;
  padding-right: 40px;
}

/* WebKitブラウザのデフォルトの三角形アイコンを消す */
summary::-webkit-details-marker {
  display: none;
}

/* 詳細 */
.content {
  cursor: pointer;
  padding: 15px 20px;
  background-color: #F5F5F5;
}

/* アコーディオンオープン時アニメーション */
details[open] .content {
  animation: fadeIn 0.85s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}


/* カスタムアイコン */
summary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #DF4632;
  border-bottom: 2px solid #DF4632;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.75s;
  z-index: 1;
}

/* アイコン切り替え */
details[open] summary::before {
  transform: translateY(-50%) rotate(225deg);
}
