@charset "UTF-8";
/* CSS Document */
#wrapper {
  overflow: hidden; }

section.title-img {
  background: url("../img/header-menu.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }

article {
  margin-bottom: 10rem; }
  @media screen and (max-width: 575px) {
    article {
      margin-bottom: 5rem; } }
  article .title {
    text-align: center; }
    article .title h2 {
      position: relative;
      display: inline-block;
      margin: 7rem auto;
      padding-bottom: 4rem;
      font-size: 30px;
      font-size: 3rem;
      font-weight: 400;
      letter-spacing: 0.1em; }
      @media screen and (max-width: 767px) {
        article .title h2 {
          padding-bottom: 3rem; } }
      @media screen and (max-width: 575px) {
        article .title h2 {
          font-size: 26px;
          font-size: 2.6rem;
          padding-bottom: 2rem;
          margin: 5rem auto; } }
      article .title h2::before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        /*線の上下位置*/
        display: inline-block;
        width: 135px;
        /*線の長さ*/
        height: 1px;
        /*線の太さ*/
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        /*位置調整*/
        background-color: rgba(0, 0, 0, 0.5);
        /*線の色*/ }
  article ul:not(.list2) {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0; }
    @media screen and (max-width: 767px) {
      article ul:not(.list2) {
        flex-wrap: wrap;
        justify-content: normal;
        align-items: flex-start; } }
    article ul:not(.list2) li {
      margin: 0 2rem; }
      @media screen and (max-width: 767px) {
        article ul:not(.list2) li {
          margin-bottom: 3rem; } }
      article ul:not(.list2) li p {
        font-size: 20px;
        font-size: 2rem;
        color: #000;
        font-weight: bold;
        border-bottom: 1px solid #000;
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
        display: inline-block; }
      article ul:not(.list2) li a {
        font-size: 20px;
        font-size: 2rem;
        color: #000;
        font-weight: bold;
        border-bottom: 1px solid #000;
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
        display: inline-block; }
        article ul:not(.list2) li a:hover {
          color: #ff9632;
          border-bottom: 1px solid #ff9632; }
      article ul:not(.list2) li ul.list2 li {
        margin: 0;
        position: relative; }
        article ul:not(.list2) li ul.list2 li::before {
          content: '●';
          padding-right: 5px;
          color: #ff9632; }
        article ul:not(.list2) li ul.list2 li a {
          font-size: 16px;
          font-size: 1.6rem;
          font-weight: normal;
          margin-bottom: 0.5rem;
          border-bottom: none;
          padding-bottom: 0; }
          article ul:not(.list2) li ul.list2 li a:hover {
            color: #ff9632;
            border-bottom: none; }
