@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700&family=M+PLUS+Rounded+1c:wght@500&display=swap");
@media screen and (max-width: 599px) {
  .pc {
    /* 599px以下のとき */
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .sp {
    /* 600px以上のとき */
    display: none;
  }
}

@media screen and (max-width: 599px) {
  img {
    /* 599px以下のとき */
    max-width: 100%;
    height: auto;
    width: auto;
  }
}

/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl {
  /* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
  /* 上マージンを削除すると、マージンを含む div からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 */
}

a img {
  /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
  border: none;
}

/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
  color: #42413C;
  text-decoration: underline;
  /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

a:visited {
  color: #6E6C64;
  text-decoration: underline;
}

a:hover, a:active, a:focus {
  /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
}

p {
  margin: 10px 0 0 0;
}

.red {
  color: red;
}

.orange {
  color: #F60;
}

.blue {
  color: #36C;
}

.blue2 {
  color: dodgerblue;
}

.violet {
  color: purple;
}

.green {
  color: green;
}

.brown {
  color: brown;
}

.grey {
  color: gray;
}

.sitecolor {
  color: #4d8301;
}

.small85 {
  font-size: 85%;
}

.large11 {
  font-size: 1.1em;
}

.large12 {
  font-size: 1.2em;
}

.large14 {
  font-size: 1.4em;
}

.large18 {
  font-size: 1.8em;
}

.large25 {
  font-size: 2.5em;
}

.strong {
  font-weight: bold;
}

.tolist, .tolist02 {
  text-align: right;
  margin-top: 10px;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .tolist, .tolist02 {
    /* 599px以下のとき */
    width: 340px;
  }
}

@media screen and (min-width: 600px) {
  .tolist, .tolist02 {
    /* 600px以上のとき */
    width: 1000px;
  }
}

.tolist02 {
  width: 100%;
}

.pdfarea {
  width: 90%;
  padding: 15px 10px;
  font-size: 0.9em;
  text-align: left;
  border: 1px #ccc solid;
  margin: 0 auto;
  margin-top: 20px;
}

.link:after {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  color: #000;
  margin: -5px 0 0 5px;
  font-size: 1.2em;
}

.pdf:after {
  font-family: "Font Awesome 5 Free";
  content: "\f15c";
  font-weight: 400;
  color: #F00;
  margin: -5px 0 0 5px;
  font-size: 1.2em;
}

/* ~~ その他の float/clear クラス ~~ */
.fltrt {
  /* このクラスを使用すると、ページ内でエレメントを右にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
  float: right;
  margin-left: 8px;
}

.fltlft {
  /* このクラスを使用すると、ページ内でエレメントを左にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
  float: left;
  margin-right: 8px;
}

.clearfloat {
  /* このクラスは、#footer が #container から削除されているか取り出されている場合に、<br /> または空の div で、フローティングさせる最後の div に続く最後のエレメントとして (#container 内に) 配置できます。 */
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}

.kana {
  ime-mode: active;
}

.rome {
  ime-mode: disabled;
}

.lh20 {
  line-height: 2em;
}

.lh25 {
  line-height: 2.5em;
}

.imgarea {
  width: 100%;
  text-align: center;
  font-size: 1.0em;
}

.imgarea02, .imgarea02-r, .imgarea02-l {
  width: 49%;
  text-align: center;
  font-size: 1.0em;
  float: left;
}

.imgarea02 img, .imgarea02-r img, .imgarea02-l img {
  padding: 20px;
}

.imgarea02 div, .imgarea02-r div, .imgarea02-l div {
  width: 405px;
  text-align: center;
}

.imgarea02-r {
  margin-right: 10px;
}

@media screen and (max-width: 599px) {
  .imgarea02-r {
    /* 599px以下のとき */
    text-align: center;
    float: none;
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 600px) {
  .imgarea02-r {
    /* 600px以上のとき */
    text-align: right;
  }
}

@media screen and (max-width: 599px) {
  .imgarea02-l {
    /* 599px以下のとき */
    text-align: center;
    float: none;
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 600px) {
  .imgarea02-l {
    /* 600px以上のとき */
    text-align: left;
  }
}

.imgarea03 {
  width: 33%;
  text-align: center;
  font-size: 0.9em;
  float: left;
  margin-top: 20px;
}

.imgarea img, .imgarea02 img, .imgarea02-r img, .imgarea02-l img, .imgarea03 img {
  padding: 0;
}

.imgarea04 {
  text-align: center;
  display: inline-block;
}

@media screen and (min-width: 600px) {
  .imgarea04 {
    /* sp */
    width: 420px;
  }
}

@media screen and (max-width: 599px) {
  .imgarea04 {
    /* mobile */
    width: 320px;
  }
}

/* square */
.square:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c8";
  font-weight: 900;
  margin: -5px 8px 0 5px;
  color: #4d8301;
}

.shadow01 {
  -webkit-box-shadow: 0 10px 8px -6px #8d8c8c;
  box-shadow: 0 10px 8px -6px #8d8c8c;
}

.shadow02 {
  display: inline-block;
  position: relative;
  padding: 6px;
  -webkit-box-shadow: 0 2px 6px #999;
          box-shadow: 0 2px 6px #999;
  background-color: #fff;
  margin-bottom: 20px;
}

.shadow02 img {
  padding: 0;
}

.zoom, .zoom08 {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.zoom:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.zoom08:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.gray {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.gray:hover {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.opacity {
  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.opacity:hover {
  opacity: .5;
}

.e-flash:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}

@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 599px) {
  html {
    /* 599px以下のとき */
    position: relative;
    overflow-x: hidden;
  }
}

body {
  font-family: 'M PLUS 1p', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS P Gothic", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #000;
  width: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  min-width: 1200px;
}

@media screen and (min-width: 600px) {
  body {
    /* pc */
    background-color: #4d8301;
  }
}

@media screen and (max-width: 599px) {
  body {
    /* mobile */
    background-color: #fff;
    min-width: initial;
    position: relative;
    left: 0;
    overflow-x: hidden;
  }
}

.thin {
  font-weight: 100;
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

/* ドロワーメニュー */
.ul_open_h {
  background: #4d8301;
  color: #fff;
  margin: 0;
  padding: 0;
  list-style: none;
  top: 0;
  height: 100%;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  overflow-y: scroll;
  position: fixed;
  z-index: 330;
  padding-top: 50px;
}

.ul_open_h li {
  padding: 7px;
  width: 220px;
  border-bottom: 1px #fff solid;
  font-size: 0.85em;
}

.ul_open_h li.bottom {
  margin-bottom: 100px;
}

.ul_open_h li a:link {
  color: #fff;
  text-decoration: underline;
  /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

.ul_open_h li a:visited {
  color: #fff;
  text-decoration: underline;
}

.open-sub {
  margin: 0 0 0 20px;
  list-style-position: inside;
  list-style-type: disc;
}

.open-sub li {
  font-size: 1.0em;
  border-bottom: none;
  padding-top: 5px;
  line-height: 1.7em;
}

.dmenu {
  padding: 0 0 0 10px;
}

.open-1 {
  right: -100%;
}

.open-1.active {
  right: 0px;
}

.move-1.on.btn {
  position: fixed;
  right: 25px;
  top: 10px;
}

.btn {
  position: absolute;
  /*    background: #fff; */
  z-index: 350;
}

@media screen and (min-width: 600px) {
  .btn {
    /* PC */
    top: 70px;
    right: 28px;
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 599px) {
  .btn {
    /* mobile */
    top: 80px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

.btn:before, .btn:after, .btn span {
  display: block;
  width: 80%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.btn span {
  background-color: #4d8301;
  top: calc(50% - 1.5px);
}

@media screen and (min-width: 600px) {
  .btn span {
    /* 600px以上のとき */
    height: 5px;
  }
}

@media screen and (max-width: 599px) {
  .btn span {
    /* 600px以上のとき */
    height: 3px;
  }
}

.btn:before {
  content: "";
  border-top: 5px solid #4d8301;
}

@media screen and (min-width: 600px) {
  .btn:before {
    /* 600px以上のとき */
    top: calc(25% - 5px);
  }
}

@media screen and (max-width: 599px) {
  .btn:before {
    /* 600px以上のとき */
    top: calc(25% - 3px);
  }
}

.btn:after {
  content: "";
  border-top: 5px solid #4d8301;
}

@media screen and (min-width: 600px) {
  .btn:after {
    /* 600px以上のとき */
    bottom: calc(25% - 5px);
  }
}

@media screen and (max-width: 599px) {
  .btn:after {
    /* 600px以上のとき */
    bottom: calc(25% - 3px);
  }
}

.btn.on span {
  display: none;
}

.btn.on:before {
  top: calc(50% - 1.8px);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  border-top: 5px solid #fff;
}

.btn.on:after {
  bottom: calc(50% - 1.5px);
  -webkit-transform: rotate(-315deg);
  transform: rotate(-315deg);
  border-top: 5px solid #fff;
}

/* header */
#headwrap {
  width: 100%;
  position: relative;
  background-color: #fff;
  position: relative;
}

@media screen and (max-width: 600px) {
  #headwrap {
    min-width: 360px;
  }
}

@media screen and (min-width: 599px) {
  #headwrap {
    min-width: 1200px;
  }
}

@media screen and (min-width: 600px) {
  #headwrap {
    /* pc */
    height: 140px;
  }
}

@media screen and (max-width: 599px) {
  #headwrap {
    /* mobile */
    height: 120px;
  }
}

#headarea {
  margin: 0 auto;
  height: auto;
  position: relative;
}

@media screen and (max-width: 600px) {
  #headarea {
    width: 360px;
  }
}

@media screen and (min-width: 599px) {
  #headarea {
    width: 1200px;
  }
}

@media screen and (min-width: 600px) {
  #headarea {
    /* pc */
    min-height: 90px;
  }
}

@media screen and (max-width: 599px) {
  #headarea {
    /* mobile */
    min-height: 85px;
  }
}

#headarea img.h-logo {
  display: block;
  margin: 0 auto;
  padding-top: 20px;
}

@media screen and (max-width: 599px) {
  #headarea img.h-logo {
    /* mobile */
  }
}

#headarea .hs-menu {
  background-color: #def6a3;
  border-radius: 50%;
  color: #4d8301;
  z-index: 300;
  position: absolute;
  right: 0;
}

@media screen and (min-width: 600px) {
  #headarea .hs-menu {
    /* pc */
    width: 105px;
    height: 105px;
    top: 55px;
  }
}

@media screen and (max-width: 599px) {
  #headarea .hs-menu {
    /* mobile */
    width: 60px;
    height: 60px;
    top: 70px;
    font-size: 14px;
  }
}

#headarea .hs-menu .inner {
  margin: 0 auto;
  border: 2px #4d8301 solid;
  border-radius: 50%;
}

@media screen and (min-width: 600px) {
  #headarea .hs-menu .inner {
    /* pc */
    width: 90px;
    height: 90px;
    margin-top: 5px;
  }
}

@media screen and (max-width: 599px) {
  #headarea .hs-menu .inner {
    /* mobile */
    width: 50px;
    height: 50px;
    margin-top: 3px;
  }
}

@media screen and (min-width: 600px) {
  #headarea .hs-menu .hs-ttl {
    /* pc */
    margin: 0 auto;
    margin-top: 60px;
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 599px) {
  #headarea .hs-menu .hs-ttl {
    /* mobile */
    display: none;
  }
}

#h-menuwrap {
  background-color: #4d8301;
  width: 100%;
  position: absolute;
  bottom: 0;
}

@media screen and (min-width: 600px) {
  #h-menuwrap {
    /* pc */
    height: 50px;
  }
}

@media screen and (max-width: 599px) {
  #h-menuwrap {
    /* mobile */
    height: 40px;
  }
}

#h-menuwrap .h-menuarea {
  background-color: #4d8301;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 600px) {
  #h-menuwrap .h-menuarea {
    width: 360px;
  }
}

@media screen and (min-width: 599px) {
  #h-menuwrap .h-menuarea {
    width: 1200px;
  }
}

@media screen and (min-width: 600px) {
  #h-menuwrap .h-menuarea {
    /* pc */
    margin: 0 auto;
    margin-top: 5px;
    font-size: 18px;
  }
}

@media screen and (max-width: 599px) {
  #h-menuwrap .h-menuarea {
    /* mobile */
    float: left;
    margin-left: 5px;
    margin-top: 5px;
    width: 310px;
  }
}

#h-menuwrap .h-menuarea div {
  float: left;
  font-weight: 500;
  border-left: 2px #fff solid;
}

@media screen and (min-width: 600px) {
  #h-menuwrap .h-menuarea div {
    /* pc */
    padding: 3px 20px;
  }
}

@media screen and (max-width: 599px) {
  #h-menuwrap .h-menuarea div {
    /* mobile */
    padding: 3px 10px;
  }
}

#h-menuwrap .h-menuarea .t {
  border-right: 2px #fff solid;
}

#h-menuwrap .h-menuarea a:link {
  text-decoration: none;
  /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
  color: #fff;
}

#h-menuwrap .h-menuarea a:visited {
  text-decoration: none;
  color: #fff;
}

#h-menuwrap .h-menuarea a:hover, #h-menuwrap .h-menuarea a:active, #h-menuwrap .h-menuarea a:focus {
  /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
  color: #fff;
}

/* main area */
main {
  min-height: 300px;
}

#topwrap {
  width: 100%;
  text-align: left;
  position: relative;
  bottom: 0;
  margin-bottom: 30px;
}

.bg-slider, .s-bg-slider {
  width: 100%;
  height: 580px;
  background-position: center center;
  background-size: cover;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.s-bg-slider {
  height: 260px;
  margin: 0 auto;
}

/* top page */
#marea, #subarea {
  margin: 0 auto;
  position: relative;
  background-color: #fff;
  padding: 30px 0;
  text-align: center;
}

@media screen and (max-width: 600px) {
  #marea, #subarea {
    width: 360px;
  }
}

@media screen and (min-width: 599px) {
  #marea, #subarea {
    width: 1200px;
  }
}

@media screen and (min-width: 600px) {
  #marea, #subarea {
    /* PC */
    min-height: 400px;
    border-bottom: 30px #4d8301 solid;
  }
}

@media screen and (max-width: 599px) {
  #marea, #subarea {
    /* mobile */
  }
}

#subarea {
  border-bottom: none;
}

@media screen and (min-width: 600px) {
  #subarea {
    /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    background-color: transparent;
  }
}

#sortarea {
  width: 1000px;
  margin: 0 auto;
  min-height: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0.5em 0 0.5em 3em;
  position: relative;
  text-align: left;
  border-top: #ccc solid 1px;
  border-bottom: #ccc solid 1px;
}

#toptitle {
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
}

@media screen and (min-width: 600px) {
  #toptitle {
    /* PC */
    width: 1000px;
    min-height: 300px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 599px) {
  #toptitle {
    /* mobile */
    width: 320px;
    padding-bottom: 20px;
  }
}

#toptitle .n-title {
  float: left;
}

@media screen and (min-width: 600px) {
  #toptitle .n-title {
    /* PC */
    width: 950px;
    margin: 20px 0 0 20px;
    text-align: center;
  }
}

@media screen and (max-width: 599px) {
  #toptitle .n-title {
    /* mobile */
    width: 300px;
    margin: 20px 0 0 10px;
    text-align: left;
  }
}

#toptitle .n-title .new {
  color: red;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: bold;
  font-size: 20px;
}

#toptitle .n-title .new:before {
  content: none;
}

#toptitle .toptxt {
  margin: 20px 0 0 20px;
  text-align: left;
  width: 950px;
  float: left;
}

@media screen and (min-width: 600px) {
  .sarea, .sarea2 {
    /* PC */
    width: 33%;
    float: left;
    margin: 20px 0;
  }
}

@media screen and (max-width: 599px) {
  .sarea, .sarea2 {
    /* mobile */
    width: 320px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.sarea img.view, .sarea2 img.view {
  width: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}

.sarea2 {
  width: 50%;
}

.sarea2 img.view {
  width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.daysttl {
  width: 280px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.view {
  width: 600px;
  -o-object-fit: cover;
  object-fit: cover;
}

.view2 {
  width: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

.catetag {
  width: 80px;
  margin: 0 5px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  line-height: 36px;
  padding: 0 10px;
  line-height: 30px;
  display: inline-block;
  height: 30px;
  /* BOXの高さ           */
  background: #4d8301;
  /* BOXの背景色         */
  border-radius: 15px;
  /* 角丸の指定          */
}

.new {
  color: red;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: bold;
  font-size: 20px;
}

.new:before {
  content: none;
}

@-webkit-keyframes sheen {
  0% {
    -webkit-transform: skewY(-45deg) translateX(0);
            transform: skewY(-45deg) translateX(0);
  }
  100% {
    -webkit-transform: skewY(-45deg) translateX(12.5em);
            transform: skewY(-45deg) translateX(12.5em);
  }
}

@keyframes sheen {
  0% {
    -webkit-transform: skewY(-45deg) translateX(0);
            transform: skewY(-45deg) translateX(0);
  }
  100% {
    -webkit-transform: skewY(-45deg) translateX(12.5em);
            transform: skewY(-45deg) translateX(12.5em);
  }
}

.toptolist, .toptolist-s {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  font-size: 15px;
  text-align: center;
  line-height: 36px;
  width: 100px;
  /* BOXの幅             */
  height: 36px;
  /* BOXの高さ           */
  background: #e63366;
  /* BOXの背景色         */
  border-radius: 18px;
  /* 角丸の指定          */
}

.toptolist a:link, .toptolist-s a:link {
  color: #fff;
  text-decoration: none;
  /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

.toptolist a:visited, .toptolist-s a:visited {
  color: #fff;
  text-decoration: none;
}

.toptolist-s {
  position: relative;
  margin: 0 auto;
  margin-top: 10px;
}

@keyframes sheen {
  0% {
    -webkit-transform: skewY(-45deg) translateX(0);
            transform: skewY(-45deg) translateX(0);
  }
  100% {
    -webkit-transform: skewY(-45deg) translateX(12.5em);
            transform: skewY(-45deg) translateX(12.5em);
  }
}

.tolistBtn {
  position: relative;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 20px;
}

.tobutton {
  padding: 0.75em 2em;
  text-align: center;
  text-decoration: none;
  color: #4d8301;
  border: 2px solid #4d8301;
  font-size: 16px;
  display: inline-block;
  width: 200px;
  hight: 70px;
  border-radius: 35px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  margin: 0 10px;
}

.tobutton:before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  -webkit-transform: skewX(-45deg) translateX(0);
          transform: skewX(-45deg) translateX(0);
  -webkit-transition: none;
  transition: none;
}

.tobutton:hover {
  background-color: #4d8301;
  color: #fff;
}

.tobutton:hover:before {
  -webkit-transform: skewX(-45deg) translateX(13.5em);
          transform: skewX(-45deg) translateX(13.5em);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.next {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  margin: 20px 0 0 0;
}

.toprev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f100";
  font-weight: 900;
  font-size: 1.2em;
  color: #393a34;
}

.tonext:after {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  font-size: 1.2em;
  color: #393a34;
}

.kiji {
  margin: 0 auto;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 50px;
}

@media screen and (max-width: 599px) {
  .kiji {
    /* 599px以下のとき */
    width: 340px;
  }
}

@media screen and (min-width: 600px) {
  .kiji {
    /* 600px以上のとき */
    width: 800px;
  }
}

.kiji:before {
  clear: both;
}

/* mail */
@media screen and (min-width: 600px) {
  .formarea {
    /* 600px以上のとき */
    width: 1000px;
    margin: 30px 0 0 100px;
  }
}

@media screen and (max-width: 599px) {
  .formarea {
    /* 600px以下のとき */
    width: 320px;
    margin: 0 auto;
  }
}

.hissu {
  display: inline-block;
  padding: 3px;
  background-color: #FD080C;
  color: #fff;
  min-width: 30px;
  width: auto;
  font-size: 0.8em;
  border-radius: 5px;
  text-align: center;
}

form {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
}

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

form dl {
  margin: 0 0 0.25em 0;
  clear: both;
  display: inline-block;
  margin: 0 auto;
  list-style-type: none;
}

@media screen and (min-width: 600px) {
  form dl {
    /* 600px以上のとき */
    width: 800px;
  }
}

@media screen and (max-width: 599px) {
  form dl {
    /* 600px以下のとき */
    width: 320px;
  }
}

form dt {
  text-align: left;
}

@media screen and (min-width: 600px) {
  form dt {
    /* 600px以上のとき */
    float: left;
    width: 25%;
  }
}

@media screen and (max-width: 599px) {
  form dt {
    /* 600px以下のとき */
    width: 100%;
  }
}

form dd {
  margin: 0 0 2em 0;
  text-align: left;
  width: 72%;
  display: block;
}

@media screen and (min-width: 600px) {
  form dd {
    /* 600px以上のとき */
    float: left;
  }
}

@media screen and (max-width: 599px) {
  form dd {
    /* 600px以下のとき */
    width: 100%;
  }
}

form dd.order {
  margin: 0 0 0.8em 0;
  text-align: left;
  display: block;
}

@media screen and (min-width: 600px) {
  form dd.order {
    /* 600px以上のとき */
    float: left;
    width: 70%;
  }
}

@media screen and (max-width: 599px) {
  form dd.order {
    /* 600px以下のとき */
    width: 100%;
  }
}

label {
  margin: 0 0 0.5em 0;
  font-size: pxtoem(16, 16);
}

input {
  margin: 0 0 0.5em 0;
  border: 1px solid grey;
  padding: 6px 10px;
  color: dark_grey;
  font-size: pxtoem(16, 16);
}

textarea {
  border: 1px solid grey;
  padding: 6px 10px;
  width: 100%;
  color: dark_grey;
}

select {
  min-width: 100px;
  margin: 5px 0px;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}

/* common */
@media screen and (min-width: 600px) {
  #navi {
    /* 600px以上のとき */
    width: 1150px;
    margin: 0 auto;
    text-align: right;
    padding-top: 30px;
  }
}

@media screen and (max-width: 599px) {
  #navi {
    /* 599px以下のとき */
    display: none;
  }
}

h1.news {
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 600px) {
  h1.news {
    /* pc */
    background: url("./images/h1_bk.png") center bottom no-repeat;
    height: 60px;
    padding-top: 5px;
  }
}

@media screen and (max-width: 599px) {
  h1.news {
    /* mobile */
    background: url("./images/h1_bk_s.png") center bottom no-repeat;
    height: 32px;
  }
}

h1.news .ttl {
  margin: 0 auto;
  font-weight: 500;
}

@media screen and (min-width: 600px) {
  h1.news .ttl {
    /* pc */
    text-align: center;
    margin-top: 10px;
    font-size: 30px;
  }
}

@media screen and (max-width: 599px) {
  h1.news .ttl {
    /* mobile */
    text-align: left;
    margin-left: 30px;
    font-size: 22px;
  }
}

h1.news .toptolist, h1.news .toptolist-s {
  position: absolute;
  bottom: 10px;
  right: 50px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  line-height: 36px;
  width: 100px;
  /* BOXの幅             */
  height: 36px;
  /* BOXの高さ           */
  background: #e63366;
  /* BOXの背景色         */
  border-radius: 18px;
  /* 角丸の指定          */
}

h1.news .toptolist a:link, h1.news .toptolist-s a:link {
  color: #fff;
  text-decoration: none;
  /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

h1.news .toptolist a:visited, h1.news .toptolist-s a:visited {
  color: #fff;
  text-decoration: none;
}

h1.sub {
  text-align: left;
  /* 文字位置指定 */
  margin: 0 auto;
  margin-top: 20px;
  padding: 0.5em 0;
  border-top: 3px #4d8301 solid;
  border-bottom: 3px #4d8301 solid;
  font-family: "Folk Medium";
}

@media screen and (max-width: 599px) {
  h1.sub {
    /* mobile */
    width: 360px;
    /* 幅指定 */
    font-size: 22px;
    /* 文字サイズ指定 */
  }
}

@media screen and (min-width: 600px) {
  h1.sub {
    /* PC */
    width: 1150px;
    /* 幅指定 */
    font-size: 26px;
    /* 文字サイズ指定 */
  }
}

h1.sub div {
  margin-left: 20px;
  line-height: 1.3em;
}

h2.sub, h2.sub02 {
  position: relative;
  padding-bottom: .2em;
  padding-left: 20px;
  border-bottom: 4px solid #ccc;
  margin: 0 auto;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  h2.sub, h2.sub02 {
    /* 599px以下のとき */
    width: 340px;
    /* 幅指定 */
    font-size: 20px;
  }
}

@media screen and (min-width: 600px) {
  h2.sub, h2.sub02 {
    /* 600px以上のとき */
    width: 1100px;
    font-size: 22px;
  }
}

h2.sub:after, h2.sub02:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 2;
  content: '';
  width: 20%;
  height: 4px;
  background-color: #4d8301;
}

@media screen and (max-width: 599px) {
  h2.sub02 {
    /* mobi */
    width: 320px;
    /* 幅指定 */
    font-size: 20px;
    padding-left: 0;
  }
}

@media screen and (min-width: 600px) {
  h2.sub02 {
    /* pc */
    width: 900px;
    font-size: 22px;
  }
}

h2.news {
  position: relative;
  padding-bottom: .2em;
  padding-left: 20px;
  border-bottom: 2px dotted #666;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  h2.news {
    /* mobile */
    width: 320px;
    /* 幅指定 */
    font-size: 20px;
    /* 文字サイズ指定 */
  }
}

@media screen and (min-width: 600px) {
  h2.news {
    /* pc */
    width: 980px;
    font-size: 22px;
    /* 文字サイズ指定 */
  }
}

.txt, .txt02 {
  margin: 0 auto;
  line-height: 1.8em;
  font-size: 1.0em;
  text-align: left;
}

@media screen and (max-width: 599px) {
  .txt, .txt02 {
    /* 599px以下のとき */
    width: 340px;
  }
}

@media screen and (min-width: 600px) {
  .txt, .txt02 {
    /* 600px以上のとき */
    width: 1000px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.txt .indent, .txt02 .indent {
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 599px) {
  .txt02 {
    /* 599px以下のとき */
    width: 340px;
  }
}

@media screen and (min-width: 600px) {
  .txt02 {
    /* 600px以上のとき */
    width: 900px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

ul.sub {
  margin-top: 20px;
  margin-bottom: 20px;
  list-style: none;
  list-style-position: outside;
  margin: 0 auto;
  margin-top: 30px;
}

@media screen and (max-width: 599px) {
  ul.sub {
    /* 599px以下のとき */
    width: 340px;
  }
}

@media screen and (min-width: 600px) {
  ul.sub {
    /* 600px以上のとき */
    width: 1000px;
  }
}

ul.sub li {
  margin: 0 0 30px 0;
}

h3.sub {
  position: relative;
  color: white;
  padding: 0.5em 0.5em 0.5em 1.4em;
  background-color: #4d8301;
  text-align: left;
}

@media screen and (max-width: 599px) {
  h3.sub {
    /* 599px以下のとき */
    width: 320px;
    /* 幅指定 */
    margin: 40px 0 20px 0;
  }
}

@media screen and (min-width: 600px) {
  h3.sub {
    /* 600px以上のとき */
    width: 400px;
    margin: 40px 0 20px 50px;
  }
}

h3.sub:after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '';
  width: 18px;
  height: 4px;
  background-color: white;
}

h3.class {
  position: relative;
  padding: 0 .5em .5em 1.7em;
  font-family: 'M PLUS 1p';
  text-align: left;
  line-height: 30px;
  font-size: 20px;
}

@media screen and (max-width: 599px) {
  h3.class {
    /* 599px以下のとき */
    margin-left: 0px;
  }
}

@media screen and (min-width: 600px) {
  h3.class {
    /* 600px以上のとき */
    margin-left: 80px;
  }
}

h3.class:after {
  position: absolute;
  top: .4em;
  left: .4em;
  z-index: 2;
  content: '';
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

dl.sub, dl.sub03 {
  list-style-type: none;
  margin: 0 auto;
  list-style-position: inside;
  display: block;
}

@media screen and (max-width: 599px) {
  dl.sub, dl.sub03 {
    /* 599px以下のとき */
    width: 320px;
  }
}

@media screen and (min-width: 600px) {
  dl.sub, dl.sub03 {
    /* 600px以上のとき */
    width: 900px;
  }
}

dl.sub dt, dl.sub03 dt {
  margin: 8px 0 8px 0;
  position: relative;
  width: 200px;
  float: left;
  line-height: 1.5em;
  text-align: left;
}

dl.sub dt:after, dl.sub03 dt:after {
  display: block;
  content: '';
  position: absolute;
  top: .5em;
  left: -1em;
  width: 6px;
  height: 6px;
  background-color: #4d8301;
  border-radius: 100%;
}

dl.sub dd, dl.sub03 dd {
  margin: 8px 0 8px 0;
  position: relative;
  float: left;
  line-height: 1.8em;
  text-align: left;
}

@media screen and (max-width: 599px) {
  dl.sub dd, dl.sub03 dd {
    /* 599px以下のとき */
    width: 320px;
  }
}

@media screen and (min-width: 600px) {
  dl.sub dd, dl.sub03 dd {
    /* 600px以上のとき */
    width: 680px;
  }
}

dl.sub dd ol, dl.sub03 dd ol {
  list-style-position: outside;
  margin-left: 1.5em;
}

dl.sub02 {
  list-style-type: none;
  list-style-position: inside;
  display: block;
}

@media screen and (max-width: 599px) {
  dl.sub02 {
    /* 599px以下のとき */
    width: 320px;
  }
}

@media screen and (min-width: 600px) {
  dl.sub02 {
    /* 600px以上のとき */
    width: 600px;
  }
}

dl.sub02 dt {
  margin: 0 0 8px 0;
  position: relative;
  width: 150px;
  float: left;
  line-height: 1.5em;
  text-align: left;
}

dl.sub02 dt:after {
  display: none;
}

dl.sub02 dd {
  margin: 0 0 8px 0;
  position: relative;
  float: left;
  line-height: 1.5em;
  text-align: left;
}

@media screen and (max-width: 599px) {
  dl.sub02 dd {
    /* 599px以下のとき */
    width: 320px;
  }
}

@media screen and (min-width: 600px) {
  dl.sub02 dd {
    /* 600px以上のとき */
    width: 430px;
  }
}

@media screen and (max-width: 599px) {
  dl.sub03 {
    /* 599px以下のとき */
    width: 310px;
    margin-left: 10px;
  }
}

@media screen and (min-width: 600px) {
  dl.sub03 {
    /* 600px以上のとき */
    width: 700px;
  }
}

dl.sub03 dt {
  width: 200px;
}

@media screen and (max-width: 599px) {
  dl.sub03 dd {
    /* mobile */
    width: 320px;
  }
}

@media screen and (min-width: 600px) {
  dl.sub03 dd {
    /* pc */
    width: 500px;
  }
}

ul.sub {
  margin-top: 20px;
  margin-bottom: 20px;
  list-style: none;
  list-style-position: outside;
  margin: 0 auto;
  margin-top: 30px;
}

@media screen and (max-width: 599px) {
  ul.sub {
    /* 599px以下のとき */
    width: 340px;
  }
}

@media screen and (min-width: 600px) {
  ul.sub {
    /* 600px以上のとき */
    width: 1000px;
  }
}

ul.sub li {
  margin: 0 0 30px 0;
  text-align: left;
}

ul.sub02 {
  list-style-type: none;
  list-style-position: outside;
}

@media screen and (max-width: 599px) {
  ul.sub02 {
    /* 599px以下のとき */
    width: 320px;
    margin: 0 0 10px 30px;
  }
}

@media screen and (min-width: 600px) {
  ul.sub02 {
    /* 600px以上のとき */
    width: 1000px;
    margin: 0 0 10px 100px;
  }
}

ul.sub02 li {
  margin: 0 0 10px 0;
  position: relative;
  line-height: 1.5em;
  text-align: left;
}

ul.sub02 li:after {
  display: block;
  content: '';
  position: absolute;
  top: .7em;
  left: -1em;
  width: 6px;
  height: 6px;
  background-color: #4d8301;
  border-radius: 100%;
}

#rside-wrap {
  width: 240px;
  margin-top: 5px;
}

@media screen and (max-width: 599px) {
  #rside-wrap {
    /* mobile */
    display: none;
  }
}

.rside {
  border-right: 1px #ccc solid;
  border-left: 1px #ccc solid;
  background-color: #fff;
}

@media screen and (min-width: 600px) {
  .rside {
    /* pc */
    width: 220px;
    /*float:right;*/
    margin-top: 70px;
    margin-right: 15px;
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
  }
}

@media screen and (max-width: 599px) {
  .rside {
    /* mobile */
    width: 320px;
    margin: 0 auto;
    margin-top: 10px;
  }
}

.rside ul.right {
  margin: 0;
  list-style-type: none;
  font-weight: normal;
  border-top: 1px #ccc solid;
}

.rside ul.right li {
  font-size: 1.0em;
  margin: 0;
  font-weight: normal;
  padding: 0.8em 0 0.8em 0.8em;
  border-bottom: 1px #ccc solid;
  text-align: left;
}

.rside ul.right li.sel {
  background-color: #eee;
}

.rside ul.right li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  color: #4d8301;
  margin: -5px 5px 0 0;
  font-size: 1.3em;
}

#lside {
  min-height: 500px;
  margin: 0 0 30px 20px;
  display: block;
  position: relative;
}

@media screen and (min-width: 600px) {
  #lside {
    /* pc */
    width: 930px;
  }
}

@media screen and (max-width: 599px) {
  #lside {
    /* mobile */
    width: 320px;
  }
}

/* ~~ フッター ~~ */
footer {
  background-color: #fff;
}

#fwrap {
  width: 100%;
  display: block;
  text-align: center;
  height: auto;
}

@media screen and (min-width: 600px) {
  #fwrap {
    /* 600px以上のとき */
  }
}

@media screen and (max-width: 599px) {
  #fwrap {
    border-top: 1px #ccc solid;
  }
}

#farea {
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  #farea {
    /* 600px以上のとき */
    width: 1200px;
  }
}

@media screen and (max-width: 599px) {
  #farea {
    width: 360px;
  }
}

.footer1 {
  text-align: center;
  position: relative;
}

@media screen and (min-width: 600px) {
  .footer1 {
    /* 600px以上のとき */
    width: 45%;
    float: left;
    min-height: 100px;
    padding-top: 30px;
  }
}

@media screen and (max-width: 599px) {
  .footer1 {
    width: 100%;
  }
}

.footer1 .f-logo {
  display: block;
}

@media screen and (min-width: 600px) {
  .footer1 .f-logo {
    /* 600px以上のとき */
    float: left;
  }
}

@media screen and (max-width: 599px) {
  .footer1 .f-logo {
    margin: 0 auto;
    padding-top: 20px;
  }
}

.footer1 .f-addr {
  font-size: 16px;
  text-align: left;
  margin-left: 10px;
}

@media screen and (min-width: 600px) {
  .footer1 .f-addr {
    /* pc */
    float: left;
  }
}

@media screen and (max-width: 599px) {
  .footer1 .f-addr {
    text-align: center;
    margin-bottom: 20px;
  }
}

.footer1 .f-access, .footer1 .f-mail {
  position: absolute;
  bottom: 0;
  right: 60px;
  font-size: 40px;
}

.footer1 .f-mail {
  right: 10px;
}

.footer2 {
  padding: 10px 0 20px 0;
  text-align: center;
  position: relative;
  height: auto;
  width: 50%;
  float: right;
  margin-right: 20px;
  font-size: 15px;
}

.footer2 .f-home {
  margin: 20px 0 0 20px;
  float: right;
}

.footer2 .fmenu1 {
  float: right;
  margin: 10px 0 0 30px;
  text-align: left;
  display: block;
  height: auto;
  padding: 0 50px 0 0;
  line-height: 2.0em;
}

.footer2 .fmenu1 a:link, .footer2 .fmenu1 a:visited {
  text-decoration: none;
  /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

#fcopy {
  width: 100%;
  background-color: #fff;
  display: block;
  text-align: center;
  padding: 0 0 8px 0;
  font-size: 1.0em;
}

@media screen and (min-width: 600px) {
  #fcopy {
    /* 600px以上のとき */
    height: 15px;
  }
}

@media screen and (max-width: 599px) {
  #fcopy {
    height: 50px;
    margin-top: 20px;
  }
}

#fcopy div {
  margin: 0 auto;
  min-height: 15px;
  height: auto;
  position: relative;
  font-size: 0.85em;
}

@media screen and (max-width: 600px) {
  #fcopy div {
    width: 360px;
  }
}

@media screen and (min-width: 599px) {
  #fcopy div {
    width: 1200px;
  }
}
/*# sourceMappingURL=style.css.map */