/* CSS Document */
body, div {
  line-height: 1.6em;
  font: YakuHanJP;
  color: #1F955B;
}
a {
  color: #167245;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/*
□□□□□□□□□□□□□□□□□□□□□□□□□□

                　　　　PC用CSS
*/
@media only screen and (min-width: 769px) {
  /*
□□□□□□□□□□□□□□□□□□□□□□□□□□
*/
  /*改行等表示・非表示*/
  .spv {
    display: none;
  }
  /*全体文字サイズ*/
  body {
    font-size: 1.5em;
    line-height: 1.2em;
  }
  /*---------- f_menu ----------*/
  .f_menu {
    position: sticky;
    top: 20px;
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    filter: drop-shadow(0 0 5px #595959);
    color: #1F955B;
    text-align: center;
    z-index: 50;
    font-size: 1.2em;
  }
  .footer {
    text-align: center;
    background-color: #532B17;
    box-sizing: border-box;
    padding: 20px 0;
    color: #ffffff;
  }
  .footer_img {
    margin-bottom: 40px;
    text-align: center;
  }
  .footer_img img {
    width: 250px;
    height: auto;
  }
  h1 {
    font-size: 2.0em;
    line-height: 1.6em;
    margin-bottom: 20px;
    font-weight: bold;
  }
  h2 {
    font-size: 2.0em;
    line-height: 1.6em;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .sub_title {
    font-size: 2.0em;
    line-height: 1.6em;
    margin-bottom: 20px;
    font-weight: bold;
  }
  /*◆◆◆◆◆◆◆◆◆◆↓PC用◆◆◆◆◆◆◆◆◆◆*/
}
/*◆◆◆◆◆◆◆◆◆◆↑PC用◆◆◆◆◆◆◆◆◆◆*/
/*
□□□□□□□□□□□□□□□□□□□□□□□□□□

                　　　　SP用CSS
*/
@media only screen and (max-width: 768px) {
  /*
□□□□□□□□□□□□□□□□□□□□□□□□□□
*/
  * {
    box-sizing: border-box;
  }
  /*改行等表示・非表示*/
  .pcv {
    display: none;
  }
  /*全体サイズ*/
  body {
    width: 100%;
    max-width: 100%;
  }
  /*全体文字サイズ*/
  body, th, td {
    font-size: 1.15em;
    line-height: 1.2em;
  }
  img {
    max-width: 100%;
  }
  /*---------- f_menu ----------*/
  .f_menu {
    position: sticky;
    top: 20px;
    width: 95%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 10px;
    filter: drop-shadow(0 0 5px #595959);
    text-align: center;
    z-index: 50;
  }
  .f_menu img {
    width: 11%;
    margin: 0 1.5% 0;
  }
  /*------------------------------*/
  .footer {
	  width: 100vw;
    text-align: center;
    background-color: #532B17;
    box-sizing: border-box;
    padding: 20px 0;
    color: #ffffff;
  }
  .footer_img {
    margin-bottom: 40px;
    text-align: center;
  }
  .footer_img img {
    width: 70%;
    height: auto;
  }
  h1 {
    font-size: 1.4em;
    line-height: 1.6em;
    margin-bottom: 20px;
    font-weight: bold;
  }
  h2 {
    font-size: 1.4em;
    line-height: 1.6em;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .sub_title {
    font-size: 2.0em;
    line-height: 1.6em;
    margin-bottom: 20px;
    font-weight: bold;
  }
  /*◆◆◆◆◆◆◆↓スマホ用◆◆◆◆◆◆◆*/
}
/*◆◆◆◆◆◆◆↑スマホ用◆◆◆◆◆◆◆*/