@charset "UTF-8";
/*==================================
レスポンシブ設定 マップ型変数breakpointsを定義
=================================*/
/*==================================
# 色、フォントファミリー
=================================*/
/*==================================
common(一般) - 全体に共通するスタイル
=================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

body {
  font-size: 16px;
  color: #000;
  font-family: YuGothic, "Yu Gothic", "sans-serif";
  line-height: 1.5;
  background: #fff;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    padding-top: 80px;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  font-family: YuGothic, "Yu Gothic", "sans-serif";
  -webkit-transition: .3s;
  transition: .3s;
  color: #000;
}

a:hover {
  opacity: .6;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
}

.header .heading {
  height: 80px;
  padding-top: 20px;
  background: #fff;
}

.header .bottom {
  height: 60px;
  line-height: 60px;
  background: #efbd0d;
}

.section {
  padding: 70px 0;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 20px 0;
  }
}

.headerLogo {
  width: 230px;
}

@media screen and (max-width: 767px) {
  .headerLogo {
    width: 150px;
  }
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  max-width: 1100px;
  margin: 0 auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media screen and (max-width: 767px) {
  .header-nav {
    padding: 0 16px;
  }
}

.header-nav li a {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .header-nav li a {
    font-size: 16px;
  }
}

.drawer-icon {
  position: fixed;
  top: 30px;
  right: 15px;
  z-index: 300;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
}

@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  -webkit-transition: .3s;
  transition: .3s;
  background: #fff;
}

.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  -webkit-transition: .3s;
  transition: .3s;
  background: #fff;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 25px;
  height: 3px;
  background: #efbd0d;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bar2 {
  top: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bar3 {
  top: 16px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #efbd0d;
  z-index: 250;
  display: none;
  -webkit-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.drawer-content.is-active {
  display: block;
}

.drawer-icon-nav {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.drawer-icon-nav ul li {
  margin-bottom: 50px;
}

.drawer-icon-nav ul li a {
  display: block;
  color: #ffffff;
  font-weight: bold;
}

.footer {
  background: #efbd0d;
  padding: 80px 0 40px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0 20px;
  }
}

.footerLogo {
  max-width: 300px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 767px) {
  .footerLogo {
    max-width: 150px;
    margin: 0 auto 25px;
  }
}

.footer-meta {
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer-meta {
    font-size: 14px;
  }
}

.footer-meta .text1 {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .footer-meta .text1 {
    margin-bottom: 20px;
  }
}

.footer-meta .text2 {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .footer-meta .text2 {
    margin-bottom: 30px;
  }
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  max-width: 1100px;
  margin: 0 auto 30px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media screen and (max-width: 767px) {
  .footer-nav {
    padding: 0 16px;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav li {
    margin-bottom: 10px;
  }
}

.footer-nav li a {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .footer-nav li a {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav li a {
    font-size: 14px;
  }
}

.copyright {
  font-size: 16px;
  text-align: center;
}

.slick-next {
  right: 5%;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 767px) {
  .slick-next {
    width: 30px;
    height: 30px;
    right: 1%;
  }
}

.slick-prev {
  left: 5%;
  z-index: 10;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 767px) {
  .slick-prev {
    width: 30px;
    height: 30px;
    left: 1%;
  }
}

@media screen and (min-width: 768px) {
  .top {
    height: 80vh;
  }
}

.slick-slider {
  height: inherit;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  height: inherit;
}

.slick-arrow:before {
  content: "" !important;
}

.slick-arrow:before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-next:before {
  background: url(../img/arrow_r.png) !important;
  background-size: cover !important;
}

.slick-prev:before {
  background: url(../img/arrow_l.png) !important;
  background-size: cover !important;
}

.slider-li {
  position: relative;
}

.slider-li-wrap {
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .slider-li-wrap {
    bottom: initial;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.slider-li-title {
  font-weight: bold;
  font-size: 26px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .slider-li-title {
    font-size: 18px;
  }
}

.slider-li-text {
  font-weight: bold;
  font-size: 24px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .slider-li-text {
    font-size: 16px;
  }
}

.main-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .main-inner {
    display: block;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .main-content {
    width: calc(100% - 320px);
    padding-right: 50px;
    border-right: 3px solid #ea5532;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .main-content {
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .main-content {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 768px) {
  .sub-content {
    width: 320px;
    padding-left: 50px;
  }
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .sub-content {
    padding-left: 20px;
  }
}

.section-title {
  text-align: center;
  position: relative;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 50px;
  }
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: #ea5532;
}

@media screen and (max-width: 767px) {
  .section-title::after {
    height: 4px;
    width: 50px;
  }
}

.section-title .en {
  font-size: 80px;
  color: #f7de86;
  font-weight: bold;
  font-family: 'Arial Black',sans-serif;
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .section-title .en {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  .section-title .en {
    font-size: 40px;
  }
}

.section-title .ja {
  font-size: 50px;
  color: #000;
  font-weight: 900;
  font-family: 'ヒラギノ角ゴ StdN','Hiragino Kaku Gothic StdN',kozuka-gothic-pr6n,sans-serif;
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .section-title .ja {
    font-size: 25px;
  }
}

@media screen and (max-width: 767px) {
  .section-title .ja {
    font-size: 25px;
  }
}

.work-s-top {
  background: url(../img/worl-s-heading.png) no-repeat bottom center/cover;
  height: 300px;
}

.work-s-top.voice-heading {
  background: url(../img/voice-heading.png) no-repeat bottom center/cover;
}

@media screen and (max-width: 767px) {
  .work-s-top {
    height: 200px;
  }
}

.other-section-title .ja {
  bottom: -60px;
}

.other-section-title::after {
  bottom: -100px;
  background: #fff;
}

.topConcept-lead {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .topConcept-lead {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  .topConcept-lead {
    text-align: left;
    font-size: 16px;
  }
}

.topConcept-text {
  font-size: 18px;
  max-width: 450px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 767px) {
  .topConcept-text {
    font-size: 14px;
  }
}

.topInfo-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.topInfo-ul li {
  position: relative;
  border: 1px solid #adaaaa;
}

@media screen and (min-width: 768px) {
  .topInfo-ul li {
    width: calc(33% - 40px * 2/3);
    margin-right: 40px;
  }
  .topInfo-ul li:nth-child(3n) {
    margin-right: 0;
  }
  .topInfo-ul li:nth-child(n + 4) {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .topInfo-ul li {
    width: calc(50% - 10px * 1/2);
    margin-right: 10px;
  }
  .topInfo-ul li:nth-child(2n) {
    margin-right: 0;
  }
  .topInfo-ul li:nth-child(n + 3) {
    margin-top: 20px;
  }
}

.topInfo-ul a {
  display: block;
  color: #000;
}

.topInfo-ul .category {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 15px;
  font-size: 18px;
  font-weight: bold;
  background: #efbd0d;
  color: #000;
}

@media screen and (max-width: 767px) {
  .topInfo-ul .category {
    font-size: 14px;
    padding: 5px 10px;
  }
}

.topInfo-ul .img {
  padding-top: 75%;
  position: relative;
}

.topInfo-ul .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.topInfo-ul .title {
  font-size: 16px;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .topInfo-ul .title {
    font-size: 13px;
  }
}

.banner {
  margin: 0 auto 60px;
}

@media screen and (max-width: 767px) {
  .banner {
    width: 70%;
    margin: 0 auto 30px;
  }
}

.sub-content-news {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .sub-content-news {
    margin-bottom: 20px;
  }
}

.sub-content-news ul {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .sub-content-news ul {
    margin-bottom: 15px;
  }
}

.sub-content-news ul li {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .sub-content-news ul li {
    margin-bottom: 10px;
  }
}

.sub-content-news ul li .img {
  width: 40%;
  padding-top: 33%;
  position: relative;
}

.sub-content-news ul li .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-content-news ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sub-content-news ul li .right {
  width: 55%;
  margin-left: auto;
}

.sub-content-news ul li .right .title {
  font-size: 15px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .sub-content-news ul li .right .title {
    font-size: 14px;
  }
}

.sub-content-news ul li .right .time {
  color: #efbd0d;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .sub-content-news ul li .right .time {
    font-size: 13px;
  }
}

.sub-content-news-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .sub-content-news-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .sub-content {
    padding-top: 50px;
    border-top: 1px solid #ea5532;
  }
}

.breadcrumbs {
  border-bottom: 2px solid #000;
  padding: 10px 0;
}

.breadcrumbs span {
  color: #000;
}

.breadcrumbs a {
  color: #000;
}

.section-title2 {
  font-size: 24px;
  font-weight: bold;
  padding: 5px 20px;
  background: #efbd0d;
}

@media screen and (max-width: 767px) {
  .section-title2 {
    font-size: 16px;
    padding: 5px 10px;
  }
}

.keywords {
  font-size: 24px;
  color: #ea5532;
  padding: 10px 20px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .keywords {
    font-size: 16px;
    padding: 5px 10px;
  }
}

.before-after-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .before-after-img {
    margin-bottom: 25px;
  }
}

.before-img {
  width: 35%;
}

.before-img.add {
  width: 30%;
}

.before-img-wrap {
  padding-top: 100%;
  position: relative;
}

.before-img-wrap::after {
  content: "";
  position: absolute;
  background: url(../img/arrow.png) no-repeat center center/cover;
  top: -80px;
  right: 0;
  width: 100px;
  height: 68px;
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .before-img-wrap::after {
    width: 40px;
    height: 27px;
    top: -40px;
  }
}

@media screen and (max-width: 767px) {
  .before-img-wrap::after {
    width: 30px;
    height: 20px;
    top: -30px;
  }
}

.before-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.before-img-wrap {
  padding-top: 100%;
  position: relative;
}

.before-img-wrap::after {
  content: "";
  position: absolute;
  background: url(../img/arrow.png) no-repeat center center/cover;
  top: -80px;
  right: 0;
  width: 100px;
  height: 68px;
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .before-img-wrap::after {
    width: 40px;
    height: 27px;
    top: -40px;
  }
}

@media screen and (max-width: 767px) {
  .before-img-wrap::after {
    width: 30px;
    height: 20px;
    top: -30px;
  }
}

.before-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.after-img {
  width: 60%;
  margin-left: auto;
}

.after-img-wrap, .after-img-wrap2 {
  padding-top: 100%;
  position: relative;
}

.after-img-wrap img, .after-img-wrap2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.red-title {
  color: #ea5532;
  font-size: 22px;
  font-weight: bold;
  padding: 0 20px;
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .red-title {
    font-size: 16px;
    padding: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .red-title {
    font-size: 16px;
    padding: 0 10px;
  }
}

.work-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.work-bottom-left {
  width: 30%;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .work-bottom-left {
    width: 48%;
  }
}

.work-bottom-right {
  width: 60%;
}

@media screen and (max-width: 767px) {
  .work-bottom-right {
    width: 48%;
  }
}

.work-ul {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .work-ul {
    margin-top: 15px;
  }
}

.work-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.work-row .dt {
  width: 170px;
  padding: 5px;
  background: #bbb9b9;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .work-row .dt {
    width: 50px;
    font-size: 10px;
  }
}

.work-row .dd {
  width: calc(100% - 170px);
  padding: 5px 15px;
}

@media screen and (max-width: 767px) {
  .work-row .dd {
    width: 100%;
    width: calc(100% - 50px);
    font-size: 10px;
    padding: 5px 5px;
  }
}

.work-row .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .work-row.add2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.work-main-img {
  width: 80%;
  margin: 20px auto 20px;
  padding-top: 75%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .work-main-img {
    width: 100%;
    margin: 20px auto 10px;
  }
}

.work-main-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.work-row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .work-row2 {
    margin-top: 15px;
  }
}

.work-row2 .left {
  width: 48%;
}

.work-row2 .left .work-p-title {
  padding: 10px;
}

.work-row2 .right {
  width: 48%;
  margin-left: auto;
}

.work-row2 .right .work-p-title {
  padding: 10px;
}

.work-p2 {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .work-p2 {
    margin-top: 15px;
  }
}

.before-after-img2 {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .before-after-img2 {
    margin-top: 20px;
  }
}

.before-img-wrap2 {
  position: relative;
}

.before-img-wrap2::after {
  position: absolute;
  content: "";
  background: url(../img/red-arrow.png) no-repeat center center/cover;
  bottom: 0%;
  right: -25%;
  width: 40px;
  height: 144px;
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .before-img-wrap2::after {
    width: 20px;
    height: 72px;
  }
}

@media screen and (max-width: 767px) {
  .before-img-wrap2::after {
    position: initial;
  }
}

@media screen and (max-width: 767px) {
  .before-after-img2 .before-img {
    width: 48%;
  }
}

@media screen and (max-width: 767px) {
  .before-after-img2 .after-img {
    width: 48%;
  }
}

@media screen and (max-width: 767px) {
  .work-p-text {
    font-size: 13px;
  }
}

.work-archive {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .work-archive {
    margin-top: 20px;
  }
}

.work-archive li {
  border: 1px solid #707070;
  width: calc(50% - 20px * 1 /2);
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .work-archive li {
    width: calc(50% - 10px * 1 /2);
    margin-right: 10px;
  }
}

.work-archive li:nth-child(2n) {
  margin-right: 0;
}

.work-archive li:nth-child(n + 3) {
  margin-top: 20px;
}

.work-archive li a {
  color: #000;
  display: block;
}

@media screen and (max-width: 767px) {
  .work-archive li .work-ul {
    margin-top: 0;
  }
}

.work-archive li .before-after-img {
  margin-bottom: 0;
}

.work-archive li .before-after-img {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

@media screen and (min-width: 768px) {
  .work-archive li .red-title {
    font-size: 20px;
  }
}

.work-archive .before-img-wrap::after {
  width: 30px;
  height: 20px;
  top: -60px;
}

@media screen and (max-width: 767px) {
  .work-archive .before-img-wrap::after {
    top: -30px;
    width: 15px;
    height: 10px;
  }
}

.work-archive .title {
  padding: 10px 10px 10px 30px;
  font-weight: bold;
  position: relative;
}

.work-archive .title::before {
  position: absolute;
  content: "";
  top: 47%;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/case-icon.png) no-repeat center center/cover;
  width: 22px;
  height: 20px;
}

@media screen and (max-width: 767px) {
  .work-archive .title::before {
    width: 11px;
    height: 10px;
  }
}

@media screen and (min-width: 768px) {
  .work-archive .title {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .work-archive .title {
    font-size: 12px;
    padding: 5px 5px 5px 15px;
  }
}

@media screen and (max-width: 767px) {
  .work-archive .red-title {
    font-size: 10px;
    padding: 3px 0;
  }
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .work-archive .red-title {
    font-size: 12px;
  }
}

.work-archive .work-ul {
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .work-archive .work-ul {
    padding: 5px;
  }
}

@media screen and (min-width: 768px) {
  .work-archive .work-row .dt {
    width: 100px;
  }
  .work-archive .work-row .dd {
    width: calc(100% - 100px);
  }
}

.voice-content {
  margin-top: 20px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .voice-content {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

.voice-content .dt {
  width: 120px;
  font-size: 16px;
  padding: 5px 10px;
  text-align: center;
  background: #bbb9b9;
}

@media screen and (max-width: 767px) {
  .voice-content .dt {
    font-size: 14px;
  }
}

.voice-content .dd {
  width: calc(100%- 120px);
  padding: 5px 10px;
  font-size: 16px;
  color: #EA5632;
}

@media screen and (max-width: 767px) {
  .voice-content .dd {
    font-size: 14px;
  }
}

.voice-img {
  padding-top: 60%;
  position: relative;
}

.voice-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.qa-content {
  background: #FBEBB7;
  border: 1px dotted #EA5632;
  margin-top: 50px;
  padding: 10px 60px 60px;
}

@media screen and (max-width: 767px) {
  .qa-content {
    margin-top: 20px;
    padding: 10px 10px 30px 10px;
  }
}

.qa-content .title {
  color: #EC7225;
  text-align: center;
  font-size: 40px;
  font-family: 'Arial Black',sans-serif;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .qa-content .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.qa-content .qa-row {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .qa-content .qa-row {
    margin-bottom: 20px;
  }
}

.qa-dt {
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
}

.qa-dt::before {
  position: absolute;
  top: -5px;
  left: 0;
  color: #fff;
  background: #EFBE0C;
  text-align: center;
  content: "Q";
  padding: 2.5px 6.5px;
  border-radius: 50%;
}

.qa-dd {
  padding-left: 40px;
  margin-bottom: 10px;
  position: relative;
}

.qa-dd::before {
  position: absolute;
  top: -5px;
  left: 0;
  color: #fff;
  background: #EC7225;
  text-align: center;
  content: "A";
  padding: 2.5px 6.5px;
  border-radius: 50%;
}

.qa-dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .qa-dd {
    display: block;
  }
}

.qa-dd span {
  margin-right: 20px;
  padding-left: 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .qa-dd span {
    display: block;
  }
}

.qa-dd span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #000;
  width: 15px;
  height: 15px;
}

.qa-dd span.check::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  border-left: 4px solid #EC7225;
  border-bottom: 4px solid #EC7225;
  width: 15px;
  height: 5px;
}

.score {
  font-weight: bold;
  text-decoration: underline;
}

.qa-dt2 {
  margin-bottom: 20px;
}

.qa-dd2 {
  font-weight: bold;
}

.voice-bottom-img {
  margin-top: 40px;
  padding-top: 65%;
  position: relative;
}

.voice-bottom-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .voice-bottom-img {
    margin-top: 20px;
  }
}

.voice-ul {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .voice-ul {
    margin-top: 20px;
  }
}

.voice-ul a {
  display: block;
}

.voice-ul li {
  border: 1px solid #000;
}

@media screen and (min-width: 768px) {
  .voice-ul li {
    width: calc(33.333% - 20px * 2/ 3);
    margin-right: 20px;
  }
  .voice-ul li:nth-child(3n) {
    margin-right: 0;
  }
  .voice-ul li:nth-child(n + 4) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .voice-ul li {
    width: calc(50% - 10px * 2/ 3);
    margin-right: 10px;
  }
  .voice-ul li:nth-child(2n) {
    margin-right: 0;
  }
  .voice-ul li:nth-child(n + 3) {
    margin-top: 20px;
  }
}

.voice-ul li .title {
  padding: 5px 10px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .voice-ul li .title {
    font-size: 13px;
    padding: 5px;
  }
}

.voice-ul li .img {
  padding-top: 60%;
  position: relative;
}

.voice-ul li .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice-ul li .message {
  padding: 0 10px;
  color: #f1ca39;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .voice-ul li .message {
    font-size: 12px;
    padding: 5px;
  }
}

.voice-ul li .content {
  padding: 5px 10px;
  font-size: 13.5px;
}

@media screen and (max-width: 767px) {
  .voice-ul li .content {
    font-size: 11.5px;
    padding: 5px;
  }
}

.voice-ul li .category {
  padding: 0 10px 5px;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .voice-ul li .category {
    font-size: 12px;
    padding: 0 5px 5px;
  }
}

.voice-ul li .time {
  padding: 0 10px 5px;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .voice-ul li .time {
    font-size: 10px;
    padding: 0 5px 5px;
  }
}

.single-time {
  padding: 10px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .single-time {
    font-size: 12px;
    padding: 5px;
  }
}

.single-content {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .single-content {
    margin-top: 10px;
  }
}

.slick-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .slick-slide img {
    height: 375px;
  }
}

.slider-li-wrap {
  background: rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 768px) {
  .slider-li-wrap {
    padding: 20px 40px;
  }
}

@media screen and (max-width: 767px) {
  .red-title {
    font-size: 10px;
    padding: 3px 0;
  }
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
  .red-title {
    font-size: 12px !important;
  }
}

@media screen and (min-width: 768px) {
  .c-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .c-flex {
    margin-top: 10px;
  }
}

.c-flex .left {
  width: calc(100% - 220px);
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .c-flex .left {
    width: 100%;
  }
}

.c-flex .right {
  width: 200px;
  margin-top: 0;
  display: block;
}

@media screen and (max-width: 767px) {
  .c-flex .right {
    width: 100%;
  }
}

.c-flex .right .dt {
  text-align: left;
  background: transparent;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .c-flex .right .dt {
    font-size: 14px;
    padding: 10px 0;
  }
}

.c-flex .right .dd {
  color: #fff;
  background: #EA5632;
}

.pagenation, .pagination {
  text-align: center;
  margin-top: 100px;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .pagenation, .pagination {
    margin-top: 30px;
    font-size: 14px;
  }
}

.pagenation a, .pagenation span, .pagination a, .pagination span {
  padding: 10px;
  border: 1px solid #000;
}

.pagenation span, .pagination span {
  background: #efbd0d;
}

.pagenation .prev, .pagenation .next, .pagination .prev, .pagination .next {
  display: none;
}

.company-ul {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .company-ul {
    margin-top: 20px;
  }
}

.company-ul .row {
  margin-bottom: 20px;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid #efbd0d;
}

.company-ul .row .dt {
  width: 200px;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .company-ul .row .dt {
    width: 100px;
    font-size: 12px;
  }
}

.company-ul .row .dd {
  width: calc(100% - 200px);
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .company-ul .row .dd {
    width: calc(100% - 100px);
    font-size: 12px;
  }
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 0;
  margin: 0;
  outline: none;
  padding: 10px;
}

.contact {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .contact {
    margin-top: 20px;
  }
}

.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact .dt {
  width: 150px;
  font-size: 18px;
}

.contact .dd {
  width: calc(100% - 150px);
}

.row-textarea .dd {
  width: 100%;
}

textarea {
  height: 250px;
  resize: none;
}

.submit-row {
  max-width: 300px;
  margin: 40px auto 0;
}

input[type="submit"] {
  background: #efbd0d;
  color: #fff;
  border: none;
  font-size: 20px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

input[type="submit"]:hover {
  opacity: .6;
}
