@charset "UTF-8";

/* それぞれのページ独自のCSSです。 */

/*--------------目次-------------------
0. index.html
--- 【hero】
--- 【about-us】
--- 【service】
--- 【challenge】
--- 【recruit】
--- 【news】
--- 【access】
※【contact】はcommon.cssに記述

1. about-us.html
--- 【greeting】
--- 【overview】
--- 【organization】

2. service.html

3. recruit.html
--- 【hero】
--- 【introduction】
--- 【message】
--- 【interview】
--- 【benefits】
--- 【recruit-info】

4. news.html

4-2. news/ yymmdd.html (※各ニュースのページ)

5. access.html

6. contact.html

7. privacy.html

8.recruit/message.html

9. recruit/interview.html

10. recruit/benefits.html

11. recruit/recruit-info.html

12. recruit/entry.html

13. 404.html

14. system.html、it-service.html

15. system/システム名.html (※各システムの詳細ページ)

15. product/product.html 

--------------目次終わり-------------*/


/* --------------------------------
* 0. index.html --- 【hero】
* -------------------------------- */
.hero {
  width: 100%;
  height: 100vh;
  background: url(../img/kv_2023.jpg) center;
  background-size: cover;
  position: relative;

}

.hero::before {
  display: block;
  height: 200px;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, .3), transparent);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, .3), transparent);
  background: linear-gradient(to bottom, rgba(0, 0, 0, .3), transparent);
}

/* キャッチコピー */
.hero__title {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  letter-spacing: 0.3rem;
  font-size: 10rem;
  font-weight: bold;
  line-height: 1.2;
  text-shadow:1px 1px 10px rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
	.hero{
		 background: url("../img/kv_sp.jpg") center;
		background-repeat: no-repeat;
		
		
	}
  .hero__title {
    font-size: 18vw;
  }
}





/* スクロールマーク */
.scroll-mark {
  position: absolute;
  right: 40px;
  bottom: 24px;
  height: 180px;
}

.scroll-mark__text {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 2.4px;
  text-shadow:1px 1px 5px #333;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
}

.scroll-mark__text::after {
  content: "";
  display:inline-block;
  margin-top: 8px;
  width: 1.5px;
  height: 90px;
  background-color: #F36B30;
}


/* --------------------------------
* 0. index.html --- 【about-us】
* -------------------------------- */
.about-us__item {
  margin-top: 16px;
}

.about-us__item:nth-child(2) {
  margin-top: 64px;
}

.about-us__item:nth-child(3) {
  margin-top: 64px;
}

.about-us__item-inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  margin-right: -30px;
}

.about-us__item__img {
  /* overflow: hidden; */
  width: 500px;
  height: 380px;
  object-fit: cover;
  display: inline-block;
  box-shadow: 5px 5px 10px rgba(145, 125, 107, .2);
}

.about-us__item:nth-child(2) .about-us__item__img {
  position: relative;
  top: 30px;
  left: -30px;
}

.about-us__item__title {
  color: #F36B30;
  font-size: 2.4rem;
}

.about-us__item__text.card{
  position: relative;
  padding: 40px 50px;
  top: 30px;
  left: -30px;
  min-height: 380px;
}

.about-us__item:nth-child(even) .about-us__item__text.card{
  top: 0;
  left: 0;
}

.about-us__item__text__desc {
  margin-top: 16px;
  margin-bottom: 40px;
  overflow: hidden;
}

.about-us__item .read-more-btn {
  position: absolute;
  right: 64px;
}

@media (max-width: 768px) {
  .about-us__item:nth-child(even) {
    margin-top: 64px;
  }

  .about-us__item__img {
    height: 240px;
    width: 360px;
  }

  .about-us__item:nth-child(even) .about-us__item__img {
    position: relative;
    top: 30px;
    left: -30px;
  }

  .about-us__item:nth-child(even) .about-us-card__item__text {
    z-index: 1;
  }

  .about-us__item__text.card{
    position: relative;
    padding: 40px;
    top: 30px;
    left: -30px;
    min-height: 240px;
  }

  .about-us__item__text__desc {
    margin-bottom: 16px;
  }

  .about-us__item .read-more-btn {
    right: 40px;
  }
}

@media (max-width: 414px){
  .about-us__item-inner {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
  }

  .about-us__item:nth-child(even) {
    margin-top: 0;
  }

  .about-us__item__img {
    width: 100%;
  }

  .about-us__item:nth-child(even) .about-us__item__img{
    order:1;
    position: static;
  }

  .about-us__item:nth-child(even) .about-us__item__text{
    order: 2;
  }

  .about-us__item__text.card,
  .about-us__item:nth-child(even) .about-us__item__text.card{
    top: -30px;
    left: 0;
    width: 90%;
    padding: 24px;
    min-height: 230px;
  }

  .about-us__item .read-more-btn {
    right: 24px;
  }
}


/* --------------------------------
* 0. index.html --- 【service】
* -------------------------------- */
.service__item {
  margin-top: 16px;
}

.service__item:nth-child(2) {
  margin-top: 64px;
}


.service__item-inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  margin-right: -30px;
}

.service__item__img {
  /* overflow: hidden; */
  width: 500px;
  height: 380px;
  object-fit: cover;
  display: inline-block;
  box-shadow: 5px 5px 10px rgba(145, 125, 107, .2);
  position: relative;
  top: 30px;
  left: -30px;
}

.service__item__title {
  color: #F36B30;
  font-size: 2.4rem;
}

.service__item__text.card{
  position: relative;
  padding: 40px 50px;
  top: 30px;
  left: -30px;
  min-height: 380px;
}

.service__item:nth-child(even) .service__item__text.card{
  top: 0;
  left: 0;
}

.service__item__text__desc {
  margin-top: 16px;
  margin-bottom: 40px;
  overflow: hidden;
}

.service__item .read-more-btn {
  position: absolute;
  right: 64px;
}

.service__item .read-more-btn2 {
  position: absolute;
  right: 248px;
}

@media (max-width: 768px) {
  .service__item:nth-child(even) {
    margin-top: 64px;
  }

  .service__item__img {
    height: 240px;
    width: 360px;
    position: relative;
    top: 0px;
    left: 0px;
  }

  .service__item:nth-child(even) .service__item__img {
    position: relative;
    top: 30px;
    left: -30px;
  }

  .service__item:nth-child(even) .service-card__item__text {
    z-index: 1;
  }

  .service__item__text.card{
    position: relative;
    padding: 40px;
    top: 30px;
    left: -30px;
    min-height: 240px;
  }

  .service__item__text__desc {
    margin-bottom: 16px;
  }

  .service__item .read-more-btn {
    right: 40px;
  }
}

@media (max-width: 414px){
  .service__item-inner {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
  }

  .service__item:nth-child(even) {
    margin-top: 0;
  }

  .service__item__img {
    width: 100%;
  }

  .service__item:nth-child(even) .service__item__img{
    order:1;
    position: static;
  }

  .service__item:nth-child(even) .service__item__text{
    order: 2;
  }

  .service__item__text.card,
  .service__item:nth-child(even) .service__item__text.card{
    top: -30px;
    left: 0;
    width: 90%;
    padding: 24px;
    min-height: 230px;
  }

  .service__item .read-more-btn {
    right: 24px;
  }
}

/* --------------------------------
* 0. index.html --- 【product】
* -------------------------------- */
.product__item {
  margin-top: 16px;
}

.product__item:nth-child(2) {
  margin-top: 64px;
}

.product__item:nth-child(3) {
  margin-top: 64px;
}

.product__item-inner {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  margin-right: -30px;
}

.product__item__img {
  /* overflow: hidden; */
  width: 500px;
  height: 380px;
  object-fit: cover;
  display: inline-block;
  box-shadow: 5px 5px 10px rgba(145, 125, 107, .2);
}

.product__item:nth-child(2) .product__item__img {
  position: relative;
  top: 30px;
  left: -30px;
}

.product__item__title {
  color: #F36B30;
  font-size: 2.4rem;
}

.product__item__text.card{
  position: relative;
  padding: 40px 50px;
  top: 30px;
  left: -30px;
  min-height: 380px;
}

.product__item:nth-child(even) .product__item__text.card{
  top: 0;
  left: 0;
}

.product__item__text__desc {
  margin-top: 16px;
  margin-bottom: 40px;
  overflow: hidden;
}

.product__item .read-more-btn {
  position: absolute;
  right: 64px;
}

@media (max-width: 768px) {
  .product__item:nth-child(even) {
    margin-top: 64px;
  }

  .product__item__img {
    height: 240px;
    width: 360px;
  }

  .product__item:nth-child(even) .product__item__img {
    position: relative;
    top: 30px;
    left: -30px;
  }

  .product__item:nth-child(even) .product-card__item__text {
    z-index: 1;
  }

  .product__item__text.card{
    position: relative;
    padding: 40px;
    top: 30px;
    left: -30px;
    min-height: 240px;
  }

  .product__item__text__desc {
    margin-bottom: 16px;
  }

  .product__item .read-more-btn {
    right: 40px;
  }
}

@media (max-width: 414px){
  .product__item-inner {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
  }

  .product__item:nth-child(even) {
    margin-top: 0;
  }

  .product__item__img {
    width: 100%;
  }

  .product__item:nth-child(even) .product__item__img{
    order:1;
    position: static;
  }

  .product__item:nth-child(even) .product__item__text{
    order: 2;
  }

  .product__item__text.card,
  .product__item:nth-child(even) .product__item__text.card{
    top: -30px;
    left: 0;
    width: 90%;
    padding: 24px;
    min-height: 230px;
  }

  .product__item .read-more-btn {
    right: 24px;
  }
}

.product__item-wrapper .orange-box-title--large {
  margin-top: 40px;
}

/* --------------------------------
* 0. index.html --- 【challenge】
* -------------------------------- */
.motto {
  margin-top: 60px;
}

.challenge__wrapper {
  position: relative;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
}

.challenge__img {
  width: 500px;
  height: 380px;
  object-fit: cover;
  box-shadow: 8px 8px 15px rgba(145, 125, 107, .2);
}

.challenge .card {
  position: relative;
  top: 30px;
  left: -30px;
  width: 100%;
  padding: 40px;
  margin-right: -30px;
}

.challenge .read-more-btn {
  position: absolute;
  margin-top: 8px;
  right: 48px;
}

@media (max-width: 768px){
  .challenge__img {
    width: 360px;
    height: 240px;
  }
}

@media (max-width: 414px){
  .challenge__wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .challenge__img {
    width: 100%;
  }

  .challenge .card {
    top: -30px;
    left: 0;
    margin-right: 0;
    padding: 24px;
    width: 90%;
  }
}

/* --------------------------------
* 0. index.html --- 【recruit】
* -------------------------------- */
.recruit__wrapper {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  margin-right: -30px;
}

.recruit .card {
  padding: 50px 40px 40px;
}

.recruit__img {
  position: relative;
  top: 30px;
  left: -30px;
  width: 500px;
  height: 380px;
  object-fit: cover;
  box-shadow: 5px 5px 10px rgba(145, 125, 107, .2);
}

.recruit .join-us-btn {
  display: block;
  width: 180px;
  margin: 40px auto 0;
}

@media (max-width: 768px){
  .recruit .card {
    padding: 32px 40px;
  }

  .recruit .join-us-btn {
    margin-top: 16px;
  }

  .recruit__img {
    width: 360px;
    height: 330px;
  }
}

@media (max-width: 414px){
  .recruit__wrapper {
    align-items: center;
    flex-direction: column;
    margin-right: 0;
  }

  .recruit .card {
    width: 90%;
    padding: 24px;
    z-index: 1;
  }

  .recruit__img {
    top: -30px;
    left: 0;
    width: 100%;
    height: 240px;
  }
}


/* --------------------------------
* 0. index.html --- 【news】
* -------------------------------- */
.news .section-title {
  position: relative;
}

.news__wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding: 64px 100px;
  background-color: #fff;
  box-shadow: 8px 8px 15px rgba(145, 125, 107, .2);
}

.news-list {
  margin-bottom: 24px;
}

.news-list__item {
  padding: 24px;
  border-top: solid 1px #c4c4c4;
}

.news-list__item:last-child {
  border-bottom: solid 1px #c4c4c4;
}

.news-list__item a {
  color: #253C4D;
}

.news-list__item time {
  display: inline-block;
  width:80px;
  margin-right: 30px;
  font-weight: bold;
  vertical-align: top;
}

.news-list__item bnr {
  display: inline-block;
margin-top: 5px;
  margin-right: 40px;
  font-weight: bold;
  vertical-align: top;
}

.news-list__item__desc {
  display: inline-block;
  width: 60%;
}

.news-list__item__desc p {
  display: inline;
  border-bottom: solid 1px;
  margin-bottom: -1px;
}

.news-list__item p:hover {
  color: #F36B30;
  border-bottom: none;
}

.news-list__item .no-link p {
  border-bottom: none;
}

.news-list__item .no-link  p:hover{
  color: inherit;
}

.news__wrapper .read-more-btn {
  float: right;
}

@media (max-width: 768px){
  .news__wrapper{
    padding: 40px 40px 48px;
  }

  .news-list__item {
    padding: 16px;
  }

  .news-list__item__desc {
    width: 100%;
  }
}

@media (max-width: 414px){
  .news__wrapper{
    padding: 40px 24px 48px;
    width: 100%;
  }

  .news-list {
    margin-bottom: 16px;
  }
}

/* --------------------------------
* 0. index.html --- 【access】
* -------------------------------- */
/* ※GoogleMapのスタイルはcommon.cssに記述 */
.access__wrapper {
  margin: 24px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.access__text__wrapper{
  margin-left: 30px;
}

.abss-logo {
  width: 150px;
  height: auto;
}

@media (max-width: 950px){
  .access__wrapper{
    margin: 16px auto 0;
    flex-direction: column;
    width: 60%;
  }

  .access__text__wrapper{
    margin-top: 24px;
    margin-left: 0; /* 横並びの時の左の余白を消す */
  }
}

@media (max-width: 700px){
  .access__wrapper{
    width: 90%;
  }
}

/* --------------------------------
* 1. about-us.html --- 【history】
* -------------------------------- */
.about-us-detail .firstview {
  min-height: 300px;
}

.about-us-detail .container:first-child {
  margin-top: 24px;
}

.about-us__history__wrapper {
  padding: 40px;
  margin-top: 16px;
  background-color: #fff;
}

.about-us__history__img--pc {
  display: block;
  margin: 24px 0;
  width: 100%;
}

.about-us__history__img--sp {
  display: none;
}


@media (max-width: 768px){
  .about-us__history__wrapper {
    padding: 12px;
	}
}

@media (max-width: 414px){
  .about-us-detail .firstview {
    min-height: 400px;
  }

   .about-us__history__img--pc {
    display: none;
  }

.about-us__history__img--sp {
  display: block;
  width: 100%;
}

}

/* --------------------------------
* 1. about-us.html --- 【overview】
* -------------------------------- */
.about-us__overview .table {
  width: 80%;
}

.about-us__overview .orange-box-title {
  font-size: 1.8rem;
}

.about-us__overview iframe {
  display: block;
  margin:40px auto 0;
}

@media (max-width: 414px){
.about-us__overview .table {
  width: 100%;
}

}

/* --------------------------------
* 1. about-us.html --- 【organization】
* -------------------------------- */
.about-us__organization__img {
  width: 80%;
  display: block;
  margin: 40px auto 0;
}

.about-us__organization__desc {
  margin-top: 32px;
  display: block;
  text-align: right;
}

@media (max-width: 768px){
  .about-us__organization__wrapper {
    max-width: 100%;
  }

  .about-us__organization__img{
    width: 100%;
  }
}

/* --------------------------------
* 2. service.html
* -------------------------------- */

/* --------------------------------
* 3. recruit.html --- 【hero】
* -------------------------------- */
.hero--recruit {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  background: url(../img/kv_recruit.jpg) center;
  background-size: cover;
  position: relative;
}

.hero--recruit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../img/kv_recruit_line.png);
  background-size: 8px 3px;
}

.js_isEdge .hero--recruit::before,
.js_isIe .hero--recruit::before,
.js_isMobile .hero--recruit::before,
.js_isTablet .hero--recruit::before,
.iPhone .hero--recruit::before { /* 色が濃くなる対策 */
  opacity: .3;
}

.hero--recruit__title__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  text-align: center;
}

.hero--recruit__title {
  color: #fff;
  font-size: 7.0rem;
  font-style: oblique;
  font-weight: 600;
  letter-spacing: 2px;
}

.hero--recruit__subtitle {
  position: relative;
  color: #F36B30;
  font-size: 2.4rem;
  font-style: oblique;
  font-weight: bold;
}

.hero--recruit__subtitle:before,
.hero--recruit__subtitle:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 32%;
  height: 2px;
  background-color: #F36B30;
}

.hero--recruit__subtitle:before {
  left:0;
  margin-right: 10px;
}

.hero--recruit__subtitle:after {
  right: 0;
  margin-left: 10px;
}

@media (max-width: 768px){
  .hero--recruit__subtitle:before,
  .hero--recruit__subtitle:after {
    width: 24%;
  }

  .hero--recruit {
    width: 100%;
    height: 100vh;
  }
}

@media (max-width: 414px){
  .hero--recruit__title {
    font-size: 5.5rem;
    line-height: 1.2;
    text-align: left;
  }

  .hero--recruit__subtitle:before,
  .hero--recruit__subtitle:after {
    width: 20%;
  }

  .hero--recruit__subtitle {
    font-size: 2.0rem;
  }
}

/* --------------------------------
* 3. recruit.html --- 【introduction】
* -------------------------------- */
.introduction {
  padding: 80px 0 40px;
}

.introduction__wrapper {
  position: relative;
  display:-webkit-box;
	display:-ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  max-width: 70%;
  margin: 0 auto;
}

.introduction__text__title {
  font-weight: bold;
  font-size: 18px;
  color: #F36B30;
}

.introduction__text__desc {
  margin-top: 18px;
}

.introduction__img.object-fit-images {
  position: relative;
  margin-left: 40px;
  width: 60%;
  height: 280px;
  min-width: 400px;
  box-shadow: 8px 8px 15px rgba(145, 125, 107, .2);
  object-fit: cover;
  object-position: right;
  font-family: 'object-fit: cover; object-position: right;' /* IE対策 */
}

@media (max-width: 960px){
  .introduction {
    padding: 80px 0 0;
  }

  .introduction {
    padding: 40px 0 40px;
  }

  .introduction__wrapper {
    max-width: 80%;
    flex-direction: column;
    margin: 0 auto;
  }

  .introduction__img.object-fit-images {
    margin: 24px auto 0;
    height: 280px;
    width: 80%;
  }

  .introduction__text__desc {
    min-width: 0;
  }
}

@media (max-width: 414px){
  .introduction__img.object-fit-images {
    min-width: 0;
    width: 100%;
    height: 200px;
  }
}

/* --------------------------------
* 3. recruit.html --- 【message】
* -------------------------------- */
.message .bg-oblique {
  border-color: #FAF7F3 #fff transparent transparent;
}

.message {
  background-color: #fff;
  padding-bottom: 24px;
}

.message__wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 32px 0 0;
  position: relative; /* 「続きを読むボタン」用 */
}

.message__img {
  position: relative;
  width: 200px;
  height: 300px;
  object-fit: cover;
  background: no-repeat center /cover url(../img/message.jpg) ;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, .1);
}

.message__img::before {
  display: block;
  content: '';
  height: 100px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, .5), transparent);
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), transparent);
  background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
}

.message__img__text {
  position: absolute;
  bottom: 16px;
  right: 16px;
  text-align: right;
  color: #fff;
}

.message__text {
  width: 40%;
  margin-left: 40px;
}

.message__text__title {
  font-size: 1.8rem;
}

.message__text__desc {
  margin: 18px 0 40px;
}

.message .read-more-btn__recruit {
  position: absolute;
  right: 0;
}

@media (max-width: 1100px){
  .message__text__desc {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    overflow: hidden;
  }
}

@media (max-width: 768px){
  .message__img {
    position: relative;
    width: 24%;
    height: 220px;
  }

  .message__img::before {
    height: 60px;
  }

  .message__img__text {
    font-size: 1.2rem;
  }

  .message__text {
    margin: 16px 0 0 24px;
    width: 60%;
  }

  .message__text__desc {
    margin: 18px 0px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }

  .message .read-more-btn__recruit {
    margin-top: 8px;
  }
}

@media (max-width: 414px){
  .message__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .message__img {
    width: 50%;
  }

  .message__text {
    width: 80%;
    margin: 16px 0 0;
  }

  .message__text {
    width: 100%;
  }
}

@media (max-width: 320px){
  .message__img {
    width: 60%;
  }

  .message__text {
    width: 100%;
  }
}

/* --------------------------------
* 3. recruit.html --- 【interview】
* -------------------------------- */
.interview .bg-oblique {
  border-color: #fff #FFA882 transparent transparent;
}

.interview {
  background-color: #FFA882;
}

.interview__wrapper {
  position: relative; /* 「全てのインタビューを見る」用 */
}

.interview .read-more-btn__recruit {
  color: #fff;
  position: absolute;
  display: block;
  right: 0;
}

.interview .read-more-btn__recruit::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}




/* --------------------------------
* 3. recruit.html --- 【benefits】
* -------------------------------- */
.benefits .bg-oblique {
  border-color: #FFA882 #FAF7F3 transparent transparent;
}

.benefits__wrapper {
  position: relative;
}

.benefits .read-more-btn__recruit {
  position: absolute;
  display: block;
  right: 0;
}

.benefits__card {
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  width: 90%;
}

.benefits__card__item {
  position: relative; /* 白背景のテキスト部分用 */
  margin-top: 40px;
  width: 30%;
  height: 400px;
  transition: .3s;
}

.benefits__card__item:hover {
  box-shadow: 8px 8px 15px rgba(145, 125, 107, .2);
}

.benefits__card__item__img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
  font-family: 'object-fit: cover;' /* IE対策 */
}

.benefits__card__item__text {
  position: absolute;
  bottom: 0;
  color: #333;
  width: 100%;
  background-color: #fff;
  padding: 4px 20px 20px 20px;
  text-align: center;
  min-height: 150px;
}

@media (max-width: 960px){
  .benefits .font-orange {
    font-size: 2.6rem;
  }

  .benefits .section-subtitle--recruit {
    font-size: 1.4rem;
  }

  .benefits__card__item__text {
    padding: 4px 12px 12px 12px;
  }
}

@media (max-width: 768px){
  .benefits__card__item {
    margin-top: 24px;
    width: 32%;
    height: 300px;
  }

  .benefits__card__item__img {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 414px){
  .benefits__card {
    padding-top: 8px;
    margin: 16px auto 0;
    flex-direction: column;
    width: 100%;
  }

  .benefits__card__item {
    position: relative; /* 白背景のテキスト部分用 */
    margin-top: 24px;
    width: 100%;
    height: 240px;
  	transition: .3s;
  }


  .benefits__card__item__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
  }

  .benefits__card__item__img {
    width: 100%;
    height: 240px;
  }

  .benefits__card__item__text {
    min-height: 0;
    padding: 0px 8px 8px 8px;
  }
}


/* --------------------------------
* 3. recruit.html --- 【recruit-info】
* -------------------------------- */
.recruit-info .bg-oblique {
  border-color: #FAF7F3 #fff transparent transparent;
}

.recruit-info {
  background-color: #fff;
}

.recruit-info__title {
  margin-top: 60px;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.recruit-info__title:before,
.recruit-info__title:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 35%;
  height: 1.5px;
  background-color: #C4C4C4;
}

.recruit-info__title:before {
  left:8%;
}

.recruit-info__title:after {
  right: 8%;
}

.recruit-info__content {
  display: flex;
  position: relative;
  justify-content: center;
  width: 80%;
  margin: 16px auto 64px;
  padding-bottom: 16px; /* 「募集要項を見る」ボタンのスペース用 */
}

.recruit-info__content.mid-career {
  margin-bottom: 0;
}

.recruit-info__content__job {
  width: 140px;
  height: 140px;
  border: 1px solid #F36B30;
  color: #F36B30;
  text-align: center;
  line-height: 140px;
  margin-right: 24px;
}

.recruit-info__content__desc {
  margin-bottom: 24px;
  width: 70%;
}

.recruit-info .read-more-btn__recruit {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 768px){
  .recruit-info__content__job {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin-right: 16px;
  }

  .recruit-info__title {
    margin-top: 24px;
    position: relative;
    font-size: 1.6rem;
  }

  .recruit-info__title:before,
  .recruit-info__title:after {
    width: 24%;
  }
}

@media (max-width: 414px){
  .new-graduate {
    width: 100%;
  }

  .recruit-info__content__desc {
    width: 70%;
  }
}

@media (max-width: 320px){
  .new-graduate {
    flex-direction: column;
    align-items: center;
  }

  .recruit-info__job {
    margin: 0;
  }

  .recruit-info__content__desc {
    width: 100%;
    margin-top: 16px;
  }
}

/* --------------------------------
* 3. recruit.html --- 【entry】

* -------------------------------- */
.entry {
  background-color: #FAF7F3;
}

.entry .bg-oblique {
  border-color: #fff #FAF7F3 transparent transparent;
}


.entry .entry-btn {
  z-index: 1;
  position: static;
  margin: 0 auto 40px;
}

.entry__desc {
  margin: 40px 0 24px;
  text-align: center;
  font-weight: bold;
}

/* --------------------------------
* 4. news.html
* -------------------------------- */
.news__archive__wrapper {
  width: 80%;
  max-width: 1080px;
  padding: 64px;
  margin: 0 auto 60px;
  background-color: #fff;
}

@media (max-width: 414px){
  .news__archive__wrapper {
    width: 90%;
    padding: 32px;
    margin: 0 auto 60px;
  }

}

/* --------------------------------
* 4-2. news/ yymmdd.html （※各ニュースのページ）
* -------------------------------- */
.news__detail {
  width: 90%;
  max-width: 1000px;
  padding: 40px;
  margin: 40px auto 80px;
  background-color: #fff;
}

.news__title {
  font-size: 1.8rem;
}

.news__detail time {
  display: flex;
  justify-content: flex-end;
}

.news__detail__content {
  margin-top: 24px;
}

.news__detail__content img {
  display: block;
  object-fit: cover;
  width: 100%;
  max-height: 350px;
}

.news__detail .table {
  width: 90%;
}

@media (max-width: 768px) {
  .news__detail {
    width: 80%;
    padding: 40px 40px;
  }

  .news__detail .table th {
    width: 40%;
  }
}

@media (max-width: 414px) {
  .news__detail {
    margin: 24px auto 40px;
    width: 90%;
    padding: 24px 40px;
  }

  .news__detail .table {
    width: 100%;
  }

  .news__detail .table th {
    width: 50%;
  }
}



/* --------------------------------
* 5. access.html --- 【???】
* -------------------------------- */
/* --------------------------------
* 6. contact.html --- 【???】
* -------------------------------- */

.contact__phone-number {
  text-align: center;
  font-weight: bold;
  font-size: 1.65rem;
  margin: 40px auto 20px;
  width: 80%;
}



/* --------------------------------
* 7. privacy.html
* -------------------------------- */
.privacy .orange-box-title:not(:first-child) {
  margin-top: 40px;
}

.privacy table {
  background-color: #fff;
}

.privacy th {
  background-color: #E6E6E6;
  padding: 10px;
  vertical-align: middle;
}

.privacy td {
  padding: 10px;
}

.privacy th:not(:last-of-type){
  width: 20%
}

.privacy th,
.privacy td {
  border: solid 1px #253C4D;
}

.privacy table {
    border-collapse:  collapse; /* セルの線を重ねる */
}

.privacy-mark {
  margin-left: 10px;
}

@media (max-width: 1100px) {
  .privacy .firstview {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .privacy-mark {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* --------------------------------
* 8.recruit/message.html
* -------------------------------- */
.message-detail .firstview--recruit {
  background: url("../img/firstview_recruit_message.jpg") no-repeat center / cover;
}

.message__introtuction {
  position: relative;
  margin: 60px auto 0;
  max-width: 80%;
  display:-webkit-box;
	display:-ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
  justify-content: center;
}

.message__introtuction__img {
  position: relative;
  display: block;
  width: 180px;
  height: auto;
  background: no-repeat center /cover;
  object-fit: cover;
}

.message__introtuction__text {
  position: relative;
  margin-left: 40px;
}

.message__introtuction__text__title {
  color: #F36B30;
  font-size: 1.8rem;
}

.message__introtuction__text__name {
  margin-top: 40px;
}

.message__introtuction__text__name span { /* 漢字名前 */
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 10px;
}

.message__text--all {
  margin: 40px auto;
  width: 60%;
}

.signiture {
	margin-top: 40px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.signiture__img {
	display: block;
	width: 180px;
	margin-left: 20px;
}

.message__entry .bg-oblique {
   border-color: #FAF7F3 #fff transparent transparent;
 }

.entry.message__entry {
  background-color: #fff;
}

@media (max-width: 768px) {
  .message__text--all {
    width:80%;
  }

  .message__introtuction__text {
    margin-left: 24px;
  }

  .message__introtuction__text__title {
    color: #F36B30;
    font-size: 1.6rem;
  }

  .message__introtuction__text__name {
    margin-top: 24px;
  }

  .message__introtuction__text__name span { /* 漢字名前 */
    font-size: 1.6rem;
    margin-right: 10px;
  }
}

@media (max-width: 600px) {
  .message__introtuction {
    flex-direction: column;
    justify-content: center;
  }

  .message__introtuction__text {
    margin: 24px 0 0;
  }

  .message__introtuction__img {
    margin: 0 auto;
  }

  .message__text--all {
    margin: 40px auto;
  }
}

@media (max-width: 320px) {
  .message__introtuction__text {
    width: 100%;
  }
}

/* --------------------------------
* 9. recruit/interview.html
* -------------------------------- */
.interview-all .firstview--recruit {
  background: url("../img/firstview-recruit-interview.jpg") no-repeat center / cover;
}

.interview-all .container--recruit {
  padding: 0 24px 40px;
}

.interview-all .interview-card__item {
  width: 240px;
  height: 360px;
}

.interview-all .interview-card__item__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.interview-all .interview-card {
  max-width: 1000px;
}

/* 最後の行を左寄せにするための指定 */
.interview-all .interview-card::before {
  content: '';
  display: block;
  margin: 60px 4px 0;
  width: 240px;
  order: 1;
}

.interview-all .interview-card::after {
  content: '';
  display: block;
  margin: 60px 4px 0;
  width: 240px;
}

@media (max-width: 1150px){
  .interview-all .interview-card {
    max-width: 800px;
  }
}

@media (max-width: 900px){
  .interview-all .interview-card {
    width: 85%;
  }

  .interview-all .interview-card__item {
    width: 160px;
    height: 240px;
    margin: 40px 4px 0;
  }

  /* 最後の行を左寄せにするための指定 */
  .interview-all .interview-card::before {
    content: '';
    display: block;
    width: 160px;
    order: 1;
  }

  .interview-all .interview-card::after {
    content: '';
    display: block;
    width: 160px;
  }

  .interview-all .interview-card__item__caption {
    top: 115px;
    right: 8px;
    font-size: 1.1rem;
  }

  .interview-all .interview-card__item__desc {
    padding: 8px;
    font-size: 1.2rem;
    min-height: 100px;
  }
}


@media (max-width: 700px){
  .interview-all .interview-card {
    width: 100%;
  }
}

@media (max-width: 600px){
  .interview-all .interview-card {
    width: 80%;
  }

  .interview-all .interview-card__item {
    width: 140px;
    height: 210px;
    margin: 24px 4px 0;
  }

  /* 最後の行を左寄せにするための指定 */
  .interview-all .interview-card::before {
    content: '';
    display: block;
    width: 140px;
    order: 1;
  }

  .interview-all .interview-card::after {
    content: '';
    display: block;
    width: 140px;
  }

  .interview-all .interview-card__item__caption {
    display: none;
  }

  .interview-all .interview-card__item__desc {
    padding: 8px;
    font-size: 1.1rem;
    min-height: 90px;
  }

   .interview-all .interview-card__item__desc::before {
    display: none;
   }
}

@media (max-width: 414px){
  .interview-all .container--recruit {
    padding: 0 8px 40px;
  }

  .interview-all .interview-card {
    width: 80%;
  }
}

@media (max-width: 375px){
  .interview-all .interview-card {
    width: 90%;
  }
}

@media (max-width: 320px){
  .interview-all .interview-card {
    width: 100%;
  }
}



/* --------------------------------
* 10. recruit/benefits.html
* -------------------------------- */
.firstview--recruit.benefits-detail {
  background: url("../img/firstview-recruit-benefits.jpg") no-repeat center / cover;
}

.benefits-detail .section-subtitle--recruit,
.benefits-detail .section-desc--recruit-otherpages {
  text-align: center;
  padding: 0;
}

.benefits-detail .benefits__subtitle {
  color: #F36B30;
  text-align: center;
  margin-bottom: 16px;
}

.benefits-01,
.benefits-02,
.benefits-03 {
  padding-bottom: 40px;
}

/* 01福利厚生 */

.benefits-white-bg {
  width: 80%;
  margin: 16px auto;
  max-width: 900px;
  padding: 24px 40px;
  text-align: left;
  background-color: #fff;
  box-shadow: 5px 5px 10px rgba(145, 125, 107, .2);
}

.benefits-01__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.list-style-dot {
  font-weight: bold;
  margin-top: 10px;
}

.list-style-dot::before {
  content:  "";
  width:  4px;
  height:  4px;
  display:  inline-block;
  background-color: #F36B30;
  border-radius:  50%;
  position: relative;
  bottom: 0.4rem;
  margin-right: 4px;
}

.benefits-01--holiday .list-style-dot {
  width: 18%;
}

.benefits-01--holiday .list-style-dot:last-child {
  flex-grow: 2; /* 「アニバーサリー休暇」の分量が長いので調整 */
}

.benefits-01--others .list-style-dot {
  width: 25%;
}

.benefits-01--others .list-style-dot:nth-child(5),
.benefits-01--others .list-style-dot:nth-child(6) {
  flex-grow: 2; /* こちらも同様の調整 */
}

@media (max-width: 414px){
  .benefits-01--holiday .list-style-dot,
  .benefits-01--others .list-style-dot {
    width: 100%;
  }
}
.benefits_detail_text{
	font-size: 13px;
}


/* 02研修制度 */
.benefits-02 .bg-oblique {
  border-color: #FAF7F3 #fff transparent transparent;
}

.benefits-02 {
  background-color: #fff;
}

.benefits-02 .benefits__subtitle {
  margin: 8px 0;
}

.benefits-02__wrapper {
  width: 70%;
  margin: 0 auto;
}

.benefits-02__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 40px auto 0;
}

.benefits-02__item {
  width: 30%;
}

.benefits-02__item__img.object-fit-images {
  display: block;
  width: 100%;
  height: 205px;
  object-fit:cover;
  font-family: 'object-fit: cover;' /* IE対策 */
}

.benefits-02__item__desc {
  width: 100%;
  text-align: left;
}

.triangle-arrow {
  position: relative;
  top: 80px;
  width: 0;
  height: 0;
  margin: 0 16px;
  border-style: solid;
  border-width: 20px 0 20px 25px;
  border-color: transparent transparent transparent #FFA882;
}

@media (max-width: 768px){
  .benefits-02__wrapper {
    width: 80%;
  }

  .benefits-02__item__img.object-fit-images {
    height: 160px;
  }

  .triangle-arrow {
    top: 60px;
  }
}

@media (max-width: 414px){
  .benefits-02__wrapper {
    width: 70%;
    margin: 0 auto;
  }
  .benefits-02__inner {
    flex-direction: column;
    margin: 24px auto 0;
  }

  .benefits-02__item {
    width: 100%;
  }

  .triangle-arrow {
    position: static;
    margin: 8px auto;
    transform: rotate(90deg);
  }
}

/* 03資格取得補助 */
.benefits-03 .bg-oblique {
  border-color: #fff #FAF7F3 transparent transparent;
}

.benefits-03 .benefits__subtitle {
  text-align: left;
}

.benefits-03__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}

.benefits-03__item {
  width: 48%;
}

.benefits-03 .benefits__subtitle:not(:first-child) {
  margin-top: 24px;
}

@media (max-width: 767px){
  .benefits-03__item {
    width: 100%;
  }
}

/* --------------------------------
* 11. recruit/recruit-info.html
* -------------------------------- */
.recruit-info-detail .firstview--recruit {
  background: url("../img/firstview-recruit-recruit-info.jpg") no-repeat center / cover;
}

.recruit-info-detail {
  background-color: #fff;
}

.recruit-info-detail .section-subtitle--recruit {
  text-align: center;
}

.recruit-info-detail .table {
  text-align: left;
  margin-top: 0;
}

.recruit-info-detail__content {
  margin-top: 24px;
}

.recruit-info-detail .mid-career {
  text-align: center;
}

.benefits--recruit-info {
  text-align: center;
  background-color: #FAF7F3;
}

.benefits--recruit-info .bg-oblique {
  border-color: #fff #FAF7F3 transparent transparent;
}

.benefits--recruit-info .benefits__card {
  margin-top: 0;
}

@media (max-width: 767px){
  .recruit-info-detail .container--recruit {
    padding: 0 24px 24px;
  }
}

/* --------------------------------
* 12. recruit/entry.html
* -------------------------------- */
.entry-detail .firstview--recruit {
  background: url("../img/firstview-recruit-entry.jpg") no-repeat center / cover;
}

.entry-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  width: 60%;
  height: 240px;

}
.entry_link{
	font-size: 16px;
	font-weight: bold;
}

.entry-detail .external-link-btn { /* 採用サイトへのリンクボタン用 */
  margin-top: 24px;
}

/* --------------------------------
* 13. recruit/interview/インタビュー個人ページ
* -------------------------------- */
.firstview--interview {
  margin-top: 100px;
  position: relative;
}

.firstview--interview__img.object-fit-images {
  width: 100%;
  object-fit: cover;
  height: 400px;
  font-family: 'object-fit: cover;' /* IE対策 */
}

.firstview--interview__card {
  z-index: 3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 120px;
  min-width: 400px;
  padding: 24px;
  background-color: #FFA882;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, .15)
}

.firstview--interview__card__name {
  display: flex;
  align-items: baseline;
  padding-bottom: 4px;
  border-bottom: 1.5px solid #F36B30;
}

.firstview--interview__card__name--ja {
  font-size: 2.4rem;
  font-weight: normal;
}

.firstview--interview__card__name--en {
  margin-left: 10px;
}

.firstview--interview__card__desc {
  margin-top: 24px;
}

.firstview--interview__card__voice {
  margin-top: 16px;
  color: #fff;
  font-size: 2.0rem;
  width: 95%;
  float: right;
}

.firstview--interview__card__voice::before {
   content: '';
   display: block;
   background-image: url(../img/quotation-mark.png);
   width: 40px;
   height: 32px;
   background-size: contain;
   margin-left: -20px;
}

.interview-content {
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  background-color: #FAF7F3;
}

.parent-interview-all .message__entry .bg-oblique {
  border-color: #FFA882 #fff transparent transparent;
}

.interview-content__wrapper {
  width: 70%;
  margin: 0 auto 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.interview-content__wrapper figure {
  width: 48%;
}

.interview-content__wrapper:nth-child(odd) figure {
  margin-right: 64px;
}

.interview-content__wrapper:nth-child(even) figure {
  margin-left: 64px;
}

.interview-content__img.object-fit-images{
  display: block;
  object-fit: cover;
  width: 100%;
  font-family: 'object-fit: cover; object-position: center;' /* IE対策 */
}

.interview-content__text {
  width: 100%;
}

.interview-content__text .font-orange {
  font-size: 1.8rem;
}

.interview-content__text__title {
  font-size: 1.8rem;
  font-weight: bold;
}

.interview-content__text__question {
  font-weight: bold;
}

.interview--otherpages .bg-oblique {
  border-color: #FAF7F3 #FFA882 transparent transparent;
}

.interview-link-title { /* slickスライダー上のテキスト */
  text-align: center;
  color: #fff;
}

 @media (max-width: 1100px) {
   .firstview--interview {
     margin-top: 80px;
   }

   .firstview--interview__card {
     right: 100px;
   }

   .interview-content__wrapper {
     width: 80%;
   }
 }

 @media (max-width: 768px) {
   .firstview--interview-img.object-fit-images {
     object-position: -120px 0;
     font-family: 'object-fit: cover; object-position: -120px 0;' /* IE対策 */
   }

   .firstview--interview__card {
     min-width: 300px;
   }

   .firstview--interview__card__name {
     flex-direction: column;
     align-items: flex-start;
  }

   .firstview--interview__card__name--ja {
     font-size: 2.0rem;
   }

   .firstview--interview__card__name--en {
     margin: 0;
   }

   .firstview--interview__card__desc {
     margin-top: 16px;
   }

   .firstview--interview__card__voice {
     font-size: 1.8rem;
   }

   .firstview--interview__card__voice::before {
      width: 32px;
      height: calc(32px * 32/40);
  	  margin-left: -16px;
   }

   .interview-content__wrapper:nth-child(odd) figure {
     margin-right: 32px;
     width: 60%;
   }

   .interview-content__wrapper:nth-child(even) figure {
     margin-left: 32px;
     width: 60%;
   }

  .interview-content__wrapper:nth-child(odd) img{
     width: 100%;
   }
 }

 @media (max-width: 414px) {
   .firstview--interview__img.object-fit-images {
     height: 300px;
     margin-bottom: 210px;
     object-position: -40px 0;
     font-family: 'object-fit: cover; object-position: -40px 0;' /* IE対策 */
   }

   .firstview--interview__card {
     right: 50%;
     transform : translateX(50%);
     top: 220px;
     width: 80%;
     margin: 0 auto;
     padding: 16px;
   }

  .firstview--interview__card__voice::before {
	  margin-left: -10px;
   }

   .firstview--interview__img::before {
     display: none;
   }

   .interview-content__wrapper {
     width: 90%;
     margin: 0 auto 40px;
     flex-direction: column;
   }

   .interview-content__wrapper:nth-child(odd) {
     flex-direction: column-reverse;
   }

   .interview-content__text__title {
     margin-top: 16px;
   }

   .interview-content__wrapper:nth-child(odd) figure,
   .interview-content__wrapper:nth-child(even) figure {
     margin: 24px 0 0;
     width: 100%;
     height: 240px;
   }

   .interview-content__wrapper:nth-child(even) img,
   .interview-content__wrapper:nth-child(odd) img {
     margin: 0 auto;
     height: 100%;
   }

   .interview-content__img.object-fit-images{
     object-position: 0 -80px;
     font-family: 'object-fit: cover; object-position: 0 -80px;'
    }
   }

   .interview-content__text {
     width: 100%;
   }
 }

@media (max-width: 320px) {
   .firstview--interview__img {
	 margin-bottom: 160px;
	}

   .firstview--interview__card {
     padding: 12px;
	}

	.firstview--interview__card__voice {
	 font-size: 1.5rem;
	}
 }

 /* --------------------------------
 *  13. 404.html
 * -------------------------------- */
.error {
  text-align: center;
  width: 50%;
  margin: 180px auto 120px;
}

.errror__title {
  font-size: 2.0rem;
  font-weight: bold;
}

.errror__desc {
  margin-top: 24px;
}

.error__btn {
  width: 50%;
  min-width: 200px;
  display: block;
  margin: 40px auto 0;
  padding: 16px 24px;
  background-color: #fff;
  border: 2px solid #F36B30;
  color: #F36B30;
  font-weight: bold;
  transition: .3s;
}

.error__btn:hover {
  box-shadow: 3px 3px 12px rgba(243, 107, 48, .3);
}

 @media (max-width: 414px) {
   .error {
     width: 70%;
   }
 }

 /* --------------------------------
 * 14.system.html、it-service.html
 * -------------------------------- */
.parent-service-all .firstview {
  background-color: inherit;
  padding-top: 0;
  padding-bottom: 16px;
  margin-top: 0;
  min-height: 160px;
}

.parent-service-all .section-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.parent-service-all .breadcrumb{
  margin-top: 140px;
}

.service-card {
 margin-top: 60px;
 width: 100%;
 display: flex;
 justify-content: space-between;
 flex-wrap: wrap;
}

.service-card__item {
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 margin-top: 40px;
 padding: 24px;
 width: 49%;
 min-height: 180px;
 background-color: #fff;
 box-shadow: 5px 5px 10px rgba(145, 125, 107, .2);
}

.service-card__item .orange-box-title {
  margin-top: 0;
}

.service-card__item__title {
 text-align: center;
 color: #F36B30;
 font-size: 1.7rem;
 margin-top: 16px;
}

.service-card__item__text__desc {
 margin-top: 16px;
 overflow: hidden;
}

 @media (max-width: 1100px) {
   .parent-service-all .firstview {
     padding-top: 0;
     margin-bottom: 0;
   }
 }

 @media (max-width: 414px) {
    .service-card__item {
      width: 100%;
      margin-top: 16px;
    }

	.parent-service-all .firstview {
	  margin-top: 24px;
	}
 }

 /* --------------------------------
 * 15.system/システム名.html (※各システムの詳細ページ)
 * -------------------------------- */
.parent-system-all .container {
  width: 70%;
  margin: 0 auto 120px;
}

.parent-system-all .breadcrumb.container {
	margin-top: 140px;
	margin-bottom: 0;
}

.system__text {
  width: 80%;
  margin: 40px auto 0;
}

.parent-system-all .section-title {
  font-size: 2.4rem;
  margin-bottom: 24px;
}

 .system__img {
   display: block;
   width:80%;
   margin: 24px auto 0;
 }

.other-system__title {
	text-align: center;
}

.other-system__link {
	display: flex;
	flex-wrap: wrap;
	margin: 8px auto 0;
	justify-content: space-between;
	width: 100%;
}

.other-system__link::before{ /* ２行目を左寄せにするため */
  content:"";
  display: block;
  margin-right: 8px;
  margin-top: 12px;
  width:23%;
  min-width: 190px;
  order:1;
}
.other-system__link::after{ /* ２行目を左寄せにするため */
  content:"";
  display: block;
  margin-right: 8px;
  margin-top: 12px;
  width:23%;
  min-width: 190px;
}

.other-system__link__item {
	position: relative;
	display: inline-block;
	width: 23%;
	min-width: 190px;
	padding: 16px 20px;
	margin-right: 8px;
    margin-top: 12px;
	text-align: center;
	background-color: #fff;
	color: #253C4D;
    box-shadow: 2px 2px 8px rgba(145, 125, 107, .2);
	transition: .3s;
}

.other-system__link__item:hover {
	color: #F36B30;
}

.other-system__link__item::before {
	content: "";
	position: absolute;
	right: 16px;
	top: 22px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #F36B30;
    border-right: 2px solid #F36B30;
    transform: rotate(45deg);
}


@media (max-width: 1100px) {
  .system-text {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
 .parent-system-all .container {
    width: 80%;
  }

  .other-system__link {
    width: 90%;
    justify-content: center;
  }

  .other-system__link__item {
    padding: 8px 10px;
 	width: 31%;
  }

  .other-system__link__item::before {
   right: 10px;
   top: 16px;
   width: 7px;
   height: 7px;
  }

  .other-system__link::before{
   width:31%;
  }

  .other-system__link::after{
   width:31%;
  }
}

@media (max-width: 414px) {
 .parent-system-all .breadcrumb.container {
   margin-top: 100px;
 }

  .parent-system-all .container {
    padding: 0;
    margin-bottom: 80px;
  }

  .system__text,
  .system__img {
    width:100%;
  }

 .other-system__link {
  flex-direction: column;
  width: 100%;
  align-items: center;
  }

  .other-system__link__item {
    padding: 12px 20px;
 	width: 70%;
	margin-right: 0;
  }

  .other-system__link__item::before {
    right: 20px;
	top: 18px;
    width: 9px;
    height: 9px;
  }
}
 /* --------------------------------
 * 16.product/product.html 
 * -------------------------------- */
.product__agency__wrapper {
  padding: 40px;
  margin-top: 16px;
  background-color: #fff;
  width: 23.5%;
}

.ceo_sign{
	font-size: 20px;
}