* {
  box-sizing: border-box;
}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.5;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  background-color: #bfefff;
}

body {
  max-width: 440px;
  min-height: 100vh;
  margin: 0 auto;
  background: -webkit-linear-gradient(top, #bfefff 0%, #d9f7ff 55%, #eefcff 100%);
  background: linear-gradient(180deg, #bfefff 0%, #d9f7ff 55%, #eefcff 100%);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

/* 雲の共通スタイル */
.cloud {
  position: fixed;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  -webkit-filter: blur(3px);
          filter: blur(3px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

/* 左下の大きい雲 */
.cloud-left {
  width: 320px;
  height: 90px;
  left: -80px;
  bottom: 35px;
  -webkit-box-shadow:
    80px 30px 60px rgba(120, 190, 220, 0.22),
    220px 20px 80px rgba(120, 190, 220, 0.18);
          box-shadow:
    80px 30px 60px rgba(120, 190, 220, 0.22),
    220px 20px 80px rgba(120, 190, 220, 0.18);
}

.cloud-left::before {
  width: 150px;
  height: 150px;
  left: 45px;
  bottom: 20px;
}

.cloud-left::after {
  width: 190px;
  height: 190px;
  right: 35px;
  bottom: 5px;
}

/* 右下の大きい雲 */
.cloud-right {
  width: 320px;
  height: 90px;
  right: -100px;
  bottom: 45px;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-box-shadow:
    -80px 25px 70px rgba(120, 190, 220, 0.2),
    -220px 15px 90px rgba(120, 190, 220, 0.16);
          box-shadow:
    -80px 25px 70px rgba(120, 190, 220, 0.2),
    -220px 15px 90px rgba(120, 190, 220, 0.16);
}

.cloud-right::before {
  width: 150px;
  height: 150px;
  left: 45px;
  bottom: 20px;
}

.cloud-right::after {
  width: 190px;
  height: 190px;
  right: 35px;
  bottom: 5px;
}

/* 上部の小さい雲 */
.cloud-top {
  width: 180px;
  height: 55px;
  top: 60px;
  right: 10px;
  opacity: 0.6;
  -webkit-filter: blur(4px);
          filter: blur(4px);
}

.cloud-top::before {
  width: 90px;
  height: 90px;
  left: 25px;
  bottom: 12px;
}

.cloud-top::after {
  width: 110px;
  height: 110px;
  right: 15px;
  bottom: 3px;
}

/* z-indexリセット：コンテンツは雲の上に */
#content {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 441px) {
  body {
    -webkit-box-shadow: -1px 0 0 rgba(255, 255, 255, 0.14), 1px 0 0 rgba(255, 255, 255, 0.14);
            box-shadow: -1px 0 0 rgba(255, 255, 255, 0.14), 1px 0 0 rgba(255, 255, 255, 0.14);
  }
}

#content {
  padding: 25px;
}

#content #header_img_area {
  text-align: center;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}

#content #header_img_area #header_img {
  max-width: 100%;
  border-radius: 14px;

}

#content #header_img_area #header_result_img {
  max-width: 100%;
  border-radius: 14px;
  filter: drop-shadow(5px 5px 5px #aaa);

}

#content #text_area {
  overflow-wrap: break-word;
  width: 90%;
  margin: 0 auto;
}

#content #text_area p {
  margin: 1em auto;
  line-height: 1.7;
}

#content #text_area .text-center {
  text-align: center;
}

#content #text_area .w700 {
  font-weight: 700;
}

#content .w500 {
  font-weight: 500;
}

#content .w200 {
  font-weight: 200;
}

#content #text_area .f18 {
  font-size: 18px;
}

#content #text_area .f16 {
  font-size: 16px;
}

#content #text_area .diag-category {
  font-size: 13px;
  color: #444;
  margin-bottom: 0.35em !important;
}

#content .buttons a.button {
  display: block;
  border-radius: 22px;
  width: 90%;
  margin: 0 auto 10px auto;
  padding: 0.8em 0.5em;
  border: solid 1px #24ADED;
  color: #24ADED;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition-duration: 0.2s;
  transition-property: background-color, color;
  font-size: 0.9em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: white;        
}

#content .buttons a.button--blue {
  color: #fff;
  background-color: #24ADED;
}

@media (hover: hover) {
  #content .buttons a.button:hover {
    background-color: #24ADED;
    color: #fff;
  }
  #content .buttons a.button--blue:hover {
    background-color: #fff;
    color: #24ADED;
  }
}

#content .buttons a.button--custom1 {
   border: solid 1px #5a6b73;
    background-color: #5a6b73; 
    color: #5a6b73; 
}
@media (hover: hover) {
  #content .buttons a.button--custom1:hover {
    background-color: #5a6b73;
    color: #fff;
  }
  #content .buttons a.button--blue:hover {
    background-color: #fff;
    color: #5a6b73;
  }
}
#content .buttons.disable {
  pointer-events: none;
}

#content #detail_area {
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 0 5%;
  margin-top: 1em;
  background-color: #fff;
}

.share-confirm .share-confirm__intro {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 0 14px 0;
  width: 100%;
}

.share-confirm .share-confirm__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.share-confirm .share-confirm__introText {
  margin: 0;
}

.share-confirm #content #text_area p.share-confirm__introText {
  margin: 0;
  white-space: nowrap;
}

.share-confirm #content #detail_area {
  margin-top: 0;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
}

.share-confirm #content #detail_area #text_area {
  width: 100%;
  margin: 0;
}

.share-confirm #content #detail_area #text_area p {
  margin: 0.8em auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
}

.share-confirm #content .buttons {
  margin-top: 14px;
}

.share-confirm #content .buttons form {
  margin: 0;
  padding: 0;
  display: block;
  border: 0;
  width: 100%;
}

.share-confirm #content .buttons button[type="submit"] {
  display: block;
  border-radius: 22px;
  width: 90%;
  margin: 0 auto 10px auto;
  padding: 0.8em 0.5em;
  border: solid 1px #24ADED;
  color: #fff;
  background-color: #24ADED;
  text-align: center;
  font-weight: bold;
  transition-duration: 0.2s;
  transition-property: background-color, color;
  font-size: 0.9em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}

@media (hover: hover) {
  .share-confirm #content .buttons button[type="submit"]:hover {
    background-color: #fff;
    color: #24ADED;
  }
}

.result #content #text_area p.w700 {
  font-weight: 600;
}

#content #detail_area .buttons a.button {
  width: 100%;
}

@media (prefers-color-scheme: dark) {
  html {
    background-color: #bfefff;
  }
  body {
    background: -webkit-linear-gradient(top, #bfefff 0%, #d9f7ff 55%, #eefcff 100%);
    background: linear-gradient(180deg, #bfefff 0%, #d9f7ff 55%, #eefcff 100%);
    color: #222;
  }
}
/*# sourceMappingURL=style.css.map */