@charset "UTF-8";
/* CSS Document */
/* Body Html Fonts
------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@700&display=swap");
html {
  font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  background-color: #FFF;
}

@media screen and (max-width: 700px) {
  html {
    font-size: 13px;
  }
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #222222;
  line-height: 1.8;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.06em;
}

body.fixed {
  position: fixed;
}

body a {
  color: #2a90cd;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

body a:hover {
  text-decoration: underline;
}

body a img {
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  backface-visibility: hidden;
}

body a img:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}

body img, body picture {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

body iframe {
  vertical-align: top;
}

body .wrap {
  width: 890px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

body ::selection {
  background: rgba(42, 144, 205, 0.2);
  /* Safari */
}

body ::-moz-selection {
  background: rgba(42, 144, 205, 0.2);
  /* Firefox */
}

/* header
------------------------------------------------------------*/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 64px;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 17px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background: #FFF;
}

header + * {
  margin-top: 64px;
}

header .head-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

header .head-logo a:hover {
  text-decoration: none;
}

header .head-logo a > span:nth-child(1), header .head-logo a > h1:nth-child(1) {
  margin-right: 15px;
}

header .head-logo a > span:nth-child(2), header .head-logo a > h1:nth-child(2) {
  color: #93D500;
  font-size: 10px;
  font-size: 0.7142857143rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

header .head-logo a > span:nth-child(2) span, header .head-logo a > h1:nth-child(2) span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

header .head-logo a > span:nth-child(2) span:before, header .head-logo a > span:nth-child(2) span:after, header .head-logo a > h1:nth-child(2) span:before, header .head-logo a > h1:nth-child(2) span:after {
  content: "";
  width: 9px;
  height: 1px;
  background: #93D500;
  margin-left: 5px;
  margin-right: 5px;
}

header .head-menu {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  top: 0;
  height: 44px;
  width: 44px;
  background: #93D500;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 2;
  cursor: pointer;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .head-menu span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 0 auto;
  background-color: #FFF;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .head-menu span:last-child {
  margin-bottom: 0;
}

header .head-menu span.top {
  -webkit-transform: translateY(-7px);
  -moz-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
  -o-transform: translateY(-7px);
  transform: translateY(-7px);
}

header .head-menu span.middle {
  margin-top: -2px;
  left: 0;
  position: relative;
}

header .head-menu span.bottom {
  margin-top: -2px;
  -webkit-transform: translateY(7px);
  -moz-transform: translateY(7px);
  -ms-transform: translateY(7px);
  -o-transform: translateY(7px);
  transform: translateY(7px);
}

header .head-nav {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: fixed;
  top: 64px;
  width: 312px;
  height: calc(100% - 64px);
  right: 0;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  z-index: 2;
  pointer-events: none;
}

header .head-nav .inside {
  background: #FFF;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

header .head-nav nav {
  height: 0;
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  overflow: scroll;
}

header .head-nav ul:nth-child(1) {
  padding: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

header .head-nav ul:nth-child(1) li:not(:last-child) {
  margin-bottom: 30px;
}

header .head-nav ul:nth-child(1) li a {
  display: block;
  color: #222222;
  font-size: 17px;
  font-size: 1.2142857143rem;
  font-weight: bold;
  background: url(../img/common/arrow-nav.svg) no-repeat right 7px center;
  padding-right: 14px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.6;
}

header .head-nav ul:nth-child(1) li a:hover {
  background-position: right 0 center;
}

header .head-nav ul:nth-child(1) li a small {
  font-size: 12px;
  font-size: 0.8571428571rem;
  font-weight: normal;
  display: block;
}

header .head-nav ul:nth-child(2) {
  padding: 0 20px 20px;
}

header .head-nav ul:nth-child(2) li a {
  display: block;
  padding: 12px 24px;
  color: #686868;
  font-size: 14px;
  font-size: 1rem;
  font-weight: bold;
}

header .head-nav .bnr {
  text-align: center;
}

header .head-nav .bnr:not(:last-child) {
  margin-bottom: 20px;
}

header .head-nav .bottom {
  box-shadow: 0px -2px 5px rgba(189, 189, 189, 0.25);
  padding: 12px;
}

header .head-nav .bottom .tel {
  margin-bottom: 16px;
}

header .head-nav .bottom .tel a {
  display: block;
  background: url(../img/common/icon-tel.svg) no-repeat left center;
  padding: 5px 0 5px 38px;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Roboto', sans-serif;
  color: #222222;
  font-size: 21px;
  font-size: 1.5rem;
  font-weight: bold;
}

header .head-nav .bottom .tel span {
  font-size: 12px;
  font-size: 0.8571428571rem;
  font-weight: bold;
  display: block;
  line-height: 1.2;
}

header .head-nav .bottom .tel span small {
  font-size: 10px;
  font-size: 0.7142857143rem;
}

header.active .head-menu {
  background-color: transparent;
}

header.active .head-menu span {
  background-color: #222222;
}

header.active .head-menu .middle {
  filter: alpha(opacity=0);
  opacity: 0;
  left: 20px;
}

header.active .head-menu .top {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

header.active .head-menu .bottom {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

header.active .head-nav {
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

@media screen and (max-width: 700px) {
  header .head-menu {
    z-index: 3;
  }
  header .head-nav {
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    top: 0;
  }
  header .head-nav .inside {
    width: 350px;
    max-width: calc(100vw - 25px);
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    background: #EDEDED;
    padding-top: 64px;
  }
  header .head-nav .inside nav {
    padding: 0 20px;
  }
  header .head-nav .inside nav ul:nth-child(1) {
    background-color: #FFF;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    padding: 0;
  }
  header .head-nav .inside nav ul:nth-child(1) li:not(:last-child) {
    border-bottom: 1px solid #EDEDED;
    margin-bottom: 0;
  }
  header .head-nav .inside nav ul:nth-child(1) li a {
    padding: 15px 30px 15px 15px;
    font-size: 16px;
    font-size: 1.1428571429rem;
    background-image: url(../img/common/arrow-nav_green.svg);
    background-position: right 20px center;
  }
  header .head-nav .inside nav ul:nth-child(1) li a:hover {
    background-position: right 15px center;
  }
  header .head-nav .inside nav ul:nth-child(1) li a small {
    font-size: 12px;
    font-size: 0.8571428571rem;
  }
  header .head-nav .inside nav ul:nth-child(2) {
    padding: 20px 0;
  }
  header .head-nav .inside .bnr:not(:first-child) {
    margin-top: 20px;
  }
  header .head-nav .inside .bottom {
    background-color: #FFF;
  }
  header .head-nav .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.2);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    filter: alpha(opacity=0);
    opacity: 0;
    visibility: hidden;
  }
  header.active .head-nav .bg {
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
  }
  header.active .head-nav .inside {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

/* footer
------------------------------------------------------------*/
footer {
  background: #EAF8C5;
  padding: 40px 50px 35px;
  padding-bottom: 90px;
}

footer .foot-fixed {
  position: fixed;
  left: 0;
  width: 100%;
  bottom: 0;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  box-shadow: 0px -2px 5px rgba(189, 189, 189, 0.25);
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 9;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .foot-fixed:not(.show) {
  pointer-events: none;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}

footer .foot-fixed .item-tel {
  margin-right: 15px;
}

footer .foot-fixed .item-tel a {
  display: block;
  background: url(../img/common/icon-tel_bottom.svg) no-repeat left center;
  padding: 5px 0 5px 38px;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Roboto', sans-serif;
  color: #222222;
  font-size: 21px;
  font-size: 1.5rem;
  font-weight: bold;
}

footer .foot-fixed .item-tel span {
  font-size: 12px;
  font-size: 0.8571428571rem;
  font-weight: bold;
  display: block;
  line-height: 1.2;
}

footer .foot-fixed .item-tel span small {
  font-size: 10px;
  font-size: 0.7142857143rem;
}

@media screen and (max-width: 360px) {
  footer .foot-fixed .item-tel {
    margin-right: 10px;
  }
  footer .foot-fixed .item-tel a {
    background-size: 25px auto;
    padding-left: 30px;
    margin-bottom: 5px;
    font-size: 18px;
    font-size: 1.2857142857rem;
  }
  footer .foot-fixed .item-tel span {
    font-size: 11px;
    font-size: 0.7857142857rem;
  }
  footer .foot-fixed .item-tel span small {
    font-size: 10px;
    font-size: 0.7142857143rem;
  }
  footer .foot-fixed .item-btn {
    font-size: 15px;
    font-size: 1.0714285714rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}

footer .foot-inside {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

footer .foot-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer .foot-nav ul:not(:last-child) {
  margin-right: 55px;
  margin-bottom: 50px;
}

footer .foot-nav ul:not(:last-child) li:not(:last-child) {
  margin-bottom: 20px;
}

footer .foot-nav ul:not(:last-child) li a {
  color: #009200;
  font-size: 14px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}

footer .foot-nav ul:not(:last-child) li a small {
  display: block;
  font-size: 12px;
  font-size: 0.8571428571rem;
  font-weight: normal;
}

footer .foot-nav ul:last-child {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

footer .foot-nav ul:last-child li {
  line-height: 1.2;
  margin-bottom: 10px;
}

footer .foot-nav ul:last-child li:not(:last-child) {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #009200;
}

footer .foot-nav ul:last-child li a {
  font-size: 14px;
  font-size: 1rem;
  color: #009200;
}

footer .foot-copy {
  font-size: 12px;
  font-size: 0.8571428571rem;
  color: rgba(34, 34, 34, 0.6);
  margin-top: 5px;
  display: block;
  text-align: center;
}

@media screen and (min-width: 701px) and (max-width: 890px) {
  footer {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 700px) {
  footer {
    padding: 20px;
    margin-bottom: 70px;
  }
  footer .foot-nav {
    margin-right: -15px;
    margin-bottom: -20px;
  }
  footer .foot-nav:not(:last-child) {
    margin-bottom: 10px;
  }
  footer .foot-nav ul {
    width: calc(50% - 15px);
    margin-right: 15px;
    margin-bottom: 20px;
    -ms-flex: 1 0 auto;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  footer .foot-nav ul:not(:last-child) {
    margin-right: 15px;
    margin-bottom: 20px;
  }
  footer .foot-nav ul:not(:last-child) li:not(:last-child) {
    margin-bottom: 20px;
  }
  footer .foot-nav ul:not(:last-child) li a {
    color: #009200;
    font-size: 14px;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
  }
  footer .foot-nav ul:not(:last-child) li a small {
    display: block;
    font-size: 12px;
    font-size: 0.8571428571rem;
    font-weight: normal;
  }
  footer .foot-nav ul:last-child {
    width: calc(100% + 15px);
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -10px;
  }
  footer .foot-nav ul:last-child li {
    line-height: 1.2;
    margin-bottom: 10px;
  }
  footer .foot-copy {
    text-align: center;
    line-height: 1.1;
  }
}

/* mainimg
------------------------------------------------------------*/
#mainimg {
  position: relative;
}

#mainimg.top {
  height: 786px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  max-height: calc(100vh - 64px);
  padding-left: 50px;
  padding-right: 50px;
}

#mainimg.top .content {
  width: 1100px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

#mainimg.top .item-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/bg-kv.jpg) no-repeat center/cover;
}

#mainimg.top .item-text h2 {
  margin-bottom: 60px;
}

#mainimg.top .item-text p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  font-size: 20px;
  font-size: 1.4285714286rem;
  font-weight: bold;
}

#mainimg.top .item-text p span {
  background: #FFF;
  padding-left: 10px;
  padding-right: 10px;
}

#mainimg.top .item-text p span:not(:last-child) {
  margin-bottom: 8px;
}

@media screen and (min-width: 701px) and (max-width: 890px) {
  #mainimg.top {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 700px) {
  #mainimg.top {
    height: 557px;
    padding-left: 15px;
    padding-right: 15px;
  }
  #mainimg.top .item-bg {
    background-image: url(../img/top/bg-kv_sp.jpg);
  }
  #mainimg.top .item-text h2 {
    width: 260px;
    margin-bottom: 80px;
  }
  #mainimg.top .item-text p {
    font-size: 16px;
    font-size: 1.1428571429rem;
  }
}

#mainimg.next {
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}

#mainimg.next .content {
  position: relative;
  width: 890px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#mainimg.next .item-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/next/bg-kv.svg) no-repeat center/cover;
}

#mainimg.next .item-hd {
  line-height: 1.2;
}

#mainimg.next .item-hd > * {
  display: block;
}

#mainimg.next .item-hd > *:nth-child(1) {
  font-family: 'Roboto', sans-serif;
  color: #84C200;
  line-height: 1;
  font-size: 52px;
  font-size: 3.7142857143rem;
  font-weight: bold;
  letter-spacing: 8px;
}

#mainimg.next .item-hd > *:nth-child(1):not(:last-child) {
  margin-bottom: 5px;
}

#mainimg.next .item-hd > *:nth-child(2) {
  font-size: 20px;
  font-size: 1.4285714286rem;
  font-weight: bold;
  color: #FFF;
  letter-spacing: 3px;
}

@media screen and (min-width: 701px) and (max-width: 890px) {
  #mainimg.next {
    padding-left: 40px;
    padding-right: 40px;
  }
  #mainimg.next .item-hd > *:nth-child(1) {
    font-size: 44px;
    font-size: 3.1428571429rem;
  }
  #mainimg.next .item-hd > *:nth-child(2) {
    font-size: 18px;
    font-size: 1.2857142857rem;
  }
}

@media screen and (max-width: 700px) {
  #mainimg.next {
    padding-left: 15px;
    padding-right: 15px;
    height: 105px;
  }
  #mainimg.next .item-bg {
    background-image: url(../img/next/bg-kv_sp.svg);
  }
  #mainimg.next .item-hd {
    text-align: center;
  }
  #mainimg.next .item-hd > *:nth-child(1) {
    font-size: 24px;
    font-size: 1.7142857143rem;
    letter-spacing: 0.15em;
  }
  #mainimg.next .item-hd > *:nth-child(2) {
    font-size: 20px;
    font-size: 1.4285714286rem;
    font-weight: bold;
    color: #FFF;
    letter-spacing: 3px;
  }
}

#mainimg.next.sml {
  height: 85px;
}

#mainimg.next.sml .item-bg {
  background: #93D500;
}

#mainimg.next.sml .item-hd {
  text-align: left;
}

#mainimg.next.sml .item-hd span {
  display: block;
}

#mainimg.next.sml .item-hd span:nth-child(1) {
  font-size: 15px;
  font-size: 1.0714285714rem;
  letter-spacing: 3px;
}

#mainimg.next.sml .item-hd span:nth-child(2) {
  font-size: 20px;
  font-size: 1.4285714286rem;
  font-weight: bold;
}

#mainimg.journal {
  background: #EAF8C5;
  padding: 10px 50px 28px;
}
#mainimg.journal.yukari-mama {
  background: #ffedeaff;
}

#mainimg.journal .content {
  width: 1114px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 701px) {
  #mainimg.journal ~ main #journal aside {
    padding-top: 0;
  }
}

#mainimg.journal .item-hd {
  display: -moz-inline-box;
  display: inline-block;
  background: #FFF;
  color: #93D500;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-size: 1.2857142857rem;
  font-weight: bold;
  padding-left: 24px;
  padding-right: 24px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  line-height: 1.3;
  margin-bottom: 20px;
}

#mainimg.journal .item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

#mainimg.journal .item-title .category {
  margin-right: 12px;
}

#mainimg.journal .item-title > div {
  width: 10px;
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-content: center;
  align-content: center;
}

#mainimg.journal .item-title > div > div, #mainimg.journal .item-title > div > h1 {
  width: 100%;
  font-size: 22px;
  font-size: 1.5714285714rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 5px;
}

#mainimg.journal .item-title > div > div h1, #mainimg.journal .item-title > div > h1 h1 {
  display: inline;
}

#mainimg.journal .item-title > div .number {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.2;
}

#mainimg.journal .item-title > div .number span {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-size: 1.5714285714rem;
  color: #009200;
}

@media screen and (min-width: 701px) and (max-width: 890px) {
  #mainimg.journal {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 700px) {
  #mainimg.journal {
    text-align: center;
    padding: 8px 15px 20px;
  }
  #mainimg.journal .item-title .category {
    width: 46px;
  }
  #mainimg.journal .item-title > div {
    text-align: left;
  }
  #mainimg.journal .item-title > div > div, #mainimg.journal .item-title > div > h1 {
    font-size: 20px;
    font-size: 1.4285714286rem;
  }
  #mainimg.journal .item-title > div .number span {
    font-size: 20px;
    font-size: 1.4285714286rem;
  }
}

@media screen and (min-width: 701px) {
  #mainimg.about {
    height: 560px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
  }
  #mainimg.about .item-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/next/about/bg-kv.jpg) no-repeat center/cover;
  }
  #mainimg.about .item-hd {
    position: relative;
  }
  #mainimg.about .item-hd h1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    filter: alpha(opacity=0);
    opacity: 0;
  }
}

@media screen and (min-width: 701px) and (min-width: 701px) and (max-width: 890px) {
  #mainimg.about {
    padding-left: 40px;
    padding-right: 40px;
    height: 500px;
  }
}

@media screen and (max-width: 700px) {
  #mainimg.about img {
    width: 100%;
  }
}

#mainimg.fp {
  text-align: center;
}

#mainimg.fp .item-number {
  position: fixed;
  right: 40px;
  bottom: 30px;
  border: 5px solid #FF7F30;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  background: #FFF;
  z-index: 10;
}

#mainimg.fp .item-number > span {
  display: block;
  text-align: center;
  background-color: #FF7F30;
  color: #FFF;
  line-height: 1;
  padding-bottom: 4px;
  font-size: 13px;
  font-size: 0.9285714286rem;
  font-weight: bold;
  padding-left: 12px;
  padding-right: 12px;
}

#mainimg.fp .item-number p {
  padding: 8px;
  font-size: 21px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #FF7F30;
  line-height: 1;
}

#mainimg.fp .item-number p span {
  font-size: 44px;
  font-size: 3.1428571429rem;
}

@media screen and (max-width: 700px) {
  #mainimg.fp .item-number {
    right: 12px;
    bottom: 85px;
  }
}

#mainimg.fp .item-img {
  position: relative;
}

#mainimg.fp .item-img h1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: alpha(opacity=0);
  opacity: 0;
}

/* main
------------------------------------------------------------*/
main {
  display: block;
}

main .content {
  width: 890px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

main > section, main > article {
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}

main .news-list {
  border-top: 1px solid #EDEDED;
}

main .news-list:not(:last-child) {
  margin-bottom: 25px;
}

main .news-list li {
  border-bottom: 1px solid #EDEDED;
  padding: 12px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

main .news-list .item-date {
  margin-right: 10px;
  color: #686868;
  font-size: 13px;
  font-size: 0.9285714286rem;
  font-weight: bold;
}

main .news-list .item-title {
  padding-top: 10px;
  width: 100%;
  font-size: 14px;
  font-size: 1rem;
  font-weight: bold;
}

main .news-list .item-title a {
  color: #222222;
}

main #cv {
  background: #FAED56;
  padding-top: 70px;
  padding-bottom: 60px;
}

main #cv .content {
  width: 664px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

main #cv .item-hd {
  position: absolute;
  left: 0;
  top: -115px;
  width: 361px;
  height: 115px;
  background: url(../img/next/bg-cv_hd.svg) no-repeat center/contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-size: 1.1428571429rem;
  font-weight: bold;
  color: #009200;
  line-height: 1.4;
  padding-bottom: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

main #cv .item-hd span {
  font-size: 24px;
  font-size: 1.7142857143rem;
}

main #cv .item-img {
  margin-left: 100px;
  margin-right: 60px;
}

main #cv .item-text {
  width: 10px;
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

main #cv .item-text h3 {
  color: #009200;
  font-size: 16px;
  font-size: 1.1428571429rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
}

main #cv .item-text p {
  font-size: 14px;
  font-size: 1rem;
  font-weight: 500;
}

main #cv .item-text p:not(:last-child) {
  margin-bottom: 15px;
}

@media screen and (min-width: 701px) and (max-width: 890px) {
  /* main
------------------------------------------------------------*/
  main > section, main > article {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/*sp*/
@media screen and (max-width: 700px) {
  /* main
------------------------------------------------------------*/
  main > section, main > article {
    padding-left: 15px;
    padding-right: 15px;
  }
  main .news-list {
    margin-left: -15px;
    margin-right: -15px;
  }
  main #cv {
    padding-top: 70px;
    padding-bottom: 45px;
  }
  main #cv .content {
    width: 664px;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main #cv .item-hd {
    max-width: calc(100% - 10px);
    width: 345px;
    height: 110px;
    left: 50%;
    top: -100px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 700px) and (max-width: 360px) {
  main #cv .item-hd {
    font-size: 15px;
    font-size: 1.0714285714rem;
  }
  main #cv .item-hd span {
    font-size: 22px;
    font-size: 1.5714285714rem;
  }
}

@media screen and (max-width: 700px) {
  main #cv .item-img {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 18px;
  }
  main #cv .item-img img {
    width: 117px;
  }
  main #cv .item-text {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 700px) and (max-width: 360px) {
  main #cv .item-text p {
    font-size: 13px;
    font-size: 0.9285714286rem;
  }
}

@media screen and (max-width: 700px) {
  main #cv .item-text .btn {
    margin-left: auto;
    margin-right: auto;
  }
}

/* padding & margin */
.pd {
  padding: 30px;
}

.mg {
  margin: 30px;
}

.nomb {
  margin-bottom: 0 !important;
}

.nomt {
  margin-top: 0 !important;
}

.nopt {
  padding-top: 0 !important;
}

.nopb {
  padding-bottom: 0 !important;
}

.pt {
  padding-top: 30px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt45 {
  padding-top: 45px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pt100 {
  padding-top: 100px;
}

.pt110 {
  padding-top: 110px;
}

.pt120 {
  padding-top: 120px;
}

.pt130 {
  padding-top: 130px;
}

.pt140 {
  padding-top: 140px;
}

.pt150 {
  padding-top: 150px;
}

.pt160 {
  padding-top: 160px;
}

.pt170 {
  padding-top: 170px;
}

.pt180 {
  padding-top: 180px;
}

.pt190 {
  padding-top: 190px;
}

.pt200 {
  padding-top: 200px;
}

.pb {
  padding-bottom: 30px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: 35px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb100 {
  padding-bottom: 100px;
}

.pb110 {
  padding-bottom: 110px;
}

.pb120 {
  padding-bottom: 120px;
}

.pb130 {
  padding-bottom: 130px;
}

.pb140 {
  padding-bottom: 140px;
}

.pb150 {
  padding-bottom: 150px;
}

.pb160 {
  padding-bottom: 160px;
}

.pb170 {
  padding-bottom: 170px;
}

.pb180 {
  padding-bottom: 180px;
}

.pb190 {
  padding-bottom: 190px;
}

.pb200 {
  padding-bottom: 200px;
}

.mt {
  margin-top: 30px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mt110 {
  margin-top: 110px;
}

.mt120 {
  margin-top: 120px;
}

.mt130 {
  margin-top: 130px;
}

.mt140 {
  margin-top: 140px;
}

.mt150 {
  margin-top: 150px;
}

.mt160 {
  margin-top: 160px;
}

.mt170 {
  margin-top: 170px;
}

.mt180 {
  margin-top: 180px;
}

.mt190 {
  margin-top: 190px;
}

.mt200 {
  margin-top: 200px;
}

.mb {
  margin-bottom: 30px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb130 {
  margin-bottom: 130px;
}

.mb140 {
  margin-bottom: 140px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb160 {
  margin-bottom: 160px;
}

.mb170 {
  margin-bottom: 170px;
}

.mb180 {
  margin-bottom: 180px;
}

.mb190 {
  margin-bottom: 190px;
}

.mb200 {
  margin-bottom: 200px;
}

.pl {
  padding-left: 30px;
}

.pl5 {
  padding-left: 5px;
}

.pl10 {
  padding-left: 10px;
}

.pl15 {
  padding-left: 15px;
}

.pl20 {
  padding-left: 20px;
}

.pl25 {
  padding-left: 25px;
}

.pr {
  padding-right: 30px;
}

.pr5 {
  padding-right: 5px;
}

.pr10 {
  padding-right: 10px;
}

.pr15 {
  padding-right: 15px;
}

.pr20 {
  padding-right: 20px;
}

.pr25 {
  padding-right: 25px;
}

.ml {
  margin-left: 30px;
}

.ml-a {
  margin-left: auto;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.mr {
  margin-right: 30px;
}

.mr-a {
  margin-right: auto;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

@media screen and (max-width: 700px) {
  .pd {
    padding: 20px;
  }
  .mg {
    margin: 20px;
  }
  .pt {
    padding-top: 20px;
  }
  .pt5 {
    padding-top: 3px;
  }
  .pt10 {
    padding-top: 6px;
  }
  .pt15 {
    padding-top: 9px;
  }
  .pt20 {
    padding-top: 12px;
  }
  .pt25 {
    padding-top: 15px;
  }
  .pt30 {
    padding-top: 18px;
  }
  .pt35 {
    padding-top: 21px;
  }
  .pt40 {
    padding-top: 24px;
  }
  .pt45 {
    padding-top: 27px;
  }
  .pt50 {
    padding-top: 30px;
  }
  .pt60 {
    padding-top: 36px;
  }
  .pt70 {
    padding-top: 42px;
  }
  .pt80 {
    padding-top: 48px;
  }
  .pt90 {
    padding-top: 54px;
  }
  .pt100 {
    padding-top: 60px;
  }
  .pt110 {
    padding-top: 66px;
  }
  .pt120 {
    padding-top: 72px;
  }
  .pt130 {
    padding-top: 78px;
  }
  .pt140 {
    padding-top: 84px;
  }
  .pt150 {
    padding-top: 90px;
  }
  .pt160 {
    padding-top: 96px;
  }
  .pt170 {
    padding-top: 102px;
  }
  .pt180 {
    padding-top: 108px;
  }
  .pt190 {
    padding-top: 114px;
  }
  .pt200 {
    padding-top: 120px;
  }
  .pb {
    padding-bottom: 20px;
  }
  .pb5 {
    padding-bottom: 3px;
  }
  .pb10 {
    padding-bottom: 6px;
  }
  .pb15 {
    padding-bottom: 9px;
  }
  .pb20 {
    padding-bottom: 12px;
  }
  .pb25 {
    padding-bottom: 15px;
  }
  .pb30 {
    padding-bottom: 18px;
  }
  .pb35 {
    padding-bottom: 21px;
  }
  .pb40 {
    padding-bottom: 24px;
  }
  .pb45 {
    padding-bottom: 27px;
  }
  .pb50 {
    padding-bottom: 30px;
  }
  .pb55 {
    padding-bottom: 33px;
  }
  .pb60 {
    padding-bottom: 36px;
  }
  .pb65 {
    padding-bottom: 39px;
  }
  .pb70 {
    padding-bottom: 42px;
  }
  .pb75 {
    padding-bottom: 45px;
  }
  .pb80 {
    padding-bottom: 48px;
  }
  .pb85 {
    padding-bottom: 51px;
  }
  .pb90 {
    padding-bottom: 54px;
  }
  .pb95 {
    padding-bottom: 57px;
  }
  .pb100 {
    padding-bottom: 60px;
  }
  .pb60 {
    padding-bottom: 36px;
  }
  .pb70 {
    padding-bottom: 42px;
  }
  .pb80 {
    padding-bottom: 48px;
  }
  .pb90 {
    padding-bottom: 54px;
  }
  .pb100 {
    padding-bottom: 60px;
  }
  .mt {
    margin-top: 20px;
  }
  .mt5 {
    margin-top: 3px;
  }
  .mt10 {
    margin-top: 6px;
  }
  .mt15 {
    margin-top: 9px;
  }
  .mt20 {
    margin-top: 12px;
  }
  .mt25 {
    margin-top: 15px;
  }
  .mt30 {
    margin-top: 18px;
  }
  .mt35 {
    margin-top: 21px;
  }
  .mt40 {
    margin-top: 24px;
  }
  .mt45 {
    margin-top: 27px;
  }
  .mt50 {
    margin-top: 30px;
  }
  .mt55 {
    margin-top: 33px;
  }
  .mt60 {
    margin-top: 36px;
  }
  .mt65 {
    margin-top: 39px;
  }
  .mt70 {
    margin-top: 42px;
  }
  .mt75 {
    margin-top: 45px;
  }
  .mt80 {
    margin-top: 48px;
  }
  .mt85 {
    margin-top: 51px;
  }
  .mt90 {
    margin-top: 54px;
  }
  .mt95 {
    margin-top: 57px;
  }
  .mt100 {
    margin-top: 60px;
  }
  .mt60 {
    margin-top: 36px;
  }
  .mt70 {
    margin-top: 42px;
  }
  .mt80 {
    margin-top: 48px;
  }
  .mt90 {
    margin-top: 54px;
  }
  .mt100 {
    margin-top: 60px;
  }
  .mb {
    margin-bottom: 20px;
  }
  .mb5 {
    margin-bottom: 3px;
  }
  .mb10 {
    margin-bottom: 6px;
  }
  .mb15 {
    margin-bottom: 9px;
  }
  .mb20 {
    margin-bottom: 12px;
  }
  .mb25 {
    margin-bottom: 15px;
  }
  .mb30 {
    margin-bottom: 18px;
  }
  .mb35 {
    margin-bottom: 21px;
  }
  .mb40 {
    margin-bottom: 24px;
  }
  .mb45 {
    margin-bottom: 27px;
  }
  .mb50 {
    margin-bottom: 30px;
  }
  .mb55 {
    margin-bottom: 33px;
  }
  .mb60 {
    margin-bottom: 36px;
  }
  .mb65 {
    margin-bottom: 39px;
  }
  .mb70 {
    margin-bottom: 42px;
  }
  .mb75 {
    margin-bottom: 45px;
  }
  .mb80 {
    margin-bottom: 48px;
  }
  .mb85 {
    margin-bottom: 51px;
  }
  .mb90 {
    margin-bottom: 54px;
  }
  .mb95 {
    margin-bottom: 57px;
  }
  .mb100 {
    margin-bottom: 60px;
  }
  .mb60 {
    margin-bottom: 36px;
  }
  .mb70 {
    margin-bottom: 42px;
  }
  .mb80 {
    margin-bottom: 48px;
  }
  .mb90 {
    margin-bottom: 54px;
  }
  .mb100 {
    margin-bottom: 60px;
  }
  .pl {
    padding-left: 20px;
  }
  .pl5 {
    padding-left: 3px;
  }
  .pl10 {
    padding-left: 6px;
  }
  .pl15 {
    padding-left: 9px;
  }
  .pl20 {
    padding-left: 12px;
  }
  .pl25 {
    padding-left: 15px;
  }
  .pr {
    padding-right: 20px;
  }
  .pr5 {
    padding-right: 3px;
  }
  .pr10 {
    padding-right: 6px;
  }
  .pr15 {
    padding-right: 9px;
  }
  .pr20 {
    padding-right: 12px;
  }
  .pr25 {
    padding-right: 15px;
  }
  .ml {
    margin-left: 20px;
  }
  .ml5 {
    margin-left: 3px;
  }
  .ml10 {
    margin-left: 6px;
  }
  .ml15 {
    margin-left: 9px;
  }
  .ml20 {
    margin-left: 12px;
  }
  .ml25 {
    margin-left: 15px;
  }
  .mr {
    margin-right: 20px;
  }
  .mr5 {
    margin-right: 3px;
  }
  .mr10 {
    margin-right: 6px;
  }
  .mr15 {
    margin-right: 9px;
  }
  .mr20 {
    margin-right: 12px;
  }
  .mr25 {
    margin-right: 15px;
  }
}

/* padding & margin */
/* btn */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  max-width: 100%;
  height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  background: #009200;
  border: none;
  color: #FFF;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  font-size: 13px;
  font-size: 0.9285714286rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  top: 0;
  line-height: 1.2;
}

.btn:hover {
  text-decoration: none;
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.btn:disabled {
  pointer-events: none;
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.btn.sml {
  height: 35px;
  font-size: 14px;
  font-size: 1rem;
}

.btn.mdl {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  height: 50px;
  font-size: 17px;
  font-size: 1.2142857143rem;
  -webkit-box-shadow: 0 3px 0 0px #005900;
  -moz-box-shadow: 0 3px 0 0px #005900;
  -ms-box-shadow: 0 3px 0 0px #005900;
  -o-box-shadow: 0 3px 0 0px #005900;
  box-shadow: 0 3px 0 0px #005900;
}

.btn.mdl:active {
  top: 2px;
  -webkit-box-shadow: 0 1px 0 0px #005900;
  -moz-box-shadow: 0 1px 0 0px #005900;
  -ms-box-shadow: 0 1px 0 0px #005900;
  -o-box-shadow: 0 1px 0 0px #005900;
  box-shadow: 0 1px 0 0px #005900;
}

.btn.lg {
  height: 66px;
  font-size: 18px;
  font-size: 1.2857142857rem;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 0 0px #005900;
  -moz-box-shadow: 0 3px 0 0px #005900;
  -ms-box-shadow: 0 3px 0 0px #005900;
  -o-box-shadow: 0 3px 0 0px #005900;
  box-shadow: 0 3px 0 0px #005900;
}

.btn.lg:active {
  top: 2px;
  -webkit-box-shadow: 0 1px 0 0px #005900;
  -moz-box-shadow: 0 1px 0 0px #005900;
  -ms-box-shadow: 0 1px 0 0px #005900;
  -o-box-shadow: 0 1px 0 0px #005900;
  box-shadow: 0 1px 0 0px #005900;
}

@media screen and (max-width: 700px) {
  .btn.lg {
    height: 60px;
    font-size: 16px;
    font-size: 1.1428571429rem;
  }
}

.btn.xl {
  height: 72px;
  font-size: 30px;
  font-size: 2.1428571429rem;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
  -webkit-box-shadow: 0 3px 0 0px #005900;
  -moz-box-shadow: 0 3px 0 0px #005900;
  -ms-box-shadow: 0 3px 0 0px #005900;
  -o-box-shadow: 0 3px 0 0px #005900;
  box-shadow: 0 3px 0 0px #005900;
}

.btn.xl:active {
  top: 2px;
  -webkit-box-shadow: 0 1px 0 0px #005900;
  -moz-box-shadow: 0 1px 0 0px #005900;
  -ms-box-shadow: 0 1px 0 0px #005900;
  -o-box-shadow: 0 1px 0 0px #005900;
  box-shadow: 0 1px 0 0px #005900;
}

@media screen and (max-width: 700px) {
  .btn.xl {
    height: 60px;
    font-size: 16px;
    font-size: 1.1428571429rem;
  }
}

.btn.xl.orange {
  -webkit-box-shadow: 0 3px 0 0px #AE4300;
  -moz-box-shadow: 0 3px 0 0px #AE4300;
  -ms-box-shadow: 0 3px 0 0px #AE4300;
  -o-box-shadow: 0 3px 0 0px #AE4300;
  box-shadow: 0 3px 0 0px #AE4300;
  background: linear-gradient(0deg, #FF6100 0%, #FF8A00 100%);
}

.btn.xl.orange:active {
  -webkit-box-shadow: 0 1px 0 0px #AE4300;
  -moz-box-shadow: 0 1px 0 0px #AE4300;
  -ms-box-shadow: 0 1px 0 0px #AE4300;
  -o-box-shadow: 0 1px 0 0px #AE4300;
  box-shadow: 0 1px 0 0px #AE4300;
}

.btn.xl.arrow:after {
  width: 34px;
  height: 34px;
  background-size: contain;
}

@media screen and (max-width: 700px) {
  .btn.xl {
    height: 60px;
    font-size: 22px;
    font-size: 1.5714285714rem;
  }
  .btn.xl.arrow:after {
    width: 24px;
    height: 24px;
  }
}

.btn.orange {
  background-color: #FF7F30;
}

.btn.orange.mdl, .btn.orange.lg {
  -webkit-box-shadow: 0 3px 0 0px #AE4300;
  -moz-box-shadow: 0 3px 0 0px #AE4300;
  -ms-box-shadow: 0 3px 0 0px #AE4300;
  -o-box-shadow: 0 3px 0 0px #AE4300;
  box-shadow: 0 3px 0 0px #AE4300;
}

.btn.orange.mdl:active, .btn.orange.lg:active {
  -webkit-box-shadow: 0 1px 0 0px #AE4300;
  -moz-box-shadow: 0 1px 0 0px #AE4300;
  -ms-box-shadow: 0 1px 0 0px #AE4300;
  -o-box-shadow: 0 1px 0 0px #AE4300;
  box-shadow: 0 1px 0 0px #AE4300;
}

.btn.arrow:after {
  content: "";
  width: 19px;
  height: 18px;
  background: no-repeat center/auto;
  background-image: url(../img/common/arrow-btn.svg);
  margin-left: 10px;
}

.btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 -10px -15px;
}

.btn-block.left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.btn-block.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.btn-block.f-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.btn-block > * {
  margin: 0 10px 15px;
}

.btn-block > *.w5p {
  width: calc(5% - 20px);
}

.btn-block > *.w10p {
  width: calc(10% - 20px);
}

.btn-block > *.w15p {
  width: calc(15% - 20px);
}

.btn-block > *.w20p {
  width: calc(20% - 20px);
}

.btn-block > *.w25p {
  width: calc(25% - 20px);
}

.btn-block > *.w30p {
  width: calc(30% - 20px);
}

.btn-block > *.w35p {
  width: calc(35% - 20px);
}

.btn-block > *.w40p {
  width: calc(40% - 20px);
}

.btn-block > *.w45p {
  width: calc(45% - 20px);
}

.btn-block > *.w50p {
  width: calc(50% - 20px);
}

.btn-block > *.w55p {
  width: calc(55% - 20px);
}

.btn-block > *.w60p {
  width: calc(60% - 20px);
}

.btn-block > *.w65p {
  width: calc(65% - 20px);
}

.btn-block > *.w70p {
  width: calc(70% - 20px);
}

.btn-block > *.w75p {
  width: calc(75% - 20px);
}

.btn-block > *.w80p {
  width: calc(80% - 20px);
}

.btn-block > *.w85p {
  width: calc(85% - 20px);
}

.btn-block > *.w90p {
  width: calc(90% - 20px);
}

.btn-block > *.w95p {
  width: calc(95% - 20px);
}

.btn-block > *.w100p {
  width: calc(100% - 20px);
}

@media screen and (max-width: 700px) {
  .btn-block {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px -10px;
  }
  .btn-block > * {
    margin: 0 5px 10px;
  }
  .btn-block > *.w5p {
    width: calc(5% - 10px);
  }
  .btn-block > *.w5p-sp {
    width: calc(5% - 10px);
  }
  .btn-block > *.w10p {
    width: calc(10% - 10px);
  }
  .btn-block > *.w10p-sp {
    width: calc(10% - 10px);
  }
  .btn-block > *.w15p {
    width: calc(15% - 10px);
  }
  .btn-block > *.w15p-sp {
    width: calc(15% - 10px);
  }
  .btn-block > *.w20p {
    width: calc(20% - 10px);
  }
  .btn-block > *.w20p-sp {
    width: calc(20% - 10px);
  }
  .btn-block > *.w25p {
    width: calc(25% - 10px);
  }
  .btn-block > *.w25p-sp {
    width: calc(25% - 10px);
  }
  .btn-block > *.w30p {
    width: calc(30% - 10px);
  }
  .btn-block > *.w30p-sp {
    width: calc(30% - 10px);
  }
  .btn-block > *.w35p {
    width: calc(35% - 10px);
  }
  .btn-block > *.w35p-sp {
    width: calc(35% - 10px);
  }
  .btn-block > *.w40p {
    width: calc(40% - 10px);
  }
  .btn-block > *.w40p-sp {
    width: calc(40% - 10px);
  }
  .btn-block > *.w45p {
    width: calc(45% - 10px);
  }
  .btn-block > *.w45p-sp {
    width: calc(45% - 10px);
  }
  .btn-block > *.w50p {
    width: calc(50% - 10px);
  }
  .btn-block > *.w50p-sp {
    width: calc(50% - 10px);
  }
  .btn-block > *.w55p {
    width: calc(55% - 10px);
  }
  .btn-block > *.w55p-sp {
    width: calc(55% - 10px);
  }
  .btn-block > *.w60p {
    width: calc(60% - 10px);
  }
  .btn-block > *.w60p-sp {
    width: calc(60% - 10px);
  }
  .btn-block > *.w65p {
    width: calc(65% - 10px);
  }
  .btn-block > *.w65p-sp {
    width: calc(65% - 10px);
  }
  .btn-block > *.w70p {
    width: calc(70% - 10px);
  }
  .btn-block > *.w70p-sp {
    width: calc(70% - 10px);
  }
  .btn-block > *.w75p {
    width: calc(75% - 10px);
  }
  .btn-block > *.w75p-sp {
    width: calc(75% - 10px);
  }
  .btn-block > *.w80p {
    width: calc(80% - 10px);
  }
  .btn-block > *.w80p-sp {
    width: calc(80% - 10px);
  }
  .btn-block > *.w85p {
    width: calc(85% - 10px);
  }
  .btn-block > *.w85p-sp {
    width: calc(85% - 10px);
  }
  .btn-block > *.w90p {
    width: calc(90% - 10px);
  }
  .btn-block > *.w90p-sp {
    width: calc(90% - 10px);
  }
  .btn-block > *.w95p {
    width: calc(95% - 10px);
  }
  .btn-block > *.w95p-sp {
    width: calc(95% - 10px);
  }
  .btn-block > *.w100p {
    width: calc(100% - 10px);
  }
  .btn-block > *.w100p-sp {
    width: calc(100% - 10px);
  }
}

input.btn {
  display: -moz-inline-box;
  display: inline-block;
  font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* btn */
/* link */
.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #009200;
  font-size: 15px;
  font-size: 1.0714285714rem;
  font-weight: bold;
}

.link:after {
  content: "";
  width: 8px;
  height: 12px;
  background: no-repeat center/auto;
  background-image: url(../img/common/arrow-nav_green.svg);
  margin-left: 8px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link.back {
  color: #93D500;
}

.link.back:after {
  display: none;
}

.link.back:before {
  content: "";
  width: 12px;
  height: 12px;
  background: no-repeat center/auto;
  background-image: url(../img/common/arrow-link_back.svg);
  margin-right: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link.back:hover:before {
  -webkit-transform: translateX(-5px);
  -moz-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  -o-transform: translateX(-5px);
  transform: translateX(-5px);
}

.link:hover:after {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
}

.link-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 -10px -15px;
}

.link-block.left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.link-block.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.link-block.f-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.link-block > * {
  margin: 0 10px 15px;
}

.link-block > *.w5p {
  width: calc(5% - 20px);
}

.link-block > *.w10p {
  width: calc(10% - 20px);
}

.link-block > *.w15p {
  width: calc(15% - 20px);
}

.link-block > *.w20p {
  width: calc(20% - 20px);
}

.link-block > *.w25p {
  width: calc(25% - 20px);
}

.link-block > *.w30p {
  width: calc(30% - 20px);
}

.link-block > *.w35p {
  width: calc(35% - 20px);
}

.link-block > *.w40p {
  width: calc(40% - 20px);
}

.link-block > *.w45p {
  width: calc(45% - 20px);
}

.link-block > *.w50p {
  width: calc(50% - 20px);
}

.link-block > *.w55p {
  width: calc(55% - 20px);
}

.link-block > *.w60p {
  width: calc(60% - 20px);
}

.link-block > *.w65p {
  width: calc(65% - 20px);
}

.link-block > *.w70p {
  width: calc(70% - 20px);
}

.link-block > *.w75p {
  width: calc(75% - 20px);
}

.link-block > *.w80p {
  width: calc(80% - 20px);
}

.link-block > *.w85p {
  width: calc(85% - 20px);
}

.link-block > *.w90p {
  width: calc(90% - 20px);
}

.link-block > *.w95p {
  width: calc(95% - 20px);
}

.link-block > *.w100p {
  width: calc(100% - 20px);
}

@media screen and (max-width: 700px) {
  .link-block {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px -10px;
  }
  .link-block > * {
    margin: 0 5px 10px;
  }
  .link-block > *.w5p {
    width: calc(5% - 10px);
  }
  .link-block > *.w5p-sp {
    width: calc(5% - 10px);
  }
  .link-block > *.w10p {
    width: calc(10% - 10px);
  }
  .link-block > *.w10p-sp {
    width: calc(10% - 10px);
  }
  .link-block > *.w15p {
    width: calc(15% - 10px);
  }
  .link-block > *.w15p-sp {
    width: calc(15% - 10px);
  }
  .link-block > *.w20p {
    width: calc(20% - 10px);
  }
  .link-block > *.w20p-sp {
    width: calc(20% - 10px);
  }
  .link-block > *.w25p {
    width: calc(25% - 10px);
  }
  .link-block > *.w25p-sp {
    width: calc(25% - 10px);
  }
  .link-block > *.w30p {
    width: calc(30% - 10px);
  }
  .link-block > *.w30p-sp {
    width: calc(30% - 10px);
  }
  .link-block > *.w35p {
    width: calc(35% - 10px);
  }
  .link-block > *.w35p-sp {
    width: calc(35% - 10px);
  }
  .link-block > *.w40p {
    width: calc(40% - 10px);
  }
  .link-block > *.w40p-sp {
    width: calc(40% - 10px);
  }
  .link-block > *.w45p {
    width: calc(45% - 10px);
  }
  .link-block > *.w45p-sp {
    width: calc(45% - 10px);
  }
  .link-block > *.w50p {
    width: calc(50% - 10px);
  }
  .link-block > *.w50p-sp {
    width: calc(50% - 10px);
  }
  .link-block > *.w55p {
    width: calc(55% - 10px);
  }
  .link-block > *.w55p-sp {
    width: calc(55% - 10px);
  }
  .link-block > *.w60p {
    width: calc(60% - 10px);
  }
  .link-block > *.w60p-sp {
    width: calc(60% - 10px);
  }
  .link-block > *.w65p {
    width: calc(65% - 10px);
  }
  .link-block > *.w65p-sp {
    width: calc(65% - 10px);
  }
  .link-block > *.w70p {
    width: calc(70% - 10px);
  }
  .link-block > *.w70p-sp {
    width: calc(70% - 10px);
  }
  .link-block > *.w75p {
    width: calc(75% - 10px);
  }
  .link-block > *.w75p-sp {
    width: calc(75% - 10px);
  }
  .link-block > *.w80p {
    width: calc(80% - 10px);
  }
  .link-block > *.w80p-sp {
    width: calc(80% - 10px);
  }
  .link-block > *.w85p {
    width: calc(85% - 10px);
  }
  .link-block > *.w85p-sp {
    width: calc(85% - 10px);
  }
  .link-block > *.w90p {
    width: calc(90% - 10px);
  }
  .link-block > *.w90p-sp {
    width: calc(90% - 10px);
  }
  .link-block > *.w95p {
    width: calc(95% - 10px);
  }
  .link-block > *.w95p-sp {
    width: calc(95% - 10px);
  }
  .link-block > *.w100p {
    width: calc(100% - 10px);
  }
  .link-block > *.w100p-sp {
    width: calc(100% - 10px);
  }
}

/* link */
/* cat */
.cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #009200;
  font-size: 12px;
  font-size: 0.8571428571rem;
  font-weight: bold;
  line-height: 1.2;
  color: #FFF;
  padding: 6px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cat:hover {
  text-decoration: none;
  background-color: #00c500;
  color: #FFF;
}

.cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 -5px -10px 0;
}

.cat-list.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.cat-list.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.cat-list.f-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cat-list > * {
  margin: 0 5px 10px 0;
}

.cat-list > *.w5p {
  width: calc(5% - 20px);
}

.cat-list > *.w10p {
  width: calc(10% - 20px);
}

.cat-list > *.w15p {
  width: calc(15% - 20px);
}

.cat-list > *.w20p {
  width: calc(20% - 20px);
}

.cat-list > *.w25p {
  width: calc(25% - 20px);
}

.cat-list > *.w30p {
  width: calc(30% - 20px);
}

.cat-list > *.w35p {
  width: calc(35% - 20px);
}

.cat-list > *.w40p {
  width: calc(40% - 20px);
}

.cat-list > *.w45p {
  width: calc(45% - 20px);
}

.cat-list > *.w50p {
  width: calc(50% - 20px);
}

.cat-list > *.w55p {
  width: calc(55% - 20px);
}

.cat-list > *.w60p {
  width: calc(60% - 20px);
}

.cat-list > *.w65p {
  width: calc(65% - 20px);
}

.cat-list > *.w70p {
  width: calc(70% - 20px);
}

.cat-list > *.w75p {
  width: calc(75% - 20px);
}

.cat-list > *.w80p {
  width: calc(80% - 20px);
}

.cat-list > *.w85p {
  width: calc(85% - 20px);
}

.cat-list > *.w90p {
  width: calc(90% - 20px);
}

.cat-list > *.w95p {
  width: calc(95% - 20px);
}

.cat-list > *.w100p {
  width: calc(100% - 20px);
}

@media screen and (max-width: 700px) {
  .cat-list {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px -10px;
  }
  .cat-list > * {
    margin: 0 5px 10px;
  }
  .cat-list > *.w5p {
    width: calc(5% - 10px);
  }
  .cat-list > *.w5p-sp {
    width: calc(5% - 10px);
  }
  .cat-list > *.w10p {
    width: calc(10% - 10px);
  }
  .cat-list > *.w10p-sp {
    width: calc(10% - 10px);
  }
  .cat-list > *.w15p {
    width: calc(15% - 10px);
  }
  .cat-list > *.w15p-sp {
    width: calc(15% - 10px);
  }
  .cat-list > *.w20p {
    width: calc(20% - 10px);
  }
  .cat-list > *.w20p-sp {
    width: calc(20% - 10px);
  }
  .cat-list > *.w25p {
    width: calc(25% - 10px);
  }
  .cat-list > *.w25p-sp {
    width: calc(25% - 10px);
  }
  .cat-list > *.w30p {
    width: calc(30% - 10px);
  }
  .cat-list > *.w30p-sp {
    width: calc(30% - 10px);
  }
  .cat-list > *.w35p {
    width: calc(35% - 10px);
  }
  .cat-list > *.w35p-sp {
    width: calc(35% - 10px);
  }
  .cat-list > *.w40p {
    width: calc(40% - 10px);
  }
  .cat-list > *.w40p-sp {
    width: calc(40% - 10px);
  }
  .cat-list > *.w45p {
    width: calc(45% - 10px);
  }
  .cat-list > *.w45p-sp {
    width: calc(45% - 10px);
  }
  .cat-list > *.w50p {
    width: calc(50% - 10px);
  }
  .cat-list > *.w50p-sp {
    width: calc(50% - 10px);
  }
  .cat-list > *.w55p {
    width: calc(55% - 10px);
  }
  .cat-list > *.w55p-sp {
    width: calc(55% - 10px);
  }
  .cat-list > *.w60p {
    width: calc(60% - 10px);
  }
  .cat-list > *.w60p-sp {
    width: calc(60% - 10px);
  }
  .cat-list > *.w65p {
    width: calc(65% - 10px);
  }
  .cat-list > *.w65p-sp {
    width: calc(65% - 10px);
  }
  .cat-list > *.w70p {
    width: calc(70% - 10px);
  }
  .cat-list > *.w70p-sp {
    width: calc(70% - 10px);
  }
  .cat-list > *.w75p {
    width: calc(75% - 10px);
  }
  .cat-list > *.w75p-sp {
    width: calc(75% - 10px);
  }
  .cat-list > *.w80p {
    width: calc(80% - 10px);
  }
  .cat-list > *.w80p-sp {
    width: calc(80% - 10px);
  }
  .cat-list > *.w85p {
    width: calc(85% - 10px);
  }
  .cat-list > *.w85p-sp {
    width: calc(85% - 10px);
  }
  .cat-list > *.w90p {
    width: calc(90% - 10px);
  }
  .cat-list > *.w90p-sp {
    width: calc(90% - 10px);
  }
  .cat-list > *.w95p {
    width: calc(95% - 10px);
  }
  .cat-list > *.w95p-sp {
    width: calc(95% - 10px);
  }
  .cat-list > *.w100p {
    width: calc(100% - 10px);
  }
  .cat-list > *.w100p-sp {
    width: calc(100% - 10px);
  }
}

/* cat */
/* tag */
.tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #DEF5ED;
  font-size: 13px;
  font-size: 0.9285714286rem;
  font-weight: bold;
  line-height: 1.2;
  color: #3B8347;
  padding: 6px 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tag:before {
  content: "#";
  margin-right: 3px;
}

.tag:hover {
  text-decoration: none;
  background-color: #3B8347;
  color: #FFF;
}

.tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-right: -8px;
  margin-bottom: -16px;
}

.tag-list.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.tag-list.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.tag-list.f-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tag-list > * {
  margin-right: 8px;
  margin-bottom: 16px;
}

.tag-list > *.w5p {
  width: calc(5% - 8px);
}

.tag-list > *.w10p {
  width: calc(10% - 8px);
}

.tag-list > *.w15p {
  width: calc(15% - 8px);
}

.tag-list > *.w20p {
  width: calc(20% - 8px);
}

.tag-list > *.w25p {
  width: calc(25% - 8px);
}

.tag-list > *.w30p {
  width: calc(30% - 8px);
}

.tag-list > *.w35p {
  width: calc(35% - 8px);
}

.tag-list > *.w40p {
  width: calc(40% - 8px);
}

.tag-list > *.w45p {
  width: calc(45% - 8px);
}

.tag-list > *.w50p {
  width: calc(50% - 8px);
}

.tag-list > *.w55p {
  width: calc(55% - 8px);
}

.tag-list > *.w60p {
  width: calc(60% - 8px);
}

.tag-list > *.w65p {
  width: calc(65% - 8px);
}

.tag-list > *.w70p {
  width: calc(70% - 8px);
}

.tag-list > *.w75p {
  width: calc(75% - 8px);
}

.tag-list > *.w80p {
  width: calc(80% - 8px);
}

.tag-list > *.w85p {
  width: calc(85% - 8px);
}

.tag-list > *.w90p {
  width: calc(90% - 8px);
}

.tag-list > *.w95p {
  width: calc(95% - 8px);
}

.tag-list > *.w100p {
  width: calc(100% - 8px);
}

/* tag */
/* form */
textarea {
  -webkit-appearance: none;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  resize: vertical;
  border: 1px solid #EDEDED;
  background: #FFF;
  font-size: 14px;
  font-size: 1rem;
  padding: 10px;
  font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

textarea:focus {
  background-color: #FFF;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -ms-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -o-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
}

textarea.h100 {
  height: 100px;
}

textarea::placeholder {
  color: #686868;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="number"], input[type="search"] {
  -webkit-appearance: none;
  height: 50px;
  line-height: 50px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: 1px solid #EDEDED;
  font-size: 14px;
  font-size: 1rem;
  position: relative;
  padding-left: 10px;
  background: #FFF;
  font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="search"]:focus {
  background-color: #FFF;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -ms-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -o-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
}

input[type="text"].lg, input[type="email"].lg, input[type="tel"].lg, input[type="password"].lg, input[type="number"].lg, input[type="search"].lg {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.2857142857rem;
}

input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="tel"]::placeholder, input[type="password"]::placeholder, input[type="number"]::placeholder, input[type="search"]::placeholder {
  color: #686868;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + .checkbox:after {
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + .radio:after {
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
}

label.checkbox {
  padding-left: 30px;
  min-height: 20px;
  cursor: pointer;
  margin: 0;
  display: -moz-inline-box;
  display: inline-block;
  font-weight: normal;
  position: relative;
  line-height: 1.5;
}

label.checkbox.single {
  width: 20px;
  padding-left: 0;
}

label.checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: -moz-inline-box;
  display: inline-block;
  width: 21px;
  height: 21px;
  background-color: #FFF;
  border: 1px solid #EDEDED;
  margin-top: 2px;
}

label.checkbox:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 8px;
  display: block;
  width: 5px;
  height: 10px;
  border-right: 2px solid #222222;
  border-bottom: 2px solid #222222;
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  z-index: 1;
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  margin-top: 2px;
}

label.radio {
  padding-left: 30px;
  min-height: 24px;
  cursor: pointer;
  margin: 0;
  display: -moz-inline-box;
  display: inline-block;
  font-weight: normal;
  position: relative;
  line-height: 1.5;
}

label.radio.single {
  width: 20px;
  padding-left: 0;
}

label.radio:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  display: -moz-inline-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #EDEDED;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #FFF;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  margin-top: 2px;
}

label.radio:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #222222;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 2px;
}

label.select {
  position: relative;
  display: block;
  max-width: 100%;
}

label.select:after {
  position: absolute;
  content: "";
  display: block;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #EDEDED transparent transparent transparent;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  pointer-events: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 50px;
  width: 100%;
  line-height: 50px;
  max-width: 100%;
  padding: 0 40px 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #EDEDED;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  background: #FFF;
  cursor: pointer;
  font-size: 14px;
  font-size: 1rem;
  font-weight: normal;
  position: relative;
  font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

select option {
  padding: 8px;
  border: none;
}

select.lg {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.2857142857rem;
}

select::-ms-expand {
  display: none;
}

.check-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-bottom: -5px;
}

.check-radios > * {
  margin: 0 15px 5px 0;
}

.check-radios .horizontal-item {
  margin-left: 0;
}

.check-radios .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.check-radios.vertical {
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* form */
/* table */
table {
  width: calc(100% + 4px * 2);
  background-color: #FFF;
  margin-left: -4px;
  margin-right: -4px;
}

.scroll-block table {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

table th, table td {
  padding: 10px;
  border: 4px solid #FFF;
  vertical-align: middle;
}

table th {
  background-color: #EAF8C5;
  font-weight: bold;
  color: #009200;
}

table td {
  background-color: #F8F8F8;
}

table thead th {
  background-color: #EAF8C5;
  color: #009200;
  padding: 5px;
  text-align: center;
}

@media screen and (max-width: 700px) {
  table.sp-column {
    display: block;
    border: 1px solid #EDEDED;
  }
  table.sp-column thead, table.sp-column tbody, table.sp-column tr, table.sp-column th, table.sp-column td {
    display: block;
  }
  table.sp-column th, table.sp-column td {
    padding: 10px;
    border: none;
  }
}

/* table */
/* text */
.heading, .heading-lv03, .heading-lv02, .heading-lv01 {
  line-height: 1.4;
}

.heading:not(:last-child), .heading-lv03:not(:last-child), .heading-lv02:not(:last-child), .heading-lv01:not(:last-child) {
  margin-bottom: 50px;
}

@media screen and (max-width: 700px) {
  .heading:not(:last-child), .heading-lv03:not(:last-child), .heading-lv02:not(:last-child), .heading-lv01:not(:last-child) {
    margin-bottom: 40px;
  }
}

.heading-lv01 {
  font-size: 32px;
  font-size: 2.2857142857rem;
  text-align: center;
  color: #009200;
}

.heading-lv01 span {
  border-bottom: 2px solid #009200;
}

.heading-lv01.white {
  color: #FFF;
}

.heading-lv01.white span {
  border-bottom-color: #FFF;
}

.heading-lv01 + .sub {
  text-align: center;
  font-size: 17px;
  font-size: 1.2142857143rem;
  font-weight: bold;
  color: #009200;
  margin-top: -25px;
}

.heading-lv01 + .sub span {
  background: #FFF;
  padding: 3px 8px;
  line-height: 1.1;
}

.heading-lv01 + .sub:not(:last-child) {
  margin-bottom: 65px;
}

@media screen and (max-width: 700px) {
  .heading-lv01 {
    font-size: 23px;
    font-size: 1.6428571429rem;
  }
  .heading-lv01 + .sub {
    font-size: 17px;
    font-size: 1.2142857143rem;
  }
  .heading-lv01 + .sub:not(:last-child) {
    margin-bottom: 25px;
  }
}

.heading-lv02 {
  font-size: 23px;
  font-size: 1.6428571429rem;
  font-weight: bold;
  text-align: center;
}

.heading-lv02:not(:last-child) {
  margin-bottom: 40px;
}

@media screen and (max-width: 700px) {
  .heading-lv02:not(:last-child) {
    bottom: 30px;
  }
}

.heading-lv02 > span {
  display: block;
}

.heading-lv02 > span:nth-child(1) {
  font-family: 'Lato', sans-serif;
  font-size: 43px;
  font-size: 3.0714285714rem;
  font-weight: 700;
  color: #93D500;
  line-height: 1;
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 12px;
}

.heading-lv02 > span:nth-child(1):after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 38px;
  height: 2px;
  background: #93D500;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.heading-lv02 + .sub {
  text-align: center;
  font-size: 16px;
  font-size: 1.1428571429rem;
  font-weight: 700;
  width: 646px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -20px;
}

.heading-lv02 + .sub:not(:last-child) {
  margin-bottom: 90px;
}

@media screen and (max-width: 700px) {
  .heading-lv02 + .sub {
    margin-top: -10px;
    text-align: left;
  }
  .heading-lv02 + .sub:not(:last-child) {
    margin-bottom: 80px;
  }
}

.heading-lv03 {
  font-size: 24px;
  font-size: 1.7142857143rem;
  font-weight: bold;
  text-align: center;
  color: #009200;
}

.heading-lv03:not(.no-border) {
  background: url(../img/next/line-hd.svg) no-repeat center bottom;
  padding-bottom: 36px;
}

@media screen and (max-width: 700px) {
  .heading-lv03:not(.no-border) {
    background-size: 222px auto;
    padding-bottom: 30px;
  }
}

.heading-lv03:not(:last-child) {
  margin-bottom: 40px;
}

@media screen and (max-width: 700px) {
  .heading-lv03 {
    font-size: 20px;
    font-size: 1.4285714286rem;
  }
}

.heading-lv04 {
  text-align: center;
  background: #EAF8C5;
  font-size: 16px;
  font-size: 1.1428571429rem;
  font-weight: bold;
  color: #009200;
  padding: 5px;
}

.heading-lv04:not(:last-child) {
  margin-bottom: 25px;
}

.heading-lv04:not(:first-child) {
  margin-top: 32px;
}

.fs11 {
  font-size: 11px;
  font-size: 0.7857142857rem;
}

.fs12 {
  font-size: 12px;
  font-size: 0.8571428571rem;
}

.fs13 {
  font-size: 13px;
  font-size: 0.9285714286rem;
}

.fs14 {
  font-size: 14px;
  font-size: 1rem;
}

.fs15 {
  font-size: 15px;
  font-size: 1.0714285714rem;
}

.fs16 {
  font-size: 16px;
  font-size: 1.1428571429rem;
}

.fs17 {
  font-size: 17px;
  font-size: 1.2142857143rem;
}

.fs18 {
  font-size: 18px;
  font-size: 1.2857142857rem;
}

.fs19 {
  font-size: 19px;
  font-size: 1.3571428571rem;
}

.fs20 {
  font-size: 20px;
  font-size: 1.4285714286rem;
}

.fs21 {
  font-size: 21px;
  font-size: 1.5rem;
}

.fs22 {
  font-size: 22px;
  font-size: 1.5714285714rem;
}

.fs23 {
  font-size: 23px;
  font-size: 1.6428571429rem;
}

.fs24 {
  font-size: 24px;
  font-size: 1.7142857143rem;
}

.fs25 {
  font-size: 25px;
  font-size: 1.7857142857rem;
}

.fs26 {
  font-size: 26px;
  font-size: 1.8571428571rem;
}

.fs27 {
  font-size: 27px;
  font-size: 1.9285714286rem;
}

.fs28 {
  font-size: 28px;
  font-size: 2rem;
}

.fs29 {
  font-size: 29px;
  font-size: 2.0714285714rem;
}

.fs30 {
  font-size: 30px;
  font-size: 2.1428571429rem;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.text-orange {
  color: #FF7F30;
}

.text-green {
  color: #009200;
}

.text-red {
  color: #ff0000;
}

.text-blue {
  color: #2a90cd;
}

.text-bold {
  font-weight: bold;
}

/* text */
/* etc */
.lh0 {
  line-height: 0;
}

.w10 {
  width: 10px;
}

.w20 {
  width: 20px;
}

.w30 {
  width: 30px;
}

.w40 {
  width: 40px;
}

.w50 {
  width: 50px;
}

.w60 {
  width: 60px;
}

.w70 {
  width: 70px;
}

.w80 {
  width: 80px;
}

.w90 {
  width: 90px;
}

.w100 {
  width: 100px;
}

.w110 {
  width: 110px;
}

.w120 {
  width: 120px;
}

.w130 {
  width: 130px;
}

.w140 {
  width: 140px;
}

.w150 {
  width: 150px;
}

.w160 {
  width: 160px;
}

.w170 {
  width: 170px;
}

.w180 {
  width: 180px;
}

.w190 {
  width: 190px;
}

.w200 {
  width: 200px;
}

.w210 {
  width: 210px;
}

.w220 {
  width: 220px;
}

.w230 {
  width: 230px;
}

.w240 {
  width: 240px;
}

.w250 {
  width: 250px;
}

.w260 {
  width: 260px;
}

.w270 {
  width: 270px;
}

.w280 {
  width: 280px;
}

.w290 {
  width: 290px;
}

.w300 {
  width: 300px;
}

.w310 {
  width: 310px;
}

.w320 {
  width: 320px;
}

.w330 {
  width: 330px;
}

.w340 {
  width: 340px;
}

.w350 {
  width: 350px;
}

.w360 {
  width: 360px;
}

.w370 {
  width: 370px;
}

.w380 {
  width: 380px;
}

.w390 {
  width: 390px;
}

.w400 {
  width: 400px;
}

.w410 {
  width: 410px;
}

.w420 {
  width: 420px;
}

.w430 {
  width: 430px;
}

.w440 {
  width: 440px;
}

.w450 {
  width: 450px;
}

.w460 {
  width: 460px;
}

.w470 {
  width: 470px;
}

.w480 {
  width: 480px;
}

.w490 {
  width: 490px;
}

.w500 {
  width: 500px;
}

.w150 {
  width: 150px;
}

.w200 {
  width: 200px;
}

.w250 {
  width: 250px;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w400 {
  width: 400px;
}

.w450 {
  width: 450px;
}

.w500 {
  width: 500px;
}

.w5p {
  width: 5%;
}

.w10p {
  width: 10%;
}

.w15p {
  width: 15%;
}

.w20p {
  width: 20%;
}

.w25p {
  width: 25%;
}

.w30p {
  width: 30%;
}

.w35p {
  width: 35%;
}

.w40p {
  width: 40%;
}

.w45p {
  width: 45%;
}

.w50p {
  width: 50%;
}

.w55p {
  width: 55%;
}

.w60p {
  width: 60%;
}

.w65p {
  width: 65%;
}

.w70p {
  width: 70%;
}

.w75p {
  width: 75%;
}

.w80p {
  width: 80%;
}

.w85p {
  width: 85%;
}

.w90p {
  width: 90%;
}

.w95p {
  width: 95%;
}

.w100p {
  width: 100%;
}

@media screen and (max-width: 700px) {
  .w10-sp {
    width: 10px;
  }
}

@media screen and (max-width: 700px) {
  .w20-sp {
    width: 20px;
  }
}

@media screen and (max-width: 700px) {
  .w30-sp {
    width: 30px;
  }
}

@media screen and (max-width: 700px) {
  .w40-sp {
    width: 40px;
  }
}

@media screen and (max-width: 700px) {
  .w50-sp {
    width: 50px;
  }
}

@media screen and (max-width: 700px) {
  .w60-sp {
    width: 60px;
  }
}

@media screen and (max-width: 700px) {
  .w70-sp {
    width: 70px;
  }
}

@media screen and (max-width: 700px) {
  .w80-sp {
    width: 80px;
  }
}

@media screen and (max-width: 700px) {
  .w90-sp {
    width: 90px;
  }
}

@media screen and (max-width: 700px) {
  .w100-sp {
    width: 100px;
  }
}

@media screen and (max-width: 700px) {
  .w110-sp {
    width: 110px;
  }
}

@media screen and (max-width: 700px) {
  .w120-sp {
    width: 120px;
  }
}

@media screen and (max-width: 700px) {
  .w130-sp {
    width: 130px;
  }
}

@media screen and (max-width: 700px) {
  .w140-sp {
    width: 140px;
  }
}

@media screen and (max-width: 700px) {
  .w150-sp {
    width: 150px;
  }
}

@media screen and (max-width: 700px) {
  .w160-sp {
    width: 160px;
  }
}

@media screen and (max-width: 700px) {
  .w170-sp {
    width: 170px;
  }
}

@media screen and (max-width: 700px) {
  .w180-sp {
    width: 180px;
  }
}

@media screen and (max-width: 700px) {
  .w190-sp {
    width: 190px;
  }
}

@media screen and (max-width: 700px) {
  .w200-sp {
    width: 200px;
  }
}

@media screen and (max-width: 700px) {
  .w210-sp {
    width: 210px;
  }
}

@media screen and (max-width: 700px) {
  .w220-sp {
    width: 220px;
  }
}

@media screen and (max-width: 700px) {
  .w230-sp {
    width: 230px;
  }
}

@media screen and (max-width: 700px) {
  .w240-sp {
    width: 240px;
  }
}

@media screen and (max-width: 700px) {
  .w250-sp {
    width: 250px;
  }
}

@media screen and (max-width: 700px) {
  .w260-sp {
    width: 260px;
  }
}

@media screen and (max-width: 700px) {
  .w270-sp {
    width: 270px;
  }
}

@media screen and (max-width: 700px) {
  .w280-sp {
    width: 280px;
  }
}

@media screen and (max-width: 700px) {
  .w290-sp {
    width: 290px;
  }
}

@media screen and (max-width: 700px) {
  .w300-sp {
    width: 300px;
  }
}

@media screen and (max-width: 700px) {
  .w310-sp {
    width: 310px;
  }
}

@media screen and (max-width: 700px) {
  .w320-sp {
    width: 320px;
  }
}

@media screen and (max-width: 700px) {
  .w330-sp {
    width: 330px;
  }
}

@media screen and (max-width: 700px) {
  .w340-sp {
    width: 340px;
  }
}

@media screen and (max-width: 700px) {
  .w350-sp {
    width: 350px;
  }
}

@media screen and (max-width: 700px) {
  .w360-sp {
    width: 360px;
  }
}

@media screen and (max-width: 700px) {
  .w370-sp {
    width: 370px;
  }
}

@media screen and (max-width: 700px) {
  .w380-sp {
    width: 380px;
  }
}

@media screen and (max-width: 700px) {
  .w390-sp {
    width: 390px;
  }
}

@media screen and (max-width: 700px) {
  .w400-sp {
    width: 400px;
  }
}

@media screen and (max-width: 700px) {
  .w410-sp {
    width: 410px;
  }
}

@media screen and (max-width: 700px) {
  .w420-sp {
    width: 420px;
  }
}

@media screen and (max-width: 700px) {
  .w430-sp {
    width: 430px;
  }
}

@media screen and (max-width: 700px) {
  .w440-sp {
    width: 440px;
  }
}

@media screen and (max-width: 700px) {
  .w450-sp {
    width: 450px;
  }
}

@media screen and (max-width: 700px) {
  .w460-sp {
    width: 460px;
  }
}

@media screen and (max-width: 700px) {
  .w470-sp {
    width: 470px;
  }
}

@media screen and (max-width: 700px) {
  .w480-sp {
    width: 480px;
  }
}

@media screen and (max-width: 700px) {
  .w490-sp {
    width: 490px;
  }
}

@media screen and (max-width: 700px) {
  .w500-sp {
    width: 500px;
  }
}

@media screen and (max-width: 700px) {
  .w150-sp {
    width: 150px;
  }
}

@media screen and (max-width: 700px) {
  .w200-sp {
    width: 200px;
  }
}

@media screen and (max-width: 700px) {
  .w250-sp {
    width: 250px;
  }
}

@media screen and (max-width: 700px) {
  .w300-sp {
    width: 300px;
  }
}

@media screen and (max-width: 700px) {
  .w350-sp {
    width: 350px;
  }
}

@media screen and (max-width: 700px) {
  .w400-sp {
    width: 400px;
  }
}

@media screen and (max-width: 700px) {
  .w450-sp {
    width: 450px;
  }
}

@media screen and (max-width: 700px) {
  .w500-sp {
    width: 500px;
  }
}

@media screen and (max-width: 700px) {
  .w5p-sp {
    width: 5%;
  }
}

@media screen and (max-width: 700px) {
  .w10p-sp {
    width: 10%;
  }
}

@media screen and (max-width: 700px) {
  .w15p-sp {
    width: 15%;
  }
}

@media screen and (max-width: 700px) {
  .w20p-sp {
    width: 20%;
  }
}

@media screen and (max-width: 700px) {
  .w25p-sp {
    width: 25%;
  }
}

@media screen and (max-width: 700px) {
  .w30p-sp {
    width: 30%;
  }
}

@media screen and (max-width: 700px) {
  .w35p-sp {
    width: 35%;
  }
}

@media screen and (max-width: 700px) {
  .w40p-sp {
    width: 40%;
  }
}

@media screen and (max-width: 700px) {
  .w45p-sp {
    width: 45%;
  }
}

@media screen and (max-width: 700px) {
  .w50p-sp {
    width: 50%;
  }
}

@media screen and (max-width: 700px) {
  .w55p-sp {
    width: 55%;
  }
}

@media screen and (max-width: 700px) {
  .w60p-sp {
    width: 60%;
  }
}

@media screen and (max-width: 700px) {
  .w65p-sp {
    width: 65%;
  }
}

@media screen and (max-width: 700px) {
  .w70p-sp {
    width: 70%;
  }
}

@media screen and (max-width: 700px) {
  .w75p-sp {
    width: 75%;
  }
}

@media screen and (max-width: 700px) {
  .w80p-sp {
    width: 80%;
  }
}

@media screen and (max-width: 700px) {
  .w85p-sp {
    width: 85%;
  }
}

@media screen and (max-width: 700px) {
  .w90p-sp {
    width: 90%;
  }
}

@media screen and (max-width: 700px) {
  .w95p-sp {
    width: 95%;
  }
}

@media screen and (max-width: 700px) {
  .w100p-sp {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  br.pc {
    display: none;
  }
}

br.tablet {
  display: none;
}

@media screen and (min-width: 701px) and (max-width: 890px) {
  br.tablet {
    display: inline;
  }
}

br.sp {
  display: none;
}

@media screen and (max-width: 700px) {
  br.sp {
    display: inline;
  }
}

@media screen and (max-width: 700px) {
  img.pc {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  img.sp {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .hidden-sp {
    display: none;
  }
}

/* etc */
/* column */
.column-style, .column-04, .column-03, .column-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -30px;
}

.column-style:last-child, .column-04:last-child, .column-03:last-child, .column-02:last-child {
  margin-bottom: -30px;
}

.column-style > *, .column-04 > *, .column-03 > *, .column-02 > * {
  width: 10px;
  margin-right: 30px;
  margin-bottom: 30px;
}

@media screen and (min-width: 501px) {
  .column-style > *.w5p, .column-04 > *.w5p, .column-03 > *.w5p, .column-02 > *.w5p {
    width: calc(5% - 30px);
  }
  .column-style > *.w10p, .column-04 > *.w10p, .column-03 > *.w10p, .column-02 > *.w10p {
    width: calc(10% - 30px);
  }
  .column-style > *.w15p, .column-04 > *.w15p, .column-03 > *.w15p, .column-02 > *.w15p {
    width: calc(15% - 30px);
  }
  .column-style > *.w20p, .column-04 > *.w20p, .column-03 > *.w20p, .column-02 > *.w20p {
    width: calc(20% - 30px);
  }
  .column-style > *.w25p, .column-04 > *.w25p, .column-03 > *.w25p, .column-02 > *.w25p {
    width: calc(25% - 30px);
  }
  .column-style > *.w30p, .column-04 > *.w30p, .column-03 > *.w30p, .column-02 > *.w30p {
    width: calc(30% - 30px);
  }
  .column-style > *.w35p, .column-04 > *.w35p, .column-03 > *.w35p, .column-02 > *.w35p {
    width: calc(35% - 30px);
  }
  .column-style > *.w40p, .column-04 > *.w40p, .column-03 > *.w40p, .column-02 > *.w40p {
    width: calc(40% - 30px);
  }
  .column-style > *.w45p, .column-04 > *.w45p, .column-03 > *.w45p, .column-02 > *.w45p {
    width: calc(45% - 30px);
  }
  .column-style > *.w50p, .column-04 > *.w50p, .column-03 > *.w50p, .column-02 > *.w50p {
    width: calc(50% - 30px);
  }
  .column-style > *.w55p, .column-04 > *.w55p, .column-03 > *.w55p, .column-02 > *.w55p {
    width: calc(55% - 30px);
  }
  .column-style > *.w60p, .column-04 > *.w60p, .column-03 > *.w60p, .column-02 > *.w60p {
    width: calc(60% - 30px);
  }
  .column-style > *.w65p, .column-04 > *.w65p, .column-03 > *.w65p, .column-02 > *.w65p {
    width: calc(65% - 30px);
  }
  .column-style > *.w70p, .column-04 > *.w70p, .column-03 > *.w70p, .column-02 > *.w70p {
    width: calc(70% - 30px);
  }
  .column-style > *.w75p, .column-04 > *.w75p, .column-03 > *.w75p, .column-02 > *.w75p {
    width: calc(75% - 30px);
  }
  .column-style > *.w80p, .column-04 > *.w80p, .column-03 > *.w80p, .column-02 > *.w80p {
    width: calc(80% - 30px);
  }
  .column-style > *.w85p, .column-04 > *.w85p, .column-03 > *.w85p, .column-02 > *.w85p {
    width: calc(85% - 30px);
  }
  .column-style > *.w90p, .column-04 > *.w90p, .column-03 > *.w90p, .column-02 > *.w90p {
    width: calc(90% - 30px);
  }
  .column-style > *.w95p, .column-04 > *.w95p, .column-03 > *.w95p, .column-02 > *.w95p {
    width: calc(95% - 30px);
  }
  .column-style > *.w100p, .column-04 > *.w100p, .column-03 > *.w100p, .column-02 > *.w100p {
    width: calc(100% - 30px);
  }
}

@media screen and (max-width: 700px) {
  .column-style, .column-04, .column-03, .column-02 {
    margin-right: -20px;
  }
  .column-style:last-child, .column-04:last-child, .column-03:last-child, .column-02:last-child {
    margin-bottom: -20px;
  }
  .column-style > *, .column-04 > *, .column-03 > *, .column-02 > * {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}

.column-02 > * {
  width: calc(50% - 30px);
}

.column-03 > * {
  width: calc(33.3333% - 30px);
}

.column-04 > * {
  width: calc(25% - 30px);
}

@media screen and (max-width: 700px) {
  .column-02 > * {
    width: calc(50% - 20px);
  }
  .column-03 > * {
    width: calc(50% - 20px);
  }
  .column-04 > * {
    width: calc(33.3333% - 20px);
  }
}

@media screen and (max-width: 700px) and (max-width: 500px) {
  .column-02 > * {
    width: calc(100% - 20px);
  }
  .column-03 > * {
    width: calc(100% - 20px);
  }
  .column-04 > * {
    width: calc(50% - 20px);
  }
}

/* column */
.post .margin-style:not(:first-child), .post .box:not(:first-child) {
  margin-top: 30px;
}

.post .margin-style:not(:last-child), .post .box:not(:last-child) {
  margin-bottom: 30px;
}

.post .list-style > li > p:not(:first-child), .post ol > li > p:not(:first-child), .post ul > li > p:not(:first-child), .post .list-style > li > ol:not(:first-child), .post ol > li > ol:not(:first-child), .post ul > li > ol:not(:first-child), .post .list-style > li > ul:not(:first-child), .post ol > li > ul:not(:first-child), .post ul > li > ul:not(:first-child) {
  margin-top: 15px;
}

.post .list-style > li > p:not(:last-child), .post ol > li > p:not(:last-child), .post ul > li > p:not(:last-child), .post .list-style > li > ol:not(:last-child), .post ol > li > ol:not(:last-child), .post ul > li > ol:not(:last-child), .post .list-style > li > ul:not(:last-child), .post ol > li > ul:not(:last-child), .post ul > li > ul:not(:last-child) {
  margin-bottom: 15px;
}

.post ul:not(:last-child) {
  margin-bottom: 30px;
}

.post ul > li {
  list-style-type: none;
  text-indent: -1em;
  padding-left: 1em;
}

.post ul > li:before {
  content: "\0030fb";
  margin-right: 0.5em;
}

.post ol {
  padding-left: 1.5em;
}

.post ol:not(:last-child) {
  margin-bottom: 30px;
}

.post ol > li {
  list-style-type: decimal;
}

.post ol > li:not(:last-child) {
  margin-bottom: 5px;
}

.post ol > li:last-child {
  padding-bottom: 0;
}

.post ol.list-02 {
  padding-left: 0;
}

.post ol.list-02 > li {
  list-style-type: none;
  text-indent: -1.5em;
  padding-left: 1.5em;
  counter-increment: number;
}

.post ol.list-02 > li:before {
  content: counter(number) ")";
  margin-right: 0.5em;
}

.post ol.list-02 > li > * {
  text-indent: 0;
  padding-left: 1.5em;
}

.post strong {
  font-weight: bold;
}

.post em {
  font-style: italic;
}

.post del {
  text-decoration: line-through;
  color: #686868;
}

.post blockquote {
  display: block;
  padding: 40px;
  background-color: #F8F8F8;
  color: #686868;
  clear: both;
  position: relative;
}

.post blockquote:before, .post blockquote:after {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 25px;
  background: no-repeat center;
  pointer-events: none;
}

.post blockquote:before {
  background-image: url(../img/common/icon-blockquote_01.svg);
  left: 15px;
  top: -10px;
}

.post blockquote:after {
  background-image: url(../img/common/icon-blockquote_02.svg);
  right: 15px;
  bottom: -10px;
}

.post blockquote:not(:first-child) {
  margin-top: 30px;
}

.post blockquote:not(:last-child) {
  margin-bottom: 30px;
}

.post blockquote.simple {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  padding: 16px;
}

.post blockquote.simple:before, .post blockquote.simple:after {
  display: none;
}

.post .h, .post h5, .post h4, .post h3, .post h2, .post h1 {
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.post .h:not(:first-child), .post h5:not(:first-child), .post h4:not(:first-child), .post h3:not(:first-child), .post h2:not(:first-child), .post h1:not(:first-child) {
  margin-top: 30px;
}

.post .h:not(:last-child), .post h5:not(:last-child), .post h4:not(:last-child), .post h3:not(:last-child), .post h2:not(:last-child), .post h1:not(:last-child) {
  margin-bottom: 15px;
}

.post h1 {
  font-size: 27px;
  font-size: 1.9285714286rem;
  font-weight: bold;
}

.post h2 {
  display: -moz-inline-box;
  display: inline-block;
  border-top: 2px solid #93D500;
  border-bottom: 2px solid #93D500;
  line-height: 1.3;
  font-size: 20px;
  font-size: 1.4285714286rem;
  font-weight: 500;
  color: #009200;
}

.post h3 {
  font-size: 18px;
  font-size: 1.2857142857rem;
  font-weight: 500;
  border-left: 3px solid #93D500;
  padding-left: 10px;
}

.post h4 {
  font-size: 18px;
  font-size: 1.2857142857rem;
  font-weight: 500;
  display: -moz-inline-box;
  display: inline-block;
  border-bottom: 2px dotted #93D500;
}

.post h5 {
  font-size: 16px;
  font-size: 1.1428571429rem;
  font-weight: bold;
}

.post iframe {
  max-width: 100%;
}

.post .aligncenter {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.post .aligncenter:not(:first-child) {
  margin-top: 30px;
}

.post .aligncenter:not(:last-child) {
  margin-bottom: 30px;
}

.post .alignright {
  text-align: right;
  float: right;
  display: block;
  margin: 0 0 10px 15px;
}

.post .alignleft {
  text-align: left;
  float: left;
  margin: 0 15px 10px 0;
}

.post .wp-caption {
  max-width: 100%;
}

.post .wp-caption-text {
  color: #949494;
  font-size: 12px;
  font-size: 0.8571428571rem;
}

.post .wp-caption:not(:last-child) {
  margin-bottom: 30px;
}

.post p:not(:last-child) {
  margin-bottom: 15px;
}

.post p a {
  text-decoration: underline;
}

.post p a:hover {
  text-decoration: none;
}

.post .scroll-block .inside {
  min-width: 600px;
}

.post .scroll-block:not(:last-child) {
  margin-bottom: 30px;
}

.post table:not(:last-child) {
  margin-bottom: 30px;
}

.post table td p:not(:last-child) {
  margin-bottom: 10px;
}

.post cite {
  border: 1px solid #EDEDED;
  margin-top: 15px;
  padding: 10px;
  display: -moz-inline-box;
  display: inline-block;
}

.post cite:before, .post cite:after {
  content: "\00201d";
}

.post small {
  font-size: 12px;
  font-size: 0.8571428571rem;
}

.post .border {
  border: 1px solid #93D500;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  padding: 10px;
}

.post .border:not(:first-child) {
  margin-top: 30px;
}

.post .border:not(:last-child) {
  margin-bottom: 30px;
}

.post .tel {
  text-decoration: none;
  color: #009200;
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  font-size: 1.3571428571rem;
  font-weight: bold;
}

.post .box {
  background: #EAF8C5;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  padding: 24px;
}

.post .box h3 {
  border-left: none;
  border-bottom: 1px solid #009200;
  color: #009200;
  font-size: 20px;
  font-size: 1.4285714286rem;
  padding-left: 0;
  padding-bottom: 5px;
}

.post .box h3:not(:first-child) {
  margin-top: 16px;
}

.post .box h4 {
  font-size: 16px;
  font-size: 1.1428571429rem;
  font-weight: bold;
  border-bottom: none;
  display: block;
}

.post .box h4:not(:last-child) {
  margin-bottom: 10px;
}

.post .box h4:not(:first-child) {
  margin-top: 16px;
}

.post .box ul:not(:last-child) {
  margin-bottom: 16px;
}

.post .box ul + h4:not(:first-child) {
  margin-top: 0;
}

.post .video-container {
  max-width: 640px;
  margin: 30px auto 0;
}

.post .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.post .video iframe, .post .video object, .post .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 700px) {
  .post .alignright {
    max-width: 160px;
    height: auto;
    margin: 0 0 10px 10px;
  }
  .post .alignleft {
    max-width: 160px;
    height: auto;
    margin: 0 10px 10px 0;
  }
}

.post:after {
  clear: both;
  display: block;
  content: '';
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.eg-parent > *:not(.eg) {
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
}

*[data-emergence], *.eg {
  -webkit-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  -ms-animation-duration: 0.6s;
  -o-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  filter: alpha(opacity=0);
  opacity: 0;
}

*[data-emergence=visible] {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

@supports (clip-path: polygon(0 0, 0 0, 0 0)) {
  *[data-anm="skew"] {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    -webkit-transition: 1s all ease-out;
    -moz-transition: 1s all ease-out;
    -ms-transition: 1s all ease-out;
    -o-transition: 1s all ease-out;
    transition: 1s all ease-out;
  }
  *[data-anm="skew"][data-emergence=visible] {
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -ms-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-clip-path: polygon(0 0, 220% 0, 0 220%, 0 0);
    clip-path: polygon(0 0, 220% 0, 0 220%, 0 0);
  }
}

/* floating */
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(30%);
  }
  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(30%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes flipIn {
  0% {
    opacity: 0;
    -webkit-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}

@keyframes flipIn {
  0% {
    opacity: 0;
    -webkit-transform: perspective(2000px) rotateY(90deg);
    -ms-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(2000px) rotateY(0);
    -ms-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}

.flipIn {
  -webkit-animation-name: flipIn;
  animation-name: flipIn;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.about-service-information{
  text-align: center;
  margin-top: 40px;
  font-weight: normal;
  padding: 20px;
  border: 2px solid #93D500;
}
