@charset "UTF-8";
* {
  word-break: auto-phrase; }

html {
  width: 100%; }

body {
  width: 100%;
  min-width: 1160px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif; }
  body * {
    box-sizing: border-box; }
  body a {
    color: #687d23;
    text-decoration: underline;
    line-height: 1;
    transition: 0.5s color; }
    body a:hover {
      color: #005cca; }

header {
  height: 40px;
  background: #9b8878; }
  header div {
    display: flex;
    width: 1160px;
    height: 40px;
    margin: 0 auto;
    padding: 0 10px; }
    header div > a {
      display: block;
      width: 100px;
      margin-right: 30px;
      padding: 8px 10px;
      background: #fff;
      border-radius: 0 0 10px 10px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      z-index: 100; }
      header div > a img {
        width: 100%;
        transition: 0.5s opacity; }
      header div > a:hover img {
        opacity: 0.5; }
    header div > p {
      display: flex;
      padding: 0;
      color: #fff;
      text-decoration: none;
      transition: 0.5s opacity;
      align-items: center; }
      header div > p img {
        width: 100px;
        margin-right: 10px; }
    header div nav {
      margin-left: auto; }
      header div nav > p {
        display: none; }
      header div nav ul {
        display: flex;
        margin-top: 0.75em;
        align-content: center;
        gap: 10px; }
        header div nav ul li {
          background: #9b8878;
          position: relative;
          z-index: 1000;
          isolation: isolate;
          line-height: 1; }
          header div nav ul li a {
            padding-right: 0.25em;
            color: #fff;
            text-decoration: none;
            vertical-align: middle;
            transition: 0.3s all; }
            header div nav ul li a:before {
              content: "\e5cc";
              padding-right: 0.25em;
              font-family: "Material Icons";
              vertical-align: -2px; }
            header div nav ul li a:hover {
              color: #f8f4f1;
              background: #7b614c; }
          header div nav ul li ul {
            display: none;
            width: 350px;
            padding: 0 1em 0.25em 1em;
            background: #9b8878;
            position: absolute;
            top: 10px;
            left: auto;
            z-index: 100;
            transition: 0.5s top; }
            header div nav ul li ul li {
              margin: 1em 0;
              padding-left: 1.25em;
              line-height: 1.5; }
              header div nav ul li ul li a:before {
                margin-left: -1.25em; }
          header div nav ul li.inq a {
            border-radius: 5px;
            background: #ca3948; }
            header div nav ul li.inq a:hover {
              background: #005cca; }

#splash {
  width: 100%;
  height: 100%;
  color: #687d23;
  text-align: center;
  background: #f8f4f1;
  position: fixed;
  z-index: 999; }

#splash_text {
  width: 100%;
  color: #687d23;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999; }

main {
  position: relative;
  /* PageTop*/ }
  main > a#pagetop {
    display: block;
    padding: 6px 5px 4px 5px;
    text-decoration: none;
    border-radius: 10px;
    background: #9b8878;
    position: fixed;
    right: 20px;
    bottom: -100px;
    transition: 0.5s all; }
    main > a#pagetop:hover {
      padding: 2px 5px 8px 5px;
      background: #7b614c; }
    main > a#pagetop:after {
      content: "\f182";
      color: #fff;
      font-family: 'Material Icons';
      font-size: 36px; }
  main article > section {
    padding: 100px 0; }
    main article > section:nth-of-type(even) {
      background: #f8f4f1; }
    main article > section > div {
      width: 1160px;
      margin: 0 auto; }
      main article > section > div h2 {
        margin: 0;
        padding: 0;
        font-weight: bold;
        text-align: center; }
        main article > section > div h2 span {
          display: inline-block;
          margin: 0 0 20px 0;
          font-size: 18px;
          background: linear-gradient(140deg, #8bbc08, #3c9f7b);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent; }
        main article > section > div h2 p {
          margin: 0;
          padding: 0;
          font-size: 30px; }
        main article > section > div h2:after {
          content: "｜";
          display: inline-block;
          padding: 30px 0;
          color: #9b8878;
          font-size: 30px;
          font-weight: bold;
          transform: scaleX(1.5); }
      main article > section > div section {
        margin: 0;
        padding: 0; }
        main article > section > div section + section {
          margin-top: 50px; }
        main article > section > div section h3 {
          margin: 0 0 50px 0;
          padding: 0;
          font-size: 24px;
          font-weight: bold;
          text-align: center; }
        main article > section > div section p {
          margin: 1em 0;
          font-size: 16px;
          text-align: center;
          line-height: 2; }
        main article > section > div section figure {
          margin: 50px 0 0 0;
          text-align: center; }
          main article > section > div section figure img {
            margin: 0 auto;
            border: 1px #ccc solid;
            background: #fff; }
    main article > section.hero {
      width: 100%;
      height: 700px;
      padding: 0;
      background: url(../images/bg_hero.jpg) no-repeat 50% 50%/cover;
      position: relative; }
      main article > section.hero > a {
        display: block;
        width: 100px;
        padding: 8px 10px;
        background: #fff;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        position: absolute;
        left: calc((100% - 1160px) / 2);
        z-index: 100; }
        main article > section.hero > a img {
          width: 100%;
          transition: 0.5s opacity; }
        main article > section.hero > a:hover img {
          opacity: 0.5; }
      main article > section.hero div {
        display: flex;
        width: 950px;
        margin: auto;
        padding-top: 80px;
        align-items: center; }
        main article > section.hero div h1 {
          width: 350px;
          padding: 10px 40px;
          color: #fff;
          font-size: 20px;
          font-weight: bold;
          text-align: center;
          border-right: 3px #fff solid; }
          main article > section.hero div h1 img {
            display: block;
            width: 90%;
            margin: 1.5em auto 1em auto; }
          main article > section.hero div h1 span {
            font-weight: normal;
            line-height: 1.5; }
        main article > section.hero div p {
          padding: 20px 40px 10px 40px;
          color: #fff;
          font-size: 24px;
          line-height: 2.5; }
      main article > section.hero nav {
        width: 1160px;
        margin: 0 auto;
        position: absolute;
        bottom: -32px;
        left: calc((100% - 1160px) / 2); }
        main article > section.hero nav ul {
          display: flex;
          width: 1160px;
          justify-content: space-between; }
          main article > section.hero nav ul li {
            min-width: 150px; }
            main article > section.hero nav ul li a {
              display: block;
              padding: 0.5em 1em;
              color: #fff;
              font-size: 16px;
              font-feature-settings: "palt";
              text-align: center;
              text-decoration: none;
              border-radius: 10px;
              background: #9b8878;
              transition: 0.5s background; }
              main article > section.hero nav ul li a:after {
                content: "\f181";
                display: block;
                margin: 2px auto 0 auto;
                font-family: 'Material Icons';
                font-size: 18px;
                transition: 0.5s transform; }
              main article > section.hero nav ul li a:hover {
                background: #7b614c; }
                main article > section.hero nav ul li a:hover:after {
                  transform: translateY(5px); }
    main article > section#news {
      padding: 80px 0 50px 0;
      background: #f8f4f1; }
      main article > section#news > div {
        display: flex;
        align-items: center; }
        main article > section#news > div h2 {
          width: 25%; }
          main article > section#news > div h2 span {
            padding: 0; }
          main article > section#news > div h2:after {
            content: normal; }
        main article > section#news > div dl {
          display: flex;
          width: 85%;
          padding: 10px 20px;
          border-radius: 10px;
          background: #fff;
          flex-wrap: wrap; }
          main article > section#news > div dl dt {
            width: 17.5%;
            padding: 0.75em 0.5em; }
            main article > section#news > div dl dt:nth-of-type(n+2) {
              border-top: 1px #666 dotted; }
          main article > section#news > div dl dd {
            width: 82.5%;
            padding: 0.75em 0; }
            main article > section#news > div dl dd:nth-of-type(n+2) {
              border-top: 1px #666 dotted; }
            main article > section#news > div dl dd a {
              text-decoration: none; }
    main article > section#service section section h4 {
      margin-bottom: 0.5em;
      color: #fff;
      font-size: 24px;
      font-weight: bold;
      text-align: center;
      letter-spacing: 0.5em;
      border-radius: 100px;
      background: #bbb; }
    main article > section#service section section ul {
      display: flex;
      padding: 20px;
      list-style: none;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px; }
      main article > section#service section section ul li {
        display: flex;
        width: 28%;
        padding: 20px;
        background: #fff;
        box-shadow: 0 5px 10px #ccc;
        flex-direction: column; }
        main article > section#service section section ul li h5 {
          display: flex;
          width: 100%;
          min-height: 100px;
          padding: 10px;
          font-size: 20px;
          font-weight: bold;
          text-align: center;
          border: 1px #ccc solid;
          background: #fff;
          justify-content: center;
          align-items: center; }
          main article > section#service section section ul li h5 img {
            min-height: auto; }
        main article > section#service section section ul li h6 {
          margin-top: 1em;
          font-weight: bold;
          text-align: center; }
        main article > section#service section section ul li p {
          margin: 1em 0 1.5em 0;
          text-align: left; }
          main article > section#service section section ul li p + p {
            width: 100%;
            margin: auto 0 0 0;
            padding: 5px 0;
            color: #fff;
            text-align: center;
            line-height: 1;
            background: #bbb; }
        main article > section#service section section ul li a {
          display: block;
          width: 100%;
          margin-top: auto;
          padding: 5px 0;
          color: #fff;
          text-align: center;
          text-decoration: none;
          background: #ccc;
          transition: 0.5s all; }
          main article > section#service section section ul li a:after {
            content: "\eac9";
            padding-left: 0.5em;
            font-family: 'Material Icons';
            vertical-align: middle; }
          main article > section#service section section ul li a:hover {
            opacity: 0.7;
            letter-spacing: 0.15em; }
          main article > section#service section section ul li a[target]:after {
            content: "\e89e";
            padding-left: 0.5em;
            font-family: 'Material Icons';
            vertical-align: middle; }
          main article > section#service section section ul li a[href*=".pdf"]:after {
            content: "\e415";
            margin-left: 0;
            line-height: 1;
            vertical-align: -1px; }
    main article > section#service section section.town {
      margin-top: 50px; }
      main article > section#service section section.town h4 {
        background: #93d973; }
      main article > section#service section section.town ul li a {
        background: #93d973; }
    main article > section#service section section.people h4 {
      background: #ff837d; }
    main article > section#service section section.people ul li a {
      background: #ff837d; }
    main article > section#service section section.work h4 {
      background: #ffc000; }
    main article > section#service section section.work ul li a {
      background: #ffc000; }
    main article > section#service section p.caution {
      margin-top: 50px;
      padding-top: 25px;
      border-top: 1px #ccc solid; }
    main article > section#problem {
      padding: 100px 0 40px 0;
      background: #ddebf3; }
      main article > section#problem > div {
        position: relative; }
        main article > section#problem > div h2 span {
          background: linear-gradient(140deg, #b6359c, #ef0a6a);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent; }
        main article > section#problem > div > div {
          padding: 0 0 110px 0;
          position: relative; }
          main article > section#problem > div > div ul {
            display: flex;
            gap: 20px; }
            main article > section#problem > div > div ul li {
              padding: 20px;
              border-radius: 10px;
              background: #fff;
              flex: 1; }
              main article > section#problem > div > div ul li p {
                padding: 20px;
                color: #fff;
                text-align: center;
                border-radius: 100px;
                background: #999;
                position: relative; }
                main article > section#problem > div > div ul li p:after {
                  content: "◆";
                  color: #999;
                  position: absolute;
                  left: 50%;
                  bottom: -0.75em;
                  transform: translateX(-50%); }
              main article > section#problem > div > div ul li img {
                display: block;
                margin: 0 auto; }
              main article > section#problem > div > div ul li a {
                text-decoration: none;
                line-height: 1.5;
                transition: 0.3s opacity; }
                main article > section#problem > div > div ul li a:hover {
                  opacity: 0.7; }
          main article > section#problem > div > div:after {
            content: "▼";
            color: #ca3948;
            font-size: 50px;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) scaleX(300%); }
        main article > section#problem > div > img {
          position: absolute;
          right: 40px;
          bottom: -210px;
          z-index: 10; }
        main article > section#problem > div.link {
          width: 100%;
          background: #005cca; }
          main article > section#problem > div.link > div {
            width: 1160px;
            margin: 0 auto;
            padding: 3em 0;
            text-align: center;
            position: relative; }
            main article > section#problem > div.link > div:after {
              content: normal; }
            main article > section#problem > div.link > div a {
              display: inline-block;
              width: 100%;
              padding: 1em 1em 0.75em 0;
              color: #fff;
              font-size: 30px;
              font-weight: bold;
              text-align: center;
              text-decoration: none;
              letter-spacing: 0.1em;
              border-radius: 10px;
              background: linear-gradient(180deg, #8bbc08, #3c9f7b);
              box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
              transition: 0.3s all; }
              main article > section#problem > div.link > div a:after {
                content: "\ea50";
                padding-left: 0.25em;
                font-size: 40px;
                font-family: "Material Icons";
                vertical-align: -10px; }
              main article > section#problem > div.link > div a:hover {
                letter-spacing: 0.2em;
                transform: translateY(4px);
                box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); }
              main article > section#problem > div.link > div a br {
                display: none; }
    main article > section#inquiry section p {
      margin-top: 0; }
    main article > section#inquiry section a {
      display: block;
      width: 600px;
      margin: 1em auto 0 auto;
      padding: 1em;
      color: #fff;
      font-size: 30px;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      border-radius: 10px;
      background: #ca3948;
      transition: 0.5s all; }
      main article > section#inquiry section a:hover {
        letter-spacing: 0.15em;
        background: #005cca; }

.pcimg {
  display: block; }

.spimg {
  display: none; }

footer {
  padding: 15vw 0 10px 0;
  text-align: center;
  background: url("../images/bg_footer.png") no-repeat 50% 100%/cover; }
  footer.beColor {
    background-color: #f8f4f1; }
  footer small {
    color: #fff;
    font-size: 0.75em; }

@media (orientation: portrait) {
  body {
    min-width: 100%; }

  header div {
    width: 100%;
    padding: 0; }
    header div > a {
      display: block;
      width: 100px;
      margin: 0 10px; }
    header div > p {
      margin-right: 5px;
      font-size: 3vw; }
      header div > p img {
        width: 50px; }
    header div nav p {
      display: block; }
      header div nav p:after {
        content: "\e5d2";
        color: #fff;
        font-size: 40px;
        font-family: "Material Icons";
        line-height: 1; }
    header div nav > ul {
      display: none;
      width: 100vw;
      margin: 0;
      padding: 0 20px;
      background: #9b8878;
      position: absolute;
      top: 40px;
      right: 0;
      z-index: 500; }
      header div nav > ul li {
        margin: 40px 0; }
        header div nav > ul li a {
          font-size: 5vw; }
        header div nav > ul li.subMenu {
          margin-bottom: 0; }
        header div nav > ul li ul {
          display: block;
          margin-left: 1.5em;
          padding: 0;
          position: static;
          top: auto; }
          header div nav > ul li ul li {
            margin: 1.5em 0.5em; }
    header div nav.open p:after {
      content: "\e5cd"; }

  main > a#pagetop {
    bottom: -200px;
    right: 2.5vw; }
    main > a#pagetop:after {
      font-size: 3em; }
  main article section {
    padding: 5vh 3vh; }
    main article section > div {
      width: auto;
      margin: 0 auto; }
      main article section > div section p {
        text-align: left; }
        main article section > div section p br {
          display: none; }
      main article section > div section h3 {
        text-align: left; }
      main article section > div h2 {
        text-align: left; }
        main article section > div h2 span {
          margin-bottom: 0;
          font-size: 24px; }
        main article section > div h2 p {
          font-size: 30px; }
        main article section > div h2:after {
          content: "－";
          transform: scaleX(20); }
    main article section.hero {
      height: auto;
      background: none; }
      main article section.hero > a {
        display: block;
        width: 25%;
        position: absolute;
        left: 5%; }
        main article section.hero > a img {
          width: 100%;
          transition: 0.5s opacity; }
        main article section.hero > a:hover img {
          opacity: 0.5; }
      main article section.hero div {
        display: block;
        width: 100%;
        margin: auto;
        padding: 80px 0 50px 0;
        background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url(../images/bg_hero.jpg) no-repeat 50% 0;
        background-size: auto 100%;
        align-items: center; }
        main article section.hero div h1 {
          width: 90%;
          margin: 0 auto 50px auto;
          padding: 0 0 50px 0;
          font-size: 24px;
          border-right: none;
          border-bottom: 3px #fff solid; }
          main article section.hero div h1 img {
            display: block;
            width: 80%; }
          main article section.hero div h1 span {
            font-size: 24px;
            font-weight: normal;
            line-height: 1.5; }
        main article section.hero div p {
          padding: 0;
          font-size: 16px;
          text-align: center; }
      main article section.hero nav {
        width: 100%;
        margin: 0;
        padding: 2.5vh 0;
        position: static; }
        main article section.hero nav ul {
          display: flex;
          width: 100%;
          justify-content: center;
          flex-wrap: wrap; }
          main article section.hero nav ul li {
            width: 45%;
            min-width: inherit;
            margin: 1.5%; }
            main article section.hero nav ul li a {
              font-size: 18px; }
              main article section.hero nav ul li a:after {
                margin-top: 10px;
                font-size: 28px; }
            main article section.hero nav ul li.SPwidthFull {
              width: 93%; }
    main article section#news {
      padding: 5vh 3vh;
      background: #f8f4f1; }
      main article section#news > div {
        display: block;
        align-items: center; }
        main article section#news > div h2 {
          width: 100%; }
          main article section#news > div h2 span {
            padding: 0; }
          main article section#news > div h2:after {
            content: "－";
            display: inline-block;
            padding: 30px 0;
            color: #9b8878;
            font-size: 30px;
            font-weight: bold; }
        main article section#news > div dl {
          display: block;
          width: auto;
          margin: 0;
          padding: 20px; }
          main article section#news > div dl dt {
            width: 100%;
            padding: 1em 0 0.25em 0;
            font-size: 16px; }
            main article section#news > div dl dt:nth-of-type(n+2) {
              border-top: 1px #666 dotted; }
          main article section#news > div dl dd {
            width: 100%;
            padding: 0.25em 0 1em 0;
            font-size: 18px; }
            main article section#news > div dl dd:nth-of-type(n+2) {
              border-top: none; }
            main article section#news > div dl dd a {
              line-height: 1.5; }
    main article section#service section section + section {
      margin-top: 100px; }
    main article section#service section section h4 {
      font-size: 30px;
      padding: 10px; }
    main article section#service section section ul {
      display: block;
      margin-top: 2.5vh;
      padding: 0; }
      main article section#service section section ul li {
        display: block;
        width: 100%;
        margin-bottom: 2.5vh;
        padding: 20px; }
        main article section#service section section ul li h5 {
          display: block;
          width: 100%;
          min-height: auto;
          padding: 2.5vh 0;
          font-size: 20px; }
          main article section#service section section ul li h5 img {
            width: 80%;
            min-height: auto; }
        main article section#service section section ul li h6 {
          font-size: 20px; }
        main article section#service section section ul li p {
          font-size: 16px; }
        main article section#service section section ul li a {
          padding: 1.5vh;
          font-size: 20px; }
    main article section#service p.caution {
      text-align: center;
      font-size: 0.75rem; }
    main article section#problem {
      padding: 5vh 0; }
      main article section#problem > div {
        padding: 0 3vh; }
        main article section#problem > div h2 span {
          background: linear-gradient(140deg, #b6359c, #ef0a6a);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent; }
        main article section#problem > div > div {
          padding: 0 0 110px 0; }
          main article section#problem > div > div ul {
            flex-wrap: wrap; }
            main article section#problem > div > div ul li {
              display: flex;
              width: 45%;
              padding: 10px;
              flex-direction: column; }
              main article section#problem > div > div ul li p {
                margin-top: auto;
                padding: 1em 0.5em;
                font-size: 14px;
                border-radius: 20px; }
        main article section#problem > div > img {
          width: 150px;
          right: 20px;
          bottom: -100px; }
        main article section#problem > div.link {
          width: 100%;
          background: #005cca; }
          main article section#problem > div.link > div {
            width: auto; }
            main article section#problem > div.link > div a {
              padding: 1em 1em 0.5em 1em;
              line-height: 1.5; }
    main article section#inquiry section a {
      width: auto;
      margin-top: 3vh;
      font-size: 5vw; }
      main article section#inquiry section a br {
        display: block; }

  .pcimg {
    display: none; }

  .spimg {
    display: block; } }
@media screen and (max-width: 1024px) and (orientation: landscape) {
  main article > section {
    padding: 100px 20px; }
    main article > section > div {
      width: 100%;
      max-width: none; }
    main article > section.hero {
      height: 100vh; }
      main article > section.hero a {
        left: 20px; }
      main article > section.hero div {
        width: 90%; }
        main article > section.hero div h1 {
          font-size: 16px; }
        main article > section.hero div p {
          font-size: 16px; }
      main article > section.hero nav {
        width: 100%;
        max-width: none;
        left: 0; }
        main article > section.hero nav ul {
          width: 100%;
          max-width: none;
          padding: 0 20px; }
          main article > section.hero nav ul li a {
            font-size: 12px; }
    main article > section#news {
      width: 100%; }
      main article > section#news > div {
        display: block;
        width: 100%;
        padding: 20px;
        align-items: center; }
        main article > section#news > div h2 {
          width: 100%; }
          main article > section#news > div h2 span {
            padding: 0; }
          main article > section#news > div h2:after {
            content: "－";
            display: inline-block;
            padding: 30px 0;
            color: #9b8878;
            font-size: 30px;
            font-weight: bold; }
        main article > section#news > div dl {
          display: block;
          width: 100%;
          margin: 0;
          padding: 20px; }
          main article > section#news > div dl dt {
            width: 100%;
            padding: 1em 0 0.25em 0;
            font-size: 16px; }
            main article > section#news > div dl dt:nth-of-type(n+2) {
              border-top: 1px #666 dotted; }
          main article > section#news > div dl dd {
            width: 100%;
            padding: 0.25em 0 1em 0;
            font-size: 18px; }
            main article > section#news > div dl dd:nth-of-type(n+2) {
              border-top: none; }
            main article > section#news > div dl dd a {
              line-height: 1.5; } }
