@charset "UTF-8";
/* CSS Document */
/*	共通パーツ
---------------------------------*/ :root {
  --main: #005190;
  --black: #333;
  --gray: #F2F6FA;
  --border_c: #D6D6D6;
  --bg_c: #BCD0E0;
}
.en {
  font-family: DIN Condensed, sans-serif;
}
@media only screen and (min-width: 768px) {
  .pc-none {
    display: none !important
  }
}
@media only screen and (max-width: 767px) {
  .sp-none {
    display: none !important
  }
}
a {
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
a:hover, a:active {
  text-decoration: none;
  opacity: 0.75;
  filter: alpha(opacity=70);
}
strong, b {
  font-weight: 700
}
button {
  cursor: pointer
}
button:hover {
  opacity: .8
}
img {
  width: 100%;
  height: auto;
}
.underline {
  text-decoration: underline
}
.fadeIn {
  /* 30px下げる */
  transform: translateY(30px);
  /* 要素を透明にする */
  opacity: 0;
  /* 2秒かけて、変化させる */
  transition: transform 2s, opacity 2s;
}
.fadeIn.show {
  transform: translateY(0);
  opacity: 1;
}
/*	タイトル
---------------------------------*/
.c-ttl-head {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative
}
.c-ttl {
  color: var(--main);
  font-family: DIN Condensed, sans-serif;
  font-size: 10rem;
  letter-spacing: 2px;
  line-height: 1;
}
@media only screen and (max-width:1024px) {
  .c-ttl-head {}
}
@media only screen and (max-width:959px) {}
@media only screen and (max-width:767px) {
  .c-ttl-head {
    margin-bottom: 2rem;
  }
  .c-ttl {
    font-size: 8rem
  }
}
/*	サブページ タイトル
---------------------------------*/
.c-subpage-head {
  height: 250px;
  margin: 0 8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px
}
.c-subpage-head-subttl {
  font-size: 4rem;
  letter-spacing: 2px;
  line-height: 1;
}
.c-subpage-head-ttl {
  font-size: 2.4rem;
  line-height: 1.25;
}
@media only screen and (max-width:1024px) {
  .c-subpage-head {
    margin: 0 6rem 5rem;
  }
}
@media only screen and (max-width:959px) {
  .c-subpage-head {
    height: 180px;
    margin: 0 3rem;
    border-radius: 10px;
  }
  .c-subpage-head-subttl {
    font-size: 3.6rem
  }
  .c-subpage-head-ttl {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width:767px) {
  .c-subpage-head {
    height: 120px;
    margin: 0 2rem;
  }
  .c-subpage-head-subttl {
    font-size: 2.4rem
  }
  .c-subpage-head-ttl {
    font-size: 1.4rem;
  }
}
/*	ボタン
---------------------------------*/
/** ボタン **/
.c-btn {
  width: 100%;
  max-width: 250px;
  margin-top: 4rem;
}
.c-btn--R {
  margin-left: auto
}
.c-btn--C {
  margin-left: auto;
  margin-right: auto
}
.c-btn--w100 {
  max-width: none;
}
.c-btn a {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  background: var(--main);
  border: 1px solid var(--main);
  border-radius: 2px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-btn a::after {
  width: 15px;
  height: 10px;
  content: '';
  background: url(../images/c_arrow-r--white.svg) center center / contain no-repeat;
  position: absolute;
  right: 15px;
}
/** ボタン **/
.c-link__more {
  width: 100%;
  max-width: 120px;
  height: 40px;
}
.c-link__more a {
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  background: var(--main);
  border: 1px solid var(--main);
  border-radius: 40px;
  color: #fff;
  font-family: DIN Condensed, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}
.c-link__more a:hover {
  background: #fff;
  border: 1px solid var(--main);
  color: var(--main);
  opacity: 1
}
.c-link__more a:hover::after {
  background-image: url(../images/c_arrow-r.svg);
}
@media screen and (max-width: 767px) {
  .c-link__more {
    max-width: 350px;
    height: 60px;
    margin: 3rem auto 0;
  }
  .c-link__more a {
    font-size: 2.4rem
  }
}
/*	お問い合わせページへのリンク
---------------------------------*/
.c-contact {
  margin-top: 2rem
}
.c-contact a {
  width: 100%;
  height: 100%;
  padding: 4rem 6rem;
  background: #333;
  color: #fff;
  font-family: DIN Condensed, sans-serif;
  font-size: 10rem;
  letter-spacing: 2px;
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.c-contact a::after {
  width: 90px;
  height: 90px;
  content: '';
  background: url(../images/c_arrow.png) center center / contain no-repeat;
  position: absolute;
  right: 25px;
}
@media screen and (max-width: 767px) {
  .c-contact {
    margin-top: 1rem
  }
  .c-contact a {
    padding: 4rem 3rem;
    font-size: 5rem
  }
  .c-contact a::after {
    width: 60px;
    height: 60px;
    right: 15px;
  }
}
/*	ページトップへ戻るボタン
---------------------------------*/
.page-to-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  cursor: pointer;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}
.page-to-top.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
.page-to-top.absolute {
  position: absolute;
  bottom: auto;
  top: -100px
}
.page-to-top a {}
.page-to-top__img {
  width: 60px;
  height: 60px
}
@media screen and (max-width: 767px) {
  .page-to-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
  }
  .page-to-top.absolute {
    top: -20px;
  }
  .page-to-top__img {
    width: 65px;
    height: 65px
  }
}
/*	NEWS
---------------------------------*/
.sec-news-list {
  width: 100%
}
.sec-news-item {}
.sec-news-item a {
  padding: 3rem;
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;
  position: relative
}
.sec-news-item a time {
  margin-right: 2rem;
  color: var(--main);
  font-family: DIN Condensed, sans-serif;
}
.sec-news-item:first-child a {
  border-top: 1px solid #333
}
.sec-news-item a::after {
  width: 25px;
  height: 6px;
  content: '';
  background: url(../images/c_arrow-r--white.svg) center center / contain no-repeat;
  position: absolute;
  right: 30px;
}
@media screen and (max-width: 1024px) {
  .sec-news-item a {
    padding: 2rem 4.5rem 2rem 0;
  }
  .sec-news-item a::after {
    right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-news-item a {
    padding: 2rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .sec-news-item a::after {
    right: 5px;
    top: 28px;
  }
}
/*	TOP WORKS
---------------------------------*/
.sec-works-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
}
.sec-works-item {
  width: calc((100% - 2vw) / 3);
  padding: 3rem;
  background: var(--gray);
  display: block
}
.sec-works-item a {
  width: 100%;
  height: 100%
}
.sec-works-item__ttl {
  font-weight: 600
}
.sec-works-item__note {
  margin-top: 2rem;
  color: var(--main);
  font-family: DIN Condensed, sans-serif;
  line-height: 1.25;
}
@media only screen and (max-width: 767px) {
  .sec-works-list {
    gap: 10px;
  }
  .sec-works-item {
    width: 100%;
    padding: 2rem;
  }
}
/*	会社案内ページ 代表挨拶
---------------------------------*/
.sec-message {}
@media screen and (min-width: 767.1px) {
  .sec-message__inner {
    display: flex;
    gap: 3vw
  }
  .sec-message-txtWrap {
    width: 60%;
  }
  .sec-message-img {
    width: calc(40% - 3vw)
  }
}
.sec-message-txtWrap__ttl {
  font-size: 3rem;
  font-weight: 700;
}
.sec-message-txtWrap__txt {
  margin-top: 3rem
}
@media screen and (max-width: 767px) {
  .sec-message-img {
    margin-top: 2rem
  }
  .sec-message-txtWrap__ttl {
    font-size: 2.4rem;
  }
  .sec-message-txtWrap__txt {
    margin-top: 1rem
  }
}
/*	会社案内ページ 会社概要
---------------------------------*/
.sec-company-table {
  width: 100%
}
.sec-company-table th {
  min-width: 110px;
  padding: 2rem 1rem 2rem 0;
  border-right: 1px solid #333;
  font-size: 1.8rem;
  vertical-align: top;
}
.sec-company-table th.en {
  font-size: 2.4rem
}
.sec-company-table td {
  width: calc(100% - 120px);
  padding: 2rem 0 2rem 4rem;
  vertical-align: top;
}
.sec-company-table td a {
  text-decoration: underline
}
.sec-company-photo {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .5vw;
}
@media only screen and (max-width:1023px) {}
@media only screen and (max-width: 767px) {
  .sec-company-table th, .sec-company-table td {
    width: 100%;
    border: none;
    display: block
  }
  .sec-company-table th {
    padding: 0;
    font-weight: 700
  }
  .sec-company-table td {
    margin-bottom: 2rem;
    padding: .5rem 0 2rem;
    border-bottom: 1px solid #333;
  }
  .sec-company-table tr:last-child td {
    margin-bottom: 0
  }
  .sec-company-photo {
    margin-top: 0
  }
}
/*	お問い合わせページ
---------------------------------*/
.sec-contact-table {
  width: 100%
}
.sec-contact-table th {
  min-width: 110px;
  padding: 2rem 1rem 2rem 0;
  font-size: 1.8rem;
  vertical-align: top;
}
.sec-contact-table th p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}
.sec-contact-table td {
  width: calc(100% - 120px);
  padding: 2rem 0 2rem 4rem;
  vertical-align: top;
}
.sec-contact-table td p, textarea {
  max-width: 100%;
}
.sec-contact-table .must, .sec-contact-table .optional {
  padding: .2rem .5rem;
  color: #fff;
  font-size: 1.2rem;
  background: #E11F21;
  letter-spacing: 1px;
  float: right;
  display: inline;
}
.sec-contact-table .optional {
  background: #333;
}
.sec-contact-table input.txt_w35p {
  padding: 0 10px;
  width: 100%;
  max-width: 350px;
  height: 46px;
  line-height: 46px;
  background: #F7F7F7;
  border: 1px solid #eceef0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}
.sec-contact-table textarea {
  padding: 15px 10px;
  width: 100%;
  height: 120px;
  background: #F7F7F7;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #eceef0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn {
  max-width: 450px;
  margin: 4rem auto 0;
}
.btn input {
  width: 100%;
  height: 60px;
  padding: 0 2rem;
  background: var(--main);
  border: 1px solid var(--main);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-contact-table th, .sec-contact-table td {
    width: 100%;
    display: block;
  }
  .sec-contact-table th {
    padding: 1rem 0 .4rem;
  }
  .sec-contact-table th p {
    justify-content: unset;
  }
  .sec-contact-table td {
    padding: 0 0 1rem;
  }
  .sec-contact-table .wpcf7-list-item:first-child {
    margin: 0
  }
}
/*	wpForm側のcss制御 */
.wpforms-container .wpforms-field {
  padding: 10px 0 !important
}
.wpforms-container .wpforms-form .wpforms-field-label {
  margin-bottom: 5px !important
}
/*	個人情報保護方針ページ
---------------------------------*/
.sec-pp {
  font-size: 1.8rem
}
.sec-pp__ttl {
  margin-top: 4rem;
  font-weight: 700;
}
.sec-pp__ttl:first-child {
  margin-top: 0
}
.sec-pp__txt {
  margin-top: .5rem
}
.sec-pp__date {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .sec-pp {
    font-size: 1.6rem
  }
  .sec-pp__ttl {
    margin-top: 3rem
  }
}
/*	404 Page not found.
---------------------------------*/
.p-404 {}
.p-404__inner {
  margin: 0 auto;
  padding: 8rem;
  background: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px
}
.p-404__img {
  width: 156px;
}
.p-404__ttl {
  margin-top: 4rem;
  font-size: 3rem;
  font-weight: 600
}
.p-404__btn {
  width: 100%;
  max-width: 800px;
  margin-top: 4rem;
}
.p-404__btn a {
  width: 100%;
  height: 80px;
  background: #fff;
  border: 1px solid var(--main);
  color: var(--main);
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-404__btn a:hover {
  background: var(--main);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-404__inner {
    padding: 6rem 4rem;
    gap: 10px
  }
  .p-404__ttl {
    font-size: 2rem;
  }
  .p-404__btn a {
    height: 60px;
    font-size: 1.6rem
  }
}
/*	検索フォーム
---------------------------------*/
@media only screen and (max-width:1023px) {}
@media only screen and (max-width: 767px) {}
/*	記事
---------------------------------*/
.c-card__list {
  display: flex;
  flex-direction: column;
}
.c-card-item {
  width: 100%;
}
.c-card-item:first-child a {
  border-top: 1px solid #333;
}
.c-card-item a {
  padding: 4rem 6.5rem 4rem 3rem;
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;
  position: relative;
}
.c-card-item a::after {
  width: 25px;
  height: 6px;
  content: '';
  background: url(../images/c_arrow-r.svg) center center / contain no-repeat;
  position: absolute;
  right: 30px;
}
.c-card-item a time {
  color: #B3D2E7;
}
@media screen and (min-width: 768px) {
  .c-card-item a time {
    margin-right: 2rem;
    padding-right: 2rem;
    border-right: 1px solid #377CB2;
  }
}
@media screen and (max-width: 1024px) {
  .c-card-item a {
    padding: 2rem 4.5rem 2rem 0;
  }
  .c-card-item a::after {
    right: 10px;
  }
}
@media only screen and (max-width:959px) {}
@media only screen and (max-width: 767px) {
  .c-card-item a {
    padding: 2rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .c-card-item a::after {
    right: 5px;
    top: 28px;
  }
}