@charset "UTF-8";
/*-----------------------------
 共通部分
-----------------------------*/
:root {
  --main-color: #005D96;
  --sub-color: #0D8854;
  --accent-color: #FFF36E;
  --title-color: #023553;
  --main-bg-color: #fff;
  --sub-bg-color: #f0f0f0;
  --main-text-color: #222;
  --color-white: #fff;
  --color-black: #222;
  --color-danger: #D43901;
}
html {
  font-size: 62.5%;
}
body {
  background-color: var(--main-bg-color);
  color: var(--main-text-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  height: 100%;
  line-height: 1.5;
  letter-spacing: 0.05em;
  word-break: break-all;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: 0.3s;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover img {
  opacity: 0.8;
}
*:focus {
  outline: none;
}
.sub-bg-color {
  background-color: var(--sub-bg-color);
}
.main-container {
  overflow: hidden;
  margin-top: 100px;
  width: 100%;
}
.section__inner {
  margin: 0 auto;
  padding: 80px 0;
  width: 85vw;
  max-width: 1200px;
}
.section__title {
  background-color: var(--main-color);
  color: var(--color-white);
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 56px;
  padding: 16px 0;
}
.top-section__title {
  color: var(--main-color);
  font-size: clamp(3rem, 4.3vw, 7rem);
  text-align: center;
  margin-bottom: 56px;
}

@media (min-width: 981px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 980px) {
  .main-container {
    margin-top: 65px;
  }
  section {
    padding: 0 20px;
  }
  .section__inner {
    padding: 40px 0;
    width: 100%;
  }
  .section__title {
    font-size: 2.2rem;
    margin-bottom: 32px;
    padding: 16px 8px;
  }
  .top-section__title {
    margin-bottom: 32px;
  }
}

/* パンくず */
.breadcrumb {
  position: relative;
  z-index: 10;
}
.breadcrumb__inner {
  margin: 8px auto;
  width: 85vw;
  max-width: 1200px;
}
@media screen and (max-width: 980px) {
  .breadcrumb__inner {
    font-size: 1.2rem;
    margin: 4px auto;
    padding: 0 20px;
    width: 100%;
  }
}

/* ボタン */
.btn a {
  position: relative;
  display: block;
  background-color: var(--sub-color);
  border: 2px solid var(--sub-color);
  border-radius: 40px;
  color: var(--color-white);
  margin: 0 auto;
  padding: 12px 0;
  text-align: center;
  width: 100%;
  max-width: 300px;
}
.btn a:hover {
  background-color: var(--color-white);
  color: var(--sub-color);
}
.btn .fa-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 20px;
  color: var(--color-white);
}
.btn a:hover .fa-right {
  color: var(--sub-color);
}
.sp-only {
  display: none;
}
@media screen and (max-width: 980px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/* ヘッダー */
.header {
  background-color: var(--main-bg-color);
  box-shadow: 0 2px 5px rgb(148 148 148 / 16%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100px;
  width: 100%;
  max-width: 1920px;
}
.header__logo {
  padding: 20px;
  height: 100%;
  width: 25%;
}
.header__logo a {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
}
.header__logo a img {
  object-fit: contain;
  object-position: right;
  height: 100%;
  width: 60%;
}
.header__logo a span {
  font-size: min(1.72vw, 22px);
  padding-left: 8px;
}
.header-nav__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 75%;
}
.header-nav {
  margin-right: 16px;
}
.header-nav__list {
  display: flex;
  justify-content: flex-end;
}
.header-nav__item {
  margin-right: 16px;
}
.header-nav__item:last-child {
  margin-right: 0;
}
.header-nav__link {
  display: block;
  position: relative;
  padding: 16px 0;
  border-bottom: 4px solid transparent;
  transition: 0.25s;
}
.current-menu-item .header-nav__link,
.current-page-ancestor .header-nav__link {
  color: var(--main-color);
  border-bottom-color: var(--main-color);
}
.header-nav__link:focus,
.header-nav__link:hover {
  border-bottom-color: var(--main-color);
}
.header__tel {
  font-size: 2rem;
  margin-right: 16px;
}
.header__tel i {
  vertical-align: text-bottom;
  transform: rotateY(180deg);
}
.header__tel span {
  display: block;
  font-size: 1.2rem;
}
.header__btn {
  display: block;
  background-color: var(--main-color);
  color: var(--color-white);
  font-size: 1.8rem;
  text-align: center;
  padding: 36.5px 0;
  width: 120px;
}

.header__tel-sp,
.drawer_btn,
#drawer {
  display: none;
}

@media screen and (max-width: 980px) {
  .header__inner {
    position: relative;
    height: 65px;
  }
  .header__logo {
    font-size: 2.4rem;
    padding: 4px 16px;
    height: 100%;
    width: 65%;
  }
  .header__logo a img {
    object-position: right bottom;
  }
  .header__logo a span {
    font-size: min(3.8vw, 20px);
    padding-left: 8px;
  }
  .header-nav__wrapper {
    width: 35%;
  }
  .header-nav,
  .header__tel,
  .header__btn {
    display: none;
  }
  .header__tel-sp,
  .drawer_btn,
  #drawer {
    display: block;
  }
  .header__tel-sp {
    color: var(--color-white);
    background-color: var(--main-color);
    font-size: 2rem;
    margin-right: 65px;
    padding: 7.5px 0;
    text-align: center;
    width: 65px;
  }
  .header__tel-sp i {
    display: block;
    vertical-align: text-bottom;
    transform: rotateY(180deg);
  }
  #drawer {
    position: fixed;
    top: 0;
    right: -120%;
    background: rgba(0, 0, 0, 0.9);
    padding: 72px 20px 32px;
    max-width: 345px;
    height: 100vh;
    width: 100%;
    overflow: auto;
    transition: all 0.6s;
    z-index: 999;
  }
  #drawer.panelactive {
    right: 0;
  }
  .header__btn-sp {
    display: block;
    background-color: var(--sub-color);
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
    width: 100%;
  }
  .drawer-nav {
    width: 97%;
    max-width: 295px;
  }
  .drawer-nav__list {
    margin-top: 14px;
  }
  .drawer-nav__list > .drawer-nav__item {
    border-bottom: 1px solid rgb(255 255 255 / 24%);
    padding: 16px 0 16px 20px;
  }
  .drawer-nav__link {
    position: relative;
    display: block;
    color: var(--color-white);
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.1em;
  }
  .drawer-nav__list > .drawer-nav__item > .drawer-nav__link {
    font-size: 1.8rem;
  }
  .sub-menu > .drawer-nav__item {
    padding: 14px 0 0 30px;
  }
  .drawer-nav__link::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .sub-menu .drawer-nav__link::after {
    width: 6px;
    height: 6px;
  }
  .drawer_btn {
    position: fixed;
    z-index: 9999;
    top: 7.5px;
    right: 7.5px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .drawer_btn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 11px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--color-black);
    width: 56%;
  }
  .drawer_btn span:nth-of-type(1) {
    top: 15px;
  }
  .drawer_btn span:nth-of-type(2) {
    top: 23px;
  }
  .drawer_btn span:nth-of-type(3) {
    top: 31px;
  }
  .drawer_btn.active span {
    background-color: var(--color-white);
  }
  .drawer_btn.active span:nth-of-type(1) {
    top: 18px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
  }
  .drawer_btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .drawer_btn.active span:nth-of-type(3) {
    top: 30px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
  }
}

/* フッター */
.footer__copyright {
  background-color: #f2f2f2;
  padding: 37px 0;
  text-align: center;
}
.footer__copyright p {
  color: #b9b9b9;
  font-size: 1.4rem;
}
.floatFooter {
  display: none;
}
@media screen and (max-width: 980px) {
  .footer__copyright {
    margin-bottom: 67px;
    padding: 16px 0;
  }
  .floatFooter {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 99;
    background: var(--main-color);
    width: 100%;
    border-top: 1px solid #555;
    opacity: 0;
    transform: translateY(100px);
  }
  .floatFooter.UpMove {
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .floatFooter.DownMove {
    animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 1;
      transform: translateY(100px);
    }
  }
  .floatFooter ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .floatFooter ul li {
    flex-basis: 50%;
    line-height: 100%;
  }
  .floatFooter ul li:nth-of-type(2) {
    border-left: 1px solid #555;
    border-right: 1px solid #555;
  }
  .floatFooter ul li a {
    display: block;
    color: var(--color-white);
    padding: 8px 0;
    font-size: 1.4rem;
    text-align: center;
  }
  .floatFooter ul li i {
    display: block;
    font-size: 3rem;
    padding-bottom: 4px;
  }
  .floatFooter ul li i.fa-phone {
    transform: rotateY(180deg);
  }
  .floatFooter ul li span {
    color: var(--color-white);
  }
}

/* 案件情報 */
.job__text {
  margin-bottom: 8px;
}
.dataTables_filter {
  float: left !important;
  margin-bottom: 20px;
}
.dataTables_filter input {
  padding: 0.25em 0.5em;
  color: var(--color-black);
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 0;
}
.tablepress-scroll-wrapper {
  margin: 0 auto 40px;
  overflow-x: auto;
}
.tablepress thead th {
  background-color: var(--sub-bg-color) !important;
}
@media screen and (max-width: 980px) {
  .tablepress {
    margin: 0 auto;
    width: 800px !important;
  }
  .dataTables_wrapper .tablepress {
    margin: 0 auto !important;
  }
}

/* 募集要項 */
#recruit {
  background-color: var(--main-color);
  color: var(--color-white);
}
.recruit__inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 100px 20px;
  width: 100%;
  max-width: 1370px;
}
.recruit__title {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--color-white);
  font-size: clamp(3rem, 2.84vw, 4rem);
  padding-right: min(4.26vw, 60px);
}
.recruit__desc {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  margin-left: min(4.05vw, 57px);
}
.recruit__sub-title {
  background-color: var(--color-white);
  color: var(--main-color);
  font-size: 2rem;
  font-weight: bold;
  padding: 18px;
  margin-bottom: 30px;
  width: 100%;
}
.recruit__body01 {
  margin-right: min(3.27vw, 46px);
  width: min(35.47vw, 500px);
}
.recruit__body01-title {
  background-color: #7d0000;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: bold;
  padding: 15px 0;
  text-align: center;
}
.recruit__body01-desc {
  display: flex;
  flex-wrap: wrap;
  background-color: #a70606;
  padding: 30px min(2.84vw, 40px);
}
.recruit__body01-desc dt {
  border-right: 1px solid var(--color-white);
  font-weight: bold;
  margin-bottom: 20px;
  width: min(8vw, 105px);
}
.recruit__body01-desc dd {
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 25px;
  width: calc(100% - min(8vw, 105px));
}
.recruit__body02 {
  flex: 1;
}
.recruit__body02__title {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 28px;
  padding: 15px 0;
}
.recruit__body02__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  background-image: url(../images/recruit_illust.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 13px;
  width: 100%;
}
.recruit__body02__text {
  margin-bottom: 15px;
}
#recruit .btn a {
  position: relative;
  background-color: var(--color-white);
  border: 2px solid var(--color-white);
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 20px;
  padding: 25px 0;
  max-width: 414px;
}
#recruit .btn a:hover {
  background-color: var(--main-color);
  border: 2px solid var(--color-white);
  color: var(--color-white);
}
#recruit .btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 39px;
  transform: translateY(-50%);
  background-image: url(../images/recruit_icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 26px;
  width: 22px;
}
#recruit .btn a:hover::before {
  background-image: url(../images/recruit_icon_hover.png);
}
@media screen and (max-width: 980px) {
  .recruit__inner {
    padding: 40px 0;
  }
  .recruit__title {
    justify-content: center;
    border-right: none;
    font-size: 3rem;
    margin-bottom: 30px;
    padding-right: 0;
    width: 100%;
  }
  .recruit__desc {
    flex: 0 0 100%;
    margin-left: 0;
  }
  .recruit__sub-title {
    font-size: 1.8rem;
    padding: 12px;
    margin-bottom: 20px;
  }
  .recruit__body01 {
    margin-right: 0;
    width: 100%;
  }
  .recruit__body01-title {
    font-size: min(6.25vw, 2rem);
  }
  .recruit__body01-desc {
    display: flex;
    flex-wrap: wrap;
    background-color: #a70606;
    margin-bottom: 20px;
    padding: 30px min(2.84vw, 40px);
  }
  .recruit__body01-desc dt {
    border-right: none;
    border-bottom: 1px solid var(--color-white);
    margin-bottom: 8px;
    width: 100%;
  }
  .recruit__body01-desc dd {
    padding-left: 20px;
    width: 100%;
  }
  .recruit__body02 {
    flex: 0 0 100%;
  }
  .recruit__body02__title {
    font-size: min(6.25vw, 2rem);
    padding: 0 0 15px 0;
  }
  #recruit .btn a {
    font-size: 1.6rem;
    padding: 16px 0;
  }
  #recruit .btn a::before {
    left: min(6.25vw, 39px);
  }
  #recruit .btn a:hover::before {
    background-image: url(../images/recruit_icon_hover.png);
  }
}

/* 会社案内 */
#company {
  position: relative;
  background-position: 50% 18%;
  background-repeat: no-repeat;
  background-size: cover;
}
#company::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  opacity: 0.7;
}
.company__inner {
  position: relative;
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
  width: 100%;
  max-width: 600px;
  z-index: 1;
}
.company__title {
  color: var(--color-white);
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.company__text {
  color: var(--color-white);
  margin-bottom: 20px;
}
.company-btn a {
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  margin-bottom: 27px;
}
.company-btn a:hover {
  color: var(--main-color);
}
.company__contact-wrap {
  background-color: var(--color-white);
  padding: 46px 0;
}
.company__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  font-family: "Lato", sans-serif;
  font-size: 6rem;
  font-weight: 900;
}
.company__phone img {
  margin-right: 7px;
  width: 52px;
}
.company__houre {
  margin-bottom: 26px;
}
.company__houre span {
  font-weight: bold;
}
.contact-btn a {
  background-color: var(--color-white);
  border: 2px solid var(--main-color);
  color: var(--main-color);
  font-weight: bold;
}
.contact-btn a:hover {
  background-color: var(--main-color);
  color: var(--color-white);
}
@media screen and (max-width: 980px) {
  .company__inner {
    padding: 40px 0;
  }
  .company__contact-wrap {
    padding: 32px 16px;
  }
  .company__phone {
    font-size: min(9.37vw, 6rem);
  }
  .company__phone img {
    margin-right: 7px;
    width: min(9vw, 52px);
  }
  .company__houre {
    margin-bottom: 26px;
  }
  .company__houre span {
    font-weight: bold;
  }
  .contact-btn a {
    background-color: var(--color-white);
    border: 2px solid var(--main-color);
    color: var(--main-color);
    font-weight: bold;
  }
  .contact-btn a:hover {
    background-color: var(--main-color);
    color: var(--color-white);
  }
}

/* ブログ一覧 */
.blog-cards {
  display: flex;
  flex-wrap: wrap;
}
.blog-cards__item {
  position: relative;
  width: calc((100% - 120px) / 3);
  margin-right: 60px;
}
.blog-cards__item:nth-child(3n) {
  margin-right: 0;
}
.blog-cards__item:nth-child(n + 4) {
  margin-top: 60px;
}
.blog-card__img-wrapper {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}
.blog-card__img {
  position: absolute;
  top: 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
}
.blog-card__date {
  margin-bottom: 4px;
}
.blog-card__title {
  font-size: 2rem;
}
.btn-blog {
  margin-top: 40px;
}
/* ページネーション */
.pagination {
  margin: 40px 0 0;
  text-align: center;
}

.pagination ul {
  font-size: 0;
}

.pagination ul li {
  font-size: 1.6rem;
  line-height: 1;
  display: inline-block;
  margin-right: 8px;
}

.pagination ul li:last-child {
  border: 0;
}

.pagination ul li a,
.pagination .current {
  display: block;
  padding: 16px;
  border: 1px solid #ccc;
}

.pagination ul li .prev,
.pagination ul li .next {
  border: 0;
}

.pagination ul li a {
  text-decoration: none;
  color: var(--color-black);
}

.pagination ul li a:hover {
  opacity: 0.8;
}

.pagination .current {
  color: var(--color-white);
  font-weight: bold;
  background-color: var(--sub-color);
}
@media screen and (max-width: 980px) {
  .blog-cards {
    margin-bottom: 32px;
  }
  .blog-cards__item {
    width: 100%;
    margin-right: 0;
    margin-top: 24px;
  }
  .blog-cards__item:nth-child(n + 4) {
    margin-top: 24px;
  }
  .blog-cards__item:first-child {
    margin-top: 0;
  }
  .blog-card__title {
    font-size: 1.8rem;
  }
}
/*-----------------------------
 投稿詳細ページ
-----------------------------*/
.post-content__title {
  background-color: transparent;
  color: var(--main-color);
  margin-bottom: 8px;
  padding: 0;
}
.post-content__title span {
  border-bottom: 4px solid var(--main-color);
  padding: 0 16px;
}
.post-content__date {
  margin-bottom: 40px;
  text-align: center;
}
.post-content h2 {
  font-size: 2.4rem;
  margin: 32px 0;
  padding: 0 8px;
  border-bottom: solid 4px var(--main-color);
}
.post-content h3 {
  font-size: 2rem;
  margin: 20px 0;
  padding: 4px 16px;
  border-left: solid 5px var(--main-color);
}
.post-content h4 {
  font-size: 1.8rem;
  margin: 16px 0;
}
.post-content h5 {
  margin: 16px 0;
}
.post-content p {
  margin-bottom: 16px;
}
.post-content a {
  color: #2140a5;
  text-decoration: underline;
}
.post-content .wp-block-columns {
  margin-bottom: 16px;
}
.post-content .wp-block-column *:last-of-type {
  margin-bottom: 0;
}
.post-content .wp-block-image {
  margin: 0;
}
.post-content .wp-block-image img {
  object-fit: contain;
  max-height: 400px;
}
.page-link {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.page-link li {
  width: 150px;
}
.page-link li a {
  display: block;
  border-bottom: 1px solid var(--main-color);
  color: var(--main-color);
  margin: 0 16px;
  padding: 8px 0;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 980px) {
  .post-content h2 {
    font-size: 2rem;
    margin: 20px 0;
  }
  .post-content h3 {
    font-size: 1.8rem;
    margin: 18px 0;
  }
  .post-content h4 {
    font-size: 1.6rem;
  }
  .post-content .wp-block-column:first-child {
    margin-bottom: 16px;
  }
  .post-content__tag .post-tags li a {
    font-size: 1.2rem;
    margin: 4px;
    padding: 4px;
  }
  .page-link li {
    width: 110px;
  }
  .page-link li a {
    font-size: 1.4rem;
    margin: 0 8px;
  }
}

/*-----------------------------
 メインビジュアル
-----------------------------*/
.mv_wrap {
  display: flex;
  flex-wrap: wrap;
}
.mv__title {
  background-color: var(--main-color);
  color: var(--color-white);
  font-size: 3.4rem;
  padding: 75px 0 75px min(14.43vw, 277px);
  width: 50%;
}
.mv__img {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 201px;
  width: 50%;
}
.mv__img::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  opacity: 0.4;
}
@media screen and (max-width: 980px) {
  .mv__title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: min(6vw, 3.4rem);
    padding: 0;
    /* width: 100%; */
  }
  .mv__img {
    height: 150px;
    /* width: 100%; */
  }
}

/*-----------------------------
 固定ページ
-----------------------------*/

.page .main-container p {
  margin-bottom: 16px;
}
.page .main-container p:last-child {
  margin-bottom: 0;
}

/*-----------------------------
 会社概要ページ
-----------------------------*/
/* 代表挨拶 */
.message-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.message-media__img-wrapper {
  height: 32vw;
  max-height: 450px;
  width: 30%;
}
.message-media__img-wrapper img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.message-media__body {
  width: 68%;
}
.message-media__title {
  font-size: 2.4rem;
  text-align: right;
}
@media screen and (max-width: 980px) {
  .message-media__img-wrapper {
    margin: 0 auto 16px;
    height: 90vw;
    max-height: 500px;
    width: 80%;
    max-width: 400px;
  }
  .message-media__body {
    width: 100%;
  }
  .message-media__title {
    font-size: 2rem;
  }
}

/* 経営理念 */
#philosophy {
  position: relative;
  background-position: center;
  background-size: cover;
  border-top: 4px solid var(--main-color);
  border-bottom: 4px solid var(--main-color);
}
#philosophy::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.philosophy__inner {
  position: relative;
  z-index: 10;
}
.philosophy__title {
  background-color: transparent;
  margin-bottom: 32px;
  padding: 0;
}
.page .main-container .philosophy__text {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .philosophy__inner {
    max-width: 600px;
  }
  .page .main-container .philosophy__text {
    font-size: 1.8rem;
    text-align: left;
  }
}

/* 会社概要 */
.overview__body-description {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--main-color);
  font-size: 1.8rem;
  margin-bottom: 32px;
}
.overview__body-description dt {
  border-bottom: 1px solid var(--main-color);
  font-weight: bold;
  padding: 12px 0;
  width: 200px;
}
.overview__body-description dd {
  border-bottom: 1px solid var(--main-color);
  font-weight: bold;
  padding: 12px 0;
  width: calc(100% - 200px);
}
#overview iframe {
  width: 100%;
}
@media screen and (max-width: 980px) {
  .overview__body-description {
    font-size: 1.6rem;
  }
  .overview__body-description dt {
    border-bottom: none;
    padding: 12px 0 0;
    width: 100%;
  }
  .overview__body-description dd {
    padding: 8px 8px 12px;
    width: 100%;
  }
  #overview iframe {
    width: 100%;
  }
}

/* 採用情報 */
.recruit-01__sub-title {
  border-bottom: 2px solid var(--main-color);
  font-size: 2.4rem;
  margin: 48px 0 24px;
}
.recruit-01__feature {
  display: flex;
  flex-wrap: wrap;
}
.recruit-01__feature-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--sub-color);
  border-radius: 50%;
  color: var(--color-white);
  margin: 20px 4px 20px 4px;
  min-height: 200px;
  height: 16.5vw;
  max-height: 232px;
  min-width: 200px;
  width: calc((100% - 40px) / 5);
}
.recruit-01__feature-item dl {
  text-align: center;
}
.recruit-01__feature-item dt {
  border-bottom: 1px solid var(--color-white);
  font-weight: bold;
}
.recruit-01__feature-item dd {
  font-weight: bold;
}
.recruit-01__feature-item dd span {
  font-size: 2.4rem;
}

.recruit-01__example {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit-01__example-item {
  border: 2px solid var(--main-color);
  padding: 32px;
  width: 49%;
}
.recruit-01__example-title {
  font-size: 2rem;
  margin-bottom: 16px;
}
.recruit-01__step {
  display: flex;
  flex-wrap: wrap;
}
.recruit-01__step-item {
  border: 2px solid var(--main-color);
  padding: 16px;
  width: calc((100% - 96px) / 4);
}
.recruit-01__step-title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.recruit-01__step-number {
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 1.4rem;
  padding: 4px 8px;
  margin-right: 8px;
  text-align: center;
  width: 50px;
}
.recruit-01__step-number span {
  font-size: 2rem;
}
.recruit-01__step-title {
  font-size: 2rem;
  width: calc(100% - 58px);
}
.recruit-01__step-icon {
  align-self: center;
  font-size: 4rem;
  margin: 0 8px;
}
.recruit-01__text-large {
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 980px) {
  .recruit-01__sub-title {
    font-size: 2rem;
    margin: 32px 0 16px;
  }
  .recruit-01__feature {
    justify-content: space-between;
  }
  .recruit-01__feature-item {
    display: block;
    border-radius: 0;
    margin: 0 0 24px;
    padding: 15px;
    min-height: auto;
    height: auto;
    max-height: none;
    width: calc((100% - 16px) / 2);
  }
  .recruit-01__example-item {
    margin-bottom: 16px;
    padding: 8px;
    width: 100%;
  }
  .recruit-01__example-item:last-child {
    margin-bottom: 0;
  }
  .recruit-01__step-item {
    width: 100%;
  }
  .recruit-01__step-icon {
    position: relative;
    left: 32px;
    margin: 0;
    transform: rotate(90deg);
  }
  .recruit-01__text-large {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 580px) {
  .recruit-01__feature {
    justify-content: center;
  }
  .recruit-01__feature-item {
    width: 100%;
  }
}

/*-----------------------------
 会社概要ページ
-----------------------------*/
.entry__text {
  text-align: center;
}
#entry .recruit__body {
  background-color: var(--color-black);
  color: var(--color-white);
  margin-bottom: 0;
  border-radius: 15px;
  margin: 0 auto 24px;
  padding: 16px;
  width: 100%;
  max-width: 800px;
}
.entry__img {
  margin: 32px auto;
  width: 100%;
  max-width: 800px;
}
.entry__img img {
  width: 100%;
}
#entry .recruit__body-title {
  border-bottom: solid 1px var(--color-white);
  font-size: 2rem;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.recruit__body-description {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
}
.recruit__body-description dt {
  font-weight: bold;
  margin-bottom: 8px;
  width: 150px;
}
.recruit__body-description dd {
  margin-bottom: 8px;
  width: calc(100% - 150px);
}
@media screen and (max-width: 980px) {
  .entry__text {
    text-align: left;
  }
  .entry__img {
    margin: 24px auto;
  }
  .recruit__body-description dt {
    margin-bottom: 4px;
    width: 100%;
  }
  .recruit__body-description dd {
    padding-left: 8px;
    width: 100%;
  }
}

/* エントリーフォーム、お問い合わせフォーム */
#form dl {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}
#form dt {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  width: 240px;
  justify-content: space-between;
  padding-top: 5px;
  margin-right: 60px;
}
#form dt label {
  font-weight: bold;
}
#form dt span {
  background-color: red;
  color: #fff;
  font-size: 1.4rem;
  padding: 2px 8px;
}
#form dd {
  padding-bottom: 40px;
  width: calc(100% - 300px);
}
#form dd .horizontal-item {
  display: inline-block;
  margin: 5px 10px;
}
#form dd input[type="text"],
#form dd input[type="tel"],
#form dd input[type="email"],
#form dd textarea {
  background: #fff;
  border: 1px solid #b3b3b3;
  padding: 5px 10px;
  width: 100%;
}
#form p {
  display: flex;
  align-items: center;
  justify-content: center;
}
#form input[type="submit"] {
  background-color: var(--sub-color);
  border: 2px solid var(--sub-color);
  border-radius: 40px;
  color: var(--color-white);
  font-size: 2rem;
  margin: 0 16px;
  padding: 16px 0;
  text-align: center;
  width: 280px;
  transition: 0.3s;
}
#form input[type="submit"]:hover {
  background-color: var(--color-white);
  color: var(--sub-color);
}
#form input[type="submit"].back {
  background-color: #666;
  border: 2px solid #666;
  padding: 12px 0;
  width: 200px;
}
#form input[type="submit"].back:hover {
  background-color: #fff;
  color: #666;
}
@media screen and (max-width: 980px) {
  #form dt {
    padding-top: 0;
    margin-right: 0;
  }
  #form dd {
    padding-top: 10px;
    padding-bottom: 30px;
    width: 100%;
  }
  #form input[type="submit"] {
    font-size: 1.8rem;
    padding: 16px 0;
    width: 240px;
  }
  #form input[type="submit"].back {
    padding: 8px 0;
    width: 200px;
  }
}
.thanks__inner {
  text-align: center;
}
#thanks .contact__phone-wrapper {
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .thanks__inner {
    max-width: 600px;
    text-align: left;
  }
}


#company {
  background: linear-gradient(273.52deg, #AEDCF6 0%, #D7F0FF 100%);
}
#recruit2 {
  background-image: url(../images/otegaru-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
  padding-bottom: min(3vw, 30px);
}
#recruit2 .floatimg {
  transform: translateY(-30px);
  position: relative;
  width: 100%;
  max-width: 700px;
  z-index: 2;
}
#recruit2 .btnimg {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#recruit2 a {
  transition: all .3s ease;
}
#recruit2 a:hover {
  transform: translate(-1px, -1px);
}
#recruit2::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #005D96;
  z-index: 1;
  opacity: .75;
}
#recruit2 .recruit2__inner {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #recruit2 .floatimg {
    margin: 0 auto -12vw;
  }
}
@media screen and (min-width: 768px) {
  #recruit2 .floatimg {
    margin: 0 auto -60px;
  }
}

.scroll-hint-icon {
  top: 20% !important;
}