@charset "UTF-8";
/* -- Color -- */
/* -- Fonts -- */
/* -- @font-face -- */
/* -- Font size -- */
/* -- Prefix -- */
/* -- Media Screen -- */
/* -- Retina -- */
/* -- Gradient -- */
/* -- Flex -- */
/* -- Placeholder -- */
/* 共通設定及びモバイル用
------------------------------------------------------------*/
*, :before, :after {
  box-sizing: border-box; }

.inner {
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto; }

/* ヘッダー
*****************************************************/
#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #FFF;
  border-bottom: 5px solid #799A3A; }
  #header .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 80px; }
    #header .inner h1 {
      margin-right: auto; }
      #header .inner h1 a img {
        width: auto;
        height: 50px; }
      #header .inner h1 a:hover {
        opacity: 0.6; }
    #header .inner .navigation {
      position: fixed;
      top: 85px;
      left: 0;
      width: 100%;
      height: -webkit-calc(100% - 80px);
      height: calc(100% - 80px);
      max-height: 0;
      visibility: hidden;
      -webkit-transition: 0.4s max-height ease,0.4s opacity ease,0.4s visibility ease;
      -moz-transition: 0.4s max-height ease,0.4s opacity ease,0.4s visibility ease;
      -ms-transition: 0.4s max-height ease,0.4s opacity ease,0.4s visibility ease;
      -o-transition: 0.4s max-height ease,0.4s opacity ease,0.4s visibility ease;
      transition: 0.4s max-height ease,0.4s opacity ease,0.4s visibility ease; }
      #header .inner .navigation a {
        display: block;
        font-family: "YakuHanJP", "Roboto", -apple-system, BlinkMacSystemFont, "Helvetica Neue", a-otf-futo-go-b101-pr6n, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "M+ 1p", sans-serif;
        color: inherit;
        line-height: 1.4;
        text-decoration: none; }
      #header .inner .navigation > ul {
        max-height: 100%;
        overflow-y: auto;
        box-shadow: 0 10px 20px -10px rgba(17, 17, 17, 0.46); }
        #header .inner .navigation > ul > li {
          border-bottom: 1px solid #EEEEEE; }
          #header .inner .navigation > ul > li > a {
            font-size: 1.125em;
            font-weight: bold;
            padding: 0.8em 1em;
            background: #FFF; }
          #header .inner .navigation > ul > li:last-child > a {
            background: #f6f7dd; }
            #header .inner .navigation > ul > li:last-child > a i {
              color: #799A3A;
              margin-right: 0.5em; }
          #header .inner .navigation > ul > li:last-child:hover i {
            color: #FFF;
            -webkit-transition: 0.4s color ease;
            -moz-transition: 0.4s color ease;
            -ms-transition: 0.4s color ease;
            -o-transition: 0.4s color ease;
            transition: 0.4s color ease; }
          #header .inner .navigation > ul > li ul {
            max-height: 0;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: 0.4s all ease-out;
            -moz-transition: 0.4s all ease-out;
            -ms-transition: 0.4s all ease-out;
            -o-transition: 0.4s all ease-out;
            transition: 0.4s all ease-out; }
            #header .inner .navigation > ul > li ul li {
              border-bottom: 1px solid #e1e1e1; }
              #header .inner .navigation > ul > li ul li a {
                padding: 1em 1em 1em 2.5em;
                background: #EEEEEE; }
              #header .inner .navigation > ul > li ul li:last-child {
                border-bottom: none; }
          #header .inner .navigation > ul > li.current > a {
            color: #799A3A; }
          #header .inner .navigation > ul > li:hover > a {
            color: #FFF;
            background: #799A3A; }
          #header .inner .navigation > ul > li:hover ul {
            max-height: 1000px;
            opacity: 1.0;
            visibility: visible; }
      #header .inner .navigation.is-show {
        max-height: 100vh;
        visibility: visible; }
    #header .inner .menu {
      position: relative;
      width: 50px;
      height: 50px;
      border: 1px solid #e1e1e1;
      border-radius: 0.25em;
      cursor: pointer;
      -webkit-transition: 0.4s background ease,0.4s border ease;
      -moz-transition: 0.4s background ease,0.4s border ease;
      -ms-transition: 0.4s background ease,0.4s border ease;
      -o-transition: 0.4s background ease,0.4s border ease;
      transition: 0.4s background ease,0.4s border ease; }
      #header .inner .menu div {
        position: absolute;
        top: 10px;
        right: 0;
        left: 0;
        width: 20px;
        height: 12px;
        margin: auto; }
        #header .inner .menu div span {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          display: block;
          width: 100%;
          height: 2px;
          margin: auto;
          background: #111111;
          border-radius: 50px;
          -webkit-transition: 0.4s background ease,0.4s opacity ease,0.4s transform ease;
          -moz-transition: 0.4s background ease,0.4s opacity ease,0.4s transform ease;
          -ms-transition: 0.4s background ease,0.4s opacity ease,0.4s transform ease;
          -o-transition: 0.4s background ease,0.4s opacity ease,0.4s transform ease;
          transition: 0.4s background ease,0.4s opacity ease,0.4s transform ease; }
          #header .inner .menu div span:first-child {
            bottom: auto; }
          #header .inner .menu div span:last-child {
            top: auto; }
        #header .inner .menu div + span {
          position: absolute;
          bottom: 10px;
          left: 50%;
          display: block;
          font-size: 1.2rem;
          font-weight: bold;
          color: #111111;
          text-align: center;
          -webkit-transform: translateX(-50%);
          -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          -o-transform: translateX(-50%);
          transform: translateX(-50%);
          -webkit-transition: 0.4s color ease;
          -moz-transition: 0.4s color ease;
          -ms-transition: 0.4s color ease;
          -o-transition: 0.4s color ease;
          transition: 0.4s color ease; }
      #header .inner .menu.is-active {
        background: #799A3A;
        border-color: #6a8733; }
        #header .inner .menu.is-active div span {
          background: #FFF; }
          #header .inner .menu.is-active div span:first-child {
            bottom: 0;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg); }
          #header .inner .menu.is-active div span:last-child {
            top: 0;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg); }
          #header .inner .menu.is-active div span:not(:first-child):not(:last-child) {
            opacity: 0; }
        #header .inner .menu.is-active div + span {
          color: #FFF; }

/* メインイメージ
*****************************************************/
#main {
  position: relative;
  overflow: hidden;
  background: url("../img/main/background.jpg") no-repeat 50% 50%;
  background-size: cover;
  border-bottom: 3.375em solid #BCBF2F; }
  #main:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    background: -moz-linear-gradient(top, transparent 0%, #FFF 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, #FFF));
    background: -webkit-linear-gradient(top, transparent 0%, #FFF 100%);
    background: -o-linear-gradient(top, transparent 0%, #FFF 100%);
    background: linear-gradient(to bottom, transparent 0%, #FFF 100%); }
  #main .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 11.97% 0; }
    #main .inner h2 {
      width: 42%;
      max-width: 418px;
      margin-bottom: 0; }
    #main .inner figure {
      position: absolute;
      top: 50%;
      right: -26%;
      width: 77.5%;
      max-width: 775px;
      height: 162.5%;
      overflow: hidden;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%); }

/* コンテンツ
*****************************************************/
#contents {
  line-height: 1.8;
  letter-spacing: 0.06em; }
  #contents > div {
    margin-top: 3.75em;
    margin-bottom: 3.75em; }

/* フッター
*****************************************************/
#footer {
  background: #EEEEEE;
  border-top: 1.25em solid #799A3A; }
  #footer .inner {
    padding: 2.5em 0; }
    #footer .inner address {
      line-height: 1.8;
      text-align: center;
      margin-bottom: 1.5em; }
      #footer .inner address img {
        margin-bottom: 2em; }
    #footer .inner div {
      overflow: hidden; }
      #footer .inner div ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: -webkit-calc( 100% + 20px );
        width: calc( 100% + 20px );
        margin-bottom: 1.5em;
        -webkit-transform: translateX(-10px);
        -moz-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        -o-transform: translateX(-10px);
        transform: translateX(-10px); }
        #footer .inner div ul li {
          width: -webkit-calc(50% - 20px);
          width: calc(50% - 20px);
          max-width: 180px;
          margin: 10px; }
          #footer .inner div ul li a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-flow: row wrap;
            flex-flow: row wrap;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            font-family: "YakuHanJP", "Roboto", -apple-system, BlinkMacSystemFont, "Helvetica Neue", a-otf-futo-go-b101-pr6n, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "M+ 1p", sans-serif;
            font-size: 1.125em;
            font-weight: bold;
            color: inherit;
            line-height: 1.4;
            text-decoration: none;
            text-align: center;
            height: 60px;
            background: #f6f7dd;
            border: 1px solid #FFF;
            border-radius: 0.125em; }
            #footer .inner div ul li a i {
              color: #799A3A;
              margin-right: 0.5em;
              -webkit-transition: 0.4s color ease;
              -moz-transition: 0.4s color ease;
              -ms-transition: 0.4s color ease;
              -o-transition: 0.4s color ease;
              transition: 0.4s color ease; }
            #footer .inner div ul li a:hover {
              color: #FFF;
              background: #799A3A; }
              #footer .inner div ul li a:hover i {
                color: #FFF; }
      #footer .inner div p {
        font-size: 1.4rem;
        color: #848484;
        text-align: center;
        margin-bottom: 0; }

/* トップ
------------------------------------------------------------*/
.headline {
  font-family: "YakuHanJP", "Roboto", -apple-system, BlinkMacSystemFont, "Helvetica Neue", a-otf-futo-go-b101-pr6n, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "M+ 1p", sans-serif;
  font-size: 1.75em;
  color: #111111;
  line-height: 1.4;
  text-align: center; }
  .headline span {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding-bottom: 12px; }
    .headline span:after {
      position: absolute;
      bottom: 0;
      left: 0;
      content: "";
      display: block;
      width: 100%;
      height: 3px;
      background: #799A3A; }

.top_service .inner {
  overflow: hidden; }
  .top_service .inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-calc( 100% + 40px );
    width: calc( 100% + 40px );
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px); }
    .top_service .inner ul li {
      width: 320px;
      max-width: 100%;
      margin: 0 20px 2.5em; }
      .top_service .inner ul li a {
        display: block;
        color: inherit;
        text-decoration: none; }
        .top_service .inner ul li a div {
          text-align: center;
          margin-bottom: 2em; }
        .top_service .inner ul li a h4 {
          font-family: "YakuHanJP", "Roboto", -apple-system, BlinkMacSystemFont, "Helvetica Neue", a-otf-futo-go-b101-pr6n, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "M+ 1p", sans-serif;
          font-weight: bold;
          line-height: 1.4;
          margin-bottom: 0.75em; }
        .top_service .inner ul li a p {
          margin: 0; }
        .top_service .inner ul li a:hover {
          opacity: 0.6; }
      .top_service .inner ul li:last-child {
        margin-bottom: 0; }

.top_greeting .inner {
  position: relative;
  padding: 2.5em 7% 2.7em;
  border: 5px solid #f3f3f3;
  line-height: 2; }
  .top_greeting .inner:before {
    position: absolute;
    top: 5px;
    left: 5px;
    content: "";
    display: block;
    width: -webkit-calc(100% - 10px);
    width: calc(100% - 10px);
    height: -webkit-calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #f3f3f3; }
  .top_greeting .inner > *:first-child, .top_greeting .inner > :first-child:before, .top_greeting .inner > :first-child:after {
    margin-top: 0; }
  .top_greeting .inner > *:last-child, .top_greeting .inner > :last-child:before, .top_greeting .inner > :last-child:after {
    margin-bottom: 0; }

/* サブページ
------------------------------------------------------------*/
#sub #main {
  border-bottom: none; }
  #sub #main .inner h2 span {
    display: block;
    font-family: "YakuHanJP", "Roboto", -apple-system, BlinkMacSystemFont, "Helvetica Neue", a-otf-futo-go-b101-pr6n, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "M+ 1p", sans-serif;
    font-weight: bold;
    color: #111111;
    line-height: 1.4; }
    #sub #main .inner h2 span.small {
      font-size: 0.875em;
      margin-bottom: 1em; }
    #sub #main .inner h2 span.big {
      font-size: 2.0em; }
    @media screen and (min-width: 768px) {
      #sub #main .inner h2 span.small {
        font-size: 1.25em; }
      #sub #main .inner h2 span.big {
        font-size: 2.75em; } }
  #sub #main .inner figure {
    height: auto; }

#breadcrumbs {
  background: #BCBF2F; }
  #breadcrumbs .inner ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    #breadcrumbs .inner ol li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      font-size: 1.4rem;
      color: #FFF;
      line-height: 1.4;
      margin: 0.714em 0; }
      #breadcrumbs .inner ol li:after {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        margin: 0 0.5em;
        border-width: 1px 1px 0 0;
        border-style: solid;
        border-color: rgba(255, 255, 255, 0.45);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg); }
      #breadcrumbs .inner ol li a {
        color: #FFF;
        text-decoration: none; }
        #breadcrumbs .inner ol li a:hover {
          text-decoration: underline; }
      #breadcrumbs .inner ol li:last-child:after {
        display: none; }

/* 事業案内
------------------------------------------------------------*/
#service.careplan .flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: -2em; }
  #service.careplan .flow > div {
    counter-increment: number;
    width: 48%;
    margin-top: 2em;
    padding: 2em;
    background: #f6f6f6;
    border-radius: 0.25em; }
    #service.careplan .flow > div dt {
      font-family: "YakuHanJP", "Roboto", -apple-system, BlinkMacSystemFont, "Helvetica Neue", a-otf-futo-go-b101-pr6n, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "M+ 1p", sans-serif;
      font-size: 1.25em;
      font-weight: bold;
      color: #799A3A;
      line-height: 1.4;
      margin-bottom: 1em; }
      #service.careplan .flow > div dt:before {
        content: counter(number) "."; }
  @media screen and (min-width: 768px) {
    #service.careplan .flow:after {
      content: "";
      width: 31.5%; }
    #service.careplan .flow > div {
      width: 31.5%; } }
#service.homecare .rows figure {
  text-align: center; }
@media screen and (min-width: 768px) {
  #service.homecare .rows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    margin-top: 2.5em; }
    #service.homecare .rows div {
      flex: 1; }
      #service.homecare .rows div > *:first-child, #service.homecare .rows div > :first-child:before, #service.homecare .rows div > :first-child:after {
        margin-top: 0; }
      #service.homecare .rows div > *:last-child, #service.homecare .rows div > :last-child:before, #service.homecare .rows div > :last-child:after {
        margin-bottom: 0; }
    #service.homecare .rows figure {
      margin-left: 6%; } }
#service.dayservice .introspection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  #service.dayservice .introspection li {
    width: 31%;
    max-width: 310px;
    margin-top: 2.5em;
    padding: 0; }
    #service.dayservice .introspection li:before {
      display: none; }
    #service.dayservice .introspection li a:hover {
      opacity: 0.6; }
#service.dayservice .schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: -2.5em; }
  #service.dayservice .schedule > div {
    counter-increment: number;
    width: 48%;
    margin-top: 2.5em; }
    #service.dayservice .schedule > div dt {
      text-align: center;
      margin-bottom: 1em; }
      #service.dayservice .schedule > div dt span {
        display: block;
        font-family: "YakuHanJP", "Roboto", -apple-system, BlinkMacSystemFont, "Helvetica Neue", a-otf-futo-go-b101-pr6n, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "M+ 1p", sans-serif;
        font-size: 1.25em;
        font-weight: bold;
        color: #799A3A;
        line-height: 1.4;
        margin-top: 1em; }
        #service.dayservice .schedule > div dt span:before {
          content: counter(number);
          display: inline-block;
          font-size: 0.8em;
          line-height: 1.4em;
          vertical-align: middle;
          text-align: center;
          width: 1.625em;
          height: 1.625em;
          margin-right: 0.5em;
          border: 1px solid;
          border-radius: 50%; }
  @media screen and (min-width: 768px) {
    #service.dayservice .schedule:after {
      content: "";
      width: 31%; }
    #service.dayservice .schedule > div {
      width: 31%; } }
  @media screen and (min-width: 768px) {
    #service.dayservice .schedule:before {
      order: 1;
      content: "";
      width: 22%; }
    #service.dayservice .schedule:after {
      width: 22%; }
    #service.dayservice .schedule > div {
      width: 22%; } }

/* フォーム設定
------------------------------------------------------------*/
.wpcf7 dl div {
  margin-bottom: 1.875em;
  padding: 0 1.25em 1.875em;
  border-bottom: 1px dashed #d6d862; }
  .wpcf7 dl div:last-of-type {
    padding-bottom: 0;
    border-bottom: none; }
  .wpcf7 dl div dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 1.25em; }
    .wpcf7 dl div dt span {
      display: block;
      font-size: 1.2rem;
      font-weight: bold;
      color: #FFF;
      line-height: 20px;
      text-align: center;
      width: 60px;
      height: 20px;
      margin-left: 10px;
      background: #FF0000;
      border-radius: 2px; }
  .wpcf7 dl div dd input[type="tel"] {
    width: 30%;
    max-width: 100px; }
  @media screen and (min-width: 768px) {
    .wpcf7 dl div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap; }
      .wpcf7 dl div dt {
        position: relative;
        display: block;
        width: 25%;
        margin-bottom: 0;
        padding: 0.375em 70px 0.375em 0; }
        .wpcf7 dl div dt span {
          position: absolute;
          top: 0.65em;
          right: 0; }
      .wpcf7 dl div dd {
        width: 75%;
        padding-left: 1.875em; } }

.submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .submit > *, .submit > :before, .submit > :after {
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
    max-width: 320px;
    margin: 10px; }
