#overlay {
  position: fixed;
  display: none;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

#popup {
  position: fixed;
  display: none;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  background: #FADBE6;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1001;
  text-align: center;
  width: 80%;
}
#mobileArea, #pcMessage {
    color: #353939;
}

#popup button {
  margin: 10px;
  padding: 8px 16px;
  width: 150px;
}

#noBtn{
    font-size: 0.8rem;
    color: #ffffff;
    background: #87918f; 
    border: 0.5px solid #464B4A;
    border-radius: 12px;
    border-bottom: 4px solid #464B4A;
}

#yesBtn{
    font-size: 0.8rem;
    color: #353939;
    background: #ffffff; 
    border: 0.5px solid #464B4A;
    border-radius: 12px;
    border-bottom: 4px solid #464B4A;
}

#fetchBtn {
  font-family: 'Noto Serif JP', serif;
  padding: 12px 24px;
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  color: #6B4A4A;
  background: #ffffff;
  border: 1px solid #EDBAC6;
  border-bottom: 4px solid #A6828B;
  border-radius: 12px;
  box-shadow: 0 4px 12px #6B4A4A;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

#fetchBtn:disabled {
  background: #ccc;
  color: #666;
  border: 1px solid #ccc;
  border-bottom: 4px solid #666;
  cursor: not-allowed;
  transform: none;
}

html,body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Noto Serif JP', serif;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center; /* 横方向中央 */
  background-color: #FADBE6;
}

p {
    font-size: 10px;
    padding: 5px 0px;
}

.container{
  width: 100%;
  max-width: 600px;
}

.flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pa-20{
    padding: 20px 20px;
}

.pa-dx-5 {
    padding: 5px 0px;
}
.ma-dx-5 {
  margin: 5px 0px;
}

.box {
  background-color: #FFFFFF;
  border: 2px solid #ccc;
  border-radius: 16px;
  margin: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.horizon {
  border: none;
  border-top: 4px solid #F98DB1;
}

.text-s {
  font-size: 1.0rem;
}

.text-s-g {
  font-size: 0.6rem;
  color: #705850;
}
.text-s-p {
  font-size: 1.0rem;
  color: #6B4A4A;
}
.text-s-r {
  font-size: 0.6rem;
  color: #6B4A4A;
}
.bold{
  font-weight: bold;
}
.image {
  width: 100%;
  border-radius: 8px;
}