@charset "UTF-8";
/* text */
/*  width */
/* margin,paddingのリセット */
/*  preset */
*, *:after, *:before {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "游ゴシック", YuGothic, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.7;
  color: palette("basic", "text");
  overflow-x: hidden;
}

body.no_scroll {
  overflow: hidden;
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #000;
  transition: all 0.3s ease;
}

img {
  height: auto;
  vertical-align: bottom;
}

i, cite, em, var, address, dfn {
  font-style: normal;
}

p {
  margin: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

iframe {
  border: none;
}

.u-alignCenter {
  text-align: center;
}

@font-face {
  font-family: 'texta';
  src: url("../fonts/texta-medium.woff2") format("woff2"), url("../fonts/texta-medium.woff") format("woff"), url("../fonts/texta-medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'texta';
  src: url("../fonts/texta-heavy.woff2") format("woff2"), url("../fonts/texta-heavy.woff") format("woff"), url("../fonts/texta-heavy.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

/* blog */
.blog .blog-sec {
  padding: 100px 0 80px 0;
}

.blog .blog-sec .blog__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #515151;
  padding-bottom: 10px;
  margin-bottom: 60px;
}

.blog .blog-sec .blog__category .category__ttl {
  font-family: "texta", sans-serif;
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  margin-right: 30px;
  letter-spacing: 0.1em;
}

.blog .blog-sec .blog__category .category__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog .blog-sec .blog__category .category__list li:not(:last-child) {
  margin-right: 20px;
}

.blog .blog-sec .blog__category .category__list li a {
  font-family: "texta", sans-serif;
  color: #cccccc;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-transform: 0.3s ease all;
          transform: 0.3s ease all;
}

.blog .blog-sec .blog__category .category__list li a.active {
  color: #ed6e00;
}

.blog .blog-sec .blog__category .category__list li a:hover {
  color: #ed6e00;
}

.blog .blog-sec .blog__list {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog .blog-sec .blog__list .list__item {
  margin-bottom: 30px;
  width: calc((100% / 3) - 50px);
}

.blog .blog-sec .blog__list .list__item:not(:nth-child(3n)) {
  margin-right: 70px;
}

.blog .blog-sec .blog__list .list__item .list__item__wrap {
  margin-bottom: 15px;
  display: block;
  width: 100%;
}

.blog .blog-sec .blog__list .list__item .list__item__wrap .item__img {
  margin-right: 15px;
  overflow: hidden;
}

.blog .blog-sec .blog__list .list__item .list__item__wrap .item__img img {
  width: 100%;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) all;
}

.blog .blog-sec .blog__list .list__item .list__item__wrap .item__txt {
  margin: -55px 0 0 35px;
  background: #fff;
  position: relative;
  padding: 20px;
}

.blog .blog-sec .blog__list .list__item .list__item__wrap .item__txt .ttl {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.blog .blog-sec .blog__list .list__item .list__item__wrap .item__txt .date {
  color: #ed6e00;
  font-size: 15px;
  font-size: 1.5rem;
}

.blog .blog-sec .blog__list .list__item .list__item__wrap:hover .item__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 1024px) {
  .blog .blog-sec .blog__list .list__item {
    margin-bottom: 30px;
    width: calc((100% / 3) - 35px);
  }
  .blog .blog-sec .blog__list .list__item:not(:nth-child(3n)) {
    margin-right: 50px;
  }
}

@media (max-width: 1024px) and (max-width: 1000px) {
  .blog .blog-sec .blog__category .category__ttl {
    font-size: 1.8rem;
  }
  .blog .blog-sec .blog__category .category__list li a {
    font-size: 1.6rem;
  }
  .blog .blog-sec .blog__list .list__item {
    width: calc((100% / 2) - 20px);
  }
  .blog .blog-sec .blog__list .list__item:not(:nth-child(3n)) {
    margin-right: auto;
  }
  .blog .blog-sec .blog__list .list__item:not(:nth-child(2n)) {
    margin-right: 40px;
  }
}

@media (max-width: 1024px) and (max-width: 760px) {
  .blog .blog-sec {
    padding: 60px 0 40px 0;
  }
  .blog .blog-sec .blog__category {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
  .blog .blog-sec .blog__category .category__ttl {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .blog .blog-sec .blog__category .category__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .blog .blog-sec .blog__category .category__list li:not(:last-child) {
    margin-right: 14px;
  }
  .blog .blog-sec .blog__category .category__list li a {
    font-size: 1.5rem;
  }
  .blog .blog-sec .blog__list {
    display: block;
  }
  .blog .blog-sec .blog__list .list__item {
    width: 100%;
  }
  .blog .blog-sec .blog__list .list__item:not(:nth-child(2n)) {
    margin-right: auto;
  }
  .blog .blog-sec .blog__list .list__item .list__item__wrap .item__txt {
    margin: -55px 0 0 35px;
  }
  .blog .blog-sec .blog__list .list__item .list__item__wrap .item__txt .ttl {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .blog .blog-sec .blog__list .list__item .list__item__wrap .item__txt .date {
    font-size: 1.4rem;
  }
}

/* blog 詳細ページ*/
.blog.detail .blog-detail {
  padding: 60px 0 80px 0;
}

.blog.detail .blog-detail .contentArea {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog.detail .blog-detail .contentArea .c-title {
  color: #f9ae43;
  margin-bottom: 50px;
}

.blog.detail .blog-detail .contentArea article .article__ttl {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.blog.detail .blog-detail .contentArea article .article__ttl h3 {
  margin: 0;
  font-size: 24px;
  font-size: 2.4rem;
}

.blog.detail .blog-detail .contentArea article .article__ttl .article__date__cate {
  font-size: 18px;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ed6e00;
}

.blog.detail .blog-detail .contentArea article .article__ttl .article__date__cate .date {
  font-size: 15px;
  font-size: 1.5rem;
}

.blog.detail .blog-detail .contentArea article .article__ttl .article__date__cate .category {
  margin-left: 15px;
  font-size: 15px;
  font-size: 1.5rem;
}

.blog.detail .blog-detail .contentArea article .article__ttl .article__date__cate .category:before {
  content: '-';
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0 4px;
}

.blog.detail .blog-detail .contentArea article .article__entryContent p {
  margin-bottom: 40px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.blog.detail .blog-detail .contentArea article .article__entryContent a {
  color: #ed6e00;
  text-decoration: underline;
}

.blog.detail .blog-detail .contentArea article .article__entryContent a:hover {
  text-decoration: none;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.blog.detail .blog-detail .contentArea article .article__entryContent img {
  width: 100%;
  margin-bottom: 60px;
}

.blog.detail .blog-detail .contentArea .article__pagination {
  padding-top: 30px;
}

.blog.detail .blog-detail .contentArea .article__pagination .article__pagination__wrap {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog.detail .blog-detail .contentArea .article__pagination .article__pagination__wrap a {
  display: block;
  color: #ed6e00;
  font-size: 18px;
  font-size: 1.8rem;
  border: 1px solid #ed6e00;
  padding: 10px 40px;
  margin: 0 5px;
  font-family: "texta", sans-serif;
}

.blog.detail .blog-detail .contentArea .article__pagination .article__pagination__wrap a:hover {
  background: #ed6e00;
  color: #fff;
}

@media (max-width: 760px) {
  .blog.detail .blog-detail {
    padding: 60px 0;
  }
  .blog.detail .blog-detail .contentArea article .article__ttl {
    margin-bottom: 30px;
  }
  .blog.detail .blog-detail .contentArea article .article__ttl h3 {
    font-size: 2rem;
  }
  .blog.detail .blog-detail .contentArea article .article__ttl .article__date__cate {
    font-size: 1.5rem;
  }
  .blog.detail .blog-detail .contentArea article .article__entryContent p {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
  .blog.detail .blog-detail .contentArea article .article__entryContent img {
    margin-bottom: 50px;
  }
  .blog.detail .blog-detail .contentArea .article__pagination .article__pagination__wrap a {
    font-size: 1.3rem;
    padding: 10px 20px;
  }
}

/* company */
.company .company-sec {
  position: relative;
  margin: 120px 0;
}

.company .company-sec .company__txt {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 530px;
}

.company .company-sec .company__txt .company__txt__inner {
  width: 50%;
}

.company .company-sec .company__txt .company__txt__inner .company__ttl {
  margin: 0;
  margin-bottom: 15px;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 0.34em;
  line-height: 1;
}

.company .company-sec .company__txt .company__txt__inner .company__ttl span {
  color: #ed6e00;
}

.company .company-sec .company__txt .company__txt__inner p {
  margin: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.company .company-sec .company__txt .company__txt__inner p:not(:last-child) {
  margin-bottom: 35px;
}

.company .company-sec .company__txt .company__txt__inner p.txt_bold {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
}

.company .company-sec .company__img {
  width: 45%;
  height: 520px;
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: none;
  background-position: center top;
  background-image: url("../img/company/company_img.jpg");
  background-size: cover;
}

.company .company-sec .company__img img {
  width: 100%;
}

.company .outline-sec {
  background: #f6f6f6;
  padding: 100px 0 100px 0;
}

.company .outline-sec .outline__table {
  max-width: 940px;
  margin: 0 auto;
}

.company .outline-sec .outline__table table {
  width: 100%;
  border-collapse: collapse;
}

.company .outline-sec .outline__table table tr th, .company .outline-sec .outline__table table tr td {
  font-size: 16px;
  font-size: 1.6rem;
  border-bottom: 1px solid #cccccc;
  padding: 30px 0 15px 0;
}

.company .outline-sec .outline__table table tr th {
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  width: 17%;
}

.company .access-sec {
  padding: 100px 0 80px 0;
}

.company .access-sec .c-ttl {
  margin-bottom: 20px;
}

.company .access-sec .mapArea {
  max-width: 940px;
  margin: 0 auto 60px auto;
  height: 576px;
}

.company .access-sec .mapArea iframe {
  width: 100%;
  height: 100%;
}

.company .access-sec .address__txt {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  line-height: 2;
  text-align: center;
}

.company .access-sec .address__txt .u-forSp {
  display: none;
}

/* company レスポンシブ*/
@media (max-width: 1000px) {
  .company .outline-sec {
    padding: 60px 0;
  }
  .company .outline-sec .outline__table table tr th {
    width: 20%;
  }
}

@media (max-width: 1000px) and (max-width: 900px) {
  .company .company-sec {
    position: relative;
    margin: 60px 0;
  }
  .company .company-sec .company__txt {
    padding: 0 20px 0 20px;
    min-height: auto;
  }
  .company .company-sec .company__txt .company__txt__inner {
    width: 100%;
  }
  .company .company-sec .company__txt .company__txt__inner .company__ttl {
    font-size: 3.2rem;
  }
  .company .company-sec .company__txt .company__txt__inner p {
    font-size: 1.4rem;
  }
  .company .company-sec .company__txt .company__txt__inner p:not(:last-child) {
    margin-bottom: 15px;
  }
  .company .company-sec .company__txt .company__txt__inner p.txt_bold {
    font-size: 1.8rem;
  }
  .company .company-sec .company__img {
    width: 100%;
    height: 380px;
    position: static;
  }
}

@media (max-width: 1000px) and (max-width: 900px) and (max-width: 760px) {
  .company .outline-sec {
    padding: 60px 0;
  }
  .company .outline-sec .outline__table table tr {
    border-bottom: 1px solid #cccccc;
  }
  .company .outline-sec .outline__table table tr th, .company .outline-sec .outline__table table tr td {
    display: block;
    width: 100%;
    font-size: 1.5rem;
  }
  .company .outline-sec .outline__table table tr th {
    width: 100%;
    padding: 0;
    padding-top: 25px;
    padding-bottom: 0;
    border-bottom: none;
  }
  .company .outline-sec .outline__table table tr td {
    border-bottom: none;
    padding: 5px 0 8px 0;
  }
  .company .access-sec {
    padding: 60px 0 20px 0;
  }
  .company .access-sec .mapArea {
    max-width: 940px;
    margin: 0 auto 40px auto;
    height: 420px;
  }
  .company .access-sec .mapArea iframe {
    width: 100%;
    height: 100%;
  }
  .company .access-sec .address__txt {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 2;
    text-align: center;
  }
  .company .access-sec .address__txt .u-forSp {
    display: block;
  }
}

/* contact */
.contact .contact-sec {
  padding: 100px 0;
}

.contact .contact-sec .p-wrap {
  max-width: 740px;
}

.contact .contact-sec .p-wrap .lead_txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 40px;
}

.contact .contact-sec .p-wrap form p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.7;
}

.contact .contact-sec .p-wrap form table {
  width: 100%;
  text-align: left;
  border-spacing: 0;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 60px;
  margin-bottom: 6rem;
}

.contact .contact-sec .p-wrap form table tr th {
  position: relative;
  background-color: transparent;
  width: 200px;
  border-bottom: 1px solid #cccccc;
  text-align: left;
  padding-left: 30px;
  padding-left: 3rem;
  vertical-align: top;
  padding: 40px 0;
  padding: 4rem 0;
}

.contact .contact-sec .p-wrap form table tr th .required {
  display: inline-block;
  margin-right: 5px;
  padding: 2px 14px;
  color: #ed6e00;
  font-size: 16px;
  font-size: 1.6rem;
}

.contact .contact-sec .p-wrap form table tr td {
  padding: 40px 0 40px 20px;
  padding: 4rem 0 4rem 2rem;
  border-bottom: 1px solid #d2d2d2;
  word-break: break-all;
}

@media (max-width: 768px) {
  .contact .contact-sec .p-wrap form table tr td {
    display: block;
    padding: 2rem 0;
  }
}

.contact .contact-sec .p-wrap form table tr td select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}

.contact .contact-sec .p-wrap form table tr td select::-ms-value {
  background: none;
  color: #333;
}

.contact .contact-sec .p-wrap form table tr td select::-ms-expand {
  display: none;
}

.contact .contact-sec .p-wrap form table tr td p {
  margin: 0;
}

.contact .contact-sec .p-wrap form table tr td input[type="text"], .contact .contact-sec .p-wrap form table tr td input[type="tel"], .contact .contact-sec .p-wrap form table tr td input[type="email"], .contact .contact-sec .p-wrap form table tr td input[type="number"], .contact .contact-sec .p-wrap form table tr td textarea, .contact .contact-sec .p-wrap form table tr td select {
  background-color: #f7f7f7;
  width: 90%;
  padding: 10px 15px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  font-size: 15px;
  font-size: 1.5rem;
  background: #fff;
}

.contact .contact-sec .p-wrap form table tr td input[type="text"]::-webkit-input-placeholder, .contact .contact-sec .p-wrap form table tr td input[type="tel"]::-webkit-input-placeholder, .contact .contact-sec .p-wrap form table tr td input[type="email"]::-webkit-input-placeholder, .contact .contact-sec .p-wrap form table tr td input[type="number"]::-webkit-input-placeholder, .contact .contact-sec .p-wrap form table tr td textarea::-webkit-input-placeholder, .contact .contact-sec .p-wrap form table tr td select::-webkit-input-placeholder {
  color: #aaaaaa;
  line-height: 1.6;
}

.contact .contact-sec .p-wrap form table tr td input[type="text"]:-ms-input-placeholder, .contact .contact-sec .p-wrap form table tr td input[type="tel"]:-ms-input-placeholder, .contact .contact-sec .p-wrap form table tr td input[type="email"]:-ms-input-placeholder, .contact .contact-sec .p-wrap form table tr td input[type="number"]:-ms-input-placeholder, .contact .contact-sec .p-wrap form table tr td textarea:-ms-input-placeholder, .contact .contact-sec .p-wrap form table tr td select:-ms-input-placeholder {
  color: #aaaaaa;
  line-height: 1.6;
}

.contact .contact-sec .p-wrap form table tr td input[type="text"]::placeholder, .contact .contact-sec .p-wrap form table tr td input[type="tel"]::placeholder, .contact .contact-sec .p-wrap form table tr td input[type="email"]::placeholder, .contact .contact-sec .p-wrap form table tr td input[type="number"]::placeholder, .contact .contact-sec .p-wrap form table tr td textarea::placeholder, .contact .contact-sec .p-wrap form table tr td select::placeholder {
  color: #aaaaaa;
  line-height: 1.6;
}

.contact .contact-sec .p-wrap form table tr td input[type="email"] {
  margin-bottom: 15px;
}

.contact .contact-sec .p-wrap form table tr td textarea {
  width: 100%;
  height: 230px;
  resize: vertical;
}

.contact .contact-sec .p-wrap form table tr td input:focus, .contact .contact-sec .p-wrap form table tr td textarea:focus, .contact .contact-sec .p-wrap form table tr td select:focus {
  outline: 0;
}

.contact .contact-sec .p-wrap form table tr td.u-selectBox {
  position: relative;
}

.contact .contact-sec .p-wrap form table tr td.u-selectBox:after {
  content: '';
  width: 12px;
  height: 6px;
  background: url("../img/common/arrow_down.svg") no-repeat center center;
  background-size: cover;
  display: block;
  position: absolute;
  top: 50%;
  right: 12%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact .contact-sec .p-wrap form table tr td.u-textArea th {
  vertical-align: top;
}

.contact .contact-sec .p-wrap .form__consent {
  text-align: center;
}

.contact .contact-sec .p-wrap .form__consent .consent__txt {
  margin-bottom: 35px;
  font-size: 14px;
  font-size: 1.4rem;
}

.contact .contact-sec .p-wrap .form__consent .consent__txt a {
  margin-right: 5px;
  color: #ed6e00;
  text-decoration: underline;
  transition: all 0.3s linear;
}

.contact .contact-sec .p-wrap .form__consent .consent__txt a:hover {
  text-decoration: underline;
}

.contact .contact-sec .p-wrap .form__consent .consent__txt a:after {
  display: none;
}

.contact .contact-sec .p-wrap .button__Area .c-linkBtn {
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact .contact-sec .p-wrap .button__Area .c-linkBtn button {
  border-radius: 0;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  border: none;
  box-sizing: border-box;
}

.contact .contact-sec .p-wrap .button__Area .c-linkBtn button:focus {
  outline: 0;
}

.contact .contact-sec .p-wrap .button__Area .c-linkBtn button {
  background-color: transparent;
  color: #fff;
}

.contact .contact-sec .p-wrap .button__Area .c-linkBtn:hover button {
  color: #ed6e00;
}

/* contact レスポンシブ*/
@media (max-width: 1000px) {
  .contact .contact-sec {
    padding-top: 60px;
  }
  .contact .contact-sec .p-wrap .lead_txt {
    font-size: 1.4rem;
  }
  .contact .contact-sec .p-wrap form p {
    font-size: 1.4rem;
  }
  .contact .contact-sec .p-wrap form table tr th {
    display: block;
    padding: 25px 0 0;
    border: none;
    font-size: 1.4rem;
  }
  .contact .contact-sec .p-wrap form table tr th .required {
    padding: 2px 8px;
    font-size: 1.1rem;
  }
  .contact .contact-sec .p-wrap form table tr td {
    display: block;
    padding: 10px 0 20px 0;
  }
  .contact .contact-sec .p-wrap form table tr td input[type="text"], .contact .contact-sec .p-wrap form table tr td input[type="tel"], .contact .contact-sec .p-wrap form table tr td input[type="email"], .contact .contact-sec .p-wrap form table tr td input[type="number"], .contact .contact-sec .p-wrap form table tr td textarea, .contact .contact-sec .p-wrap form table tr td select {
    width: 100%;
  }
  .contact .contact-sec .p-wrap form table tr td.u-selectBox {
    position: relative;
  }
  .contact .contact-sec .p-wrap form table tr td.u-selectBox:after {
    content: '';
    width: 12px;
    height: 6px;
    background: url("../img/common/arrow_down.svg") no-repeat center center;
    background-size: cover;
    display: block;
    position: absolute;
    top: 45%;
    right: 2%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (max-width: 1000px) and (max-width: 760px) {
  .contact .contact-sec .p-wrap .lead_txt {
    text-align: left;
    margin-bottom: 20px;
  }
  .contact .contact-sec .p-wrap .lead_txt br {
    display: none;
  }
  .contact .contact-sec .p-wrap .lead_txt br.u-forSp {
    display: block;
  }
}

/* アニメーション */
.effect-fade {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  transition: all 1s;
}

.effect-fade.effect-scroll {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.effect-right {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate(-10px, 0);
          transform: translate(-10px, 0);
  transition: all 1s;
}

.effect-right.effect-scroll {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.effect-left {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate(10px, 0);
          transform: translate(10px, 0);
  transition: all 1s;
}

.effect-left.effect-scroll {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.effect-ttl {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate(0, 15px);
          transform: translate(0, 15px);
  transition: all 1s;
}

.effect-ttl.effect-on {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.list-fade li {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: all 0.8s ease;
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
}

.list-fade li.effect-scroll {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* —————————————————
  トップページ home
  —————————————————*/
.home .l-header.fixed {
  position: fixed;
  background: #fff;
  padding: 10px 30px;
}

@media (max-width: 1000px) {
  .home .l-header {
    background: #fff;
  }
  .home .l-header.fixed {
    padding: 10px 20px;
  }
}

/* home-mv */
.home .home-mv {
  margin-top: 140px;
  height: calc(100vh - 180px);
  min-height: 620px;
  width: 100%;
  position: relative;
  margin-top: 140px;
}

.home .home-mv .mv__slide {
  position: relative;
  height: calc(100vh - 180px);
  min-height: 620px;
  overflow: hidden;
}

.home .home-mv .mv__slide:before {
  content: '';
  display: block;
  width: 100%;
  height: calc(100vh - 180px);
  min-height: 620px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.home .home-mv .mv__slide ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home .home-mv .mv__slide ul li {
  height: 100%;
}

.home .home-mv .mv__slide ul li img {
  width: auto;
  height: 100%;
  vertical-align: bottom;
}

.home .home-mv .mv__slide ul.mv_top_slide {
  height: 20vh;
  min-height: 120px;
}

.home .home-mv .mv__slide ul.mv_top_slide li {
  height: 100%;
}

.home .home-mv .mv__slide ul.mv_top_slide li img {
  height: 100%;
}

.home .home-mv .mv__slide ul.mv_middle_slide {
  height: 39vh;
  min-height: 320px;
}

.home .home-mv .mv__slide ul.mv_bottom_slide {
  height: 27vh;
  min-height: 180px;
}

.home .home-mv .main__txt {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  z-index: 2;
}

.home .home-mv .main__txt img {
  width: 100%;
  max-width: 727px;
}

.home .home-mv .new-info__area {
  background: #ed6e00;
  height: 110px;
  width: 100%;
  max-width: 1000px;
  position: absolute;
  right: 0;
  bottom: -40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 40px;
  z-index: 4;
}

.home .home-mv .new-info__area .new-info__txt {
  color: #fff;
}

.home .home-mv .new-info__area .new-info__txt p {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  transition: 0.3s ease all;
}

.home .home-mv .new-info__area .new-info__txt p:hover.ttl {
  text-decoration: underline;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.home .home-mv .new-info__area .new-info__arrow {
  width: 110px;
  height: 110px;
  position: absolute;
  top: 0;
  right: 0;
  background: #cd6104;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home .home-mv .new-info__area .new-info__arrow:before {
  content: '';
  background: url("../img/common/arrow_white_right.svg") no-repeat center top;
  background-size: cover;
  width: 10px;
  height: 18px;
  display: block;
  transition: 0.3s ease all;
}

.home .home-mv .new-info__area .new-info__arrow:hover {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.home .home-mv .new-info__area .new-info__arrow:hover:before {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

/* home-about  レスポンシブ*/
@media (max-width: 1000px) {
  .home .home-mv {
    margin-top: 60px;
    height: calc(100vh - 60px);
  }
  .home .home-mv .mv__slide {
    height: calc(100vh - 60px);
  }
  .home .home-mv .mv__slide:before {
    height: 100vh;
  }
  .home .home-mv .mv__slide ul.mv_top_slide {
    height: 22vh;
  }
  .home .home-mv .mv__slide ul.mv_middle_slide {
    height: 40vh;
    min-height: 300px;
  }
  .home .home-mv .mv__slide ul.mv_bottom_slide {
    height: 28vh;
    min-height: 230px;
  }
  .home .home-mv .new-info__area {
    height: 70px;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 20px;
  }
  .home .home-mv .new-info__area .new-info__txt p {
    font-size: 1.3rem;
  }
  .home .home-mv .new-info__area .new-info__arrow {
    width: 70px;
    height: 70px;
  }
}

/* home-company */
.home .home-company {
  padding: 110px 0 100px 0;
  background: url("../img/home/bg.png") no-repeat center bottom;
  background-size: cover;
}

.home .home-company .company__ttl {
  margin: 0;
  margin-bottom: 40px;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 0.34em;
  text-align: center;
}

.home .home-company .company__ttl span {
  color: #ed6e00;
}

.home .home-company p {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.8;
  font-weight: bold;
  letter-spacing: 0.12em;
}

.home .home-company p:not(:last-child) {
  margin-bottom: 60px;
}

@media (max-width: 1000px) {
  .home .home-company {
    padding: 80px 0;
  }
  .home .home-company .company__ttl {
    margin-bottom: 40px;
    font-size: 4rem;
  }
  .home .home-company p {
    font-size: 1.6rem;
    line-height: 2.5;
  }
  .home .home-company p:not(:last-child) {
    margin-bottom: 40px;
  }
}

@media (max-width: 1000px) and (max-width: 760px) {
  .home .home-company {
    padding: 60px 0;
  }
  .home .home-company .company__ttl {
    font-size: 3.2rem;
  }
  .home .home-company p {
    font-size: 1.5rem;
    line-height: 2.2;
    text-align: left;
  }
  .home .home-company p:not(:last-child) {
    margin-bottom: 30px;
  }
}

/* home-service */
.home .home-service .c-ttl {
  background: #ed6e00;
  position: relative;
  padding: 90px 0 210px 0;
  color: #fff;
}

.home .home-service .c-ttl span {
  color: #fff;
}

.home .home-service .service-area {
  background: #fff;
  width: 100%;
  max-width: 1180px;
  margin: -220px auto 0 auto;
  position: relative;
  z-index: 9;
  padding: 70px 20px 60px 20px;
}

.home .home-service .service-area .service-area__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.home .home-service .service-area .service-area__list li {
  padding: 0 12px;
}

.home .home-service .service-area .service-area__list li a {
  display: block;
  width: 100%;
}

.home .home-service .service-area .service-area__list li a .item__img {
  overflow: hidden;
}

.home .home-service .service-area .service-area__list li a .item__img img {
  width: 100%;
  transition: 0.3s ease all;
}

.home .home-service .service-area .service-area__list li a .item__txt {
  margin: -35px 15px 0 15px;
  background: #fff;
  position: relative;
  padding: 20px 5px;
}

.home .home-service .service-area .service-area__list li a .item__txt .ttl {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}

.home .home-service .service-area .service-area__list li a .item__txt .ttl span {
  display: block;
  color: #ed6e00;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "texta", sans-serif;
  font-weight: normal;
  letter-spacing: 0.1em;
}

.home .home-service .service-area .service-area__list li a .item__txt .desc {
  margin: 0;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: normal;
  text-align: left;
}

.home .home-service .service-area .service-area__list li a:hover .item__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.home .home-service .service-area .service-area__list .slick-dots {
  bottom: 15px;
  left: 120px;
  position: absolute;
  bottom: inherit;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.home .home-service .service-area .service-area__list .slick-dots li {
  padding: 0;
  width: 10px;
  height: 10px;
  margin: 0 8px;
}

.home .home-service .service-area .service-area__list .slick-dots li button {
  background: #dad9d9;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.home .home-service .service-area .service-area__list .slick-dots li button:before {
  content: '';
  font-size: 40px;
  font-size: 4rem;
  display: block;
  background: #dad9d9;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  display: none;
}

.home .home-service .service-area .service-area__list .slick-dots li.slick-active button {
  background: #ed6e00;
}

.home .home-service .service-area .c-linkBtn__more {
  margin-top: 30px;
}

@media (max-width: 1000px) {
  .home .home-service .c-ttl {
    padding: 60px 0 160px 0;
  }
}

@media (max-width: 1000px) and (max-width: 800px) {
  .home .home-service .service-area {
    margin: -160px auto 0 auto;
  }
}

/* home-strength */
.home .home-strength {
  background: #f6f6f6;
  padding: 100px 0 50px 0;
}

.home .home-strength .strength__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.home .home-strength .strength__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% / 3);
  position: relative;
  margin-bottom: 75px;
}

.home .home-strength .strength__list li .item__img {
  margin-top: 40px;
}

.home .home-strength .strength__list li .num {
  position: absolute;
  top: 0;
  font-family: "texta", sans-serif;
  font-weight: normal;
  font-size: 120px;
  font-size: 12rem;
  opacity: 0.12;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=12)";
  line-height: 0.8;
  color: #fa944e;
  letter-spacing: 0.1em;
}

.home .home-strength .strength__list li .item__ttl {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 20px;
}

@media (max-width: 1000px) {
  .home .home-strength {
    position: relative;
  }
  .home .home-strength .strength__list li {
    padding: 0 10px;
  }
}

@media (max-width: 1000px) and (max-width: 760px) {
  .home .home-strength .strength__list li .item__ttl {
    text-align: center;
    font-size: 1.6rem;
  }
}

@media (max-width: 1000px) and (max-width: 760px) and (max-width: 620px) {
  .home .home-strength {
    padding-top: 60px;
  }
  .home .home-strength .strength__list li {
    width: 100%;
    margin-bottom: 60px;
    text-align: center;
    padding: 0;
  }
  .home .home-strength .strength__list li .item__img {
    margin-bottom: 30px;
  }
  .home .home-strength .strength__list li .item__ttl {
    margin-bottom: 10px;
  }
}

/* home-blog */
.home .home-blog {
  padding: 90px 0 80px 0;
}

.home .home-blog .blog__list {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.home .home-blog .blog__list .list__item {
  margin-bottom: 30px;
  width: calc((100% / 3) - 50px);
}

.home .home-blog .blog__list .list__item:not(:nth-child(3n)) {
  margin-right: 65px;
}

.home .home-blog .blog__list .list__item .list__item__wrap {
  margin-bottom: 15px;
  display: block;
  width: 100%;
}

.home .home-blog .blog__list .list__item .list__item__wrap .item__img {
  margin-right: 15px;
  overflow: hidden;
}

.home .home-blog .blog__list .list__item .list__item__wrap .item__img img {
  width: 100%;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) all;
}

.home .home-blog .blog__list .list__item .list__item__wrap .item__txt {
  margin: -55px 0 0 35px;
  background: #fff;
  position: relative;
  padding: 20px;
}

.home .home-blog .blog__list .list__item .list__item__wrap .item__txt .ttl {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 10px;
  transition: 0.3s ease all;
}

.home .home-blog .blog__list .list__item .list__item__wrap .item__txt .date {
  color: #ed6e00;
  font-size: 15px;
  font-size: 1.5rem;
}

.home .home-blog .blog__list .list__item .list__item__wrap:hover .item__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.home .home-blog .blog__list .list__item .list__item__wrap:hover .item__txt .ttl {
  color: #ed6e00;
}

@media (max-width: 1024px) {
  .home .home-blog .blog__list .list__item {
    margin-bottom: 30px;
    width: calc((100% / 3) - 35px);
  }
  .home .home-blog .blog__list .list__item:not(:nth-child(3n)) {
    margin-right: 50px;
  }
}

@media (max-width: 1024px) and (max-width: 1000px) {
  .home .home-blog .blog__list .list__item {
    margin-bottom: 30px;
    width: calc((100% / 2) - 20px);
  }
  .home .home-blog .blog__list .list__item:not(:nth-child(3n)) {
    margin-right: auto;
  }
  .home .home-blog .blog__list .list__item:not(:nth-child(2n)) {
    margin-right: 40px;
  }
}

@media (max-width: 1024px) and (max-width: 1000px) and (max-width: 760px) {
  .home .home-blog {
    padding: 60px 0 80px 0;
  }
  .home .home-blog .blog__list {
    display: block;
  }
  .home .home-blog .blog__list .list__item {
    width: 100%;
  }
  .home .home-blog .blog__list .list__item:not(:nth-child(2n)) {
    margin-right: auto;
  }
  .home .home-blog .blog__list .list__item .list__item__wrap .item__txt .ttl {
    font-size: 1.6rem;
  }
  .home .home-blog .blog__list .list__item .list__item__wrap .item__txt .date {
    color: #ed6e00;
  }
}

/* home-info */
.home .home-info {
  padding: 90px 0 80px 0;
  background: #ed6e00;
}

.home .home-info .p-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.home .home-info .c-ttl {
  color: #fff;
  margin-bottom: 50px;
}

.home .home-info .c-ttl span {
  color: #fff;
}

.home .home-info .info__list {
  padding: 0;
  list-style: none;
  margin: 0 auto;
  padding-top: 15px;
}

.home .home-info .info__list .info__list__item {
  width: 100%;
  border-bottom: 1px solid #fff;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 50px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.home .home-info .info__list .info__list__item .date {
  margin: 0;
  padding: 0;
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  margin-right: 25px;
  width: 90px;
  color: #fff;
}

.home .home-info .info__list .info__list__item .ttl {
  margin: 0;
  padding: 0;
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  width: calc(100% - 180px);
  color: #fff;
}

.home .home-info .info__list .info__list__item .ttl:hover {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}

.home .home-info .c-linkBtn__more {
  color: #fff;
}

.home .home-info .c-linkBtn__more:before {
  background: #fff;
}

.home .home-info .c-linkBtn__more:after {
  background: #fff;
}

@media (max-width: 760px) {
  .home .home-info {
    padding: 60px 0 80px 0;
  }
  .home .home-info .info__list .info__list__item {
    margin-bottom: 30px;
  }
  .home .home-info .info__list .info__list__item .date {
    font-size: 1.5rem;
    width: auto;
    margin-right: 20px;
  }
  .home .home-info .info__list .info__list__item .ttl {
    font-size: 1.5rem;
    width: 100%;
    line-height: 1.7;
    display: block;
  }
}

/* home-recruit */
.home .home-recruit {
  padding: 120px 0 230px 0;
  background: url("../img/home/home_recruit_bg.jpg") no-repeat center center;
  background-size: cover;
}

.home .home-recruit .c-ttl {
  color: #fff;
  margin-bottom: 35px;
}

.home .home-recruit .c-ttl span {
  color: #fff;
}

.home .home-recruit .desc {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 760px) {
  .home .home-recruit {
    padding: 80px 0 100px 0;
  }
  .home .home-recruit .desc {
    font-size: 1.4rem;
  }
}

/* info */
.info .info-sec {
  padding: 80px 0 30px 0;
}

.info .info-sec .info__list {
  padding: 0;
  list-style: none;
  margin: 0 auto;
  padding-top: 15px;
}

.info .info-sec .info__list .info__list__item {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 50px;
  padding-bottom: 20px;
}

.info .info-sec .info__list .info__list__item .date {
  margin: 0;
  padding: 0;
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  margin-right: 25px;
  width: 90px;
}

.info .info-sec .info__list .info__list__item .ttl {
  margin: 0;
  padding: 0;
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  width: calc(100% - 180px);
}

.info .info-sec .info__list .info__list__item .ttl:hover {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}

/* info レスポンシブ*/
@media (max-width: 760px) {
  .info .info-sec {
    padding: 60px 0 30px 0;
  }
  .info .info-sec .info__list {
    padding: 0;
    list-style: none;
    margin: 0 auto;
    padding-top: 15px;
  }
  .info .info-sec .info__list .info__list__item {
    width: 100%;
    border-bottom: 1px solid #cccccc;
    font-size: 1.6rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  .info .info-sec .info__list .info__list__item .date {
    font-size: 1.5rem;
    width: auto;
    margin-right: 20px;
  }
  .info .info-sec .info__list .info__list__item .ttl {
    font-size: 1.5rem;
    width: 100%;
    line-height: 1.7;
    display: block;
  }
}

/* info 詳細ページ*/
.info.detail .info-detail {
  padding: 60px 0 80px 0;
}

.info.detail .info-detail .contentArea {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.info.detail .info-detail .contentArea article .article__ttl {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.info.detail .info-detail .contentArea article .article__ttl h3 {
  margin: 0;
  font-size: 24px;
  font-size: 2.4rem;
}

.info.detail .info-detail .contentArea article .article__ttl .article__date__cate {
  font-size: 18px;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ed6e00;
}

.info.detail .info-detail .contentArea article .article__ttl .article__date__cate .date {
  font-size: 15px;
  font-size: 1.5rem;
}

.info.detail .info-detail .contentArea article .article__ttl .article__date__cate .category {
  margin-left: 15px;
  font-size: 15px;
  font-size: 1.5rem;
}

.info.detail .info-detail .contentArea article .article__ttl .article__date__cate .category:before {
  content: '-';
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0 4px;
}

.info.detail .info-detail .contentArea article .article__entryContent p {
  margin-bottom: 40px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.info.detail .info-detail .contentArea article .article__entryContent a {
  color: #ed6e00;
  text-decoration: underline;
}

.info.detail .info-detail .contentArea article .article__entryContent a:hover {
  text-decoration: none;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.info.detail .info-detail .contentArea article .article__entryContent img {
  width: 100%;
  margin-bottom: 60px;
}

.info.detail .info-detail .contentArea .article__pagination {
  padding-top: 30px;
}

.info.detail .info-detail .contentArea .article__pagination .article__pagination__wrap {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.info.detail .info-detail .contentArea .article__pagination .article__pagination__wrap a {
  display: block;
  color: #ed6e00;
  font-size: 18px;
  font-size: 1.8rem;
  border: 1px solid #ed6e00;
  padding: 10px 40px;
  margin: 0 5px;
  font-family: "texta", sans-serif;
}

.info.detail .info-detail .contentArea .article__pagination .article__pagination__wrap a:hover {
  background: #ed6e00;
  color: #fff;
}

/* info レスポンシブ*/
@media (max-width: 760px) {
  .info.detail .info-detail {
    padding: 60px 0;
  }
  .info.detail .info-detail .contentArea article .article__ttl {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .info.detail .info-detail .contentArea article .article__ttl h3 {
    margin: 0;
    font-size: 2rem;
  }
  .info.detail .info-detail .contentArea article .article__ttl .article__date__cate {
    font-size: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #ed6e00;
  }
  .info.detail .info-detail .contentArea article .article__ttl .article__date__cate .date {
    font-size: 1.5rem;
  }
  .info.detail .info-detail .contentArea article .article__ttl .article__date__cate .category {
    margin-left: 15px;
    font-size: 1.5rem;
  }
  .info.detail .info-detail .contentArea article .article__ttl .article__date__cate .category:before {
    content: '-';
    font-size: 1.6rem;
    padding: 0 4px;
  }
  .info.detail .info-detail .contentArea article .article__entryContent p {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
  .info.detail .info-detail .contentArea article .article__entryContent img {
    width: 100%;
    margin-bottom: 50px;
  }
  .info.detail .info-detail .contentArea .article__pagination .article__pagination__wrap a {
    font-size: 1.3rem;
    padding: 10px 20px;
  }
}

/* privacy */
.privacy .privacy-sec {
  padding: 80px 0;
}

.privacy .privacy-sec p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
  margin-bottom: 50px;
}

.privacy .privacy-sec h3 {
  margin: 0;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.privacy .privacy-sec h3 + p {
  margin-bottom: 25px;
}

.privacy .privacy-sec .grayBox {
  background: #f6f6f6;
  padding: 30px;
  margin-bottom: 60px;
}

.privacy .privacy-sec .grayBox ol {
  margin: 0;
  padding-left: 30px;
}

.privacy .privacy-sec .grayBox ol li {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

@media (max-width: 1140px) {
  .privacy .privacy-sec .grayBox ol li br {
    display: none;
  }
}

@media (max-width: 1140px) and (max-width: 760px) {
  .privacy .privacy-sec {
    padding: 60px 0;
  }
  .privacy .privacy-sec p {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  .privacy .privacy-sec .grayBox {
    padding: 20px;
    margin-bottom: 30px;
  }
  .privacy .privacy-sec .grayBox ol {
    padding-left: 20px;
  }
  .privacy .privacy-sec .grayBox ol li {
    font-size: 1.4rem;
  }
}

/* recruitment */
.recruitment .l-title {
  height: calc(100vh - 140px);
  background: url("../img/recruitment/recruitment_mv.jpg") no-repeat center center;
  background-size: cover;
  min-height: 240px;
}

.recruitment .l-title .page__ttl {
  margin: 0;
  font-family: "texta", sans-serif;
  text-align: center;
  margin-bottom: 110px;
  line-height: 1.5;
  font-size: 100px;
  font-size: 10rem;
  font-weight: normal;
  letter-spacing: 0.34em;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.recruitment .l-title .page__ttl span {
  font-family: "游ゴシック", YuGothic, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  display: block;
  font-size: 100px;
  font-size: 10rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: all 1s;
}

.recruitment .l-title .page__ttl span.jp-txt {
  font-size: 18px;
  font-size: 1.8rem;
  width: 100%;
}

.recruitment .l-title .page__ttl span.effect-on {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.recruitment .l-title .p-breadcrumbs {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 15px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.recruitment .recruitment-sec {
  padding: 80px 0 120px 0;
}

.recruitment .recruitment-sec .p-wrap {
  max-width: 1100px;
}

.recruitment .recruitment-sec .recruitment__ttl {
  margin: 0;
  margin-bottom: 80px;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.recruitment .recruitment-sec .recruitment__ttl .u-forSp {
  display: none;
}

.recruitment .recruitment-sec .recruitment__ttl span {
  color: #ed6e00;
}

.recruitment .recruitment-sec .secret__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.recruitment .recruitment-sec .secret__list li {
  width: 45%;
  margin-bottom: 80px;
}

.recruitment .recruitment-sec .secret__list li .item__img {
  margin-bottom: 25px;
}

.recruitment .recruitment-sec .secret__list li .item__img img {
  width: 100%;
}

.recruitment .recruitment-sec .secret__list li .item__txt .ttl {
  margin: 0;
  font-size: 28px;
  font-size: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
  margin-bottom: 10px;
}

.recruitment .recruitment-sec .secret__list li .item__txt .ttl span {
  color: #fa944e;
  font-size: 80px;
  font-size: 8rem;
  font-family: "texta", sans-serif;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  display: inline-block;
  margin-right: 15px;
}

.recruitment .recruitment-sec .secret__list li .item__txt p {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}

.recruitment .recruitment-sec .welfare__area {
  margin-bottom: 60px;
  padding-top: 40px;
}

.recruitment .recruitment-sec .welfare__area .welfare__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.recruitment .recruitment-sec .welfare__area .welfare__list li {
  width: 49%;
  border: 1px solid #ed6e00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  height: 96px;
  padding: 0 30px;
  margin-bottom: 25px;
}

.recruitment .recruitment-sec .welfare__area .welfare__list li:before {
  content: '';
  display: inline-block;
  margin-right: 25px;
  width: 48px;
  height: 48px;
  background: url("../img/recruitment/recruitment_mark.svg") no-repeat center center;
  background-size: cover;
}

.recruitment .recruitment-sec .welfare__area .welfare__list li span {
  display: inline-block;
  width: 95px;
  margin: 0 20px;
}

.recruitment .recruitment-sec .welfare__area .welfare__list li span img {
  width: 100%;
}

.recruitment .recruitment-sec .job__area .p-tab .p-tab__title {
  margin: 0;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.recruitment .recruitment-sec .job__area .p-tab .p-tab__title .p-tab__title__item {
  position: relative;
  width: 50%;
  height: 40px;
  font-size: 14px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ed6e00;
  padding: 10px 25px;
  border-bottom: none;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
  z-index: 9;
  text-align: center;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  color: #ed6e00;
  cursor: pointer;
}

.recruitment .recruitment-sec .job__area .p-tab .p-tab__title .p-tab__title__item.select {
  background: #ed6e00;
  color: #fff;
}

.recruitment .recruitment-sec .job__area .p-tab .p-tab__title .p-tab__title__item.select:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin-left: -15px;
  z-index: 99;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #ed6e00 transparent transparent transparent;
}

.recruitment .recruitment-sec .job__area .p-tab__content {
  display: none;
  border: 3px solid #ed6e00;
  padding: 50px 30px 0 30px;
}

.recruitment .recruitment-sec .job__area .p-tab__content .job__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.recruitment .recruitment-sec .job__area .p-tab__content .job__list .job__item {
  width: 47.5%;
  margin-bottom: 30px;
}

.recruitment .recruitment-sec .job__area .p-tab__content .job__list .job__item:nth-child(odd) {
  margin-right: 5%;
}

.recruitment .recruitment-sec .job__area .p-tab__content .job__list .job__item .ttl {
  background: #ed6e00;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 5px 20px;
  margin-bottom: 15px;
}

.recruitment .recruitment-sec .job__area .p-tab__content .job__list .job__item ul {
  margin: 0;
  padding: 0;
  list-style: none;
  min-height: 120px;
}

.recruitment .recruitment-sec .job__area .p-tab__content .job__list .job__item ul li {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.recruitment .information-sec {
  background: #f6f6f6;
  padding: 100px 0 80px 0;
}

.recruitment .information-sec .info__table {
  max-width: 940px;
  margin: 0 auto;
}

.recruitment .information-sec .info__table table {
  width: 100%;
  border-collapse: collapse;
}

.recruitment .information-sec .info__table table tr th, .recruitment .information-sec .info__table table tr td {
  font-size: 16px;
  font-size: 1.6rem;
  border-bottom: 1px solid #cccccc;
  padding: 30px 0 10px 0;
}

.recruitment .information-sec .info__table table tr th {
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  width: 17%;
}

.recruitment .information-sec .info__table table tr td ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruitment .information-sec .info__table table tr td ol li:not(:last-child) {
  margin-bottom: 5px;
}

.recruitment .information-sec .info__table table tr td ol.nest__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.recruitment .information-sec .info__table table tr td ol.nest__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

.recruitment .information-sec .info__table table tr td ol.nest__list ol {
  margin-left: 5px;
}

.recruitment .address__txt {
  padding: 80px 0 60px 0;
}

.recruitment .address__txt p {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  line-height: 2;
  text-align: center;
}

.recruitment .address__txt p .u-forSp {
  display: none;
}

/* recruitment レスポンシブ*/
@media (max-width: 1000px) {
  .recruitment .l-title {
    height: calc(100vh - 60px);
  }
  .recruitment .recruitment-sec {
    padding: 80px 0 120px 0;
  }
  .recruitment .recruitment-sec .p-wrap {
    max-width: 1100px;
  }
  .recruitment .recruitment-sec .recruitment__ttl {
    margin-bottom: 40px;
    font-size: 3.6rem;
  }
  .recruitment .recruitment-sec .secret__list li .item__txt .ttl {
    font-size: 2.4rem;
  }
  .recruitment .recruitment-sec .secret__list li .item__txt .ttl span {
    color: #fa944e;
    font-size: 7.2rem;
  }
  .recruitment .recruitment-sec .welfare__area .welfare__list li {
    font-size: 1.6rem;
    padding: 0 10px 0 20px;
  }
  .recruitment .recruitment-sec .welfare__area .welfare__list li:before {
    margin-right: 15px;
    width: 35px;
    height: 35px;
  }
  .recruitment .recruitment-sec .welfare__area .welfare__list li span {
    width: 55px;
    margin: 0 0 0 10px;
  }
  .recruitment .address__txt {
    padding: 50px 0;
  }
}

@media (max-width: 1000px) and (max-width: 760px) {
  .recruitment .l-title {
    height: calc(70vh - 60px);
  }
  .recruitment .l-title .page__ttl span {
    font-size: 5rem;
  }
  .recruitment .l-title .page__ttl span.jp-txt {
    font-size: 1.6rem;
    width: 100%;
  }
  .recruitment .recruitment-sec {
    padding: 60px 0;
  }
  .recruitment .recruitment-sec .recruitment__ttl {
    font-size: 3rem;
    letter-spacing: 0.12em;
    line-height: 1.5;
  }
  .recruitment .recruitment-sec .recruitment__ttl .u-forSp {
    display: block;
  }
  .recruitment .recruitment-sec .secret__list {
    display: block;
  }
  .recruitment .recruitment-sec .secret__list li {
    width: 100%;
    margin-bottom: 40px;
  }
  .recruitment .recruitment-sec .secret__list li .item__img {
    margin-bottom: 15px;
  }
  .recruitment .recruitment-sec .secret__list li .item__txt .ttl {
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .recruitment .recruitment-sec .secret__list li .item__txt .ttl span {
    font-size: 6rem;
    display: inline-block;
    margin-right: 10px;
  }
  .recruitment .recruitment-sec .secret__list li .item__txt p {
    font-size: 1.4rem;
  }
  .recruitment .recruitment-sec .welfare__area {
    margin-bottom: 60px;
    padding-top: 40px;
  }
  .recruitment .recruitment-sec .welfare__area .welfare__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
  }
  .recruitment .recruitment-sec .welfare__area .welfare__list li {
    width: 100%;
    height: 65px;
    padding: 0 10px 0 20px;
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  .recruitment .recruitment-sec .welfare__area .welfare__list li:before {
    margin-right: 15px;
    width: 30px;
    height: 30px;
  }
  .recruitment .recruitment-sec .job__area .p-tab .p-tab__title .p-tab__title__item {
    padding: 0;
    font-size: 1.6rem;
    height: 50px;
  }
  .recruitment .recruitment-sec .job__area .p-tab .p-tab__title .p-tab__title__item.select {
    background: #ed6e00;
    color: #fff;
  }
  .recruitment .recruitment-sec .job__area .p-tab .p-tab__title .p-tab__title__item.select:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -15px;
    z-index: 99;
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: #ed6e00 transparent transparent transparent;
  }
  .recruitment .recruitment-sec .job__area .p-tab__content {
    padding: 40px 20px 0 20px;
  }
  .recruitment .recruitment-sec .job__area .p-tab__content .job__list {
    display: block;
  }
  .recruitment .recruitment-sec .job__area .p-tab__content .job__list .job__item {
    width: 100%;
  }
  .recruitment .recruitment-sec .job__area .p-tab__content .job__list .job__item .ttl {
    font-size: 1.5rem;
    padding: 5px 10px;
  }
  .recruitment .recruitment-sec .job__area .p-tab__content .job__list .job__item ul {
    min-height: auto;
  }
  .recruitment .recruitment-sec .job__area .p-tab__content .job__list .job__item ul li {
    font-size: 1.4rem;
  }
  .recruitment .information-sec {
    padding: 60px 0;
  }
  .recruitment .information-sec .info__table table tr {
    border-bottom: 1px solid #ccc;
  }
  .recruitment .information-sec .info__table table tr th, .recruitment .information-sec .info__table table tr td {
    width: 100%;
    display: block;
    font-size: 1.5rem;
    border-bottom: none;
    padding: 0;
  }
  .recruitment .information-sec .info__table table tr th {
    width: 100%;
    padding-bottom: 0;
    padding-top: 20px;
  }
  .recruitment .information-sec .info__table table tr td {
    border-bottom: none;
    padding: 5px 0 8px 0;
  }
  .recruitment .information-sec .info__table table tr td ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .recruitment .information-sec .info__table table tr td ol li:not(:last-child) {
    margin-bottom: 5px;
  }
  .recruitment .information-sec .info__table table tr td ol.nest__list {
    display: block;
  }
  .recruitment .information-sec .info__table table tr td ol.nest__list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .recruitment .information-sec .info__table table tr td ol.nest__list ol {
    margin-left: 5px;
    margin-bottom: 15px;
  }
  .recruitment .address__txt {
    padding: 50px 15px;
  }
  .recruitment .address__txt p {
    font-size: 1.4rem;
  }
  .recruitment .address__txt p .u-forSp {
    display: block;
  }
}

@media (max-width: 1000px) and (max-width: 760px) and (max-width: 620px) {
  .recruitment .l-title .page__ttl span {
    font-size: 4.1rem;
  }
  .recruitment .l-title .page__ttl span.jp-txt {
    font-size: 1.6rem;
    width: 100%;
  }
}

/* service */
.services .services-sec {
  position: relative;
}

.services .services-sec .services__img {
  width: 44%;
  height: 440px;
  position: absolute;
  top: -70px;
  background-repeat: none;
  background-position: center center;
}

.services .services-sec .services__img img {
  width: 100%;
}

.services .services-sec .services__txt {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 20px;
  min-height: 530px;
}

.services .services-sec .services__txt .services__txt__inner {
  width: 50%;
  margin-bottom: 120px;
}

.services .services-sec .services__txt .services__txt__inner .services__ttl {
  margin: 0;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
}

.services .services-sec .services__txt .services__txt__inner .services__ttl span {
  font-family: "texta", sans-serif;
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: normal;
  letter-spacing: 0.06em;
  color: #ed6e00;
}

.services .services-sec .services__txt .services__txt__inner .desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}

.services .services-sec .services__other {
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.services .services-sec .services__other .services__other__item {
  width: calc(100% / 3);
}

.services .services-sec .services__other .services__other__item:not(:last-child) {
  margin-right: 40px;
}

.services .services-sec .services__other .services__other__item .item__img {
  margin-bottom: 30px;
}

.services .services-sec .services__other .services__other__item .item__img img {
  width: 100%;
}

.services .services-sec .services__other .services__other__item .item__txt .services__ttl {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-size: 1.8rem;
}

.services .services-sec .services__other .services__other__item .item__txt .desc {
  margin: 0;
}

.services .services-sec.service01 .services__img, .services .services-sec.service03 .services__img, .services .services-sec.service05 .services__img, .services .services-sec.service07 .services__img {
  right: 0;
}

.services .services-sec.service01 .services__txt .services__txt__inner, .services .services-sec.service03 .services__txt .services__txt__inner, .services .services-sec.service05 .services__txt .services__txt__inner, .services .services-sec.service07 .services__txt .services__txt__inner {
  margin: 0 auto 0 0;
}

.services .services-sec.service02, .services .services-sec.service04, .services .services-sec.service06 {
  background: #f6f6f6;
}

.services .services-sec.service02 .services__img, .services .services-sec.service04 .services__img, .services .services-sec.service06 .services__img {
  left: 0;
  top: -70px;
}

.services .services-sec.service02 .services__txt .services__txt__inner, .services .services-sec.service04 .services__txt .services__txt__inner, .services .services-sec.service06 .services__txt .services__txt__inner {
  margin: 0 0 0 auto;
}

.services .services-sec.service01 {
  margin-top: 80px;
}

.services .services-sec.service01 .services__img {
  top: 0;
  background-image: url("../img/services/services_temporary.jpg");
  background-size: cover;
}

.services .services-sec.service02 .services__img {
  background-image: url("../img/services/services_employment.jpg");
  background-size: cover;
}

.services .services-sec.service03 .services__img {
  background-image: url("../img/services/services_foreigner.jpg");
  background-size: cover;
}

.services .services-sec.service04 .services__img {
  background-image: url("../img/services/services_new.jpg");
  background-size: cover;
}

.services .services-sec.service05 .services__img {
  background-image: url("../img/services/services_event.jpg");
  background-size: cover;
}

.services .services-sec.service06 .services__img {
  background-image: url("../img/services/services_outsourcing.jpg");
  background-size: cover;
}

.services .services-sec.service07 .services__img {
  background-image: url("../img/services/service_ses.jpg");
  background-size: cover;
}

.services .services-sec.service01 {
  margin-top: 80px;
  margin-bottom: 35px;
}

.services .services-sec.service01 .services__img {
  top: 0;
  background-image: url("../img/services/services_temporary.jpg");
  background-size: cover;
}

.services .services-sec.service01 .services__txt {
  padding-top: 20px;
}

.services .services-sec.service06 {
  padding-bottom: 220px;
}

.services .services-sec.service06 .services__txt {
  padding-bottom: 0;
}

/* services レスポンシブ*/
@media (max-width: 760px) {
  .services .services-sec {
    padding: 60px 20px;
  }
  .services .services-sec .services__img {
    width: 100%;
    height: 380px;
    position: static;
  }
  .services .services-sec .services__txt {
    padding: 0 0 20px 0;
    min-height: auto;
  }
  .services .services-sec .services__txt .services__txt__inner {
    width: 100%;
  }
  .services .services-sec .services__txt .services__txt__inner .services__ttl {
    font-size: 2.4rem;
  }
  .services .services-sec .services__txt .services__txt__inner .services__ttl span {
    font-size: 2rem;
  }
  .services .services-sec .services__other {
    padding: 60px 0;
    display: block;
  }
  .services .services-sec .services__other .services__other__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .services .services-sec .services__other .services__other__item .item__img {
    width: 50%;
    margin-right: 20px;
  }
  .services .services-sec .services__other .services__other__item .item__txt {
    width: 50%;
  }
  .services .services-sec .services__other .services__other__item .item__txt .services__ttl {
    margin: 0 0 10px 0;
    font-size: 1.6rem;
  }
  .services .services-sec .services__other .services__other__item .item__txt .desc {
    font-size: 1.4rem;
  }
  .services .services-sec.service01, .services .services-sec.service03, .services .services-sec.service05, .services .services-sec.service07 {
    margin-bottom: 0;
  }
  .services .services-sec.service01 .services__img, .services .services-sec.service03 .services__img, .services .services-sec.service05 .services__img, .services .services-sec.service07 .services__img {
    right: 0;
  }
  .services .services-sec.service01 .services__txt .services__txt__inner, .services .services-sec.service03 .services__txt .services__txt__inner, .services .services-sec.service05 .services__txt .services__txt__inner, .services .services-sec.service07 .services__txt .services__txt__inner {
    width: 100%;
    margin: 0 auto 0 0;
  }
  .services .services-sec.service02, .services .services-sec.service04, .services .services-sec.service06 {
    background: #f6f6f6;
    padding: 60px 20px;
  }
  .services .services-sec.service02 .services__img, .services .services-sec.service04 .services__img, .services .services-sec.service06 .services__img {
    left: 0;
    top: -70px;
  }
  .services .services-sec.service02 .services__txt .services__txt__inner, .services .services-sec.service04 .services__txt .services__txt__inner, .services .services-sec.service06 .services__txt .services__txt__inner {
    margin: 0 0 0 auto;
  }
  .services .services-sec.service01 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .services .services-sec.service01 .services__img {
    top: 0;
    background-image: url("../img/services/services_temporary.jpg");
    background-size: cover;
  }
  .services .services-sec.service01 .services__txt {
    padding-top: 20px;
  }
  .services .services-sec.service06 {
    padding-bottom: 0;
  }
  .services .services-sec.service06 .services__txt {
    padding-bottom: 20px;
  }
}

@media (max-width: 760px) and (max-width: 680px) {
  .services .services-sec {
    position: relative;
    padding: 60px 20px;
  }
  .services .services-sec .services__img {
    width: 100%;
    height: 280px;
    position: static;
  }
  .services .services-sec .services__txt {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 0 20px 0;
    min-height: auto;
  }
  .services .services-sec .services__txt .services__txt__inner {
    width: 100%;
    margin-bottom: 120px;
  }
  .services .services-sec .services__txt .services__txt__inner .services__ttl {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 2rem;
  }
  .services .services-sec .services__txt .services__txt__inner .services__ttl span {
    font-size: 1.6rem;
  }
  .services .services-sec .services__txt .services__txt__inner .desc {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .services .services-sec .services__other {
    max-width: 90%;
    padding: 60px 0;
    display: block;
  }
  .services .services-sec .services__other .services__other__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .services .services-sec .services__other .services__other__item:not(:last-child) {
    margin-right: 40px;
  }
  .services .services-sec .services__other .services__other__item .item__img {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 20px;
  }
  .services .services-sec .services__other .services__other__item .item__txt {
    width: 100%;
    margin-bottom: 10px;
  }
  .services .services-sec .services__other .services__other__item .item__txt .services__ttl {
    margin: 0 0 5px 0;
    font-size: 1.6rem;
  }
  .services .services-sec .services__other .services__other__item .item__txt .desc {
    margin: 0;
    font-size: 1.3rem;
  }
  .services .services-sec.service01, .services .services-sec.service03, .services .services-sec.service05, .services .services-sec.service07 {
    margin-bottom: 0;
  }
  .services .services-sec.service01 .services__img, .services .services-sec.service03 .services__img, .services .services-sec.service05 .services__img, .services .services-sec.service07 .services__img {
    right: 0;
  }
  .services .services-sec.service01 .services__txt .services__txt__inner, .services .services-sec.service03 .services__txt .services__txt__inner, .services .services-sec.service05 .services__txt .services__txt__inner, .services .services-sec.service07 .services__txt .services__txt__inner {
    width: 100%;
    margin: 0 auto 0 0;
  }
  .services .services-sec.service02, .services .services-sec.service04, .services .services-sec.service06 {
    background: #f6f6f6;
    padding: 60px 20px;
  }
  .services .services-sec.service02 .services__img, .services .services-sec.service04 .services__img, .services .services-sec.service06 .services__img {
    left: 0;
    top: -70px;
  }
  .services .services-sec.service02 .services__txt .services__txt__inner, .services .services-sec.service04 .services__txt .services__txt__inner, .services .services-sec.service06 .services__txt .services__txt__inner {
    margin: 0 0 0 auto;
  }
  .services .services-sec.service01 {
    margin-bottom: 0;
  }
  .services .services-sec.service01 .services__img {
    top: 0;
    background-image: url("../img/services/services_temporary.jpg");
    background-size: cover;
  }
  .services .services-sec.service01 .services__txt {
    padding-top: 0;
  }
  .services .services-sec.service06 {
    padding-bottom: 0;
  }
}

/* —————————————————
  トップページ home
  —————————————————*/
/* strength-sec */
.strength .strength-sec {
  position: relative;
  padding-top: 100px;
}

.strength .strength-sec .strength__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.strength .strength-sec .strength__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% / 2);
  position: relative;
  margin-bottom: 80px;
  text-align: center;
}

.strength .strength-sec .strength__list li .item__img {
  margin-top: 50px;
  margin-bottom: 30px;
}

.strength .strength-sec .strength__list li .num {
  position: absolute;
  top: 0;
  font-family: "texta", sans-serif;
  font-weight: normal;
  font-size: 140px;
  font-size: 14rem;
  opacity: 0.12;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=12)";
  line-height: 0.8;
  color: #fa944e;
  letter-spacing: 0.1em;
}

.strength .strength-sec .strength__list li .item__ttl {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.strength .strength-sec .strength__list li .message {
  font-size: 60px;
  font-size: 6rem;
  font-family: "texta", sans-serif;
  font-weight: bold;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-align: left;
}

.strength .strength-sec .strength__list li .message span {
  color: #ed6e00;
}

@media (max-width: 1024px) {
  .strength .strength-sec .strength__list li .message {
    font-size: 5.6rem;
  }
}

@media (max-width: 1024px) and (max-width: 1000px) {
  .strength .strength-sec .strength__list li {
    padding: 0 20px;
  }
  .strength .strength-sec .strength__list li .message {
    font-size: 4.6rem;
  }
}

@media (max-width: 1024px) and (max-width: 1000px) and (max-width: 760px) {
  .strength .strength-sec {
    position: relative;
    padding-top: 60px;
  }
  .strength .strength-sec .strength__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    padding: 0;
  }
  .strength .strength-sec .strength__list li .item__img {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .strength .strength-sec .strength__list li .num {
    position: absolute;
    top: 0;
    font-family: "texta", sans-serif;
    font-weight: normal;
    font-size: 12rem;
    opacity: 0.12;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=12)";
    line-height: 0.8;
    color: #fa944e;
    letter-spacing: 0.1em;
  }
  .strength .strength-sec .strength__list li .item__ttl {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .strength .strength-sec .strength__list li .message {
    font-size: 4rem;
    font-family: "texta", sans-serif;
    font-weight: bold;
    letter-spacing: 0.18em;
    line-height: 1.3;
    text-align: center;
    margin: 0;
  }
  .strength .strength-sec .strength__list li .message span {
    color: #ed6e00;
  }
  .strength .strength-sec .strength__list li .desc {
    font-size: 1.5rem;
    width: 80%;
    margin: 0 auto;
    text-align: left;
  }
  .strength .strength-sec .strength__list li .desc br {
    display: none;
  }
  .strength .strength-sec .strength__list li:nth-of-type(4) .desc {
    width: 86%;
  }
  .strength .strength-sec .strength__list li:nth-child(5) .desc {
    width: 85%;
  }
}
