@charset "utf-8";

* {
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #140a04;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

.common_content_area {
  max-width: 960px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 80px;
}

.header {
  margin-top: 15px;
  margin-bottom: 15px;
}

.header a {
    padding: 10px 0;
    transition: 0.3s;
}

.header a:hover {
    border-bottom: 2px solid #05b084;
  color: #05b084;
}

.img_dinosaur_figure_top{
  max-width: 960px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
}

.dinosaurfigure_description{
    text-align: center;
    margin: 2em;
}

.products_containers{
    display: flex;
    justify-content: space-between;
}

.container_product_details{
    border: 2px solid #b68e52;
    width: 49%;
    height: 100%;
}

.container_product_details img{
  width: 100%;
  height: 20% ;
  object-fit: contain;
  aspect-ratio: 1;
}

.container_product_details h2{
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 600;
    color: #7c5822;
}

.product_details_table{
    margin-left: 10px;
}

.product_details_table_header{
    font-weight: 600;
  background: #f5efe9;
  border: 1px solid #b8a392;
  padding: 1em;
}

.product_details_table_data{
    border: 1px solid #b8a392;
  padding: 1em;
}

.products_price{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.products_price h3{
    font-size: 17px;
    font-weight: 600;
}

.products_price p{
    margin-left: 20px;
    font-size: 17px;
    font-weight: 600;
}

.product_price_table{
    margin-left: 10px;
    margin-bottom: 10px;
}

.product_price_table_header{
    font-weight: 600;
    font-size: 14px;
  background: #f5efe9;
  border: 1px solid #b8a392;
  padding: 0.5em;
}

.product_price_table_data{
    border: 1px solid #b8a392;
    font-size: 14px;
  padding:0.5em;
}

.explanation_string{
  margin-left: 10px;
  font-size: 14px;
}

.explanation_big{
  margin-left: 10px;
  font-size: 14px;
}

.products_price_triceratops{
  margin-top: 45px;
}

.products_purchase_link_button{
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.products_purchase_link {
  border: 1px solid #05b084;
  border-radius: 10px;
  background-color: #05b084;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding: 10px 15px;
  transition: 0.3s;
}

.products_purchase_link:hover {
  background-color: #3c8775;
}

.products_purchase_link_button_responsive{
  display: none;
  width: 180px;
  height: 60px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.precautions_area{
  width: 85%;
  margin-right: auto;
  margin-left: auto;
}

.precautions_container{
  width: 200px;
  height: 60px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.precautions_container h3{
  border: 1px solid #ffe113;
  border-radius: 30px;
  background-color: #ffe113;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding: 10px 15px;
  letter-spacing: 0.2em;
}

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

.precautions{
  display: flex;
  justify-content: space-between;
}

.precautions p{
  border: #140a04 1px solid;
  padding: 0.2em 1em;
}

footer {
  padding-top: 10px;
  padding-bottom: 10px;
}

.fnav_list {
  display: flex;
  justify-content: center;
}

.fnav_item {
  margin-right: 20px;
}

.fnav_item:last-child {
  margin-right: 0;
}

.fnav_link {
  padding: 10px 0;
  transition: 0.3s;
}

.fnav_link:hover {
  border-bottom: 2px solid #05b084;
  color: #05b084;
}

.footer_copyright{
  margin-top: 50px;
  text-align: center;
  background-color: #f5efe9;
}

/* レスポンシブ */
@media screen and (max-width: 500px) {
  body {
    line-height: 1.5;
  }

  .common_content_area {
    width: 95%;
  }
.header nav{
  text-align: center;
}

  .header a{
    font-size: 14px;
  }

  .gnav_item {
    margin-top: 20px;
    margin-right: 10px;
  }

  .gnav_item:last-child {
    margin-right: 0;
  }

  .gnav_link{
    font-size: 12px;
  }

  .products_purchase_link_button_responsive{
    display: block;
  }

  .products_containers{
    display: block;
  }

  .container_product_details{
    width: 98%;
    margin-bottom: 20px;
  }

  .precautions_container{
    width: 180px;
    height: 60px;
  }

  .precautions_container h3{
    font-size: 14px;
  }

  ul{
    font-size: 12px;
  }

  .precautions p{
font-size: 12px;
  }

  .fnav_list {
    font-size: 12px;
  }

  .footer_copyright{
    font-size: 12px;
    margin-top: 30px;
  }
}