/*
Theme Name: Lightning-Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

/*
*全体
*/
/*内部リンク移動位置の調整*/
section[id] { 
	 scroll-margin-top: 150px; 
}
/*内部リンク移動位置の調整（スマホ）*/
@media(max-width:781px) {
  section[id] { 
    scroll-margin-top: 30px; 
  }
}
/*iPhone用文字サイズ調整無効*/
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/*ios住所自動リンク無効*/
a[x-apple-data-detectors],
a[x-apple-data-detectors]:hover,
a[x-apple-data-detectors]:focus,
a[x-apple-data-detectors]:active {
  text-decoration: none !important;
  font: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  color: inherit;
}
/*TEL・SMSも無効*/
a[href^="tel"],
a[href^="sms"],
a[href^="mailto"] {
  text-decoration: none !important;
  color: inherit;
}

/*スマホタップ時の色無効*/
a, button {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
/*リンククリック時の色*/
a:active {
  opacity: 0.7 !important;
}

body {
  /*フォント設定*/
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  /*フォントカラー*/
  color: #2f4858;
}
/*TOPスクロールボタン*/
.page_top_btn {
  /*TOPスクロールボタン配色*/
  background-color: rgba(47, 72, 88, 0.8);
  box-shadow: 0 0 0 1px rgba(242, 242, 242, 0.8), 0 0 0 2px rgba(47, 72, 88, 0.8);
}

/*********************
*TOPページ
**********************/
/*
*オープニングアニメーション
*/
#opening-overlay {
  position: fixed; inset: 0;
  z-index: 9999;
  background: #99a29a;
  display: grid; place-items: center;
  opacity: 1; 
  transition: opacity .6s ease;
}
body.is-opening { 
  overflow: hidden; 
}
/*オープニングロゴ枠*/
.opening-inner {
  position: relative;
  /*サイズ画面幅*/
  width: 100svw;
  height: 100svh;
  place-items: center;
}
/*表示ロゴ*/
.opening-logo {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
.opening-logo svg {
  width: 100%;
  height: 100%;
}

/*上部スペース削除*/
.page-id-33 .site-body {
  padding-top: 0;
}

/*コンテンツ：ヘッダー*/
.site-header {
  background-color: #FFF;
}
.site-header-container {
  /*2行にするため折り返し*/
  flex-wrap: wrap;
  padding: 0;
}
/*コンテンツ：スクロール時ヘッダー*/
.header_scrolled.admin-bar .site-header {
  padding: 0.5rem 0;
}

/*ヘッダーロゴエリア*/
.site-header-logo {
  /*全体の25%*/
  width: calc(100% - 75%) !important;
  margin: 0 !important;
  padding: 0 1rem !important;
}
.site-header-logo img {
  /*ロゴの最大表示サイズ*/
  max-height: 90px;
}
@media(max-width:992px) {
  /*スマホではロゴだけ表示する*/
  .site-header-logo {
    width: 100% !important;
  }
  .site-header-logo img {
    margin-left: 0;
  }
  .site-header-logo img {
    /*ロゴの最大表示サイズ*/
    max-height: 70px;
  }
}

/*ヘッダーCTA（ロゴ以外）：全体*/
.header-cta {
  width: calc(100% - 25%);
  display: flex;
}
.header-cta div {
  margin: auto 0;
  text-align: center;
}
/*スクロール時は非表示*/
.header_scrolled .header-cta {
  display: none;
}
/*スマホは非表示*/
@media(max-width:991px) {
  .header-cta {
    display: none;
  }
}

/*ヘッダーCTA：電話番号ブロック*/
.header-cta .cta-tel {
  width: 35%;
  padding-right: 1rem;
}
.header-cta .cta-tel p {
  margin: auto 0;
  text-align: center;
}
/*電話番号テキスト*/
.header-cta .cta-tel .tel-number {
  position: relative;
  padding-left: 1.3rem;
  font-size: 30px;
  color: #cfa209;
}
/*電話番号アイコンの表示*/
.header-cta .cta-tel .tel-number::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-40%);
  width: 55%;
  height: 55%;
  background-image: url("/media/tel-icon-yellow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
/*案内テキスト*/
.header-cta .cta-tel .guide-text {
  font-size: 15px;
  letter-spacing: -0.05em;
}

/*ヘッダーCTA：受付日時ブロック*/
.header-cta .cta-day {
  width: 35%;
  display: flex;
  padding-right: 1rem;
}
/*文章全体*/
.header-cta .cta-day p {
  font-size: 18px;
  margin: 0;
}
/*文章：受付時間*/
.header-cta .cta-day p:first-child {
  width: 20%;
}
/*文章：時間*/
.header-cta .cta-day .day-text {
  width: 80%;
  text-align: left;
  padding-left: 0.5rem;
}

/*ヘッダーCTA：リンクブロック*/
.header-cta .cta-button {
  width: 30%;
  text-align: left;
  margin: auto 0;
}
.header-cta .cta-button p {
  margin-bottom: 0 !important;
}
/*リンクの装飾*/
.header-cta .cta-button a {
  color: #2f4858;
  transition: 0.3s;
  text-decoration: none;
}
/*アイコンの装飾*/
.header-cta .cta-button i {
  width: 1.5rem;
  text-align: center;
}
/*ホバー時の装飾*/
.header-cta .cta-button a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

/*コンテンツ：メニュー*/
/*メニューの最大サイズ*/
.container {
	max-width: 1200px;
}
/*メニュー配置*/
.global-nav--layout--float-right {
  width: 100% !important;
  margin-left: 0 !important;
  justify-content: space-between !important;
}
/*メニュー各項目の幅*/
.global-nav--layout--float-right ul {
  width: 100%;
}
.global-nav--layout--float-right ul li {
  width: calc(100% /7);
  padding: 0.5rem 0.3rem !important;
  transition: 0.5s;
}
.global-nav--layout--float-right ul li > a {
	padding: 0.2rem 0.2rem !important;
}
/*メニュー各項目のホバー時*/
.global-nav--layout--float-right ul li a:hover {
	opacity: 0.7;
	transition: 0.5s;
}
/*フォントカラー*/
.global-nav-name {
	color: #2f4858;
}
/*フォントサイズ*/
.global-nav-list>li .global-nav-name {
	font-size: 14px;
}
/*モバイルヘッダーメニュー展開時の装飾*/
/*背景色*/
.vk-mobile-nav.vk-mobile-nav-drop-in.vk-mobile-nav-open {
  background-color: #d8e6d9;
}
/*フォントカラー*/
.vk-mobile-nav.widget_nav_menu ul li a, .vk-mobile-nav nav ul li a {
  color: #2f4858;
  border-bottom: solid 1px #cfa209;
}
.vk-mobile-nav nav>ul {
  border: none;
}
.vk-mobile-nav nav ul li a {
  padding-left: 1.5rem;
}
/*メニュー各項目のアイコン*/
.vk-mobile-nav nav ul li a::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 60%;
  height: 60%;
  content: "";
  background-image: url("/media/head-line-icon-02.webp");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}

/*コンテンツ：FV*/
/*画像サイズ*/
.content-fv {
  position: relative;
  width: 100vw;
  min-height: 400px;
  height: calc(100svh - 129px);
  max-height: 1000px;
  overflow: hidden;
}
.content-fv figure {
  margin: 0 !important;
  width: 100%;
  min-height: 400px;
  height: calc(100svh - 129px);
  max-height: 1000px;
  overflow: hidden;
}
.content-fv .fv-image-pc img,
.content-fv .fv-image-sp img {
  display: block;
  width:100% !important;
  height: 100% !important;
  /*画面に合わせて調整*/
  object-fit: cover;
  /*拡大した場合縦位置を上、横位置を中心に表示*/
  object-position: center center;
}
@media(max-width:990px) {
  .content-fv {
	max-height: calc(100svh - 70px);
  }
  /*スマートフォンでは縦横共に中心を表示*/
  .content-fv figure {
	height: calc(100svh - 70px);
  }
}
/* 画面が縦長のとき（高さ > 幅） */
@media (orientation: portrait) {
  /*PC用画像非表示*/
  .content-fv .fv-image-pc {
    display: none;
  }
}
/* 画面が横長のとき（幅 > 高さ） */
@media (orientation: landscape) {
  /*SP用画像非表示*/
  .content-fv .fv-image-sp {
    display: none;
  }
}
/*キャッチコピー*/
.content-fv .fv-catch {
  width: fit-content;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  color: #FFF;
  z-index: 1;
  text-align: center;
  vertical-align: middle;
}
/*背景画像*/
.content-fv .fv-catch::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220%;
  height: 220%;
  content: "";
  background-image: url("/media/fv-background.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}
.content-fv .fv-catch p {
  margin: 0 !important;
}
/*キャッチコピー1行目：外壁～*/
.content-fv .fv-catch .catch-line1 {
  /*320-1200:24px-42px*/
  font-size: clamp(1.5rem, 1.091rem + 2.05vw, 2.625rem);
  line-height: 1.2em;
}
/*キャッチコピー2行目：CENTRAL PEACE*/
.content-fv .fv-catch .catch-line2 {
  /*320-1200:18px-38px*/
  font-size: clamp(1.125rem, 0.67rem + 2.27vw, 2.375rem);
}
/*キャッチコピー3行目：‐セントラルピース-*/
.content-fv .fv-catch .catch-line3 {
  /*320-1200:16px-22px*/
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
}
/* 画面が縦長のとき（高さ > 幅） */
@media (orientation: portrait) {
  .content-fv .fv-catch {
    top: 65%;
    left: 8%;
    transform: translateY(0);
  }
  .content-fv .fv-catch::after {
    width: 200%;
    height: 200%;
  }
}

/*
*TOPページ共通項目
*/
/*見出し：h2*/
.content-head-line_2 {
  position: relative;
  margin-bottom: 1rem !important;
  padding-left: 2rem;
  /*320-1200:22px-24px*/
  font-size: clamp(1.375rem, 1.33rem + 0.23vw, 1.5rem);
}
/*見出しh2アイコン*/
.content-head-line_2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 33px;
  content: "";
  background-image: url("/media/head-line-icon-02.webp");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}
/*見出し：h3*/
.content-head-line_3 {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1rem !important;
  /*320-1200:16px-20px*/
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}
/*見出しh3下線*/
.content-head-line_3::after {
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #cfa209;
  content: "";
}
/*カラムブロックのカラム間スペース*/
.content-container {
  gap: 0;
}
/*画像をカラムブロックの高さに合わせる*/
.size-cover,.size-cover img {
  height: 100% !important;
}

/*PCとスマホで画像の表示切替*/
/*スマホ用画像はPCでは非表示*/
.image-sp {
  display: none;
}
/*PC用画像はスマホでは非表示*/
@media(max-width:782px) {
  .image-sp {
    display: block;
  }
  .image-pc {
    display: none;
  }
}

/*
*コンテンツ：ABOUT
*/
.content-about {
  position: relative;
}
/*サブテキスト*/
.content-about::before {
  position: absolute;
  top: -5rem;
  right: 0;
  width: fit-content;
  content: "ABOUT";
  /*320-1200:24px-72px*/
  font-size: clamp(1.5rem, 0.409rem + 5.45vw, 4.5rem);
  opacity: 0.6;
  z-index: 2;
  text-align: right;
}
/*スマホ表示の位置調整*/
@media(max-width:782px) {
  .content-about::before {
    top: -3rem;
  }
}
.content-about .content-container.top {
  position: relative;
}
/*背景：白*/
.content-about .content-container.top::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 100%;
  content: "";
  border-radius: 5px;
  background-color: #FFF;
  z-index: 1;
}
/*背景：薄青*/
.content-about .content-container.top::after {
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  width: 85%;
  height: 100%;
  content: "";
  border-radius: 5px;
  background-color: #e8efff;
  z-index: 0;
}
/*テキストブロック*/
.content-container.top .content-text-block {
  position: relative;
  padding: 1rem 0 2rem 1rem;
  /*重ね位置を一番上*/
  z-index: 2;
}
.content-container.top .content-text-block .content-text {
  padding: 0 1rem;
}
/*スマホ表示の装飾調整*/
@media(max-width:782px) {
  .content-about .content-container.top {
    flex-direction: column-reverse;
  }
  .content-about .content-container.top::before {
    width: 100%;
  }
  .content-about .content-container.top::after {
    bottom: -0.5rem;
    left: 0.5rem;
    width: 100%;
  }
  .content-container.top .content-text-block {
    padding: 0;
  }
  .content-container.top .content-text-block .content-text {
    padding: 1rem;
  }
  .content-container.top .content-image-block {
    padding: 1rem 1rem 0 1rem;
  }
}
/*文章のスペースを調整*/
.content-container.other .content-text-block {
  background-color: #FFF;
  padding-top: 1rem;
}
.content-container.other .content-text-block .content-text {
  padding: 1rem;
}
.content-container .content-image-block {
  z-index: 2;
  padding: 1rem 0;
}

/*
*コンテンツ：PROJECTS
*/
.content-projects {
  position: relative;
  z-index: 0;
}
/*サブテキスト*/
.content-projects::before {
  position: absolute;
  top: -3rem;
  right: 0;
  width: fit-content;
  content: "PROJECTS";
  /*320-1200:24px-72px*/
  font-size: clamp(1.5rem, 0.409rem + 5.45vw, 4.5rem);
  opacity: 0.6;
  z-index: 1;
  text-align: right;
}
/*スマホ表示の位置調整*/
@media(max-width:782px) {
  .content-projects::before {
    top: -1.5rem;
  }
}
.projects-container {
  position: relative;
  gap: 2rem;
}
/*背景色*/
.projects-block {
  position: relative;
  padding: 1rem;
  background-color: #FFF;
  border: solid 1.5px #2f4858;
  border-radius: 5px;
}
/*背景：薄青*/
.projects-block::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 100%;
  height: 100%;
  background-color: #e8efff;
  border-radius: 5px;
  z-index: -1;
  content: "";
}
@media(max-width:782px) {
  .projects-block::before {
    top: 0.7rem;
    left: 0.7rem;
  }
}
/*施工写真文字表示*/
.projects-image.before,
.projects-image.after {
  position: relative;
}
.projects-image.before::before,
.projects-image.after::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  padding-left: 0.5rem;
  background-color: rgba(255, 255, 255, 0.6);
}
/*文字：Before*/
.projects-image.before::before {
  content: "Before";
}
/*文字：After*/
.projects-image.after::before {
  content: "After";
}

/*見出しh3*/
.content-projects h3 {
  /*320-1200:16px-20px*/
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  margin-bottom: 0 !important;
}
/*施工内容*/
.projects-item {
  padding-left: 0.5rem;
  border-bottom: 3px solid #cfa209;
}

/*
*コンテンツ：MENU
*/
.content-menu {
  position: relative;
}
/*サブテキスト*/
.content-menu::before {
  position: absolute;
  top: -3rem;
  right: 0;
  width: fit-content;
  content: "MENU";
  /*320-1200:24px-72px*/
  font-size: clamp(1.5rem, 0.409rem + 5.45vw, 4.5rem);
  opacity: 0.6;
  z-index: 2;
  text-align: right;
}
/*スマホ表示の位置調整*/
@media(max-width:782px) {
  .content-menu::before {
    top: -1.5rem;
  }
}

/*
*コンテンツ：FLOW
*/
.content-flow {
  position: relative;
}
/*サブテキスト*/
.content-flow::before {
  position: absolute;
  top: -3rem;
  right: 0;
  width: fit-content;
  content: "FLOW";
  /*320-1200:24px-72px*/
  font-size: clamp(1.5rem, 0.409rem + 5.45vw, 4.5rem);
  opacity: 0.6;
  z-index: 2;
  text-align: right;
}
/*スマホ表示の位置調整*/
@media(max-width:782px) {
  .content-flow::before {
    top: -1.5rem;
  }
}
/*施工までの流れ*/
.flow-container {
  height: 100%;
}
.flow-block {
  height: 100%;
  gap: 0;
}
.flow-text-block {
  padding-top: 1rem;
  background-color: #FFF;
}
.flow-text {
  padding: 0.5rem 1rem;
  font-size: 14px;
}

@media(max-width:992px) {
  .flow-container {
    flex-wrap: wrap !important;
    flex-direction: column;
  }
}

/*
*コンテンツ：QUESTION
*/
.content-question {
  position: relative;
}
/*サブテキスト*/
.content-question::before {
  position: absolute;
  top: -3rem;
  right: 0;
  width: fit-content;
  content: "QUESTION";
  /*320-1200:24px-72px*/
  font-size: clamp(1.5rem, 0.409rem + 5.45vw, 4.5rem);
  opacity: 0.6;
  z-index: 2;
  text-align: right;
}
/*スマホ表示の位置調整*/
@media(max-width:782px) {
  .content-question::before {
    top: -1.5rem;
  }
}
.question-block {
  position: relative;
  background-color: #FFF;
  margin-bottom: 2rem !important;
  padding: 1rem 2rem;
  border-radius: 10px;
}
.question-block::after {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 100%;
  height: 100%;
  background-color: #e8efff;
  border-radius: 10px;
  content: "";
  z-index: -1;
}
@media(max-width:782px) {
  .question-block {
    padding: 0.5rem 0.5rem;
  }
}
/*質問文*/
.vk_faq .vk_faq_title {
  padding: 0.8rem 0.8rem 1rem 2rem;
	border-bottom: 2px solid #cfa209;
}
.vk_faq .vk_faq_title h3 {
  margin-bottom: 0 !important;
  /*320-1200:16px-20px*/
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}
/*質問文の先頭文字*/
.vk_faq .vk_faq_title:before {
  top: 0;
  height: 100%;
  padding-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  color: #d0104c;
  font-size: 24px;
}
/*回答文*/
.vk_faq .vk_faq_content {
	margin-left: 1rem !important;
	padding-left: 2rem;
  font-weight: bold;
}
/*回答文の先頭文字*/
.vk_faq .vk_faq_content:before {
  top: 0;
  padding-top: 7px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  color: #90b44b;
  font-size: 24px;
}

/*
*コンテンツ：RECRUIT
*/
.content-recruit {
  position: relative;
}
/*サブテキスト*/
.content-recruit::before {
  position: absolute;
  top: -3rem;
  right: 0;
  width: fit-content;
  content: "RECRUIT";
  /*320-1200:24px-72px*/
  font-size: clamp(1.5rem, 0.409rem + 5.45vw, 4.5rem);
  opacity: 0.6;
  z-index: 2;
  text-align: right;
}
/*スマホ表示の位置調整*/
@media(max-width:782px) {
  .content-recruit::before {
    top: -1.5rem;
  }
}
/*求人文章*/
.content-recruit p {
  padding: 0 0 1rem 1rem ;
}
@media(max-width:782px) {
  .content-recruit p {
    margin-top: 1rem !important;
    padding: 1rem;
  }
}

/*
*コンテンツ：COMPANY
*/
.content-company {
  position: relative;
}
/*サブテキスト*/
.content-company::before {
  position: absolute;
  top: -3rem;
  right: 0;
  width: fit-content;
  content: "COMPANY";
  /*320-1200:24px-72px*/
  font-size: clamp(1.5rem, 0.409rem + 5.45vw, 4.5rem);
  opacity: 0.6;
  z-index: 2;
  text-align: right;
}
/*スマホ表示の位置調整*/
@media(max-width:782px) {
  .content-company::before {
    top: -1.5rem;
  }
}
/*会社概要*/
.company-info-container {
  padding: 2rem;
  /*グラデーション*/
  background: linear-gradient(110deg,#FFF 45%, #e8efff 55%);
  border-radius: 15px;
}
.company-info-container h3 {
  margin-bottom: 0rem !important;
  /*320-1200:16px-20px*/
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}
.company-info-container .company-info {
  margin-left: 1rem;
  border-bottom: solid 2px #cfa209;
}
/*電話番号*/
.tel-number {
  position: relative;
  padding-left: 1rem;
}
/*電話番号アイコン*/
.tel-number::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-40%);
  width: 55%;
  height: 55%;
  background-image: url("/media/tel-icon-navy.webp");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
/*Googleマップ埋め込み*/
.company-map {
  border: solid 1.5px #2f4858;
  max-height: 250px !important;
  margin: 0 0 0.5rem 0;
  overflow: hidden;
}
.company-map iframe {
  margin-bottom: 0 !important;
}
/*対象地域*/
.service-area {
  padding: 0.5rem;
  border: solid 2px #2f4858;
}
@media(max-width:782px) {
  .company-info-container {
    padding: 1.5rem;
    margin-top: 1rem !important;
  }
  .company-info-container .company-info {
    margin-left: 0.5rem;
  }
  .company-info-container .company-info .business-hours {
    font-size: 13px;
  }
}

/*
*コンテンツ：CONTACT
*/
.content-contact {
  position: relative;
}
/*サブテキスト*/
.content-contact::before {
  position: absolute;
  top: -3rem;
  right: 0;
  width: fit-content;
  content: "CONTACT";
  /*320-1200:24px-72px*/
  font-size: clamp(1.5rem, 0.409rem + 5.45vw, 4.5rem);
  opacity: 0.6;
  z-index: 2;
  text-align: right;
}
/*スマホ表示の位置調整*/
@media(max-width:782px) {
  .content-contact::before {
    top: -1.5rem;
  }
}
.content-contact p {
  padding-left: 1rem;
}

/*
*コンテンツ：フッター
*/
/*背景色*/
.site-footer {
  background-color: #FFF;
}
/*フッターウィジェットエリア1～2を1列目*/
.site-footer-content .row .col-lg-4:not(:last-child) {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}
/*フッターウィジェットエリア3を2列目*/
.site-footer-content .row .col-lg-4:last-child {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}
/*コピーライト2行目を非表示*/
.container.site-footer-copyright p:nth-child(2) {
  display: none;
}
.site-footer-content .widget {
  margin-bottom: 0 !important;
}
/*フッターロゴ*/
.footer-area1-logo {
  width: 20rem;
}
/*フッター会社情報*/
.footer-area1-address {
  padding-left: 2rem;
}
.footer-address-text {
  margin-bottom: 0 !important;
}
.footer-address-text.name {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}
.footer-address-text.bussines-hours {
  gap: 1rem;
}
.footer-address-text.bussines-hours p {
  margin-bottom: 0 !important;
}
/*フッターCTA*/
.footer-area2-text.headline {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}
.footer-area2-text {
  margin-bottom: 0 !important;
}
aside .service-area {
  margin-bottom: 0 !important;
}
/*フッターメニュー*/
.footer-area3-menu {
  width: 100%;
  justify-content: center !important;
  flex-wrap: wrap !important;
  margin: 2rem 0 3rem 0;
  text-align: center;
  gap: 0;
}
.footer-area3-menu p {
  min-width: calc(100% / 6);
  padding: 0.5rem 1rem;
}
/*フッターメニュー装飾*/
.site-footer-content a {
  text-decoration: none;
  color: #2f4858;
  transition: 0.3s;
}
/*フッターメニューホバー時装飾*/
.site-footer-content a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
/*スマホ表示用の調整*/
@media(max-width:782px) {
  .row {
    flex-direction: column;
    gap: 1rem;
  }
  .site-footer-content .row .col-lg-4:not(:last-child) {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .footer-area1-logo {
    width: 70%;
    margin: 0 auto;
  }
  .footer-area1-address {
    text-align: center;
    padding: 0;
  }
  .footer-area1-address div {
    display: inline-block;
    text-align: left;
  }
  .bussines-hours p:nth-child(2) {
    padding-left: 0.5rem;
  }
}

/*その他ページ共通項目*/
/*固定ページタイトル*/
.page-header-title {
  width: fit-content;
  position: relative;
  z-index:1;
  margin: 0 auto !important;
  /*320-1200:24px-28px*/
  font-size: clamp(1.625rem, 1.534rem + 0.45vw, 1.875rem) !important;
  color: #FFF;
}
/*固定ページタイトル背景画像*/
.page-header-title::before {
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url("/media/head-line-icon-01.webp");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  z-index:-1;
}
/*h2見出しフォントサイズ*/
.other-h2-headline {
  /*320-1200:22px-24px*/
  font-size: clamp(1.375rem, 1.33rem + 0.23vw, 1.5rem);
}

/**********************
プライバシーポリシー
***********************/
/*固定ページタイトル背景画像位置調整*/
.post-name-privacy-policy .page-header-title::before {
  transform: translate(-50%, -43%);
  width: 135%;
  height: 290%;
}
/*h2見出し*/
.policy-headline {
  margin-bottom: 1rem !important;
  border-bottom: solid 2px #cfa209
}
/*本文*/
.policy-text {
  padding-left: 0.5rem;
}
/*本文箇条書き*/
.policy-text-ul {
  margin-left: 1rem !important;
}

/*********************
お問い合わせ
**********************/
/*固定ページタイトル背景画像位置調整*/
.post-name-contact .page-header-title::before {
  transform: translate(-50%, -43%);
  width: 200%;
  height: 250%;
}
/*本文*/
.post-name-contact p {
  padding-left: 0.5rem;
}
/*コンタクトページ見出しh2*/
.contact-h2-headline {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 0.5rem !important;
  padding-left: 1.5rem;
  /*320-1200:22px-24px*/
  font-size: clamp(1.375rem, 1.33rem + 0.23vw, 1.5rem);
}
/*コンタクトページ見出し：見出しアイコン*/
.contact-h2-headline::before {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("/media/head-line-icon-02.webp");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}
/*お問い合わせ項目ブロック：Instagram＆電話*/
.contact-content-section {
  z-index: 1;
}
.contact-content-block {
  position: relative;
  margin: 0 1rem 3rem 1rem;
  padding: 1rem;
  background-color: #FFF;
  border-radius: 10px;
}
/*背景：薄青*/
.contact-content-block::before {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 5px;
  background-color: #e8efff;
  z-index: -1;
}
.contact-head-line_3 {
  /*320-1200:16px-20px*/
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  margin-bottom: 0 !important;
}
/*電話番号ボタン*/
.contact-tel-button a.vk_button_link span.vk_button_link_txt {
  position:relative;
  padding-left: 1rem;
}
/*電話アイコン*/
.contact-tel-button a span::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-40%);
  width: 55%;
  height: 55%;
  background-image: url("/media/tel-icon-white.webp");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
/*お問い合わせフォームテキスト・ボタン*/
.c_list,.submit {
  margin-bottom: 1rem !important;
  padding-left: 1rem;
}
.c_list p {
  margin-bottom: 0.5rem !important;
}
/*必須*/
.rqd {
  color: #d0104c;
}
.submit {
  text-align: center;
}

/*********************
求人情報
**********************/
/*固定ページタイトル背景画像位置調整*/
.post-type-recruit-info .page-header-title::before {
  transform: translate(-50%, -36%);
  width: 250%;
  height: 250%;
}
/*公開日・編集日・ユーザー情報非表示*/
.entry-meta {
  display: none;
}
/*固定ページタイトルフォントサイズ*/
.entry-title {
  /*320-1200:24px-28px*/
  font-size: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem);
}
/*求人情報概要文*/
.overview-text {
  padding-left: 0.5rem;
}
/*求人情報*/
.jobs-infomation {
  position: relative;
  padding-top: 1rem;
  z-index: 1;
}
/*求人情報：見出し*/
.recruitment-h2-headline {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 0.5rem !important;
  padding-left: 1.5rem;
  /*320-1200:22px-24px*/
  font-size: clamp(1.375rem, 1.33rem + 0.23vw, 1.5rem);
}
/*求人情報：見出しアイコン*/
.recruitment-h2-headline::before {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("/media/head-line-icon-02.webp");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}
.jobs-infomation p {
  margin-bottom:0 !important;
}
/*各求人情報*/
.jobs-infomation-content {
  position: relative;
  margin: 0 1rem 3rem 1rem;
  padding: 1rem;
  background-color: #FFF;
  border-radius: 10px;
}
/*求人情報背景：薄青*/
.jobs-infomation-content::before {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 5px;
  background-color: #e8efff;
  z-index: -1;
}
/*Googleマップ埋め込み*/
.job-place-map {
  margin-top:0.5rem;
  border: solid 1px #2f4858;
}
.job-place-map iframe {
  margin-bottom: 0 !important;
}
/*求人情報本文とのスペース*/
.entry-footer {
  margin-top: 3rem !important;
}
/*電話お問合せボタン*/
.job-contact-btn {
  max-width: 250px;
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  background-color: #2f4959;
  transition: 0.3s;
  text-align: center;
}
.job-contact-btn:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.job-contact-btn span {
  position: relative;
  color: #FFF;
  padding-left: 1rem;
}
.job-contact-btn span:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-40%);
  width: 15px;
  height: 15px;
  background-image: url("/media/tel-icon-white.webp");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
/*一覧ページの新着表示削除*/
.vk_post_title_new {
  display: none;
}

/*
*フッターInstagramアイコン
*/
.footer-instagram {
  font-size: 18px;
}

/*
*スマホ表示用メニュー横Instagramアイコン
*/
.sp-instagram-link {
  opacity: 0;
  pointer-events: none;
  position: fixed !important;
  right: 85px;
  top: 17px;
  width: 35px;
  height: 35px;
  margin-bottom: 0 !important;
  z-index: 2000;
}
@media(max-width:991px) {
  .sp-instagram-link {
    opacity: 1;
    pointer-events: auto;
  }
}

/*
*スマホ表示ヘッダーメニュー固定
*/
@media(max-width:991px) {
  body .site-header {
	position: fixed !important;
    height: 70px !important;
  }
  body .site-header .site-header-container {
    height: 70px !important;
  }
  body .site-header .site-header-container  .site-header-logo {
    display: block !important;
  }
  body.page-id-33 .site-body {
	margin-top: 70px !important;
  }
  
}

/*
*スマホ用展開メニューロゴ＆お問合せ情報
*/
/*モバイルヘッダーメニューボタン*/
.vk-mobile-nav-menu-btn {
  top: 17px;
  right: 25px !important;
}
.vk-mobile-nav-menu-btn:active {
  opacity: 0.7 !important;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
/*ヘッダーメニュー内ロゴ*/
.sp-menu-img {
  max-width: 200px;
}
.sp-menu-bottom-area {
  margin: 0 !important;
  padding: 1.5rem 0.5rem;
}
.sp-menu-bottom-content {
  margin: 0 auto;
}
.info-container {
  gap: 0;
}
/*電話番号*/
.info-content-tel .tel-number {
  position: relative;
  width: fit-content;
  padding-left: 1.2rem;
  color: #d6ac24;
  /*320px-990px:18px-32px*/
  font-size: clamp(1.125rem, 0.707rem + 2.09vw, 2rem);
}
.info-content-tel .tel-number::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-43%);
  width: 100%;
  height: 50%;
  background-image: url("/media/tel-icon-yellow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.info-content-tel-text {
  width: fit-content;
  margin: 0 auto;
}
.tel-text {
  width: fit-content;
  margin-top: 0 !important;
  /*320px-990px:10px-18px*/
  font-size: clamp(0.625rem, 0.386rem + 1.19vw, 1.125rem);
  text-align: center;
}
/*受付時間*/
.info-content-time-text {
  width: fit-content;
  margin: 0 auto;
}
.time-text1 {
  width: fit-content;
  margin-top: 0 !important;
  text-align: center;
  /*320px-990px:13px-21px*/
  font-size: clamp(0.813rem, 0.574rem + 1.19vw, 1.313rem);
}
@media(max-width:460px) { 
  .time-text1 {
    text-align: left;
  }
}
/*リンクテキスト*/
.link-text-contact a,
.link-text-instagram a {
  text-decoration: none;
  color: #2f4858;
}
.link-text-contact {
  margin-top: 1rem !important;
  /*320px-990px:13px-19px*/
  font-size: clamp(0.813rem, 0.574rem + 1.19vw, 1.313rem);
  text-align: center;
}
.link-text-instagram {
  /*320px-990px:13px-19px*/
  font-size: clamp(0.813rem, 0.574rem + 1.19vw, 1.313rem);
  text-align: center;
}

.page-id-67 .page-header,
.page-id-61 .page-header,
.postid-125 .page-header {
	margin-top: 70px !important;
}

/*
*口コミ評価研究所インタビューセクション
*/
.content-about .content-container.bottom {
  position: relative;
}
/*背景：白*/
.content-about .content-container.bottom::before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 100%;
  content: "";
  border-radius: 5px;
  background-color: #FFF;
  z-index: 1;
}
/*背景：薄青*/
.content-about .content-container.bottom::after {
  position: absolute;
  bottom: -1rem;
  right: 2rem;
  width: 85%;
  height: 100%;
  content: "";
  border-radius: 5px;
  background-color: #e8efff;
  z-index: 0;
}
/*テキストブロック*/
.content-container.bottom .content-text-block {
  position: relative;
  padding: 1rem 0 2rem 1rem;
  /*重ね位置を一番上*/
  z-index: 2;
}
.content-container.bottom .content-text-block .content-text {
  padding: 0 1rem;
}
/*スマホ表示の装飾調整*/
@media(max-width:782px) {
  .content-about .content-container.bottom::before {
    width: 100%;
  }
  .content-about .content-container.bottom::after {
    bottom: -0.5rem;
    left: 0.5rem;
    width: 100%;
  }
  .content-container.bottom .content-text-block {
    padding: 0;
  }
  .content-container.bottom .content-text-block .content-text {
    padding: 1rem;
  }
  .content-container.bottom .content-image-block {
    padding: 1rem 1rem 0 1rem;
  }
}
/*
*会社概要：口コミ評価研究所バナー
*/
.company-info-container .banner-img {
  max-width: 400px;
}