/*===== ■ レイアウト・共通パーツ =====*/
#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: left;
  overflow: hidden;
}
.section-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.display-pc {
  display: block !important;
}
.display-sp {
  display: none !important;
}
.col-2 {
  width: 100%;
  display: flex;
}
.col-2 > div {
  text-align: left;
  vertical-align: top;
}
.btn-box {
  width: 360px;
  margin: 0 auto;
}
.btn-box i {
  margin-right: 5px;
}

@media screen and (max-width:800px) {
  .display-pc {
    display: none !important;
  }
  .display-sp {
    display: block !important;
  }
}

/* マーカー */
.marker {
  background: linear-gradient(transparent 50%, #FDFEDE 50%);
  padding: 0 5px;
}
/*===== ■ リンクボタン =====*/
/* ボタンのベース */
.btn-base {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  background: #6CAC2D;
  border: 1px solid #6CAC2D;
  border-radius: 5px;
  color: #fff !important;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: .4s;
  transition: .4s;
}
.btn-base::after {
  display: block;
  content: "";
  position: absolute;
  -webkit-transition: .4s;
  transition: .4s;
}
.btn-base:hover {
  background: #fff;
  text-decoration: none;
  color: #6CAC2D;
}
/* ボタン 右矢印 */
.btn-arrow-r:after {
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  margin: -2px 0 0 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn-arrow-r:hover::after {
  border-top: solid 2px #6CAC2D;
  border-right: solid 2px #6CAC2D;
  right: 10px;
}
/* ボタン 右下三角 */
.btn-triangle-rb:after {
  bottom: 1px;
  right: 1px;
  width: 0;
  height: 0;
  margin: -3px 0 0 0;
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.btn-triangle-rb:hover::after {
  border-top: 10px solid #6CAC2D;
  border-left: 10px solid transparent;
}
/* 動き */
.fade {
  opacity: 0;
}
.fade-top {
  opacity: 0;
  top: 40px;
}
/*===== ■ ヘッダー =====*/
header {
  width: 100%;
  background: url(../img/common/bg_paper.png) left top;
  position: relative;
  border-top: solid 10px #6cac2d;
}
header .section-inner {
  width: 100%;
  max-width: 1100px;
  margin: 10px auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
header h1 {
  width: 25%;
  z-index: 99;
}
header h1 img {
  width: 237px;
  height: auto;
}
header h1 span {
  text-align: left;
  font-size: 12px;
  color: #676767;
  margin-bottom: 10px;
  display: block;
}
header .sub-box {
  width: 60%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .sub-box .tel {
  width: 35%;
  margin-right: 20px;
}
header .sub-box .contact_btn {
  margin-right: 10px;
}
header .sub-box .contact_btn a {
  font-size: 20px;
  font-weight: bold;
  padding: 12px 20px;
  background: #159dd5;
  border: 1px solid #159dd5;
  border-radius: 8px;
}
header .sub-box .freetrial_btn a {
  font-size: 20px;
  font-weight: bold;
  padding: 12px 20px;
  background: #ff6600;
  border: 1px solid #ff6600;
  border-radius: 8px;
}
header .sub-box .contact_btn a:hover {
  background: #fff;
  text-decoration: none;
  color: #159dd5 !important;
}
header .sub-box .freetrial_btn a:hover {
  background: #fff;
  text-decoration: none;
  color: #ff6600 !important;
}
header .sub-box .contact_btn a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../img/common/icon_contact.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 4px;
}
header .sub-box .freetrial_btn a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../img/common/icon_freetrial.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 4px;
}
header .sub-box .contact_btn a:hover::before {
  filter: brightness(0) saturate(100%) invert(45%) sepia(97%) saturate(557%) hue-rotate(156deg) brightness(95%) contrast(89%);
}
header .sub-box .freetrial_btn a:hover::before {
  filter: brightness(0) saturate(100%) invert(37%) sepia(90%) saturate(1405%) hue-rotate(1deg) brightness(104%) contrast(107%);
}

/*===== ■ ナビ =====*/
#sp-menu {
  display: none;
}
header nav {
  width: 100%;
  margin: 0 auto;
  max-width: 1100px;
}
header nav ul {
  width: 100%;
}
header nav ul li {}
header nav ul li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  -webkit-transition: .4s;
  transition: .4s;
  white-space: nowrap;
}
header nav ul li a:hover {
  text-decoration: none;
}
header nav ul .current a {}
header nav ul .current a::before {
  background-color: #FFCC00;
  bottom: 10px;
  content: "";
  position: absolute;
  height: 4px;
  left: 10%;
  width: 80%;
  visibility: visible;
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transition: all .2s ease-in-out 0s;
  -webkit-transition: all .2s ease-in-out 0s;
}
header nav ul .current a:hover::before {
  border-top: none;
  border-left: none;
}
header nav ul .current a:hover::after {
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
}
header nav i {
  display: none;
  margin-right: 7px;
  position: relative;
  top: 1px;
}
header .section-inner2 {
  width: 100%;
  background-color: #f3f3f3;
  margin: 0 auto;
  position: relative;
  border-bottom: solid 0.4em #e1e1e1;
}
/*===== ■ コンテンツ =====*/
#main {
  position: relative;
  background-color: #eaffe2;
}
#contents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .7);
  padding: 30px 20px;
}
/*===== ■ フッター =====*/
footer {
  width: 100%;
}
#footer-contact {
  width: 100%;
  background-color: #6CAC2D;
}
#footer-contact .contact-inner {
  padding: 30px 0 44px;
}
#footer-contact h3 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 15px;
}
#footer-contact .contact-box {
  width: 940px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 48px 20px;
}
#footer-contact .contact-box .col-2 {
  margin-bottom: 20px;
}
#footer-contact .contact-box .col-2 > div:first-child {
  padding-right: 10px;
  width: 42%;
}
#footer-contact .contact-box .col-2 > div:last-child {
  padding-left: 20px;
  width: calc(100% - 42%);
}
#footer-contact .contact-box .col-2 > div:first-child dl dt {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}
#footer-contact .contact-box .col-2 > div:first-child dl dd {
  margin: 0;
}

#footer-contact .contact-box .col-2 > div:first-child dl dd p:first-child {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
}
#footer-contact .contact-box .col-2 > div:first-child dl dd .tel_icon::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url(../img/common/icon_tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 8px;
}
#footer-contact .contact-box .col-2 > div:first-child dl dd p:first-child a {
  color: #000 !important;
  vertical-align: middle;
}
#footer-contact .contact-box .col-2 > div:first-child dl dd p:last-child {
  line-height: 1.3;
  text-align: center;
  font-size: 14px;
}
#footer-contact .contact-box .col-2 > div:last-child p {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
#footer-contact .contact-box .col-2 .sub-box > div {
  width: 49%;
}
#footer-contact .contact-box .col-2 .sub-box {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer-contact .contact-box .col-2 .sub-box .contact_btn a {
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
  background: #159dd5;
  border: 1px solid #159dd5;
  border-radius: 0px;
}
#footer-contact .contact-box .col-2 .sub-box .freetrial_btn a {
  font-size: 18px;
  font-weight: bold;
  padding: 20px;
  background: #ff6600;
  border: 1px solid #ff6600;
  border-radius: 0px;
}
#footer-contact .contact-box .col-2 .sub-box .contact_btn a:hover {
  background: #fff;
  text-decoration: none;
  color: #159dd5 !important;
}
#footer-contact .contact-box .col-2 .sub-box .freetrial_btn a:hover {
  background: #fff;
  text-decoration: none;
  color: #ff6600 !important;
}
#footer-contact .contact-box .col-2 .sub-box .contact_btn a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../img/common/icon_contact.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 4px;
  margin-top: -4px;
}
#footer-contact .contact-box .col-2 .sub-box .freetrial_btn a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../img/common/icon_freetrial.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 4px;
  margin-top: -4px;
}
#footer-contact .contact-box .col-2 .contact_btn a:hover::before {
  filter: brightness(0) saturate(100%) invert(45%) sepia(97%) saturate(557%) hue-rotate(156deg) brightness(95%) contrast(89%);
}
#footer-contact .contact-box .col-2 .freetrial_btn a:hover::before {
  filter: brightness(0) saturate(100%) invert(37%) sepia(90%) saturate(1405%) hue-rotate(1deg) brightness(104%) contrast(107%);
}
#footer-contact .contact-box .contact-address {
  background-color: #e0e0e0;
  padding: 8px 47px 10px;
  text-align: center;
  font-weight: 600;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
#footer-contact .contact-box .contact-address .address-name {
  font-size: 20px;
}
#footer-contact .contact-box .contact-address .address-link a:hover {
  color: #ff4545;
  text-decoration: none;
}
#footer-menu {
  width: 100%;
  height: 100%;
  background: #eeffcc;
  padding: 50px 0 65px;
}
#footer-menu .section-inner .footer-box {
  width: 940px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
#footer-menu .section-inner .footer-box > div {
  width: 45%;
}
#footer-menu .section-inner .footer-box > div p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 25px;
}
#footer-menu .section-inner .footer-box > div:first-child h2 {
  width: 240px;
  margin-bottom: 1em;
}
#footer-menu .section-inner .footer-box > div:last-child h3 {
  margin-bottom: 0.5em;
}
#footer-menu .section-inner .footer-box > div:last-child .footer_list {
  display: flex;
}

#footer-menu .section-inner .footer-box > div:last-child ul {
  margin-left: 2em;
}
#footer-menu .section-inner .footer-box > div:last-child ul li {
  width: 100%;
  line-height: 2;
  position: relative;
  padding-left: 15px;
}
#footer-menu .section-inner .footer-box > div:last-child ul .w_70 {
  width: 70%;
}
#footer-menu .section-inner .footer-box > div:last-child ul li:before {
  content: "";
  position: absolute;
  top: 45%;
  left: 0.4em;
  width: 5px;
  height: 5px;
  background-color: #6cac2d;
  border-radius: 50%;
}
#copy {
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  width: 100%;
  background-color: #6CAC2D;
  padding: 20px;
}
@media screen and (max-width:900px) {
  .contact-box {
    width: 100%;
  }
  header h1 img {
    width: 240px;
  }
  nav {
    width: 70%;
    float: right;
  }
}
@media screen and (min-width: 800px) {
  nav ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
  }
}

@media screen and (max-width:800px) {
  header {}
  header h1 {
    width: 60%;
    margin-left: 5%;
  }
  header nav ul .current a::before {
    background-color: unset;
    bottom: 10px;
    height: 4px;
    left: 10%;
    width: 80%;
}
header h1 span {
  font-size: 10px;
  margin-bottom: 7px;
}
  header h1 img {
    width: 200px;
  }
  header .section-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  header .sub-box {
    width: 92%;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .sub-box .contact_btn {
    margin-right: 2%;
    width: 49%;
  }
  header .sub-box .contact_btn a {
  font-size: 16px;
  padding: 10px 10px;
}
  header .sub-box .contact_btn a::before {
  width: 30px;
  height: 30px;
  background-position: center;
  vertical-align: middle;
  margin-right: 4px;
}
  header .sub-box .freetrial_btn {
    width: 49%;
  }
  header .sub-box .freetrial_btn a {
  font-size: 16px;
  padding: 10px 10px;
}
  #footer-contact h3 {
    font-size: 1.6em;
  }
  #footer-contact .contact-box {
  width: 90%;
  margin: 0 auto;
  padding: 30px 20px 20px;
  }
  .contact-box > p {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .contact-box .col-2 {
    padding: 0px;
    display: block;
  }
  .contact-box .col-2 > div {
    display: block;
    width: 100%;
  }
  #footer-contact .contact-box .col-2 > div:first-child {
    padding-right: 0px;
    width: 100%;
    margin-bottom: 2em;
  }
  #footer-contact .contact-box .col-2 > div:last-child {
    padding-left: 0px;
    width: 100%;
  }
  #footer-contact .contact-box .col-2 > div:last-child p {
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: -0.03em;
}
  #footer-contact .contact-box .col-2 .sub-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #footer-contact .contact-box .col-2 .sub-box > div {
    width: 100%;
  }
  #footer-contact .contact-box .col-2 > div:first-child dl dt {
    font-size: 18px;
    margin-bottom: 5px;
  }
    #footer-contact .contact-box .col-2 > div:first-child dl dd p:first-child {
  font-size: 36px;
}
  #footer-contact .contact-box .col-2 .sub-box .contact_btn {
    margin-bottom: 1em;
  }
  #footer-contact .contact-box .contact-address {
    padding: 15px 10px 15px;
  }
  #footer-contact .contact-box .contact-address .address-name {
    font-size: 16px;
    text-align: center;
    width: 100%;
    margin-bottom: 5px;
  }
  #footer-contact .contact-box .contact-address .address-address {
    text-align: center;
    line-height: 1.6;
    width: 100%;
    margin-bottom: 5px;
  }
  #footer-contact .contact-box .contact-address .address-link {
    width: 100%;
    text-align: center;
    padding: 5px 0px;
  }
  #sp-menu {
    display: block;
    position: absolute;
    top: 0px;
    right: 15px;
    z-index: 110;
    cursor: pointer;
  }
  #sp-menu a {
    display: block;
    color: #fff;
    background: rgba(108, 172, 45, 1);
    padding: 5px;
    text-align: center;
    line-height: 1;
    font-size: 14px;
    right: 5px;
    transition: all .3s;
    -webkit-transition: all .3s;
  }
  #sp-menu::after {
    content: "メニュー";
    display: block;
    color: #6CAC2D;
    font-size: 14px;
    position: relative;
    left: 0;
    margin-top: 54px;
  }
  #sp-menu.sp-menu-active::after {
    content: "閉じる";
    left: -7px;
  }
  #menu-btn {
    display: block;
    width: 52px;
    height: 52px;
    position: absolute;
  }
  #menu-btn span {
    display: block;
    background: #fff;
    width: 34px;
    height: 2px;
    position: absolute;
    left: 9px;
    transition: all .3s;
    -webkit-transition: all .3s;
  }
  #menu-btn span:first-child {
    top: 17px;
  }
  #menu-btn span:nth-child(2) {
    margin-top: -1px;
    top: 50%;
  }
  #menu-btn span:last-child {
    bottom: 17px;
  }
  #menu-btn.active span:first-child {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }
  #menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  #menu-btn.active span:last-child {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
  .blur {
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
  .overlay-active {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    background: rgba(255, 255, 255, .8);
  }
  header nav {
    width: 98%;
    margin: 0 auto;
    float: none;
    background: rgba(255, 255, 255, 1);
    z-index: 100;
    position: absolute;
    top: -50px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  #menu {
    display: none;
    background: rgba(255, 255, 255, 1);
    padding: 5px;
    border: 5px solid #6CAC2D;
  }
  nav ul li:first-child {
    display: block;
  }
  #menu li {
    float: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
  #menu li:last-child {
    border-bottom: none;
  }
  nav ul li a {
    padding: 20px 10px;
    color: #000 !important;
    background: #fff;
  }
  nav ul li a::after {
    right: 0;
  }
  nav ul li a:hover::after {
    border-top: 10px solid #6CAC2D;
    border-left: 10px solid transparent;
  }
  nav ul li a:hover {
    background-color: transparent;
    color: #000;
  }
  #menu .current {
    border-bottom: none;
  }
  nav ul .current a {
    background: #6CAC2D !important;
    color: #fff !important;
  }
  nav ul .current a::before {
    visibility: hidden;
  }
  nav i {
    display: inline-block;
    color: #6CAC2D;
  }
  nav .current i {
    color: #fff;
  }
  footer {
  }
   footer .section-inner {
    padding: 0;
  }
  #access-btn {
    margin-bottom: 25px;
  }
  #pagetop img {
    width: 120px;
    height: auto;
  }
  #footer-menu {
    padding: 50px 20px 40px;
  }
  #footer-menu ul {}
  #footer-menu ul li a {
    padding: 10px 5px;
    font-size: 1em;
  }
  #footer-menu ul li a i {
    font-size: 30px;
    margin-bottom: 5px;
  }
  #footer-menu .section-inner .footer-box {
    width: 100%;
    justify-content: center;
  }
  #footer-menu .section-inner .footer-box > div {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    width: 100%;
    margin-bottom: 30px;
  }
  #footer-menu .section-inner .footer-box > div:first-child h2 {
    width: 60%;
    margin: 0 auto 30px;
  }
  #footer-menu .section-inner .footer-box > div p {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    text-align: center;
    margin-bottom: 25px;
  }
  #footer-menu .section-inner .footer-box > div:last-child {
    margin-bottom: 0;
    width: 100%;
    margin-left: 20%;
  }
  #footer-menu .section-inner .footer-box > div:last-child h3 {
    font-weight: 400;
  }
   #footer-menu .section-inner .footer-box > div:last-child .footer_list {
    flex-direction: column;
  }
  #footer-menu .section-inner .footer-box > div:last-child ul {
    margin-left: 0em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #footer-menu .section-inner .footer-box > div:last-child ul li {
    width: 100%;
    padding-left: 15px;
  }

  #copy {
  font-size: 16px;
  line-height: 1.3;
  padding: 10px;
}
}

@media screen and (max-width:400px) {
  .btn-base {
    padding: 16px 10px;
    font-size: 16px;
  }
  .btn-arrow-r:after {
    right: 10px;
  }
  .btn-arrow-r:hover::after {
    right: 10px;
  }
  #sp-menu {
    top: 7px;
  }
  nav {
    top: 72px;
  }
}