@charset "UTF-8";
/*
@include css3(transform, translate(-50%, -50%));
@include css3(transition, 0.3s ease-in-out);  
transform: rotate(0.03deg);
*/
.employee {
  position: relative;
  z-index: 0; }

.employee * {
  box-sizing: border-box; }

.employee1 {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 80px 40px;
  padding: 0 0 120px; }
  @media screen and (max-width: 1100px) {
    .employee1 {
      padding: 0 20px 120px;
      gap: 80px 2%; } }
  @media screen and (max-width: 767px) {
    .employee1 {
      gap: 20px 0;
      padding: 0 0 60px; } }
  .employee1 .voiceBox {
    width: 480px;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background-color: #FFF;
    cursor: pointer; }
    @media screen and (max-width: 1100px) {
      .employee1 .voiceBox {
        width: 48%; } }
    @media screen and (max-width: 767px) {
      .employee1 .voiceBox {
        width: 80%;
        margin: 0 10%; } }
    @media screen and (max-width: 420px) {
      .employee1 .voiceBox {
        width: 90%;
        margin: 0 5%; } }
    .employee1 .voiceBox .imgBox {
      position: relative;
      width: 100%;
      height: 400px;
      overflow: hidden; }
      @media screen and (max-width: 767px) {
        .employee1 .voiceBox .imgBox {
          height: 300px; } }
      @media screen and (max-width: 520px) {
        .employee1 .voiceBox .imgBox {
          height: 280px; } }
      @media screen and (max-width: 400px) {
        .employee1 .voiceBox .imgBox {
          height: 250px; } }
      .employee1 .voiceBox .imgBox .num {
        position: absolute;
        top: 50px;
        right: 35px;
        font-size: 80px;
        font-weight: 400;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        color: #FFF;
        z-index: 0; }
      .employee1 .voiceBox .imgBox img {
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -ms-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 1; }
        @media screen and (max-width: 767px) {
          .employee1 .voiceBox .imgBox img {
            width: 100%;
            height: auto; } }
    .employee1 .voiceBox .txBox {
      min-height: 187px;
      width: 100%;
      background-color: #FFF;
      text-align: center;
      padding: 30px; }
      .employee1 .voiceBox .txBox p.tx1 {
        font-size: 18px;
        padding: 0 0 15px; }
        @media screen and (max-width: 520px) {
          .employee1 .voiceBox .txBox p.tx1 {
            font-size: 15px; } }
      .employee1 .voiceBox .txBox p.tx2 {
        font-size: 40px;
        color: #FF5C00;
        padding: 0 0 20px; }
        @media screen and (max-width: 520px) {
          .employee1 .voiceBox .txBox p.tx2 {
            font-size: 24px; } }
      .employee1 .voiceBox .txBox .btn {
        transition: color 0.5s ease;
        position: relative;
        border-radius: 30px;
        border: 1px solid #FF5C00;
        color: #FF5C00;
        font-size: 16px;
        width: 280px;
        margin: 0 auto;
        overflow: hidden; }
        @media screen and (max-width: 520px) {
          .employee1 .voiceBox .txBox .btn {
            width: 200px;
            padding: 5px; } }
        .employee1 .voiceBox .txBox .btn span {
          position: relative;
          z-index: 1; }
        .employee1 .voiceBox .txBox .btn:before {
          position: absolute;
          top: 0;
          left: 0;
          content: "";
          display: block;
          width: 100%;
          height: 100%;
          background: #FF5C00;
          transform: scaleY(0);
          transition: all 0.5s ease;
          transition-property: transform;
          z-index: 0; }
    .employee1 .voiceBox:hover .imgBox img {
      -webkit-transition: 0.3s ease-in-out;
      -moz-transition: 0.3s ease-in-out;
      -ms-transition: 0.3s ease-in-out;
      -o-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out;
      -webkit-transform: translate(-50%, -50%) scale(1.1);
      -moz-transform: translate(-50%, -50%) scale(1.1);
      -ms-transform: translate(-50%, -50%) scale(1.1);
      -o-transform: translate(-50%, -50%) scale(1.1);
      transform: translate(-50%, -50%) scale(1.1); }
    .employee1 .voiceBox:hover .txBox .btn {
      color: #FFF; }
      .employee1 .voiceBox:hover .txBox .btn:before {
        transform: scaleY(1); }

.employee2 {
  background-color: #F7F7F7;
  border-top: 2px solid #FF5C00; }
  .employee2 .title {
    background-color: #FF5C00;
    font-size: 32px;
    font-weight: 700;
    color: #FFF;
    padding: 20px 30px;
    border-radius: 0 0 30px 30px;
    width: 550px;
    margin: 0 auto;
    text-align: center; }
    @media screen and (max-width: 590px) {
      .employee2 .title {
        width: 90%;
        font-size: 24px; } }
    @media screen and (max-width: 520px) {
      .employee2 .title {
        font-size: 20px; } }
  .employee2 .inner {
    max-width: 1040px;
    padding: 150px 0 100px;
    margin: 0 auto; }
    @media screen and (max-width: 1100px) {
      .employee2 .inner {
        padding: 150px 20px 100px; } }
    @media screen and (max-width: 767px) {
      .employee2 .inner {
        padding: 100px 0px 100px; } }
    @media screen and (max-width: 520px) {
      .employee2 .inner {
        padding: 30px 0 50px; } }
    .employee2 .inner .flex {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap; }
      @media screen and (max-width: 1000px) {
        .employee2 .inner .flex {
          display: block; } }
      .employee2 .inner .flex .in {
        width: 440px;
        background-color: #FFF;
        border-radius: 100px;
        padding: 60px 70px;
        position: relative; }
        @media screen and (max-width: 1000px) {
          .employee2 .inner .flex .in {
            width: 70%;
            margin: 20px auto !important; } }
        @media screen and (max-width: 767px) {
          .employee2 .inner .flex .in {
            width: 80%; } }
        @media screen and (max-width: 520px) {
          .employee2 .inner .flex .in {
            padding: 40px 20px;
            border-radius: 50px; } }
        @media screen and (max-width: 420px) {
          .employee2 .inner .flex .in {
            width: 90%; } }
        .employee2 .inner .flex .in.type2, .employee2 .inner .flex .in.type4, .employee2 .inner .flex .in.type6 {
          margin: 120px 0 0 0; }
          .employee2 .inner .flex .in.type2 p.tx1, .employee2 .inner .flex .in.type4 p.tx1, .employee2 .inner .flex .in.type6 p.tx1 {
            text-align: right; }
          .employee2 .inner .flex .in.type2 p.tx2, .employee2 .inner .flex .in.type4 p.tx2, .employee2 .inner .flex .in.type6 p.tx2 {
            text-align: right; }
          .employee2 .inner .flex .in.type2 img, .employee2 .inner .flex .in.type4 img, .employee2 .inner .flex .in.type6 img {
            right: auto; }
            @media screen and (max-width: 1000px) {
              .employee2 .inner .flex .in.type2 img, .employee2 .inner .flex .in.type4 img, .employee2 .inner .flex .in.type6 img {
                width: 230px;
                height: auto; } }
            @media screen and (max-width: 520px) {
              .employee2 .inner .flex .in.type2 img, .employee2 .inner .flex .in.type4 img, .employee2 .inner .flex .in.type6 img {
                width: 140px; } }
        .employee2 .inner .flex .in.type1 {
          padding-top: 100px; }
          @media screen and (max-width: 520px) {
            .employee2 .inner .flex .in.type1 {
              padding-top: 20px; } }
          @media screen and (max-width: 640px) {
            .employee2 .inner .flex .in.type1 img {
              top: -20px;
              right: 20px;
              width: 180px; } }
          @media screen and (max-width: 520px) {
            .employee2 .inner .flex .in.type1 img {
              width: 130px; } }
          @media screen and (max-width: 400px) {
            .employee2 .inner .flex .in.type1 img {
              width: 110px; } }
        .employee2 .inner .flex .in.type2 {
          padding-top: 100px;
          margin: 120px 0 0 0; }
          @media screen and (max-width: 520px) {
            .employee2 .inner .flex .in.type2 {
              padding-top: 20px; } }
          .employee2 .inner .flex .in.type2 img {
            left: -70px;
            top: -20px; }
            @media screen and (max-width: 1040px) {
              .employee2 .inner .flex .in.type2 img {
                left: -30px; } }
            @media screen and (max-width: 1000px) {
              .employee2 .inner .flex .in.type2 img {
                top: 20px; } }
            @media screen and (max-width: 640px) {
              .employee2 .inner .flex .in.type2 img {
                left: 20px; } }
            @media screen and (max-width: 570px) {
              .employee2 .inner .flex .in.type2 img {
                width: 200px; } }
            @media screen and (max-width: 520px) {
              .employee2 .inner .flex .in.type2 img {
                width: 130px; } }
        .employee2 .inner .flex .in.type3 {
          margin: -20px 0 0 0;
          padding-top: 100px; }
          @media screen and (max-width: 520px) {
            .employee2 .inner .flex .in.type3 {
              padding-top: 20px; } }
          .employee2 .inner .flex .in.type3 img {
            top: -100px;
            right: -60px; }
            @media screen and (max-width: 1000px) {
              .employee2 .inner .flex .in.type3 img {
                top: -10px;
                width: 180px; } }
            @media screen and (max-width: 640px) {
              .employee2 .inner .flex .in.type3 img {
                right: 20px; } }
            @media screen and (max-width: 520px) {
              .employee2 .inner .flex .in.type3 img {
                width: 130px; } }
            @media screen and (max-width: 420px) {
              .employee2 .inner .flex .in.type3 img {
                width: 110px; } }
        .employee2 .inner .flex .in.type4 {
          margin: 260px 0 0 0;
          padding-top: 100px; }
          @media screen and (max-width: 520px) {
            .employee2 .inner .flex .in.type4 {
              padding-top: 20px; } }
          .employee2 .inner .flex .in.type4 img {
            top: -80px;
            left: -30px; }
            @media screen and (max-width: 1000px) {
              .employee2 .inner .flex .in.type4 img {
                top: -10px;
                width: 180px; } }
            @media screen and (max-width: 640px) {
              .employee2 .inner .flex .in.type4 img {
                left: 20px; } }
            @media screen and (max-width: 520px) {
              .employee2 .inner .flex .in.type4 img {
                width: 120px; } }
            @media screen and (max-width: 420px) {
              .employee2 .inner .flex .in.type4 img {
                width: 110px; } }
        .employee2 .inner .flex .in.type5 {
          margin: -150px 0 0 0;
          padding-top: 100px; }
          @media screen and (max-width: 520px) {
            .employee2 .inner .flex .in.type5 {
              padding-top: 20px; } }
          .employee2 .inner .flex .in.type5 img {
            top: -100px;
            right: -30px; }
            @media screen and (max-width: 1000px) {
              .employee2 .inner .flex .in.type5 img {
                top: -10px; } }
            @media screen and (max-width: 640px) {
              .employee2 .inner .flex .in.type5 img {
                right: 20px;
                width: 170px; } }
            @media screen and (max-width: 520px) {
              .employee2 .inner .flex .in.type5 img {
                width: 120px; } }
            @media screen and (max-width: 420px) {
              .employee2 .inner .flex .in.type5 img {
                width: 100px; } }
        .employee2 .inner .flex .in.type6 {
          margin: 200px 0 0 0;
          padding-top: 100px; }
          @media screen and (max-width: 520px) {
            .employee2 .inner .flex .in.type6 {
              padding-top: 20px; } }
          .employee2 .inner .flex .in.type6 img {
            top: -90px;
            left: -30px; }
            @media screen and (max-width: 1000px) {
              .employee2 .inner .flex .in.type6 img {
                top: -10px;
                width: 200px; } }
            @media screen and (max-width: 640px) {
              .employee2 .inner .flex .in.type6 img {
                left: 20px;
                width: 160px; } }
            @media screen and (max-width: 520px) {
              .employee2 .inner .flex .in.type6 img {
                width: 100px; } }
            @media screen and (max-width: 420px) {
              .employee2 .inner .flex .in.type6 img {
                width: 110px; } }
        .employee2 .inner .flex .in.type7 {
          margin: -200px 0 0 0;
          padding-top: 100px; }
          @media screen and (max-width: 520px) {
            .employee2 .inner .flex .in.type7 {
              padding-top: 20px; } }
          .employee2 .inner .flex .in.type7 img {
            top: -100px;
            right: -30px; }
            @media screen and (max-width: 1000px) {
              .employee2 .inner .flex .in.type7 img {
                top: -10px; } }
            @media screen and (max-width: 640px) {
              .employee2 .inner .flex .in.type7 img {
                right: 20px;
                width: 170px; } }
            @media screen and (max-width: 520px) {
              .employee2 .inner .flex .in.type7 img {
                width: 100px; } }
            @media screen and (max-width: 420px) {
              .employee2 .inner .flex .in.type7 img {
                width: 120px; } }
        .employee2 .inner .flex .in p.tx1 {
          font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ",Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
          font-size: 50px;
          font-weight: bold;
          color: #FF5C00;
          line-height: 50px; }
          @media screen and (max-width: 520px) {
            .employee2 .inner .flex .in p.tx1 {
              font-size: 36px; } }
          .employee2 .inner .flex .in p.tx1 span.num {
            font-size: 64px; }
            @media screen and (max-width: 520px) {
              .employee2 .inner .flex .in p.tx1 span.num {
                font-size: 46px; } }
        .employee2 .inner .flex .in p.tx2 {
          font-size: 28px;
          font-weight: bold;
          padding: 10px 0; }
          @media screen and (max-width: 520px) {
            .employee2 .inner .flex .in p.tx2 {
              font-size: 22px; } }
        .employee2 .inner .flex .in p.tx3 {
          font-size: 14px;
          line-height: 24px; }
        .employee2 .inner .flex .in img {
          position: absolute;
          top: -50px;
          right: -40px; }
          @media screen and (max-width: 1000px) {
            .employee2 .inner .flex .in img {
              width: 200px;
              height: auto; } }

.bnr_voice {
  padding: 60px 20px 100px; }
  .bnr_voice * {
    box-sizing: border-box; }
  .bnr_voice .inBox {
    border: 2px solid #333333;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden; }
    @media screen and (max-width: 767px) {
      .bnr_voice .inBox {
        width: 80%;
        margin: 0 10%; } }
    @media screen and (max-width: 520px) {
      .bnr_voice .inBox {
        width: 100%;
        margin: 0; } }
    .bnr_voice .inBox a {
      -webkit-transition: 0.3s ease-in-out;
      -moz-transition: 0.3s ease-in-out;
      -ms-transition: 0.3s ease-in-out;
      -o-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 20px;
      color: #333;
      background-color: #FFF; }
      .bnr_voice .inBox a:hover {
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -ms-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
        background-color: rgba(228, 91, 0, 0.1); }
      .bnr_voice .inBox a .lBox {
        padding: 20px 0 0 0;
        width: calc(100% - 240px); }
        @media screen and (max-width: 767px) {
          .bnr_voice .inBox a .lBox {
            width: 100%; }
            .bnr_voice .inBox a .lBox .btn {
              display: none; } }
        @media screen and (max-width: 520px) {
          .bnr_voice .inBox a .lBox {
            padding: 0; } }
        .bnr_voice .inBox a .lBox p.tx1 {
          font-size: 20px;
          text-align: center;
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
          padding: 0 0 10px;
          gap: 0 20px; }
          @media screen and (max-width: 520px) {
            .bnr_voice .inBox a .lBox p.tx1 {
              font-size: 16px;
              gap: 0 10px; } }
          .bnr_voice .inBox a .lBox p.tx1:before, .bnr_voice .inBox a .lBox p.tx1:after {
            content: "";
            width: 2px;
            height: 23px;
            background-color: #000; }
          .bnr_voice .inBox a .lBox p.tx1:before {
            left: 0;
            -webkit-transform: rotate(-10deg);
            -moz-transform: rotate(-10deg);
            -ms-transform: rotate(-10deg);
            -o-transform: rotate(-10deg);
            transform: rotate(-10deg); }
          .bnr_voice .inBox a .lBox p.tx1:after {
            right: 0;
            -webkit-transform: rotate(10deg);
            -moz-transform: rotate(10deg);
            -ms-transform: rotate(10deg);
            -o-transform: rotate(10deg);
            transform: rotate(10deg); }
        .bnr_voice .inBox a .lBox p.tx2 {
          font-size: 24px;
          display: flex;
          justify-content: center;
          align-items: baseline; }
          @media screen and (max-width: 767px) {
            .bnr_voice .inBox a .lBox p.tx2 {
              padding: 0 0 10px; } }
          @media screen and (max-width: 580px) {
            .bnr_voice .inBox a .lBox p.tx2 {
              font-size: 22px; } }
          @media screen and (max-width: 520px) {
            .bnr_voice .inBox a .lBox p.tx2 {
              font-size: 18px; } }
          .bnr_voice .inBox a .lBox p.tx2 span {
            font-size: 36px;
            font-weight: bold; }
            @media screen and (max-width: 580px) {
              .bnr_voice .inBox a .lBox p.tx2 span {
                font-size: 28px; } }
            @media screen and (max-width: 520px) {
              .bnr_voice .inBox a .lBox p.tx2 span {
                font-size: 22px; } }
      .bnr_voice .inBox a .rBox {
        width: 240px;
        height: 160px;
        overflow: hidden; }
        @media screen and (max-width: 767px) {
          .bnr_voice .inBox a .rBox {
            width: 100%;
            height: auto; } }
        .bnr_voice .inBox a .rBox img {
          position: relative;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
          @media screen and (max-width: 767px) {
            .bnr_voice .inBox a .rBox img {
              top: auto;
              -webkit-transform: translate(-50%, 0%);
              -moz-transform: translate(-50%, 0%);
              -ms-transform: translate(-50%, 0%);
              -o-transform: translate(-50%, 0%);
              transform: translate(-50%, 0%); } }
        .bnr_voice .inBox a .rBox .btn {
          display: none; }
          @media screen and (max-width: 767px) {
            .bnr_voice .inBox a .rBox .btn {
              display: block; } }
      .bnr_voice .inBox a .btn {
        background-color: #E45B00;
        border-radius: 50px;
        width: 286px;
        padding: 8px 10px;
        text-align: center;
        color: #FFF;
        margin: 20px auto 0;
        position: relative; }
        @media screen and (max-width: 520px) {
          .bnr_voice .inBox a .btn {
            width: 90%;
            padding: 13px 10px; } }
        .bnr_voice .inBox a .btn:after {
          -webkit-transform: translate(0%, -50%);
          -moz-transform: translate(0%, -50%);
          -ms-transform: translate(0%, -50%);
          -o-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
          content: "";
          position: absolute;
          top: 50%;
          right: 20px;
          background-color: #FFF;
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
          width: 6px;
          height: 8px; }

.voice_box * {
  box-sizing: border-box; }

.voice_box {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  box-sizing: border-box;
  background-color: #FFF;
  border-radius: 40px;
  padding: 30px 15px 0px 60px;
  width: 1000px;
  height: 800px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 101; }
  @media screen and (max-width: 1040px) {
    .voice_box {
      width: 90%;
      height: 80vh; } }
  @media screen and (max-width: 767px) {
    .voice_box {
      padding: 30px 15px 0 15px; } }
  @media screen and (max-width: 520px) {
    .voice_box {
      padding: 30px 20px 0 20px; } }
  .voice_box.show {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 1;
    visibility: visible; }
  .voice_box .close {
    cursor: pointer;
    width: 60px;
    height: 60px;
    border: 2px solid #E45B00;
    border-radius: 40px;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 1; }
    @media screen and (max-width: 520px) {
      .voice_box .close {
        width: 40px;
        height: 40px;
        top: 20px;
        right: 20px; } }
    .voice_box .close:before, .voice_box .close:after {
      content: "";
      width: 33px;
      height: 4px;
      background-color: #E45B00;
      border-radius: 10px;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -moz-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
      -o-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg); }
      @media screen and (max-width: 520px) {
        .voice_box .close:before, .voice_box .close:after {
          width: 25px; } }
    .voice_box .close:after {
      -webkit-transform: translate(-50%, -50%) rotate(135deg);
      -moz-transform: translate(-50%, -50%) rotate(135deg);
      -ms-transform: translate(-50%, -50%) rotate(135deg);
      -o-transform: translate(-50%, -50%) rotate(135deg);
      transform: translate(-50%, -50%) rotate(135deg); }
  .voice_box .inBox {
    position: relative;
    overflow-y: scroll;
    z-index: 0;
    padding: 40px 0 0 0;
    height: 95%; }
    @media screen and (max-width: 767px) {
      .voice_box .inBox {
        padding: 20px 0 0 0; } }
    .voice_box .inBox .flexBox {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-wrap: wrap;
      padding: 0 0 60px; }
      @media screen and (max-width: 520px) {
        .voice_box .inBox .flexBox {
          padding: 0 0 30px; } }
      .voice_box .inBox .flexBox .lBox {
        width: 50%; }
        @media screen and (max-width: 1000px) {
          .voice_box .inBox .flexBox .lBox img {
            width: 90%;
            height: auto; } }
        @media screen and (max-width: 767px) {
          .voice_box .inBox .flexBox .lBox {
            width: 100%;
            text-align: center; }
            .voice_box .inBox .flexBox .lBox img {
              width: 400px;
              height: auto; } }
        @media screen and (max-width: 520px) {
          .voice_box .inBox .flexBox .lBox img {
            width: 80%; } }
      .voice_box .inBox .flexBox .rBox {
        width: 50%; }
        @media screen and (max-width: 767px) {
          .voice_box .inBox .flexBox .rBox {
            width: 100%;
            text-align: center;
            padding: 30px 0 0 0; } }
        .voice_box .inBox .flexBox .rBox p.tx1 {
          font-size: 28px;
          padding: 0 0 25px;
          line-height: 40px; }
          @media screen and (max-width: 520px) {
            .voice_box .inBox .flexBox .rBox p.tx1 {
              font-size: 20px; } }
        .voice_box .inBox .flexBox .rBox p.tx2 {
          font-size: 64px;
          color: #FF5C00;
          padding: 0 0 15px;
          line-height: 64px; }
          @media screen and (max-width: 520px) {
            .voice_box .inBox .flexBox .rBox p.tx2 {
              font-size: 32px;
              line-height: 36px; } }
        .voice_box .inBox .flexBox .rBox p.tx3 {
          font-size: 20px;
          letter-spacing: 0.2em; }
          @media screen and (max-width: 520px) {
            .voice_box .inBox .flexBox .rBox p.tx3 {
              font-size: 15px; } }
    .voice_box .inBox .txBox {
      max-width: 720px;
      padding: 60px 0 0 0;
      margin: 0 auto;
      border-top: 2px solid #CCCCCC; }
      @media screen and (max-width: 1000px) {
        .voice_box .inBox .txBox {
          max-width: none;
          width: 80%; } }
      @media screen and (max-width: 520px) {
        .voice_box .inBox .txBox {
          padding: 30px 0 0 0;
          width: 100%; } }
      .voice_box .inBox .txBox .tx_in {
        padding: 0 0 50px; }
        .voice_box .inBox .txBox .tx_in p.tx4 {
          font-size: 40px;
          color: #FF5C00;
          padding: 0 0 20px;
          line-height: 42px; }
          @media screen and (max-width: 1000px) {
            .voice_box .inBox .txBox .tx_in p.tx4 {
              font-size: 30px; } }
          @media screen and (max-width: 520px) {
            .voice_box .inBox .txBox .tx_in p.tx4 {
              font-size: 20px;
              padding: 0 0 10px; } }
        .voice_box .inBox .txBox .tx_in p.tx5 {
          font-size: 18px;
          line-height: 34px;
          letter-spacing: 0; }
          @media screen and (max-width: 520px) {
            .voice_box .inBox .txBox .tx_in p.tx5 {
              font-size: 15px;
              line-height: 30px; } }
        .voice_box .inBox .txBox .tx_in ul li {
          font-size: 18px;
          padding: 0 0 0 1em;
          position: relative;
          line-height: 34px;
          letter-spacing: 0; }
          @media screen and (max-width: 520px) {
            .voice_box .inBox .txBox .tx_in ul li {
              font-size: 15px;
              line-height: 30px; } }
          .voice_box .inBox .txBox .tx_in ul li:before {
            content: "・";
            position: absolute;
            top: 0;
            left: 0; }

body {
  background-image: none !important; }
  body.stop {
    overflow: hidden; }

.black {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100; }
  .black.show {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 1;
    visibility: visible; }
