@charset "UTF-8";
@import url(all.css);
/*rootの変数宣言*/
:root {
  /*============================== 
      カラー    
  ==============================*/
  --color-font: #2e2924;
  --color-white: #ffffff;
  --color-orange: #f76900;
  --color-navy: #124061;
  --color-gray: #b9b3ad;
  --color-beige: #f8e5c8;
  /*カレントカラー*/
  --color-current: #f76900;
  /*テキストリンクカラー*/
  --color-textlink: #f76900;
  /*必須ボタンカラー*/
  --color-required: #f76900;
  /*任意ボタンカラー*/
  --color-optional: #f76900;
  /*ラジオボタンカラー*/
  --color-radio: #f76900;
  /*チェックボタンカラー*/
  --color-check: #f76900;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Outfit", sans-serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.8rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2.333;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.05em;
}

/*rootの変数宣言*/
:root {
  /*============================== 
      カラー    
  ==============================*/
  --color-font: #2e2924;
  --color-white: #ffffff;
  --color-orange: #f76900;
  --color-navy: #124061;
  --color-gray: #b9b3ad;
  --color-beige: #f8e5c8;
  /*カレントカラー*/
  --color-current: #f76900;
  /*テキストリンクカラー*/
  --color-textlink: #f76900;
  /*必須ボタンカラー*/
  --color-required: #f76900;
  /*任意ボタンカラー*/
  --color-optional: #f76900;
  /*ラジオボタンカラー*/
  --color-radio: #f76900;
  /*チェックボタンカラー*/
  --color-check: #f76900;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Outfit", sans-serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.8rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2.333;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.05em;
}

/*opacity含めたカラー指定あればここで定義*/
/*========================
    default
========================*/
html {
  font-size: 62.5%;
}

a[href^="tel:"] {
  pointer-events: none;
}

.pc-none {
  display: none !important;
}

.wrapper {
  min-width: 1280px;
  max-width: 1920px;
  margin-inline: auto;
}

.container {
  /*ヘッダー追従の時はここにmax-width:1920px;,overflow-x:hidden;をかける*/
}

.com-inbox {
  width: 1080px;
}

/*パンくずリスト*/
.breadcrumb {
  margin-top: 5rem;
}
.breadcrumb__list {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  gap: 1em;
}
.breadcrumb__item {
  display: flex;
  line-height: 1;
  font-size: 1.6rem;
}
.breadcrumb__item::after {
  content: ">";
  margin-left: 1em;
  pointer-events: none;
}
.breadcrumb__item:last-child {
  display: block;
  max-width: 23rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb__item:last-child::after {
  display: none;
}

/*==============================
    各種ホバー処理
==============================*/
/*ロゴ*/
.logo a:hover {
  transition: opacity 0.3s;
}
.logo a:hover:hover {
  opacity: 0.5;
}

/*パンくずリスト*/
.breadcrumb__item a {
  transition: all 0.3s;
}
.breadcrumb__item a:hover {
  transition: opacity 0.3s;
}
.breadcrumb__item a:hover:hover {
  opacity: 0.5;
}

/*ヘッダー*/
.header .ig {
  transition: all 0.3s;
}
.header .ig:hover {
  opacity: 0.5;
}

/*フッター*/
.footer .ig {
  transition: all 0.3s;
}
.footer .ig:hover {
  opacity: 0.5;
}

/*MV*/
.mv__item a {
  transition: all 0.3s;
}
.mv__item a:hover {
  opacity: 0.5;
}

/*ボタン*/
.com-link__btn {
  transition: all 0.3s;
}
.com-link__btn:hover {
  opacity: 0.5;
}

.com-btn {
  transition: all 0.3s;
}
.com-btn::after {
  transition: all 0.3s;
}
.com-btn:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
}
.com-btn:hover::after {
  background: url(../img/common/arw_n.png) top left/contain no-repeat;
}

.black-btn {
  transition: all 0.3s;
}
.black-btn::after {
  transition: all 0.3s;
}
.black-btn:hover {
  background-color: var(--color-white);
  color: var(--color-font);
}
.black-btn:hover::after {
  background: url(../img/common/arrow_b.png) top left/contain no-repeat;
}

.com-btn-o {
  transition: all 0.3s;
}
.com-btn-o:hover {
  opacity: 0.5;
}

.line-btn {
  transition: all 0.3s;
}
.line-btn::after {
  transition: all 0.3s;
}
.line-btn:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
}
.line-btn:hover::after {
  background: url(../img/common/arw_n.png) top left/contain no-repeat;
}

.com_chart .chart_btn_list a {
  transition: all 0.3s;
}
.com_chart .chart_btn_list a:hover {
  background-color: var(--color-font);
  color: var(--color-beige);
}

/*ナビ*/
.nav-menu__item a {
  transition: all 0.3s;
}
.nav-menu__item a:hover {
  transition: opacity 0.3s;
}
.nav-menu__item a:hover:hover {
  opacity: 0.5;
}

/*テキストリンク*/
.com-textlink {
  transition: all 0.3s;
}
.com-textlink:hover {
  transition: opacity 0.3s;
}
.com-textlink:hover:hover {
  opacity: 0.5;
}

/*お問い合わせ完了（トップへ戻る）*/
.complete__btn {
  transition: all 0.3s;
}
.complete__btn:hover {
  transition: opacity 0.3s;
}
.complete__btn:hover:hover {
  opacity: 0.5;
}

/*追従ボタン*/
.follow_btn {
  transition: all 0.3s;
}
.follow_btn:hover {
  opacity: 0.8;
  right: 0;
}

/*フッターナビ*/
.footer-nav__item a {
  transition: all 0.3s;
}
.footer-nav__item a:hover {
  opacity: 0.5;
}
.footer small a:hover {
  opacity: 0.5;
}

/*==============================
    ヘッダー
==============================*/
.header {
  padding-top: 5rem;
  padding-inline: clamp(47px, 3.65vw, 70px);
}

/*==============================
    ナビゲーション
==============================*/
.nav-menu__list {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/common/100×100_pattern03.png) top left/100px 100px repeat;
}
.nav-menu__item {
  position: relative;
  z-index: 0;
  font-size: 2.4rem;
}
.nav-menu__item::after {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  aspect-ratio: 4/45;
  width: 0.4rem;
  background: url(../img/common/nav-line.svg) top left/100% 100% no-repeat;
}
.nav-menu__item:last-child::after {
  display: none;
}
.nav-menu__link {
  padding-inline: 4.5rem;
  line-height: 1;
  padding-block: 4.3rem 3.5rem;
}

/*==============================
    メインビジュアル
==============================*/
.mv__item a::before {
  width: clamp(47px, 3.65vw, 70px);
}
.mv__title {
  background: url(../img/sv/sv-title-dot.svg) top clamp(13px, 1.04vw, 20px) left clamp(13px, 1.04vw, 20px)/clamp(7px, 0.52vw, 10px) auto no-repeat, url(../img/sv/sv-title-dot.svg) top clamp(13px, 1.04vw, 20px) right clamp(13px, 1.04vw, 20px)/clamp(7px, 0.52vw, 10px) auto no-repeat, url(../img/sv/sv-title-dot.svg) bottom clamp(13px, 1.04vw, 20px) left clamp(13px, 1.04vw, 20px)/clamp(7px, 0.52vw, 10px) auto no-repeat, url(../img/sv/sv-title-dot.svg) bottom clamp(13px, 1.04vw, 20px) right clamp(13px, 1.04vw, 20px)/clamp(7px, 0.52vw, 10px) auto no-repeat, url(../img/mv/title-bg.png) top left/100% 100% no-repeat;
  padding: clamp(30px, 2.34vw, 45px) 0;
  min-height: clamp(140px, 10.94vw, 210px);
  gap: clamp(17px, 1.3vw, 25px);
}
.mv__title .main {
  font-size: clamp(29px, 2.29vw, 44px);
}
.mv__title .sub {
  font-size: clamp(14px, 1.09vw, 21px);
}

/*==============================
    サブビジュアル
==============================*/
.sv__title {
  min-width: 62rem;
}

/*==============================
    共通テーブル
==============================*/
.com-table tr th {
  width: 35rem;
}

/*==============================
    共通ボタン
==============================*/
.com-btn-o {
  width: 40rem;
  height: 7rem;
}

.line-btn {
  width: 38rem;
  height: 7rem;
}

/*==============================
    TOP
==============================*/
.top-worries {
  padding-block: 14rem 14.7rem;
}
.top-worries .com-title01 {
  margin-bottom: 5.5rem;
}
.top-worries .com-title01 .ja {
  line-height: 1.5;
}
.top-worries__item {
  width: 48rem;
}

.top-answer {
  padding-block: 11.6rem 10.6rem;
}

.top-diagnosis {
  padding-block: 14.1rem 14.8rem;
}
.top-diagnosis::before {
  top: 47.6rem;
  right: calc(50% + 38rem);
}
.top-diagnosis::after {
  top: 20.5rem;
  left: calc(50% + 37rem);
}
.top-diagnosis .com-title01 {
  margin-bottom: 6rem;
}

.com_chart .chart_btn_list a {
  width: 40rem;
  height: 10rem;
}
.com_chart .com-btn-o {
  width: 25rem;
  height: 6rem;
}

.result_chart .black-btn,
.result_chart .com-btn {
  width: 45rem;
  height: 8rem;
}
.result_chart .com-btn-o {
  width: 25rem;
  height: 6rem;
}

.top-recruitment {
  padding-block: 19rem 16rem;
  background: url(../img/top/deco_top.png) top 3rem left 0/100% auto no-repeat, url(../img/top/img-recruitment01.jpg) top 19rem right calc(50% + 53rem)/22rem auto no-repeat, url(../img/top/img-recruitment02.jpg) bottom 16rem right calc(50% + 45rem)/18rem auto no-repeat, url(../img/top/img-recruitment03.jpg) top 19rem left calc(50% + 53rem)/22rem auto no-repeat, url(../img/top/img-recruitment04.jpg) bottom 16rem left calc(50% + 45rem)/18rem auto no-repeat;
}
.top-recruitment .com-title01 {
  margin-bottom: 6rem;
}

.top-contact {
  padding-block: 14.9rem 14.7rem !important;
}
.top-contact::after {
  bottom: 0;
  left: calc(50% + 42rem);
  width: 20rem;
}

.top-blog {
  padding-block: 15rem 26rem;
}
.top-blog .com-title01 {
  margin-bottom: 0;
}
.top-blog .com-inbox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.top-blog__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14.5rem;
}
.top-blog .com-btn-o {
  width: 30rem;
  height: 7rem;
}
.top-blog .com-blog__list {
  width: 62.3rem;
  flex-shrink: 0;
}

/*==============================
    サービス
==============================*/
.service-section {
  padding-block: 7.7rem 14.4rem;
}
.service-section .com-title01 {
  margin-bottom: 6rem;
}
.service-section__item {
  padding: 6rem 7rem 5.5rem 7rem;
}
.service-section__image {
  flex-shrink: 0;
  width: 42rem;
  aspect-ratio: 420/350;
}
.service-section .com-btn {
  width: 47rem;
  height: 7rem;
}

.service-contact::after {
  bottom: 11.2rem;
  left: calc(50% + 42.4rem);
  width: 20rem;
}

/*==============================
    かんたん見積り診断
==============================*/
.diagnosis-section {
  padding-block: 7.7rem 14.4rem;
}
.diagnosis-section .com-title01 {
  margin-bottom: 6rem;
}
.diagnosis-section__item {
  padding: 6rem 7rem 5.5rem 7rem;
}
.diagnosis-section__wrap {
  align-items: flex-start;
}
.diagnosis-section__image {
  flex-shrink: 0;
  width: 42rem;
  aspect-ratio: 1;
}

.diagnosis-contact::after {
  bottom: 11.2rem;
  left: calc(50% + 42.4rem);
  width: 20rem;
}

/*==============================
    採用情報
==============================*/
.recruit-job {
  padding-block: 7.5rem 14.7rem;
}
.recruit-job__item:nth-child(even) {
  flex-direction: row-reverse;
}
.recruit-job__image {
  flex-shrink: 0;
  width: 48rem;
}

.recruit-section {
  padding-block: 15rem;
}

.recruit-apply::after {
  bottom: 2rem;
  left: calc(50% + 41.6rem);
}

/*==============================
    会社概要
==============================*/
.company-staff {
  padding-block: 7.5rem 14.6rem;
}
.company-staff__item {
  padding: 6rem 7rem 6.4rem 7rem;
}
.company-staff__image {
  flex-shrink: 0;
  width: 40rem;
  aspect-ratio: 400/420;
}

.company-section {
  padding-block: 15rem 26rem;
}
.company-section .com-title01 {
  margin-bottom: 6rem;
}

/*==============================
    共通セクション
==============================*/
.com-link {
  padding-block: 13.5rem;
}

.com-contact {
  padding-block: 15rem 25.8rem;
}
.com-contact .com-title01 {
  margin-bottom: 5rem;
}
.com-contact__box {
  gap: 4.7rem;
  justify-content: center;
}
.com-contact__box::before {
  order: 1;
  content: "";
  aspect-ratio: 4/69;
  width: 4px;
  background: url(../img/recruit/line-apply.svg) top left/contain no-repeat;
}
.com-contact__box .com-tel {
  order: 0;
}
.com-contact__box .line-btn {
  order: 2;
}

/*==============================
    お知らせ一覧
==============================*/
.blog {
  padding-block: 7.5rem 26rem;
}

/*お知らせ共通部分*/
.com-blog__list {
  width: 80rem;
}
.com-blog__item a:hover {
  transition: opacity 0.3s;
}
.com-blog__item a:hover:hover {
  opacity: 0.5;
}

/*タグリスト(PC)
-----------------------------*/
.tag-select {
  text-align: right;
  margin-bottom: 5rem;
}
.tag-select__box {
  min-width: 24rem;
}
.tag-select__box::after {
  right: 1.8rem;
}
.tag-select__dropdown {
  line-height: 1;
  padding: 12px 48px 12px 12px;
  background-color: var(--color-white);
}

/*==============================
    お知らせ詳細
==============================*/
.blog-detail {
  padding-block: 10rem 20rem;
}
.blog-detail__box {
  padding: 4rem 4rem 6rem 4rem;
}

/*==============================
  お問い合わせ
==============================*/
.contact-contact {
  padding-block: 7.5rem 15rem;
}
.contact-contact:after {
  bottom: 0;
  left: calc(50% + 42.3rem);
}

.contact {
  padding-block: 14rem 26.3rem;
}
.contact .com-table {
  margin-bottom: 3rem;
  table-layout: fixed;
}
.contact .com-table th {
  width: 35%;
  padding-inline: 2rem;
}
.contact .com-btn {
  margin-inline: auto;
  margin-top: 5rem;
  height: 7rem;
  width: 36rem;
}
.contact .contact-submits-wrap {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.contact .contact-submits-wrap .com-btn {
  margin-inline: 0;
}

/*==============================
  お問い合わせ完了
==============================*/
.complete {
  padding-block: 10rem 20rem;
}
.complete__box {
  text-align: center;
}
.complete__btn {
  margin-top: 5rem;
}
.complete__btn:hover {
  opacity: 0.5;
}

/*==============================
　プライバシーポリシー
==============================*/
.privacy {
  padding-block: 10rem 20rem;
}
.privacy__box {
  margin-bottom: 5rem;
}
.privacy__box:last-child {
  margin-bottom: 0;
}

/*==============================
    サイトマップ
==============================*/
.site {
  padding-block: 10rem 20rem;
}
.site .com-inbox {
  width: 70rem;
}
.site__list {
  display: flex;
  flex-direction: column;
}
.site__item {
  height: 7.5rem;
}
.site__item a {
  padding: 1rem;
}
.site__item a::after {
  width: 1rem;
  transform: rotate(-45deg);
}
.site__item a:hover {
  transition: all 0.3s;
  opacity: 0.5;
}
.site__item a:hover::after {
  transform: rotate(-45deg) translate(5px, 5px);
  transition: all 0.3s;
}

/*==============================
    このページは存在しません
==============================*/
.e404 {
  padding-block: 10rem 20rem;
}
/*==============================
    フッター
==============================*/
.footer {
  padding-bottom: 10rem;
}
.footer__inner {
  width: 1080px;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
}
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-auto-flow: column;
  gap: 2.5rem 3.2rem;
}
.footer-nav__item {
  line-height: 1;
}
.footer .nav-item--privacy, .footer .nav-item--site {
  display: none;
}
.footer__wrap {
  margin-top: 4.8rem;
  display: flex;
  justify-content: space-between;
  width: 1080px;
  margin-inline: auto;
}
.footer__wrap .footer-nav__list {
  font-size: 1.5rem;
  display: flex;
  gap: 1.25em;
}
.footer__wrap .footer-nav__item {
  line-height: 1;
  display: flex;
  gap: 1.25em;
  align-items: center;
}
.footer__wrap .footer-nav__item::after {
  content: "|";
}
.footer__wrap .footer-nav__item:last-child::after {
  display: none;
}
.footer__box:last-of-type {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}