@charset "utf-8";

/*
サツマイモ品種データベース
*/
body {
  font-family: "Noto Sans JP", "Noto Sans", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Noto Serif JP", "Noto Serif", "YuMincho", serif;
}

.alert {
  font-weight: bolder;
  color: red;
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #a40b5d;
  opacity: 0.6;
  border-radius: 50%;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* トップページ */

/* 一覧画面 */

/* 詳細画面 */
#detail-page table tr th {
  width: 25%;
}

/* スクリーンサイズが767px以下の場合に適用 */
@media screen and (max-width: 767.98px) {
  #detail-page table tr th {
    width: 40%;
  }
}

.box_image {
  width: 100%;
  height: 600px;
  background: #111;
}

.box_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* スクリーンサイズが767px以下の場合に適用 */
@media screen and (max-width: 767.98px) {
  .box_image {
    width: 100%;
    height: 400px;
    background: #111;
  }
}