@charset "utf-8";
/* CSS Document */


    .sns-share-buttons { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
    .sns-share-buttons a img { width: 40px; height: 40px; transition: transform 0.3s; }
    .sns-share-buttons a img:hover { transform: scale(1.2); }


body {
  background-color: #000;
  color: #0ff;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
}
body {
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}
h1 {
  color: #f0f;
  text-shadow: 0 0 10px #f0f, 0 0 20px #f0f;
}

button {
  background-color: #111;
  color: #0ff;
  border: 2px solid #0ff;
  border-radius: 10px;
  box-shadow: 0 0 10px #0ff;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #0ff;
  color: #111;
  box-shadow: 0 0 20px #0ff, 0 0 30px #0ff;
}

.slot-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.slot {
  font-size: 48px;
  width: 80px;
  height: 80px;
  color: #fff;
  background: #111;
  border: 2px solid #0ff;
  margin: 5px;
  text-align: center;
  line-height: 80px;
  border-radius: 12px;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  transition: background 0.3s;
}

.slot.active {
  background-color: #0ff;
  color: #000;
  box-shadow: 0 0 20px #0ff, 0 0 30px #0ff;
}

#result {
  width: 80%;              /* 横幅を調整（必要に応じて%やpxを変更） */
  max-width: 800px;        /* 最大幅を設定 */
  margin: 20px auto;       /* ブロック全体を中央に配置 */
  text-align: left;        /* テキストは左揃え */
  padding: 20px;           /* 内側の余白 */
  background-color: #000;  /* 背景色（ネオン調） */
  color: #0ff;             /* 文字色 */
  border-radius: 10px;     /* 角丸 */
  box-shadow: 0 0 20px #0ff; /* 外枠の光 */
  font-family: 'Courier New', monospace; /* フォント */
}

.section {
  margin-bottom: 30px;
}

.headline {
  font-size: 24px;
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-bottom: 2px solid #4CAF50; /* 見出しの下線 */
  color: #4CAF50;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 10px;
  margin-bottom: 5px;
  background-color: #111;
  color: #0ff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

ul li.active {
  background-color: #0ff;
  color: #000;
  font-weight: bold;
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}
.footer {
  background-color: #222;       /* 背景色はダーク系 */
  color: #ccc;                  /* 文字色は柔らかめのグレー */
  font-size: 14px;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #444;   /* 上にうっすらボーダー */
  margin-top: 10px;
}

.footer a {
  color: #ccc;                  /* リンクも落ち着いた色 */
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.explanation-section {
  width: 80%;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  text-align: left;
  background-color: #111;
  color: #eee;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.explanation-section h1 {
  font-size: 28px;
  color: #0ff;
  text-align: left;
  margin-bottom: 20px;
  border-left: 5px solid #0ff;
  padding-left: 10px;
  text-shadow: 0 0 5px #0ff;
}

.explanation-item {
  margin-bottom: 30px;
}

.explanation-item h2 {
  font-size: 20px;
  color: #4CAF50;
  margin-bottom: 10px;
  border-left: 5px solid #4CAF50;
  padding-left: 10px;
}

.explanation-item p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}
.loading {
  display: none;
  color: #0ff;
  font-size: 18px;
  margin: 20px auto;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.2; }
  100% { opacity: 1; }
}
.loading {
  display: none; /* 最初は非表示 */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #0ff;
  font-family: 'Orbitron', sans-serif;
  z-index: 9999; /* 他の要素より前面に */
}

.spinner {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border: 6px solid #0ff;
  border-top: 6px solid #111;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.big-neon-button {
  font-size: 28px;
  padding: 20px 40px;
  color: #0ff;
  background: #111;
  border: 3px solid #0ff;
  border-radius: 15px;
  box-shadow: 
    0 0 10px #0ff, 
    0 0 20px #0ff, 
    inset 0 0 10px #0ff;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  font-family: 'Orbitron', sans-serif;
  position: relative;
}

.big-neon-button:hover {
  color: #111;
  background-color: #0ff;
  box-shadow: 
    0 0 20px #0ff, 
    0 0 30px #0ff, 
    inset 0 0 20px #111;
  transform: translateY(-5px);
}

.big-neon-button:active {
  transform: translateY(2px);
  box-shadow: 
    0 0 10px #0ff, 
    0 0 15px #0ff, 
    inset 0 0 30px #0ff;
}

.ad-center {
  text-align: center;
  margin: 20px auto;
}


#zhiGuaResult {
  width: 80%;              /* 横幅を調整（必要に応じて%やpxを変更） */
  max-width: 800px;        /* 最大幅を設定 */
  margin: 20px auto;       /* ブロック全体を中央に配置 */
  text-align: left;        /* テキストは左揃え */
  padding: 20px;           /* 内側の余白 */
  background-color: #000;  /* 背景色（ネオン調） */
  color: #0ff;             /* 文字色 */
  border-radius: 10px;     /* 角丸 */
  box-shadow: 0 0 20px #0ff; /* 外枠の光 */
  font-family: 'Courier New', monospace; /* フォント */
}

/* シェアボタン */
.share-buttons {
  margin: 3em 0 2em;
  text-align: center;
}
.share-buttons p {
  color: #00ffff;
  font-size: 1.1em;
  text-shadow: 0 0 6px #0ff, 0 0 12px #007777;
}
.share-buttons a {
  display: inline-block;
  margin: 0 12px;
  padding: 10px;
  border-radius: 50%;
  background-color: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 10px #00ffff66, 0 0 15px #00cccc66;
  transition: transform 0.3s, box-shadow 0.3s;
}
.share-buttons a:hover {
  transform: scale(1.2);
  box-shadow: 0 0 14px #00ffffcc, 0 0 24px #00ccccaa;
}
.share-buttons img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px #00ffffaa);
}

/* ココナラPRボタン */
.coconala-button-wrapper {
  margin: 2em 0;
  text-align: center;
}
.coconala-button {
  display: inline-block;
  padding: 0.8em 1.5em;
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
  font-size: 1.1em;
  font-weight: bold;
  border: 1px solid #00ffffaa;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 12px #00ffff66, 0 0 20px #00777744;
  position: relative;
  transition: all 0.3s ease;
}
.coconala-button:hover {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 18px #00ffffaa, 0 0 30px #00cccc88;
  transform: scale(1.05);
}
.pr-label {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #000;
  color: #00ffff;
  border: 1px solid #00ffff99;
  font-size: 0.6em;
  padding: 2px 6px;
  border-radius: 6px;
  box-shadow: 0 0 6px #00ffff88;
  font-weight: bold;
}
