@charset "UTF-8";
/* 共通---------------*/
#page-name {
  width: 100%;
  height: 64vh;
  padding-left: 10%;
  display: flex;
  align-items: center;
  position: relative;
}
#page-name .page-name {
  color: #fff;
  font-size: 4.8rem;
  font-weight: 500;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
#page-name .page-name span {
  display: block;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
}
#page-name .cat-pagename {
  position: relative;
  display: inline-block;
  width: 30%;
  padding: 25px 10px;
  background-color: #103B7C;
  color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  font-size: 3.6rem;
  text-align: center;
  position: absolute;
  bottom: -46px;
  right: 0;
}

#contents {
  background-color: #F5F5F5;
}

.page #contents {
  background-color: #fff;
}

/* タブ　*/
.tab {
  display: flex;
}

.tab li {
  width: calc(100% / 3);
}

.tab li a {
  display: block;
  position: relative;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  color: #103B7C;
  border: solid 1px #103B7C;
  transition: .4s;
}
.tab li a:hover {
  background-color: #4878C1;
  color: #fff;
}
.tab li:nth-of-type(2) a {
  border-right: none;
  border-left: none;
}
.tab li.active a {
  background-color: #103B7C;
  color: #fff;
}
.tab li.active a::after {
  content: "▼";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%);
  color: #103B7C;
  font-size: 2rem;
}
.category .tab li {
  width: calc(100% / 5);
}
#recommended .tab li {
  width: calc(100% / 3);
}
.item-box {
  padding: 40px;
  background-color: #fff;
  margin-top: 70px;
}

.bk-gy {
  background-color: #f5f5f5;
  padding-top: 130px;
  padding-bottom: 130px;
}

@media (max-width: 840px) {
  #page-name .page-name {
    font-size: 3.8rem;
    margin-top: 75px;
  }
  #page-name .page-name span {
    font-size: 2rem;
  }
  #page-name .cat-pagename {
    width: 40%;
    font-size: 2.6rem;
  }
}
@media (max-width: 600px) {
  #page-name .page-name {
    font-size: 2.8rem;
    margin-top: 95px;
  }
  #page-name .page-name span {
    font-size: 1.6rem;
  }
  #page-name .cat-pagename {
    width: 60%;
    padding: 20px;
    font-size: 2rem;
    bottom: -33px;
    left: 0;
    right: auto;
  }

  .tab li a {
	height:100%;
    padding: 15px 0;
    font-size: 1.4rem;
  }

  .item-box {
    padding: 25px;
    margin-top: 30px;
  }

  .bk-gy {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}
/* 新着情報---------------*/
#news #page-name {
  background: rgba(16, 59, 124, 0.8) url(../images/news.jpg) no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}
.news {
  background-color: #f5f5f5;
}
.news dt {
  margin-right: 20px;
  width: 11%;
}
.news dd {
  margin-bottom: 20px;
  width: calc( 100% - (20px + 11% ) );
}
@media(max-width: 600px) {
.wp-block-column {
 padding: 15px;
} 
}

.post-item {
  margin-top: 100px;
  padding-bottom: 8%;
  width: min(1000px,100%);
  margin-left: auto;
  margin-right: auto;
}
.post-item .post-title {
  font-size: 3rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  color: #333;
  text-align: center;
}
.post-btn a {
  display: block;
  max-width: 320px;
  width: 100%;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 17px;
  position: relative;
  transition: .3s;
  margin-left: auto;
  margin-right: auto;
}
.post-btn a::after {
  content: "〉";
  position: absolute;
  right: 30px;
  font-size: 1.4rem;
  transition: .3s;
}
.post-btn a:hover::after {
  right: 20px;
}

.item-images .main-window {
  position: relative;
  overflow: hidden;
  padding-top: 70%;
}
.item-images .main-window img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-images .thumbnail {
  display: flex;
}
.item-images .thumbnail li:not(:first-child) {
  margin-left: 7px;
}
.item-images .thumbnail li {
  width: calc( ( 100% - 49px ) / 5);
  position: relative;
  overflow: hidden;
  padding-top: 15%;
}
.item-images .thumbnail li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wp-block-heading {
	font-size:clamp(1.6rem,1.7vw,1.8rem);
	font-weight: bold;
}
.wp-block-heading::before {
	content"●";
	display:block;
	margin-right:5px;
}
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}
.wp-block-columns .wp-block-column {
  width: 49%;
}
.wp-block-columns,
.wp-block-table {
 margin-top: 30px;
 padding: 40px;
 background-color: #fff;
}
.wp-block-columns .wp-block-table {
 padding: 0;
 margin-top: 0;
}
.wp-block-table table {
  border-bottom: solid 1px #ccc;
  background-color: #fff;
}
.wp-block-table table td:first-child {
  background-color: #103B7C;
  color: #fff;
  text-align: left;
  padding: 18px;
  border-top: solid 1px #ccc;
  width: 180px;
}
.wp-block-table table td {
  text-align: left;
  padding: 18px;
  border-top: solid 1px #ccc;
}

/*おすすめ物件*/
#recommended #page-name {
  background: rgba(16, 59, 124, 0.8) url(../images/rental.jpg) no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}
#rental #page-name {
  background: rgba(16, 59, 124, 0.8) url(../images/rental.jpg) no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}
#housing-land #page-name {
  background: rgba(16, 59, 124, 0.8) url(../images/housing-land.jpg) no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
 
}
@media (max-width: 840px) {
.wp-block-columns .wp-block-column {
  width: 100%;
}
}
@media (max-width: 600px) {
 .wp-block-columns,
 .wp-block-table {
  padding: 20px;
 }
  .wp-block-table table {
    border-bottom: none;
  }
  .wp-block-table table td:first-child, .wp-block-table table td {
    border-top: none;
    width: 100%;
    display: block;
  }
}
/*事業案内───*/
.business-head {
  text-align: center;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #fff 0%, #fff 85%, #f5f5f5 85%, #f5f5f5 100%);
}
.business-head p {
  line-height: 2.5;
}

.business-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.business-item .ttl-bisuness {
  font-size: 4.2rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  color: #103B7C;
  padding-bottom: 7px;
  border-bottom: solid 1px #103B7C;
}
.business-item figure {
  width: 48%;
}
.business-item figure img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.business-item01 .summary-area,
.business-item03 .summary-area {
  width: 48%;
  padding-left: calc((100% - 1200px) / 2 );
}

.business-item02 .summary-area {
  order: 2;
  width: 48%;
  padding-right: calc((100% - 1200px) / 2 );
}
.business-item02 figure {
  order: 1;
}

/*PENSEE house*/
#pensee-house #page-name {
  background: rgba(16, 59, 124, 0.8) url("../images/pensee-house.jpg") no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}

.business-item .ttl-bisuness-pensee {
  line-height: 1.2;
  font-size: 2rem;
  font-weight: 500;
  color: #103B7C;
  padding-bottom: 20px;
  border-bottom: solid 1px #103B7C;
  margin-bottom: 60px;
}
.business-item .ttl-bisuness-pensee span {
  display: block;
  font-size: 8rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 900;
}
.business-item .item-copy {
  font-size: 3rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 1.4;
  margin-bottom: 40px;
}

/*流れ*/
.business-flow {
  background-color: #103B7C;
  padding-top: 130px;
  padding-bottom: 130px;
}
.business-flow ol {
  counter-reset: my-counter;
  padding: 0;
}
.business-flow ol li {
  list-style: none;
  position: relative;
  margin-left: 0;
  text-indent: 0;
  background-color: #fff;
  padding: 150px 15px 15px 15px;
  margin-bottom: 60px;
}
.business-flow ol li::before {
  content: "";
  counter-increment: my-counter;
  content: counter(my-counter);
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 70px;
  text-align: center;
  top: 30px;
  left: 50%;
  transform: translate(-50%);
  font-size: 4rem;
  color: #103B7C;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 700;
  border-bottom: solid 1px #103B7C;
}
.business-flow ol li .ttl-flow {
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 500;
}

.ttl-business02 {
  font-size: 5rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
.ttl-business02 span {
  font-size: 2rem;
  display: block;
}

@media (max-width: 1260px) {
  .business-item01,
  .business-item03 {
    padding-left: 30px;
  }

  .business-item02 {
    padding-right: 30px;
  }
}
@media (max-width: 980px) {
  .business-item01,
  .business-item02,
  .business-item03 {
    max-width: 1260px;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .business-item01 .summary-area, .business-item01 figure,
  .business-item02 .summary-area,
  .business-item02 figure,
  .business-item03 .summary-area,
  .business-item03 figure {
    width: 100%;
  }
  .business-item01 figure,
  .business-item02 figure,
  .business-item03 figure {
    margin-top: 40px;
  }

  .business-item02 figure {
    order: 2;
  }
  .business-item02 .summary-area {
    order: 1;
  }
}
@media (max-width: 840px) {
  .business-flow .column3 li {
    width: calc((100% - 30px) / 2);
  }
  .business-flow .column3 li::after {
    content: "";
    width: calc((100% - 30px) / 2);
    display: block;
  }
}
@media (max-width: 600px) {
  #page-pensee-house .business-head {
    padding-bottom: 0;
  }
  #page-pensee-house .business-head h4 img {
    width: 30%;
  }
  #page-pensee-house .business-head p {
    padding-left: 20px;
    padding-right: 20px;
  }
  #page-pensee-house .business-head .size20 {
    font-size: 1.6rem;
  }

  .business-item .summary-area {
    order: 2;
  }
  .business-item figure {
    order: 1;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .business-item .ttl-bisuness {
    font-size: 2rem;
  }
  .business-item .ttl-bisuness-pensee {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .business-item .ttl-bisuness-pensee span {
    display: block;
    font-size: 4rem;
  }
  .business-item .item-copy {
    font-size: 2rem;
  }

  .ttl-business02 {
    font-size: 2.4rem;
  }
  .ttl-business02 span {
    font-size: 1.6rem;
  }

  .business-flow {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .business-flow .column3 li {
    width: 100%;
  }
  .business-flow .column3 li img {
    width: 100%;
  }
}
/*商業施設*/
#commerciaol-complex #page-name {
  background: rgba(16, 59, 124, 0.8) url("../images/commerciaol-complex.jpg") no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}

#page-public-works .business-head,
#page-commerciaol-complex .business-head {
  background: linear-gradient(180deg, #fff 0%, #fff 78%, #f5f5f5 78%, #f5f5f5 100%);
}

@media (max-width: 600px) {
  #page-public-works .business-head,
  #page-commerciaol-complex .business-head {
    padding-bottom: 0;
  }
}
/*公共工事*/
#public-works #page-name {
  background: rgba(16, 59, 124, 0.8) url("../images/public-works.jpg") no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}

@media (max-width: 600px) {
  .business-head p {
    margin-left: 20px;
    margin-right: 20px;
  }

  .size20 {
    font-size: 1.6rem;
  }
}
/*会社概要───*/
#other #page-name,
#company-info #page-name {
  background: rgba(16, 59, 124, 0.8) url("../images/company-info.jpg") no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}

.ttl-company {
  font-size: 3rem;
  color: #103B7C;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.info-table th,
.info-table td {
  border-bottom: solid 1px #909090;
}

.info-table {
  border-top: solid 1px #909090;
}

.info-table th {
  position: relative;
}
.info-table th::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 40px;
  background-color: #909090;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.company-info_feature {
  background-color: #103B7C;
  padding: 6%;
}
.company-info_feature .logo-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.company-info_feature .logo-item li {
  width: calc((100% - 120px) / 4 );
  padding: 30px 20px;
  background: #fff;
  text-align: center;
}
.company-info_feature .logo-item li h3 {
  font-size: 1.8rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  color: #103B7C;
}
.company-info_feature .logo-item li h3::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #103B7C;
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}
.company-info_feature .othe-item {
 width: min(835px,100%);
 background-color: #fff;
 padding: 3%;
 margin-left: auto;
 margin-right: auto;
 margin-top: 4%;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
}
.company-info_feature .othe-item li {
 width: calc((100% - 40px) / 3 );
 margin-top: 15px;
 padding-left: 1.1em;
 position: relative;
}
.company-info_feature .othe-item li::before {
 content: "●";
 display: inline-block;
 position: absolute;
 left: 0;
}
@media (max-width: 892px) {
.company-info_feature .othe-item li {
 width: calc((100% - 20px) / 2 );
}
}
@media (max-width: 626px) {
 .company-info_feature .othe-item {
  padding: 5%;
 }
.company-info_feature .othe-item li {
 width: 100%;
}
}
@media (max-width: 840px) {
  .company-info_feature .logo-item li {
    width: calc((100% - 80px) / 2 );
    padding: 30px 20px;
    background: #fff;
  }
  .company-info_feature .logo-item li:first-child, .company-info_feature .logo-item li:nth-of-type(2) {
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .ttl-privacy-policy,
  .ttl-company {
    font-size: 2rem;
  }

  .business-head.align-center {
    text-align: left;
  }
  .business-head.align-center p.size20 {
    font-size: 1.6rem;
  }

  .info-table th,
  .info-table td {
    border-bottom: none;
  }

  .info-table {
    border-top: none;
  }

  .info-table th {
    position: relative;
    background-color: #f5f5f5;
  }
  .info-table th::before {
    width: 0;
    height: 0;
  }

  .company-info_feature .logo-item li {
    width: 100%;
    padding: 30px 20px;
    background: #fff;
    margin-bottom: 20px;
  }
  .company-info_feature .logo-item li:first-child, .company-info_feature .logo-item li:nth-of-type(2) {
    margin-bottom: 20px;
  }
}
/*施工実績───*/
#works #page-name {
  background: rgba(16, 59, 124, 0.8) url("../images/works.jpg") no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}
#works-public #page-name {
  background: rgba(16, 59, 124, 0.8) url("../images/works-public.jpg") no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;	
}
#works-reform #page-name {
  background: rgba(16, 59, 124, 0.8) url("../images/works-reform.jpg") no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}
#works-pensee-house #page-name {
  background: rgba(16, 59, 124, 0.8) url("../images/works-pensee-house.jpg") no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}
#works-external-fortifications #page-name {
  background: rgba(16, 59, 124, 0.8) url("../images/works-external-fortifications.jpg") no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}
#works-commerciaol-complex #page-name {
  background: rgba(16, 59, 124, 0.8) url("../images/works-commerciaol-complex.jpg") no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}
#works .item-lists li .catname {
  border: solid 1px #ccc;
  margin: 10px;
  padding: 1px 15px;
  font-size: 1.2rem;
  background-color: #fff;
  color: #333;
}
#works .item-lists li h3 {
  margin-left: 10px;
}

.single .post:not(:first-child) {
 margin-top: 80px;
}
.single .post >  p {
 margin-top: 30px;
}
.voice {
  margin-top: 50px;
}
.voice h4 {
  background-color: #103B7C;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 15px;
  margin-bottom: 60px;
}
.voice h4::before {
  content: "▼";
  position: absolute;
  display: inline-block;
  color: #103B7C;
  left: 50%;
  transform: translate(-50%);
  bottom: -15px;
}

/*採用情報───*/
#recruit #contents {
  background-color: #103B7C;
  overflow: hidden;
}

#recruit #page-name {
  background: rgba(16, 59, 124, 0.8) url("../images/recruit.jpg") no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}

#recruit #breadcrumb {
  background-color: #103B7C;
}
#recruit #breadcrumb li {
  color: #A8A8A8;
}
#recruit #breadcrumb li a {
  color: #A8A8A8;
}

/*メッセージ*/
.ttl-message {
  color: #fff;
  font-size: 15rem;
  font-weight: 700;
}

.message-item .read-area {
  background-color: #f5f5f5;
  width: calc(1000 / 1920 * 100%);
  padding-top: 80px;
  padding-bottom: 80px;
}
.message-item .read-area .decoration {
  font-size: 2rem;
  color: #103B7C;
  position: relative;
}
.message-item .read-area .decoration::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #103B7C;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.message-item .read-area .post {
  margin-top: 100px;
  font-size: 2rem;
  line-height: 3;
}

.item01 {
  margin-top: 250px;
  padding-bottom: 70px;
  position: relative;
  background: url("../images/recruit-back01.jpg") no-repeat bottom right;
  background-size: contain;
}
.item01 figure {
  width: calc(1000 / 1920 * 100%);
  height: 90%;
  display: block;
  position: absolute;
  top: -12%;
  left: 0;
  z-index: 2;
}
.item01 figure img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  /* 位置指定　*/
  object-position: 100% 0;
}
.item01 .read-area {
  position: relative;
  margin-left: calc(920 / 1920 * 100%);
  padding-left: 140px;
}
.item01 .read-area::after {
  content: ' ';
  width: 100%;
  height: 100%;
  display: block;
  background: #f5f5f5;
  position: absolute;
  right: 1px;
  top: 0;
  z-index: 1;
  transform: translateX(100%);
}

.item02 {
  margin-top: 250px;
  padding-bottom: 70px;
  position: relative;
  background: url("../images/recruit-back02.jpg") no-repeat bottom left;
  background-size: contain;
}
.item02 figure {
  width: calc(1000 / 1920 * 100%);
  height: 90%;
  display: block;
  position: absolute;
  top: -12%;
  right: 0;
  z-index: 2;
}
.item02 figure img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  /* 位置指定　*/
  object-position: 100% 0;
}
.item02 .read-area {
  position: relative;
  margin-right: calc(920 / 1920 * 100%);
  padding-right: 140px;
}
.item02 .read-area::before {
  content: ' ';
  width: 100%;
  height: 100%;
  display: block;
  background: #f5f5f5;
  position: absolute;
  left: 1px;
  top: 0;
  z-index: 1;
  transform: translateX(-100%);
}

/* 募集要項　*/
.requirement-area {
  background-color: #fff;
  padding: 130px 0;
}
.requirement-area .tab {
  display: flex;
}
.requirement-area .tab li {
  width: calc(100% / 2);
  position: relative;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  color: #103B7C;
  border: solid 1px #103B7C;
  transition: .4s;
}
.requirement-area .tab li:hover {
  background-color: #4878C1;
  color: #fff;
}
.requirement-area .tab li.active {
  background-color: #103B7C;
  color: #fff;
}
.requirement-area .tab li.active::after {
  content: "▼";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%);
  color: #103B7C;
  font-size: 2rem;
}
.requirement-area .in-the-middle {
  display: none;
}
.requirement-area .info-table th {
  width: 20%;
  text-align: left;
}

.entry-area {
  padding: 130px 0;
  background-color: #103B7C;
}
.entry-area .ttl-sec {
  color: #fff;
}
.entry-area .ttl-sec::before {
  background-color: #fff;
}
.entry-area .btn-entry {
  max-width: 870px;
  width: 100%;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
}
.entry-area .btn-entry li {
  width: 100%;
  padding: 30px;
  background-color: #fff;
  text-align: center;
  position: relative;
  font-size: 2rem;
}
.entry-area .btn-entry li:not(:first-child) {
  margin-top: 20px;
}
.entry-area .btn-entry li::after {
  content: url("../images/arrow.png");
  position: absolute;
  right: 27px;
}
.entry-area .btn-entry li .material-icons {
  vertical-align: -17%;
  margin-right: 10px;
}
.entry-area .btn-entry li.contac-tel {
  font-size: 2.4rem;
  font-weight: 700;
}
.entry-area .btn-entry li.contac-tel::after {
  display: none;
}

#recruit #sec-works {
  margin-top: 0;
  padding-top: 130px;
}

@media (max-width: 600px) {
  .entry-area .btn-entry li.contac-tel::after {
    display: inline-block;
  }
}
/*お問い合わせ　個人情報保護方針───*/
#privacy-policy #page-name,
#privacy #page-name,
#contact #page-name {
  background: rgba(16, 59, 124, 0.8) url("../images/company-info.jpg") no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}
#page-contact {
 text-align: center;
}
.contact-tel {
 padding: 2em;
 background-color: #eee;
 width: fit-content;
 margin-left: auto;
 margin-right: auto;
 margin-top: 3%;
}
.contact-tel .dial {
 font-size: clamp(2.4rem, 2.8vw, 3rem);
 font-weight: 500;
 line-height: 1;
}
.contact-tel .dial span {
 font-size: clamp(1rem, 1.1vw, 1.2rem);
 display: block;
 width: fit-content;
float: left;
 margin-top: .4em;
 padding: 5px;
 margin-right: 10px;
 background-color: #1E9400;
 color: #fff;
}
#page-contact .info-table th {
 text-align: right;
 width: 25%;
}
.his {
 margin-left: 3px;
 display: inline-block;
 padding: 0 3px;
 background-color: #BF0206;
 border-radius: 3px;
 color: #fff;
 font-weight: 700;
 font-size: 1.2rem;
}
.ttl-privacy-policy {
  font-size: 3rem;
  color: #103B7C;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
 text-align: center;
}
.prp {
 margin-bottom: 80px;
}
.prp dt {
 font-weight: bold;
 font-size: 16px;
 margin-top: 20px;
}
@media(max-width:600px) {
#page-contact .info-table th,
#page-contact .info-table td {
 width: 100%;
display: block;
}
#page-contact .info-table th {
text-align: left;
background-color: #fff;
font-weight: 700;
padding-bottom: 5px;
}
#page-contact .info-table td {
padding-top: 0;
	}
}
/* 404　*/
#other #page-name {
  background: rgba(16, 59, 124, 0.8) url(../images/other.jpg) no-repeat;
  background-blend-mode: soft-light;
  background-size: cover;
}
.page-404 {
 padding: 2em;
 background-color: #fff;
}