@charset "UTF-8";
html {
  word-wrap: break-word;
  overflow-x: hidden;
  font-size: 62.5%;
  font-weight: bold;
  width: 100vw;
  height: 100vh;
}
@media screen and (min-width: 1200px) and (max-width: 1740px) {
  html {
    font-size: 46%;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1300px) {
  html {
    font-size: 38%;
  }
}
@media screen and (max-width: 575px) {
  html {
    font-size: 30%;
  }
}
@media screen and (min-width: 576px) and (max-width: 1024px) {
  html {
    font-size: 46%;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 27%;
  }
}

body {
  min-height: 100vh;
  font-size: 1.6rem;
  word-break: break-word;
  font-family: "UD Shin Go Regular";
  display: grid;
  position: relative;
  background-color: #f0f1e3;
}
body a {
  color: #006837;
}
body a:hover {
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.grecaptcha-badge {
  visibility: hidden;
}

#container {
  display: grid;
  grid-template: "header header header header" 18rem "..... ..... ..... ....." 4rem "bread bread bread bread" 4rem "..... main side ....." 1fr "footer footer footer footer" 15rem/1fr 106rem 32rem 1fr;
  background-color: #f0f1e3;
  width: 100vw;
}
@media screen and (max-width: 1024px) {
  #container {
    display: block;
    overflow: hidden;
    width: 95vw;
    margin: 0 auto;
  }
}

#header {
  grid-area: header;
  padding-top: 3rem;
}
@media screen and (max-width: 1024px) {
  #header {
    background-color: #f0f1e3;
    padding-top: 1rem;
  }
}
#header img {
  margin: 0 auto;
  width: clamp(28rem, 50vw, 70rem);
}
#header h1.active-logo {
  display: none;
}
#header nav {
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  #header nav {
    opacity: 1;
    width: 100%;
    line-height: 2;
    margin: 3rem 0;
    padding: 0.8rem;
    background: #006837;
    border-radius: 5px;
    border: 2px solid #82bc3f;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 1024px) {
  #header nav.active-navi {
    opacity: 1;
    background: rgba(0, 104, 55, 0.85);
    transform: translateY(0);
    position: fixed;
    top: 0;
    margin-top: 0;
    left: auto;
    right: auto;
    width: 95%;
    z-index: 2;
    transition: all 0.3s;
  }
}
#header nav ul {
  display: flex;
  justify-content: space-between;
}
#header nav li {
  font-size: 2.5rem;
  text-align: center;
}
#header nav li a {
  color: #fff;
  text-decoration: none;
  padding: 1rem 0.5rem;
}
#header nav li a:hover {
  background: #fff;
  color: #006837;
  transition: all 0.3s;
  border-radius: 5px;
}

#bread {
  grid-area: bread;
  background-color: #fff;
  border-top: 3px solid #82bc3f;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #bread {
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    height: 7rem;
  }
}
#bread ol {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  padding: 1.5rem 0;
  width: 71.5%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #bread ol {
    margin: 0;
    padding-left: 2rem;
  }
}
#bread li::after {
  content: " > ";
}
#bread li:last-child::after {
  content: "";
}

ul.navi {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  background-color: #fff;
  text-align: center;
  margin-top: 1rem;
}
ul.navi li {
  font-size: 1.7rem;
  width: 95%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  ul.navi li {
    width: 88%;
    font-size: 3rem;
  }
}
ul.navi li a {
  display: block;
  border: 1px solid #006837;
  border-radius: 2rem;
  line-height: 3;
  color: #006837;
}
@media screen and (max-width: 1024px) {
  ul.navi li a {
    line-height: 2;
  }
}
ul.navi li a:hover {
  color: #fff;
  background-color: #006837;
  text-decoration: none;
  transition: all 0.3;
}

main {
  grid-area: main;
}

aside {
  grid-area: side;
  background-color: #fff;
  padding-top: 4rem;
}
@media screen and (max-width: 1024px) {
  aside {
    display: none;
  }
}
aside h2 {
  color: #704f43;
  font-size: 2.5rem;
  padding-left: 2rem;
}
@media screen and (max-width: 1024px) {
  aside h2 {
    color: #006837;
    text-align: left !important;
  }
}
aside nav ul {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}
aside + ul {
  margin-top: 0;
}
aside form {
  margin-top: 2rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  aside form {
    margin-top: 7rem;
    width: 96%;
  }
}
aside form div {
  margin-left: 1rem;
}
@media screen and (max-width: 1024px) {
  aside form div {
    margin: 0;
  }
}
aside form h2 {
  text-align: left;
  font-size: 2.5rem;
  padding-top: 1rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  aside form h2 {
    background-image: none;
    padding-top: 5rem;
    margin: 0;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  aside form h2 {
    margin-left: 6%;
  }
}
aside form input[type=search] {
  width: 97%;
  height: 4rem;
  border: 1px solid #cbcbcb;
  border-radius: 2rem;
  background-color: #e8e8e8;
  text-align: left;
  padding-left: 1rem;
}
@media screen and (max-width: 1024px) {
  aside form input[type=search] {
    border-radius: 3rem;
    height: 6rem;
    width: 100%;
    margin-left: 2rem;
  }
}
aside form button[type=submit] {
  position: absolute;
  top: 3.7rem;
  right: 1rem;
  cursor: pointer;
  margin-top: 0.2rem;
  width: 4rem;
}
@media screen and (max-width: 1024px) {
  aside form button[type=submit] {
    top: 8rem;
    right: -2rem;
    width: 7rem;
  }
}
aside form button[type=submit]:hover {
  background-image: url(./img/search_btn_on.svg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
}
aside form button[type=submit]:hover img {
  visibility: hidden;
}

#contents {
  width: 100rem;
  margin-top: 4rem;
}
@media screen and (max-width: 1024px) {
  #contents {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 375px) {
  #contents {
    width: 100%;
  }
}
#contents h2 {
  line-height: 1.5;
  color: #444;
  padding: 0 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}
#contents h2.white_inner {
  background-color: #fff;
  padding: 2rem !important;
  margin-bottom: 1rem;
  border-radius: 1rem;
  text-align: left !important;
}
#contents time.date {
  color: #e75a24;
  font-size: 1.7rem;
  margin-left: 2rem;
  font-family: "UD Shin Go Regular";
  width: 100%;
  display: block;
}
#contents #pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
#contents #pagenavi .pagination {
  font-family: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin-top: 1rem;
  margin-right: 3rem;
}
#contents #pagenavi .pagination ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  column-gap: 3rem;
}
#contents #pagenavi .pagination li {
  text-align: center;
}
#contents #pagenavi .pagination li:first-child {
  margin-left: 0;
}
#contents #pagenavi .pagination li a {
  display: block;
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  background-color: #fff;
  color: #000;
  border: 1px solid #82bc3f;
  line-height: 1.8;
  font-size: 3.3rem;
  transition: all 0.1;
}
#contents #pagenavi .pagination li a:hover {
  background-color: #82bc3f;
  color: #fff;
  text-decoration: none;
  transition: all 0.3;
}
#contents #pagenavi .pagination li span.current {
  display: block;
  font-size: 3.3rem;
  line-height: 1.8;
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  background-color: #006837;
  color: #fff;
}

div.inner p.new {
  color: #fff !important;
  font-size: 2.2rem;
  font-family: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  background-image: url("./img/new.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  margin-top: 2rem;
  margin-left: -2rem;
  padding-top: 1rem;
  width: 16.3rem;
  height: 6.3rem;
  text-align: center;
  line-height: 2;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  div.inner p.new {
    margin-top: 11rem;
  }
}
div.inner p.new + img {
  position: absolute;
  z-index: 0;
}

ul.bloglist {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  row-gap: 5rem;
}
ul.bloglist li {
  padding: 1rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 0 3px #81532e;
  width: 100%;
}
ul.bloglist li a {
  display: block;
  height: 100%;
}
ul.bloglist li a ul.category {
  background-color: #f3efe4;
}
ul.bloglist li a:hover ul.category {
  background-color: #e75a24;
}
@media screen and (max-width: 1024px) {
  ul.bloglist li {
    padding: 4.8rem 3.5rem;
  }
}
@media screen and (max-width: 375px) {
  ul.bloglist li {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
ul.bloglist li:first-child ul.category li, ul.bloglist li:nth-child(2) ul.category li {
  font-size: 1.9rem;
}
@media screen and (max-width: 1024px) {
  ul.bloglist li:first-child ul.category li, ul.bloglist li:nth-child(2) ul.category li {
    padding: 1rem;
  }
}
ul.bloglist li:nth-child(n+3) {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  ul.bloglist li:nth-child(n+3) {
    width: 100%;
  }
}
ul.bloglist li:nth-child(n+3) img {
  width: 100%;
}
ul.bloglist li article {
  height: 100%;
}
ul.bloglist ul.category {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  padding: 1rem 2rem;
}
ul.bloglist ul.category li {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  margin: 0;
  font-size: 1.6rem;
  box-shadow: none;
  width: auto;
}
@media screen and (max-width: 1024px) {
  ul.bloglist ul.category li {
    padding: 1rem;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 450px) {
  ul.bloglist ul.category li {
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 576px) and (max-width: 690px) {
  ul.bloglist ul.category li {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 320px) and (max-width: 380px) {
  ul.bloglist ul.category li {
    font-size: 1.3rem;
  }
}
ul.bloglist ul.category li:first-child {
  color: #006837;
  padding: 0;
}
ul.bloglist ul.category li:last-child {
  border: 1px solid #006837;
  border-radius: 2rem;
  padding: 1rem;
}
ul.bloglist h2 {
  padding: 0 2rem;
  margin: 2rem 0;
  font-family: "UD Shin Go Regular";
  border: 0 !important;
}
ul.bloglist a h2 {
  color: #444;
}
ul.bloglist a:hover {
  text-decoration: none;
}
ul.bloglist a:hover ul.category {
  background-color: #e75a24;
}
ul.bloglist a:hover ul.category li {
  color: #fff;
}
ul.bloglist a:hover ul.category li:last-child {
  background-color: #fff;
  border: 1px solid #006837;
  color: #006837;
  border-radius: 2rem;
  padding: 1rem;
}
ul.bloglist a:hover h2 {
  color: #e75a24;
  background-color: #fff;
}

div.bottom {
  margin-bottom: 5rem;
  font-family: "UD Shin Go Regular";
  color: #444;
}
div.bottom div.inner {
  background-color: #fff;
  box-shadow: 0 0 3px #81532e;
  border-radius: 1rem;
  margin-top: 3rem;
  padding: 3rem;
}
div.bottom h3 {
  color: #006837;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1024px) {
  div.bottom h3 {
    font-size: 3.5rem;
  }
}
div.bottom h3 span {
  font-size: 2.5rem;
}
@media screen and (max-width: 1024px) {
  div.bottom h3 span {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
  }
}
div.bottom div.sns {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 99%;
}
div.bottom div.sns ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 8rem;
}
@media screen and (max-width: 1024px) {
  div.bottom div.sns ul {
    display: none;
  }
}
div.bottom div.sns li:first-child {
  width: 4rem;
}
div.bottom div.sns li:last-child {
  width: 1.7rem;
}
div.bottom dl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  column-gap: 3rem;
  width: 100%;
  margin-top: 1.5rem;
}
@media screen and (max-width: 1024px) {
  div.bottom dl {
    display: block;
    color: #006837;
    font-weight: bold;
  }
}
div.bottom dt {
  text-align: center;
  border: 1px solid #c4c4c4;
  border-radius: 20px;
  width: 36.1%;
  padding: 1rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  div.bottom dt {
    margin-bottom: 2rem;
    font-size: 3rem;
    width: 57%;
  }
}
div.bottom dd {
  padding: 1rem 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  div.bottom dd {
    font-size: 3rem;
  }
}
div.bottom p {
  line-height: 1.8;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  div.bottom p {
    font-size: 3rem;
    line-height: 1.5;
  }
}

footer {
  grid-area: footer;
  background-color: #fff;
  font-family: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 1024px) {
  footer {
    background-color: transparent;
  }
}
footer .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 138rem;
  margin-bottom: 3rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  footer .inner {
    width: 100%;
    flex-direction: column-reverse;
  }
}
footer div.inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 138rem;
  margin-top: 5rem;
  padding-top: 3rem;
}
@media screen and (max-width: 1024px) {
  footer div.inner {
    width: 100%;
    padding-top: 0;
  }
}
footer div.inner .box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1024px) {
  footer div.inner .box {
    justify-content: center;
    margin-bottom: 4rem;
    padding: 0 6rem;
  }
}
footer div.inner .box li {
  text-align: center;
}
footer div.inner .box li:first-child {
  padding-right: 3rem;
}
@media screen and (max-width: 1024px) {
  footer div.inner .box li:first-child {
    padding-right: 4rem;
  }
}
footer div.inner .box li:last-child {
  padding-left: 3rem;
}
@media screen and (max-width: 1024px) {
  footer div.inner .box li:last-child {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  footer div.inner .box li {
    font-size: 3vmax;
  }
}
@media screen and (max-width: 375px) {
  footer div.inner .box li {
    font-size: 2vmax;
  }
}
footer div.inner .box li a {
  line-height: 1.5;
  display: block;
}
@media screen and (max-width: 1024px) {
  footer div.inner .box li a {
    color: #666;
  }
}
footer div.inner .box li:nth-child(2) {
  padding: 0 3rem;
  border-left: 1px solid #82bc3f;
  border-right: 1px solid #82bc3f;
}
@media screen and (max-width: 1024px) {
  footer div.inner .box li:nth-child(2) {
    padding: 0 2rem;
  }
}
footer div.inner .box li:nth-child(2) a {
  display: block;
}
footer div.inner .box.sns {
  column-gap: 3rem;
  margin-top: -0.5rem;
}
@media screen and (max-width: 1024px) {
  footer div.inner .box.sns {
    column-gap: 5rem;
    margin-top: 0;
    padding: 0;
  }
}
footer div.inner .box.sns li {
  display: inline-block;
  vertical-align: middle;
}
footer div.inner .box.sns li a {
  color: #666;
}
footer div.inner .box.sns li a:hover {
  color: #006837;
}
footer div.inner .box.sns li a::before {
  content: "";
  display: inline-block;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
  margin-right: 1rem;
}
footer div.inner .box.sns li:first-child {
  padding-right: 0;
}
footer div.inner .box.sns li:first-child a::before {
  width: 3.1rem;
  height: 2.5rem;
  background-image: url(./img/footer-twitter.svg);
}
@media screen and (max-width: 1024px) {
  footer div.inner .box.sns li:first-child a::before {
    width: 5.1rem;
    height: 4.5rem;
  }
}
footer div.inner .box.sns li:first-child a:hover::before {
  background-image: url(./img/footer-twitter2.svg);
}
footer div.inner .box.sns li:nth-child(2) {
  border: 0;
  padding: 0;
}
footer div.inner .box.sns li:nth-child(2) a::before {
  width: 1.5rem;
  height: 2.9rem;
  background-image: url(./img/footer-fb.svg);
}
@media screen and (max-width: 1024px) {
  footer div.inner .box.sns li:nth-child(2) a::before {
    width: 3.1rem;
    height: 4.9rem;
  }
}
footer div.inner .box.sns li:nth-child(2) a:hover::before {
  background-image: url(./img/footer-fb2.svg);
}
footer div.inner .box.sns li:last-child {
  padding-left: 0;
}
footer div.inner .box.sns li:last-child a::before {
  background-image: url(./img/footer-insta.svg);
  width: 2.6rem;
  height: 2.6rem;
}
@media screen and (max-width: 1024px) {
  footer div.inner .box.sns li:last-child a::before {
    width: 4.6rem;
    height: 4.6rem;
  }
}
footer div.inner .box.sns li:last-child a:hover::before {
  background-image: url(./img/footer-insta2.svg);
}
footer p {
  color: #fff;
  background-color: #82bc3f;
  text-align: right;
}
footer p small {
  margin: 0 auto;
  margin-top: 2rem;
  display: block;
  line-height: 4;
  width: 138rem;
}
@media screen and (max-width: 1024px) {
  footer p small {
    width: auto;
    text-align: center;
  }
}

#prev_next_block .prev_next ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
#prev_next_block .prev_next li {
  font-size: 2.2rem;
  margin-top: 1rem;
}
#prev_next_block .prev_next li:first-child {
  margin-right: 2rem;
}
#prev_next_block .prev_next li span {
  border-radius: 9999px;
  background-color: #fff;
  border: 1px solid #82bc3f;
  display: block;
  width: 23rem;
  height: 6rem;
  text-align: center;
  line-height: 2.5;
  transition: all 0.1s;
}
@media screen and (max-width: 760px) {
  #prev_next_block .prev_next li span {
    width: 22rem;
    height: 6rem;
    line-height: 3;
  }
}
#prev_next_block .prev_next li span:hover {
  transition: all 0.3s;
  cursor: pointer;
  background-color: #82bc3f;
}
#prev_next_block .prev_next li a {
  display: block;
  text-decoration: none;
  padding: 0;
  border: 0;
  border-radius: 0;
}
#prev_next_block .prev_next li a:hover {
  color: #fff;
}

#single #pagenavi .pagination {
  margin-right: 0;
}

#contents div.inner div#article {
  background-color: #fff;
  box-shadow: 0 0 3px #81532e;
  border-radius: 1rem;
}
#contents div.inner div#article #singlewrap {
  width: 72.6%;
  margin: 0 auto;
  padding-bottom: 4rem;
}
#contents div.inner div#article #singlewrap figure {
  width: 100%;
}
#contents div.inner div#article #singlewrap h3 {
  font-size: 2.6rem;
  border-bottom: 2px solid #8f8f8f;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  #contents div.inner div#article #singlewrap div.wp-block-columns {
    display: block;
  }
}
#contents div.inner div#article article {
  margin: 0 auto;
  margin-bottom: 3rem;
}
#contents div.inner div#article article div.inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  width: 90%;
  padding: 3.5rem 0;
  margin: 0 auto;
}
#contents div.inner div#article article ul#sns {
  margin-right: 1rem;
}
#contents div.inner div#article article ul#sns li a {
  color: #fff;
  display: block;
  text-align: center;
  padding: 0.5rem;
  border-radius: 1rem;
  width: 16.5rem;
}
#contents div.inner div#article article ul#sns li:first-child {
  margin-bottom: 1rem;
}
#contents div.inner div#article article ul#sns li:first-child a {
  background: #55acee;
}
#contents div.inner div#article article ul#sns li:last-child a {
  background: #3B5998;
}
#contents div.inner h1 {
  font-size: 2.7rem;
  line-height: 1.5;
  padding-right: 3rem;
}
#contents div.inner h2 {
  font-size: 2.6rem;
  font-family: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  border-bottom: 1px solid #000;
  padding-bottom: 1rem;
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 1rem;
  text-align: center;
}
#contents div.inner ul.single_category {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  background-color: #f3efe4;
  width: 90%;
  padding: 1rem 1rem 1rem 2rem;
  margin: 0 auto;
}
#contents div.inner ul.single_category li {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  font-size: 1.8rem;
  background: transparent;
  color: #006837;
}
#contents div.inner ul.single_category li:first-child {
  color: #006837;
  margin-top: 1rem;
  padding: 0;
}
#contents div.inner ul.single_category li:last-child {
  border: 1px solid #006837;
  border-radius: 2rem;
  padding: 1rem;
}
#contents div.inner p {
  line-height: 1.8;
  font-size: 1.8rem;
  font-family: "UD Shin Go Regular";
  color: #444;
}
#contents div.inner figure {
  width: 90%;
  margin: 2rem auto;
}
#contents div.inner time.date {
  display: block;
  text-align: right;
  margin-left: 0;
  padding-right: 5rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

#archive #contents div.inner h1 {
  color: #006837;
  font-size: 2.5rem;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 2rem;
  padding: 2rem;
}
#archive #contents div.inner h1 span:first-child {
  color: #353535;
}
#archive #contents div.inner h1 span:last-child {
  color: #006837;
  font-size: 3rem;
  font-family: "UD Shin Go Light";
  position: relative;
  top: 0.5rem;
}
#archive #contents div.inner h1 + p {
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-left: 2.5rem;
}
#archive #contents div.inner ul.bloglist li {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  #archive #contents div.inner ul.bloglist li {
    width: 100%;
  }
}
#archive #contents div.inner ul.bloglist li img {
  width: 100%;
}
#archive #contents div.inner ul.bloglist ul.category li {
  font-size: 1.5rem;
  width: auto;
}

#page #contents div.inner h1 {
  background-color: #fff;
  font-size: 3.1rem;
  font-family: "UD Shin Go Regular";
  padding: 1rem;
  line-height: 1.5;
}

div.interview {
  padding: 8rem;
  padding-right: 7rem;
  background-color: #f0f1e3;
  margin-bottom: 2rem;
  position: relative;
}
div.interview p {
  font-family: "Jun 201" !important;
}
div.interview::before, div.interview::after {
  position: absolute;
  content: "";
  width: 4rem;
  height: 4rem;
}
div.interview::before {
  border-left: 2px solid #82bc3f;
  border-top: 2px solid #82bc3f;
  top: 4rem;
  left: 4rem;
}
div.interview::after {
  border-right: 2px solid #82bc3f;
  border-bottom: 2px solid #82bc3f;
  bottom: 4rem;
  right: 4rem;
}

#contact h1 {
  color: #fff !important;
  background-color: #006837 !important;
  padding: 1rem !important;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}
#contact p {
  margin-left: 1.2rem;
  line-height: 1.5;
}
#contact div.screen-reader-response {
  display: none;
}
#contact form {
  margin-top: 2rem;
  margin-left: 1rem;
  margin-bottom: 10rem;
  position: inherit;
  top: inherit;
  left: inherit;
  width: auto;
}
#contact dl {
  margin-bottom: 3rem;
}
#contact dt {
  margin-bottom: 1rem;
  color: #006837;
}
@media screen and (max-width: 1024px) {
  #contact dt {
    font-size: 2.5rem;
  }
}
#contact dt span {
  display: inline-block;
  margin-left: 1rem;
}
#contact dt span.required {
  color: #f00;
}
#contact dt span.any {
  color: #000;
}
#contact .error_blank {
  color: #f00;
}
#contact em {
  color: #f00;
  display: block;
  font-style: normal;
  margin-top: 0.5rem;
}
#contact input.alert,
#contact textarea.alert {
  border: 1px solid #f00;
}
#contact input,
#contact textarea {
  border: 1px solid #000;
  background-color: #fff;
  padding-left: 1rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
  width: 100%;
}
#contact input {
  height: 4rem;
}
#contact input[type=email] {
  font-size: 3rem;
}
#contact input[type=email]:focus {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  #contact input {
    height: 8rem;
  }
}
#contact fieldset input {
  height: auto;
  width: auto;
  transform: scale(1.5);
  margin-right: 0.3rem;
  vertical-align: middle;
}
#contact fieldset textarea {
  margin-top: 2rem;
}
@media screen and (max-width: 1024px) {
  #contact #radio {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin-top: 1rem;
    font-size: 3rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  #contact #radio .wpcf7-list-item {
    margin: 0 !important;
  }
}
#contact #radio .wpcf7-list-item {
  margin-right: 1rem;
}
#contact #radio .wpcf7-list-item.first {
  margin-left: 0;
}
#contact #radio .wpcf7-list-item.last {
  margin-right: 0;
}
#contact input[type=checkbox] {
  display: inline-block;
  width: auto;
  height: auto;
  transform: scale(1.5);
  margin-right: 0 1rem;
  padding: 0;
}
#contact label + em {
  margin-top: 2rem;
}
#contact button {
  position: inherit;
  right: auto;
  display: block;
  text-align: center;
  width: 50%;
  min-width: 23rem;
  height: 8rem;
  padding: 1rem;
  background-color: #e75a24;
  color: #fff;
  font-size: 3rem;
  margin: 0 auto;
  margin-top: 6rem;
  border-radius: 8px;
}
#contact button:hover {
  background-image: none;
  opacity: 0.7;
}

.game h2,
.game h3,
.game h4,
.game dt {
  color: #006837;
}
.game h2 {
  font-size: 2rem;
}
.game h3 {
  font-size: 3rem;
}
.game h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.game nav {
  margin: 2rem 0;
}
.game nav ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
.game nav li {
  margin-bottom: 1rem;
  width: 33%;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .game nav li {
    width: 35%;
  }
}
@media screen and (max-width: 575px) {
  .game nav li {
    width: 45%;
  }
}
@media screen and (min-width: 576px) and (max-width: 690px) {
  .game nav li {
    width: 50%;
  }
}
.game nav li a {
  display: block;
  color: #006837;
}
.game nav li a::before {
  display: inline-block;
  content: "";
  background-color: #006837;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}
.game nav li a:hover {
  color: #e75a24;
}
.game nav li a:hover::before {
  background-color: #e75a24;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.game p,
.game dl,
.game figcaption {
  line-height: 1.8;
  font-size: 1.8rem;
  margin-left: 2rem;
}
.game h4 {
  margin: 1rem 0;
}
.game h4 + ul {
  margin-left: 2rem;
  margin-top: -2rem;
  line-height: 1.8;
}
.game li span {
  margin-left: 2rem;
}
.game figure + p {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.game #border {
  border-top: 2px dotted #006837;
}
.game .row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  padding: 2rem 0;
}
.game .row dl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.game .row div:first-child {
  margin-right: 30%;
}
.game .row dl,
.game .row p {
  margin-top: 1rem;
}
.game .row dt {
  width: 52%;
}
.game .center {
  margin: 0 auto;
  width: 90%;
}
.game .imglist {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  margin-top: 3rem;
}
@media screen and (max-width: 1024px) {
  .game .imglist {
    display: block;
  }
}
.game .imglist li {
  width: 46%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  .game .imglist li {
    width: 100%;
  }
}
.game .imglist figcaption {
  margin-top: 1rem;
  line-height: 1.4;
}
.game h5 span {
  color: #000;
  margin-top: 1rem;
}
.game h5 span::after {
  display: inline-block;
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url(./img/out_link_black.svg);
  background-repeat: no-repeat;
  background-size: cover;
}