@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/*
Theme Name: Lightning Child
Theme URI: https://lightning.vektor-inc.co.jp/
Template: lightning
Description: lightningの子テーマ
Author: design hearts
Version: 0.1.0
*/
@charset "utf-8";

/************************************************
 * 独自のデザインを必要に応じて書き足す
 ************************************************/

/* 色等の基本定義 */
:root {
  /* アクセントカラー(差し色) */
  --color-accent: #FF9933;
  /* メインカラー */
  --color-main: #dd4e22;
  /* --color-main: var(--vk-color-primary); */
  /* サブカラー */
  --color-sub: #FABA31;
  /* サブカラー2 */
  --color-sub2: rgba(252,203,116,1);
  /* サブカラー3 */
  --color-sub3: rgba(249,90,86,1);
  /* サブカラー4 */
  --color-sub4: #ededed;
  /* グラデーションカラー */
  --color-gra: linear-gradient(150deg, var(--color-main), var(--color-accent));
  /* linear-gradient(-40deg, var(--color-main), #f9e1e4); */
  /* グラデーションカラー */
  --color-gra2: linear-gradient(90deg, var(--color-sub2) 0%, var(--color-sub3) 100%);
  /* リンクカラー */
  --color-link: #f3976c;
  /* リンクカラー(hovar) */
  --color-link-hovar: var(--color-main);
  /* 黒 */
  --color-blk: var(--color_text);
  /* メインフォント */
  --font-main: "YakuHanJP", "NotoSansJP", sans-serif;
  /* 見出し */
  --font-head: "YakuHanJP", 'Shippori Mincho B1', "NotoSansJP", serif;
  /* サブフォント */
  --font-sub: "YakuHanJP", 'Shippori Mincho B1', serif;
  /* キャッチコピーフォント */
  --font-cat: "YakuHanJP", 'Shippori Mincho B1', serif;
  /* PC横幅 */
  --pc-width: 1280px;
  /* タブレット横幅 */
  --tb-width: 768px;
  /* スマホ横幅 */
  --sp-width: 430px;
}

body {
  font-family: var(--font-main);
  background: #F3F2EA;
}



/* スマホ表示 */
.sp,
.sp-br,
span.sp-br {
  display: none;
}

/* PC＋タブレット表示 */
.pc {
  display: inline-block;
}

.not-sp {
  display: block;
}

.pc-text-right {
  text-align: right;
}

@media screen and (max-width: 768px) {

  /* タブレット＋スマホの改行 */
  .tb-br {
    display: block;
  }
}

@media screen and (max-width: 430px) {

  /* スマホの改行 */
  .sp-br,
  span.sp-br,
  p span.sp-br,
  h3.sp {
    display: block;
  }

  .btn03 span.sp-br {
    padding: 0;
  }

  .sp-text-left {
    text-align: left;
  }

  .sp-text-right {
    text-align: right;
  }

  .sp {
    display: inline-block;
  }

  .pc,
  .not-sp {
    display: none;
  }
}

a {
  color: var(--color-link);
}

a:hover {
  color: var(--color-link-hovar);
  -webkit-text-decoration-color: var(--color-link-hovar);
  text-decoration-color: var(--color-link-hovar);
}

.not-display {
  display: none;
}

/* 黄色マーカー */
.border-yellow {
  background: linear-gradient(transparent 60%, #f1f18b 60%);
}

/* 打ち消し線 */
del.line-through {
  background-image: linear-gradient(#000, #000);
  background-position: 0 50%;
  background-size: 100% 2px;
  background-repeat: repeat-x;
  color: #888;
  margin: 0 0.4em;
  text-decoration: none;
}

/* トップアップボタン */
.scrolled .page_top_btn {
  background: var(--ver_page_top_button_url),
    linear-gradient(-45deg, var(--color-main), var(--color-main));
  border: 1px solid var(--color-main);
}

/* reCAPTCHAマークは非表示に */
.grecaptcha-badge {
  visibility: hidden;
}

.w-btn {
  background: var(--color-accent);
  border: 1px solid #dbcb94;
}

.w-btn span {
  color: #fff;
  font-weight: normal;
  font-style: italic;
}

.bgcenterx:before {
  background: #dbcb94;
}

#body_wrap {
  overflow: hidden;
  background: #f6f5f5;
}

/************************************************
 * トップのスプラッシュ
 ************************************************/

#splash {
  background: #fff;
}

#splash.first {
  background: var(--color-gra);
  color: #fff;
  font-size: 2rem;
}

body.appear .splashbg.first {
  display: block;
  background: var(--color-gra);
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*SVGの可変*/
#splash #splash-logo svg {
  width: 320px;
}

/*アニメーション前のパスの指定*/
#splash svg path {
  fill-opacity: 0;
  /*最初は透過0で見えない状態*/
  transition: fill-opacity 0.5s;
  /*カラーがつく際のアニメーション0.5秒で変化*/
  fill: none;
  /*塗りがない状態*/
  stroke: #fff;
  /*線の色*/
}

/*アニメーション後に.doneというクラス名が付与された時のパスの指定*/
#splash svg.done path {
  fill: #fff;
  /*塗りの色*/
  fill-opacity: 1;
  /*透過1で見える状態*/
  stroke: none;
  /*線の色なし*/
}

/************************************************
 * トップのヘッダー
 ************************************************/

.l-header__bar {
  color: #fff;
  background: var(--color-gra);
}

.home .l-header,
.home .l-header__bar {
  background: transparent;
  box-shadow: none;  
}

.home .c-gnav,
.home .l-header__menuBtn,
.home .l-header__customBtn {
  color: #fff; 
}

.home .l-header__barInner {
  margin-top: 20px;
}

.home .c-headLogo__img {
  filter: brightness(0%) contrast(300%) hue-rotate(360deg) invert(100%);
  width: 60px;
  height: auto;
}

.scrolled .home .c-headLogo__img {
  filter: none;
  width: 32px;
  height: auto;
}

.scrolled .home .c-iconBtn__icon:before,
.scrolled .home .c-gnav,
.scrolled .home .l-header__menuBtn,
.scrolled .home .l-header__customBtn {
  color: var(--color-blk); 
}

#main_visual {
  height: var(--swl-mv-height, 100vh);
  position: relative;
  top: -114px;
}

@media (max-width: 959px){
  .home .l-header[data-spfix="1"] {
    background: transparent;
  }

  .scrolled .home .l-header[data-spfix="1"] {
    position: fixed;
    background: #fff;
  }

  #main_visual {
    height: calc(var(--swl-mv-height, 100vh) + var(--swl-headerH, 0px) + var(--swl-adminbarH, 0px) + 20px);
  }
}

.-height-full .p-mainVisual__slideText br {
  display: none;
}

.-height-full .p-mainVisual__slideText .sub {
  font-family: var(--font-main);
}

.-height-full .p-mainVisual__slideText .sub {
  font-size: 2rem;
  line-height: 2.6rem;
}

.-height-full .p-mainVisual__slideText .sub.disp {
  font-style: normal;
  font-weight: bold;
  margin-top: 80px;
}

.-height-full .p-mainVisual__slideText .sub.disp.disp1.second {
  animation-delay: 1s;
}

.-height-full .p-mainVisual__slideText .sub.disp br {
  display: block;
}

.-height-full .p-mainVisual__slideText .sub.main {
  color: #fff;
  font-family: var(--font-cat);
  font-size: 6rem;
  margin-bottom: -16px;
  opacity: 0;
  font-style: normal;
}

.-height-full .p-mainVisual__slideText .sub.main span:first-child {
  font-style: normal;
  margin-right: 0;
  font-weight: 200;
}

.-height-full .p-mainVisual__slideText .sub.main span:last-child {
  font-style: normal;
  margin-left: -5px;
  font-weight: 200;
}

.-height-full .p-mainVisual__slideText .sub.main.glow {
  opacity: 1;
}

.-height-full .p-mainVisual__slideText .sub.disp {
  animation-delay: 3.5s;
  opacity: 0;
}

.-height-full .p-mainVisual__slideText .sub .kana {
  font-size: 1rem;
}

.-height-full .p-mainVisual__slideText .sub.main .kana {
  font-size: 4.5rem;
}

.-height-full .p-mainVisual__slideText .sub.main .kana.ru {
  margin-left: -10px;
}

/* TOPスライダー */
.p-postSlider {
  padding-top: 24px;
  margin-bottom: 40px;
}

@keyframes 
zoomUp{
  0% {
    -webkit-transform:scale(1);
    transform:scale(1)
  }
  to {
    -webkit-transform:scale(1.5);
    transform:scale(1.5)
  }
}

.p-postSlider__title {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 720px) {
  .-height-full .p-mainVisual__slideText .sub {
    font-size: 1.2rem;
  }

  .-height-full .p-mainVisual__slideText .sub.main span {
    font-size: 2.6rem;
  }

  .-height-full .p-mainVisual__slideText .sub .kana {
    font-size: 1rem;
  }

  .-height-full .p-mainVisual__slideText .sub.about .kana {
    font-size: 1.3rem;
  }

  .-height-full .p-mainVisual__slideText .sub.main span.kana {
    font-size: 2rem;
  }

  .-height-full .p-mainVisual__slideText .sub .no {
    font-size: 1.6rem;
  }

  .-height-full .p-mainVisual__slideText .sub .qua {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 430px) {
  .-height-full .p-mainVisual__slideText .sub.disp {
    margin-top: 40px;
  }
}

#top-header {
  position: relative;
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  background: var(--color-accent);
  z-index: 0;
}

#video-area {
  position: fixed;
  z-index: -1;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh;
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw;
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

#slider-area {
  width: 100vw;
  height: calc(100vh - 60px);
  position: absolute;
  bottom: 0;
  z-index: 0;
  box-shadow: 0px 0px 160px -5px rgb(69 98 122 / 91%);
}

#slider-area {
  width: 100vw;
  height: calc(100vh - 60px);
  position: absolute;
  bottom: 0;
  z-index: 0;
  box-shadow: 0px 0px 160px -5px rgb(69 98 122 / 91%);
}

@media screen and (max-width: 430px) {
  #slider-area {
    left: 0;
  }

  #top-header .concept-info {
    right: 35px;
    font-size: 2rem;
  }
}

#slider-area #slider {
  width: 100%;
  height: 100vh;
}

.header-area {
  position: absolute;
  top: calc(50vh - 10rem);
  left: 0;
  width: 100%;
  z-index: 0;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 5px #686c1d;
  font-family: "Dela Gothic One";
}

.post_content .header-area h2::before,
.post_content .header-area h2::after {
  display: none;
}

.home .header-area h2 {
  display: block;
  font-size: 2.7rem;
  font-weight: normal;
  letter-spacing: 0;
  padding: 0 10px;
  color: #fff;
  animation-delay: 1s;
}

.home .header-area h2 .sub {
  animation-delay: 2.5s;
  text-shadow: 1px 1px 10px #686c1d;
  font-family: var(--font-head);
  line-height: 1.6;
  font-style: italic;
}

.home .header-area h2 .main {
  margin-top: 0;
  /* display: inline-flex; */
}

.home .header-area h2 .main span {
  font-size: 3rem;
  font-family: var(--font-head);
  font-weight: 500;
  margin-top: 12px;
  display: inline;
  vertical-align: bottom;
  line-height: initial;
  font-style: italic;
  color: #fff;
  border-bottom: none;
}

.home .header-area h2 .main span:first-child {
  font-size: 3.9rem;
  padding-right: 5px;
}

.home .header-area h2 .main span.kan {
  font-size: 3.9rem;
}

.home .header-area h2 .main span span {
  font-size: 3rem !important;
}

.home .header-area h2 .main span.ten {
  margin-right: -25px;
}

.home .header-area h2 .main span.tei {
  margin-right: 6px;
}

.home .header-area h2 .main span.nei {
  margin-right: 4px;
}

.home .header-area h2 .main span.to {
  margin-left: -13px;
}

.header-area p {
  font-size: 2rem;
  letter-spacing: 0.4em;
  font-family: var(--font-head);
}

.home .header-area img {
  width: 750px;
  z-index: -1;
  position: relative;
  left: -10px;
  top: -180px;
  transform: rotate(4deg);
  animation-delay: 3s;
}

@media screen and (max-width: 800px) {
  .-height-full .p-mainVisual__slideText .sub.main {
    font-size: 5rem;
  }
  .-height-full .p-mainVisual__slideText .sub.main .kana {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 430px) {
  .header-area {
    top: calc(50vh - 7rem);
  }

  .home .header-area div {
    font-size: 1.3rem;
  }

  .home .header-area h2 span {
    font-size: 3rem;
    margin-top: -4px;
  }

  .home .header-area img {
    width: 330px;
    left: 0;
    top: -110px;
  }

  .home .header-area h2 .main span {
    font-size: 1.5rem;
  }

  .home .header-area h2 .main span:first-child {
    font-size: 1.8rem;
    padding-right: 0;
  }

  .home .header-area h2 .main span.kan {
    font-size: 1.8rem;
  }

  .home .header-area h2 .main span span {
    font-size: 1.5rem !important;
  }

  .home .header-area h2 .main span.ten {
    margin-right: -10px
  }

  .home .header-area h2 .sub {
    margin-top: -20px;
    line-height: 2.1;
  }

  .home .header-area h2 .main {
    margin-top: 2px;
    /* display: inline-flex; */
  }

  .home .header-area h2 .main span span:first-child {
    margin-left: -5px;
  }
}


/************************************************
 * モバイル
 ************************************************/

/************************************************
 * ホーム
 ************************************************/

/**********************
 * 全般
 **********************/
h2,
.p-postSlider__title div {
  /* text-align: center; */
  margin: 0 0 15px 0;
  font-size: 1.1rem;
  line-height: 1.5;
  /* font-family: "Noto Serif JP", sans-serif; */
  color: var(--color-blk);
  font-weight: bold;
  font-style: italic;
}

h3 {
  font-size: 1.17em;
}

h2 span,
.p-postSlider__title div span {
  font-size: 3rem;
  text-transform: none;
  display: block;
  font-family: var(--font-main);
  font-style: normal;
}

.page h2 {
  /* background: transparent;
  color: var(--color-accent); */
  text-align: left;
  /* padding-left: 15px;
  padding-top: 0;
  padding-bottom: 10px; */
}

@media screen and (max-width: 430px) {
  .page h2 {
    padding-left: 0;
  }
}

.page h2 span,
.page .p-postSlider__title div span {
  font-size: 1.1rem;
  color: var(--color-blk);
  /* border-bottom: 2px solid var(--color-main); */
  /* line-height: 1; */
}

.home .post_content h2::before {
  display: none;
}

.page h3 {
  font-weight: bold;
  padding-left: 20px;
  font-family: "Noto Serif JP", sans-serif;
  background: var(--color-accent);
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 0;
  color: #fff;
}

.page h3::after {
  display: none;
}

.home h2 {
  font-size: 1.1rem;
  margin-bottom: 50px;
  background: none;
  padding-top: 10px;
  padding-bottom: 0.5em;
  padding-left: 0;
  text-align: center;
  color: var(--color-blk);
}

.home h3 {
  background: none;
  padding: 0;
}

.page h4 {
  font-size: 1rem;
  padding-left: 40px;
  border-radius: 0%;
  background-color: var(--color-sub);
}

@media screen and (max-width: 768px) {
  .home h2 {
    font-size: 1.1rem;
  }

  .home h2 span {
    font-size: 1.2rem;
  }
}

.home .entry-title--post-type--page,
.home h2 {
  border: none;
  line-height: 1.5;
  font-weight: bold;
  padding-right: 0;
}

.home .entry-title--post-type--page,
.home h2 span {
  font-weight: bold;
  border: none;
  width: min-content;
  margin-right: auto;
  margin-left: auto;
}

.home h2 .sub {
  position: relative;
  font-size: 3.5rem;
  text-transform: none;
  display: block;
  font-family: var(--font-head);
  font-style: normal;
  /* color: var(--color-main); */
  line-height: 1;
  display: inline-block;
  padding-bottom: 14px;
  margin-bottom: 10px;
  background: var(--color-gra2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home h2 .sub::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--color-gra2);
  bottom: 0;
  left: 0;
}

.home h2 .sub2 {
  padding-left: 5px;
}

@media screen and (max-width: 782px) {
  .home h2 .sub2 {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .home h2 .sub {
    font-size: 3rem;
  }
  .home h2 .sub2 .sp-br {
    display: block;
  }
}

.home h2 .bgLRextend::before {
  background: var(--color-gra2);
}

.home .veu_socialSet {
  display: none;
}

.top #content {
  padding-top: 0;
}

.l-header__inner,
.l-fixHeader__inner {
  font-family: var(--font-main);
  font-weight: bold;
}

.c-gnav>.menu-item>a .ttl {
  font-size: 1rem;
}

/***********************
 * flexリスト
 **********************/
.flex-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.flex-item {
  width: 350px;
  box-shadow: 10px 10px 0 rgb(96 82 68 / 30%);
}

.flex-item img {
  height: 250px;
  width: 350px;
  object-fit: cover;
}

.flex-item figure .title {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-gra);
  display: block;
  width: 100%;
  padding: 10px;
  color: #fff;
}

.bgDU,
.bgDU .mask {
  display: block;
  position: relative;
  /*背景色とテキストの基点となる位置を定義*/
  overflow: hidden;
  height: 250px;
}

.bgDU .mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  opacity: 0;
  /*透過0*/
  transition: 0.3s ease-in-out;
  /*移り変わる速さを変更したい場合はこの数値を変更*/
  transform: translateY(100%);
  background: var(--color-gra);
  /*背景色*/
  width: 100%;
  height: 100%;
}

.bgDU:hover .mask::before {
  /*hoverした時の変化*/
  opacity: 1;
  /*透過なしに変化*/
  transform: translateY(0);
}

.bgDU .cap {
  /*画像の上のテキスト*/
  position: absolute;
  opacity: 0;
  /*透過0*/
  transition: 0.5s ease-in-out;
  /*移り変わる速さを変更したい場合はこの数値を変更*/
  z-index: 3;
  /*テキストを前面に出す*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*テキストの位置中央指定*/
  color: #fff;
  /*テキストの色を変えたい場合はここを修正*/
}

.bgDU:hover .cap {
  /*hoverした時の変化*/
  opacity: 1;
  /*透過なしに変化*/
}

.flex-item .cap h3 {
  font-family: var(--font-main);
  font-weight: bold;
  font-size: 1.3rem;
  border: none;
  width: 300px;
}

.flex-item .cap h3::before,
.flex-item .cap h3::after {
  display: none;
}

.flex-item .cap span {
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  font-size: 0.8rem;
  white-space: nowrap;
}

.flex-list div:first-child {
  animation-delay: 0.4s;
}

.flex-list div:nth-child(2) {
  animation-delay: 0.6s;
}

.flex-list div:last-child {
  animation-delay: 0.8s;
}

@media screen and (max-width: 1450px) {
  .flex-list {
    width: 90%;
  }
}

@media screen and (max-width: 430px) {
  .flex-list {
    display: contents;
    width: 100%;
  }

  .flex-list .flex-item {
    width: auto;
    max-width: 350px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .flex-list .flex-item:last-child {
    margin-bottom: 30px !important;
  }

  #flex .flex-btn {
    margin-top: 30px;
  }
}

/**********************
 * 画像左
 **********************/
.img-left {
  position: relative;
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  padding-top: 150px;
  padding-bottom: 100px;
  padding-left: 10vw;
  padding-right: 10vw;
}

.img-left-img {
  box-shadow: 20px 60px var(--color-sub4);
}

.img-left h2 {
  text-align: left;
}

.img-left h2 span {
  width: auto;
}

.img-left-info {
  flex-basis: 60%;
  margin-top: 130px;
  padding-left: 60px;
}

@media screen and (max-width: 768px) {
  .img-left-info {
    padding-left: 0;
  }

  .img-left h2 {
    text-align: center;
  }
}

.img-left .swell-block-button a {
  width: 240px;
}

@media screen and (max-width: 1200px) {
  .img-left.wp-block-columns .wp-block-columns {
    display: block;
  }

  .img-left.wp-block-columns .wp-block-columns .wp-block-column {
    margin-top: 20px;
  }

  .img-left .swell-block-button {
    text-align: right;
  }

  .img-left .swell-block-button a {
    font-size: 0.9rem;
  }
}

/**********************
 * 画像右
 **********************/
.img-right {
  position: relative;
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  padding-top: 50px;
  padding-bottom: 100px;
  padding-left: 10vw;
  padding-right: 10vw;
}

.img-right-img {
  box-shadow: -20px 60px var(--color-sub);
}

.img-right h2 {
  text-align: left;
}

.img-right h2 span {
  width: auto;
}

.img-right-info {
  margin-top: 130px;
  margin-right: 60px;
}

@media screen and (max-width: 781px) {
  .img-right-info {
    margin-right: 0;
    margin-bottom: 60px;
  }

  .img-right h2 {
    text-align: center;
  }
}

/***********************
 * 括弧付き
 **********************/
.corner{
  position: relative;
}

.corner::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  left: -1rem;
  width: 2rem;
  height: 2rem;
  border-top: var(--color-sub2) 1px solid;
  border-left: var(--color-sub2) 1px solid;
}

.corner::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  right: -1rem;
  width: 2rem;
  height: 2rem;
  border-bottom: var(--color-sub3) 1px solid;
  border-right: var(--color-sub3) 1px solid;
}

/***********************
 * 事業紹介
 **********************/

#business {
  position: relative;
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  text-align: center;
  padding-bottom: 50px;
}

#business .sub-title {
  text-align: center;
  margin-bottom: 50px;
  /* color: #fff; */
}

@media screen and (max-width: 768px) {
  #business {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 430px) {
  #business::before {
    height: 1160px;
  }

  #business::after {
    top: 1150px;
  }

  #business .business-btn img {
    margin-top: 60px;
  }

}

/**********************
 * 採用コンサルティング
 **********************/
.recruit::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: -30%;
  width: 150%;
  height: 100%;
  background: #fff;
  transform: rotate(-5deg);
}

/**********************
 * グローバル人材部門
 **********************/
/* .global {
  
} */

/**********************
 * ホームページ制作/保守運用部門
 **********************/
.hp::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: -30%;
  width: 150%;
  height: 100%;
  background: #fff;
  transform: rotate(5deg);
}

/**********************
 * インフルエンサーマーケティング部門 
 **********************/
/* .infl {

 } */

/**********************
 * セールスサポート部門 
 **********************/
.sale::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: -30%;
  width: 150%;
  height: 100%;
  background: #fff;
  transform: rotate(-5deg);
}

/**********************
 * 空間コンサルティング部門 
 **********************/
/* .space {

} */

/**********************
 * お知らせ 
 **********************/
.home h2#news span {
  /* color: #fff; */
  /* border-bottom: 2px solid #fff; */
}

.home h2#news .sub {
  /* color: #fff; */
  /* border-bottom: 2px solid #fff; */
  /* width: 450px; */
}

@media screen and (max-width: 450px) {
  .home h2#news .sub {
    /* width: auto; */
  }
}

.news::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: -200px;
  left: -70%;
  width: 250%;
  height: calc(100% + 260px);
  background: #fff;
  transform: rotate(5deg);
}

@media screen and (max-width: 450px) {
  .news::before {
    top: -270px;
    height: calc(100% + 280px);
  }
}

.news .p-postList__title {
  color: var(--color-blk);
  text-align: left;
}

.news .p-postList.-type-card,
.news .p-postList.-type-card a {
  color: var(--color-blk);
}

.news a:hover .p-postList__title,
.news .p-postList.-type-card a:hover {
  text-decoration: underline;
  background: var(--color-sub4);
  color: var(--color-link-hovar);
}

/**********************
 * 会社概要
 **********************/
.post_content .profile-list {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 100px;
  list-style: none;
  margin-bottom: 100px;
}

.wp-block-group ul.profile-list.hon {
  margin-bottom: 100px;
}

.profile-list li {
  border-bottom: 1px solid #ccc;
  margin: 0;
  padding: 0;
}

.profile-list dl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-top: 10px;
}

.profile-list dt {
  width: 30%;
  padding: 0 0 0 40px;
}

.profile-list dd {
  width: 65%;
}

.profile-list.ko dd {
  margin-bottom: 10px;
}

.profile-list .access {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .post_content .profile-list {
    padding-left: 0;
  }
}

@media screen and (max-width: 590px) {
  .profile-list dt {
    padding: 0 0 0 10px;
  }
}

@media screen and (max-width: 430px) {
  .profile-list dt {
    font-size: 0.9rem;
  }

  .profile-list dd {
    font-size: 0.9rem;
  }

  .profile-list .access iframe {
    height: 250px;
  }
}

/**********************
 * お問い合わせ
 **********************/

#contact {
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 60px;
  padding-bottom: 60px;
  background: url("/wp-content/uploads/sites/22/2022/07/contact_00.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

/* 最新のsafari用 */
_::-webkit-full-page-media,
_:future,
:root #contact {
  background-attachment: inherit;
}

/* 古いsafari用 */
@media screen and (-webkit-min-device-pixel-ratio:0) {

  ::i-block-chrome,
  #contact {
    background-attachment: inherit;
  }
}

/* .webp #contact {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/wp-content/uploads/2022/03/contact_01.jpg.webp") no-repeat center;
  background-size: cover;
} */

#contact h2,
#contact h2 .sub {
  color: #fff;
  text-align: center;
}

#contact .bgLRextend::before {
  background-color: #fff;
}

#contact h2 span {
  color: #fff;
  border-bottom: none;
}

#contact h2::after {
  display: none;
}

#contact ul {
  list-style: none;
}

#contact p {
  margin: 0 0 30px 0;
}

.contact-btn a {
  background: var(--color-gra);
  color: #fff;
  border: none;
  padding-top: 16px;
  padding-bottom: 16px;
  font-weight: bold;
  z-index: 0;
  width: 390px;
  border-radius: 30px;

}

.contact-btn a span {
  font-family: var(--font-main);
  font-style: normal;
  font-size: 1.2rem;
}

.contact-btn a:hover {
  color: var(--color-blk);
}

@media screen and (max-width: 430px) {
  .contact-btn a {
    width: auto;
  }

  .contact-btn .w-btn.bgcenterout {
    padding: 8px 20px;
  }
}

.contact-btn img {
  width: 40px;
  height: 10px;
  margin-left: 0;
  position: absolute;
  margin-left: -20px;
  margin-top: 24px;
}

/**********************
 * フッター
 **********************/

#footer {
  background: var(--color-gra);
  color: #fff;
}

#footer a {
  font-family: var(--font-main);
}

/**********************
 * サイト下
 **********************/
body.home .site-body-bottom {
  display: none;
}


/************************************************
 * トップページはここまで
 ************************************************/

/************************************************
 * ここから個別ページ
 ************************************************/
.page-header {
  margin-top: 60px;
  color: #fff;
  background: var(--color-gra);
  font-family: "Noto Serif JP", sans-serif;
}

.page-header-title,
h1.page-header-title {
  font-style: italic;
}

.breadcrumb,
.site-body {
  background: #F3F2EA;
}

.vk_post_imgOuter_singleTermLabel {
  background: var(--color-main) !important;
}

#commentform img,
.comment-author img,
.post img {
  width: auto;
}

img.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

img.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.aligncenter {
  clear: both;
  display: block;
  margin: auto;
}

.site-body-bottom,
.page .veu_socialSet,
.single .veu_followSet {
  display: none;
}

table td,
table th {
  border: none;
}

.breadcrumb {
  display: none;
}

/***********************
 * お問い合わせフォーム
 **********************/
.c-pageTitle {
  font-size: 2rem;
  text-align: center;
  font-family: var(--font-head);
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
}

.wpcf7-form input[type="submit"],
.wpcf7-form input[type="submit"]:hover {
  position: absolute;
  right: calc(40% - 50px);
  left: calc(40% - 50px);
  border: none;
  font-weight: bold;
  border-radius: 30px;
  padding: 16px;
  background: var(--color-gra);
  color: #fff;
}

.wpcf7-form .confirm {
  font-size: 0.9rem;
}

.wpcf7-form .privacy {
  margin-left: 26px;
}

.confirm a {
  color: var(--color-main) !important;
  font-weight: bold;
  text-decoration: revert;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #238d2d;
  color: #fff;
  font-weight: bold;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #ffb900;
  background: #f7dd96;
}

.wpcf7-spinner {
  height: 60px;
}

.wp-block-contact-form-7-contact-form-selector,
.wpcf7-form,
.form-info {
  max-width: 768px;
  margin: auto;
}

.page p.form-info {
  margin-bottom: 30px;
  text-align: center;
}

.form-info.recap {
  margin-top: 30px;
  font-size: 0.8rem;
}

.wpcf7-form .req {
  background: #c50000;
  color: #fff;
  padding: 1px 5px 3px 7px;
  /* 上右下左 */
  margin-right: 6px;
  font-size: 0.8rem;
}

.wpcf7-form p {
  margin-bottom: 8px;
  margin-top: 16px;
}

.wpcf7-form .name {
  padding-bottom: 0;
}

.wpcf7-form .name-info {
  margin-bottom: 8px;
}

/* .wpcf7-form .name-info,
.wpcf7-form .day-info,
.wpcf7-form .body-info,
.wpcf7-form .edu-info2 label {
  display: flex;
  line-height: 3rem;
} */

.wpcf7-form .name-info label .sub {
  width: 60px;
}

@media screen and (max-width: 430px) {
  .wpcf7-form .name-info label .sub {
    line-height: 20px;
  }

  .form-info.recap {
    font-size: 0.7rem;
  }
}

.wpcf7-form .name-info,
.wpcf7-form .tel-info,
.wpcf7-form .day-info,
.wpcf7-form .time-info,
.wpcf7-form .time2-info,
.wpcf7-form .body-info {
  width: 50%;
}

.wpcf7-form .edu-info2 sub1 {
  width: 110px;
}

.wpcf7-form .edu-info2 .edu-year input[type="text"] {
  width: 110px;
}

.wpcf7-form .edu-info2 .edu-mon input[type="text"] {
  width: 80px;
}

.wpcf7-form .edu-lead {
  margin-top: 0;
  font-size: 0.8rem;
}

.type-info .wpcf7-form-control-wrap .wpcf7-form-control {
  display: grid;
}

/***********************
 * お問合せありがとうございます
 **********************/

body.post-name-thanks {
  height: 100vh;
  background: var(--color-gra);
}

.post-name-thanks .breadcrumb {
  display: none;
}

.post-name-thanks .site-body {
  background: url("/wp-content/uploads/2022/05/contact_00.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

/* 最新のsafari用 */
_::-webkit-full-page-media,
_:future,
:root .post-name-thanks .site-body {
  background-attachment: inherit;
}

/* 古いsafari用 */
@media screen and (-webkit-min-device-pixel-ratio:0) {

  ::i-block-chrome,
  .post-name-thanks .site-body {
    background-attachment: inherit;
  }
}

@media screen and (max-width: 430px) {
  .post-name-thanks h1.page-header-title {
    font-size: 1.4rem;
  }
}

.thanks {
  padding: 50px 20px;
  color: #fff;
}

.schedule-footer {
  padding-left: 0;
}

.schedule-footer,
.post-name-thanks h2 {
  text-align: center;
  padding-left: 0;
}

.post-name-thanks h2 span {
  color: #fff;
  text-align: center;
  border-bottom: none;
}

.schedule-footer .contact-btn a {
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.post-name-thanks .main-footer {
  background: none;
}

/***********************
 * プライバシーポリシー
 **********************/
.page .privacy h2 {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.1rem;
}

.page .privacy p {
  padding-left: 20px;
}