@charset "UTF-8";
/* CSS Document */
article {
  overflow: hidden;
  margin-top: 65px; }
  @media screen and (max-width: 767px) {
    article {
      margin-top: 58px; } }

body {
  letter-spacing: 0.1rem; }

.anchor {
  padding-top: 65px;
  margin-top: -65px; }

.inner {
  width: 85%;
  margin: auto; }
  @media screen and (max-width: 991px) {
    .inner {
      width: 100%; } }

.line--ver::after {
  content: '';
  width: 1px;
  margin: auto;
  display: flex;
  height: 60px;
  border-right: solid 1px #22923b;
  margin-bottom: 2.5rem; }
  @media screen and (max-width: 575px) {
    .line--ver::after {
      height: 45px; } }

h3 {
  text-align: center;
  color: #22923b;
  font-weight: normal;
  margin-bottom: 7.5rem;
  font-size: 16px;
  font-size: 1.6rem; }
  @media screen and (max-width: 991px) {
    h3 {
      margin-bottom: 6rem; } }
  @media screen and (max-width: 575px) {
    h3 {
      margin-bottom: 4rem; } }
  h3 span {
    font-family: "Josefin Sans", sans-serif;
    font-style: normal;
    font-size: 45px;
    font-size: 4.5rem;
    font-weight: 700;
    display: block;
    color: #1a1a1a;
    letter-spacing: 0.5rem; }
    @media screen and (max-width: 575px) {
      h3 span {
        font-size: 35px;
        font-size: 3.5rem; } }

/* ボタン共通設定 */
.link-button {
  font-size: 16px;
  font-size: 1.6rem;
  width: 300px;
  z-index: 5;
  /*影の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.2s ease;
  /*hoverをした後のボタンの形状*/
  /*ボタンの中のテキスト*/ }
  @media screen and (max-width: 991px) {
    .link-button {
      width: 265px; } }
  .link-button:hover {
    border-color: transparent; }
  .link-button span {
    position: relative;
    z-index: 2;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    /*テキストの形状*/
    display: block;
    padding: 1.5rem 0 1.5rem 2em;
    background: #fff;
    color: #22923b;
    /*アニメーションの指定*/
    transition: all 0.3s ease; }
    .link-button span::after {
      content: "";
      background-image: url("../img/arrow-green.svg");
      background-repeat: no-repeat;
      height: 24px;
      width: 100%;
      display: inline-block;
      position: absolute;
      top: 29%;
      right: -90%;
      z-index: 5;
      transition: 0.3; }
    .link-button span:hover::after {
      content: "";
      background-image: url("../img/arrow-white.svg");
      background-repeat: no-repeat;
      height: 24px;
      width: 100%;
      display: inline-block;
      position: absolute;
      top: 29%;
      right: -90%;
      z-index: 5; }

.entry span {
  background-color: #fff100; }

/*== 右下に押し込まれる（立体が平面に） */
/*影の設定*/
.pushright {
  box-shadow: 7px 7px 7px 0px rgba(0, 0, 0, 0.09);
  /*hoverの際にX・Y軸に4pxずらす*/ }
  .pushright:hover span {
    box-shadow: none;
    background-color: #1a1a1a;
    color: #fff;
    transform: translate(4px, 4px); }

#ul-header {
  margin-bottom: 5rem; }
  #ul-header .header-bg {
    background-image: url("../01company/img/header-company.jpg");
    width: 100%;
    height: 225px;
    background-position: center;
    background-size: cover;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 575px) {
      #ul-header .header-bg {
        height: 115px; } }
    #ul-header .header-bg h2 {
      font-family: "Josefin Sans", sans-serif;
      color: #fff;
      display: inline-block;
      font-size: 45px;
      font-size: 4.5rem;
      font-weight: 700;
      letter-spacing: 0.4rem; }
      @media screen and (max-width: 575px) {
        #ul-header .header-bg h2 {
          font-size: 40px;
          font-size: 4rem;
          padding: 1.5rem 6rem; } }
      #ul-header .header-bg h2 span {
        display: block;
        font-size: 16px;
        font-size: 1.6rem;
        margin-top: 0.5rem;
        font-weight: 300;
        letter-spacing: 0.25rem; }
        @media screen and (max-width: 575px) {
          #ul-header .header-bg h2 span {
            font-size: 1.3rem; } }

header #global-nav {
  display: block;
  position: fixed;
  max-width: 100%;
  background-color: #fff;
  width: 100%;
  height: 65px;
  z-index: 999;
  top: 0; }
  header #global-nav .u-shadow {
    box-shadow: 0px 0px 20px 0px rgba(35, 24, 21, 0.1); }
  header #global-nav .logo h1 {
    margin-bottom: 0; }
    header #global-nav .logo h1 a {
      display: inline-block;
      height: 65px; }
      header #global-nav .logo h1 a img {
        width: 100%;
        height: 100%; }
  header #global-nav .header-inner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 65px;
    text-align: right;
    margin: 0 auto; }
    header #global-nav .header-inner ul li {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0 1.5rem;
      font-size: 15px;
      font-size: 1.5rem;
      font-weight: bold;
      text-align: center;
      line-height: 1.2; }
      header #global-nav .header-inner ul li span {
        font-family: "Josefin Sans", sans-serif;
        font-size: 24px;
        font-size: 2.4rem;
        font-weight: 700; }
      @media screen and (max-width: 991px) {
        header #global-nav .header-inner ul li {
          padding: 0 0.8rem;
          font-size: 15px;
          font-size: 1.5rem; } }
      header #global-nav .header-inner ul li a {
        color: #1a1a1a;
        display: block;
        padding: 0 1rem;
        position: relative; }
        header #global-nav .header-inner ul li a::after {
          position: absolute;
          bottom: -10px;
          left: 0;
          content: "";
          width: 100%;
          height: 1.5px;
          background: #22923b;
          transform: scale(0, 1);
          transform-origin: center top;
          transition: transform 0.3s; }
        header #global-nav .header-inner ul li a:hover::after {
          transform: scale(1, 1); }
        @media screen and (max-width: 1199px) {
          header #global-nav .header-inner ul li a {
            padding: 0 0.5rem; } }
    header #global-nav .header-inner ul .list-bg {
      height: 100%;
      transition: 0.3s;
      padding: 0; }
      @media screen and (max-width: 991px) {
        header #global-nav .header-inner ul .list-bg {
          margin-left: 0.5rem; } }
      header #global-nav .header-inner ul .list-bg a {
        background-color: #fff100;
        color: #22923b;
        height: 65px;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        padding: 0px 3rem;
        transition: 0.3s; }
        header #global-nav .header-inner ul .list-bg a:hover {
          filter: brightness(1.15);
          /* 明るくする */ }
        header #global-nav .header-inner ul .list-bg a::after {
          display: none; }
        header #global-nav .header-inner ul .list-bg a p {
          font-size: 13px;
          font-size: 1.3rem;
          margin-bottom: 0;
          line-height: 1;
          margin-top: 0.5rem; }
        header #global-nav .header-inner ul .list-bg a img {
          height: 24px;
          padding-left: 1.5rem; }
header .header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 2000;
  transition: 0.3s; }
  header .header .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 2rem;
    box-shadow: 0px 0px 20px 0px rgba(35, 24, 21, 0.1); }
    @media screen and (max-width: 767px) {
      header .header .header__inner {
        height: 58px; } }
  header .header .logo {
    display: flex; }
    header .header .logo a img {
      width: 200px; }
      header .header .logo a img:hover {
        opacity: 0.5; }
header .drawer__button {
  position: relative;
  width: 4rem;
  height: 4rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; }
  header .drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 2px;
    background-color: #22923b;
    transform: translateX(-50%); }
  header .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 1rem));
    transition: transform 0.3s ease; }
  header .drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease; }
  header .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 1rem));
    transition: transform 0.3s ease; }
header .drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg); }
header .drawer__button.active > span:nth-child(2) {
  opacity: 0; }
header .drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg); }
header .drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden; }
  header .drawer__nav .drawer__nav__inner {
    position: relative;
    width: 60%;
    height: 100%;
    background-color: #fff;
    padding: 0;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease; }
    header .drawer__nav .drawer__nav__inner .drawer__nav__menu {
      list-style: none;
      padding-left: 0;
      padding-top: 7.5rem; }
      header .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link {
        font-size: 16px;
        font-size: 1.6rem;
        display: block;
        color: gray;
        text-decoration: none;
        padding: 2rem;
        border-bottom: solid 1px lightgray;
        transition: 0.3s; }
        header .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link:hover {
          background-color: #f0f0f0; }
      header .drawer__nav .drawer__nav__inner .drawer__nav__menu li:last-child {
        border-bottom: none;
        background-color: #fff100;
        transition: 0.3s; }
        header .drawer__nav .drawer__nav__inner .drawer__nav__menu li:last-child a {
          color: #22923b; }
        header .drawer__nav .drawer__nav__inner .drawer__nav__menu li:last-child:hover {
          background-color: #fff;
          color: #22923b; }
header .drawer__nav.active {
  opacity: 1;
  visibility: visible; }
  header .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0); }
header body.active {
  height: 100%;
  overflow: hidden; }

footer {
  overflow: hidden; }
  footer #contact {
    background-image: url("../img/contact.jpg");
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    background-size: cover;
    padding: 9rem 0; }
    @media screen and (max-width: 991px) {
      footer #contact {
        padding: 6rem 0; } }
    @media screen and (max-width: 575px) {
      footer #contact {
        padding: 4rem 0; } }
    @media screen and (max-width: 767px) {
      footer #contact .inner {
        width: 100%; } }
    footer #contact h3 {
      color: #fff; }
      footer #contact h3 span {
        color: #fff; }
      @media screen and (max-width: 575px) {
        footer #contact h3 {
          margin-bottom: 3rem; } }
    footer #contact .contact-box {
      display: flex;
      justify-content: center; }
      @media screen and (max-width: 575px) {
        footer #contact .contact-box {
          display: flex;
          /* justify-content: center; */
          flex-direction: column;
          align-items: center; } }
      footer #contact .contact-box .link-button {
        width: 360px;
        margin: 0 3rem; }
        @media screen and (max-width: 767px) {
          footer #contact .contact-box .link-button {
            margin: 0 1.5rem; } }
        @media screen and (max-width: 575px) {
          footer #contact .contact-box .link-button {
            width: 80%;
            margin: 0 3rem;
            margin-bottom: 2rem; } }
  @media screen and (max-width: 1199px) {
    footer #footer-under .g-map iframe {
      height: 280px; } }
  @media screen and (max-width: 991px) {
    footer #footer-under .g-map iframe {
      height: 230px; } }
  @media screen and (max-width: 575px) {
    footer #footer-under .g-map iframe {
      height: 180px; } }
  footer #footer-under .company-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5rem; }
    @media screen and (max-width: 767px) {
      footer #footer-under .company-info {
        flex-direction: column; } }
    @media screen and (max-width: 575px) {
      footer #footer-under .company-info {
        padding: 3rem 0;
        text-align: center; } }
    footer #footer-under .company-info img {
      width: 225px;
      height: 100%; }
      @media screen and (max-width: 767px) {
        footer #footer-under .company-info img {
          width: 200px; } }
      @media screen and (max-width: 575px) {
        footer #footer-under .company-info img {
          width: 150px; } }
    footer #footer-under .company-info dl {
      margin-left: 4rem;
      margin-bottom: 0; }
      @media screen and (max-width: 767px) {
        footer #footer-under .company-info dl {
          margin-top: 3rem; } }
      @media screen and (max-width: 575px) {
        footer #footer-under .company-info dl {
          margin-top: 2rem;
          margin-left: 0rem; } }
      footer #footer-under .company-info dl dt {
        font-size: 23px;
        font-size: 2.3rem;
        margin-bottom: 0.5rem;
        font-weight: 500; }
      footer #footer-under .company-info dl dd {
        font-size: 15px;
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 0;
        line-height: 2.5rem; }
        @media screen and (max-width: 575px) {
          footer #footer-under .company-info dl dd {
            font-size: 14px;
            font-size: 1.4rem; } }
        footer #footer-under .company-info dl dd a {
          color: #000000;
          text-decoration: none; }
  footer #footer-under .footer-link {
    padding-bottom: 1rem; }
    footer #footer-under .footer-link ul {
      display: flex;
      align-content: center;
      flex-wrap: wrap;
      justify-content: center; }
      @media screen and (max-width: 575px) {
        footer #footer-under .footer-link ul {
          margin-bottom: 0rem; } }
      footer #footer-under .footer-link ul li {
        font-size: 15px;
        font-size: 1.5rem;
        font-weight: 500;
        margin-right: 4rem; }
        @media screen and (max-width: 575px) {
          footer #footer-under .footer-link ul li {
            font-size: 14px;
            font-size: 1.4rem;
            margin: 0 0.5rem; } }
        footer #footer-under .footer-link ul li a {
          color: #1a1a1a;
          transition: 0.2s; }
          footer #footer-under .footer-link ul li a:hover {
            color: #22923b; }
  footer #copyright {
    background-color: #333333;
    text-align: center;
    padding: 1rem;
    font-size: 14px;
    font-size: 1.4rem; }
    footer #copyright p {
      margin: 0;
      color: #fff; }

#page-top {
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  z-index: 5; }
  @media screen and (max-width: 767px) {
    #page-top {
      right: 2rem; } }
  @media screen and (max-width: 575px) {
    #page-top {
      bottom: 1rem;
      right: 1rem; } }
  #page-top a {
    width: 56px;
    display: block;
    transition: 0.3s; }
    @media screen and (max-width: 575px) {
      #page-top a {
        width: 40px; } }
  #page-top a:hover {
    transform: scale(1.1); }
