@charset "UTF-8";
/*-----
 * 基本、共通設定
 */
* {
  margin: 0;
  padding: 0; }

*,
*:before,
*:after {
  box-sizing: border-box; }

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main, summary,
time, mark, audio, video {
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent; }

html {
  font-size: 62.5%; }

body {
  background: #FFF;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
  color: #6e6e6e;
  -webkit-text-size-adjust: 100%; }
  @media screen and (max-width: 767px) {
    body {
      font-size: 1.3rem; } }

h1, h2, h3, h4, h5, h6 {
  font-weight: 400; }

ul {
  list-style: none; }

a {
  color: #6e6e6e;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  display: block; }

img {
  max-width: 100%;
  height: auto;
  width: auto;
  display: block; }

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed; }

main {
  display: block; }

/* to button */
div.to {
  position: fixed;
  bottom: 40px;
  right: 2%;
  z-index: 999999; }
  div.to span {
    background: #19a0b6;
    width: 48px;
    height: 48px;
    display: block;
    position: relative;
    border-radius: 50%;
    cursor: pointer; }
    div.to span:hover {
      background: #d04945; }
    div.to span::after {
      display: block;
      content: "";
      width: 8px;
      height: 8px;
      top: 50%;
      left: 50%;
      margin-top: -3px;
      margin-left: -4px;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      transform: rotate(45deg);
      border-top: 2px solid #FFF;
      border-left: 2px solid #FFF;
      position: absolute; }

/* header ---------------------- */
header {
  width: 96%;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 32px;
  overflow: hidden; }
  @media screen and (max-width: 767px) {
    header {
      width: 100%;
      height: 56.25px;
      margin: 0;
      padding-top: 14px; } }
  header .h-tit {
    width: 470px;
    float: left; }
    @media screen and (max-width: 1000px) and (min-width: 768px) {
      header .h-tit {
        width: 43%;
        padding-top: 16px; } }
    @media screen and (max-width: 767px) {
      header .h-tit {
        width: 280px;
        margin-left: 4.6%;
        padding-bottom: 14px;
        float: none; } }
    header .h-tit a:hover {
      opacity: 0.5;
      transition: opacity 0.3s ease-out; }
  @media screen and (min-width: 768px) {
    header .toggle {
      display: none; } }
  @media screen and (max-width: 767px) {
    header .toggle {
      position: absolute;
      right: 4.6%;
      top: 5px;
      width: 42px;
      height: 42px; }
      header .toggle::after {
        content: "MENU";
        display: block;
        font-size: 1rem;
        font-weight: 400;
        text-align: center;
        margin-top: 28px; }
      header .toggle span {
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: solid 3px #6e6e6e;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 6px; }
        header .toggle span:nth-child(1) {
          top: 10px; }
        header .toggle span:nth-child(2) {
          top: 17px; }
        header .toggle span:nth-child(3) {
          top: 24px; } }
  @media screen and (max-width: 767px) {
    header .toggle.active span:nth-child(1) {
      top: 20px;
      left: 6px;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    header .toggle.active span:nth-child(2), header .toggle.active span:nth-child(3) {
      top: 20px;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      transform: rotate(45deg); }
    header .toggle.active::after {
      opacity: 0;
      transition: opacity 0.5s ease-out; } }
  @media screen and (min-width: 768px) {
    header nav {
      width: 410px;
      padding-top: 20px;
      float: right; }
      header nav ul {
        display: flex;
        display: -webkit-box;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        justify-content: space-between; }
        header nav ul li {
          font-size: 1.3rem;
          text-align: center;
          width: 94px;
          border-bottom: 4px solid #ee982b; }
          header nav ul li a {
            padding-bottom: 4px;
            position: relative; }
            header nav ul li a::after {
              content: "";
              position: absolute;
              width: 100%;
              height: 4px;
              left: 0;
              bottom: -4px;
              -webkit-transform: scale(1, 1);
              -webkit-transform-origin: center top;
              -webkit-transition: -webkit-transform .3s;
              transform: scale(1, 1);
              transform-origin: center top;
              transition: transform .3s; }
            header nav ul li a:hover::after {
              -webkit-transform: scale(0, 1);
              transform: scale(0, 1); }
          header nav ul li:first-child {
            text-transform: uppercase; }
            header nav ul li:first-child a::after {
              background: #1b9eba; }
          header nav ul li:nth-child(2) a::after {
            background: #cf4844; }
          header nav ul li:nth-child(3) a::after {
            background: #308d47; }
          header nav ul li:last-child a::after {
            background: #6a85a2; } }
  @media screen and (max-width: 767px) {
    header nav {
      width: 100%;
      height: 312px;
      overflow: hidden;
      position: absolute;
      top: 56.25px; }
      header nav ul {
        width: 100%;
        position: absolute;
        top: -312px;
        z-index: 9999; }
        header nav ul li a {
          color: #fff;
          line-height: 6;
          text-align: center; }
        header nav ul li:first-child {
          text-transform: uppercase; }
          header nav ul li:first-child a {
            background: rgba(27, 158, 186, 0.8); }
        header nav ul li:nth-child(2) a {
          background: rgba(207, 72, 68, 0.8); }
        header nav ul li:nth-child(3) a {
          background: rgba(48, 141, 71, 0.8); }
        header nav ul li:last-child a {
          background: rgba(106, 133, 162, 0.8); }
        header nav ul.active {
          transition: 0.6s ease-in-out;
          transform: translateY(312px); } }

/* footer ---------------------- */
footer {
  font-size: 86.6%;
  text-align: center;
  padding-bottom: 32px; }
  @media screen and (max-width: 767px) {
    footer {
      padding-bottom: 48px; } }

@media screen and (min-width: 768px) {
  main {
    width: 96%;
    max-width: 960px;
    margin: 64px auto; } }
@media screen and (max-width: 767px) {
  main {
    margin: 18px 4.6% 56px; } }
main h1 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 2.2rem; }
  @media screen and (max-width: 767px) {
    main h1 {
      font-size: 2rem;
      line-height: 1.2; } }
main section {
  margin-bottom: 72px; }
  @media screen and (max-width: 767px) {
    main section {
      margin-bottom: 60px;
      padding: 0 4.6%; } }
  main section:nth-last-of-type(1) {
    margin-bottom: 0; }
  main section h2 {
    border-bottom: 1px solid #6e6e6e;
    padding-bottom: 8px;
    font-size: 2rem;
    margin-bottom: 56px; }
    @media screen and (max-width: 767px) {
      main section h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 21px;
        position: relative; }
        main section h2::before, main section h2::after {
          content: "";
          display: block;
          position: absolute;
          width: 4.6%;
          height: 1px;
          background: #6e6e6e;
          bottom: -1px; }
        main section h2::before {
          left: -4.6%; }
        main section h2::after {
          right: -4.6%; } }
  main section p:not(:nth-last-of-type(1)) {
    margin-bottom: 16px; }
  @media screen and (min-width: 768px) {
    main section .detail {
      padding: 0 56px; }
      main section .detail:not(:nth-last-of-type(1)) {
        padding: 0 56px 56px; }
      main section .detail P.pdf a {
        background: url("../img/ico_pdf.gif") left center no-repeat;
        background-size: 16px auto;
        text-decoration: underline;
        display: inline-block;
        padding-left: 24px; }
        main section .detail P.pdf a:hover {
          opacity: 0.5;
          transition: opacity 0.3s ease-out; } }
  @media screen and (max-width: 767px) {
    main section .detail:not(:nth-last-of-type(1)) {
      padding-bottom: 32px; }
    main section .detail P.pdf {
      text-align: center;
      width: 100%; }
      main section .detail P.pdf:not(:nth-last-of-type(1)) {
        margin-bottom: 30px; }
      main section .detail P.pdf a {
        background: url("../img/ico_pdf.gif") left center no-repeat;
        background-size: 16px auto;
        text-decoration: underline;
        display: inline-block;
        text-align: center;
        padding-left: 20px; } }

/* トップページ -------------------*/
.mov-wrapper {
  width: 96%;
  max-width: 960px;
  margin: 16px auto 40px;
  padding: 0;
  box-sizing: border-box; }
  @media screen and (max-width: 767px) {
    .mov-wrapper {
      width: 100%;
      margin: 0 auto; } }
  .mov-wrapper .inner {
    padding-top: 56.25%;
    height: 0;
    position: relative;
    overflow: hidden;
    pointer-events: none; }
    .mov-wrapper .inner iframe {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      position: absolute; }
    .mov-wrapper .inner #overlay {
      position: absolute;
      left: 0; }
      @media screen and (min-width: 768px) {
        .mov-wrapper .inner #overlay {
          bottom: 32px;
          display: flex; } }
      @media screen and (max-width: 767px) {
        .mov-wrapper .inner #overlay {
          width: 100%;
          bottom: 9%; } }
      @media screen and (min-width: 768px) {
        .mov-wrapper .inner #overlay div:nth-of-type(1) {
          padding: 0 41px; }
        .mov-wrapper .inner #overlay div:nth-last-of-type(1) {
          padding: 28.5px 42px; } }
      @media screen and (max-width: 767px) {
        .mov-wrapper .inner #overlay div {
          width: 50%;
          max-width: 486px;
          margin: 0 auto; }
          .mov-wrapper .inner #overlay div:nth-of-type(1) {
            padding-bottom: 3%; }
            .mov-wrapper .inner #overlay div:nth-of-type(1) img {
              width: 63%;
              max-width: 308px;
              margin: 0 auto; } }
      .mov-wrapper .inner #overlay div:nth-last-of-type(1) {
        position: relative; }
        .mov-wrapper .inner #overlay div:nth-last-of-type(1) img.animation {
          -webkit-animation: rotation 4.5s linear infinite;
          animation: rotation 4.5s linear infinite;
          position: absolute; }
          .mov-wrapper .inner #overlay div:nth-last-of-type(1) img.animation#rttLeft {
            animation-delay: 0; }
          .mov-wrapper .inner #overlay div:nth-last-of-type(1) img.animation#rttRight {
            animation-delay: 2.25s; }
@keyframes rotation {
  0% {
    transform: rotate(0deg); }
  50% {
    transform: rotate(0deg); }
  67.5% {
    transform: rotate(360deg); }
  100% {
    transform: rotate(360deg); } }
          @media screen and (min-width: 768px) {
            .mov-wrapper .inner #overlay div:nth-last-of-type(1) img.animation {
              top: calc( 50% - 14.5px );
              width: 29px; }
              .mov-wrapper .inner #overlay div:nth-last-of-type(1) img.animation#rttLeft {
                left: 28%; }
              .mov-wrapper .inner #overlay div:nth-last-of-type(1) img.animation:nth-last-of-type(1) {
                right: 38%; } }
          @media screen and (max-width: 767px) {
            .mov-wrapper .inner #overlay div:nth-last-of-type(1) img.animation {
              top: 20%;
              width: 7%; }
              .mov-wrapper .inner #overlay div:nth-last-of-type(1) img.animation#rttLeft {
                left: 24%; }
              .mov-wrapper .inner #overlay div:nth-last-of-type(1) img.animation#rttRight {
                right: 34.5%; } }

.top-detail {
  width: 96%;
  max-width: 960px; }
  @media screen and (min-width: 768px) {
    .top-detail {
      margin: 0 auto 40px;
      overflow: hidden; }
      .top-detail p {
        width: 45%;
        float: right; }
      .top-detail figure {
        width: 47%;
        float: left; } }
  @media screen and (max-width: 767px) {
    .top-detail {
      margin: 20px auto 56px; }
      .top-detail p {
        text-align: center;
        margin-bottom: 30px; }
      .top-detail figure {
        width: 277px;
        margin: 0 auto; } }
  @media screen and (max-width: 1000px) and (min-width: 768px) {
    .top-detail p {
      font-size: 1.55vw; } }

.top-logo {
  text-align: center; }
  @media screen and (min-width: 768px) {
    .top-logo {
      width: 100%;
      margin-bottom: 72px; }
      .top-logo a {
        width: 160px;
        margin: 0 auto 24px; } }
  @media screen and (max-width: 767px) {
    .top-logo {
      margin-bottom: 56px; }
      .top-logo a {
        width: 90px;
        margin: 0 auto 18px; } }
  .top-logo a:hover {
    opacity: 0.5;
    transition: opacity 0.3s ease-out; }

.top-news {
    width: 96%;
    max-width: 960px;
    margin: 0 auto 64px;
    overflow: hidden;
}
.top-news h2 {
    border-bottom: 1px solid #6e6e6e;
    margin-bottom: 56px;
    padding-bottom: 8px;
    font-size: 2rem;
}
.top-news .top-news_list {
    padding-inline: 56px;
}
.top-news .top-news_item {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}
.top-news .top-news_item:last-of-type {
    margin-bottom: 0;
}
.top-news .top-news_item time {
    width: 80px;
}
.top-news .top-news_text {
    flex: 1;
}
.top-news .top-news_item a {
    display: inline;
    margin-left: 1em;
    text-decoration: underline;
}
@media screen and (min-width: 768px) {
    .top-news .top-news_item a:hover {
        opacity: 0.5;
        transition: opacity .3s ease-out;
    }
}
.top-news .top-news_item a.news-pdf {
    display: inline-block;
    padding-left: 24px;
    background: url("../img/ico_pdf.gif")left center no-repeat;
    background-size: 16px auto;
    
}
@media screen and (max-width: 767px) {
    .top-news {
        width: auto;
        margin: 18px 4.6% 56px;
    }
    .top-news h2 {
        margin-bottom: 21px;
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center;
    }
    .top-news .top-news_list {
        padding-inline: 4.6%;
    }
    .top-news .top-news_item {
        gap: 10px;
        margin-bottom: 15px;
    }
    .top-news .top-news_item time {
        width: 65px;
    }
}

/* 法人概要 ----------------------*/
#profile section:nth-of-type(1) p {
  line-height: 2; }
  #profile section:nth-of-type(1) p:nth-of-type(1) {
    font-size: 112%; }
    @media screen and (min-width: 768px) {
      #profile section:nth-of-type(1) p:nth-of-type(1) br {
        display: none; }
        #profile section:nth-of-type(1) p:nth-of-type(1) br:nth-of-type(2), #profile section:nth-of-type(1) p:nth-of-type(1) br:nth-of-type(5) {
          display: block; } }
    @media screen and (max-width: 767px) {
      #profile section:nth-of-type(1) p:nth-of-type(1) {
        text-align: center; } }
#profile section:nth-of-type(2) ul {
  display: flex;
  flex-wrap: wrap; }
  @media screen and (min-width: 768px) {
    #profile section:nth-of-type(2) ul {
      width: 100%; }
      #profile section:nth-of-type(2) ul li {
        width: 33.3333333333%;
        padding-bottom: 16px; }
        #profile section:nth-of-type(2) ul li:nth-child(n+13) {
          padding-bottom: 0; }
        #profile section:nth-of-type(2) ul li span {
          font-size: 80%;
          text-align: right;
          line-height: 2;
          width: 80px;
          margin-right: 16px;
          display: inline-block; } }
  @media screen and (max-width: 767px) {
    #profile section:nth-of-type(2) ul {
      margin-left: 15%; }
      #profile section:nth-of-type(2) ul li {
        width: 50%;
        padding-bottom: 24px; }
        #profile section:nth-of-type(2) ul li:nth-child(n+13) {
          padding-bottom: 0; }
        #profile section:nth-of-type(2) ul li span {
          font-size: 80%;
          display: block; } }

/* 活動報告 ----------------------*/
#report section .detail:nth-last-of-type(1) {
  padding: 0; }
#report section .detail h4 {
  margin-bottom: 8px; }
#report section .detail dl {
  margin-bottom: 8px;
  oveflow: hidden; }
  #report section .detail dl dt {
    float: left; }
    #report section .detail dl dt::after {
      content: "："; }
#report section .detail .yt {
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
  padding-top: 16px;
  clear: both; }
  #report section .detail .yt .mov {
    width: 100%;
    padding-top: 56.25%;
    position: relative; }
    #report section .detail .yt .mov iframe {
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
      position: absolute; }
#report section .detail .btn-yt {
  display: inline-block;
  text-decoration: underline; }
@media screen and (min-width: 768px) {
  #report section .detail {
    padding: 0 56px 56px;
    overflow: hidden; }
    #report section .detail h3 {
      font-size: 106%;
      text-align: center;
      width: 130px;
      margin-right: 24px;
      margin-bottom: 5px;
      float: left;
      display: table;
      border: 1px solid #6e6e6e; }
      #report section .detail h3 span {
        vertical-align: middle;
        height: 130px;
        display: table-cell; }
    #report section .detail h4 br {
      display: none; }
    #report section .detail dl dt {
      width: 60px; }
    #report section .detail dl dd {
      margin-left: 214px; }
      #report section .detail dl dd br:nth-of-type(2) {
        display: none; }
    #report section .detail ol {
      margin-left: 16px; }
    #report section .detail img {
      max-width: 270px;
      margin-left: 24px;
      margin-bottom: 8px;
      float: right; }
    #report section .detail .pic-row img {
      float: none;
      margin-left: 0; }
    #report section .detail .pic-row.photo2 {
      padding-top: 16px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 556px;
      margin-left: auto;
      margin-right: auto; }
      #report section .detail .pic-row.photo2 .month {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #000;
        margin-bottom: 16px; }
      #report section .detail .pic-row.photo2 .monthly-photo {
        margin-bottom: 10px; }
    #report section .detail .pic-row.photo3 {
      padding-top: 16px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%; }
    #report section .detail .pic-row.photo {
      padding-top: 16px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%; }
      #report section .detail .pic-row.photo .colspan2 {
        width: 559px;
        padding-top: 20px; }
        #report section .detail .pic-row.photo .colspan2 .fbox {
          display: flex;
          flex-wrap: nowrap;
          justify-content: flex-start; }
          #report section .detail .pic-row.photo .colspan2 .fbox .qr-code {
            width: 80px;
            margin-right: 10px; }
            #report section .detail .pic-row.photo .colspan2 .fbox .qr-code img {
              width: 100%; }
          #report section .detail .pic-row.photo .colspan2 .fbox .screen-shot {
            margin-right: 10px; }
          #report section .detail .pic-row.photo .colspan2 .fbox a {
            display: inline;
            text-decoration: underline; }
    #report section .detail .pic-frb .space {
      height: 60px;
      float: right; }
    #report section .detail .pic-frb .frb {
      float: right;
      clear: both; }
      #report section .detail .pic-frb .frb img {
        float: none; }
    #report section .detail.gs p:nth-of-type(1) {
      margin-bottom: 64px; }
    #report section .detail.houkoku2 p:nth-of-type(1) {
      margin-bottom: 16px; } }
@media screen and (max-width: 1000px) and (min-width: 768px) {
  #report section .detail .pic-row.photo3 {
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 572px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    justify-content: space-around; }
    #report section .detail .pic-row.photo3 li:last-child {
      margin-top: 16px; }
    #report section .detail .pic-row.photo3 li img {
      margin: 0; }
  #report section .detail .pic-row.photo {
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 572px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    justify-content: space-around; } }
@media screen and (max-width: 767px) {
  #report section .detail h3 {
    font-size: 1.8rem;
    line-height: 2.3;
    text-align: center;
    margin-bottom: 11px;
    border: 1px solid #6e6e6e; }
  #report section .detail dl dt {
    width: 50px; }
  #report section .detail dl dd {
    margin-left: 50px; }
  #report section .detail ol {
    margin-left: 16px; }
    #report section .detail ol br {
      display: none; }
  #report section .detail .pic-frb {
    display: flex;
    flex-wrap: wrap; }
    #report section .detail .pic-frb .frb {
      width: 100%;
      max-width: 320px;
      order: 1;
      margin: 16px auto; }
  #report section .detail .pic-row {
    max-width: 320px;
    margin: 0 auto; }
    #report section .detail .pic-row img {
      margin-top: 8px; }
  #report section .detail .photo .colspan2 {
    margin-top: 8px; }
    #report section .detail .photo .colspan2 .fbox {
      text-align: center; }
      #report section .detail .photo .colspan2 .fbox .qr-code {
        width: 50%;
        margin: 0 auto; }
        #report section .detail .photo .colspan2 .fbox .qr-code img {
          width: 100%;
          margin: 0; }
      #report section .detail .photo .colspan2 .fbox .screen-shot img {
        margin: 0 auto; }
      #report section .detail .photo .colspan2 .fbox a {
        display: inline;
        text-decoration: underline; }
  #report section .detail .photo2 .month {
    margin-top: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid #000;
    text-align: center; }
  #report section .detail.gs p {
    display: flex;
    flex-wrap: wrap; }
    #report section .detail.gs p:nth-of-type(1) {
      margin-bottom: 32px; }
    #report section .detail.gs p img {
      width: 70%;
      max-width: 440px;
      margin: 16px auto 0;
      order: 1; } }
#report section .detail.report230409 .pic-wrap {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 16px; }
  @media screen and (max-width: 767px) {
    #report section .detail.report230409 .pic-wrap {
      width: 320px;
      margin: 16px auto 0; } }
  #report section .detail.report230409 .pic-wrap img {
    max-width: 100%;
    width: 100%;
    margin: 0;
    float: none; }

/* お問い合わせ -------------------*/
#inquiry .detail {
  text-align: center; }
  @media screen and (min-width: 768px) {
    #inquiry .detail {
      padding-top: 48px;
      padding-bottom: 172px; }
      #inquiry .detail p:not(:nth-last-of-type(1)) {
        margin-bottom: 38px; }
      #inquiry .detail p a::after {
        content: "";
        position: absolute;
        background: #6e6e6e;
        width: 100%;
        height: 2px;
        left: 0;
        bottom: -4px;
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform .3s; }
      #inquiry .detail p a:hover::after {
        transform: scale(1, 1); } }
  @media screen and (max-width: 767px) {
    #inquiry .detail {
      margin-top: 156px; }
      #inquiry .detail p:nth-of-type(1) {
        margin-bottom: 28px; }
      #inquiry .detail p:nth-last-of-type(1) {
        margin-bottom: 200px; } }
  #inquiry .detail p a {
    font-size: 140%;
    display: inline-block;
    line-height: 2;
    position: relative; }
