/*共通css↓ --------------------------------------------------------------------*/
*{
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  text-align: center;
  margin: 0 auto;
}

/*header↓--------------------------------*/
header img {
  width: 90%;
  margin: 0 auto;
}
nav ul li {
  display: inline-block;
  width: 15%;
  margin: 0 3vw;
  font-size: 1.5vw
}
nav ul li a {
  display: block;
  padding: 1vw 3vw;
  background-color: #f29d9d;
  border-radius: 1vw;
  color: #fff;
  text-decoration: none
}
nav ul li a:hover {
  opacity: 0.6
}
/*header↑--------------------------------*/
/*main↓----------------------------------*/
main {
  width: 70%;
  margin: 5vw auto;
  padding: 5%;
  border: 1.5px solid #f29d9d;
}


.recipe, {
  width: 100%;
  clear: both;
  margin: 0 auto;
  padding: 4vw 0.5vw;
  text-align: center;
}
/*main↑----------------------------------*/
/*footer↓--------------------------------*/
footer {
  clear: both;
  font-size: 70%;
}
@media screen and (max-width: 520px) {
  footer {
    clear: both;
    font-size: 1vw;
  }
}

/*ページトップボタン*/
footer #page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #f29d9d;
  opacity: 0.6;
}
footer #page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
footer #page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/*footer↑--------------------------------*/
/*共通css↑---------------------------------------------------------------------*/


/*トップページ[index.html]css↓*/
#Kitamura-san {
  width: 90%;
}
#organization {
  text-align: left;
}
#organization-table th {
  padding: 2px 0;
  width: 20%;
  text-align: right;
  vertical-align: top;
  font-weight: normal;
}
#organization-table td {
  padding: 2px 0;
}
/*フレーム付き見出し*/
.main-title {
  width: 100%;
  position: relative;
}
.main-title img {
  width: 98%;
}
.main-title h2 {
  position: absolute;
  top: 30%;
  left: 15%;
  font-size: 2.7vw;
}
/*---------------------------------*/

/*トップページ[index.html]css↑*/
/*----------------------------------------------------------------------------*/
/*審査結果ページ[resurl.html]css↓*/
.award {
  width: 100%;
  clear: both;
  margin: 0 auto 50px;
  text-align: center;
}
/*フレーム付き見出し*/
.award-title,.review-title {
  width: 100%;
  position: relative;
}
.award-title img,.review-title img {
  width: 99%;
}
.award-title h2,.review-title h2 {
  position: absolute;
  top: 30%;
  left: 15%;
  font-size: 2vw;
}
/*----------------------------------*/

.award h3 {
  font-size: 3vw;
  color: #cd5c5c;
  margin: 0 0 3% 3%;
  float: left;
}
.award p {
  font-size: 2vw;
  float: right;
  text-align: right;
  margin-right: 3%;
}
.award p span {
  font-size: 2.5vw;
}
.award-img {
  clear: both;
  width: 80%;
  margin: 0 auto;
}
.award-img img {
  height: 16vw;
  margin: 10px 2%;
}

/*審査*/
#review {
  width: 100%;
  clear: both;
  margin: 0 auto 50px;
  text-align: center;
}
.screening {
  margin: 0 auto 5vw;
}
.screening h3 {
  font-size: 3vw;
  color: #cd5c5c;
  margin: 0 0 3% 10%;
  float: left;
}
.screening p {
  font-size: 2vw;
  float: left;
  margin: 1% 10% 0 2%;
}
.screening-img {
  clear: both;
  width: 80%;
  margin: 0 auto;
}
.screening-img img {
  width: 40%;
  margin: 10px 2%;
}
/*審査結果ページ[resurl.html]css↑*/
/*----------------------------------------------------------------*/
/*レシピページ[recipe.html]css↓*/
#recipe-page main {
}
/*フレーム付き見出し*/
.recipe-title {
  width: 100%;
  position: relative;
}
.recipe-title img {
  width: 99%;
}
.recipe-title h2 {
  position: absolute;
  top: 30%;
  left: 15%;
  font-size: 2.7vw;
}
/*---------------------------------*/
.recipe-menu {
  clear: both;
  padding: 3%;
}
.recipe-menu h3 {
  font-size: 3vw;
  color: #cd5c5c;
  border-bottom: 0.3vw solid #cd5c5c;
  margin-bottom: 3%;
}
.recipe-menu ul {
  width: 60%;
  text-align: left;
  list-style: none;
  float: right;
}
.recipe-menu li {
  background-color: #f29d9d;
  color: #fff;
  border-left: 1vw solid #cd5c5c;
  padding: 0.5%;
  font-size: 1.5vw;
}
.recipe-menu li:hover {
  opacity: 0.7;
}
.recipe-menu img {
  width: 35%;
  float: left;
}

/*アコーディオンで開く部分*/
.open-recipe {
  font-size: 1.5vw;
  padding: 0.5%;
}
.open-recipe table {
  width: 100%;
  border-collapse: collapse;
  border: solid 0.2vw #555;
}
.open-recipe th,
.open-recipe td {
  margin:0;
  border: 0.1vw dashed #555;
  padding: 0.5%;
}
.material {
  width: 20%;
  text-align: center;
}
.amount {
  width: 15%;
  text-align: center;

}
.recipe{
  width: 65%;
  text-align: center;
}
/*レシピページ[recipe.html]css↑*/
/*----------------------------------------------------------------*/
