@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #323232;
  font-family: "YakuHanJP", "Lato","Josefin Sans", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.1rem; }

a {
  color: #0f5e0f;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer; }

img {
  max-width: 100%;
  height: auto; }

.bold {
  font-weight: bold; }

h2,
h3 {
  line-height: 1.4;
  font-weight: 600; }

.mincho {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif; }

#wrapper {
  overflow: hidden; }

/* animation
----------------------------------*/
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px); }
  100% {
    opacity: 1;
    transform: translate(0, 0); } }
.animation {
  opacity: 0; }

.slideup.on {
  opacity: 1;
  animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1); }

.zoomin.on {
  opacity: 1;
  animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1); }

.loader {
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999; }
  .loader::after {
    animation: loader 0.5s linear infinite;
    border: 1px solid #1EB51E;
    border-radius: 50%;
    border-right: 1px solid rgba(30, 181, 30, 0.2);
    border-top: 1px solid rgba(30, 181, 30, 0.2);
    content: "";
    height: 70px;
    width: 70px; }
  .loader.off {
    display: none; }

@keyframes loader {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }
/* ヘッダー
-------------------------------------------------- */
header {
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(30, 181, 30, 0.5); }
  header .inner {
    width: 1200px;
    max-width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    line-height: 1.2;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 99; }
    header .inner > .u-logo {
      width: 250px;
      padding: 10px;
      transition: all 0.3s ease; }
      header .inner > .u-logo > a {
        display: block; }
        header .inner > .u-logo > a:hover {
          transition: all 0.3s ease;
          opacity: 0.9; }
        header .inner > .u-logo > a > img {
          width: 65%; }
    header .inner > .u-contents {
      width: calc(100% - 300px);
      height: 100%; }
      header .inner > .u-contents .pc {
        height: 100%;
        padding-top: 15px;
        margin: 0 20px;
        line-height: 1;
        text-align: center; }
      header .inner > .u-contents .sp {
        display: none;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center; }
        header .inner > .u-contents .sp a {
          font-size: 1.5em; }
  header.attach {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 99;
    animation-name: slideheader;
    animation-duration: 0.6s;
    animation-timing-function: ease;
    animation-fill-mode: forwards; }
@keyframes slideheader {
  0% {
    top: -100px; }
  100% {
    top: 0; } }
  @media screen and (max-width: 960px) {
    header {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 996;
      width: 100%; }
      header .inner {
        width: 100%; }
        header .inner .u-logo {
          width: 150px;
          margin: 0; }
        header .inner .u-contents {
          width: auto; }
          header .inner .u-contents .pc {
            display: none; }
          header .inner .u-contents .sp {
            display: block; } }

.pc_br {
  display: block; }
  @media screen and (max-width: 960px) {
    .pc_br {
      display: none; } }

.sp_br {
  display: none; }
  @media screen and (max-width: 960px) {
    .sp_br {
      display: block; } }

/* グロナビ
-------------------------------------------------- */
.u-nav {
  width: 1200px;
  height: 70px;
  max-width: 100%;
  margin: auto;
  padding: 10px 0; }
  .u-nav > ul {
    display: flex;
    height: 100%; }
    .u-nav > ul > li {
      flex: 1;
      display: inline-block;
      padding: 0 10px;
      height: 100%;
      border-right: solid thin #fff; }
      .u-nav > ul > li:last-child {
        border-right: none; }
      .u-nav > ul > li > a {
        display: flex;
        align-items: center;
        height: 100%;
        color: #fff; }
        .u-nav > ul > li > a > b {
          display: inline-block;
          font-size: 0.9em;
          line-height: 1.2;
          text-align: center;
          font-weight: 400;
          letter-spacing: 0.2em;
          color: #fff;
          margin: auto; }
          .u-nav > ul > li > a > b img {
            width: 40px;
            margin-bottom: 3px; }
          .u-nav > ul > li > a > b > span {
            font-size: 0.9em;
            font-weight: 400; }
      .u-nav > ul > li:hover {
        transition: all 0.3s ease;
        background-color: #1EB51E; }
        .u-nav > ul > li:hover a b {
          color: #fff; }
  .u-nav.attach {
    transition: all 0.3s ease; }
    .u-nav.attach > ul > li {
      border-right: solid thin #000; }
      .u-nav.attach > ul > li:last-child {
        border-right: none; }
      .u-nav.attach > ul > li > a > b {
        color: #000; }
      .u-nav.attach > ul > li:hover {
        transition: all 0.3s ease;
        background-color: #FF6327; }
        .u-nav.attach > ul > li:hover a b {
          color: #fff; }
  @media screen and (max-width: 900px) {
    .u-nav {
      display: none; } }

/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%); }
  100% {
    opacity: 1;
    transform: translate(0, 0); } }
#l-header {
  width: 100%;
  position: relative;
  z-index: 100; }
  #l-header .inner {
    max-width: 1200px;
    margin: 0 auto;
    min-width: 1024px;
    position: relative; }
    @media all and (max-width: 800px) {
      #l-header .inner {
        min-width: initial; } }

#logo {
  padding: 10px 0;
  width: 230px; }

.header-wrap {
  position: absolute;
  z-index: 500;
  left: 0;
  top: 0;
  padding: 0 20px 10px;
  background: rgba(30, 181, 30, 0.4); }

.header-right_contact {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end; }
  @media all and (max-width: 800px) {
    .header-right_contact {
      display: none; } }

.header-right_tel a,
.header-right_mail a,
.header-right_entry a {
  display: block;
  padding: 8px 15px;
  border-radius: 40px;
  line-height: 1.4;
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  max-width: 350px;
  font-weight: 600; }
  .header-right_tel a span,
  .header-right_mail a span,
  .header-right_entry a span {
    padding-right: 5px; }
  .header-right_tel a:hover,
  .header-right_mail a:hover,
  .header-right_entry a:hover {
    transition: background-color 0.2s ease-in; }

.header-right_tel {
  margin-right: 10px; }
  .header-right_tel a {
    background: #178917;
    letter-spacing: 0.1rem; }
    .header-right_tel a:hover {
      background: #020709; }

.header-right_mail a {
  background: #db996c;
  color: #fff; }
  .header-right_mail a:hover {
    color: #FF6327; }

#header_nav {
  position: relative;
  margin: 0 auto; }
  #header_nav ul li {
    position: relative;
    padding: 12px 0;
    border-top: 0.9px solid #f0f0f0; }
    #header_nav ul li a {
      display: block;
      border-radius: 5px;
      letter-spacing: 0.1rem;
      position: relative;
      line-height: 1.3;
      font-size: 1.7rem;
      color: #fff;
      text-align: center;
      font-weight: 600; }
      #header_nav ul li a:after {
        position: absolute;
        transform: translateY(-50%);
        top: 50%;
        transition: 0.2s all ease-in; }
      #header_nav ul li a:after {
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        font-weight: bold;
        right: 5%;
        color: #fefefe; }
      #header_nav ul li a:hover:after, #header_nav ul li a.active:after {
        right: 2%;
        color: #ffe553; }
      #header_nav ul li a.nav1:before {
        font-family: "Font Awesome 5 Free";
        content: "\f015";
        font-weight: bold; }
      #header_nav ul li a.nav2:before {
        font-family: "Font Awesome 5 Free";
        content: "\f518";
        font-weight: bold; }
      #header_nav ul li a.nav3:before {
        font-family: "Font Awesome 5 Free";
        content: "\f083";
        font-weight: bold; }
      #header_nav ul li a.nav4:before {
        font-family: "Font Awesome 5 Free";
        content: "\f118";
        font-weight: bold; }
      #header_nav ul li a.nav5:before {
        font-family: "Font Awesome 5 Free";
        content: "\f3cd";
        font-weight: bold; }
  #header_nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 65px;
    z-index: 310;
    background: #1EB51E; }
    #header_nav .dropdown .dropdown-li {
      padding: 10px 10px;
      margin: 0 0 5px; }
      #header_nav .dropdown .dropdown-li a {
        display: block;
        width: 160px;
        text-align: center;
        font-size: 1.5rem;
        padding: 10px 0;
        border-right: 0;
        color: #555;
        border-radius: 30px;
        background: #fff; }
        #header_nav .dropdown .dropdown-li a:after {
          display: none; }
        #header_nav .dropdown .dropdown-li a:hover {
          transition: all 0.2s ease-in;
          color: #db996c; }
      #header_nav .dropdown .dropdown-li.foot_only {
        display: none; }

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999; }
  #page-top a {
    display: block;
    background: #137313;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    text-align: center; }
    #page-top a:hover {
      opacity: 0.6; }
  @media all and (max-width: 639px) {
    #page-top {
      bototm: 20px; } }

/* swiper
----------------------------------*/
@keyframes zoom-out {
  0% {
    transform: scale(1.2); }
  100% {
    transform: scale(1); } }
.slide-img {
  overflow: hidden;
  height: 100vh; }
  @media all and (max-width: 1200px) {
    .slide-img {
      height: auto; } }
  .slide-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    font-family: "object-fit: cover;"; }

#slideshow {
  position: relative;
  overflow: hidden; }
  @media all and (max-width: 1200px) {
    #slideshow {
      height: auto; } }

#catch {
  z-index: 150;
  position: absolute;
  right: 29%;
  bottom: 25%;
  opacity: 0;
  width: 40%; }
  #catch.on {
    opacity: 1;
    transition: 2s; }
  @media all and (max-width: 800px) {
    #catch {
      width: 90%;
      left: 50%;
      bottom: -1%;
      transform: translateX(-50%); } }

/* bx-slider
----------------------------------*/
#flash {
  background: url(../bxslider/images/0.jpg) no-repeat center center;
  background-size: cover;
  position: relative; }
  @media all and (max-width: 639px) {
    #flash {
      height: 40vh; } }

.slide0 {
  background-image: url(../bxslider/images/0.jpg);
  background-position: center center; }

.slide1 {
  background-image: url(../bxslider/images/1.jpg);
  background-position: center center; }

.slide2 {
  background-image: url(../bxslider/images/2.jpg);
  background-position: center center; }

.slide3 {
  background-image: url(../bxslider/images/3.jpg);
  background-position: center center; }

.slide0,
.slide1,
.slide2,
.slide3 {
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
  background-attachment: scroll;
  padding: 0px 0; }

/* bg_contact
----------------------------------*/
.bg_contact {
  position: relative;
  background: url(../img/bg_footer.jpg) no-repeat 50% 100%/cover; }
  .bg_contact .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0; }
    @media all and (max-width: 639px) {
      .bg_contact .inner {
        width: 95%;
        background: rgba(255, 255, 255, 0.5); } }

.contact_lead {
  font-size: 1.3em;
  color: #5c4332;
  text-align: center; }
  @media all and (max-width: 639px) {
    .contact_lead {
      font-size: 1em; } }

.contact_wrap {
  max-width: 1200px;
  border-top: 3px solid white;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; }
  .contact_wrap .contact_left,
  .contact_wrap .contact_right {
    width: 49%;
    padding: 20px; }
  .contact_wrap .contact_right {
    text-align: right; }
  .contact_wrap .contact_left {
    margin-right: 2%;
    border-right: 3px solid white; }
  @media all and (max-width: 639px) {
    .contact_wrap {
      margin-top: 30px;
      width: 94%;
      flex-direction: column; }
      .contact_wrap .contact_left,
      .contact_wrap .contact_right {
        width: 100%;
        padding: 10px;
        font-size: 0.9em;
        letter-spacing: 0;
        font-weight: normal; }
      .contact_wrap .contact_right {
        text-align: left; }
      .contact_wrap .contact_left {
        margin-right: auto;
        border-right: 0;
        border-bottom: 3px solid #fff; } }

.contact_bnr {
  margin: 15px 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .contact_bnr > li {
    margin-bottom: 10px; }
    .contact_bnr > li:not(:last-child) {
      margin-right: 15px; }
      @media all and (max-width: 639px) {
        .contact_bnr > li:not(:last-child) {
          margin-right: auto; } }
    .contact_bnr > li .bnr_tel {
      background: #1EB51E;
      white-space: nowrap;
      color: #fff; }
      .contact_bnr > li .bnr_tel:before {
        font-family: "Font Awesome 5 Free";
        content: "\f095";
        font-weight: bold; }
      .contact_bnr > li .bnr_tel:hover {
        background: #137313;
        color: #fff; }
    .contact_bnr > li .bnr_mobile {
      background: #1EB51E;
      border: 1px solid #178917; }
      .contact_bnr > li .bnr_mobile:before {
        font-family: "Font Awesome 5 Free";
        content: "\f3cd";
        font-weight: bold; }
      .contact_bnr > li .bnr_mobile:hover {
        background: #db996c; }
    .contact_bnr > li .bnr_fax {
      background: #fbf7e9;
      border: 1px solid #aaa;
      color: #fff; }
      .contact_bnr > li .bnr_fax:before {
        font-family: "Font Awesome 5 Free";
        content: "\f1ac";
        font-weight: bold; }
    .contact_bnr > li .bnr_mail {
      background: #FF6327;
      color: #fff; }
      .contact_bnr > li .bnr_mail:before {
        font-family: "Font Awesome 5 Free";
        content: "\f0e0";
        font-weight: bold; }
      .contact_bnr > li .bnr_mail:hover {
        color: #fff;
        background: #da3c00; }
    .contact_bnr > li a,
    .contact_bnr > li span {
      display: block;
      padding: 5px 15px;
      margin: 0 auto;
      color: #ffffff;
      border-radius: 50px;
      font-size: 2rem;
      font-weight: bold;
      text-align: center;
      width: 320px; }
      .contact_bnr > li a:before,
      .contact_bnr > li span:before {
        margin-right: 5px; }
      @media all and (max-width: 639px) {
        .contact_bnr > li a,
        .contact_bnr > li span {
          width: 300px;
          font-size: 1.5rem; } }

/* footer
----------------------------------*/
#l-footer {
  font-size: 1.4rem;
  background: url(../img/top-intro.jpg) no-repeat;
  position: relative; }
  #l-footer .inner {
    max-width: 1200px;
    margin: 0 auto; }
  #l-footer .footer-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px; }

/* footer_navi
----------------------------------*/
.footer_navi {
  padding: 10px 0;
  margin: 0 auto; }
  .footer_navi ul {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap; }
  .footer_navi li {
    flex: 1 0 auto;
    text-align: center;
    margin: 0 0.5% 4px;
    border-left: 1px dashed #555; }
    .footer_navi li:last-child {
      border-right: 1px dashed #555; }
    .footer_navi li a {
      color: #333;
      font-size: 1.5rem;
      position: relative;
      font-weight: bold; }
      .footer_navi li a span {
        display: none; }
      .footer_navi li a:hover {
        color: #0f5e0f; }
    .footer_navi li .dropdown {
      display: none; }

.column2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center; }
  .column2 .child1 {
    width: 35%; }
  .column2 .child2 {
    width: 62%; }
  @media all and (max-width: 800px) {
    .column2 .child1,
    .column2 .child2 {
      width: 100%;
      border: 0; } }

.flogo {
  width: 250px;
  text-align: center;
  margin: 0 auto 30px;
  min-height: 0; }
  @media all and (max-width: 639px) {
    .flogo {
      margin: 0 auto 10px; } }

.address {
  text-align: center;
  margin-top: 5px; }

.copyright {
  padding: 15px 0;
  background: #333;
  color: #fff;
  font-size: 1.2rem; }
  @media all and (max-width: 639px) {
    .copyright {
      font-size: 1rem; } }

/*----------------------------------
 --top-contents--
----------------------------------*/
/* --top-intro--
----------------------------------*/
.top-intro {
  position: relative; }
  .top-intro:before, .top-intro:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 90%;
    z-index: -1; }
  .top-intro:before {
    left: 0;
    top: 0;
    background: url(../img/top-intro.jpg) no-repeat 50% 70%/cover;
    opacity: 0.9; }
  .top-intro:after {
    left: 0;
    top: -100px;
    background: url(../img/bg-01_shape.png) no-repeat 50% 50%/100% auto; }
    @media all and (min-width: 2000px) {
      .top-intro:after {
        background-position: 50% 60%; } }
  @media all and (max-width: 639px) {
    .top-intro {
      padding-bottom: 80px; }
      .top-intro:before {
        bottom: auto;
        width: 100%; }
      .top-intro:after {
        height: 250px;
        width: 200px; } }

.top-intro_title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  text-align: left;
  font-size: 6rem;
  line-height: 1.3;
  left: 2%;
  top: 50px;
  font-weight: normal;
  white-space: nowrap;
  z-index: 3; }
  @media all and (max-width: 639px) {
    .top-intro_title {
      writing-mode: initial;
      font-size: 3rem;
      top: 20px;
      left: 0; }
      .top-intro_title:before {
        left: 0;
        top: 50%;
        width: 100px;
        height: 70px;
        margin: 0;
        transform: translateY(-50%); } }

.top-box {
  width: 800px;
  max-width: 75%;
  background: #fefefe;
  padding: 35px;
  position: relative;
  z-index: 5;
  margin: 50px auto 30px;
  position: relative;
  font-size: 1.05em;
  line-height: 2;
  font-weight: 600;
  text-align: center; }
  @media all and (max-width: 800px) {
    .top-box {
      max-width: 70%;
      padding: 15px;
      font-size: 1.1rem; } }
  @media all and (max-width: 639px) {
    .top-box {
      max-width: 95%;
      margin: 300px auto 0; } }

.top-lead {
  font-size: 3rem;
  line-height: 1.4;
  color: #092a35;
  text-align: center;
  margin-bottom: 20px; }
  @media all and (max-width: 639px) {
    .top-lead {
      font-size: 1.8rem; } }

.top-list_col3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto; }
  .top-list_col3 li {
    width: 31.5%;
    text-align: center; }
    .top-list_col3 li a {
      display: block; }
      .top-list_col3 li a:hover img {
        transform: scale(1.05); }
    .top-list_col3 li img {
      width: 85%;
      display: block;
      margin: 0 auto 20px;
      transition: all 0.3s ease-in;
      transform-origin: bottom; }
    .top-list_col3 li:nth-child(2) {
      margin-left: 2%; }
      @media all and (max-width: 639px) {
        .top-list_col3 li:nth-child(2) {
          marign-left: auto;
          margin-top: 40px; } }
  @media all and (max-width: 639px) {
    .top-list_col3 li {
      width: 95%; } }

.top-list_title {
  position: relative;
  z-index: 5;
  width: 90%; }
  .top-list_title .top-list_big {
    margin: -50px auto 10px 0;
    text-align: left;
    color: #111;
    font-size: 2.5rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.1); }
    .top-list_title .top-list_big span {
      display: inline-block;
      font-size: 2.5rem;
      color: #fefefe;
      padding: 7px 10px;
      background: #333;
      margin-right: 10px; }
    .top-list_title .top-list_big.type2 span {
      color: #092a35; }
  .top-list_title .top-list_txt {
    color: #222;
    text-align: left;
    background: #f3e7be;
    border-radius: 5px;
    padding: 10px; }
  @media all and (max-width: 639px) {
    .top-list_title {
      width: 100%; }
      .top-list_title .top-list_big span {
        font-size: 2rem; } }

.more {
  display: block;
  max-width: 200px;
  background: #db996c;
  color: #fff;
  padding: 4px 10px;
  margin: 10px auto -20px;
  text-align: center;
  font-size: 1.05em; }

/* --top-achive--
----------------------------------*/
.top-achive {
  position: relative;
  padding: 40px 0 0;
  margin-bottom: -100px; }
  @media all and (max-width: 639px) {
    .top-achive {
      margin-bottom: -30px; } }
  .top-achive:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
    background: url(../img/bg_top-achive.jpg) no-repeat center/cover; }

.top-box2 {
  width: 900px;
  max-width: 75%;
  padding: 35px;
  position: relative;
  z-index: 2;
  margin: 40px auto;
  position: relative;
  font-size: 1.05em; }
  @media all and (max-width: 800px) {
    .top-box2 {
      max-width: 70%;
      padding: 15px;
      font-size: 1.1rem; } }
  @media all and (max-width: 639px) {
    .top-box2 {
      max-width: 95%;
      margin: 80px auto 0; } }

.top-achive_title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 5rem;
  font-weight: normal;
  position: absolute;
  left: -250px;
  top: -80px;
  color: #5c4332;
  z-index: 5;
  line-height: 1.1; }
  .top-achive_title span {
    font-size: 8rem;
    display: block;
    font-weight: 700;
    border-right: 2px solid #fff;
    color: rgba(219, 153, 108, 0.8);
    letter-spacing: 0.2rem; }
  @media all and (max-width: 1200px) {
    .top-achive_title {
      left: -120px; } }
  @media all and (max-width: 800px) {
    .top-achive_title {
      top: -140px;
      left: 2%;
      writing-mode: initial;
      font-size: 3rem; }
      .top-achive_title span {
        font-size: 7rem;
        border-right: 0;
        color: #fff;
        text-shadow: 0 0 8px rgba(92, 67, 50, 0.3); } }
  @media all and (max-width: 639px) {
    .top-achive_title {
      top: -100px; }
      .top-achive_title span {
        font-size: 4.5rem; } }

/* --news--
----------------------------------*/
.news-box {
  padding: 15px;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  max-width: 1200px;
  background: #fefefe;
  display: flex;
  align-items: flex-start; }
  @media all and (max-width: 800px) {
    .news-box {
      margin-top: -40px; } }
  @media all and (max-width: 639px) {
    .news-box {
      flex-direction: column;
      border: 2px solid #eee;
      margin: -10px auto 25px;
      width: 90%;
      padding: 10px; } }

.news-title {
  text-align: center;
  font-weight: bold;
  background: #1EB51E;
  padding: 10px 20px;
  color: #fff; }
  .news-title span {
    font-size: 3.5rem;
    display: block; }
  @media all and (max-width: 639px) {
    .news-title {
      padding: 5px 10px;
      width: 100%; }
      .news-title span {
        font-size: 3rem; } }

.news-right {
  flex: 1;
  padding: 10px; }
  @media all and (max-width: 639px) {
    .news-right {
      width: 100%;
      margin: 10px 0 0; } }

.top-blog {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px; }
  .top-blog li {
    width: 32%;
    margin: 0 1.5% 10px;
    position: relative; }
    .top-blog li > a {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 2; }
      .top-blog li > a:hover ~ .top-blog_img img {
        transform: scale(1.1); }
    .top-blog li:nth-child(3n) {
      margin-right: 0; }
  .top-blog .top-blog_img {
    margin-bottom: 10px;
    overflow: hidden;
    height: 180px; }
    .top-blog .top-blog_img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      font-family: "object-fit: cover;";
      transition: transform 0.2s ease-in; }
  .top-blog .top-blog_content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; }
  .top-blog .top-blog_time {
    background: #1EB51E;
    padding: 8px 5px;
    color: #fff;
    width: 25%;
    text-align: center;
    line-height: 1.2; }
    .top-blog .top-blog_time span {
      display: block;
      font-size: 1.3rem;
      letter-spacing: 0.1rem; }
      .top-blog .top-blog_time span.day {
        font-size: 2.5rem;
        font-weight: bold; }
  .top-blog .top-blog_detail {
    flex: 1;
    padding-left: 10px; }
  .top-blog .top-blog_ttl {
    font-size: 1.7rem;
    font-weight: bold; }
  @media all and (max-width: 800px) {
    .top-blog li {
      width: 49%;
      margin-right: 2%; }
      .top-blog li:nth-child(3n) {
        margin-right: 2%; }
      .top-blog li:nth-child(2n) {
        margin-right: 0; } }
  @media all and (max-width: 639px) {
    .top-blog li {
      width: 85%;
      margin: 0 auto 20px; }
      .top-blog li:nth-child(2n), .top-blog li:nth-child(3n) {
        margin-right: auto; }
    .top-blog .top-blog_time span {
      font-size: 1.1rem; }
      .top-blog .top-blog_time span.day {
        font-size: 1.8rem; }
    .top-blog .top-blog_ttl {
      font-size: 1.3rem; } }

/*----------------------------------
 --others--
----------------------------------*/
.greet-txt {
  letter-spacing: 0;
  line-height: 2;
  padding: 15px;
  font-weight: normal; }

.name {
  margin-bottom: 20px; }
  .name .name-wrap {
    display: inline-block;
    background: #1EB51E;
    padding: 5px 15px;
    color: #fff;
    font-size: 2rem;
    box-shadow: 4px 4px #eee;
    font-weight: 600; }
    .name .name-wrap span {
      font-size: 1.3rem;
      display: block; }

/* past.php
----------------------------------*/
.past-wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px dashed #db996c;
  margin-bottom: 40px; }
  .past-wrap .past-left {
    width: 32%;
    padding-top: 20px; }
  .past-wrap .past-right {
    width: 66%;
    background: #f0ebe5;
    padding: 20px;
    border-radius: 5px;
    letter-spacing: 0;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 2; }
    .past-wrap .past-right p:not(:first-of-type) {
      margin-top: 10px; }

.linkbtn {
  display: inline-block;
  font-weight: bold;
  color: #1EB51E;
  border-bottom: 1px dashed #1EB51E;
  margin-top: 10px; }

.kiyaku {
  font-size: 1.4rem;
  font-weight: normal; }

/* contents
----------------------------------*/
.single {
  max-width: 1500px;
  margin: 0 auto;
  padding: 90px 0;
  position: relative; }
  @media all and (max-width: 1200px) {
    .single {
      width: 95%; } }

.single02 {
  margin: 0 auto;
  padding: 80px 0; }

.single03 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative; }

.margin-top {
  margin-top: -80px; }
  @media all and (max-width: 639px) {
    .margin-top {
      margin-top: -30px; } }

.lsingle,
.rsingle {
  width: 48.44%; }

.lsingle {
  float: left; }

.rsingle {
  float: right; }

.mbox {
  background: #fefefe;
  padding: 40px 30px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  margin-right: auto; }
  .mbox.transparent {
    background: rgba(254, 254, 254, 0.5); }
  @media all and (max-width: 639px) {
    .mbox {
      padding: 20px 15px; } }

.mbox2 {
  border: 3px solid #f3e7be;
  background: #fefefe;
  margin-right: auto;
  margin-left: auto;
  padding: 30px; }
  @media all and (max-width: 639px) {
    .mbox2 {
      padding: 15px; } }

.container-box {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto; }

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
   border-bottom: 1px solid #555;*/
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat; }

.bg-map {
  background: url(../img/map.png) no-repeat right bottom; }
  @media all and (max-width: 639px) {
    .bg-map {
      -webkit-background-size: auto 200px;
      background-size: auto 200px;
      background-position: right top; } }

#main {
  float: left;
  width: 76%; }
  @media all and (max-width: 800px) {
    #main {
      float: none;
      width: 100%; } }

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px; }
  @media all and (max-width: 800px) {
    #side {
      float: none;
      width: 100%;
      position: static;
      margin-top: 40px; } }

/* 2column */
#col2-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto; }
  #col2-wrap #col2-main {
    width: 78%; }
    @media all and (max-width: 800px) {
      #col2-wrap #col2-main {
        width: 100%;
        margin: 0 auto;
        order: 2; } }
  #col2-wrap #col2-side {
    width: 20%;
    padding: 60px 0 0; }
    @media all and (max-width: 800px) {
      #col2-wrap #col2-side {
        width: 95%;
        margin: 0 auto 20px;
        padding-top: 30px; } }

/* mtitle
----------------------------------*/
.mtitle {
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 48px;
  font-size: 2rem;
  position: relative;
  text-align: center; }
  .mtitle span {
    display: block;
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 0.5rem;
    margin-bottom: -5px;
    color: #5c4332; }
  .mtitle:after {
    position: absolute;
    content: "";
    left: 47%;
    bottom: -10px;
    height: 3px;
    width: 90px;
    background: #FF6327; }
  .mtitle.white {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2); }
    .mtitle.white span {
      color: #fff; }
  .mtitle.center {
    text-align: center; }
    .mtitle.center:after {
      left: 50%;
      transform: translateX(-50%); }
  .mtitle.mtitle_left {
    text-align: left; }
    .mtitle.mtitle_left span:after {
      left: 0;
      transform: none; }
  @media all and (max-width: 639px) {
    .mtitle {
      font-size: 1.3rem;
      text-align: center; }
      .mtitle span {
        font-size: 4rem;
        letter-spacing: 1.1;
        letter-spacing: 0;
        margin-bottom: -5px; } }

.mtitle2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding: 8px 5px 8px 15px;
  color: #222;
  border: 4px solid;
  border-image: linear-gradient(to right, rgba(30, 181, 30, 0.4) 0%, #1EB51E 100%);
  border-image-slice: 1;
  line-height: 1.3;
  background: #fff;
  width: 50%;
  margin: 0 auto;
  text-align: center; }
  .mtitle2 span {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    margin-right: 15px;
    color: #1EB51E; }
  @media all and (max-width: 639px) {
    .mtitle2 {
      font-size: 1.3rem; }
      .mtitle2 span {
        font-size: 2.5rem;
        display: block; } }

.mtitle3 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #092a35;
  display: block;
  margin-bottom: 20px; }
  .mtitle3 span {
    border-bottom: 5px double #145e76;
    letter-spacing: 0.1rem; }
  @media all and (max-width: 639px) {
    .mtitle3 {
      font-size: 2rem; } }

.mtitle-bll {
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
  border-bottom: 3px solid #f0ebe5;
  position: relative;
  padding: 10px 10px 10px 20px;
  margin-bottom: 10px;
  background: #fbf7e9;
  line-height: 1.5;
  color: #5c4332; }
  .mtitle-bll .free {
    background: #db996c;
    color: #fff;
    padding: 4px;
    border-radius: 5px;
    margin-right: 5px;
    font-size: 0.8em; }
  .mtitle-bll:after {
    position: absolute;
    content: "";
    display: block;
    bottom: -3px;
    width: 100px;
    height: 3px;
    left: 0;
    background: #1EB51E; }
  @media all and (max-width: 639px) {
    .mtitle-bll {
      font-size: 1.4rem; } }

.mtitle4 {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #5c4332;
  margin: 80px 0 30px; }
  .mtitle4 span {
    position: relative;
    display: inline-block;
    min-width: 10%; }
    .mtitle4 span:before, .mtitle4 span:after {
      content: "";
      display: inline-block;
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 3px;
      height: 5rem;
      background-color: #FF6327; }
    .mtitle4 span:before {
      left: -20px;
      -webkit-transform: rotate(-20deg);
      transform: rotate(-20deg); }
    .mtitle4 span:after {
      right: -20px;
      -webkit-transform: rotate(20deg);
      transform: rotate(20deg); }
  .mtitle4.white span:before, .mtitle4.white span:after {
    background-color: #ffe553; }
  @media all and (max-width: 639px) {
    .mtitle4 {
      font-size: 2rem; } }
  @media all and (max-width: 320px) {
    .mtitle4 span:before {
      left: -3px; }
    .mtitle4 span:after {
      right: -3px; } }

.mtitle5 {
  margin: -74px -30px 40px;
  text-align: center;
  position: relative; }
  .mtitle5:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: #269892;
    transform: translateY(-50%); }
  .mtitle5 span {
    display: inline-block;
    padding: 8px 15px;
    background: #269892;
    font-size: 3.5rem;
    color: #fff;
    position: relative;
    z-index: 2; }
  @media all and (max-width: 639px) {
    .mtitle5 {
      margin: -42px -15px 30px; }
      .mtitle5 span {
        font-size: 1.7rem;
        line-height: 1.4; } }

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #1EB51E;
  margin: 8px 0;
  font-size: 1.1em;
  letter-spacing: 0.2rem; }
  .mtitle_sub:before {
    position: absolute;
    left: -6px;
    bottom: 0;
    content: "";
    width: 6px;
    height: 50%;
    background-color: #ddd; }

.mtitle_box {
  background: url(../img/bg-pattern02.jpg);
  background-size: 300px;
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  padding: 10px;
  margin-bottom: 10px;
  font-weight: bold; }
  .mtitle_box span {
    font-weight: normal;
    font-size: 14px;
    padding-left: 10px; }
  .mtitle_box:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f30a";
    font-weight: bold;
    display: block;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff; }
  @media all and (max-width: 639px) {
    .mtitle_box {
      font-size: 1.5rem; } }

.mtitle_box2 {
  background: #092a35;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px; }
  .mtitle_box2 span {
    position: absolute;
    font-size: 5rem;
    opacity: 0.5;
    left: 0;
    top: -75px;
    color: #555;
    letter-spacing: 0.2rem; }
  .mtitle_box2 .small-cap {
    font-weight: normal;
    font-size: 14px; }
  @media all and (max-width: 639px) {
    .mtitle_box2 {
      font-size: 15px;
      line-height: 1.5;
      padding: 10px 10px 10px 15px;
      padding-right: 40px; }
      .mtitle_box2 span {
        font-size: 3rem;
        top: -40px;
        opacity: 0.3; } }

.mtext1 {
  font-size: 2rem;
  font-weight: bold; }
  @media all and (max-width: 639px) {
    .mtext1 {
      font-size: 1.5rem;
      line-height: 1.4; } }

.mtext2 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1.4; }
  @media all and (max-width: 639px) {
    .mtext2 {
      font-size: 2rem; } }

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal; }
  .mtitle_category:before {
    font-family: "Font Awesome 5 Free";
    font-weight: normal;
    content: "\f0ca";
    margin-right: 5px;
    color: #1EB51E; }

.mtitle_flow {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 5px; }
  .mtitle_flow:before {
    content: "";
    background-color: #1EB51E;
    width: 10px;
    height: 4px;
    position: absolute;
    top: .6em;
    left: 0; }
  .mtitle_flow.bd {
    border-bottom: 2px solid #1EB51E; }

.mtitle-sp {
  font-size: 18px;
  font-weight: bold;
  line-height: 0.9;
  margin: 0px 0 15px;
  padding-bottom: 10px;
  letter-spacing: 1px;
  border-bottom: 2px solid #4C99E4;
  color: #0069B7; }

.mtitle-sp:before {
  font-family: 'FontAwesome';
  content: url(../img/bar1.png);
  top: 5px;
  position: relative; }

.mtitle-sp span {
  font-size: 16px;
  margin-left: 5px; }

/* btn
----------------------------------*/
.btn01 a {
  background: #FF6327;
  text-align: center;
  width: 300px;
  margin: 0 auto;
  color: #fff;
  display: block;
  padding: 8px 5px;
  font-weight: bold;
  border-radius: 35px; }
  .btn01 a:hover {
    background: #1EB51E;
    color: #fff; }
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%; } }

.btn02 {
  width: 350px;
  margin: 20px auto 20px; }
  .btn02 a {
    display: block;
    position: relative;
    padding: 15px 0;
    background-color: #1EB51E;
    line-height: 24px;
    letter-spacing: 0.1rem;
    font-size: 1.6rem;
    text-align: center;
    color: #ffffff; }
    .btn02 a i {
      display: block;
      position: absolute;
      top: 50%;
      right: -10px;
      width: 50px;
      height: 1px;
      background-color: #ffffff;
      transition: all 0.3s ease; }
    .btn02 a:hover i {
      width: 34px; }
  @media all and (max-width: 639px) {
    .btn02 {
      width: 280px; } }

/* news
----------------------------------*/
.news {
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap; }
  .news dt {
    width: 6em;
    padding: 3px 5px;
    background: #FF6327;
    text-align: center;
    font-weight: bold;
    color: #fff; }
  .news dd {
    padding: 5px;
    background: #fff;
    width: calc(100% - 7em);
    margin-left: 10px; }
  .news dt:not(:last-child),
  .news dd:not(:last-child) {
    margin-bottom: 5px; }

.news-bl dt {
  float: left;
  width: 8em;
  padding: 3px 5px;
  line-height: 1.3;
  color: #5c4332;
  font-weight: 600;
  text-align: center; }
  .news-bl dt:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: bold;
    margin-right: 5px; }
.news-bl dd {
  padding: 0 0 10px 9.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px; }
  .news-bl dd a {
    color: #0c480c; }
  .news-bl dd:last-child {
    margin: 0;
    border-bottom: none; }

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  background: url(../img/title_bg.jpg) no-repeat center/cover;
  border-radius: 5px; }
  .page-title:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(251, 247, 233, 0.2); }
  .page-title .inner {
    margin: 0 auto;
    height: 430px;
    max-width: 1200px;
    padding: 150px 0 80px; }
  .page-title .page-lead {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(254, 254, 254, 0.8);
    padding: 20px; }
  @media all and (max-width: 800px) {
    .page-title {
      background-attachment: scroll; }
      .page-title .inner {
        width: 99%;
        padding: 50px 0 10px; } }

.bg-01 {
  background-image: linear-gradient(to right, rgba(255, 99, 39, 0.5) 0%, rgba(255, 99, 39, 0.4) 50%, #eacd9a 50.1%, #eacd9a 100%); }
  @media all and (max-width: 639px) {
    .bg-01 {
      background-image: linear-gradient(to bottom, rgba(30, 181, 30, 0.4) 0%, rgba(30, 181, 30, 0.4) 55%, #eacd9a 55.1%, #eacd9a 100%); } }

.bg-02 {
  background: url(../img/grid2.png); }

.bg-gradient {
  background-image: linear-gradient(to right, #f8f1d8 0%, #fcfcfc 100%); }

.bg-contents {
  position: relative;
  margin-top: -40px; }
  .bg-contents:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    background: rgba(30, 181, 30, 0.1); }

.bg-maru1 {
  background: #fbf7e9;
  max-width: calc(100% - 60px);
  margin-left: auto;
  margin-right: auto;
  margin: 50px auto;
  border-radius: 20px; }
  @media all and (max-width: 800px) {
    .bg-maru1 {
      max-width: calc(100% - 20px); } }

.bg-base {
  background: url(../img/stripe.png) repeat, rgba(30, 181, 30, 0.5); }

.bg-blue {
  background: #092a35; }

.bg-gray {
  background: #f1f1f1; }

.bg-beige {
  background: rgba(251, 247, 233, 0.8); }

.bg-beige2 {
  background: rgba(251, 247, 233, 0.5); }

/* tbl
----------------------------------*/
.tbl {
  width: 100%; }
  .tbl th,
  .tbl td {
    padding: 15px;
    vertical-align: middle;
    border: 1px solid #5c4332; }
  .tbl th {
    background: #fbf7e9;
    text-align: left; }
    .tbl th span {
      font-size: 1.4rem; }
    .tbl th.th-1 {
      width: 25%; }
    .tbl th.cell02 {
      width: 20%; }
    .tbl th.cell03 {
      width: 22.5%; }
  @media all and (max-width: 639px) {
    .tbl {
      font-size: 1.1rem; }
      .tbl th,
      .tbl td {
        padding: 10px; } }
  .tbl .cell01 {
    width: 45%; }
  .tbl .cell02 {
    width: 25%; }

.tbl_new {
  width: 100%; }
  @media all and (max-width: 1200px) {
    .tbl_new {
      width: 95%; } }
  @media all and (max-width: 639px) {
    .tbl_new th {
      width: 36%; } }
  .tbl_new tr th,
  .tbl_new tr td {
    vertical-align: middle;
    padding: 15px 10px; }
  .tbl_new tr th {
    font-weight: 700;
    width: 27%;
    color: #092a35; }
  .tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
    background: #f0ebe5; }

.tbl-border {
  width: 100%; }
  .tbl-border tr:nth-child(odd) th, .tbl-border tr:nth-child(odd) td {
    background: #f1f1f1; }
  .tbl-border th,
  .tbl-border td {
    padding: 15px;
    vertical-align: middle; }
  .tbl-border th {
    width: 28%;
    color: #092a35; }
    @media all and (max-width: 639px) {
      .tbl-border th {
        width: 30%; } }

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px; }
  .company th,
  .company td {
    padding: 15px 10px;
    vertical-align: middle; }
  .company th {
    text-align: left;
    width: 25%;
    position: relative;
    background: #efdfa8;
    color: #333;
    font-weight: bold; }
    .company th::after {
      left: 100%;
      top: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      border-color: #f9f9f9;
      border-width: 10px;
      border-left-color: #efdfa8;
      margin-top: -10px; }
  .company td {
    background: #f9f9f9;
    padding-left: 20px; }

.tbl0 {
  width: 100%; }
  .tbl0 th,
  .tbl0 td {
    padding: 3px 5px;
    border: 0;
    border-bottom: 1px dashed #ddd; }
  .tbl0 th {
    padding-left: 0;
    background: none;
    text-align: left;
    width: 35%;
    color: #111; }
    .tbl0 th:after, .tbl0 th:before {
      display: none; }
    @media all and (max-width: 639px) {
      .tbl0 th {
        width: 60%; } }

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  height: 400px;
  overflow: hidden; }
  @media all and (max-width: 639px) {
    .ggmap {
      height: 250px; } }
  .ggmap iframe,
  .ggmap object,
  .ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 8px;
  border-bottom: 1px dotted #cccccc; }
  .list_common li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none; }
  .list_common li .check_num {
    width: 30px;
    height: 30px;
    background: #1EB51E;
    color: #fff;
    border-radius: 100px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    margin-right: 10px; }

.list_check {
  padding: 10px;
  background: #f0e8e0;
  border-radius: 10px; }
  .list_check li {
    padding-bottom: 5px;
    font-weight: bold;
    font-size: 1.1em; }
    .list_check li span {
      font-weight: normal;
      font-size: 0.9em;
      display: block;
      padding: 10px;
      background: rgba(251, 247, 233, 0.2);
      margin-top: 10px; }
    .list_check li:not(:last-child) {
      margin-bottom: 10px;
      border-bottom: 1px dashed #fefefe; }
    .list_check li:before {
      font-family: "Font Awesome 5 Free";
      content: "\f054";
      font-weight: bold;
      margin-right: 10px;
      color: #db996c; }
  @media all and (max-width: 639px) {
    .list_check li {
      width: 98%;
      margin: 0 auto 10px;
      font-size: 1.3rem; } }

.ol-list {
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
  /* olが数字を付けることをキャンセル */
  padding: 0; }
  .ol-list li {
    line-height: 2;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 10px;
    padding: 5px 0 8px;
    padding-left: 50px;
    font-weight: bold;
    position: relative;
    line-height: 1.6; }
    .ol-list li span {
      font-weight: normal;
      display: block;
      padding: 10px;
      line-height: 1.6; }
    .ol-list li:before {
      counter-increment: number;
      content: counter(number);
      background: #cfee91;
      position: absolute;
      width: 2em;
      height: 2em;
      text-align: center;
      font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
      font-size: 2rem;
      line-height: 2em;
      color: #222;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      border-radius: 100%; }
    @media all and (max-width: 639px) {
      .ol-list li {
        font-size: 1.3rem; }
        .ol-list li span {
          font-size: 0.9em; }
        .ol-list li:before {
          font-size: 1.8rem; } }

/* blog
----------------------------------*/
.blog-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto; }
  .blog-wrap * {
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .blog-wrap > li {
    width: 19%;
    margin: 0 0.5% 1.5%;
    border: 1px solid #fbf7e9;
    position: relative; }
    .blog-wrap > li:nth-child(even) .blog-date {
      background: #092a35; }
    @media all and (max-width: 1200px) {
      .blog-wrap > li {
        width: 32%; } }
    .blog-wrap > li > a {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0; }
      .blog-wrap > li > a:hover ~ .blog-img img {
        opacity: 1;
        -webkit-transform: scale(1.2);
        transform: scale(1.2); }
    @media all and (max-width: 639px) {
      .blog-wrap > li {
        width: 80%;
        margin: 0 auto 2%; } }

.blog-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  box-sizing: border-box;
  border-bottom: 1px solid #fbf7e9; }
  .blog-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    font-family: "object-fit: cover;";
    /*IE対策*/ }
  .blog-img:hover img {
    opacity: 1 !important;
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }

.blog-date {
  color: #1EB51E;
  position: absolute;
  width: 65px;
  height: 65px;
  background: #1EB51E;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.3;
  text-align: center;
  left: 0px;
  top: 0px;
  font-size: 0.9em;
  margin-bottom: 5px;
  display: block; }
  .blog-date .year {
    margin-top: 10px;
    display: block;
    font-size: 1.5rem; }
  .blog-date .month {
    font-size: 1.2rem; }
  .blog-date .day {
    font-size: 1.8rem;
    display: inline-block; }
    .blog-date .day:before {
      content: "/";
      padding: 0 2px 0 0; }
  @media all and (max-width: 639px) {
    .blog-date .year {
      font-size: 1.2rem; }
    .blog-date .month {
      font-size: 1.1rem; }
    .blog-date .day {
      font-size: 1.5rem; } }

.blog-date2 {
  color: #137313;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px; }
  .blog-date2:before {
    font-family: "Font Awesome 5 Free";
    content: "\f017";
    margin-right: 5px; }

.blog-detail {
  padding: 15px; }

.blog-title {
  font-weight: bold;
  color: #178917;
  font-size: 1.1em;
  line-height: 1.4;
  border-left: 4px solid #555;
  padding: 4px 4px 4px 10px;
  margin-bottom: 5px; }

.blog-txt {
  font-size: 14px;
  line-height: 1.5;
  color: #555; }
  @media all and (max-width: 639px) {
    .blog-txt {
      font-size: 12px; } }

.pages {
  text-align: center;
  margin-top: 30px; }
  .pages .page_next,
  .pages .page_prev {
    display: inline;
    margin: 0 20px; }
    .pages .page_next a,
    .pages .page_prev a {
      color: #0f5e0f;
      padding: 3px 5px;
      background: #fff; }

.category_nav {
  border: 1px solid #dddddd; }
  .category_nav li a {
    display: block;
    padding: 15px;
    border-bottom: 1px dotted #dddddd;
    background-color: #ffffff; }
    .category_nav li a:before {
      font-family: "FontAwesome";
      content: "\f0a9";
      margin-right: 5px; }
    .category_nav li a:hover {
      background: #f0ebe5; }
  .category_nav li:last-child a {
    border-bottom: none; }

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1; }

.w300 {
  width: 300px; }

.spbr {
  display: none; }

.br_tablet {
  display: none; }
  @media all and (max-width: 800px) {
    .br_tablet {
      display: block; } }

.round-box {
  border-radius: 20px;
  overflow: hidden; }

.color1 {
  color: #1EB51E; }

.color2 {
  color: #092a35; }

.color3 {
  color: #5c4332; }

.num a {
  color: #5c4332;
  font-weight: bold;
  font-size: 2.3rem;
  text-align: center; }
  .num a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: bold;
    margin-right: 5px; }
  .num a:hover {
    color: #FF6327; }

.telbox {
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #eee; }
  .telbox .inner {
    background: #fff;
    padding: 10px; }

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem; }
  .breadcrumb li {
    display: inline;
    color: #555; }
    .breadcrumb li a {
      color: #092a35; }
    .breadcrumb li + li:before {
      margin: 0 10px;
      content: ">"; }
    .breadcrumb li .home {
      font-family: "FontAwesome"; }

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%; }
  .form dl dt {
    float: left;
    width: 280px;
    padding-top: 20px;
    font-weight: bold; }
    .form dl dt span {
      color: #fff;
      background: #178917;
      padding: 5px;
      margin-right: 5px;
      font-size: 11px;
      border-radius: 2px;
      position: relative;
      top: -2px; }
  .form dl dd {
    padding-left: 280px;
    padding-bottom: 20px;
    padding-top: 23px;
    line-height: 1.5;
    border-bottom: 1px dotted #cccccc; }
    .form dl dd:last-child {
      border-bottom: none; }
  .form .textarea,
  .form textarea {
    border: 1px solid #ddd;
    padding: 5px;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none; }
  .form .textarea {
    height: 30px; }
  .form .textarea02 {
    width: 48.5%;
    margin-right: 3%; }
    .form .textarea02:last-child {
      margin-right: 0; }
  .form .textarea03 {
    width: 20%;
    margin-right: 1%; }
  .form button {
    cursor: pointer;
    display: block;
    color: #111;
    text-align: center;
    transition: all 0.2s ease-in-out 0s;
    font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 8px 5px;
    margin: 0 auto;
    width: 250px;
    background: #1EB51E;
    border: 1px solid #1EB51E;
    border-radius: 25px;
    color: #fff; }
    .form button:hover {
      background: #fff;
      color: #1EB51E; }
    .form button:before {
      font-family: "Font Awesome 5 Free";
      content: "\f0e0";
      font-weight: bold;
      margin-right: 10px; }
  .form .select-wrap {
    position: relative;
    overflow: hidden;
    display: inline-block;
    min-width: 192px;
    min-width: 12em;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    color: #333; }
    .form .select-wrap select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      position: relative;
      z-index: 2;
      display: block;
      width: 200%;
      width: -webkit-calc(100% + 5em);
      margin: 0;
      padding: 11px 35px 11px 11px;
      padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
      background: transparent;
      border: 0;
      outline: none;
      line-height: 1.5; }
  .form .entypo-down-open-mini:before {
    font-family: "FontAwesome";
    content: "\f0ab";
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 12px;
    right: 0.75rem;
    margin-top: -8px;
    margin-top: -0.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    color: #1EB51E; }
  .form label.radio_text {
    cursor: pointer;
    position: relative;
    margin-right: 20px;
    overflow: hidden;
    padding-left: 20px;
    display: inline-block; }
    .form label.radio_text:before {
      position: absolute;
      width: 15px;
      height: 15px;
      border: 1px solid #ccc;
      border-radius: 50%;
      left: 0px;
      top: 2px;
      content: "";
      z-index: 3; }
    .form label.radio_text:after {
      content: "";
      position: absolute;
      width: 11px;
      height: 11px;
      border-radius: 100%;
      left: 2px;
      top: 4px;
      background-color: #1EB51E;
      z-index: 1; }
    .form label.radio_text input[type="radio"] {
      -moz-appearance: none;
      -webkit-appearance: none;
      position: absolute;
      z-index: 2;
      width: 20px;
      height: 20px;
      left: -23px;
      top: 0px;
      margin: 0px;
      box-shadow: 20px -1px #fff; }
      .form label.radio_text input[type="radio"]:checked {
        box-shadow: none; }
      .form label.radio_text input[type="radio"]:focus {
        opacity: 0.2;
        box-shadow: 20px -1px #eeebda; }
  .form label.checkbox_text {
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin: 0 20px 5px 0;
    overflow: hidden;
    display: inline-block; }
    .form label.checkbox_text:before {
      content: "";
      position: absolute;
      width: 18px;
      height: 18px;
      left: 0px;
      top: 0;
      border: 1px solid #ccc;
      z-index: 3;
      padding: 1px; }
    .form label.checkbox_text:after {
      content: "";
      position: absolute;
      top: 40%;
      left: 5px;
      display: block;
      margin-top: -9px;
      width: 8px;
      height: 12px;
      border-right: 3px solid #1EB51E;
      border-bottom: 3px solid #1EB51E;
      transform: rotate(45deg);
      z-index: 1; }
    .form label.checkbox_text input[type="checkbox"] {
      -moz-appearance: none;
      -webkit-appearance: none;
      position: absolute;
      left: -40px;
      width: 20px;
      height: 20px;
      display: block;
      box-shadow: 41px 0px #fff;
      z-index: 2;
      margin: 0px;
      padding: 0px; }
      .form label.checkbox_text input[type="checkbox"]:checked {
        box-shadow: none; }
        .form label.checkbox_text input[type="checkbox"]:checked:focus {
          box-shadow: 40px 0px #666;
          opacity: 0.1; }
      .form label.checkbox_text input[type="checkbox"]:focus {
        box-shadow: 41px 0px #eee; }

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px; }

.select-content {
  display: flex;
  align-items: center; }
  .select-content .select-txt {
    padding: 0 5px; }
  @media all and (max-width: 639px) {
    .select-content {
      display: block;
    /*.select-wrap, .select-txt{
   display: inline-block;
  }*/ } }

.memo {
  border: 2px solid rgba(251, 247, 233, 0.5);
  background: url(../img/bg01.jpg);
  padding: 15px; }

.thanks {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  background: #ff885a; }
  @media all and (max-width: 639px) {
    .thanks {
      max-width: 90%;
      padding: 30px 20px; } }

.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }

.policy {
  padding: 20px;
  background: #f0ebe5;
  margin-top: 40px; }

.mtitle_small {
  position: relative;
  font-size: 1.7rem;
  color: #1EB51E;
  margin-bottom: 20px; }
  .mtitle_small:before {
    content: "";
    width: 30px;
    height: 1px;
    background-color: #1EB51E;
    position: absolute;
    left: 0;
    bottom: -15px; }

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-weight: bold;
  color: #1EB51E; }
  .mtitle_small2:not(:first-of-type) {
    margin-top: 20px; }
  .mtitle_small2:before {
    content: "";
    background-color: #cfee91;
    width: 10px;
    height: 4px;
    position: absolute;
    top: 0.6em;
    left: 0; }

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-bottom: 20px; }
  .gallery_ul li {
    margin: 0 2% 2% 0;
    width: 18%; }
    .gallery_ul li:nth-child(5n) {
      margin: 0 0 2% 0; }
    .gallery_ul li a {
      display: block;
      position: relative;
      overflow: hidden; }
      .gallery_ul li a img {
        display: block;
        object-fit: contain;
        font-family: "object-fit: contain;";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        -webkit-transition: -webkit-transform 0.7s;
        transition: all 0.3s ease; }
      .gallery_ul li a:before {
        display: block;
        content: "";
        padding-top: 75%; }
      .gallery_ul li a:hover img {
        opacity: 0.6; }
    .gallery_ul li span {
      display: block;
      margin-top: 5px;
      font-size: 0.8em;
      text-align: center; }

.works-dl {
  display: flex;
  flex-wrap: wrap;
  padding: 4px; }
  .works-dl dt,
  .works-dl dd {
    padding: 4px; }
    .works-dl dt:not(:last-of-type),
    .works-dl dd:not(:last-of-type) {
      border-bottom: 0.9px solid #f0ebe5; }
  .works-dl dt {
    width: 20%;
    color: #5c4332; }
  .works-dl dd {
    width: calc(100% - 22%); }

/* gallery(lightbox)
----------------------------------*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap; }
  .gallery li {
    width: calc((100% - 30px) / 4);
    margin: 0 10px 20px 0; }
    .gallery li:nth-child(4n) {
      margin-right: 0; }
    .gallery li a {
      background: rgba(251, 247, 233, 0.2);
      display: block;
      text-align: center;
      padding: 0px;
      height: 220px; }
      .gallery li a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        font-family: "object-fit: cover;";
        /*IE対策*/ }
    .gallery li p {
      line-height: 1.4;
      margin-top: 5px;
      font-size: 1.3rem; }

@media all and (max-width: 800px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 20px; }
    .gallery li:nth-child(2n) {
      margin-right: 0; }
    .gallery li:nth-child(3n) {
      margin: 0 1% 20px; }
    .gallery li a {
      height: 120px; }
    .gallery li p {
      font-size: 1.1rem; } }
.list2 {
  display: flex;
  flex-wrap: wrap; }
  .list2.option {
    margin: 20px auto 0; }
    .list2.option li {
      background: #fbf7e9;
      padding: 10px;
      border: solid 2px #f3e7be;
      position: relative;
      overflow: hidden;
      color: #5c4332; }
      .list2.option li:before {
        position: absolute;
        content: "";
        left: -25px;
        top: -10px;
        width: 40px;
        height: 30px;
        z-index: 1;
        background: #fefefe;
        border-bottom: 2px solid #f3e7be;
        transform: rotate(-45deg); }
  .list2.type1 li {
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    padding: 15px; }
  .list2 li {
    width: 48%;
    margin: 0 1% 15px; }
    @media all and (max-width: 639px) {
      .list2 li {
        width: 100%;
        margin: 0 auto 15px; } }

.prv dt {
  color: #1EB51E;
  border-bottom: 1px solid #ccc;
  margin: 10px 0; }

.topbnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 0;
  max-width: 1300px; }
  .topbnr li {
    width: 32%;
    margin: 0 1.5% 25px 0;
    border-radius: 20px;
    box-shadow: 0 0 0 4px #fff;
    overflow: hidden;
    position: relative; }
    .topbnr li:nth-child(3n) {
      margin-right: 0; }
      @media all and (max-width: 800px) {
        .topbnr li:nth-child(3n) {
          margin-right: 1%; } }
      @media all and (max-width: 639px) {
        .topbnr li:nth-child(3n) {
          margin-right: auto; } }
    .topbnr li img {
      width: 100%; }
    .topbnr li:hover {
      transition: all 0.3s ease-in; }
    @media all and (max-width: 800px) {
      .topbnr li {
        width: 48%;
        margin: 0 1% 3%; } }
    @media all and (max-width: 639px) {
      .topbnr li {
        width: 95%;
        margin: 0 auto 25px; } }

.top-bnr-wrap {
  position: relative; }
  .top-bnr-wrap .caption {
    padding: 10px; }
  .top-bnr-wrap a {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    z-index: 10; }
  .top-bnr-wrap .top-bnr-title {
    position: relative;
    background: #f3e7be;
    display: block;
    color: #5c4332;
    letter-spacing: 0.2rem;
    border-top: 4px solid #fff;
    text-align: center;
    font-size: 2.2rem;
    transition: all 0.2s ease;
    padding: 15px 0; }
    .top-bnr-wrap .top-bnr-title:before {
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "\f0a9";
      margin-right: 5px; }
    @media all and (max-width: 639px) {
      .top-bnr-wrap .top-bnr-title {
        font-size: 1.5rem; } }
  .top-bnr-wrap:hover a {
    cursor: pointer; }
  .top-bnr-wrap:hover .top-bnr-title {
    background: #ebd893; }

.note {
  padding: 15px;
  margin-top: 10px;
  border: 3px solid #fbf7e9; }

.flow-dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 10px 0; }
  .flow-dl dt {
    background: #1EB51E;
    font-size: 3rem;
    color: #fff;
    width: 80px;
    text-align: center;
    margin-right: 20px;
    height: 80px;
    padding-top: 8px;
    border-radius: 100%; }
    .flow-dl dt span {
      font-size: 1.8rem;
      display: block;
      margin-bottom: -16px; }
  .flow-dl dd {
    width: calc(100% - 110px);
    margin-top: 10px; }
    .flow-dl dd:not(:last-child) {
      padding-bottom: 15px;
      border-bottom: 0.9px solid #FF6327; }
  .flow-dl dt:not(:last-of-type),
  .flow-dl dd:not(:last-of-type) {
    margin-bottom: 30px; }

.txt1 {
  padding-left: 10px; }

.fee-box {
  margin: 10px 0 20px;
  font-weight: bold;
  background: lemonchiffon;
  padding: 5px; }
  .fee-box span {
    display: block;
    font-weight: normal; }

.blog-month {
  margin-bottom: 10px; }
  .blog-month ul {
    display: flex;
    flex-wrap: wrap; }
    .blog-month ul li {
      border: 1px solid #ccc;
      width: 45%;
      padding: 3px 0;
      margin-bottom: 5px;
      font-size: 0.9em;
      letter-spacing: 0;
      text-align: center;
      background: #fefefe;
      margin-bottom: 5px; }
      .blog-month ul li:nth-child(even) {
        margin-left: 1%; }
      .blog-month ul li a {
        color: #5c4332; }
      @media all and (max-width: 639px) {
        .blog-month ul li {
          width: 44%; } }

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#entry {
  display: block;
  padding-top: 100px;
  margin-top: -100px; }

.price {
  font-weight: bold;
  color: #092a35;
  font-size: 2rem;
  padding-right: 5px; }

.list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .list-center li {
    max-width: 250px; }
    .list-center li:not(:last-child) {
      margin: 0 5px 5px; }
  @media all and (max-width: 639px) {
    .list-center li {
      width: 220px; }
      .list-center li:not(:last-child) {
        margin: 0 0 5px; } }

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px; }
  .faq-dl .faq-inner:not(:last-of-type) {
    margin-bottom: 35px;
    padding-bottom: 20px;
    background: url(../img/bg-border.png) repeat-x left bottom; }
.faq-dl dt,
.faq-dl dd {
  position: relative;
  padding: 10px 10px 10px 55px; }
  .faq-dl dt:before,
  .faq-dl dd:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    left: 0;
    top: 0; }
.faq-dl dt {
  color: #092a35;
  font-size: 1.05em; }
  .faq-dl dt:before {
    content: "Q";
    color: #1EB51E;
    font-size: 2rem;
    background: rgba(30, 181, 30, 0.2); }
.faq-dl dd {
  background: #fbf7e9; }
  .faq-dl dd:before {
    content: "A";
    color: #db996c;
    font-size: 2rem;
    background: rgba(255, 229, 83, 0.5); }
  .faq-dl dd:not(:last-of-type) {
    margin-bottom: 20px; }

.flowbar {
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  padding: 0px;
  margin: 20px 0;
  clear: both; }
  .flowbar:after, .flowbar:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .flowbar:after {
    border-top-color: #ddd;
    border-width: 20px;
    margin-left: -20px; }
  .flowbar:before {
    border-top-color: #ddd;
    border-width: 27px;
    margin-left: -27px; }
