@charset "UTF-8";
/*# sourceMappingURL=test.css.map */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap");
@font-face {
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 400;
  src: url("./font/NotoSerifCJKjp-Regular.woff2") format("woff2"), url("./font/NotoSerifCJKjp-Regular.woff") format("woff");
  font-display: swap; }

/*Font Awesome5---------------------------------------------*/
@media screen and (min-width: 981px) {
  /*PC*/ }

@media screen and (max-width: 560px) {
  /*SP*/ }

@media screen and (max-width: 980px) and (min-width: 561px) {
  /*TB*/ }

@media screen and (max-width: 560px) {
  /*SP*/
  body {
    -webkit-text-size-adjust: 100%;
    font-size: 75%; } }

@-webkit-keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, -5px); }
  100% {
    -webkit-transform: translate(0, 0); } }

@-moz-keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, -5px); }
  100% {
    -webkit-transform: translate(0, 0); } }

@keyframes buruburu {
  0% {
    -webkit-transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, -5px); }
  100% {
    -webkit-transform: translate(0, 0); } }

@-webkit-keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, -20px); }
  100% {
    -webkit-transform: translate(0, 0); } }

@-moz-keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, -20px); }
  100% {
    -webkit-transform: translate(0, 0); } }

@keyframes buruburu2 {
  0% {
    -webkit-transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, -20px); }
  100% {
    -webkit-transform: translate(0, 0); } }

@-webkit-keyframes fadein {
  0% {
    opacity: 0; }
  30% {
    opacity: 70%; }
  70% {
    opacity: 50%; }
  100% {
    opacity: 100%; } }

@-moz-keyframes fadein {
  0% {
    opacity: 0; }
  30% {
    opacity: 70%; }
  70% {
    opacity: 50%; }
  100% {
    opacity: 100%; } }

@keyframes fadein {
  0% {
    opacity: 0; }
  30% {
    opacity: 70%; }
  70% {
    opacity: 50%; }
  100% {
    opacity: 100%; } }

@-webkit-keyframes gradAnimeTime {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@-moz-keyframes gradAnimeTime {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@keyframes gradAnimeTime {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

.fade {
  opacity: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  -ms-transition: all 0.7s;
  transition: all 0.7s; }
  .fade.effect {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }

.slidein {
  opacity: 0;
  -webkit-transform: translateX(-300px);
  -ms-transform: translateX(-300px);
  transform: translateX(-300px);
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  -ms-transition: all 0.7s;
  transition: all 0.7s; }
  .slidein.effect {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

.slideright {
  opacity: 0;
  -webkit-transform: translateX(300px);
  -ms-transform: translateX(300px);
  transform: translateX(300px);
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  -ms-transition: all 0.7s;
  transition: all 0.7s; }
  .slideright.effect {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@-moz-keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

.fade-list > * {
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  -ms-transition: all 0.7s;
  transition: all 0.7s;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  position: relative; }

.fade-list.effect > *:nth-child(1) {
  -webkit-animation: fadeUp 0.5s 0.3s 1 ease normal forwards;
  animation: fadeUp 0.5s 0.3s 1 ease normal forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.fade-list.effect > *:nth-child(2) {
  -webkit-animation: fadeUp 0.5s 0.6s 1 ease normal forwards;
  animation: fadeUp 0.5s 0.6s 1 ease normal forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.fade-list.effect > *:nth-child(3) {
  -webkit-animation: fadeUp 0.5s 0.9s 1 ease normal forwards;
  animation: fadeUp 0.5s 0.9s 1 ease normal forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.fade-list.effect > *:nth-child(4) {
  -webkit-animation: fadeUp 0.5s 1.2s 1 ease normal forwards;
  animation: fadeUp 0.5s 1.2s 1 ease normal forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.fade-list.effect > *:nth-child(5) {
  -webkit-animation: fadeUp 0.5s 1.5s 1 ease normal forwards;
  animation: fadeUp 0.5s 1.5s 1 ease normal forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.fade-list.effect > *:nth-child(6) {
  -webkit-animation: fadeUp 0.5s 1.8s 1 ease normal forwards;
  animation: fadeUp 0.5s 1.8s 1 ease normal forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.fade-list.effect > *:nth-child(7) {
  -webkit-animation: fadeUp 0.5s 2.1s 1 ease normal forwards;
  animation: fadeUp 0.5s 2.1s 1 ease normal forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.fade-list.effect > *:nth-child(8) {
  -webkit-animation: fadeUp 0.5s 2.4s 1 ease normal forwards;
  animation: fadeUp 0.5s 2.4s 1 ease normal forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.fade-list.effect > *:nth-child(9) {
  -webkit-animation: fadeUp 0.5s 2.7s 1 ease normal forwards;
  animation: fadeUp 0.5s 2.7s 1 ease normal forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.fade-list.effect > *:nth-child(10) {
  -webkit-animation: fadeUp 0.5s 3s 1 ease normal forwards;
  animation: fadeUp 0.5s 3s 1 ease normal forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.fade-list.effect > *:nth-child(11) {
  -webkit-animation: fadeUp 0.5s 3.3s 1 ease normal forwards;
  animation: fadeUp 0.5s 3.3s 1 ease normal forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.fade-list.effect > *:nth-child(12) {
  -webkit-animation: fadeUp 0.5s 3.6s 1 ease normal forwards;
  animation: fadeUp 0.5s 3.6s 1 ease normal forwards;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.move-img {
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .move-img:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #fff;
    z-index: 1;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    -o-transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s, -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.4s; }
  .move-img img {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 0;
    left: -100%;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    -ms-transition: all 0.7s;
    transition: all 0.7s; }
  .move-img.effect img {
    opacity: 1;
    left: 0; }
  .move-img.effect:before {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    width: 100%; }

.blur {
  -ms-filter: blur(6px);
  -webkit-filter: blur(6px);
  filter: blur(6px);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95); }
  .blur.effect {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -ms-filter: blur(0);
    -webkit-filter: blur(0);
    filter: blur(0); }

/*# sourceMappingURL=test.css.map */
/*共通------------------------------------------*/
#top_hed {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px); }

/*=============================================================================*/
/*ページ内コンテンツ===============================================================*/
/*=============================================================================*/
.page_head {
  padding-top: 15em;
  padding-top: clamp(10em, 3em + 20vw, 20em);
  padding-bottom: 20em;
  padding-bottom: clamp(10em, 3em + 20vw, 30em);
  background: url("../img/top-img1.jpg") no-repeat center top;
  background-size: cover !important;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  -ms-transition: all 0.7s;
  transition: all 0.7s;
  text-align: right;
  position: relative; }
  .page_head#pro-rice {
    background: url("../img/title-rice.jpg") no-repeat center top; }
  .page_head#pro-burdock {
    background: url("../img/title-burdock.jpg") no-repeat center top; }
  .page_head#pro-potato {
    background: url("../img/title-potato.jpg") no-repeat center top; }
  .page_head#pro-sweetpotato {
    background: url("../img/title-sweetpotato.jpg") no-repeat center top; }
  .page_head#pro-radish {
    background: url("../img/title-radish.jpg") no-repeat center top; }
  .page_head.scroll {
    padding: 10em 0; }
  .page_head h1 {
    padding: 0 2%;
    font-size: 200%;
    margin-bottom: 1em;
    text-shadow: 1px 1px 3px #fff;
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7));
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.7)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7));
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7));
    filter: progid:DXImageTransform.Microsoft.gradient startColorstr="rgba(255, 255, 255, 0)", endColorstr="rgba(255, 255, 255, 0)", GradientType=1; }
    .page_head h1 span {
      display: inline-block;
      padding: 0 0.5em;
      font-size: 50%;
      color: #900000; }

@-webkit-keyframes scdown {
  0% {
    opacity: 0;
    width: 0;
    height: 0; }
  10% {
    opacity: 1;
    width: 5em;
    height: 5em; }
  20% {
    opacity: 0;
    width: 0;
    height: 0; } }

@-moz-keyframes scdown {
  0% {
    opacity: 0;
    width: 0;
    height: 0; }
  10% {
    opacity: 1;
    width: 5em;
    height: 5em; }
  20% {
    opacity: 0;
    width: 0;
    height: 0; } }

@keyframes scdown {
  0% {
    opacity: 0;
    width: 0;
    height: 0; }
  10% {
    opacity: 1;
    width: 5em;
    height: 5em; }
  20% {
    opacity: 0;
    width: 0;
    height: 0; } }

#scroll_down {
  text-align: center;
  color: #fff;
  font-size: 120%;
  display: inline-block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 2em;
  margin-bottom: 0; }
  #scroll_down a {
    display: inline-block;
    position: relative;
    padding: 1em;
    z-index: 2; }
    #scroll_down a:after {
      display: block;
      content: "";
      background: rgba(255, 255, 255, 0.4);
      background: -moz-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 33.33333%, rgba(255, 255, 255, 0.3) 33.33333%, rgba(255, 255, 255, 0.3) 66.66667%, rgba(255, 255, 255, 0.1) 66.66667%);
      background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 33.33333%, rgba(255, 255, 255, 0.3) 33.33333%, rgba(255, 255, 255, 0.3) 66.66667%, rgba(255, 255, 255, 0.1) 66.66667%);
      background: -webkit-radial-gradient(center, ellipse, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 33.33333%, rgba(255, 255, 255, 0.3) 33.33333%, rgba(255, 255, 255, 0.3) 66.66667%, rgba(255, 255, 255, 0.1) 66.66667%);
      background: -o-radial-gradient(center, ellipse, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 33.33333%, rgba(255, 255, 255, 0.3) 33.33333%, rgba(255, 255, 255, 0.3) 66.66667%, rgba(255, 255, 255, 0.1) 66.66667%);
      background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 33.33333%, rgba(255, 255, 255, 0.3) 33.33333%, rgba(255, 255, 255, 0.3) 66.66667%, rgba(255, 255, 255, 0.1) 66.66667%);
      filter: progid:DXImageTransform.Microsoft.gradient startColorstr="rgba(255, 255, 255, 0.4)", endColorstr="rgba(255, 255, 255, 0.3)", GradientType=1;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -o-border-radius: 100%;
      -ms-border-radius: 100%;
      border-radius: 100%;
      position: absolute;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 1;
      -webkit-animation: scdown 3s ease 1s infinite normal forwards;
      animation: scdown 3s ease 1s infinite normal forwards;
      -webkit-animation-play-state: running;
      animation-play-state: running; }
    #scroll_down a:hover {
      text-decoration: none; }
  @media screen and (max-width: 560px) {
    #scroll_down {
      bottom: 0; } }
  #scroll_down i, #scroll_down span {
    display: block;
    padding: 5px 0; }

.page_info {
  display: inline-block;
  font-size: 112.5%;
  max-width: 80%;
  padding: 1em;
  background: rgba(255, 255, 255, 0.8);
  color: #555; }

.breadcrumbs {
  padding: 1em 0; }

.p_cont {
  min-height: 1000px; }
  .p_cont #contents_body {
    padding-top: 3em; }
    .p_cont #contents_body img {
      max-width: 100%;
      height: auto; }
  .p_cont p:not([class]) {
    padding: 0 1em;
    margin-bottom: 2em; }
    .p_cont p:not([class]) + p:not([class]) {
      margin-top: -1em; }
  .p_cont article {
    padding: 5em 5%;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1; }
    @media screen and (max-width: 560px) {
      .p_cont article {
        width: 95%; } }
    .p_cont article img {
      max-width: 100%;
      height: auto; }
    .p_cont article.type-right {
      padding-top: 3em;
      margin: 0 0 0 auto;
      background: url("../img/bg_note.jpg") repeat left top;
      -webkit-border-radius: 30px 0 0 30px;
      -moz-border-radius: 30px 0 0 30px;
      -o-border-radius: 30px 0 0 30px;
      -ms-border-radius: 30px 0 0 30px;
      border-radius: 30px 0 0 30px; }
      .p_cont article.type-right h2 {
        text-align: right; }
    .p_cont article.type-left {
      padding-top: 3em;
      margin: 0 auto 0 0;
      background: url("../img/bg_note.jpg") repeat left top;
      -webkit-border-radius: 0 30px 30px 0;
      -moz-border-radius: 0 30px 30px 0;
      -o-border-radius: 0 30px 30px 0;
      -ms-border-radius: 0 30px 30px 0;
      border-radius: 0 30px 30px 0; }
      .p_cont article.type-left h2 {
        text-align: left; }
    .p_cont article:last-child {
      margin-bottom: 5em; }
  .p_cont h2 {
    text-align: center;
    font-size: 200%;
    letter-spacing: 8px;
    padding: 0 1em 1em;
    position: relative;
    margin-bottom: 1em; }
    .p_cont h2 span.sub {
      display: block;
      font-weight: normal;
      font-size: 50%;
      letter-spacing: 5px;
      margin-top: 1em;
      color: #999; }
  .p_cont h3 {
    width: 85%;
    max-width: 980px;
    font-size: 130%;
    font-weight: normal;
    color: #795d36;
    letter-spacing: 3px;
    text-align: center;
    margin: 3em auto 2em;
    padding: 1em 5%;
    background: #C1A580;
    background: -moz-radial-gradient(center, ellipse cover, #C1A580 0%, #C1A580 25%, transparent 25%, transparent 50%, transparent 50%, transparent 75%, transparent 75%);
    background: -webkit-radial-gradient(center, ellipse cover, #C1A580 0%, #C1A580 25%, transparent 25%, transparent 50%, transparent 50%, transparent 75%, transparent 75%);
    background: -webkit-radial-gradient(center, ellipse, #C1A580 0%, #C1A580 25%, transparent 25%, transparent 50%, transparent 50%, transparent 75%, transparent 75%);
    background: -o-radial-gradient(center, ellipse, #C1A580 0%, #C1A580 25%, transparent 25%, transparent 50%, transparent 50%, transparent 75%, transparent 75%);
    background: radial-gradient(ellipse at center, #C1A580 0%, #C1A580 25%, transparent 25%, transparent 50%, transparent 50%, transparent 75%, transparent 75%);
    filter: progid:DXImageTransform.Microsoft.gradient startColorstr="#C1A580", endColorstr="transparent", GradientType=1;
    background-size: 3px 3px;
    position: relative; }
    .p_cont h3:first-child {
      margin-top: 10px; }
    .p_cont h3 span {
      display: block;
      color: #b7925e;
      font-size: 70%;
      letter-spacing: 1px;
      padding-top: 5px;
      line-height: 1.3; }
      .p_cont h3 span:before, .p_cont h3 span:after {
        display: inline-block;
        content: "=";
        margin: 0 10px; }
    .p_cont h3:before, .p_cont h3:after {
      display: block;
      content: "";
      width: 2em;
      height: 2em;
      position: absolute;
      border: 3px double #C1A580; }
    .p_cont h3:before {
      top: -8px;
      left: -8px;
      border-right: none;
      border-bottom: none; }
    .p_cont h3:after {
      bottom: -8px;
      right: -8px;
      border-left: none;
      border-top: none; }
  .p_cont h4 {
    display: inline-block;
    font-size: 110%;
    line-height: 2;
    letter-spacing: 2px;
    padding: 0.7em 1em;
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 2em; }
    .p_cont h4:before {
      display: block;
      content: "";
      width: 2em;
      height: 100%;
      background: #116c2d;
      background: -moz-radial-gradient(center, ellipse cover, #116c2d 0%, #116c2d 25%, transparent 25%, transparent 50%, transparent 50%, transparent 75%, transparent 75%);
      background: -webkit-radial-gradient(center, ellipse cover, #116c2d 0%, #116c2d 25%, transparent 25%, transparent 50%, transparent 50%, transparent 75%, transparent 75%);
      background: -webkit-radial-gradient(center, ellipse, #116c2d 0%, #116c2d 25%, transparent 25%, transparent 50%, transparent 50%, transparent 75%, transparent 75%);
      background: -o-radial-gradient(center, ellipse, #116c2d 0%, #116c2d 25%, transparent 25%, transparent 50%, transparent 50%, transparent 75%, transparent 75%);
      background: radial-gradient(ellipse at center, #116c2d 0%, #116c2d 25%, transparent 25%, transparent 50%, transparent 50%, transparent 75%, transparent 75%);
      filter: progid:DXImageTransform.Microsoft.gradient startColorstr="#116c2d", endColorstr="transparent", GradientType=1;
      background-size: 3px 3px;
      position: absolute;
      top: 0;
      left: 0; }
    .p_cont h4:after {
      display: block;
      content: "";
      width: 100%;
      height: 1px; }
  .p_cont .lead {
    font-size: 110%; }
  .p_cont .note {
    font-size: 110%;
    line-height: 2;
    padding: 2em 3%;
    margin-bottom: 2em;
    background: #fff;
    border: 1px dashed #C1A580;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px; }
    .p_cont .note > :last-child {
      margin-bottom: 0; }
  .p_cont .highlight {
    display: inline-block;
    padding-bottom: 3px;
    position: relative; }
    .p_cont .highlight:after {
      display: block;
      content: "";
      width: 100%;
      height: 1em;
      border-bottom: 2px dotted #116c2d;
      position: absolute;
      bottom: 0;
      left: 0; }
  .p_cont ul:not([class]) {
    padding-left: 1em;
    margin-bottom: 2em; }
    .p_cont ul:not([class]) > li {
      padding-left: 1.3em;
      position: relative;
      margin-bottom: 1em; }
      .p_cont ul:not([class]) > li:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        content: "\f0c8";
        color: #116c2d;
        font-size: 80%;
        margin-right: 10px;
        position: absolute;
        top: 0.25em;
        left: 0; }
  .p_cont .link-post {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    text-align: center; }
    .p_cont .link-post li {
      width: 31.3%;
      margin: 0 1% 2em;
      padding: 1em;
      position: relative;
      padding-bottom: 5em; }
      @media screen and (max-width: 980px) and (min-width: 561px), screen and (max-width: 560px) {
        .p_cont .link-post li {
          width: 48%; } }
    .p_cont .link-post dl {
      display: block; }
      .p_cont .link-post dl dt a {
        display: inline-block;
        padding: 1em;
        border: 1px solid #dedede;
        position: relative;
        overflow: hidden; }
        .p_cont .link-post dl dt a img {
          display: block; }
      .p_cont .link-post dl dd.link-title {
        font-size: 90%;
        font-weight: bold;
        letter-spacing: 2px; }
      .p_cont .link-post dl dd {
        padding: 1em 3%; }
      .p_cont .link-post dl dd.detail {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 0; }
  .p_cont .detail a {
    display: inline-block;
    padding: 0.5em 3em;
    min-width: 50%;
    border: 1px solid #d90000;
    font-size: 90%;
    color: #d90000;
    letter-spacing: 1px;
    position: relative; }
    .p_cont .detail a:after {
      display: block;
      content: "";
      width: 80%;
      height: 1px;
      border-bottom: 1px dashed #d90000;
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      bottom: -8px;
      -webkit-transition: all 0.7s;
      -moz-transition: all 0.7s;
      -o-transition: all 0.7s;
      -ms-transition: all 0.7s;
      transition: all 0.7s; }
    .p_cont .detail a:hover {
      background: #d90000;
      color: #fff;
      text-decoration: none;
      letter-spacing: 3px;
      min-width: 55%; }
      .p_cont .detail a:hover:after {
        width: 100%;
        border-bottom: 1px solid #d90000; }
  .p_cont table:not(.timeline) {
    width: 100%;
    margin: 0 auto 3em;
    border-top: 1px solid #C1A580;
    border-left: 1px solid #C1A580;
    background: #fff; }
    .p_cont table:not(.timeline) th, .p_cont table:not(.timeline) td {
      vertical-align: middle;
      padding: 1em 2%;
      border-bottom: 1px solid #C1A580;
      border-right: 1px solid #C1A580; }
    .p_cont table:not(.timeline) th {
      font-weight: normal;
      font-size: 95%;
      letter-spacing: 2px;
      color: #98774C;
      background: #C1A580;
      background: -moz-radial-gradient(center, ellipse cover, #C1A580 0%, #C1A580 25%, #fbf8f3 25%, #fbf8f3 50%, #fbf8f3 50%, #fbf8f3 75%, #fbf8f3 75%);
      background: -webkit-radial-gradient(center, ellipse cover, #C1A580 0%, #C1A580 25%, #fbf8f3 25%, #fbf8f3 50%, #fbf8f3 50%, #fbf8f3 75%, #fbf8f3 75%);
      background: -webkit-radial-gradient(center, ellipse, #C1A580 0%, #C1A580 25%, #fbf8f3 25%, #fbf8f3 50%, #fbf8f3 50%, #fbf8f3 75%, #fbf8f3 75%);
      background: -o-radial-gradient(center, ellipse, #C1A580 0%, #C1A580 25%, #fbf8f3 25%, #fbf8f3 50%, #fbf8f3 50%, #fbf8f3 75%, #fbf8f3 75%);
      background: radial-gradient(ellipse at center, #C1A580 0%, #C1A580 25%, #fbf8f3 25%, #fbf8f3 50%, #fbf8f3 50%, #fbf8f3 75%, #fbf8f3 75%);
      filter: progid:DXImageTransform.Microsoft.gradient startColorstr="#C1A580", endColorstr="#fbf8f3", GradientType=1;
      background-size: 3px 3px;
      position: relative; }

.flow-list {
  padding-top: 3em; }
  .flow-list dl {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    margin-bottom: 3em; }
    .flow-list dl dt {
      width: 50%;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      -o-border-radius: 30px;
      -ms-border-radius: 30px;
      border-radius: 30px;
      position: relative;
      overflow: hidden; }
    .flow-list dl dd {
      width: 50%;
      padding: 0 3%;
      line-height: 2; }
      .flow-list dl dd ul:not([class]) > li {
        line-height: 1.5;
        margin-bottom: 0.5em; }
    .flow-list dl:nth-child(even) dt {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2; }
    .flow-list dl:nth-child(even) dd {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1; }
    @media screen and (max-width: 980px) and (min-width: 561px), screen and (max-width: 560px) {
      .flow-list dl {
        /*SP*/ }
        .flow-list dl dt, .flow-list dl dd {
          width: 100%; }
        .flow-list dl dt {
          -webkit-box-ordinal-group: 1 !important;
          -ms-flex-order: 0 !important;
          order: 0 !important;
          margin-bottom: 1em; } }

@-webkit-keyframes scheview {
  from {
    opacity: 0;
    background-size: 0% 100%; }
  to {
    opacity: 1;
    background-size: 100% 100%; } }

@-moz-keyframes scheview {
  from {
    opacity: 0;
    background-size: 0% 100%; }
  to {
    opacity: 1;
    background-size: 100% 100%; } }

@keyframes scheview {
  from {
    opacity: 0;
    background-size: 0% 100%; }
  to {
    opacity: 1;
    background-size: 100% 100%; } }

.timeline {
  width: 100%;
  max-width: 1280px;
  table-layout: fixed; }
  .timeline th, .timeline td {
    vertical-align: middle;
    text-align: center; }
    @media screen and (max-width: 560px) {
      .timeline th, .timeline td {
        padding: 3em 5px; } }
  .timeline th {
    font-size: 80%;
    padding: 1em 10px;
    border-left: 1px solid #c1c1c1;
    border-bottom: 3px double #c1c1c1; }
  .timeline td {
    padding: 2em 5px;
    font-size: 1vw;
    border-right: 1px dotted #c1c1c1;
    z-index: 1; }
    .timeline td:first-child {
      border-left: 1px dashed #c1c1c1; }
  .timeline tr.sche-hasyu td.onsche-full {
    background: #FFC5C5;
    background-repeat: no-repeat; }
  .timeline tr.sche-hasyu td.onsche-quate {
    background: #FFC5C5;
    background: -moz-linear-gradient(left, #FFC5C5 0%, #FFC5C5 25%, #FFC5C5 25%, #FFC5C5 50%, #FFC5C5 50%, #FFC5C5 75%, #fff 75%);
    background: -webkit-linear-gradient(left, #FFC5C5 0%, #FFC5C5 25%, #FFC5C5 25%, #FFC5C5 50%, #FFC5C5 50%, #FFC5C5 75%, #fff 75%);
    background: -webkit-gradient(linear, left top, right top, from(#FFC5C5), color-stop(25%, #FFC5C5), color-stop(25%, #FFC5C5), color-stop(50%, #FFC5C5), color-stop(50%, #FFC5C5), color-stop(75%, #FFC5C5), color-stop(75%, #fff));
    background: -o-linear-gradient(left, #FFC5C5 0%, #FFC5C5 25%, #FFC5C5 25%, #FFC5C5 50%, #FFC5C5 50%, #FFC5C5 75%, #fff 75%);
    background: linear-gradient(to right, #FFC5C5 0%, #FFC5C5 25%, #FFC5C5 25%, #FFC5C5 50%, #FFC5C5 50%, #FFC5C5 75%, #fff 75%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$statCol', endColorstr='$endCol',GradientType=1 );
    background-repeat: no-repeat; }
  .timeline tr.sche-hasyu td.onsche-half {
    background: #FFC5C5;
    background: -moz-linear-gradient(left, #FFC5C5 0%, #FFC5C5 50%, #fff 50%);
    background: -webkit-linear-gradient(left, #FFC5C5 0%, #FFC5C5 50%, #fff 50%);
    background: -webkit-gradient(linear, left top, right top, from(#FFC5C5), color-stop(50%, #FFC5C5), color-stop(50%, #fff));
    background: -o-linear-gradient(left, #FFC5C5 0%, #FFC5C5 50%, #fff 50%);
    background: linear-gradient(to right, #FFC5C5 0%, #FFC5C5 50%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$statCol', endColorstr='$endCol',GradientType=1 );
    background-repeat: no-repeat; }
  .timeline tr.sche-hasyu td.onsche-half-middle {
    background: #fff;
    background: -moz-linear-gradient(left, #fff 0%, #fff 25%, #FFC5C5 25%, #FFC5C5 50%, #FFC5C5 50%, #FFC5C5 75%, #fff 75%);
    background: -webkit-linear-gradient(left, #fff 0%, #fff 25%, #FFC5C5 25%, #FFC5C5 50%, #FFC5C5 50%, #FFC5C5 75%, #fff 75%);
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(25%, #fff), color-stop(25%, #FFC5C5), color-stop(50%, #FFC5C5), color-stop(50%, #FFC5C5), color-stop(75%, #FFC5C5), color-stop(75%, #fff));
    background: -o-linear-gradient(left, #fff 0%, #fff 25%, #FFC5C5 25%, #FFC5C5 50%, #FFC5C5 50%, #FFC5C5 75%, #fff 75%);
    background: linear-gradient(to right, #fff 0%, #fff 25%, #FFC5C5 25%, #FFC5C5 50%, #FFC5C5 50%, #FFC5C5 75%, #fff 75%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$statCol', endColorstr='$endCol',GradientType=1 );
    background-repeat: no-repeat; }
  .timeline tr.sche-josou td.onsche-full {
    background: #B9D2FF;
    background-repeat: no-repeat; }
  .timeline tr.sche-josou td.onsche-quate {
    background: #B9D2FF;
    background: -moz-linear-gradient(left, #B9D2FF 0%, #B9D2FF 25%, #B9D2FF 25%, #B9D2FF 50%, #B9D2FF 50%, #B9D2FF 75%, #fff 75%);
    background: -webkit-linear-gradient(left, #B9D2FF 0%, #B9D2FF 25%, #B9D2FF 25%, #B9D2FF 50%, #B9D2FF 50%, #B9D2FF 75%, #fff 75%);
    background: -webkit-gradient(linear, left top, right top, from(#B9D2FF), color-stop(25%, #B9D2FF), color-stop(25%, #B9D2FF), color-stop(50%, #B9D2FF), color-stop(50%, #B9D2FF), color-stop(75%, #B9D2FF), color-stop(75%, #fff));
    background: -o-linear-gradient(left, #B9D2FF 0%, #B9D2FF 25%, #B9D2FF 25%, #B9D2FF 50%, #B9D2FF 50%, #B9D2FF 75%, #fff 75%);
    background: linear-gradient(to right, #B9D2FF 0%, #B9D2FF 25%, #B9D2FF 25%, #B9D2FF 50%, #B9D2FF 50%, #B9D2FF 75%, #fff 75%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$statCol', endColorstr='$endCol',GradientType=1 );
    background-repeat: no-repeat; }
  .timeline tr.sche-josou td.onsche-half {
    background: #B9D2FF;
    background: -moz-linear-gradient(left, #B9D2FF 0%, #B9D2FF 50%, #fff 50%);
    background: -webkit-linear-gradient(left, #B9D2FF 0%, #B9D2FF 50%, #fff 50%);
    background: -webkit-gradient(linear, left top, right top, from(#B9D2FF), color-stop(50%, #B9D2FF), color-stop(50%, #fff));
    background: -o-linear-gradient(left, #B9D2FF 0%, #B9D2FF 50%, #fff 50%);
    background: linear-gradient(to right, #B9D2FF 0%, #B9D2FF 50%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$statCol', endColorstr='$endCol',GradientType=1 );
    background-repeat: no-repeat; }
  .timeline tr.sche-josou td.onsche-half-middle {
    background: #fff;
    background: -moz-linear-gradient(left, #fff 0%, #fff 25%, #B9D2FF 25%, #B9D2FF 50%, #B9D2FF 50%, #B9D2FF 75%, #fff 75%);
    background: -webkit-linear-gradient(left, #fff 0%, #fff 25%, #B9D2FF 25%, #B9D2FF 50%, #B9D2FF 50%, #B9D2FF 75%, #fff 75%);
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(25%, #fff), color-stop(25%, #B9D2FF), color-stop(50%, #B9D2FF), color-stop(50%, #B9D2FF), color-stop(75%, #B9D2FF), color-stop(75%, #fff));
    background: -o-linear-gradient(left, #fff 0%, #fff 25%, #B9D2FF 25%, #B9D2FF 50%, #B9D2FF 50%, #B9D2FF 75%, #fff 75%);
    background: linear-gradient(to right, #fff 0%, #fff 25%, #B9D2FF 25%, #B9D2FF 50%, #B9D2FF 50%, #B9D2FF 75%, #fff 75%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$statCol', endColorstr='$endCol',GradientType=1 );
    background-repeat: no-repeat; }
  .timeline tr.sche-sakuduke td.onsche-full {
    background: #D5F6A7;
    background-repeat: no-repeat; }
  .timeline tr.sche-sakuduke td.onsche-quate {
    background: #D5F6A7;
    background: -moz-linear-gradient(left, #D5F6A7 0%, #D5F6A7 25%, #D5F6A7 25%, #D5F6A7 50%, #D5F6A7 50%, #D5F6A7 75%, #fff 75%);
    background: -webkit-linear-gradient(left, #D5F6A7 0%, #D5F6A7 25%, #D5F6A7 25%, #D5F6A7 50%, #D5F6A7 50%, #D5F6A7 75%, #fff 75%);
    background: -webkit-gradient(linear, left top, right top, from(#D5F6A7), color-stop(25%, #D5F6A7), color-stop(25%, #D5F6A7), color-stop(50%, #D5F6A7), color-stop(50%, #D5F6A7), color-stop(75%, #D5F6A7), color-stop(75%, #fff));
    background: -o-linear-gradient(left, #D5F6A7 0%, #D5F6A7 25%, #D5F6A7 25%, #D5F6A7 50%, #D5F6A7 50%, #D5F6A7 75%, #fff 75%);
    background: linear-gradient(to right, #D5F6A7 0%, #D5F6A7 25%, #D5F6A7 25%, #D5F6A7 50%, #D5F6A7 50%, #D5F6A7 75%, #fff 75%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$statCol', endColorstr='$endCol',GradientType=1 );
    background-repeat: no-repeat; }
  .timeline tr.sche-sakuduke td.onsche-half {
    background: #D5F6A7;
    background: -moz-linear-gradient(left, #D5F6A7 0%, #D5F6A7 50%, #fff 50%);
    background: -webkit-linear-gradient(left, #D5F6A7 0%, #D5F6A7 50%, #fff 50%);
    background: -webkit-gradient(linear, left top, right top, from(#D5F6A7), color-stop(50%, #D5F6A7), color-stop(50%, #fff));
    background: -o-linear-gradient(left, #D5F6A7 0%, #D5F6A7 50%, #fff 50%);
    background: linear-gradient(to right, #D5F6A7 0%, #D5F6A7 50%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$statCol', endColorstr='$endCol',GradientType=1 );
    background-repeat: no-repeat; }
  .timeline tr.sche-sakuduke td.onsche-half-middle {
    background: #fff;
    background: -moz-linear-gradient(left, #fff 0%, #fff 25%, #D5F6A7 25%, #D5F6A7 50%, #D5F6A7 50%, #D5F6A7 75%, #fff 75%);
    background: -webkit-linear-gradient(left, #fff 0%, #fff 25%, #D5F6A7 25%, #D5F6A7 50%, #D5F6A7 50%, #D5F6A7 75%, #fff 75%);
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(25%, #fff), color-stop(25%, #D5F6A7), color-stop(50%, #D5F6A7), color-stop(50%, #D5F6A7), color-stop(75%, #D5F6A7), color-stop(75%, #fff));
    background: -o-linear-gradient(left, #fff 0%, #fff 25%, #D5F6A7 25%, #D5F6A7 50%, #D5F6A7 50%, #D5F6A7 75%, #fff 75%);
    background: linear-gradient(to right, #fff 0%, #fff 25%, #D5F6A7 25%, #D5F6A7 50%, #D5F6A7 50%, #D5F6A7 75%, #fff 75%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$statCol', endColorstr='$endCol',GradientType=1 );
    background-repeat: no-repeat; }
  .timeline tr.sche-syukaku td.onsche-full {
    background: #FFE8A2;
    background-repeat: no-repeat; }
  .timeline tr.sche-syukaku td.onsche-quate {
    background: #FFE8A2;
    background: -moz-linear-gradient(left, #FFE8A2 0%, #FFE8A2 25%, #FFE8A2 25%, #FFE8A2 50%, #FFE8A2 50%, #FFE8A2 75%, #fff 75%);
    background: -webkit-linear-gradient(left, #FFE8A2 0%, #FFE8A2 25%, #FFE8A2 25%, #FFE8A2 50%, #FFE8A2 50%, #FFE8A2 75%, #fff 75%);
    background: -webkit-gradient(linear, left top, right top, from(#FFE8A2), color-stop(25%, #FFE8A2), color-stop(25%, #FFE8A2), color-stop(50%, #FFE8A2), color-stop(50%, #FFE8A2), color-stop(75%, #FFE8A2), color-stop(75%, #fff));
    background: -o-linear-gradient(left, #FFE8A2 0%, #FFE8A2 25%, #FFE8A2 25%, #FFE8A2 50%, #FFE8A2 50%, #FFE8A2 75%, #fff 75%);
    background: linear-gradient(to right, #FFE8A2 0%, #FFE8A2 25%, #FFE8A2 25%, #FFE8A2 50%, #FFE8A2 50%, #FFE8A2 75%, #fff 75%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$statCol', endColorstr='$endCol',GradientType=1 );
    background-repeat: no-repeat; }
  .timeline tr.sche-syukaku td.onsche-half {
    background: #FFE8A2;
    background: -moz-linear-gradient(left, #FFE8A2 0%, #FFE8A2 50%, #fff 50%);
    background: -webkit-linear-gradient(left, #FFE8A2 0%, #FFE8A2 50%, #fff 50%);
    background: -webkit-gradient(linear, left top, right top, from(#FFE8A2), color-stop(50%, #FFE8A2), color-stop(50%, #fff));
    background: -o-linear-gradient(left, #FFE8A2 0%, #FFE8A2 50%, #fff 50%);
    background: linear-gradient(to right, #FFE8A2 0%, #FFE8A2 50%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$statCol', endColorstr='$endCol',GradientType=1 );
    background-repeat: no-repeat; }
  .timeline tr.sche-syukaku td.onsche-half-middle {
    background: #fff;
    background: -moz-linear-gradient(left, #fff 0%, #fff 25%, #FFE8A2 25%, #FFE8A2 50%, #FFE8A2 50%, #FFE8A2 75%, #fff 75%);
    background: -webkit-linear-gradient(left, #fff 0%, #fff 25%, #FFE8A2 25%, #FFE8A2 50%, #FFE8A2 50%, #FFE8A2 75%, #fff 75%);
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(25%, #fff), color-stop(25%, #FFE8A2), color-stop(50%, #FFE8A2), color-stop(50%, #FFE8A2), color-stop(75%, #FFE8A2), color-stop(75%, #fff));
    background: -o-linear-gradient(left, #fff 0%, #fff 25%, #FFE8A2 25%, #FFE8A2 50%, #FFE8A2 50%, #FFE8A2 75%, #fff 75%);
    background: linear-gradient(to right, #fff 0%, #fff 25%, #FFE8A2 25%, #FFE8A2 50%, #FFE8A2 50%, #FFE8A2 75%, #fff 75%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$statCol', endColorstr='$endCol',GradientType=1 );
    background-repeat: no-repeat; }
  .timeline td.onsche {
    -webkit-animation: scheview 1s ease 0s 1 normal forwards;
    animation: scheview 1s ease 0s 1 normal forwards;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    position: relative;
    z-index: 1;
    overflow: visible; }
    .timeline td.onsche span {
      font-size: 11.5px;
      font-size: clamp(8px, 5px + 1vw, 15px);
      display: inline-block;
      width: 100%;
      text-align: center;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      white-space: nowrap;
      z-index: 100; }

/*# sourceMappingURL=page.css.map */
