@charset "UTF-8";
/* ===================================

↓ヘッドタイトルcss 

=================================== */
.head_title {
  width: 100%;
  min-width: 1000px;
  height: 500px;
  background: url(../img/tec/head_main02.jpg) no-repeat center bottom;
  background-size: cover;
  position: relative;
  margin-bottom: 180px;
  animation: fadeIn 3.0s 0.01s;
  animation-fill-mode: both;
  /*h1*/ }
  @media only screen and (max-width: 768px) {
    .head_title {
      min-width: 100%;
      height: 180px;
      margin-bottom: 100px;
      padding-top: 150px; } }
  .head_title:before {
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    background-color: rgba(140, 158, 173, 0.9);
    position: absolute;
    bottom: -50px;
    right: 0;
    left: 0;
    margin: 0 auto; }
  .head_title:after {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    background-color: #fff;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    animation: borderAnim 1.0s ease-in-out  infinite; }
  .head_title h1 {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 25px;
    letter-spacing: 0.3em;
    color: #20334d;
    background-color: #fff;
    line-height: 1.4em;
    width: 35px;
    height: 130px;
    padding: 8px 0;
    position: absolute;
    top: 180px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto; }
    @media only screen and (max-width: 768px) {
      .head_title h1 {
        font-size: 18px;
        width: 25px;
        padding: 3px 0;
        top: 150px;
        height: 100px; } }

/*.head_title*/
/*タイトルコピー　IEの游明朝ズレの対応CSS*/
@media all and (-ms-high-contrast: none) {
  .head_title h1 {
    line-height: 1.7em; } }
/* ===================================

↓タイトルコピーcss 

=================================== */
.title_copy {
  width: 1000px;
  margin: 0 auto 40px;
  text-align: center;
  color: #20334d;
  letter-spacing: 0.1em; }
  @media only screen and (max-width: 768px) {
    .title_copy {
      width: 90%;
      margin-bottom: 30px; } }
  .title_copy h2 {
    font-size: 22px;
    margin-bottom: 55px;
    letter-spacing: 0.3em;
    font-feature-settings: "palt"; }
    .title_copy h2 br {
      display: none; }
    @media only screen and (max-width: 768px) {
      .title_copy h2 {
        font-size: 18px;
        line-height: 2em;
        letter-spacing: 0.05em;
        margin-bottom: 35px; }
        .title_copy h2 br {
          display: block; } }
  .title_copy p {
    font-size: 14px;
    line-height: 2.5em;
    font-feature-settings: "palt"; }
    @media only screen and (max-width: 768px) {
      .title_copy p {
        text-align: left; }
        .title_copy p br {
          display: none; } }

/*.title_copy*/
/*タイトル縦棒のアニメーション*/
@keyframes borderAnim {
  0% {
    bottom: 20px; }
  100% {
    bottom: -85px; } }
@media only screen and (max-width: 768px) {
  @keyframes borderAnim {
    0% {
      bottom: 20px; }
    100% {
      bottom: -85px; } } }
/* ===================================

↓ページ内リンクボタン css 

=================================== */
.page_link {
  width: 490px;
  margin: 0 auto;
  overflow: hidden;
  font-size: 14px; }
  @media only screen and (max-width: 768px) {
    .page_link {
      width: 70%;
      margin-bottom: 50px; } }
  .page_link p a {
    width: 150px;
    display: block;
    float: left;
    margin-right: 20px;
    box-sizing: border-box;
    border: 1px solid #a9adb5;
    color: #20334d;
    text-decoration: none;
    text-align: center;
    line-height: 2.8em;
    padding-left: 20px;
    margin-bottom: 100px;
    position: relative;
    letter-spacing: 0.1em;
    transition: .5s; }
    @media only screen and (max-width: 768px) {
      .page_link p a {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 20px; } }
    .page_link p a:hover {
      color: #fff; }
    .page_link p a:before {
      content: "";
      display: block;
      width: 6px;
      height: 6px;
      border-bottom: 1px solid #20334d;
      border-right: 1px solid #20334d;
      position: absolute;
      top: 15px;
      left: 45px;
      transform: rotate(45deg);
      transition: .5s; }
      @media only screen and (max-width: 768px) {
        .page_link p a:before {
          left: 36%; } }
    .page_link p a:hover:before {
      border-color: #fff; }
    .page_link p a:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
      background: #20334d;
      z-index: -1; }
    .page_link p a:hover:after {
      transform: scaleY(1);
      transform-origin: top; }
  .page_link p:last-of-type a {
    margin-right: 0; }
    .page_link p:last-of-type a:before {
      left: 30px; }
      @media only screen and (max-width: 768px) {
        .page_link p:last-of-type a:before {
          left: 30%; } }

/*ページ内リンク　IEの游明朝ズレの対応CSS*/
@media all and (-ms-high-contrast: none) {
  .page_link p a {
    line-height: 3.2em;
    height: 43px; } }
/* ===================================

↓糸染め css 

=================================== */
.area {
  width: 100%;
  min-width: 1000px;
  /*.main_image*/
  /*アニメーション、jsで.animateがついた時のCSS*/
  /*アニメーション、jsで.animateがついた時のCSS*/
  /*.main_inner*/
  /*----------------- かせ染色 -------------------*/
  /*.top_contents*/
  /*.bottom_contents*/
  /*----------------- チーズ染色 -------------------*/
  /*.top_contents*/
  /*.bottom_contents*/
  /*.page_link2*/ }
  @media only screen and (max-width: 768px) {
    .area {
      min-width: 100%; } }
  .area .main_image, .area .second, .area .third {
    width: 100%;
    position: relative;
    min-width: 1000px;
    overflow: hidden; }
    @media only screen and (max-width: 768px) {
      .area .main_image, .area .second, .area .third {
        min-width: 100%;
        min-height: 40vw; } }
    .area .main_image:after, .area .second:after, .area .third:after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      background-color: #101e37; }
    @media only screen and (max-width: 768px) {
      .area .main_image img, .area .second img, .area .third img {
        min-height: 40vw; } }
  .area .main_image.animate:after, .area .second.animate:after, .area .third.animate:after {
    animation: secondaryImageOverlayIn 0.6s 0s cubic-bezier(0.77, 0, 0.175, 1), secondaryImageOverlayOut2 0.6s 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    animation-fill-mode: both; }
  .area .main_image.animate img, .area .second.animate img, .area .third.animate img {
    animation: fadeIn 5.0s 0.2s, scale 8.0s 0.4s;
    animation-fill-mode: both; }
  .area .main_inner {
    width: 750px;
    position: relative;
    top: -100px;
    z-index: 2;
    margin: 0 auto;
    padding-top: 100px;
    background-color: #fff;
    /*h2*/
    /*p*/ }
    @media only screen and (max-width: 768px) {
      .area .main_inner {
        width: 100%;
        top: 30px;
        padding-top: 50px; } }
    .area .main_inner h2 {
      -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      font-size: 22px;
      letter-spacing: 0.2em;
      color: #fff;
      background-color: #20334d;
      line-height: 1.6em;
      width: 35px;
      height: 84px;
      padding-top: 10px;
      position: absolute;
      top: -70px;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0 auto; }
      @media only screen and (max-width: 768px) {
        .area .main_inner h2 {
          font-size: 18px;
          width: 30px;
          height: 68px; } }
      .area .main_inner h2:after {
        content: "";
        position: absolute;
        bottom: -26px;
        border-bottom: 26px solid transparent;
        border-left: 35px solid #20334d; }
        @media only screen and (max-width: 768px) {
          .area .main_inner h2:after {
            bottom: -20px;
            border-bottom: 20px solid transparent;
            border-left: 30px solid #20334d; } }
    .area .main_inner h2.long {
      top: -100px;
      height: 134px; }
      @media only screen and (max-width: 768px) {
        .area .main_inner h2.long {
          top: -110px;
          height: 110px; } }
    .area .main_inner p {
      font-size: 14px;
      font-feature-settings: "palt";
      letter-spacing: 0.1em;
      text-align: center;
      line-height: 2.5em; }
      @media only screen and (max-width: 768px) {
        .area .main_inner p {
          text-align: left;
          width: 90%;
          margin: 0 auto 70px; }
          .area .main_inner p br {
            display: none; } }
  .area .top_contents {
    width: 1000px;
    margin: 0 auto 500px;
    position: relative;
    /*dl*/ }
    @media only screen and (max-width: 768px) {
      .area .top_contents {
        width: 90%;
        position: static;
        margin-bottom: -50px; } }
    .area .top_contents dl {
      width: 370px;
      height: 260px;
      background-color: rgba(255, 255, 255, 0.9);
      position: absolute;
      top: 76px;
      left: 0;
      z-index: 2;
      padding: 60px 60px 0 0;
      overflow: hidden;
      /*dt*/ }
      @media only screen and (max-width: 768px) {
        .area .top_contents dl {
          width: 100%;
          height: auto;
          margin-bottom: 20px;
          position: static;
          padding: 60px 0 0;
          border-top: 1px solid #d2d2d2; } }
      .area .top_contents dl dt {
        font-size: 20px;
        letter-spacing: 0.05em;
        position: relative;
        margin-bottom: 50px; }
        @media only screen and (max-width: 768px) {
          .area .top_contents dl dt {
            font-size: 18px;
            margin-bottom: 30px; } }
        .area .top_contents dl dt:before {
          content: "";
          width: 40px;
          height: 1px;
          position: absolute;
          bottom: -10px;
          left: 0;
          background-color: #8f99a6; }
      .area .top_contents dl dd {
        font-size: 14px;
        letter-spacing: 0.05em;
        font-feature-settings: "palt";
        line-height: 2.3em; }
    .area .top_contents .sub_image:first-of-type {
      width: 650px;
      height: 400px;
      position: absolute;
      top: 0;
      right: 0; }
      @media only screen and (max-width: 768px) {
        .area .top_contents .sub_image:first-of-type {
          width: 100%;
          height: auto;
          position: static;
          margin-bottom: 10px; } }
    .area .top_contents .sub_image:nth-of-type(2) {
      width: 430px;
      position: absolute;
      top: 395px;
      left: 0; }
      @media only screen and (max-width: 768px) {
        .area .top_contents .sub_image:nth-of-type(2) {
          width: 100%;
          height: auto;
          position: static; } }
  .area .bottom_contents {
    width: 100%;
    height: 290px;
    background-color: #e9edf2;
    margin-bottom: 550px;
    /*.inner*/ }
    @media only screen and (max-width: 768px) {
      .area .bottom_contents {
        height: auto;
        padding-top: 80px;
        margin-bottom: 50px; } }
    .area .bottom_contents .inner {
      width: 1000px;
      margin: 0 auto;
      position: relative;
      /*table*/
      /*p*/
      /*.process*/ }
      @media only screen and (max-width: 768px) {
        .area .bottom_contents .inner {
          width: 90%;
          position: static; } }
      .area .bottom_contents .inner table {
        float: right;
        width: 514px;
        margin-top: 90px;
        text-align: left;
        font-size: 14px;
        /*th*/
        /*td*/ }
        @media only screen and (max-width: 768px) {
          .area .bottom_contents .inner table {
            float: none;
            width: 100%;
            margin: 0 0 30px; } }
        .area .bottom_contents .inner table tr {
          display: block;
          padding-bottom: 20px; }
          @media only screen and (max-width: 768px) {
            .area .bottom_contents .inner table tr {
              padding-bottom: 10px; } }
        .area .bottom_contents .inner table th {
          width: 120px;
          position: relative;
          padding-left: 10px;
          text-align: left; }
          .area .bottom_contents .inner table th:before {
            content: "";
            width: 6px;
            height: 6px;
            background-color: #20334d;
            position: absolute;
            left: 0;
            top: 7px; }
          .area .bottom_contents .inner table th:after {
            content: "";
            width: 45px;
            height: 1px;
            background-color: #a9adb5;
            position: absolute;
            right: 10px;
            top: 9px; }
        .area .bottom_contents .inner table tr:last-of-type th:after {
          width: 20px; }
        .area .bottom_contents .inner table td {
          line-height: 1.5em; }
      .area .bottom_contents .inner p.process_copy {
        width: 920px;
        background-color: #fff;
        font-size: 14px;
        margin-bottom: 30px;
        position: absolute;
        top: 230px;
        padding: 40px; }
        @media only screen and (max-width: 768px) {
          .area .bottom_contents .inner p.process_copy {
            font-size: 12px;
            line-height: 1.5em;
            margin-bottom: 15px;
            position: static;
            width: 100%;
            padding: 20px;
            box-sizing: border-box;
            margin: 0; } }
      .area .bottom_contents .inner .process {
        width: 920px;
        background-color: #fff;
        border-bottom: 1px solid #d2d2d2;
        position: absolute;
        top: 290px;
        padding: 40px; }
        @media only screen and (max-width: 768px) {
          .area .bottom_contents .inner .process {
            width: 100%;
            position: static;
            padding: 0 20px 20px;
            box-sizing: border-box;
            overflow: scroll;
            border: none; } }
        .area .bottom_contents .inner .process p {
          display: none; }
          @media only screen and (max-width: 768px) {
            .area .bottom_contents .inner .process p {
              display: block;
              position: relative;
              font-size: 11px;
              background-color: #999;
              color: #fff;
              padding: 2px;
              width: 80px; } }
          @media only screen and (max-width: 768px) {
            .area .bottom_contents .inner .process p:after {
              content: "";
              display: block;
              position: absolute;
              width: 0;
              height: 0;
              border-top: 7px solid transparent;
              border-right: 6px solid transparent;
              border-bottom: 7px solid transparent;
              border-left: 7px solid #999;
              top: 0;
              right: -13px; } }
        @media only screen and (max-width: 768px) {
          .area .bottom_contents .inner .process img {
            padding: 15px;
            width: 700px; } }
  .area .top_contents.even {
    width: 1000px;
    height: 1px;
    /*dl*/
    /*アニメーション、jsで.animateがついた時のCSS*/ }
    @media only screen and (max-width: 768px) {
      .area .top_contents.even {
        width: 90%;
        height: auto; } }
    .area .top_contents.even dl {
      left: auto;
      right: 0px;
      padding: 60px 0 0 60px; }
      @media only screen and (max-width: 768px) {
        .area .top_contents.even dl {
          width: 100%;
          height: auto;
          margin-bottom: 20px;
          position: static;
          padding: 60px 0 0;
          border-top: none; } }
    .area .top_contents.even .sub_image:first-of-type {
      right: auto;
      left: 0px; }
    .area .top_contents.even .sub_image:nth-of-type(2) {
      left: auto;
      right: 0; }
    .area .top_contents.even .sub_image:first-of-type.animate {
      animation: fadeIn 3.0s 1.0s;
      animation-fill-mode: both; }
    .area .top_contents.even .sub_image:nth-of-type(2).animate {
      animation: fadeIn 2.0s 2.5s;
      animation-fill-mode: both; }
  .area .bottom_contents.even {
    margin-bottom: 500px;
    /*.inner*/ }
    @media only screen and (max-width: 768px) {
      .area .bottom_contents.even {
        position: static;
        height: auto;
        padding-top: 80px;
        margin-bottom: 50px; } }
    .area .bottom_contents.even .inner {
      /*table*/
      /*.process*/ }
      .area .bottom_contents.even .inner table {
        float: left; }
        @media only screen and (max-width: 768px) {
          .area .bottom_contents.even .inner table {
            float: none; } }
      .area .bottom_contents.even .inner .process {
        width: 920px;
        background-color: #fff;
        border-bottom: 1px solid #d2d2d2;
        position: absolute;
        top: 230px;
        padding: 40px; }
        @media only screen and (max-width: 768px) {
          .area .bottom_contents.even .inner .process {
            width: 100%;
            position: static;
            padding: 20px;
            box-sizing: border-box;
            overflow: scroll;
            border: none; } }
  .area .page_link2 {
    margin: 0 auto 200px;
    width: 250px;
    /*p a*/ }
    @media only screen and (max-width: 768px) {
      .area .page_link2 {
        position: static;
        transform: none;
        margin: 0 auto 100px; } }
    .area .page_link2 p a {
      background: #20334d;
      color: #fff;
      display: block;
      font-size: 16px;
      font-weight: bold;
      height: 40px;
      line-height: 40px;
      overflow: hidden;
      position: relative;
      text-align: center;
      letter-spacing: 0.1em;
      text-decoration: none; }
      @media only screen and (max-width: 768px) {
        .area .page_link2 p a {
          font-size: 14px;
          margin: 20px auto 0; } }
      .area .page_link2 p a:after {
        content: '';
        position: absolute;
        top: 11px;
        right: 0;
        display: block;
        width: 30px;
        height: 10px;
        border-bottom: 1px solid #7794B4;
        transition: 0.3s; }
      .area .page_link2 p a:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
        background: #2e4c75; }
      .area .page_link2 p a:hover:after {
        width: 20px; }
      .area .page_link2 p a:hover:before {
        transform: scaleX(1);
        transform-origin: left; }
      .area .page_link2 p a .inner-text {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        width: 100%; }

/*.area*/
/*firefox対応CSS*/
@-moz-document url-prefix() {
  .area .main_inner h2:after {
    bottom: -25px; } }
/*染めの縦書き　IEの游明朝ズレの対応CSS*/
@media all and (-ms-high-contrast: none) {
  .area .main_inner h2 {
    line-height: 1.9em; }
  .area .page_link2 p a {
    line-height: 44px; } }
/* ----------------------仕上げ加工　各種寿時加工のCSS----------------------- */
.process_box {
  width: 1000px;
  margin: -30px auto 0;
  overflow: hidden;
  /* .image_box*/
  /* .wrap*/ }
  @media only screen and (max-width: 768px) {
    .process_box {
      width: 90%;
      margin: 0 auto; } }
  .process_box h3 {
    font-size: 16px;
    padding-top: 4px;
    font-weight: bold;
    position: relative;
    color: #20334d;
    margin-bottom: 90px;
    letter-spacing: 0.1em; }
    @media only screen and (max-width: 768px) {
      .process_box h3 {
        margin-bottom: 60px; } }
    .process_box h3:before {
      content: "";
      display: block;
      width: 30px;
      height: 1px;
      background-color: #8d97a4;
      position: absolute;
      left: 0;
      bottom: -15px; }
  .process_box .in_box {
    width: 300px;
    margin-right: 50px;
    margin-bottom: 80px;
    float: left; }
    @media only screen and (max-width: 768px) {
      .process_box .in_box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 50px;
        float: none; } }
    .process_box .in_box h4 {
      padding-bottom: 10px;
      border-bottom: 1px solid #d2d2d2;
      margin-bottom: 20px;
      font-weight: bold; }
      @media only screen and (max-width: 768px) {
        .process_box .in_box h4 {
          margin-bottom: 10px; } }
    .process_box .in_box p {
      font-size: 13px;
      line-height: 2em;
      margin-bottom: 30px;
      height: 60px; }
      @media only screen and (max-width: 768px) {
        .process_box .in_box p {
          height: auto;
          line-height: 1.8em;
          margin-bottom: 25px; } }
    .process_box .in_box dl {
      background-color: #e4e9ef;
      position: relative;
      padding: 25px 15px 15px;
      font-size: 14px; }
      .process_box .in_box dl dt {
        padding: 0 5px 10px 0;
        letter-spacing: 0.4em;
        background-color: #fff;
        position: absolute;
        top: -12px;
        left: 0; }
  .process_box .in_box:nth-of-type(3n) {
    margin-right: 0; }
  .process_box .image_box {
    width: 1000px;
    overflow: hidden;
    margin-bottom: 150px; }
    @media only screen and (max-width: 768px) {
      .process_box .image_box {
        width: 100%;
        margin-bottom: 100px; } }
    .process_box .image_box figure {
      width: 324px;
      margin-right: 14px;
      margin-bottom: 14px;
      float: left;
      position: relative; }
      @media only screen and (max-width: 768px) {
        .process_box .image_box figure {
          width: 100%;
          margin-right: 0; } }
      .process_box .image_box figure figcaption {
        font-size: 13px;
        background-color: #fff;
        padding: 8px 8px 0 0;
        position: absolute;
        bottom: 0;
        left: 0; }
    .process_box .image_box figure:nth-of-type(3n) {
      margin-right: 0; }
  .process_box .wrap {
    width: 465px;
    float: left;
    margin: 0 70px 120px 0; }
    @media only screen and (max-width: 768px) {
      .process_box .wrap {
        width: 100%;
        float: none;
        margin: 0 0 60px 0; } }
    .process_box .wrap h3 {
      margin-bottom: 70px; }
      @media only screen and (max-width: 768px) {
        .process_box .wrap h3 {
          margin-bottom: 40px; } }
    .process_box .wrap img {
      margin-bottom: 20px; }
      @media only screen and (max-width: 768px) {
        .process_box .wrap img {
          margin-bottom: 10px; } }
    .process_box .wrap p {
      font-size: 14px;
      line-height: 2em;
      height: 90px; }
      @media only screen and (max-width: 768px) {
        .process_box .wrap p {
          line-height: 1.8em;
          height: auto;
          margin-bottom: 30px; } }
    .process_box .wrap dl {
      background-color: #e4e9ef;
      position: relative;
      padding: 25px 15px 15px;
      font-size: 14px; }
      .process_box .wrap dl dt {
        padding: 0 5px 10px 0;
        letter-spacing: 0.4em;
        background-color: #fff;
        position: absolute;
        top: -12px;
        left: 0; }
  .process_box .wrap:nth-of-type(2n) {
    margin-right: 0; }
  .process_box .wrap.under {
    width: 1000px;
    overflow: hidden; }
    @media only screen and (max-width: 768px) {
      .process_box .wrap.under {
        width: 100%;
        margin-bottom: -20px; } }
    .process_box .wrap.under .wrap_inner {
      width: 465px;
      float: left;
      margin: 0 70px 30px 0; }
      @media only screen and (max-width: 768px) {
        .process_box .wrap.under .wrap_inner {
          width: 100%;
          float: none;
          margin: 0 0 50px 0; } }
      .process_box .wrap.under .wrap_inner h4 {
        font-size: 16px;
        font-weight: bold;
        border-bottom: #d2d2d2 1px solid;
        padding-bottom: 10px;
        margin-bottom: 15px; }
        @media only screen and (max-width: 768px) {
          .process_box .wrap.under .wrap_inner h4 {
            margin-bottom: 10px; } }
    .process_box .wrap.under .wrap_inner:nth-of-type(2) {
      margin-right: 0; }

/*.process_box*/
.process_box + .page_link2 {
  width: 280px; }

/* ----------------------三個目のエリアCSS----------------------- */
/*消えている状態から現れるアニメーション*/
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*じわっと拡大するアニメーション*/
@keyframes scale {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.07); } }
/*はじめにブロックを伸ばすアニメーション*/
@keyframes secondaryImageOverlayIn {
  0% {
    width: 0; }
  100% {
    width: 100%; } }
/*のびたブロックを横に追いやるアニメーション*/
@keyframes secondaryImageOverlayOut {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(102%); } }
/*のびたブロックを横に追いやるアニメーション（左へ）*/
@keyframes secondaryImageOverlayOut2 {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-102%); } }
/*footer　IEの游明朝ズレの対応CSS*/
@media all and (-ms-high-contrast: none) {
  .area:nth-of-type(2) .copy_box2 .page_link p a {
    line-height: 45px; }

  .area:nth-of-type(3) .copy_box3 .page_link p a {
    line-height: 45px; } }
