@charset "UTF-8";

/* ====================================================
reset style
==================================================== */
html {
  overflow-y: scroll;
  font-size: 10px;
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

img {
  vertical-align: middle;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input,
textarea,
select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

del,
ins {
  text-decoration: none;
}

@font-face {
  font-family: "FuturaDemiBold";
  src: url("../fonts/OPTIFuturaDemiBold.eot");
  src: local("☺"), url("../fonts/OPTIFuturaDemiBold.woff") format("woff"),
    url("../fonts/OPTIFuturaDemiBold.ttf") format("truetype"),
    url("../fonts/OPTIFuturaDemiBold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* ====================================================
Font
==================================================== */
/* ====================================================
Position & transform
==================================================== */
/* ====================================================
Color
==================================================== */
/* ====================================================
Sizing
==================================================== */
/* ====================================================
Misc
==================================================== */
/* ====================================================
Media Quary
==================================================== */
/* ====================================================
opacity
==================================================== */
/* ====================================================
Base style & container
==================================================== */
body {
  color: #464646;
  /* font-family: "Noto Sans CJK JP", "Noto Sans Japanese", "Noto Sans JP",
    "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, YuGothic,
    "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif; */

  font-family:
    "Noto Sans JP",
    "游ゴシック Medium",
    "Yu Gothic Medium",
    游ゴシック体,
    YuGothic,
    "Hiragino Kaku Gothic ProN",
    メイリオ,
    Meiryo,
    sans-serif;

  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  color: #464646;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.rollover {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.rollover:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.inner {
  display: block;
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 24px;
  }
}

.container {
  /* font-size: 15px;
  font-size: 1.5rem; */
  background: url(../images/common/page_bg.png);
}

/* @media screen and (max-width: 768px) {
  .container {
    font-size: 13px;
    font-size: 1.3rem;
  }
} */

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

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-box.content-fs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-box.content-fe {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-box.content-bw {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

.flex-box.align-fs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-box.align-fe {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-box.align-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wp-block-image .aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}

/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

/* ====================================================
Header
==================================================== */
#header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.83);
}

@media screen and (max-width: 768px) {
  #header {
    height: 48px;
  }
}

#header .inner {
  position: relative;
  height: 90px;
}

@media screen and (max-width: 768px) {
  #header .inner {
    height: 48px;
  }
}

#header .logo {
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -25px;
}

@media screen and (max-width: 990px) {
  #header .logo {
    width: 270px;
    margin-top: -18px;
  }
}

@media screen and (max-width: 768px) {
  #header .logo {
    width: 200px;
    margin: 0;
    top: 10px;
    left: 15px;
  }
}

#header .gnavi {
  text-align: right;
  font-size: 0;
  padding-top: 32px;
}

@media screen and (max-width: 768px) {
  #header .gnavi {
    padding: 0;
    margin-bottom: 20px;
  }
}

#header .gnavi li {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0 20px;
  border-left: 1px solid #59a515;
}

@media screen and (max-width: 1200px) {
  #header .gnavi li {
    padding: 0 10px;
    font-size: 14px;
  }
}

@media screen and (max-width: 990px) {
  #header .gnavi li {
    font-size: 14px;
    font-size: 1.5rem;
    padding: 0 5px;
  }
}

@media screen and (max-width: 768px) {
  #header .gnavi li {
    display: block;
    padding: 0;
    border-bottom: 1px dashed #fff;
    text-align: center;
  }
}

#header .gnavi li:first-of-type {
  border-left: none;
}

#header .gnavi li a {
  color: #59a515;
}

@media screen and (max-width: 768px) {
  #header .gnavi li a {
    display: block;
    color: #fff;
    padding: 15px 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}

#header .gnavi li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  #header .gnavi li a:hover {
    text-decoration: none;
    background: #fff;
    color: #59a515;
  }
}

@media screen and (min-width: 769px) {
  #header .navi-panel {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  #header .navi-panel {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background-color: #6eb92b;
    text-align: center;
    padding-bottom: 10px;
  }

  #header .navi-panel::after {
    content: "";
    width: 48px;
    height: 1px;
    border-bottom: 1px dashed #fff;
    position: absolute;
    top: -1px;
    right: 0;
  }
}

@media screen and (min-width: 769px) {
  #header .navi-panel .contact-btn {
    display: none;
  }
}

#header .navi-panel .contact-btn li a {
  border: 1px solid #fff !important;
  background: none !important;
}

@media screen and (max-width: 768px) {
  #header .navi-panel .contact-btn li a {
    height: 50px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#header .navi-panel .contact-btn li a:hover {
  background: #fff !important;
  color: #6eb92b !important;
}

@media screen and (max-width: 768px) {
  #header .navi-panel .contact-btn li a.tel-btn {
    font-size: 9px;
    font-size: 0.9rem;
  }
}

#header .navi-panel .contact-btn li a.tel-btn:hover::before {
  background-image: url(../images/common/tel_ico_gr.png);
}

@media screen and (max-width: 768px) {
  #header .navi-panel .contact-btn li a.tel-btn span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.menu-trigger {
  display: block;
  position: absolute;
  width: 48px;
  right: 0px;
  top: 0;
  height: 48px;
  z-index: 1;
  cursor: pointer;
  display: inline-block;
  background-color: #6eb92b;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

@media screen and (min-width: 769px) {
  .menu-trigger {
    display: none;
  }
}

.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  right: 13px;
  width: 20px;
  height: 3px;
  background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
  top: 13px;
}

.menu-trigger span:nth-of-type(2) {
  top: 22px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 14px;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  -ms-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

#menu-overlay {
  display: none;
  background: rgba(0, 0, 0, 0.64);
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}

@media screen and (min-width: 769px) {
  #menu-overlay {
    display: none !important;
  }
}

/* ====================================================
Footer
==================================================== */
.contact-btn {
  font-size: 0;
}

.contact-btn li {
  width: 100%;
  max-width: 370px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 9px 10px;
}

@media screen and (max-width: 768px) {
  .contact-btn li {
    max-width: 250px;
  }
}

.contact-btn li .btn-wrap {
  display: table;
  width: 100%;
}

.contact-btn li a {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 90px;
  border: 1px solid #6eb92b;
  background: #6eb92b;
  color: #fff;
  border-radius: 5px;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  line-height: 1.3;
  padding: 0 0 0 55px;
}

@media screen and (max-width: 768px) {
  .contact-btn li a {
    height: 55px;
    padding-left: 40px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.contact-btn li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 40px;
  top: 23px;
  width: 54px;
  height: 42px;
  background-size: 100% auto;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
  .contact-btn li a::before {
    width: 31px;
    height: 25px;
    left: 30px;
    top: 50%;
    margin-top: -13px;
  }
}

.contact-btn li a:hover {
  background: #fff;
  color: #6eb92b;
}

.contact-btn li a.mail-btn::before {
  background-image: url(../images/common/mail_ico.png);
}

.contact-btn li a.mail-btn:hover::before {
  background-image: url(../images/common/mail_ico_gr.png);
}

.contact-btn li a.tel-btn {
  font-size: 14px;
  font-size: 1.4rem;
  background-color: #ffb400;
  border-color: #ffb400;
}

@media screen and (max-width: 768px) {
  .contact-btn li a.tel-btn {
    font-size: 10px;
    font-size: 1rem;
  }
}

.contact-btn li a.tel-btn::before {
  background-image: url(../images/common/tel_ico.png);
}

.contact-btn li a.tel-btn:hover {
  background: #fff;
  color: #ffb400;
}

.contact-btn li a.tel-btn:hover::before {
  background-image: url(../images/common/tel_ico_or.png);
}

.contact-btn li a.tel-btn span {
  font-size: 28px;
  font-size: 2.8rem;
  font-family: "Roboto", sans-serif;
  display: block;
}

@media screen and (max-width: 768px) {
  .contact-btn li a.tel-btn span {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

.bottom-contact {
  background: url(../images/common/contact_bg_02.png) no-repeat center;
  background-size: cover;
  /*   min-height: 410px; */
  text-align: center;
}

@media screen and (max-width: 768px) {
  .bottom-contact {
    background-image: url(../images/common/contact_bg_sp_02.png);
    min-height: inherit;
  }
}

.bottom-contact .inner {
  position: relative;
  padding: 54px 0;
}

@media screen and (max-width: 768px) {
  .bottom-contact .inner {
    padding-top: 30px;
    padding-bottom: 25px;
  }
}

.bottom-contact .ttl {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .bottom-contact .ttl {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.9;
    margin-bottom: 20px;
  }
}

.bottom-contact .illust {
  position: absolute;
  right: 0;
  top: 50%;
}

@media screen and (max-width: 990px) {
  .bottom-contact .illust {
    bottom: 0;
    top: inherit;
  }
}

@media screen and (max-width: 768px) {
  .bottom-contact .illust {
    display: none;
  }
}

#footer {
  background: #2a8108;
  color: #fff;
  padding: 35px 0 30px;
}

@media screen and (max-width: 768px) {
  #footer {
    padding: 25px 0 25px;
  }
}

#footer .footer-menu {
  font-size: 0;
  margin-bottom: 57px;
}

@media screen and (max-width: 768px) {
  #footer .footer-menu {
    display: none;
  }
}

#footer .footer-menu li {
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  margin-right: 50px;
}

#footer .footer-menu li a {
  color: #fff;
}

#footer .footer-menu li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  #footer .inner {
    max-width: 320px;
    margin: 0 auto;
  }
}

#footer .col-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 55px;
}

@media screen and (max-width: 768px) {
  #footer .col-wrap {
    display: block;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 1100px) {
  #footer .col-wrap .col.logo {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  #footer .col-wrap .col.logo {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  #footer .col-wrap .col.link {
    padding-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  #footer .com-intro {
    margin-bottom: 25px;
  }
}

#footer .com-intro dt {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  #footer .com-intro dt {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
}

#footer .com-intro dt.name {
  font-weight: 500;
}

#footer .com-intro dd {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  #footer .com-intro dd {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

#footer .com-intro dd.add {
  font-size: 13px;
  font-size: 1.3rem;
}

#footer .com-intro.inline dt {
  float: left;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  #footer .com-intro.inline dt {
    float: none;
    padding: 0;
  }
}

#footer .com-intro.inline dd {
  overflow: hidden;
}

#footer .com-intro.inline a {
  color: #fff;
}

#footer .com-intro.inline a:hover {
  text-decoration: underline;
}

#footer .txt-link {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  #footer .txt-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#footer .txt-link a {
  position: relative;
  color: #fff;
  padding-left: 20px;
}

#footer .txt-link a::before {
  font-family: "FontAwesome";
  content: "\f105";
  display: block;
  position: absolute;
  left: 3px;
  top: 0;
  margin-top: -5px;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  #footer .txt-link a::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

#footer .txt-link a:hover {
  text-decoration: underline;
}

#footer .copyright {
  font-size: 10px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  #footer .copyright {
    font-size: 9px;
    font-size: 0.9rem;
    text-align: center;
  }
}

/* ====================================================
Page-common
==================================================== */
#topcontrol {
  background: url(../images/common/pagetop.png) no-repeat 0 0;
  background-size: 100% auto;
  width: 105px;
  height: 307px;
  right: 20px !important;
  bottom: 20px !important;
}

@media screen and (max-width: 990px) {
  #topcontrol {
    width: 70px;
    height: 205px;
  }
}

@media screen and (max-width: 768px) {
  #topcontrol {
    display: none;
  }
}

.page-head {
  position: relative;
  height: 443px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .page-head {
    height: 250px;
  }
}

.page-head .main-ttl {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 50%;
  padding: 0 20px;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .page-head .main-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.page-head .main-ttl span {
  font-size: 17px;
  font-size: 1.7rem;
  display: block;
  font-family: "FuturaDemiBold";
  letter-spacing: 1px;
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .page-head .main-ttl span {
    font-size: 14px;
    font-size: 1.4rem;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 768px) {
  .page-head .main-ttl span img {
    height: 10px;
  }
}

.page-ttl {
  text-align: center;
  color: #6eb92b;
  font-weight: 500;
  font-size: 26px;
  font-size: 2.6rem;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .page-ttl {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.page-ttl .page-intro {
  text-align: center;
}

.page-ttl02 {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 500;
  padding-bottom: 8px;
  background: url(../images/index/about_ttl_bg.png) repeat-x 0 bottom;
  color: #59a515;
  display: inline-block;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .page-ttl02 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}

.page-intro {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  .page-intro {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

/* ====================================================
WordPress
==================================================== */
.widget {
  margin-bottom: 25px;
}

.widget .widget-title {
  display: none;
}

.widget ul {
  padding: 0 15px;
}

.widget ul li a {
  display: inline-block;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
  padding: 10px 0;
  color: #464646;
  border-bottom: dotted 1px #6eb92b;
  width: 100%;
  -webkit-transition: ease-in 0.5s;
  -o-transition: ease-in 0.5s;
  transition: ease-in 0.5s;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .widget ul li a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.widget ul li a:hover {
  opacity: 0.6;
}

#wp-calendar {
  width: 100%;
  text-align: center;
}

#wp-calendar caption {
  background: #6eb92b;
  color: #fff;
  padding: 5px 0;
  text-align: center;
}

#wp-calendar tfoot {
  display: none;
}

#wp-calendar th {
  text-align: center;
  padding: 3px 0;
}

#wp-calendar td {
  border: solid 1px #6eb92b;
  font-family: "FuturaDemiBold";
}

#wp-calendar td a {
  color: #6eb92b;
  text-decoration: underline;
  font-weight: 500;
}

#wp-calendar td#today {
  background: #e2f3d3;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 65px;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi {
    padding-top: 30px;
  }
}

.wp-pagenavi a,
.wp-pagenavi span {
  width: 40px;
  height: 40px;
  border: solid 2px #6eb92b !important;
  border-radius: 4px;
  background: #ffffff;
  color: #6eb92b;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 38px;
  text-align: center;
  font-family: "FuturaDemiBold";
  margin: 0 10px !important;
  padding: 0 !important;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 5px !important;
    width: 30px;
    height: 30px;
    line-height: 28px;
  }
}

.wp-pagenavi a.current,
.wp-pagenavi a:hover,
.wp-pagenavi span.current,
.wp-pagenavi span:hover {
  background: #6eb92b;
  color: #fff;
}

.wp-pagenavi a.pages,
.wp-pagenavi span.pages {
  display: none;
}

.wp-pagenavi a.extend,
.wp-pagenavi span.extend {
  display: none;
}

.wp-pagenavi a.last,
.wp-pagenavi a.first,
.wp-pagenavi span.last,
.wp-pagenavi span.first {
  font-size: 15px;
  font-size: 1.5rem;
  width: 65px;
}

@media screen and (max-width: 768px) {

  .wp-pagenavi a.last,
  .wp-pagenavi a.first,
  .wp-pagenavi span.last,
  .wp-pagenavi span.first {
    font-size: 13px;
    font-size: 1.3rem;
    width: 55px;
  }
}

.back-top-btn {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .back-top-btn {
    max-width: 250px;
  }
}

.back-top-btn .btn {
  font-size: 18px;
  font-size: 1.8rem;
  height: 60px;
  line-height: 58px;
}

.page-404-txt {
  padding-bottom: 150px;
}

@media screen and (max-width: 768px) {
  .page-404-txt {
    padding-bottom: 50px;
  }
}

.page-404-txt .txt {
  line-height: 1.9;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .page-404-txt .txt {
    margin-bottom: 20px;
  }
}

/* ====================================================
MODULE
==================================================== */
/*パンくずMODULE*/
.breadcrumb {
  background: #6eb92b;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 15px 0;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 10px 0;
  }
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb i {
  padding: 0 10px;
}

@media screen and (max-width: 768px) {
  .breadcrumb i {
    padding: 0 6px;
  }
}

/*見出しMODULE*/
.ttlCom01 {
  font-family: "FuturaDemiBold";
  color: #6eb92b;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.2;
}

@media screen and (max-width: 768px) {
  .ttlCom01 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.ttlCom01 span {
  font-family: "Noto Sans CJK JP", "Noto Sans Japanese", "Noto Sans JP",
    "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, YuGothic,
    "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.25;
}

@media screen and (max-width: 768px) {
  .ttlCom01 span {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.ttlCom02 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
  padding-bottom: 10px;
  border-bottom: solid 2px #6eb92b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .ttlCom02 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.ttlCom03 {
  border: solid 2px #6eb92b;
  width: 100%;
  position: relative;
  z-index: 1;
}

.ttlCom03::after,
.ttlCom03::before {
  position: absolute;
  content: "";
  display: block;
  background: #6eb92b;
}

.ttlCom03::after {
  right: -4px;
  top: 2px;
  width: 4px;
  height: calc(100% + 2px);
}

.ttlCom03::before {
  left: 2px;
  bottom: -4px;
  width: calc(100% + 2px);
  height: 4px;
}

.ttlCom03 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding: 10px 15px 10px 20px;
  width: 100%;
  font-size: 22px;
  font-size: 2.2rem;
  color: #6eb92b;
  line-height: 1.36;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .ttlCom03 span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.ttlCom03 b {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "FuturaDemiBold";
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .ttlCom03 b {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.ttlCom04 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
  color: #808080;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 23px;
}

@media screen and (max-width: 768px) {
  .ttlCom04 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.ttlCom04 .btnCom01 {
  margin-left: 35px;
}

@media screen and (max-width: 768px) {
  .ttlCom04 .btnCom01 {
    margin-left: 20px;
  }
}

.ttlCom04 .madel-cate {
  padding-left: 15px;
  color: #6eb92b;
}

@media screen and (max-width: 990px) {
  .ttlCom04 {
    margin-bottom: 10px;
  }
}

.ttlCom05 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.4;
  padding-bottom: 25px;
  border-bottom: solid 1px #6eb92b;
  margin-bottom: 40px;
}

@media screen and (max-width: 990px) {
  .ttlCom05 {
    font-size: 24px;
    font-size: 2.4rem;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .ttlCom05 {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
}

.ttlCom06 {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.8;
  padding-bottom: 10px;
  border-bottom: dotted 1px #6eb92b;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .ttlCom06 {
    margin-bottom: 15px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/*テキストMODULE*/
.txtBasic {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.8;
}

@media screen and (max-width: 990px) {
  .txtBasic {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .txtBasic {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left;
}

/*リンクMODULE*/
/*ボタンMODULE*/
.btn {
  display: block;
  border: 1px solid #6eb92b;
  background: #6eb92b;
  color: #fff;
  line-height: 68px;
  height: 70px;
  border-radius: 5px;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .btn {
    font-size: 15px;
    font-size: 1.5rem;
    height: 50px;
    line-height: 48px;
  }
}

.btn:hover {
  background: #fff;
  color: #6eb92b;
}

.btn.wh-btn {
  border-color: #fff;
  background: #fff;
  color: #6eb92b;
}

.btn.wh-btn:hover {
  background: #6eb92b;
  color: #fff;
}

.btn.clear-btn {
  background: none;
  color: #6eb92b;
}

.btn.clear-btn:hover {
  background: #6eb92b;
  color: #fff;
}

.btnRed {
  color: red;
  background-color: #ffcccc;
}

.btnBlue {
  color: white;
  border-color: blue;
  background-color: blue;
}

.btnCom01 {
  height: 32px;
  line-height: 32px;
  border-radius: 5px;
  background: #d3e600;
  font-size: 15px;
  font-size: 1.5rem;
  display: inline-block;
  padding: 0 16px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .btnCom01 {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 0 10px;
    height: 25px;
    line-height: 25px;
  }
}

/*リストMODULE*/
/*ボックスMODULE*/
/*グリッドMODULE*/
/*フォームMODULE*/
/* ====================================================
Index
==================================================== */
#index {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  #index {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#index .main-visual {
  position: relative;
  padding: 0;
}

#index .main-visual .main-ttl {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 1240px;
  color: #fff;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.8;
  padding-left: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

@media screen and (max-width: 990px) {
  #index .main-visual .main-ttl {
    font-size: 23px;
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 768px) {
  #index .main-visual .main-ttl {
    font-size: 16px;
    font-size: 1.6rem;
    top: 15%;
    line-height: 1.6;
  }
}

#index .main-visual .main-ttl span {
  color: #ffea00;
  display: block;
}

#index .main-visual .main-img {
  position: absolute;
  width: 43.75%;
  bottom: 0;
  right: 20px;
}

@media screen and (max-width: 768px) {
  #index .main-visual .main-img {
    width: 100%;
    right: 0;
    padding: 0 15px;
  }
}

#index .sec-news {
  background: #6eb92b;
  padding-top: 20px;
  padding-bottom: 25px;
}

@media screen and (max-width: 768px) {
  #index .sec-news {
    padding: 10px 0 15px;
  }
}

#index .sec-news .inner {
  position: relative;
}

#index .sec-news .news-info {
  display: table;
  width: 100%;
  padding-right: 150px;
}

@media screen and (max-width: 768px) {
  #index .sec-news .news-info {
    display: block;
    padding: 0;
  }
}

#index .sec-news .news-info .info-ttl {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.7px;
  color: #ffffff;
}

#index .sec-news .news-info .titles:not(:first-of-type) {
  margin-top: 14px;
}

#index .sec-news .news-info dt,
#index .sec-news .news-info dd {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {

  #index .sec-news .news-info dt,
  #index .sec-news .news-info dd {
    display: block;
  }
}

#index .sec-news .news-info dt {
  width: 180px;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  #index .sec-news .news-info dt {
    width: 100%;
    font-size: 17px;
    font-size: 1.7rem;
    border-right: none;
    border-bottom: 1px solid #fff;
    padding: 5px 0 13px;
    margin-bottom: 10px;
  }
}

#index .sec-news .news-info dd {
  font-size: 15px;
  padding-left: 70px;
}

@media screen and (max-width: 768px) {
  #index .sec-news .news-info dd {
    padding-left: 0;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#index .sec-news .news-info dd .date {
  float: left;
  clear: left;
  width: 115px;
  display: block;
  margin-top: 3px;
}

@media screen and (max-width: 768px) {
  #index .sec-news .news-info dd .date {
    width: 85px;
  }
}

#index .sec-news .news-info dd a {
  display: block;
  line-height: 1.5;
  color: #fff;
  overflow: hidden;
}

#index .sec-news .news-info dd a:hover {
  text-decoration: underline;
}

#index .sec-news .news-btn {
  /* position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -20px; */
  margin-bottom: 10px;
  max-width: 90px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #index .sec-news .news-btn {
    max-width: 100px;
    top: 0;
    right: 15px;
    margin: 0;
  }
}

#index .sec-news .news-btn .btn {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 40px;
  height: 40px;
}

@media screen and (max-width: 768px) {
  #index .sec-news .news-btn .btn {
    line-height: 27px;
    height: 27px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#index .sec-button {
  background-color: #FCFEF2;
  padding: 70px 0;
}

@media screen and (max-width: 768px) {
  #index .sec-button {
    background-color: #FCFEF2;
    padding: 30px 0;
  }
}

#index .sec-button .inner {
  max-width: 1024px;
}

#index .sec-button_buttons {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #index .sec-button_buttons {
    display: block;
  }
}

.btn.sec-button_button {
  background: none;
  color: #6eb92b;
  width: 440px;
  height: 100px;
  line-height: 98px;
  border: 2px solid #6eb92b;
  border-color: #6eb92b;
}

@media screen and (max-width: 768px) {
  .btn.sec-button_button {
    width: 90%;
    margin: 0 auto;
    height: 70px;
    line-height: 68px;
    font-size: 1.8rem;
  }

  .btn.sec-button_button:first-child {
    margin: 0 auto 20px;
  }
}

#index .line-green {
  background: #6eb92b;
  height: 40px;
}

#index .sec-about {
  background: url(../images/index/about_bg.png);
  padding: 90px 0;
}

@media screen and (max-width: 768px) {
  #index .sec-about {
    padding: 30px 0 40px;
  }
}

#index .sec-about .inner.clearfix:nth-child(2) {
  padding-top: 90px;
}

@media screen and (max-width: 768px) {
  #index .sec-about .inner.clearfix:nth-child(2) {
    padding-top: 40px;
  }
}

#index .sec-about iframe {
  margin: 0 auto 50px;
  display: block;
}

@media screen and (max-width: 768px) {
  #index .sec-about iframe {
    margin: 0 auto 30px;
    width: 100%;
  }
}

#index .sec-about .txt-col.left,
#index .sec-about .img-col.left {
  float: left;
}

#index .sec-about .txt-col.right,
#index .sec-about .img-col.right {
  float: right;
}

@media screen and (max-width: 768px) {

  #index .sec-about .txt-col,
  #index .sec-about .img-col {
    float: none !important;
  }
}

#index .sec-about .txt-col {
  width: 44.2%;
}

@media screen and (max-width: 768px) {
  #index .sec-about .txt-col {
    width: 100%;
  }
}

#index .sec-about .img-col {
  width: 49.2%;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  #index .sec-about .img-col {
    width: 100%;
    padding-top: 0;
    text-align: center;
  }
}

#index .sec-about .sec-ttl {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  padding-bottom: 8px;
  background: url(../images/index/about_ttl_bg.png) repeat-x 0 bottom;
  color: #59a515;
  display: inline-block;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  #index .sec-about .sec-ttl {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

#index .sec-about .txt {
  line-height: 1.9;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  #index .sec-about .txt {
    margin-bottom: 25px;
  }
}

#index .sec-about .illust {
  margin-bottom: 33px;
}

@media screen and (max-width: 768px) {
  #index .sec-about .illust {
    display: block;
    max-width: 60%;
    margin: 0 auto 25px;
  }
}

#index .sec-about .more-btn {
  max-width: 400px;
}

@media screen and (max-width: 768px) {
  #index .sec-about .more-btn {
    max-width: 250px;
    margin: 30px auto 0;
  }
}

#index .sec-about .more-btn.bottom {
  max-width: 630px;
  margin: 85px auto 0;
}

@media screen and (max-width: 768px) {
  #index .sec-about .more-btn.bottom {
    max-width: 300px;
    margin-top: 40px;
  }
}

#index .sec-method {
  background: #fbfff2;
  padding: 115px 0;
}

@media screen and (max-width: 768px) {
  #index .sec-method {
    padding: 40px 0;
  }
}

#index .sec-method .sec-ttl {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  color: #59a515;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #index .sec-method .sec-ttl {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

#index .sec-method .txt {
  line-height: 1.8;
  text-align: center;
  margin-bottom: 85px;
}

@media screen and (max-width: 768px) {
  #index .sec-method .txt {
    margin-bottom: 45px;
  }
}

#index .sec-method .method-ttl {
  position: relative;
  padding-left: 50px;
  font-size: 24px;
  font-size: 2.4rem;
  color: #59a515;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  #index .sec-method .method-ttl {
    font-size: 16px;
    font-size: 1.6rem;
    padding-left: 35px;
  }
}

#index .sec-method .method-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/common/leaf_ico.png) no-repeat 0 0;
  background-size: 100% auto;
  width: 39px;
  height: 30px;
}

@media screen and (max-width: 768px) {
  #index .sec-method .method-ttl::before {
    width: 26px;
    height: 20px;
  }
}

#index .sec-method .section {
  margin-bottom: 20px;
}

#index .sec-method .method-list li {
  width: 18.92%;
  float: left;
  margin: 0 1.35% 15px 0;
}

@media screen and (max-width: 768px) {
  #index .sec-method .method-list li {
    width: 48%;
    margin: 0 4% 25px 0 !important;
  }

  #index .sec-method .method-list li:nth-of-type(2n) {
    margin-right: 0 !important;
  }
}

#index .sec-method .method-list li:last-of-type {
  margin-right: 0;
}

#index .sec-method .method-list li.all-link {
  width: 39.12%;
}

@media screen and (max-width: 768px) {
  #index .sec-method .method-list li.all-link {
    width: 100%;
    clear: both;
    display: none;
  }
}

#index .sec-method .method-list li.all-link a {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#index .sec-method .method-list li.all-link a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

#index .sec-method .method-list li img {
  width: 100%;
}

#index .sec-method .method-list li .overlay-area {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
  #index .sec-method .method-list li .overlay-area {
    opacity: 1;
    position: static;
    background: none;
  }
}

#index .sec-method .method-list li .overlay-area .ttl {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-size: 1.7rem;
}

@media screen and (max-width: 768px) {
  #index .sec-method .method-list li .overlay-area .ttl {
    font-size: 13px;
    font-size: 1.3rem;
    text-align: left;
    padding: 7px 0 0;
    color: #464646;
  }
}

@media screen and (max-width: 320px) {
  #index .sec-method .method-list li .overlay-area .ttl {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

#index .sec-method .method-list li a {
  position: relative;
  display: block;
}

#index .sec-method .method-list li a:hover .overlay-area {
  opacity: 1;
}

#index .sec-method .more-btn {
  max-width: 630px;
  margin: 85px auto 0;
}

@media screen and (max-width: 768px) {
  #index .sec-method .more-btn {
    max-width: 300px;
    margin-top: 20px;
  }
}

.mb20 {
  margin-bottom: 20px;
}

/* ====================================================
Company
==================================================== */
#company .page-head {
  background-image: url(../images/company/company_mv.png);
}

#company .page-intro {
  margin-bottom: 170px;
}

@media screen and (max-width: 768px) {
  #company .page-intro {
    margin-bottom: 50px;
  }
}

#company .sec-message {
  padding: 140px 0 0;
  margin-bottom: 130px;
}

@media screen and (max-width: 768px) {
  #company .sec-message {
    padding: 40px 0 0;
    margin-bottom: 45px;
  }
}

#company .message-bg {
  background: url(../images/company/img01.png) no-repeat center;
  background-size: cover;
  /*   margin-top: 230px; */
  height: 325px;
  /* max-width: 69%; */
}

@media screen and (max-width: 768px) {
  #company .message-bg {
    background-image: url(../images/company/img01_sp.png);
    /*     margin-top: 30px; */
    height: 180px;
    max-width: 100%;
  }
}

#company .message-wrap {
  min-height: 490px;
  background: #6eb92b;
  width: 100%;
  padding: 80px 0;
  color: #fff;
  /* margin-top: -170px; */
  /* max-width: 69%; */
  /* float: right; */
}

@media screen and (max-width: 768px) {
  #company .message-wrap {
    min-height: inherit;
    padding: 30px 15px;
    margin-top: 0;
    max-width: inherit;
  }
}

#company .message-wrap .message-container {
  position: relative;
}

#company .sp-person-img {
  display: none;
}

#company .message-wrap .person-img {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 35%;
  transform: translateY(-50%);
}

@media screen and (max-width: 1250px) {
  #company .message-wrap .person-img {
    /*     top: -26%;
    width: 45%; */
  }
}

@media screen and (max-width: 1060px) {
  #company .message-wrap .person-img {
    /*     top: 2%;
    width: 25%; */
    left: 2%;
  }
}

@media screen and (max-width: 768px) {
  #company .message-wrap .person-img {
    display: none;
  }

  #company .sp-person-img {
    display: block;
    position: relative;
    /* top: auto; */
    /* left: 15vw; */
    /* margin-top: 30px; */
    background-color: #6EB92B;
    padding-bottom: 30px;
  }

  #company .sp-person-img img {
    /*     width: 70vw; */
    width: 260px;
    height: 260px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
  }
}

@media screen and (max-width: 500px) {
  #company .sp-person-img img {
    width: 260px;
    height: 260px;
  }
}

#company .message-wrap .person-img img {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  object-fit: cover;
}

@media screen and (max-width: 1250px) {
  #company .message-wrap .person-img img {
    width: 350px;
    height: 350px;
  }
}

@media screen and (max-width: 1060px) {
  #company .message-wrap .person-img img {
    width: 200px;
    height: 200px;
  }
}

#company .message-wrap .message-txt {
  max-width: 510px;
  padding-right: 20px;
}

#company .message-wrap .ttl {
  font-weight: 500;
  font-size: 26px;
  font-size: 2.6rem;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #company .message-wrap .ttl {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
  }
}

#company .message-wrap .txt {
  line-height: 1.9;
}

#company .sec-company {
  padding-bottom: 150px;
}

@media screen and (max-width: 768px) {
  #company .sec-company {
    padding-bottom: 60px;
  }
}

#company .com-info-box {
  position: relative;
  border: 2px solid #6eb92b;
  margin: 0 8px 0 0;
  background: #fff;
  padding: 90px 20px 110px;
}

@media screen and (max-width: 768px) {
  #company .com-info-box {
    padding: 35px 15px 30px;
  }
}

#company .com-info-box::before,
#company .com-info-box::after {
  content: "";
  display: block;
  position: absolute;
  background: #6eb92b;
}

#company .com-info-box::before {
  right: -8px;
  top: 8px;
  width: 8px;
  height: 100%;
}

#company .com-info-box::after {
  left: 8px;
  bottom: -8px;
  width: 100%;
  height: 8px;
}

@media screen and (max-width: 768px) {
  #company .com-info-box .page-ttl {
    margin-bottom: 10px;
  }
}

#company .com-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

#company .com-table tr:last-of-type th,
#company .com-table tr:last-of-type td {
  border-bottom: none;
}

#company .com-table th,
#company .com-table td {
  border-bottom: 1px dashed #7dce34;
  vertical-align: middle;
  line-height: 1.8;
  padding: 12px 0;
  height: 78px;
}

@media screen and (max-width: 768px) {

  #company .com-table th,
  #company .com-table td {
    height: 65px;
    padding: 10px 0;
  }
}

#company .com-table th {
  width: 185px;
  padding-left: 35px;
}

@media screen and (max-width: 768px) {
  #company .com-table th {
    width: 95px;
    padding-left: 15px;
  }
}

/* ====================================================
About
==================================================== */
#about .page-head {
  background-image: url(../images/about/about_mv.png);
}

#about .sec-button {
  background-color: #FCFEF2;
  padding: 70px 0;
}

@media screen and (max-width: 768px) {
  #about .sec-button {
    background-color: #FCFEF2;
    padding: 30px 0;
  }
}

#about .sec-button .inner {
  max-width: 1024px;
}

#about .sec-button_buttons {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #about .sec-button_buttons {
    display: block;
  }
}

.btn.sec-button_button {
  background: none;
  color: #6eb92b;
  width: 440px;
  height: 100px;
  line-height: 98px;
  border: 2px solid #6eb92b;
  border-color: #6eb92b;
}

@media screen and (max-width: 768px) {
  .btn.sec-button_button {
    width: 90%;
    margin: 0 auto;
    height: 70px;
    line-height: 68px;
    font-size: 1.8rem;
  }

  .btn.sec-button_button:first-child {
    margin: 0 auto 20px;
  }
}

#about .line-green {
  background: #6eb92b;
  height: 40px;
}

#about .txt {
  line-height: 1.9;
}

#about .col-wrap {
  margin: 0 -15px;
}

@media screen and (max-width: 768px) {
  #about .col-wrap {
    margin: 0;
  }
}

#about .col-wrap .item {
  float: left;
  padding: 0 15px;
}

@media screen and (max-width: 768px) {
  #about .col-wrap .item {
    float: none;
    padding: 0;
    width: 100% !important;
  }
}

#about .col-wrap .item.wide {
  width: 100% !important;
}

#about .col-wrap.col2 .item {
  width: 50%;
}

#about .col-wrap.col3 .item {
  width: 33.3333%;
}

#about .col-wrap.col4 .item {
  width: 25%;
}

#about .sec-about {
  background: #fbfff2;
  padding: 70px 0 85px;
}

@media screen and (max-width: 768px) {
  #about .sec-about {
    padding: 35px 0 40px;
  }
}

#about .sec-about .txt {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #about .sec-about .txt {
    margin-bottom: 20px;
  }
}

#about .intro-box {
  background: #fff;
  border: 2px solid #b4dc8e;
  padding: 30px 50px 30px 30px;
}

@media screen and (max-width: 768px) {
  #about .intro-box {
    padding: 25px 20px;
  }
}

#about .intro-box .txt-col {
  width: calc(100% - 245px);
  padding-right: 6%;
}

@media screen and (max-width: 768px) {
  #about .intro-box .txt-col {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}

#about .intro-box .img-col {
  width: 245px;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  #about .intro-box .img-col {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}

#about .intro-box .ttl {
  color: #59a515;
  font-weight: 500;
  margin-bottom: 15px;
}

#about .intro-box .txt {
  margin-bottom: 0;
}

#about .sec-about iframe {
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 768px) {
  #about .sec-about iframe {
    width: 100%;
  }
}

#about .sec-point {
  padding: 70px 0 0;
}

@media screen and (max-width: 768px) {
  #about .sec-point {
    padding: 30px 0 15px;
  }
}

#about .sec-point .ttl-wrap {
  position: relative;
  min-height: 118px;
  max-width: 670px;
  padding-top: 30px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #about .sec-point .ttl-wrap {
    padding-top: 23px;
    padding-right: 45px;
    min-height: 74px;
    margin-bottom: 20px;
  }
}

#about .sec-point .ttl-wrap .page-ttl {
  margin-bottom: 0;
}

#about .sec-point .ttl-wrap::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 160px;
  height: 118px;
  background: url(../images/about/point_illust.png) no-repeat 0 0;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  #about .sec-point .ttl-wrap::after {
    width: 100px;
    height: 74px;
  }
}

#about .sec-point .point-intro {
  max-width: 970px;
  margin: -20px auto 110px;
}

@media screen and (max-width: 768px) {
  #about .sec-point .point-intro {
    max-width: inherit;
    margin: 0;
  }
}

#about .sec-point .point-intro dt,
#about .sec-point .point-intro dd {
  padding-top: 70px;
  min-height: 103px;
}

@media screen and (max-width: 768px) {

  #about .sec-point .point-intro dt,
  #about .sec-point .point-intro dd {
    min-height: inherit;
    padding: 0;
  }
}

#about .sec-point .point-intro dt {
  width: 340px;
  float: left;
  clear: left;
  color: #59a515;
  font-weight: 500;
  font-size: 22px;
  font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
  #about .sec-point .point-intro dt {
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    float: none;
    margin-bottom: 10px;
  }
}

#about .sec-point .point-intro dt span {
  padding-left: 50px;
  position: relative;
  display: block;
}

@media screen and (max-width: 768px) {
  #about .sec-point .point-intro dt span {
    padding-left: 30px;
  }
}

#about .sec-point .point-intro dt span::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  height: 1px;
  background: url(../images/about/border.png) repeat-x 0 0;
}

@media screen and (max-width: 768px) {
  #about .sec-point .point-intro dt span::after {
    display: none;
  }
}

#about .sec-point .point-intro dt span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  #about .sec-point .point-intro dt span::before {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

#about .sec-point .point-intro dt.point01 span::after {
  width: 165px;
}

#about .sec-point .point-intro dt.point01 span::before {
  background-image: url(../images/about/nam_01.png);
}

#about .sec-point .point-intro dt.point02 span::after {
  width: 75px;
}

#about .sec-point .point-intro dt.point02 span::before {
  background-image: url(../images/about/nam_02.png);
}

#about .sec-point .point-intro dt.point03 span::after {
  width: 100px;
}

#about .sec-point .point-intro dt.point03 span::before {
  background-image: url(../images/about/nam_03.png);
}

#about .sec-point .point-intro dd {
  padding-left: 355px;
  padding-top: 75px;
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  #about .sec-point .point-intro dd {
    padding: 0;
    margin-bottom: 25px;
  }
}

#about .sec-feature {
  background: url(../images/about/feature_bg.png) no-repeat center;
  background-size: cover;
  padding: 75px 0 72px;
}

@media screen and (max-width: 768px) {
  #about .sec-feature {
    padding: 35px 0 20px;
  }
}

#about .sec-feature .page-ttl {
  color: #fff;
}

#about .sec-feature .item {
  margin-bottom: 23px;
}

@media screen and (max-width: 768px) {
  #about .sec-feature .item {
    margin-bottom: 20px;
  }
}

#about .sec-feature .feature-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  height: 100%;
  min-height: 190px;
  padding: 35px;
}

@media screen and (max-width: 768px) {
  #about .sec-feature .feature-item {
    padding: 25px 20px;
    min-height: inherit;
  }
}

#about .sec-feature .feature-item .ttl {
  color: #59a515;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  #about .sec-feature .feature-item .ttl {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

#about .sec-action {
  padding: 85px 0 72px;
}

@media screen and (max-width: 768px) {
  #about .sec-action {
    padding: 35px 0 15px;
  }
}

#about .sec-action .page-ttl {
  margin-bottom: 75px;
}

@media screen and (max-width: 768px) {
  #about .sec-action .page-ttl {
    margin-bottom: 20px;
  }
}

#about .sec-action .item {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #about .sec-action .item {
    margin-bottom: 25px;
  }
}

#about .sec-action .item.wide .action-item {
  min-height: inherit;
}

#about .sec-action .item.wide .action-item img {
  padding: 30px 0;
}

#about .sec-action .action-item {
  background: #fff;
  height: 100%;
  padding: 30px 25px 20px;
  border: 2px solid #6eb92b;
  min-height: 520px;
}

@media screen and (max-width: 768px) {
  #about .sec-action .action-item {
    padding: 25px 20px;
    min-height: inherit;
  }
}

#about .sec-action .action-item .ttl {
  color: #59a515;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  #about .sec-action .action-item .ttl {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

#about .sec-action .action-item img {
  display: block;
  margin: 0 auto;
}

#about .sec-series {
  background: #fbfff2;
  padding: 70px 0 50px;
}

@media screen and (max-width: 768px) {
  #about .sec-series {
    padding: 35px 0 25px;
  }
}

#about .sec-series .page-ttl02 {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #about .sec-series .page-ttl02 {
    margin-bottom: 20px;
  }
}

#about .sec-series .col-wrap {
  margin: 0 -20px 30px;
}

@media screen and (max-width: 768px) {
  #about .sec-series .col-wrap {
    margin: 0 0 15px;
  }
}

#about .sec-series .col-wrap.top {
  margin: 0 -20px 70px;
}

@media screen and (max-width: 768px) {
  #about .sec-series .col-wrap.top {
    margin: 0;
  }
}

#about .sec-series .col-wrap .item {
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  #about .sec-series .col-wrap .item {
    padding: 0;
    margin-bottom: 35px;
  }
}

#about .sec-series .series-item .img {
  position: relative;
  background: #fff;
  border: 2px solid #b4dc8e;
  margin-bottom: 20px;
  overflow: hidden;
}

#about .sec-series .series-item .img::after {
  content: "";
  display: block;
  padding-top: 100%;
}

@media screen and (max-width: 768px) {
  #about .sec-series .series-item .img::after {
    padding-top: 75%;
  }
}

#about .sec-series .series-item .img img {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #about .sec-series .series-item .img img {
    width: 50%;
  }

  #about .sec-series .bottom .series-item .img img {
    width: 100%;
  }
}

#about .sec-series .series-item .ttl {
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #59a515;
}

@media screen and (max-width: 768px) {
  #about .sec-series .series-item .ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#about .sec-series .series-item .txt {
  margin-bottom: 15px;
}

#about .sec-series .series-item .btn {
  line-height: 58px;
  height: 60px;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  #about .sec-series .series-item .btn {
    font-size: 15px;
    font-size: 1.5rem;
    height: 45px;
    line-height: 43px;
  }
}

#about .sec-series .product-intro .img-col {
  width: 34.17%;
  text-align: center;
  padding: 20px 20px 0;
}

@media screen and (max-width: 768px) {
  #about .sec-series .product-intro .img-col {
    width: 100%;
    max-width: 35%;
    margin: 0 auto 25px;
    padding: 0;
  }
}

#about .sec-series .product-intro .txt-col {
  width: 65.83%;
}

@media screen and (max-width: 768px) {
  #about .sec-series .product-intro .txt-col {
    width: 100%;
  }
}

#about .sec-series .product-intro .txt-col .ttl {
  font-weight: 500;
  font-size: 26px;
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #59a515;
}

@media screen and (max-width: 768px) {
  #about .sec-series .product-intro .txt-col .ttl {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

#about .sec-series .product-intro .txt-col .txt {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #about .sec-series .product-intro .txt-col .txt {
    margin-bottom: 20px;
  }
}

#about .sec-series .product-intro .intro-img {
  text-align: right;
  padding-top: 5px;
}

#about .sec-series.house .page-ttl02 {
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  #about .sec-series.house .page-ttl02 {
    margin-bottom: 15px;
  }
}

#about .sec-series.house .txt {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #about .sec-series.house .txt {
    margin-bottom: 20px;
  }
}

#about .sec-produce {
  padding: 70px 0 95px;
}

@media screen and (max-width: 768px) {
  #about .sec-produce {
    padding: 35px 0 20px;
  }
}

#about .sec-produce .col-wrap {
  margin: 0 -10px;
}

@media screen and (max-width: 768px) {
  #about .sec-produce .col-wrap {
    margin: 0;
  }
}

#about .sec-produce .col-wrap .item {
  padding: 0 10px;
  margin-bottom: 43px;
}

@media screen and (max-width: 768px) {
  #about .sec-produce .col-wrap .item {
    padding: 0;
    margin-bottom: 20px;
  }
}

#about .sec-produce .col-wrap.wrap01 .item:nth-of-type(even) .produce-item {
  background: #c3e322;
}

#about .sec-produce .col-wrap.wrap02 .item:nth-of-type(odd) .produce-item {
  background: #c3e322;
}

#about .sec-produce .txt {
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  #about .sec-produce .txt {
    margin-bottom: 25px;
  }
}

#about .sec-produce .produce-item {
  background: #6eb92b;
  padding: 15px 20px 20px;
  height: 100%;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #about .sec-produce .produce-item {
    padding: 15px;
  }
}

#about .sec-produce .produce-item .ttl {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  #about .sec-produce .produce-item .ttl {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}

#about .sec-produce .produce-item .txt {
  margin-bottom: 0;
}

#about .sec-fertilizer {
  background: #fbfff2;
  padding: 70px 0 45px;
}

@media screen and (max-width: 768px) {
  #about .sec-fertilizer {
    padding: 35px 0 15px;
  }
}

#about .sec-fertilizer .txt {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #about .sec-fertilizer .txt {
    margin-bottom: 20px;
  }
}

#about .sec-fertilizer .sub-ttl {
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  color: #59a515;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  #about .sec-fertilizer .sub-ttl {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

#about .fertilizer-bg {
  background: url(../images/company/img01.png) no-repeat center;
  background-size: cover;
  /* margin-top: 230px; */
  height: 325px;
  /* max-width: 69%; */
}

@media screen and (max-width: 768px) {
  #about .fertilizer-bg {
    background-image: url(../images/company/img01_sp.png);
    /* margin-top: 30px; */
    height: 180px;
    max-width: 100%;
  }
}

.main-visual {
  padding: 80px 0 90px 0;
}

@media screen and (max-width: 768px) {
  .main-visual {
    padding: 30px 0;
  }
}

.page-side {
  width: 280px;
  padding-top: 35px;
}

@media screen and (max-width: 990px) {
  .page-side {
    width: 230px;
  }
}

@media screen and (max-width: 768px) {
  .page-side {
    width: 100%;
  }
}

.page-side .ttlCom03 {
  margin-bottom: 15px;
}

.page-content {
  width: calc(100% - 280px - 30px);
}

@media screen and (max-width: 990px) {
  .page-content {
    width: calc(100% - 230px - 20px);
  }
}

@media screen and (max-width: 768px) {
  .page-content {
    width: 100%;
  }
}

.page-main {
  padding-bottom: 200px;
}

@media screen and (max-width: 768px) {
  .page-main {
    padding-bottom: 80px;
  }
}

.page-main .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.item-object .item {
  padding: 35px 0;
  border-bottom: dotted 1px #6eb92b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 580px) {
  .item-object .item {
    padding: 20px 0;
  }
}

.item-object .item img {
  width: 31%;
  margin-right: 30px;
}

@media screen and (max-width: 990px) {
  .item-object .item img {
    margin-right: 15px;
  }
}

@media screen and (max-width: 580px) {
  .item-object .item img {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.item-object .item h3 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
  color: #808080;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 23px;
}

.item-object .item h3 .btnCom01 {
  margin-left: 35px;
}

@media screen and (max-width: 990px) {
  .item-object .item h3 {
    margin-bottom: 10px;
  }
}

.item-object .item .item-content {
  width: calc(100% - 31% - 30px);
}

@media screen and (max-width: 580px) {
  .item-object .item .item-content {
    width: 100%;
  }
}

.spitPage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 65px;
}

@media screen and (max-width: 768px) {
  .spitPage {
    padding-top: 30px;
  }
}

.spitPage a,
.spitPage span {
  width: 40px;
  height: 40px;
  border: solid 2px #6eb92b;
  border-radius: 4px;
  background: #ffffff;
  color: #6eb92b;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 38px;
  text-align: center;
  font-family: "FuturaDemiBold";
  margin: 0 10px;
}

@media screen and (max-width: 768px) {

  .spitPage a,
  .spitPage span {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    line-height: 28px;
  }
}

.spitPage a.current,
.spitPage span.current {
  background: #6eb92b;
  color: #fff;
}

#news_index .page-main {
  padding-bottom: 207px;
}

@media screen and (max-width: 768px) {
  #news_index .page-main {
    padding-bottom: 60px;
  }
}

#news_index .page-content .img {
  text-align: center;
  margin-bottom: 40px;
}

.cate-list {
  margin-bottom: 25px;
}

.cate-list ul {
  padding: 0 15px;
}

.cate-list ul li a {
  display: inline-block;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
  padding: 10px 0;
  color: #464646;
  border-bottom: dotted 1px #6eb92b;
  width: 100%;
  -webkit-transition: ease-in 0.5s;
  -o-transition: ease-in 0.5s;
  transition: ease-in 0.5s;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .cate-list ul li a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.cate-list ul li a:hover {
  opacity: 0.6;
}

.main-page {
  margin-top: 10rem;
}

@media screen and (max-width: 768px) {
  .main-page {
    margin-top: 6rem;
  }
}

#news_detail .page-side {
  padding-top: 54px;
}

#news_detail .page-main {
  padding-bottom: 60px;
}

.post-content {
  padding-bottom: 120px;
}

.post-content img {
  max-width: 100%;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .post-content img {
    height: auto !important;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 768px) {
  .post-content {
    padding-bottom: 40px;
  }
}

.post-content p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 35px;
}

.post-content p.text-blue {
  font-size: 18px;
  font-size: 1.8rem;
  color: #6eb92b;
}

@media screen and (max-width: 768px) {
  .post-content p.text-blue {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .post-content p {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 25px;
  }
}

.post-content h3 {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.8;
  padding-bottom: 10px;
  border-bottom: dotted 1px #6eb92b;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .post-content h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.post-content h4 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #6eb92b;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .post-content h4 {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}

#news_index .post-content h3 {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.8;
  padding-bottom: 10px;
  border-bottom: dotted 1px #6eb92b;
  margin-bottom: 25px;
  color: #6eb92b
}

@media screen and (max-width: 768px) {
  #news_index .post-content h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

#news_index .post-content h4 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #6eb92b;
  margin-bottom: 20px;
  color: #6eb92b
}

@media screen and (max-width: 768px) {
  #news_index .post-content h4 {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}

#news_index .post-content h5 {
  color: #59a515;
  padding-bottom: 13px;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  #news_index .post-content h5 {
    font-size: 15px;
    font-size: 1.5rem;
    padding-bottom: 8px;
  }
}

.direction-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.direction-page a {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #6eb92b;
  line-height: 2.5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.direction-page a:hover {
  opacity: 0.7;
}

.direction-page a i {
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .direction-page a i {
    font-size: 20px;
    font-size: 2rem;
  }
}

.direction-page a.prev i {
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .direction-page a.prev i {
    margin-right: 10px;
  }
}

.direction-page a.next i {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .direction-page a.next i {
    margin-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .direction-page a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.post-page {
  min-height: 40px;
  position: relative;
}

.post-page .prev,
.post-page .next,
.post-page .back {
  width: 135px;
  height: 40px;
  line-height: 40px;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #6eb92b;
  line-height: 2.5;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  top: 0;
}

@media screen and (max-width: 768px) {

  .post-page .prev,
  .post-page .next,
  .post-page .back {
    width: 105px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.post-page .prev a,
.post-page .next a,
.post-page .back a {
  display: block;
  color: #6eb92b;
}

.post-page .prev:hover,
.post-page .next:hover,
.post-page .back:hover {
  opacity: 0.7;
}

.post-page .prev i,
.post-page .next i,
.post-page .back i {
  font-size: 30px;
  vertical-align: middle;
  padding-bottom: 3px;
}

@media screen and (max-width: 768px) {

  .post-page .prev i,
  .post-page .next i,
  .post-page .back i {
    font-size: 20px;
    font-size: 2rem;
  }
}

.post-page .next,
.post-page .prev {
  z-index: 2;
}

.post-page .next {
  right: 0;
  text-align: right;
}

.post-page .next i {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .post-page .next i {
    margin-left: 10px;
  }
}

.post-page .prev {
  left: 0;
}

.post-page .prev i {
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .post-page .prev i {
    margin-right: 10px;
  }
}

.post-page .back {
  z-index: 1;
  width: 5em;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

#news_detail .page-side {
  padding-top: 54px;
}

#news_detail .page-main {
  padding-bottom: 60px;
}

.post-content {
  padding-bottom: 120px;
}

.post-content img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .post-content img {
    height: auto !important;
  }
}

@media screen and (max-width: 768px) {
  .post-content {
    padding-bottom: 40px;
  }
}

.post-content p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
}

.post-content p.text-blue {
  font-size: 18px;
  font-size: 1.8rem;
  color: #6eb92b;
}

@media screen and (max-width: 768px) {
  .post-content p.text-blue {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .post-content p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.direction-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.direction-page a {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #6eb92b;
  line-height: 2.5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.direction-page a:hover {
  opacity: 0.7;
}

.direction-page a i {
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .direction-page a i {
    font-size: 20px;
    font-size: 2rem;
  }
}

.direction-page a.prev i {
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .direction-page a.prev i {
    margin-right: 10px;
  }
}

.direction-page a.next i {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .direction-page a.next i {
    margin-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .direction-page a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

#contact_index {
  display: block;
}

#contact_index .page-main {
  padding-bottom: 144px;
}

#contact_index .page-main .inner {
  padding-right: 27px;
}

.post-content {
  padding-bottom: 120px;
}

.post-content img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .post-content img {
    height: auto !important;
  }
}

@media screen and (max-width: 768px) {
  .post-content {
    padding-bottom: 40px;
  }
}

.post-content p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
}

.post-content p.text-blue {
  font-size: 18px;
  font-size: 1.8rem;
  color: #6eb92b;
}

@media screen and (max-width: 768px) {
  .post-content p.text-blue {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .post-content p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.direction-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.direction-page a {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #6eb92b;
  line-height: 2.5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.direction-page a:hover {
  opacity: 0.7;
}

.direction-page a i {
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .direction-page a i {
    font-size: 20px;
    font-size: 2rem;
  }
}

.direction-page a.prev i {
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .direction-page a.prev i {
    margin-right: 10px;
  }
}

.direction-page a.next i {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .direction-page a.next i {
    margin-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .direction-page a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.page-contact {
  width: 100%;
  border: solid 2px #6eb92b;
  position: relative;
  z-index: 1;
}

.page-contact .content {
  position: relative;
  background: #ffffff;
  padding: 8.3% 10.4% 84px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .page-contact .content {
    padding: 30px 20px;
  }
}

.page-contact .btn {
  display: inline-block;
  min-width: 400px;
}

@media screen and (max-width: 768px) {
  .page-contact .btn {
    min-width: 100%;
    width: 100%;
  }
}

.page-contact:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 3px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  background: #6eb92b;
  z-index: 0;
}

.page-contact .item {
  padding-right: 9.1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 30px;
  min-height: 42px;
}

@media screen and (max-width: 990px) {
  .page-contact .item {
    padding-right: 0;
  }
}

.page-contact .item span {
  display: inline-block;
  width: 225px;
  padding-right: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  margin-top: 8px;
  font-size: 14px;
  font-size: 1.4rem;
}

.page-contact .item span b {
  color: #fd4c69;
}

@media screen and (max-width: 768px) {
  .page-contact .item span {
    width: 100%;
    margin-bottom: 20px;
  }
}

.page-contact .item .item-right,
.page-contact .item input,
.page-contact .item textarea {
  width: calc(100% - 225px);
  margin-bottom: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {

  .page-contact .item .item-right,
  .page-contact .item input,
  .page-contact .item textarea {
    width: 100%;
  }
}

.page-contact .item .item-right .item-checkbox,
.page-contact .item .item-right .mwform-checkbox-field,
.page-contact .item input .item-checkbox,
.page-contact .item input .mwform-checkbox-field,
.page-contact .item textarea .item-checkbox,
.page-contact .item textarea .mwform-checkbox-field {
  display: block;
  margin-right: 17px;
}

.page-contact .item .item-right .item-checkbox:nth-child(2n),
.page-contact .item .item-right .mwform-checkbox-field:nth-child(2n),
.page-contact .item input .item-checkbox:nth-child(2n),
.page-contact .item input .mwform-checkbox-field:nth-child(2n),
.page-contact .item textarea .item-checkbox:nth-child(2n),
.page-contact .item textarea .mwform-checkbox-field:nth-child(2n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {

  .page-contact .item .item-right .item-checkbox,
  .page-contact .item .item-right .mwform-checkbox-field,
  .page-contact .item input .item-checkbox,
  .page-contact .item input .mwform-checkbox-field,
  .page-contact .item textarea .item-checkbox,
  .page-contact .item textarea .mwform-checkbox-field {
    margin-right: 0;
  }
}

.page-contact .item .item-right .item-checkbox input,
.page-contact .item .item-right .mwform-checkbox-field input,
.page-contact .item input .item-checkbox input,
.page-contact .item input .mwform-checkbox-field input,
.page-contact .item textarea .item-checkbox input,
.page-contact .item textarea .mwform-checkbox-field input {
  display: none;
}

.page-contact .item .item-right .item-radio,
.page-contact .item .item-right .mwform-radio-field,
.page-contact .item input .item-radio,
.page-contact .item input .mwform-radio-field,
.page-contact .item textarea .item-radio,
.page-contact .item textarea .mwform-radio-field {
  display: block;
  margin-right: 17px;
}

.page-contact .item .item-right .item-radio:nth-child(2n),
.page-contact .item .item-right .mwform-radio-field:nth-child(2n),
.page-contact .item input .item-radio:nth-child(2n),
.page-contact .item input .mwform-radio-field:nth-child(2n),
.page-contact .item textarea .item-radio:nth-child(2n),
.page-contact .item textarea .mwform-radio-field:nth-child(2n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {

  .page-contact .item .item-right .item-radio,
  .page-contact .item .item-right .mwform-radio-field,
  .page-contact .item input .item-radio,
  .page-contact .item input .mwform-radio-field,
  .page-contact .item textarea .item-radio,
  .page-contact .item textarea .mwform-radio-field {
    margin-right: 0;
  }
}

.page-contact .item .item-right .item-radio input,
.page-contact .item .item-right .mwform-radio-field input,
.page-contact .item input .item-radio input,
.page-contact .item input .mwform-radio-field input,
.page-contact .item textarea .item-radio input,
.page-contact .item textarea .mwform-radio-field input {
  display: none;
}

.page-contact .item .item-right .error {
  width: 100% !important;
  padding: 0 !important;
}

.page-contact .item input {
  padding: 0 20px;
  height: 42px;
  line-height: 42px;
}

@media screen and (max-width: 768px) {
  .page-contact .item input {
    height: 35px;
    line-height: 35px;
  }
}

.page-contact .item textarea {
  padding: 10px;
  resize: none;
  line-height: 1.5;
  height: 155px;
}

@media screen and (max-width: 768px) {
  .page-contact .item textarea {
    height: 100px;
  }
}

.page-contact .item input,
.page-contact .item textarea {
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  /* Google Chrome, Safari, Opera 15+, Android, iOS */
  /* Firefox 18- */
  /* Firefox 19+ */
  /* IE 10+ */
}

.page-contact .item input:placeholder-shown,
.page-contact .item textarea:placeholder-shown {
  color: #bbbbbb;
}

.page-contact .item input::-webkit-input-placeholder,
.page-contact .item textarea::-webkit-input-placeholder {
  color: #bbbbbb;
}

.page-contact .item input:-moz-placeholder,
.page-contact .item textarea:-moz-placeholder {
  color: #bbbbbb;
  opacity: 1;
}

.page-contact .item input::-moz-placeholder,
.page-contact .item textarea::-moz-placeholder {
  color: #bbbbbb;
  opacity: 1;
}

.page-contact .item input:-ms-input-placeholder,
.page-contact .item textarea:-ms-input-placeholder {
  color: #bbbbbb;
}

.page-contact .item input:disabled,
.page-contact .item textarea:disabled {
  background: #ffffff;
  border: none;
}

@media screen and (max-width: 768px) {

  .page-contact .item input,
  .page-contact .item textarea {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .item-checkbox {
    width: 100%;
    margin-bottom: 10px;
  }

  .item-checkbox label {
    margin-bottom: 0;
  }
}

.item-checkbox input {
  display: none;
}

.item-checkbox input:checked+label:before {
  content: "\f00c";
  font: normal normal normal 14px/1 FontAwesome;
  color: #8e8f8f;
  font-size: 10px;
  text-align: center;
  line-height: 13px;
}

.item-checkbox input:disabled+label {
  background: #ffffff;
  border: none;
}

.item-checkbox label {
  position: relative;
  cursor: pointer;
  height: 42px;
  line-height: 42px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #1b222a;
  margin-bottom: 18px;
  padding: 0 24px 0 50px;
  display: inline-block;
  min-width: 300px;
}

.item-checkbox label:before {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../images/contact/ico-check.png) no-repeat;
  position: absolute;
  top: 14px;
  left: 20px;
  padding-left: 1px;
}

@media screen and (max-width: 768px) {
  .item-checkbox label {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.item-checkbox.agree {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .item-checkbox.agree {
    margin-bottom: 20px;
  }
}

.item-checkbox.agree label {
  border: 0;
  padding-left: 30px;
  margin-bottom: 0;
  font-size: 12px;
  font-size: 1.2rem;
}

.mwform-checkbox-field {
  display: block !important;
  width: auto !important;
  padding: 0 !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
}

@media screen and (max-width: 768px) {
  .mwform-checkbox-field {
    width: 100%;
    margin-bottom: 0 !important;
  }

  .mwform-checkbox-field .mwform-checkbox-field-text {
    margin-bottom: 0;
  }
}

.mwform-checkbox-field .checkbox-input {
  display: none;
}

.mwform-checkbox-field .checkbox-input:checked+.mwform-checkbox-field-text::after {
  content: "\f00c";
  font: normal normal normal 14px/1 FontAwesome;
  color: #8e8f8f;
  font-size: 10px;
  text-align: center;
  line-height: 13px;
}

.mwform-checkbox-field .mwform-checkbox-field-text {
  position: relative;
  cursor: pointer;
  height: 42px !important;
  width: inherit !important;
  line-height: 42px !important;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  font-size: 16px !important;
  font-size: 1.6rem !important;
  font-weight: 300;
  color: #1b222a;
  margin-top: 0 !important;
  margin-bottom: 18px;
  padding: 0 24px 0 50px;
  display: inline-block;
  min-width: 300px;
}

.mwform-checkbox-field .mwform-checkbox-field-text::after {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../images/contact/ico-check.png) no-repeat;
  position: absolute;
  top: 14px;
  left: 20px;
  padding-left: 1px;
}

@media screen and (max-width: 768px) {
  .mwform-checkbox-field .mwform-checkbox-field-text {
    font-size: 14px !important;
    font-size: 1.4rem !important;
  }
}

@media screen and (max-width: 768px) {
  .item-radio {
    width: 100%;
    margin-bottom: 10px;
  }

  .item-radio label {
    margin-bottom: 0;
  }
}

.item-radio input {
  display: none;
}

.item-radio input:checked+label:before {
  content: "\f00c";
  font: normal normal normal 14px/1 FontAwesome;
  color: #8e8f8f;
  font-size: 10px;
  text-align: center;
  line-height: 13px;
  position: absolute;
  top: 14px;
  left: 22px;
  z-index: 1;
}

.item-radio input:disabled+label {
  background: #ffffff;
  border: none;
}

.item-radio label {
  position: relative;
  cursor: pointer;
  height: 42px;
  line-height: 42px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #1b222a;
  margin-bottom: 18px;
  padding: 0 24px 0 50px;
  display: inline-block;
  min-width: 300px;
}

.item-radio label:before {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../images/contact/ico-check.png) no-repeat;
  position: absolute;
  top: 14px;
  left: 20px;
  padding-left: 1px;
}

@media screen and (max-width: 768px) {
  .item-radio label {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.item-radio.agree {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .item-radio.agree {
    margin-bottom: 20px;
  }
}

.item-radio.agree label {
  border: 0;
  padding-left: 30px;
  margin-bottom: 0;
  font-size: 12px;
  font-size: 1.2rem;
}

.mwform-radio-field {
  display: block !important;
  width: auto !important;
  padding: 0 !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
}

@media screen and (max-width: 768px) {
  .mwform-radio-field {
    width: 100%;
    margin-bottom: 0 !important;
  }

  .mwform-radio-field .mwform-checkbox-field-text {
    margin-bottom: 0;
  }
}

.mwform-radio-field .radio-input {
  display: none;
}

.mwform-radio-field .radio-input:checked+.mwform-radio-field-text::after {
  content: "\f00c";
  font: normal normal normal 14px/1 FontAwesome;
  color: #8e8f8f;
  font-size: 10px;
  text-align: center;
  line-height: 13px;
}

.mwform-radio-field .mwform-radio-field-text {
  position: relative;
  cursor: pointer;
  height: 42px !important;
  width: inherit !important;
  line-height: 42px !important;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  font-size: 16px !important;
  font-size: 1.6rem !important;
  font-weight: 300;
  color: #1b222a;
  margin-top: 0 !important;
  margin-bottom: 18px;
  padding: 0 24px 0 50px;
  display: inline-block;
  min-width: 300px;
}

.mwform-radio-field .mwform-radio-field-text::after {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../images/contact/ico-check.png) no-repeat;
  position: absolute;
  top: 14px;
  left: 20px;
  padding-left: 1px;
}

@media screen and (max-width: 768px) {
  .mwform-radio-field .mwform-radio-field-text {
    font-size: 14px !important;
    font-size: 1.4rem !important;
  }
}

.error {
  display: block !important;
  clear: both;
  margin: 0 !important;
  padding: 15px 0 0 225px !important;
  width: auto !important;
}

@media screen and (max-width: 768px) {
  .error {
    padding: 20px 0 0 0 !important;
  }
}

.agree {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .agree {
    margin-bottom: 20px;
  }
}

.agree .mwform-checkbox-field-text {
  border: 0 !important;
  padding-left: 30px !important;
  margin-bottom: 0 !important;
  font-size: 12px !important;
  font-size: 1.2rem !important;
}

.agree .error {
  padding: 0 !important;
}

.box-note {
  margin-top: 75px;
  margin-bottom: 45px;
  border: solid 1px #e6e6e6;
  padding: 8px 10px 8px;
}

@media screen and (max-width: 768px) {
  .box-note {
    margin: 20px 0;
  }
}

.box-note .wrap {
  height: 185px;
  padding: 35px 50px 10px;
}

@media screen and (max-width: 768px) {
  .box-note .wrap {
    padding: 20px 20px 20px 10px;
  }
}

.box-note .ttl {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 35px;
}

.box-note p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .box-note p {
    margin-bottom: 15px;
  }
}

.nicescroll-rails {
  opacity: 1 !important;
  border: solid 1px #e6e6e6;
}

.mw_wp_form_confirm .item span {
  margin-top: 0 !important;
}

.mw_wp_form_confirm .box-note,
.mw_wp_form_confirm .agree {
  display: none;
}

.thanks-message {
  padding: 20px 0 50px;
}

.thanks-message .ttl {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  color: #6eb92b;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .thanks-message .ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.thanks-message .txt {
  line-height: 1.9;
  margin-bottom: 40px;
}

/* ====================================================
Model-case
==================================================== */
.number-head {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
  padding-bottom: 10px;
  border-bottom: solid 2px #6eb92b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .number-head {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.modelcase-item {
  margin: 0 -15px;
  padding-top: 35px;
}

@media screen and (max-width: 768px) {
  .modelcase-item {
    margin: 0;
    padding-top: 20px;
  }
}

.modelcase-item .item {
  padding: 0 15px;
  float: left;
  margin-bottom: 40px;
  width: 33.3333%;
}

@media screen and (max-width: 768px) {
  .modelcase-item .item {
    padding: 0;
    width: 100%;
    margin-bottom: 35px;
  }
}

.modelcase-item .item .img {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  .modelcase-item .item .img {
    margin-bottom: 13px;
  }
}

.modelcase-item .item .img::after {
  content: "";
  display: block;
  padding-top: 68%;
}

.modelcase-item .item .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.modelcase-item .item .date {
  color: #808080;
  margin-bottom: 7px;
}

.modelcase-item .item .date span {
  color: #6eb92b;
  padding-left: 15px;
}

.modelcase-item .item .date span a {
  color: #6eb92b;
}

.modelcase-item .item .ttl {
  font-weight: 500;
  font-size: 22px;
  font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
  .modelcase-item .item .ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* ====================================================
Model-case-detail
==================================================== */
.container#model_case {
  background: initial;
}

#model_case .page-content .img {
  text-align: center;
  margin-bottom: 40px;
}

.modelcase-post-content {
  padding-bottom: 85px;
}

@media screen and (max-width: 768px) {
  .modelcase-post-content {
    padding-bottom: 20px;
  }
}

.modelcase-post-content img {
  margin-bottom: 35px;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .modelcase-post-content img {
    height: auto !important;
    margin-bottom: 25px;
  }
}

.modelcase-post-content ul {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .modelcase-post-content ul {
    margin-bottom: 25px;
  }
}

.modelcase-post-content ul li {
  line-height: 1.9;
}

.modelcase-post-content p {
  line-height: 1.9;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .modelcase-post-content p {
    margin-bottom: 25px;
  }
}

.modelcase-post-content h2 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.4;
  padding-bottom: 25px;
  border-bottom: solid 1px #6eb92b;
  margin-bottom: 40px;
}

@media screen and (max-width: 990px) {
  .modelcase-post-content h2 {
    font-size: 24px;
    font-size: 2.4rem;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .modelcase-post-content h2 {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/* .modelcase-post-content h3 {
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  font-size: 2.2rem;
  background: #6eb92b;
  border-radius: 50px 0 0 50px;
  padding: 7px 0 10px 50px;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .modelcase-post-content h3 {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 5px 0 8px 40px;
    margin-bottom: 15px;
  }
}

.modelcase-post-content h3::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #d5f04b;
  border-radius: 100px;
}

@media screen and (max-width: 768px) {
  .modelcase-post-content h3::before {
    width: 16px;
    height: 16px;
    margin-top: -8px;
    left: 15px;
  }
} */

.modelcase-post-content h3 {
  font-size: 2.6rem;
  font-weight: 500;
  padding-bottom: 8px;
  background: url(../images/index/about_ttl_bg.png) repeat-x 0 bottom;
  color: #59a515;
  display: inline-block;
  margin-bottom: 35px;
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .modelcase-post-content h3 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}

.modelcase-post-content h4 {
  border-bottom: dashed 1px #6eb92b;
  color: #59a515;
  padding-bottom: 13px;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .modelcase-post-content h4 {
    font-size: 15px;
    font-size: 1.5rem;
    padding-bottom: 8px;
  }
}

.modelcase-post-content h5 {
  color: #59a515;
  padding-bottom: 13px;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .modelcase-post-content h5 {
    font-size: 15px;
    font-size: 1.5rem;
    padding-bottom: 8px;
  }
}

.modelcase-post-content p {
  display: block;
  margin: .8em 0 1.5em;
  line-height: 1.8;
}

.modelcase-more-btn {
  margin-bottom: 200px;
}

@media screen and (max-width: 768px) {
  .modelcase-more-btn {
    margin-bottom: 80px;
  }
}

.modelcase-more {
  display: none;
}

.modelcase-post-content table {
  margin-top: 8rem;
  border-top: 1px solid #b9beb3;
  border-left: 1px solid #b9beb3;
  width: 100%;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .modelcase-post-content table {
    margin-top: 4rem;
  }
}

.modelcase-post-content table td,
.products-post-content table th {
  padding: 1rem;
  border-top: 0;
  border-left: 0;
  border-right: 1px solid #b9beb3;
  border-bottom: 1px solid #b9beb3;
  text-align: center;
}

@media screen and (max-width: 768px) {

  .modelcase-post-content table td,
  .products-post-content table th {
    padding: .5rem;
  }
}

/* ====================================================
Products-detail
==================================================== */
.container#products {
  background: initial;
}

#products .page-content {
  width: 90%;
  margin: 0 auto;
}

#products .page-content .img {
  text-align: center;
  margin-bottom: 40px;
}



.products-post-content .btn-area {
  margin-top: 8rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .products-post-content .btn-area {
    margin-top: 4rem;
  }
}

.products-post-content .btn-area .md-btn {
  padding: 3rem;
  transition-duration: .5s;
  align-items: center;
  justify-content: center;
  padding: 1em;
  position: relative;
  border: 0;
  width: 100%;
  text-decoration: none;
  line-height: 1;
  z-index: 1;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .products-post-content .btn-area .md-btn {
    padding: 1.5rem;
    font-size: 1.6rem;
  }
}

.md-btn.red {
  border: 1px solid #96110e;
  color: #fff;
  background-color: #96110e;
}

.md-btn.red:hover {
  background-color: #7b0705;
}

.products-post-content .btn-area .md-btn span {
  padding-top: 1rem;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .products-post-content .btn-area .md-btn span {
    padding-top: .5rem;
    font-size: 1.2rem;
  }
}

.products-post-content table {
  margin-top: 8rem;
  border-top: 1px solid #b9beb3;
  border-left: 1px solid #b9beb3;
  width: 100%;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .products-post-content table {
    margin-top: 4rem;
  }
}

.products-post-content table td,
.products-post-content table th {
  padding: 1rem;
  border-top: 0;
  border-left: 0;
  border-right: 1px solid #b9beb3;
  border-bottom: 1px solid #b9beb3;
  text-align: center;
}

@media screen and (max-width: 768px) {

  .products-post-content table td,
  .products-post-content table th {
    padding: .5rem;
  }
}

/* ====================================================
Policy
==================================================== */
#policy .page-main {
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #policy .page-main {
    padding-bottom: 25px;
  }
}

#policy .policy-content .ttl {
  color: #59a515;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px dashed #70ba2d;
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  #policy .policy-content .ttl {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }
}

#policy .policy-content .txt {
  line-height: 1.9;
  margin-bottom: 75px;
}

@media screen and (max-width: 768px) {
  #policy .policy-content .txt {
    margin-bottom: 35px;
  }
}

/*# sourceMappingURL=maps/styles.css.map */

.ecLink {}

.ecLink--head {
  position: relative;
  padding: 0 0 0 3rem !important;
  text-align: center;
}

.ecLink--head a {
  display: block;
  position: absolute;
  left: 2rem;
  top: -0.7rem;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 6rem;
}

.ecLink--head img {}

.ecLink--pro {
  padding-bottom: 2.5rem;
}

.ecLink--pro a {
  transition-duration: 0.5s;
  display: block;

  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  background: #ffb400;
  border: 1px solid #ffb400;
}

.ecLink--pro a:hover {
  background: #fff;
  color: #ffb400;
}

@media screen and (max-width: 768px) {
  .ecLink--pro {
    padding-bottom: 3rem;
  }

  .ecLink--pro a {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .contact-btn li a.ecLink--menu {
    display: block;
    padding-top: 0.8rem;
    width: 100%;
    padding-left: 0;
  }

  .contact-btn li a.ecLink--menu::before {
    display: none;
  }
}

/* ====================================================
Distributor
==================================================== */
#distributor .page-head {
  /* background-image: url(../images/about/about_mv.png); */
  background-image: url(../images/distributor/distributor_mv.jpg);
}

#distributor .txt {
  line-height: 1.9;
}

#distributor .sec-map {
  background: #fbfff2;
  padding: 70px 0 85px;
}

@media screen and (max-width: 768px) {
  #distributor .sec-map {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

#distributor .sec-map .txt {
  margin-bottom: 30px;
}

#distributor .sec-map .img {
  display: block;
  margin: 0 auto;
}

#distributor .sec-distributors {
  padding: 70px 0 85px;
}

#distributor .sec-distributors .item {
  margin-top: -50px;
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  #distributor .sec-distributors .item {
    margin-top: 0;
    padding-top: 50px;
  }
}

#distributor .sec-distributors #hokkaido .page-ttl02 {
  background-image: url(../images/distributor/hokkaido_ttl_bg.png);
  color: #6b83af;
}

#distributor .sec-distributors #tohoku .page-ttl02 {
  background-image: url(../images/distributor/tohoku_ttl_bg.png);
  color: #5babcb;
}

#distributor .sec-distributors #kanto .page-ttl02 {
  background-image: url(../images/distributor/kanto_ttl_bg.png);
  color: #82b966;
}

#distributor .sec-distributors #koshinetsu .page-ttl02 {
  background-image: url(../images/distributor/koshinetsu_ttl_bg.png);
  color: #309939;
}

#distributor .sec-distributors #hokuriku .page-ttl02 {
  background-image: url(../images/distributor/hokuriku_ttl_bg.png);
  color: #e9b200;
}

#distributor .sec-distributors #tokai .page-ttl02 {
  background-image: url(../images/distributor/tokai_ttl_bg.png);
  color: #b3a36b;
}

#distributor .sec-distributors #kinki .page-ttl02 {
  background-image: url(../images/distributor/kinki_ttl_bg.png);
  color: #e46a7e;
}

#distributor .sec-distributors #chugoku .page-ttl02 {
  background-image: url(../images/distributor/chugoku_ttl_bg.png);
  color: #b7743e;
}

#distributor .sec-distributors #kyusyu .page-ttl02 {
  background-image: url(../images/distributor/kyusyu_ttl_bg.png);
  color: #e7805a;
}

#distributor .sec-distributors .table {
  width: 100%;
  table-layout: fixed;
}

@media screen and (max-width: 768px) {
  #distributor .sec-distributors .table {
    font-size: 14px;
  }
}

#distributor .sec-distributors .table .tr {
  display: flex;
  border: 1px solid #e3e3e3;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  #distributor .sec-distributors .table .tr {
    display: block;
    position: relative;
    border-radius: 5px;
    border: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .4);
  }
}

#distributor .sec-distributors .table .tr+.tr {
  border-top: none;
}

@media screen and (max-width: 768px) {
  #distributor .sec-distributors .table .tr+.tr {
    margin-top: 1.25em;
  }
}

#distributor .sec-distributors .table .tr>* {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: .8em 1em;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  #distributor .sec-distributors .table .tr>* {
    min-height: auto;
    padding: 0 17px;
    line-height: 1.5;
  }
}

#distributor .sec-distributors .table .tr> :nth-child(n+2) {
  border-left: 1px solid #e3e3e3;
}

@media screen and (max-width: 768px) {
  #distributor .sec-distributors .table .tr> :nth-child(n+2) {
    border-left: none;
  }
}

#distributor .sec-distributors .table .tr>th {
  height: 3em;
  padding-top: 0;
  padding-bottom: 0;
}

#distributor .sec-distributors .tr .prefecture {
  flex-basis: 8em;
  padding-top: 13px;
  padding-bottom: 13px;
  background-color: #fbfff2;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

@media screen and (max-width: 768px) {
  #distributor .sec-distributors .tr .prefecture {
    font-size: 15px;
    font-weight: bold;
  }
}

#distributor .sec-distributors .tr .name {
  flex: 1 1 0%;
}

@media screen and (max-width: 768px) {
  #distributor .sec-distributors .tr .name {
    padding-top: 13px;
  }
}

#distributor .sec-distributors .tr .address {
  flex: 1 1 80px;
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  #distributor .sec-distributors .tr .address {
    display: block;
  }
}

#distributor .sec-distributors .tr .tel {
  flex-basis: 11.5em;
}

@media screen and (max-width: 1000px) {
  #distributor .sec-distributors .tr .tel {
    flex-basis: 8.5em;
  }
}

#distributor .sec-distributors .tr .tel span {
  display: inline-block;
}

#distributor .sec-distributors .tr .fax {
  flex-basis: 11.3em;
}

@media screen and (max-width: 1000px) {
  #distributor .sec-distributors .tr .fax {
    flex-basis: 8.5em;
  }
}

#distributor .sec-distributors .tr .fax span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  #distributor .sec-distributors .tr .fax {
    padding-bottom: 13px;
  }
}

#distributor .sec-distributors .map-btn {
  display: inline-block;
  margin-left: 1em;
  border: 1px solid #59A515;
  padding: 0 1em;
  background-color: #59A515;
  color: #fff;
  font-size: .9em;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  #distributor .sec-distributors .map-btn {
    display: block;
    position: absolute;
    right: 17px;
    top: 13px;
    font-size: 12px;
    padding: .5px 1.5em;
  }
}

#distributor .sec-distributors .map-btn:hover {
  background-color: #fff;
  color: #59A515;
}

@media screen and (max-width: 768px) {
  #distributor .sec-distributors .map-btn i {
    margin-right: .5em;
  }
}