/* styles.css */

/* ポップアップの基本スタイル */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 5px;
  width: 300px;
  text-align: center;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  text-decoration: none;
}

/* 初期状態でポップアップを非表示にするクラス */
.hidden {
  display: none;
}

/* テキストのフォントと行間を調整 */
.popup-text {
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 40px;
  margin-bottom: 20px;
	text-align: left;
  color: #333;
}

/* SNSアイコンのスタイル */
.popup-sns {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.popup-sns img {
  width: 30px;
  height: 30px;
}