@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block; }

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 62.5%;
  background-color: #fff; }

body {
  margin: 0;
  font-family: 'メイリオ', 'Meiryo', sans-serif;
  line-height: 1.5;
  color: #333;
  font-size: 16px;
  font-size: 1.6rem; }

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem; } }
ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

a {
  background-color: transparent;
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }

a:active, a:hover {
  outline: 0;
  color: #000;
  text-decoration: none; }

a:focus, *:focus {
  outline: none; }

a[href^="tel:"]:hover img {
  opacity: 1; }

/*----------------------------------------------------
	画像設定
----------------------------------------------------*/
img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto; }

a img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }

a img:hover {
  filter: alpha(opacity=60);
  -ms-filter: alpha(opacity=60);
  opacity: 0.6; }

/*----------------------------------------------------
	コンテンツ幅
----------------------------------------------------*/
.inner {
  width: 100%;
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto; }

/*----------------------------------------------------
	テーブル設定
----------------------------------------------------*/
table {
  width: 100%;
  background-color: #fff;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #ccc; }

table th {
  width: 25%;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  text-align: left;
  vertical-align: middle;
  font-weight: 700; }

table td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  text-align: left;
  vertical-align: middle; }

@media screen and (max-width: 599px) {
  table.resp th, table.resp td {
    width: 100%;
    display: block;
    border-top: none; } }
/*----------------------------------------------------
	テキスト設定
----------------------------------------------------*/
.text-left {
  text-align: left; }

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

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

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

/*----------------------------------------------------
	float
----------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden; }

.fl-right {
  float: right !important; }

.fl-left {
  float: left !important; }

/*ヘッダー*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background-color: #05ac52;
  z-index: 100; }
  #header h1 {
    text-indent: -9999px;
    overflow: hidden;
    height: 0; }
  #header #h_logo {
    float: left;
    padding-left: 20px;
    line-height: 80px; }
  #header #gnav {
    float: right;
    padding: 23px 0;
    padding-right: 320px; }
    #header #gnav ul li {
      display: inline-block; }
      #header #gnav ul li a {
        display: inline-block;
        margin: 0 20px;
        font-size: 20px;
        font-size: 2rem;
        color: #fff;
        padding-bottom: 3px;
        /* テキストと下線の間隔 */
        background-image: linear-gradient(#ffffe2, #ffffe2);
        background-repeat: no-repeat;
        background-position: bottom right;
        /* 下線の初期位置 */
        background-size: 0 1px;
        /* 下線のサイズ（横幅、高さ） */
        transition: background-size 0.3s; }
        #header #gnav ul li a:hover {
          color: #ffffe2;
          background-position: bottom left;
          /* 下線のホバー時位置 */
          background-size: 100% 1px;
          /* 下線の横幅を100%にする */ }
      #header #gnav ul li.tel {
        position: absolute;
        right: 0;
        top: 0; }
        #header #gnav ul li.tel div {
          margin: 0;
          padding: 19px 0 19px 10px;
          height: 80px;
          width: 300px;
          background: url("../img/tel.svg") no-repeat left 15px top 20px;
          background-color: #0f8043;
          line-height: .7;
          text-align: center;
          font-size: 32px;
          font-size: 3.2rem;
          color: #fff; }
          #header #gnav ul li.tel div .open {
            font-size: 12px;
            font-size: 1.2rem; }
          #header #gnav ul li.tel div:hover {
            color: #fff; }
  #header .sp_tel {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #feffd7;
    top: 0;
    right: 50px;
    z-index: 2;
    text-align: center;
    line-height: 50px; }
  #header #nav-toggle, #header #nav-toggle span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer; }
  #header #nav-toggle {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #0f8043;
    top: 0;
    right: 0;
    z-index: 2; }
    #header #nav-toggle span {
      position: absolute;
      background: #fff;
      width: 30px;
      height: 2px;
      left: 0;
      right: 0;
      margin: auto; }
      #header #nav-toggle span:nth-of-type(1) {
        top: 15px; }
      #header #nav-toggle span:nth-of-type(2) {
        top: 0;
        bottom: 0; }
      #header #nav-toggle span:nth-of-type(3) {
        bottom: 15px; }
  #header .open #nav-toggle span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg); }
  #header .open #nav-toggle span:nth-of-type(2) {
    opacity: 0; }
  #header .open #nav-toggle span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg); }
  #header #sp_menu {
    display: none;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    background-color: #05ac52;
    height: 50px; }
    #header #sp_menu .sp_logo {
      line-height: 50px;
      padding-left: 20px;
      width: 240px; }
  #header #sp_nav {
    display: none;
    position: fixed;
    top: 50px;
    right: 0;
    z-index: 1;
    width: 170px;
    background-color: rgba(15, 128, 69, 0.97);
    overflow: scroll; }
    #header #sp_nav #sp_navInner {
      padding: 30px 25px;
      width: 100%;
      height: 100%;
      overflow: hidden;
      overflow-y: scroll; }
    #header #sp_nav li a {
      display: block;
      text-decoration: none;
      color: #fff;
      padding: 15px 20px;
      border-bottom: 1px solid #89ce92; }

@media screen and (max-width: 767px) {
  #gnav ul li a {
    padding: 0 10px; }

  #header {
    height: 50px;
    line-height: 50px; }
    #header #sp_menu {
      display: block;
      line-height: 1; }
    #header #pc_menu {
      display: none; } }
#container.open {
  position: fixed;
  width: 100%; }

/*----------------------------------------------------
	メインビジュアル
----------------------------------------------------*/
#main_visual {
  position: relative; }
  #main_visual .mv_key {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10; }

@media screen and (max-width: 767px) {
  #main_visual .mv_key {
    width: 90%; } }
/*----------------------------------------------------
	ページトップ
----------------------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9999; }

#pagetop a {
  width: 100px;
  height: 70px;
  text-align: center;
  display: block; }

#pagetop a:hover {
  opacity: .8; }

@media screen and (max-width: 767px) {
  #pagetop {
    bottom: 50px; } }
/*----------------------------------------------------
	iframe
----------------------------------------------------*/
@media screen and (max-width: 1024px) {
  .gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative; }

  .gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%; }

  .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%; }

  .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important; } }
/*----------------------------------------------------
	共通デザイン
----------------------------------------------------*/
.bold {
  font-weight: 700; }

.key {
  color: red; }

a.link_key {
  color: #999;
  text-decoration: underline; }

a.link_key:hover {
  text-decoration: none; }

h2 {
  margin-bottom: 30px; }

section {
  padding: 80px 0; }

@media screen and (max-width: 767px) {
  section {
    padding: 40px 0; } }
#about {
  background-color: #05ac52;
  color: #fff; }
  #about .txt_box {
    position: relative;
    padding-right: 45%; }
    #about .txt_box .image {
      position: absolute;
      right: 0;
      width: 42%;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); }

@media screen and (max-width: 767px) {
  #about h2 {
    width: 90%; }
  #about .txt_box {
    position: relative;
    padding-right: 0; }
    #about .txt_box .image {
      position: inherit;
      width: 100%;
      margin-bottom: 10px;
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      transform: translate(0, 0); }
      #about .txt_box .image img {
        height: 180px;
        width: 100%;
        object-fit: cover; } }
#use {
  background-color: #feffd7; }
  #use .use_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; }

@media screen and (max-width: 767px) {
  #use {
    background-color: #feffd7; }
    #use .use_list {
      width: 90%;
      margin: 0 auto;
      flex-wrap: wrap;
      justify-content: center; }
      #use .use_list .image {
        width: 100%;
        margin-top: -20px; }
        #use .use_list .image:last-child {
          width: 89%;
          margin-right: auto; } }
#type {
  padding-bottom: 0;
  margin-bottom: 50px;
  background: url("../img/type_bg.jpg") repeat-x center bottom; }
  #type .type_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-end; }

@media screen and (max-width: 767px) {
  #type {
    margin-bottom: 50px;
    background: none; }
    #type .inner {
      max-width: 100%;
      padding: 0; }
    #type .type_list {
      display: block;
      justify-content: space-between;
      flex-wrap: nowrap;
      align-items: flex-end; }
      #type .type_list .image {
        text-align: center;
        background: url("../img/type_bg.jpg") repeat-x center bottom;
        margin-bottom: 20px;
        background-size: 40px; }
        #type .type_list .image img {
          width: 50%; } }
#flow {
  background-color: #e4f5ec; }
  #flow .step_list > li {
    position: relative;
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 100px;
    min-height: 240px; }
    #flow .step_list > li:after {
      display: block;
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -70px;
      background: url("../img/flow_arrow.png") no-repeat center;
      width: 103px;
      height: 46px;
      margin: 0 auto; }
    #flow .step_list > li:last-child {
      margin-bottom: 20px; }
      #flow .step_list > li:last-child:after {
        display: none; }
    #flow .step_list > li .image {
      position: absolute;
      width: 30%;
      left: 30px;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); }
    #flow .step_list > li h3 {
      padding-left: 34%;
      font-size: 24px;
      font-size: 2.4rem;
      margin-bottom: 10px; }
      #flow .step_list > li h3 .step {
        color: #338e5a;
        font-size: 18px;
        font-size: 1.8rem;
        margin-right: 10px; }
        #flow .step_list > li h3 .step .no {
          font-size: 26px;
          font-size: 2.6rem; }
    #flow .step_list > li .step_txt {
      padding-left: 34%; }
      #flow .step_list > li .step_txt a.link {
        text-decoration: underline;
        color: #338e5a; }
        #flow .step_list > li .step_txt a.link:hover {
          text-decoration: none; }
      #flow .step_list > li .step_txt .contact_list {
        display: flex;
        margin-top: 20px; }
        #flow .step_list > li .step_txt .contact_list li {
          border: solid 1px #ccc;
          padding: 10px 20px;
          font-size: 18px;
          font-size: 1.8rem; }
          #flow .step_list > li .step_txt .contact_list li span {
            color: #338e5a;
            font-size: 24px;
            font-size: 2.4rem; }
          #flow .step_list > li .step_txt .contact_list li + li {
            margin-left: 20px; }

@media screen and (max-width: 767px) {
  #flow .step_list > li {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 60px;
    min-height: auto; }
    #flow .step_list > li:after {
      bottom: -50px;
      width: 60px;
      background-size: contain; }
    #flow .step_list > li:last-child {
      margin-bottom: 10px; }
    #flow .step_list > li .image {
      position: inherit;
      width: 100%;
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      transform: translate(0, 0);
      margin-bottom: 10px; }
      #flow .step_list > li .image img {
        height: 160px;
        width: 100%;
        object-fit: cover; }
    #flow .step_list > li h3 {
      padding-left: 0;
      font-size: 20px;
      font-size: 2.0rem;
      margin-bottom: 5px; }
      #flow .step_list > li h3 .step {
        font-size: 16px;
        font-size: 1.6rem;
        margin-right: 8px; }
        #flow .step_list > li h3 .step .no {
          font-size: 24px;
          font-size: 2.4rem; }
    #flow .step_list > li .step_txt {
      padding-left: 0; }
      #flow .step_list > li .step_txt .contact_list {
        display: block;
        margin-top: 20px; }
        #flow .step_list > li .step_txt .contact_list li {
          text-align: center;
          display: block;
          width: 75%;
          margin: 0 auto;
          padding: 5px 10px;
          font-size: 16px;
          font-size: 1.6rem; }
          #flow .step_list > li .step_txt .contact_list li span {
            font-size: 20px;
            font-size: 2rem; }
          #flow .step_list > li .step_txt .contact_list li + li {
            margin: 10px auto 0; } }
#faq .faq_list .faq_q {
  background: url("../img/q_icon.png") no-repeat left 20px center;
  background-color: #f3f3f3;
  padding: 20px 20px 20px 100px;
  border-radius: 10px; }
#faq .faq_list .faq_a {
  background: url("../img/a_icon.png") no-repeat left 20px center;
  padding: 20px 20px 20px 100px; }

@media screen and (max-width: 767px) {
  #faq .faq_list .faq_q {
    padding: 10px 10px 10px 60px;
    border-radius: 5px;
    background-size: 20px; }
  #faq .faq_list .faq_a {
    padding: 10px 10px 10px 60px;
    background-size: 20px; } }
#contact {
  color: #fff;
  background: url("../img/contact_bg.jpg") repeat center; }
  #contact .contact_list {
    margin-top: 20px; }
    #contact .contact_list li {
      border: solid 1px #fff;
      padding: 10px 20px;
      font-size: 44px;
      font-size: 4.4rem; }
      #contact .contact_list li a {
        color: #fff; }

@media screen and (min-width: 767px) {
  #contact .contact_list {
    display: flex;
    justify-content: center; }
    #contact .contact_list li + li {
      margin-left: 20px; } }
@media screen and (max-width: 767px) {
  #contact h2 {
    margin-bottom: 5px; }
  #contact .contact_list {
    margin-top: 10px; }
    #contact .contact_list li {
      text-align: center;
      display: block;
      width: 80%;
      padding: 10px 20px;
      font-size: 24px;
      font-size: 2.4rem;
      margin: 0 auto; }
      #contact .contact_list li + li {
        margin-top: 10px; } }
@media screen and (min-width: 767px) {
  #company table {
    float: left;
    width: 50%; }
  #company .gmap {
    float: right;
    width: 45%; } }
@media screen and (max-width: 767px) {
  #company table {
    margin-bottom: 20px; }
    #company table tr th {
      width: 25%; } }
#footer .copyright {
  padding: 5px 0;
  border-top: solid 1px #ccc;
  color: #999;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center; }

.image-radius {
  border-radius: 20px; }

@media screen and (max-width: 767px) {
  .image-radius {
    border-radius: 10px; } }
