@charset "UTF-8";
/*英文フォント*/
/*事業内容*/
/*会社概要*/
/*---------------------------
wrap
----------------------------*/
#wrap {
  width: 100%;
  margin: 0px;
  padding: 0px;
}
@media only screen and (min-width: 641px) and (max-width: 1296px) {
  #wrap {
    /*tablet*/
    overflow: hidden;
  }
}
@media screen and (max-width: 640px) {
  #wrap {
    /*sp*/
    overflow: hidden;
  }
}

/*---------------------------
color
----------------------------*/
.green {
  color: #00954F;
}

.deep_green {
  color: #006B39;
}

.white {
  color: #fff;
}

.bk_white {
  background-color: #fff;
}

.bg_green {
  background-color: #00954F;
}

.bg_deep_green {
  background-color: #006B39;
}

.bg_lite_green {
  background-color: #91C300;
}

.bg_black {
  background-color: #000;
}

.bg_blue {
  background-color: #006896;
}

.bg_deep_blue {
  background-color: #00425F;
}

/*---------------------------
br
----------------------------*/
.sp_on {
  display: none;
}
@media screen and (max-width: 640px) {
  .sp_on {
    display: block;
  }
}

.sp_off {
  display: block;
}
@media screen and (max-width: 640px) {
  .sp_off {
    display: none;
  }
}

/*---------------------------
header
----------------------------*/
header {
  margin: 0px;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 640px) {
  header {
    top: 0;
    left: 0;
    z-index: 1000;
    background: #fff;
  }
}
header .inner {
  width: 100%;
  padding: 35px 0 25px;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  transition: 1s;
  z-index: 999;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  header .inner {
    padding: 15px 0;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  header .inner {
    /*tablet*/
    padding: 15px 0;
  }
}
@media screen and (max-width: 640px) {
  header .inner {
    padding: 15px 0;
    transition: unset;
  }
}
header .inner .logo {
  vertical-align: middle;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  header .inner .logo {
    /*769px~1024px*/
    width: 15%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  header .inner .logo {
    /*tablet*/
    width: 30%;
    font-size: 1.0rem;
  }
}
@media screen and (max-width: 640px) {
  header .inner .logo {
    width: 60%;
    z-index: -1;
  }
}
header .inner .logo a {
  text-decoration: none;
}
header .inner .logo a .logo_img {
  width: 20%;
  max-height: 50px;
  vertical-align: middle;
  margin-right: 1em;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  header .inner .logo a .logo_img {
    width: 20%;
    margin-right: 0.1em;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  header .inner .logo a .logo_img {
    /*tablet*/
    width: 30%;
  }
}
@media screen and (max-width: 640px) {
  header .inner .logo a .logo_img {
    width: 30%;
  }
}
header .inner .logo a .site_title {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  color: #fff;
}
header .inner .logo a .site_title h1 {
  font-size: 2.4em;
  margin-bottom: 0.2em;
  font-family: "Great Vibes", cursive;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  header .inner .logo a .site_title h1 {
    font-size: 1.6em;
    font-family: "Great Vibes", cursive;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  header .inner .logo a .site_title h1 {
    /*tablet*/
    font-size: 1.6rem;
    text-align: left;
    font-family: "Great Vibes", cursive;
  }
}
@media only screen and (max-width: 640px) {
  header .inner .logo a .site_title h1 {
    font-size: 2.0rem;
    font-family: "Great Vibes", cursive;
    font-weight: normal; 
  }
}
header .inner .logo a .site_title p {
  font-size: .8em;
  text-align: left;
  vertical-align: middle;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  header .inner .logo a .site_title p {
    font-size: 0.7em;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  header .inner .logo a .site_title p {
    /*tablet*/
    font-size: 0.8rem;
  }
}
header .inner .toggle-btn {
  display: none;
}
@media only screen and (max-width: 1296px) {
  header .inner .toggle-btn {
    /*sp*/
    position: fixed;
    right: 12px;
    top: 15px;
    display: block;
    width: 55px;
    height: 55px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
    background: #008547;
    text-shadow: 0px 0px 5px #000;
  }
  header .inner .toggle-btn span {
    display: block;
    position: absolute;
    /* .toggleに対して */
    width: 60%;
    margin: 0 auto;
    border-bottom: solid 4px #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    padding-top: 3px;
    right: 10px;
  }
  header .inner .toggle-btn span:nth-child(1) {
    top: 6px;
  }
  header .inner .toggle-btn span:nth-child(2) {
    top: 16px;
  }
  header .inner .toggle-btn span:nth-child(3) {
    top: 26px;
  }
  header .inner .toggle-btn span:nth-child(4) {
    border: none;
    top: 30px;
    font-size: 0.6rem;
    color: #fff;
  }
  header .inner .toggle-btn.active span:nth-child(1) {
    top: 15px;
    left: 4px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header .inner .toggle-btn.active span:nth-child(2),
  header .inner .toggle-btn.active span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
header #mask {
  display: none;
  transition: all .5s;
}
header #mask.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .7;
  z-index: -1;
  cursor: pointer;
}
header nav {
  margin: 0 2% 0 auto;
  vertical-align: middle;
  width: 80%;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
@media only screen and (min-width: 641px) and (max-width: 1296px) {
  header nav {
    width: 40%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    background: #006E39;
    padding: 0;
    transform: translateX(100vw);
    transition: all .3s linear;
  }
}
@media only screen and (max-width: 640px) {
  header nav {
    /*sp*/
    width: 80%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    background: #006E39;
    padding: 0;
    transform: translateX(100vw);
    transition: all .3s linear;
  }
}
header nav.active {
  transform: translateX(4vw);
}
header nav ul {
  width: 100%;
  order: 2;
  display: block;
  padding: 0px;
  margin: 0px;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 640px) {
  header nav ul {
    /*sp*/
    padding: 0;
    margin-top: .5rem;
  }
}
header nav ul li:nth-of-type(1) {
  background: none;
}
@media only screen and (min-width: 769px) and (max-width: 1296px) {
  header nav ul li {
    width: 100%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  header nav ul li {
    /*tablet*/
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  header nav ul li {
    /*sp*/
    width: 100%;
    text-align: left;
  }
}
header nav ul li a {
  text-decoration: none;
  font-size: 1em;
  padding: .2em 1.0em;
  margin: 0 .5em;
  text-align: center;
  display: block;
  letter-spacing: 0px;
}
@media only screen and (min-width: 769px) and (max-width: 1296px) {
  header nav ul li a {
    /*769px~1200px(ipadpro 1024px)*/
    display: inline-block;
    margin-left: 0;
    padding: 1.25rem 0 1.5rem 3rem;
    width: 100%;
    font-size: 0.9rem;
    text-align: left;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  header nav ul li a {
    /*tablet*/
    display: inline-block;
    margin-left: 0;
    padding: 1.25rem 0 1.5rem 3rem;
    width: 100%;
    font-size: 1rem;
    text-align: left;
  }
}
@media screen and (max-width: 640px) {
  header nav ul li a {
    /*sp*/
    display: inline-block;
    margin-left: 0;
    padding: 0.8rem 0 0.8rem 2.0rem;
    width: 100%;
    font-size: 1rem;
    text-align: left;
  }
}
header nav ul li a:link {
  color: #fff;
}
header nav ul li a:visited {
  color: #fff;
}
header nav ul li a:hover {
  color: #fff;
  border-radius: 1em;
  background: #00954F;
}
@media only screen and (min-width: 641px) and (max-width: 1296px) {
  header nav ul li a:hover {
    /*tablet*/
    border-radius: 0;
  }
}
@media screen and (max-width: 640px) {
  header nav ul li a:hover {
    /*sp*/
    /*sp*/
    background: #00954F;
    border-radius: 0px;
    border: none;
    color: #fff;
  }
}
header nav ul li a.on {
  color: #fff;
  border-radius: 1em;
  background: #00954F;
}
@media only screen and (min-width: 641px) and (max-width: 1296px) {
  header nav ul li a.on {
    /*tablet*/
    background: url(../img/common/list_arrow.png) left 1rem top 1.57rem no-repeat #00954F;
    color: #fff;
    border: none;
    border-radius: 0em;
    z-index: -1;
  }
}
@media screen and (max-width: 640px) {
  header nav ul li a.on {
    /*sp*/
    /*sp*/
    background: url(../img/common/list_arrow.png) left 1rem top 1.57rem no-repeat #00954F;
    color: #fff;
    border: none;
    border-radius: 0em;
    z-index: -1;
  }
}
header nav ul li.nav_privacy_policy {
  position: absolute;
  top: .5em;
  right: 2%;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  header nav ul li.nav_privacy_policy {
    right: 18%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  header nav ul li.nav_privacy_policy {
    /*tablet*/
    position: static;
  }
}
@media screen and (max-width: 640px) {
  header nav ul li.nav_privacy_policy {
    /*sp*/
    position: static;
    text-align: left;
  }
}
header nav ul li.nav_contact {
  width: 170px;
  background: none;
  position: static;
}
@media only screen and (min-width: 769px) and (max-width: 1296px) {
  header nav ul li.nav_contact {
    width: 85%;
    position: static;
    margin: 0 auto;
    border-radius: .5rem;
  }
  header nav ul li.nav_contact a {
    padding: 1.0rem 0;
    text-align: center;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  header nav ul li.nav_contact {
    /*tablet*/
    width: 85%;
    position: static;
    margin: 0 auto;
    border-radius: .5rem;
  }
  header nav ul li.nav_contact a {
    padding: .8rem 0;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  header nav ul li.nav_contact {
    /*sp*/
    width: 85%;
    position: static;
    margin: 0 auto;
    border-radius: .5rem;
  }
  header nav ul li.nav_contact a {
    padding: .7rem 0;
    text-align: center;
  }
}
header nav ul li.nav_contact a {
  background-image: url(../img/common/nav_mail.png);
  background-color: #ffa805;
  background-repeat: no-repeat;
  background-position: 5% center;
  border-radius: .5rem;
  padding: .7em 0;
  padding-left: 1.6em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  header nav ul li.nav_contact a {
    padding: 0.3rem 0.5rem;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  header nav ul li.nav_contact a {
    /*tablet*/
    margin-top: 1rem;
  }
}
@media screen and (max-width: 640px) {
  header nav ul li.nav_contact a {
    /*sp*/
    margin-top: 1rem;
  }
}
header nav .close {
  display: none;
}
@media only screen and (min-width: 641px) and (max-width: 1296px) {
  header nav .close {
    /*tablet*/
    display: block;
    background: url(../img/common/close.png) no-repeat left 6rem top 1.3rem #004F2A;
    padding: 1rem;
    letter-spacing: 2px;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 640px) {
  header nav .close {
    /*sp*/
    display: block;
    background: url(../img/common/close.png) no-repeat left 6rem top 1.3rem #004F2A;
    padding: 1rem;
    letter-spacing: 2px;
    margin-top: 1rem;
  }
}

/*---------------------------
footer
---------------------------*/
footer {
  width: 100%;
}
footer .inner {
  color: #fff;
  padding: 2.0em 0 1.0em 0;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .inner {
    width: 90%;
    padding: 2em 0;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  footer .inner {
    /*tablet*/
    width: 90%;
    font-size: 1.0rem;
    padding: 1em 0;
  }
}
@media screen and (max-width: 640px) {
  footer .inner {
    padding: 1.5rem 0;
  }
}
@media screen and (max-width: 720px) {
  footer .inner .sitemap {
    flex-direction: column;
  }
}
footer .inner .sitemap ul {
  list-style: none;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-content: space-between;
  -webkit-align-content: space-between;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .inner .sitemap ul {
    width: 96%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  footer .inner .sitemap ul {
    /*tablet*/
    width: 96%;
  }
}
@media screen and (max-width: 640px) {
  footer .inner .sitemap ul {
    /*sp*/
    width: 90%;
    font-size: 1.0rem;
    margin: auto;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .inner .sitemap ul div {
    width: auto;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  footer .inner .sitemap ul div {
    /*tablet*/
  }
  footer .inner .sitemap ul div:nth-of-type(1) {
    width: 25%;
  }
  footer .inner .sitemap ul div:nth-of-type(2) {
    width: 75%;
  }
  footer .inner .sitemap ul div:nth-of-type(3), footer .inner .sitemap ul div:nth-of-type(4), footer .inner .sitemap ul div:nth-of-type(5), footer .inner .sitemap ul div:nth-of-type(6) {
    width: 25%;
  }
}
@media screen and (max-width: 640px) {
  footer .inner .sitemap ul div {
    /*sp*/
    width: 50%;
    font-size: 1.0rem;
  }
}
footer .inner .sitemap ul div li {
  text-align: left;
  box-sizing: border-box;
  padding: 0 0 1.5em 1.5em;
  background: url(../img/index/sitemap_arrow.png) left 0px top 3px no-repeat;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .inner .sitemap ul div li {
    background-position: left 0px top 6px;
    padding-left: 1.2em;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  footer .inner .sitemap ul div li {
    /*tablet*/
    width: 100%;
    padding: 0;
    padding: 0 0 0em 1.5em;
  }
}
@media screen and (max-width: 640px) {
  footer .inner .sitemap ul div li {
    width: 100%;
    padding: 0 0 0em 1.5em;
  }
}
@media screen and (max-width: 720px) {
  footer .inner .sitemap ul div li.sp_off {
    display: none;
  }
}
footer .inner .sitemap ul div li.sub {
  background: url(../img/index/sitemap_arrow02.png) left 0px top 0px no-repeat;
}
@media screen and (max-width: 860px) {
  footer .inner .sitemap ul div li.sub {
    background-position: left -2.5px top 2px;
  }
}
footer .inner .sitemap ul div li a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 1296px) {
  footer .inner .sitemap ul div li a {
    font-size: .9em;
  }
}
@media screen and (max-width: 860px) {
  footer .inner .sitemap ul div li a {
    font-size: .8rem;
  }
}
footer .inner .sitemap .insta_icon{
  margin-left: -15px;
}
@media screen and (max-width: 640px) {
  footer .inner .sitemap .insta_icon {
    margin-left: -5px;
  }
}
footer .flogo {
  width: 100%;
  padding: 3em 0;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
footer .flogo .f_inner {
  padding-left: 3em;
  text-align: left;
}
footer .flogo .f_inner .logo_img {
  height: 30px;
  vertical-align: middle;
  margin: 0 1em 0 0em;
}
@media screen and (max-width: 640px) {
  footer .flogo .f_inner .logo_img {
    margin: 0;
    padding: 0;
  }
}
footer .flogo .f_inner .f_site_title {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  text-align: left;
}
@media screen and (max-width: 640px) {
  footer .flogo .f_inner .f_site_title {
    text-align: left;
  }
}
footer .flogo .f_inner .f_site_title span {
  display:block;
  font-size: 1em;
  text-align: left;
  vertical-align: middle;
}
footer .flogo .f_inner .f_site_title span:nth-of-type(1) {
  font-size: 1.5em;
  padding-right: 1em;
}
@media only screen and (min-width: 641px) and (max-width: 1296px), (max-width: 640px) {
  footer .flogo .f_inner .f_site_title span {
    line-height: 1;
    padding-left: .5rem;
  }
}
footer .flogo .f_inner .copy {
  clear: both;
  font-size: 0.9em;
  padding-top: 20px;
}
/*
footer .flogo .privacy {
  margin-right: 3em;
}
footer .flogo .privacy img {
  width: 50%;
}
@media screen and (max-width: 640px) {
  footer .flogo .privacy img {
    width: 80%;
  }
}
*/
footer .flogo .ssl-seal,
footer .flogo .privacy {
  position: absolute;
  bottom: 40px;
}
footer .flogo .privacy {
  right: 15px;
}
footer .flogo .ssl-seal {
  right: 140px; 
  width: 130px; 
  height: 66px;
  margin-top: 35px;
}
footer .flogo .privacy img {
  width: 50%;
}
@media screen and (max-width: 640px) {
  footer .flogo .ssl-seal,
  footer .flogo .privacy {
    position: static; 
    display: inline-block;
    margin: 5px;
  }
  footer .flogo {
    text-align: center;
  }
  footer .flogo .privacy img {
    width: 80%;
  }
  footer .flogo .ssl-seal {
    margin-top: 35px;
  }
}

/*----------------------
main
------------------------*/
main {
  width: 100%;
  display: block;
}

/*----------------------
aside
------------------------*/
aside {
  background-size: cover;
  margin: -6em auto 0;
}
aside .inner {
  padding: 0px 0px 40px;
}
@media only screen and (min-width: 641px) and (max-width: 1296px) {
  aside .inner {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  aside .inner {
    /*sp*/
    padding-bottom: 0;
  }
}
aside .inner .bnr {
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  aside .inner .bnr {
    margin-bottom: 0.1rem;
  }
}
aside .inner .bnr h2 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-size: 3em;
  padding-top: 0.8em;
  letter-spacing: 3px;
}
aside .inner .bnr span {
  color: #fff;
  display: block;
  padding: 1.5em 0 0.5em 0;
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 3px;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  aside .inner .bnr span {
    font-size: 1.3em;
    padding-bottom: 0.5em;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  aside .inner .bnr span {
    /*tablet*/
    width: 100%;
    font-size: 1.0rem;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  aside .inner .bnr span {
    padding: 1rem 0 0 0;
    font-size: 1.2rem;
    line-height: 1.5;
    text-shadow: 0px 0px 5px #000;
  }
}
aside .inner .sbinner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-top: 1.0em;
}
@media screen and (max-width: 959px) {
  aside .inner .sbinner {
    padding-top: 1.0em;
  }
}
@media screen and (max-width: 640px) {
  aside .inner .sbinner {
    padding-top: 1.0em;
  }
}
aside .inner .sbinner .bottom {
  padding-bottom: 0.5em;
}
@media screen and (max-width: 640px) {
  aside .inner .sbinner .bottom {
    width: 90%;
    margin: 0 auto;
  }
}
aside .inner .sbinner .bottom .row {
  align-items: flex-start;
  align-content: flex-start;
}
@media screen and (max-width: 640px) {
  aside .inner .sbinner .bottom .row {
    display: flex;
    flex-direction: column;
  }
}
aside .inner .sbinner .bottom .row .txt {
  width: 50%;
  display: block;
  font-size: 1em;
  color: #fff;
  text-align: left;
  margin: 0 3em;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  aside .inner .sbinner .bottom .row .txt {
    width: 50%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  aside .inner .sbinner .bottom .row .txt {
    /*tablet*/
    width: 50%;
    margin: 0;
    padding-left: 5%;
    line-height: 1.0rem;
  }
}
@media screen and (max-width: 640px) {
  aside .inner .sbinner .bottom .row .txt {
    width: 100%;
    margin: 0;
  }
}
aside .inner .sbinner .bottom .row .mail {
  display: block;
  width: 38%;
  margin-bottom: 1.0em;
  position: relative;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  aside .inner .sbinner .bottom .row .mail {
    width: 40%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  aside .inner .sbinner .bottom .row .mail {
    /*tablet*/
    width: 45%;
  }
}
@media screen and (max-width: 640px) {
  aside .inner .sbinner .bottom .row .mail {
    width: 100%;
  }
}
aside .inner .sbinner .bottom .row .mail a {
  width: 90%;
  display: block;
  background: #91C300;
  background-image: url(../img/index/mail.png);
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 30px;
  color: #fff;
  padding: 1.2em 0.5em 1.2em 2em;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
}
@media only screen and (min-width: 641px) and (max-width: 1296px) {
  aside .inner .sbinner .bottom .row .mail a {
    margin-bottom: 0;
    width: 90%;
    padding-left: 3.0em;
    font-size: 1.0em;
  }
}
@media screen and (max-width: 959px) {
  aside .inner .sbinner .bottom .row .mail a {
    background-position: 10px center;
  }
}
@media screen and (max-width: 640px) {
  aside .inner .sbinner .bottom .row .mail a {
    width: 100%;
    padding: 0;
    margin-top: 1.5rem;
    padding: 1rem 0 1rem 3.5rem;
    font-size: 1rem;
  }
}
aside .inner .sbinner .bottom .row .mail img {
  display: block;
  width: 36px;
  height: 25px;
  position: absolute;
  top: 1.3em;
  left: 1.2em;
}
@media screen and (max-width: 640px) {
  aside .inner .sbinner .bottom .row .mail img {
    position: absolute;
    top: 2.5rem;
    left: 1.2em;
  }
}
aside .inner > .row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  aside .inner > .row {
    background: #00914B;
    padding-top: 1.0rem;
  }
}
aside .inner > .row figure {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 48%;
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  aside .inner > .row figure:nth-of-type(1) {
    /*tablet*/
    margin-bottom: 0.7rem;
  }
}
@media screen and (max-width: 640px) {
  aside .inner > .row figure:nth-of-type(1) {
    /*sp*/
    margin-bottom: 0.7rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  aside .inner > .row figure {
    width: 48%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  aside .inner > .row figure {
    /*tablet*/
    width: 48%;
    font-size: 1.0rem;
  }
}
@media screen and (max-width: 640px) {
  aside .inner > .row figure {
    background: #00914B;
    width: 90%;
    margin: 0 auto;
    border-bottom: 1px dotted #fff;
  }
}
aside .inner > .row figure .office_img {
  width: 211px;
  height: 180px;
  object-fit: cover;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  aside .inner > .row figure .office_img {
    width: 40%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  aside .inner > .row figure .office_img {
    /*tablet*/
    width: 100%;
    height: 190px;
  }
}
@media screen and (max-width: 640px) {
  aside .inner > .row figure .office_img {
    display: block;
    width: 30%;
    height: 100px;
  }
}
aside .inner > .row figure .office_address {
  width: 55%;
  margin-left: auto;
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  aside .inner > .row figure .office_address {
    width: 55%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  aside .inner > .row figure .office_address {
    /*tablet*/
    width: 100%;
    padding: 1.0rem;
  }
}
@media screen and (max-width: 640px) {
  aside .inner > .row figure .office_address {
    width: 65%;
    background: #00914B;
  }
}
aside .inner > .row figure .office_address p {
  color: #fff;
  text-align: left;
  letter-spacing: 1px;
}
aside .inner > .row figure .office_address p:nth-of-type(1) {
  font-size: 1.5em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  aside .inner > .row figure .office_address p:nth-of-type(1) {
    padding: 1em 0 .5em;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  aside .inner > .row figure .office_address p:nth-of-type(1) {
    /*tablet*/
    padding: 0;
    padding-bottom: 1.0rem;
  }
}
@media screen and (max-width: 640px) {
  aside .inner > .row figure .office_address p:nth-of-type(1) {
    order: 1;
    padding: 0 0 0.2rem 0;
  }
}
aside .inner > .row figure .office_address p:nth-of-type(2) {
  font-size: 1.6em;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  vertical-align: middle;
}
aside .inner > .row figure .office_address p:nth-of-type(2) img {
  margin-right: 1.0rem;
  vertical-align: middle;
}
aside .inner > .row figure .office_address p:nth-of-type(2) a {
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 640px) {
  aside .inner > .row figure .office_address p:nth-of-type(2) {
    order: 4;
    font-size: 1.1rem;
    display: block;
    padding-top: .5rem;
  }
}
aside .inner > .row figure .office_address p:nth-of-type(3) {
  font-size: 1.6em;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  padding-top: .3em;
}
aside .inner > .row figure .office_address p:nth-of-type(3) img {
  margin-right: 1.0rem;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  aside .inner > .row figure .office_address p:nth-of-type(3) {
    order: 5;
    padding-bottom: 0.5rem;
    font-size: 1.1rem;
  }
}
aside .inner > .row figure .office_address p:nth-of-type(4) {
  padding-top: .5em;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  aside .inner > .row figure .office_address p:nth-of-type(4) {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 640px) {
  aside .inner > .row figure .office_address p:nth-of-type(4) {
    order: 2;
    padding: 0;
    line-height: 1.1rem;
  }
}
aside .inner > .row figure .office_address p:nth-of-type(5) {
  padding-top: .5em;
}
aside .inner > .row figure .office_address p:nth-of-type(5) img {
  padding: 0 .5em 0em .3em;
  vertical-align: middle;
}
aside .inner > .row figure .office_address p:nth-of-type(5) a {
  color: #fff;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  aside .inner > .row figure .office_address p:nth-of-type(5) {
    order: 3;
    padding-bottom: 1rem;
  }
}
aside.pages {
  background-color: #00954F;
  padding: 2.0em 0;
  margin-top: 0;
}
aside.pages .inner {
  padding-bottom: 0;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  aside.pages .inner {
    width: 96%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  aside.pages .inner {
    /*tablet*/
    width: 94%;
  }
}
@media screen and (max-width: 640px) {
  aside.pages .inner {
    /*sp*/
    width: 90%;
  }
}
aside.pages .inner .bnr {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
}
aside.pages .inner .bnr h2 {
  font-size: 2.0em;
  margin-right: 0.5em;
}
@media screen and (max-width: 640px) {
  aside.pages .inner .bnr h2 {
    /*sp*/
    width: 100%;
    font-size: 2.0rem;
    margin-right: 0;
    padding-top: 0.5rem !important;
  }
}
aside.pages .inner .bnr span {
  padding-bottom: 0;
}
@media screen and (max-width: 640px) {
  aside.pages .inner .bnr span {
    /*sp*/
    width: 100%;
    font-size: 1.0rem;
  }
}
aside.pages .inner figure {
  width: 35%;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  aside.pages .inner figure {
    width: 35%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  aside.pages .inner figure {
    /*tablet*/
    width: 49%;
    font-size: 1.0rem;
  }
}
@media screen and (max-width: 640px) {
  aside.pages .inner figure {
    /*sp*/
    width: 100%;
  }
}
aside.pages .inner figure.bg_green > img {
  width: 30%;
  height: 100px;
}
aside.pages .inner figure.bg_green .office_address {
  width: 65%;
}
aside.pages .inner figure.bg_green .office_address p:nth-of-type(1) {
  padding-top: 0;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  aside.pages .inner figure.bg_green .office_address p:nth-of-type(2) {
    font-size: 1.2rem;
  }
  aside.pages .inner figure.bg_green .office_address p:nth-of-type(2) img {
    margin-right: 1.0rem;
  }
  aside.pages .inner figure.bg_green .office_address p:nth-of-type(3) {
    font-size: 1.2rem;
  }
  aside.pages .inner figure.bg_green .office_address p:nth-of-type(3) img {
    margin-right: 0.2rem;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  aside.pages .inner figure.bg_green .office_address p {
    /*tablet*/
  }
  aside.pages .inner figure.bg_green .office_address p:nth-of-type(2) {
    font-size: 1.2rem;
  }
  aside.pages .inner figure.bg_green .office_address p:nth-of-type(2) img {
    margin-right: 0.7rem;
  }
  aside.pages .inner figure.bg_green .office_address p:nth-of-type(3) {
    font-size: 1.2rem;
  }
  aside.pages .inner figure.bg_green .office_address p:nth-of-type(3) img {
    margin-right: 0.7rem;
  }
}
@media screen and (max-width: 640px) {
  aside.pages .inner figure.bg_green .office_address p {
    /*sp*/
  }
  aside.pages .inner figure.bg_green .office_address p:nth-of-type(2) {
    font-size: 1.2rem;
  }
  aside.pages .inner figure.bg_green .office_address p:nth-of-type(2) img {
    margin-right: 0.7rem;
  }
  aside.pages .inner figure.bg_green .office_address p:nth-of-type(3) {
    font-size: 1.2rem;
  }
  aside.pages .inner figure.bg_green .office_address p:nth-of-type(3) img {
    margin-right: 0.7rem;
  }
}
aside.pages .inner figure.mail {
  width: 28%;
  margin-left: auto;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  aside.pages .inner figure.mail {
    width: 29%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  aside.pages .inner figure.mail {
    /*tablet*/
    width: 60%;
    margin: auto;
  }
}
@media screen and (max-width: 640px) {
  aside.pages .inner figure.mail {
    /*sp*/
    width: 100%;
  }
}
aside.pages .inner figure.mail a {
  width: 100%;
  display: block;
  background: #91C300;
  background-image: url(../img/index/mail.png);
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 30px;
  color: #fff;
  padding: 1.2em 0.5em 1.2em 2em;
  text-decoration: none;
  font-size: 1.0em;
  font-weight: bold;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  aside.pages .inner figure.mail a {
    width: 100% !important;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  aside.pages .inner figure.mail a {
    /*tablet*/
    width: 100%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 1296px) {
  aside.pages .inner figure.mail a {
    margin-bottom: 0;
    width: 90%;
    padding-left: 3.0em;
    font-size: 1.0em;
  }
}
@media screen and (max-width: 959px) {
  aside.pages .inner figure.mail a {
    background-position: 10px center;
  }
}
@media screen and (max-width: 640px) {
  aside.pages .inner figure.mail a {
    width: 100%;
    padding: 0;
    margin-top: 1.5rem;
    padding: 1rem 0 1rem 3.5rem;
    font-size: 1rem;
  }
}

.pagetop {
  background: url(../img/common/pagetop_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: fixed;
  right: 0px;
  bottom: 40px;
  width: 48px;
  height: 141px;
  display: block;
  z-index: 9999;
}
@media screen and (max-width: 640px) {
  .pagetop {
    /*sp*/
    position: fixed;
    right: 10px;
    bottom: 20px;
    width: 48px;
    height: 48px;
  }
}

/*---------------------------
common
-----------------------------*/
* .inner {
  width: 1100px;
  margin: auto;
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
  * .inner {
    /*769px~1000px(inner1000pxの場合)*/
    width: 100%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 1296px) {
  * .inner {
    /*tablet*/
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  * .inner {
    /*sp*/
    width: 100%;
  }
}
* .inner.content {
  padding: 60px 0px;
}
@media screen and (max-width: 640px) {
  * .inner.content {
    /*sp*/
    padding: 30px 0px;
    width: 94%;
  }
}

.content_title {
  width: 100%;
  padding-top: 140px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/common/title_bg_normal.png);
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .content_title {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  .content_title {
    /*tablet*/
    padding-top: 90px;
  }
}
@media screen and (max-width: 640px) {
  .content_title {
    /*sp*/
    padding-top: 85px;
  }
}
.content_title .inner {
  text-align: center;
  padding: 3.0em 0;
}
@media screen and (max-width: 640px) {
  .content_title .inner {
    /*sp*/
    padding: 1.5rem 0;
  }
}
.content_title .inner h1 {
  font-size: 2.0em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 10px;
  text-shadow: 0 0 5px #000;
}
@media screen and (max-width: 640px) {
  .content_title .inner h1 {
    /*sp*/
    font-size: 1.2rem;
  }
}
.content_title.business {
  height: 440px;
  background-image: url(../img/business/title_bg.png);
  background-position: bottom;
}
@media screen and (max-width: 640px) {
  .content_title.business {
    /*sp*/
    padding-top: 100px;
    background-size: cover;
    background-position: 30% bottom;
  }
}
.content_title.business h1 {
  text-shadow: 0 0 5px #006536;
}
@media screen and (max-width: 640px) {
  .content_title.business h1 {
    /*sp*/
    font-size: 1.2rem;
  }
}
.content_title.business .txt {
  padding-top: 3.0em;
}
@media screen and (max-width: 640px) {
  .content_title.business .txt {
    /*sp*/
    padding-top: 1.0rem;
  }
}
.content_title.business .txt span {
  display: block;
  color: #fff;
  text-shadow: 0 0 4px black;
}
.content_title.business .txt span:nth-of-type(1) {
  font-size: 2.6em;
  font-weight: bold;
  margin-bottom: 1.0em;
  letter-spacing: 2px;
}
@media screen and (max-width: 640px) {
  .content_title.business .txt span:nth-of-type(1) {
    /*sp*/
    font-size: 1.4rem;
  }
}
.content_title.business .txt span:nth-of-type(2) {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.4em;
}
@media screen and (max-width: 640px) {
  .content_title.business .txt span:nth-of-type(2) {
    /*sp*/
    font-size: 0.8rem;
    text-align: left;
    padding: 0 10%;
  }
  .content_title.business .txt span:nth-of-type(2) br {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .content_title.business {
    /*sp*/
    height: auto;
  }
}
.content_title.policy {
  height: 284px;
  background-image: url(../img/policy/title_bg.png);
}
@media screen and (max-width: 640px) {
  .content_title.policy {
    /*sp*/
    height: auto;
  }
}
.content_title.policy h1 {
  text-shadow: 0 0 4px #000;
}
.content_title.company {
  height: 284px;
  background-image: url(../img/company/title_bg.png);
}
@media screen and (max-width: 640px) {
  .content_title.company {
    /*sp*/
    height: auto;
  }
}
.content_title.company h1 {
  text-shadow: 0 0 4px #000;
}
.content_title.flow {
  height: 284px;
  background-image: url(../img/flow/title_bg.png);
}
@media screen and (max-width: 640px) {
  .content_title.flow {
    /*sp*/
    height: auto;
  }
}
.content_title.flow h1 {
  text-shadow: 0 0 4px #000;
}

main h2.title {
  color: #006B39;
  font-weight: bold;
  text-align: left;
  padding-top: 2.0em;
  padding-left: 95px;
  margin-bottom: 4.0em;
  letter-spacing: 4px;
  position: relative;
  background-image: url(../img/common/line_dash.png);
  background-repeat: no-repeat;
  background-position: right 80%;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-content: flex-start;
  -webkit-align-content: flex-start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
@media screen and (max-width: 640px) {
  main h2.title {
    /*sp*/
    padding-left: 50px;
  }
}
main h2.title:before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 0px;
  background-color: #fff;
  background-image: url(../img/common/icon_title.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 95px;
  height: 75px;
}
@media screen and (max-width: 640px) {
  main h2.title:before {
    /*sp*/
    width: 50px;
    height: 40px;
  }
}
main h2.title span {
  background-color: #fff;
  display: block;
}
main h2.title span:nth-of-type(1) {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4em;
  font-weight: normal;
  letter-spacing: 2px;
  vertical-align: middle;
  padding-right: 0.5em;
}
@media screen and (max-width: 640px) {
  main h2.title span:nth-of-type(1) {
    /*sp*/
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
}
main h2.title span:nth-of-type(2) {
  padding-right: 2.0em;
}
@media screen and (max-width: 640px) {
  main h2.title span:nth-of-type(2) {
    /*sp*/
    padding-right: 1.0rem;
    font-size: 0.8rem;
  }
}

* {
  box-sizing: border-box;
}

* .row {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

/*-----------------
タブ切り替え
------------------*/
.tab {
  margin: 5px 0px;
}
.tab li {
  color: #0B954F;
}
.tab li.current {
  background-color: #0B954F;
  color: #fff;
  position: relative;
}
.tab li.current::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 15px 0 15px;
  border-color: #0b9550 transparent transparent transparent;
  z-index: 100;
}

.col.tab-contents {
  display: none;
}

.col.current {
  display: block;
}

/* =========================================================
◆op anime
========================================================= */
.op_musk {
  width: 100%;
  height: 100%;
  background-color: #18925A;
  display: block;
  position: fixed;
  z-index: 10001;
}
.op_musk .loader_icon {
  position: absolute;
  width: 100px;
  height: auto;
  margin: auto;
  top: 43%;
  left: 0;
  right: 0;
  opacity: 1;
}
.op_musk .loader_icon img {
  width: 100px;
  height: auto;
}
.op_musk .logo {
  position: absolute;
  width: 150px;
  height: auto;
  margin: auto;
  top: 40%;
  left: 0;
  right: 0;
  opacity: 0;
}
.op_musk .logo img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5em;
}
.op_musk .logo span {
  font-size: 3.6em;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  color: #fff;
}

/*---------------------------
musk animation
-----------------------------*/
.muskin {
  position: relative;
  overflow: hidden;
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
.muskin::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: red;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  z-index: 2;
}
.muskin::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #18925A;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.isplay {
  animation-name: opa;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-delay: .5s;
}

.isplay::before {
  animation-name: play;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-delay: .5s;
}

.isplay::after {
  animation-name: out;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-delay: .5s;
}

@keyframes opa {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes play {
  0% {
    transform: translateX(-100%);
    background: #18925A;
  }
  50% {
    transform: translateX(0);
    background: #18925A;
  }
  100% {
    transform: translateX(100%);
    background: #18925A;
  }
}
@keyframes out {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, 100px);
  transition: 0.2s;
}

.fadein_l {
  opacity: 0;
  transform: translate(100px, 0);
  transition: 0.2s;
}

.fadein_r {
  opacity: 0;
  transform: translate(-100px, 0);
  transition: 0.2s;
}

.fadein.active,
.fadein_l.active,
.fadein_r.active {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes active {
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
