
/* 画像リンクの青い枠を消す */
a img {
  border: none; /* 枠線を非表示にする */
  outline: none; /* フォーカス時の青い枠も非表示にする */
}

/* リンク全体のフォーカス時の青い枠も非表示にする */
a:focus {
  outline: none;
}

#retoroch-heading {
   font-size: 2.7rem;
   background: linear-gradient(to right, red, yellow, blue);
   border-radius: 0px;
}

body {
   font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Kaku Gothic", "角ゴシック", sans-serif;
}

h2 {
   border-radius: 10px;
}

h2 {
   background-color: #7b899e !important;
}

.atwiki-list-title {
   background-color: transparent;
   color: #2e2e2e;
   font-size: 1.15rem;
}

h2 > span {
   color: #bbc0c7 !important;
}

a:hover {
   color: #003d9e;
   text-decoration: none;
}

.atwiki-menubar-contents, .atwiki-contents-shadow, #page-ranking-list, #update-page-list {
   border-radius: 1px solid #b0b0b0;
   border-radius: 10px;
}

.atwiki-pc-rank-wrap {
   display: none;
}

.atwiki-right-column {
   order: 0;
}

.atwiki-left-column {
   order: 2;
}

@media (min-width: 751px) {
   .atwiki-right-column {
      width: 13%;
   }
}

.atwiki-left-column, .atwiki-right-column {
   margin: 20px;
}

#menubar > h4 {
   border-radius: 8px;
   padding: 8px;
   color: white;
   background-color: #333840;
}

/*
.plugin_pcomment {
   background-color: #d6e5ff;
}
*/

input[type="submit"] {
   background-color: #75aaff;
   color: white;
   border-radius: 5px;
}

input[type="text"] {
   border-radius: 5px;
}


/* 見出しの共通スタイル */
h1, h2, h3, h4, h5, h6 {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

/* アニメーション効果 */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* アニメーションを遅らせる（各見出しで少し時間差をつける） */
h1 {
  animation-delay: 0.2s;
}
h2 {
  animation-delay: 0.4s;
}
h3 {
  animation-delay: 0.6s;
}
h4 {
  animation-delay: 0.8s;
}
h5 {
  animation-delay: 1s;
}
h6 {
  animation-delay: 1.2s;
}



/* ページ106専用（class="page-106" を利用） */
.page-106 {
  background-color: #fdfcf7; /* 紙っぽいアイボリー */
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-height: 1.8;
  color: #2c2c2c;
  padding: 20px;
}

/* 見出しを本っぽく */
.page-106 h1, 
.page-106 h2, 
.page-106 h3 {
  font-weight: bold;
  color: #1a1a1a;
  border-bottom: 1px solid #aaa;
  padding-bottom: 4px;
  margin-top: 2em;
  margin-bottom: 1em;
}

/* 小見出し */
.page-106 h3 {
  font-size: 1.1rem;
  border-bottom: none;
  margin-left: 1em;
  color: #444;
}

/* 本文段落 */
.page-106 p {
  text-indent: 1em;
  margin: 0.8em 0;
}

/* 引用をコラム風に */
.page-106 blockquote {
  border-left: 3px solid #aaa;
  margin: 1.5em 2em;
  padding-left: 1em;
  color: #555;
  background: #fafafa;
  font-style: italic;
}

/* リンクを参考文献風に */
.page-106 a {
  color: #004080;
  text-decoration: underline;
}