@charset "UTF-8";


/* レスポンシブデザイン注意点
-------------------------------------------------------------------

１．モバイルファースト（スマホベース）のCSSとしている。
２．root文字サイズのみ４段階で設定（スマホ、タブレット縦横、パソコン）
３．以降は基本、１に記述し、その差分のみ３に追記をする。
  （但し、１に追記すると２～４にも適用されるので注意）
５．微調整が必要な場合のみ、２、４を記述する。

------------------------------------------------------------------*/



/* 共通
---------------------------------------------------------------------*/


/* １．スマホ用 */
:root{
  font-size: 14px;
  font-weight: 300;


  /* CSSカスタムプロパティ 
  ----------------------------------*/

  /* フォントカラー */
  --color-font-main: #1a1a1a;

  /* フォント本文（全角） */
  --font-jpn-body-1: fot-udmarugo-large-pr6n, sans-serif;    /* font-weight: 500,600; */
  --font-weight-jpn-body-1: 500;      
  
  /* フォントタイトル（全角） */
  --font-jpn-title-1: vdl-v7marugothic, sans-serif;    /* font-weight: 500; */
  --font-weight-jpn-title-1: 500;      

  /* フォント（全角セリフ） */
  --font-jpn-serif-1: fot-klee-pro, sans-serif;         /* font-weight: 500,600; */
  --font-weight-jpn-serif-1: 600;      

  /* フォント（英字） */
  --font-eng-1: pt-sans, sans-serif;      /* font-weight: 400; */
  --font-weight-eng-1: 400;   
  /* font-style: italic; 使用可  */    

  /* フォント（英字） */
  --font-eng-2: pt-sans-caption, sans-serif;      /* font-weight: 400; */
  --font-weight-eng-2: 400;      

}

/* ２．タブレット縦 */
@media all and (max-width: 1022px) and (min-width: 768px) {
  :root{
    font-size: 20px;
  }
}

/* ３．タブレット横・パソコン共通 ※一部サイズは４に上書きされる */
@media all and (min-width: 1023px) {
  :root{
    font-size: 17px;
  }
}

/* ４．タブレット横・パソコン（1366×768） */
@media all and (max-width: 1400px) and (min-width: 1023px) {
  :root{
    font-size: 14px;
  }
}



body {
  position: relative;
	font-family: var(--font-jpn-body-1), "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiyo, Sans-Serif;
  font-weight: var(--font-weight-jpn-body-1);
  color: var(--color-font-main);
}

/* 英字フォント */
.english {
  font-family: var(--font-eng-1);
  font-weight: var(--font-weight-eng-1);
}

.english_italy {
  font-family: var(--font-eng-1);
  font-weight: var(--font-weight-eng-1);
  font-style: italic;
}

.english_2 {
  font-family: var(--font-eng-2);
  font-weight: var(--font-weight-eng-2);
}

.english_2_italy {
  font-family: var(--font-eng-2);
  font-weight: var(--font-weight-eng-2);
  font-style: italic;
}

/* SPのみ改行用 */
.br_sp {
  display: block;
}

/* パソコン・タブレット用 */
@media all and (min-width: 768px) {

  /* 改行用 */
  .br_sp {
    display: none;
  }

}

.overflow_hidden {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a img {
  border: none;
}

a:hover {
  color: #1cbfff;
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li, dd {
  margin: 0;
}

h2 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.1rem;
}

figure {
  margin: 0;
}

/* ページ内リンクの位置調整 */
.page_link {
  position: relative;
  top: -4rem;
  display: block;
}

/* 背景画像 */
.bg_image_1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -10;
  background: url(../image/common/cloth2.jpg) ;
  opacity: 0.5;      /* 透明度で濃度調整 */
}


/* 背景画像 */
.bg_image_2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -10;
  background: url(../image/common/cloth.jpg) ;
  opacity: 0.55;      /* 透明度で濃度調整 */
}

/* 背景画像 */
.bg_image_3 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -10;
  background: url(../image/common/paper2.jpg) ;
  opacity: 0;      /* 透明度で濃度調整 */
}




/* アニメーション設定
※※ @media内に記述するとIEでは動かないので注意！
---------------------------------------------------------------------*/

/* 浮かび上がる */
@keyframes OpacityUp {
  0% {
      opacity: 0;/* 透明 */
  }
  100% {
      opacity: 1;/* 不透明 */
  }
}

/*右から左*/
@keyframes RightToLeft {
  0% {
      opacity: 0;/* 透明 */
      transform: translateX(4rem);
  }
  100% {
      opacity: 1;/* 不透明 */
      transform: translateX(0);/* X軸方向に0px */
  }
}
  
/*左から右*/
@keyframes LeftToRight {
  0% {
      opacity: 0.1;/* 透明 */
      transform: translateX(-4rem);/* X軸方向に */
  }
  70%{
    opacity: 1;/* 透明 */
  }
  100% {
      opacity: 1;/* 不透明 */
      transform: translateX(0);/* X軸方向に0px */
  }
}

/*上から下*/
@keyframes SlideDown {
  0% {
      opacity: 0;/* 透明 */
      transform: translateY(-2.5rem);/* Y軸方向に */
  }
  100% {
      opacity: 1;/* 不透明 */
      transform: translateY(0);/* Y軸方向に0px */
  }
}
  
/*下から上*/
@keyframes SlideUp {
  0% {
      opacity: 0;/* 透明 */
      transform: translateY(2.5rem);/* Y軸方向に50px */
  }
  100% {
      opacity: 1;/* 不透明 */
      transform: translateY(0);/* Y軸方向に0px */
  }
}

/*下から上*/
@keyframes SlideUp2 {
  0% {
      opacity: 0;/* 透明 */
      transform: translateY(2.0rem);/* Y軸方向に50px */
  }
  100% {
      opacity: 1;/* 不透明 */
      transform: translateY(0);/* Y軸方向に0px */
  }
}

/* 下から上（透明度不変） */
@keyframes OnlySlideUp {
  0% {
      transform: translateY(105%);
  }
  100% {
      transform: translateY(0);/* Y軸方向に0px */
  }
}
  
/* 上下にふわふわ揺れる（下矢印用のroteteも含む） */
@keyframes up_down {
  0% {
    transform: translateY(1rem) rotate(45deg);
  }
  75% {
    transform: translateY(0) rotate(45deg);
  }
  100% {
    transform: translateY(1rem) rotate(45deg);
  }
}

/* 上に上がって少し下がる */
@keyframes up_down_2 {
  0% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-0.7rem);
  }
  100% {
    transform: translateY(-0.3rem);
  }
}

/* 右左に動く */
@keyframes right_left {
  0% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(0.4rem);
  }
  100% {
    transform: translateX(0);
  }
}

/* 点滅 */
@keyframes blinking {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* 右に消えて左から出てくる */
@keyframes to_right_left_to_right {
  0% {
    transform: translateX(0) rotate(inherit);
  }
  45% {
    transform: translateX(11rem);
    opacity: 1;
  }
  45.1% {
    opacity: 0;
    transform: translateX(-11rem);
  }
  45.2% {
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(inherit) ;
  }
}

/* クラスに指定すると下から上に浮き上がって表示 */
.opacity_up {
  opacity: 0;
  animation-name: OpacityUp;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-delay: 1s;      /* アニメーション開始までの時間 */
  animation-duration: 1.2s;   /* アニメーション時間 */
}

/* クラスに指定すると左から右に流れて表示 */
.left_to_right {
  opacity: 0;
  animation-name: LeftToRight;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-timing-function: cubic-bezier(.7,.19,0,.9);
  animation-delay: 0.1s;      /* アニメーション開始までの時間 */
  animation-duration: 1.0s;   /* アニメーション時間 */
}

/* クラスに指定すると左から右に流れて表示 */
.left_to_right_2 {
  opacity: 0;
  animation-name: LeftToRight;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-timing-function: cubic-bezier(.7,.19,0,.9);
  animation-delay: 0.4s;      /* アニメーション開始までの時間 */
  animation-duration: 1.0s;   /* アニメーション時間 */
}

/* クラスに指定すると左から右に流れて表示 */
.left_to_right_3 {
  opacity: 0;
  animation-name: LeftToRight;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-timing-function: cubic-bezier(.7,.19,0,.9);
  animation-delay: 1.0s;      /* アニメーション開始までの時間 */
  animation-duration: 1.0s;   /* アニメーション時間 */
}

/* クラスに指定すると右から左に流れて表示 */
.right_to_left {
  opacity: 0;
  animation-name: RightToLeft;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-timing-function: cubic-bezier(.075,.82,.165,1.000);
  animation-delay: 0.5s;      /* アニメーション開始までの時間 */
  animation-duration: 1.0s;   /* アニメーション時間 */
}

/* クラスに指定すると上から下に浮き上がって表示 */
.slide_down {
  opacity: 0;
  animation-name: SlideDown;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-duration: 1s;   /* アニメーション時間 */
}

/* クラスに指定すると上から下に浮き上がって表示 */
.slide_down_1 {
  opacity: 0;
  animation-name: SlideDown;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-delay: 1.0s;      /* アニメーション開始までの時間 */
  animation-duration: 1s;   /* アニメーション時間 */
}

/* クラスに[slide_up]を指定すると下から上に浮き上がって表示 */
.slide_up {
  opacity: 0;
  animation-name: SlideUp;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-delay: 0.2s;      /* アニメーション開始までの時間 */
  animation-duration: 0.5s;   /* アニメーション時間 */
  transition-timing-function: cubic-bezier(.79,0,.53,1);
}

/* 下から上に浮き上がって表示 */
.slide_up_1 {
  opacity: 0;
  animation-name: SlideUp2;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-delay: 0.4s;      /* アニメーション開始までの時間 */
  animation-duration: 0.4s;   /* アニメーション時間 */
  transition-timing-function: cubic-bezier(.79,0,.53,1);
}

/* 下から上に浮き上がって表示 */
.slide_up_2 {
  opacity: 0;
  animation-name: SlideUp2;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-delay: 0.4s;      /* アニメーション開始までの時間 */
  animation-duration: 0.4s;   /* アニメーション時間 */
  transition-timing-function: cubic-bezier(.79,0,.53,1);
}

/* 下から上に浮き上がって表示 */
.slide_up_3 {
  opacity: 0;
  animation-name: SlideUp2;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-delay: 0.4s;      /* アニメーション開始までの時間 */
  animation-duration: 0.4s;   /* アニメーション時間 */
  transition-timing-function: cubic-bezier(.79,0,.53,1);
}

/* 下から上に浮き上がって表示 */
.slide_up_4 {
  opacity: 0;
  animation-name: SlideUp2;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-delay: 0.4s;      /* アニメーション開始までの時間 */
  animation-duration: 0.4s;   /* アニメーション時間 */
  transition-timing-function: cubic-bezier(.79,0,.53,1);
}

/* 下から上に浮き上がって表示（sp、pc共通） */
.slide_up_5 {
  opacity: 0;
  animation-name: SlideUp2;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-delay: 2.1s;      /* アニメーション開始までの時間 */
  animation-duration: 0.4s;   /* アニメーション時間 */
  transition-timing-function: cubic-bezier(.79,0,.53,1);
}

/* タブレット横・パソコン共通 */
@media all and (min-width: 1023px) {

  /* 下から上に浮き上がって表示 */
  .slide_up_2 {
    animation-delay: 0.6s;      /* アニメーション開始までの時間 */
  }

  /* 下から上に浮き上がって表示 */
  .slide_up_3 {
    animation-delay: 1.0s;      /* アニメーション開始までの時間 */
  }

  /* 下から上に浮き上がって表示 */
  .slide_up_4 {
    animation-delay: 1.4s;      /* アニメーション開始までの時間 */
  }

}


/* 下から上にスライド表示（sp、pc共通） */
.only_slide_up_1 {
  animation-name: OnlySlideUp;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  transition-timing-function: cubic-bezier(.075,.82,.165,1.000);
  animation-delay: 0.4s;      /* アニメーション開始までの時間 */
  animation-duration: 1.5s;   /* アニメーション時間 */
}

/* 下から上にスライド表示（sp、pc共通） */
.only_slide_up_2 {
  animation-name: OnlySlideUp;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  transition-timing-function: cubic-bezier(.075,.82,.165,1.000);
  animation-delay: 0.8s;      /* アニメーション開始までの時間 */
  animation-duration: 1.5s;   /* アニメーション時間 */
}



/* 左から右に表示された後、左から右に消える */
@keyframes passing_block{
  0% {
    left: 0;
    width: 0;
    opacity: 0.1;
  }
  25% {
    left: 0;
    width: 100%;
    opacity: 1;
  }
  26% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

/* passing_blockとセットで使用（指定時間後に表示される） */
@keyframes passing_txt{
  0% { opacity:0; }
  30% { opacity:0; }
  100% { opacity:1; }
}

/* クラスに[passing_bar]を指定すると要素が左から右に流れる */
.passing_block {
  display: block;
  transform: translate3d(0, 0, 0); /* アニメーションを滑らかにする */
  animation-name: passing_block;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-timing-function: cubic-bezier(.075,.82,.165,1.000);
  animation-delay: 0.7s;      /* アニメーション開始までの時間 */
  animation-duration: 1.8s;   /* アニメーション時間 */
}

/* [passing_bar]とセットで使用（passing_bar要素が流れたあとにこの要素が残る） */
.passing_txt {
  z-index: 9999;
  animation-name: passing_txt;  /* アニメーション名 */
  animation-fill-mode:forwards;
  animation-delay: 0;
  animation-duration: 1.8s;   /* アニメーション時間 */
}

/* タブレット横・パソコン共通 */
@media all and (min-width: 1023px) {

  .passing_block {
    animation-duration: 3.0s;   /* アニメーション時間 */
  }
  
  /* [passing_bar]とセットで使用（passing_bar要素が流れたあとにこの要素が残る） */
  .passing_txt {
    animation-duration: 3.0s;   /* アニメーション時間 */
  }
  
}

  
/* end アニメーション
---------------------------------------------------------------------*/






/*-- ボタン  --*/
.btn {
  position: relative;
  margin-bottom: 5px;
  width: 17rem;
  height: 3.5rem;
  background-color: #ffffff;
  color: rgb(000, 090, 160); 
  border: 1px solid rgb(000, 090, 160);
	font-size: 1.1rem;
	font-weight: 400;
	cursor: pointer;	            /* マウスカーソルの形（リンクカーソル）を指定する */
  border-radius: 20rem;
	transition: all 0.7s ;
} 

/* ホバー時に背景色を左から右にスライド */
.btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: '';
  border-radius: 20rem;
  background-color: rgb(198, 242, 255);
  transform-origin: left top;
  transform: scale(0.2, 1);
  transition: all .3s;
  opacity: 0;
  z-index: 1;
}

/* ホバー時に背景色を左から右にスライド */
.btn:hover::before {
  transform: scale(1, 1);
  opacity: 1;
}

.btn_text {
  position: relative;
  color: rgb(000, 090, 160); 
  z-index: 5;
}


/*-- 矢印  --*/
.arrow_to_right {
  /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
  /*形状*/
  display: inline-block;
  padding: 0 0 0.25em 0;
  width: 10rem;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #3f3f3f;
  font-size: 1.0rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  overflow: hidden;
}

/*矢印と下線の形状*/
.arrow_to_right::before{
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*下線の形状*/    
  width: 100%;
  height: 1px;
  background:rgb(97, 97, 97);
  transform-origin: bottom left;
}
.arrow_to_right::after{
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: 0;
  right:0;
  /*矢印の形状*/    
  width: 0.75rem;
  height:1px;
  background:rgb(65, 65, 65);
  transform-origin: bottom right;
  transform: rotate(35deg);
}

/*hoverした際の移動*/
.arrow_to_right:hover::before{
  animation-name: to_right_left_to_right;  /* アニメーション名 */
  animation-duration: 0.7s;   /* アニメーション時間 */
  transition-timing-function : ease
}
.arrow_to_right:hover::after{
  animation-name: to_right_left_to_right;  /* アニメーション名 */
  animation-duration: 0.7s;   /* アニメーション時間 */
  transition-timing-function : ease
}


/*--  各セクションタイトル  --*/
.section_h2 {
  position: relative;
  margin-left: 0.5rem;
  margin-bottom: 1rem;
  padding: 0 0 0.5rem 1rem;
  border-bottom: 1px solid rgb(195, 200, 204);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/*--  各セクションタイトル  --*/
.section_h2::before {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 1em;
  height: 1px;
  content: "";
  background-color: navy;
}


/*--  コンテンツボックス関連  --*/

.box_fullwidth {
  display: block;
  margin-bottom: 2rem;
  width: auto;
}

.box_padding_1 {
  width: 100%;
  margin: 0 auto;
  padding: 0 2%;
  margin-bottom: 2rem;
}

.box_padding_2 {
  width: 100%;
  margin: 0 auto;
  padding: 0 2%;
  margin-bottom: 2rem;
}

.box_padding_3 {
  width: 100%;
  margin: 0 auto;
  padding: 0 2%;
  margin-bottom: 2rem;
}


/* タブレット横・パソコン共通 */
@media all and (min-width: 1023px) {


  /*-- 矢印  --*/
  .arrow_to_right {
    padding: 0 0 0.4em 0;
    width: 11rem;
    font-size: 1.2rem;
  }

  /* ページ内リンクの位置調整 */
  .page_link {
    top: -70px;
  }

  .box_fullwidth {
    display: block;
    margin-bottom: 2rem;
    width: auto;
  }
  
  .box_padding_1 {
    width: 800px;
    margin: 0 auto;
    padding: 0;
    margin-bottom: 2rem;
  }

  .box_padding_2 {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
    margin-bottom: 2rem;
  }

  .box_padding_3 {
    width: 1350px;
    margin: 0 auto;
    padding: 0;
    margin-bottom: 2rem;
  }

  /*--  各セクションタイトル  --*/
  .section_h2 {
    margin-bottom: 1rem;
    padding: 0 0 0.8rem 0.5rem;
    font-size: 1.5rem;
  }

  /*--  各セクションタイトル  --*/
  .section_h2::before {


  }


}


/* タブレット横・パソコン（1366×768）※パソコン共通に上書きするため、パソコン共通より下に記述する） */
@media all and (max-width: 1400px) and (min-width: 1023px) {

  .box_padding_1 {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3%;
    margin-bottom: 2rem;
  }

  .box_padding_2 {
    margin: 0 auto;
    width: 100%;
    max-width: 70vw;
    padding: 0 1%;
    margin-bottom: 2rem;
  }

  .box_padding_3 {
    margin: 0 auto;
    padding: 0 1%;
    width: 100%;
    max-width: 95vw;
    margin-bottom: 2rem;
  }


}
/* end 共通
---------------------------------------------------------------------*/



/* skip link
---------------------------------------------------------------------*/

.skip {
  font-size: 0.85rem;
  background-color: #fff;
  padding: 0.5rem 2rem;
}


/* header
---------------------------------------------------------------------*/

/* ヘッダエリア分のスペース（回り込み回避） */
.header_area_space {
  padding-bottom: 4.3rem;
}


/* 左から右に流れるヘッダパッシングバー */
.passing_bar {
  display: block;
  position: fixed;
  z-index: 99999;
  width: 0;
  height: 4.3rem;   /* header_inner と同じサイズを指定 */
  top: 0;
  left: 0;
  background-color: #e3f2ff;
}

.header {
display: block;
background-color: rgba(245, 245, 245, 0.85);
padding: 0;
position: fixed;
z-index: 10000;
top: 0;
left: 0;
width: 100%;
}

.header a:hover {
  color: inherit;
  text-decoration: none;
}

.header_inner {
  display: block;
  position: relative;
  height: 4.3rem;
}

/* トップページのみ初期非表示（パッシングバーで表示させる） */
.top_page .header_inner{
  opacity: 0;
}

.header_logo {
  padding: 10px 0 0 20px;
  height: 100%;
  width: 14.3rem;
}

.header_logo .sp_logo {
  display: block;
  width: 11.4rem;
}

.header_logo .pc_logo {
  display: none ;
}

/* ↓ スマホ用グローバルナビ ******************************/

/* グローバルナビ表示時に背景を暗くする（JQueryでactive付与） */
.global_nav_overlay.active {
  width: auto;
  height: auto;
  display: block;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #0000008a;
  z-index: 999;
}

/* グローバルナビ表示時に画面スクロールを止める（JQueryでfixed付与） */
body.fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* グローバルナビ */
nav.sp_nav_global{
  position: absolute;    /* 表示位置を固定 */
  z-index: 10;       
  top: 4.3rem;         /* header_inner と同じサイズを指定 */
  left: 100%;          /* 右端に隠す */
  color: #000000;    
  background-color: #ffffff; 
  width: 100%;       
  font-size: 1.3rem;
  line-height: 3rem;
  transition: all 0.6s cubic-bezier(.64,0,.03,1); /* アニメーションの時間 */
  overflow-y: scroll;
  overflow-x: hidden;
}

/* JQueryで表示非表示を制御（[active]クラスのON、OFFを切り替える） */
nav.sp_nav_global.active {
  transform: translateX(-100%);  /* 右端から左にスライド */
}
  
.sp_nav_parent {
  margin: 0;
  padding: 0;
}

.sp_nav_parent > li {
  position: relative;
  padding-left: 10vw;
  border-bottom: 1px solid rgb(232, 233, 238);
}

.sp_nav_parent a {
  display: inline-block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.sp_nav_parent a:focus {
  color: #1cbfff;
}

/* 右矢印 */
.sp_nav_list::after {
  content: "";
  width: .7em;
  height: .7em;
  border-right: solid 1px #303030;
  border-bottom: solid 1px #303030;
  transform: rotate(-45deg);
  position: absolute;
  right: 10vw;
  top: 50%;
  margin-top: -.35em;
}

.sp_nav_drop_list {
  position: relative;
}


/* プラス記号 */
.sp_nav_drop_list::before, .sp_nav_drop_list::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 8.8vw;
  width: 1em;
  height: 1px;
  background: #303030;
  transition-duration: 0.3s;
  z-index: 1;
}

/* プラス記号（クリック時、回転してマイナス記号に） */
.sp_nav_drop_list::before {
  transform: rotate(-180deg);
}

/* プラス記号（クリック時、回転してマイナス記号に） */
.sp_nav_drop_list::after {
  transform: rotate(90deg);
}

/* プラス記号（クリック時、回転してマイナス記号に） */
.sp_nav_drop_list.active::before {
  transform: rotate(0deg);
}

/* プラス記号（クリック時、回転してマイナス記号に） */
.sp_nav_drop_list.active::after {
  transform: rotate(360deg);
}

/* グローバルナビのサブメニューはJQueryで表示、非表示制御（初期は非表示） */
.sp_nav_child {
  display: none;
}

/* グローバルナビのサブメニュー */
.sp_nav_child > li {
  padding-left: 15vw;
  border-bottom: 1px solid rgb(241, 242, 245);
  color: #04072e;
}

/* ハンバーガーメニュー三本線 */
.sp_nav_toggle {
  display: block;
  position: fixed;    /* bodyに対しての絶対位置指定 */
  right: 0.93rem;
  top: 0.57rem;
  width: 3.0rem;
  height: 3.64rem;
  cursor: pointer;
  z-index: 3;
  text-align: center;
}

/* ハンバーガーメニュー三本線 */
.sp_nav_toggle span {
  display: block;
  position: absolute;    /* .navToggleに対して */
  width: 2.14rem;
  border-bottom: solid 2px #585858;
  transition: .35s ease-in-out;
  left: 0.43rem;
}

/* ハンバーガーメニュー三本線 */
.sp_nav_toggle span:nth-child(1) {
  top: 0.64rem;
}

/* ハンバーガーメニュー三本線 */
.sp_nav_toggle span:nth-child(2) {
  top: 1.29rem;
}

/* ハンバーガーメニュー三本線 */
.sp_nav_toggle span:nth-child(3) {
  top: 1.93rem;
}

/* ハンバーガーメニュー三本線 */
.sp_nav_toggle span:nth-child(4) {
  border: none;
  color: #585858;
  font-size: 0.7rem;
  font-weight: 400;
  top: 2.29rem;
}

/* ハンバーガーメニュー三本線 */
.sp_nav_toggle.active span:nth-child(1) {
  top: 1.29rem;
  left: 0.43rem;
  transform: rotate(-45deg);  /* 最初のspanをマイナス45度に */
}

/* ハンバーガーメニュー三本線 */
.sp_nav_toggle.active span:nth-child(2),
.sp_nav_toggle.active span:nth-child(3) {
  top: 1.29rem;
  transform: rotate(45deg);   /* 2番目と3番目のspanを45度に */
}           


/* end スマホ用グローバルナビ ****************************/


/* PC用グローバルナビ非表示 */
.nav_global {
  display: none;
}


/* タブレット横・パソコン共通 */
@media all and (min-width: 1023px) {

  /* ヘッダエリア分のスペース（回り込み回避） */
  .header_area_space {
    padding-bottom: 0;
  }
  
  /* 左から右に流れるヘッダパッシングバー */
  .passing_bar {
    height: 3.6rem;   /* header_inner と同じサイズを指定 */
    background-color: rgb(51, 51, 51);
  }

  .header {
    display: block;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.40);
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.4s linear;
    }

  /* ヘッダホバー時、下スクロール時（JQueryでクラス追加）にヘッダ背景色変更 */
  .header:hover, .header.scroll_down {
    background-color: rgba(0, 0, 0, 0.82);
  }
   
  /* グローバルナビドロップリスト表示時の背景色（初期非表示） */
  .header::after {
    content: "";
    display: block;
    width: 100%;
    height: 14rem;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: rgba(0, 0, 0, 0.82);
    z-index: 0;
    transform: scaleY(0);
    transition-duration: .3s;
    transform-origin: top;
    opacity: 0.2;
  }

  /* グローバルナビドロップリスト表示用の背景色（JQueryでクラス追加） */
  .header.nav_drop_list_active::after {
    transform: scaleY(1);
    opacity: 1;
  }

  .header_inner {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    height: 3.6rem;       /* header高さ */
  }

  .header_logo {
    padding: 0 5% 2px 0;
    height: 100%;
    width: inherit;
  }

  .header_logo .sp_logo {
    display: none ;
  }
  
  .header_logo .pc_logo {
    display: block;
    width: auto;
    height: 100%;
    transition: all 0.3s;
  }


  /* スマホ用グローバルナビ（非表示） */
  .sp_nav_global, .sp_nav_toggle {
    display: none;
  }

  /* グローバルナビ */
  .nav_global {
    display: block;
    width: 51vw;
    max-width: 800px;
    padding-top: 8px;
  }
  
  .nav_parent {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    height: 100%;
  }

  .nav_parent > li {
    position: relative;
    padding-top: 0.26rem;
    height: 100%;
    flex: 1;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
  }

  .nav_parent a {
    display: inline-block;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  /* 仕切り線 */
  .nav_parent > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.55rem;
  height: 1.6rem;
  border-left: 1px solid #dddddd;
  }

  /* マウスホバー時中央から伸びるアンダーライン */
  .nav_parent > li::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 0.2rem;
    background: rgb(73, 116, 255);
    background: rgb(255, 255, 255);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: .3s;
    z-index: 100000;
  }

  /* マウスホバー時中央から伸びるアンダーライン（実行部） */
  .nav_parent > li:hover::after {
    transform: scale(1, 1);
  }
  
  /* 開いているページに該当するグローバルナビにアンダーライン */
  .nav_parent li.selected::after {
    transform: scale(1, 1);
  }


  /* ドロップリスト */
  .nav_drop_list {
    position: relative;
  }

  .nav_drop_list > a {
    cursor: default;
  }

  /* ドロップリスト下矢印 */
  .nav_drop_list > a::before {
    content: '';
    position: absolute;
    display: block;
    width: 0.47rem;
    height: 0.47rem;
    bottom: 0.36rem;
    left: 47%;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
  }

  /* ドロップダウンメニュー表示、非表示制御用 */
  .nav_drop_list_toggle {
    position: absolute;
    top: 100%;
    right: -140%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0.5);
  }

  /* ドロップダウンメニュー表示、非表示制御用 */
  .nav_drop_list_toggle.company {
    right: calc(-100px - 6vw);
  }

  /* ドロップダウンメニュー表示用（JQueryにてクラス[active]追加） */
  .nav_drop_list_toggle.active {
    opacity: 1;
    transition: all 0.3s;
    visibility: visible;
    transform: scaleY(1);
  }

  /* ドロップダウンメニュー親（初期非表示） */
  .nav_child {
    display: flex;
    padding: 25px 0 0 0;
  }
  

  /* ドロップダウンメニュー子 */
  .nav_child > li {
    position: relative;
    margin: 0.6rem 0.6rem;
    padding: 0;
    width: 10.6rem;
    height: 7.64rem;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    transition: all 0.2s
  }

  /* ドロップダウンメニュー子 ホバー */
  .nav_child > li:hover {
    color: rgb(196, 252, 249);
    transform: scale(1.08);   /* 拡大 */
  }

  /* ドロップダウンメニュー画像スタイル */
  .nav_child_img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
  }

  /* ドロップダウンメニューテキスト */
  .nav_child_img::after {
    position: absolute;
    margin: 0;
    padding-top: 0.1rem;
    bottom: -2.2rem;
    left: 0;
    right: 0;
    width: 100%;
    height: 2rem;
    letter-spacing: 0.1rem;
  }

  /* ドロップダウンメニュー画像URL */
  .construction_url {
    background-image: url(../image/header/kuinose.jpg);
  }
  /* ドロップダウンメニューテキスト */
  .construction_url::after {
    content: '建築事業';
  }

  /* ドロップダウンメニュー画像URL */
  .engineering_url {
    background-image: url(../image/header/road.jpg);
  }
  /* ドロップダウンメニューテキスト */
  .engineering_url::after {
    content: '土木事業';
  }

  /* ドロップダウンメニュー画像URL */
  .pavement_url {
    background-image: url(../image/header/hosou.jpg);
  }
    /* ドロップダウンメニューテキスト */
  .pavement_url::after {
    content: '舗装・維持';
  }

  /* ドロップダウンメニュー画像URL */
  .sdgs_url {
    background-image: url(../image/header/sdgs.jpg);
  }
    /* ドロップダウンメニューテキスト */
  .sdgs_url::after {
    content: 'SDGs宣言';
  }

  /* ドロップダウンメニュー画像URL */
  .topmessage_url {
    background-image: url(../image/header/business_card.png);
  }
    /* ドロップダウンメニューテキスト */
  .topmessage_url::after {
    content: 'ごあいさつ';
  }

  /* ドロップダウンメニュー画像URL */
  .outline_url {
    background-image: url(../image/header/office.jpg);
  }
    /* ドロップダウンメニューテキスト */
  .outline_url::after {
    content: '会社概要';
  }

  /* ドロップダウンメニュー画像URL */
  .group_url {
    background-image: url(../image/header/house.jpg);
  }
    /* ドロップダウンメニューテキスト */
  .group_url::after {
    content: '関連会社';
  }

  /* ドロップダウンメニュー画像URL */
  .inquiry_url {
    background-image: url(../image/inquiry/mail.jpg);
  }
    /* ドロップダウンメニューテキスト */
  .inquiry_url::after {
    content: 'お問い合わせ';
  }

}


/* タブレット横・パソコン（1366×768）※パソコン共通に上書きするため、パソコン共通より下に記述する） */
@media all and (max-width: 1400px) and (min-width: 1023px) {

  .header_logo {
    padding: 3px 8% 3px 0;
    height: 100%;
  }

}
/* end header 
---------------------------------------------------------------------*/



/* footer 
---------------------------------------------------------------------*/

.footer {
  width: 100%;
  margin: 5rem 0 0 0;
  padding: 2rem 2rem 1rem 2rem;
  background-color: rgb(42, 60, 100);
  color: #ffffff;
  }

.footer .policy {
  overflow: hidden;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 200;
  letter-spacing: 0.2rem;
}

.footer .company {
  margin: 0.6rem 0 3rem 0;
  overflow: hidden;
  text-align: center;
  font-size: 2.0rem;
  letter-spacing: 0.7rem;
}

.footer .fb_logo {
  margin: 0 0 0.5rem 0;
  font-size: 2.3rem;
  text-align: center;
}
.footer .fb_logo i { 
  margin: 0 0.25rem;
}

.wakayama100 {
  margin: 0 0 3rem 0;
  text-align: center;
}
.img_wakayama100 {
  width: 19rem;
}

.copyright {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}


/* タブレット横・パソコン共通 */
@media all and (min-width: 1023px) {

  .footer {
    margin: 6.5rem 0 0 0;
    padding: 1.5rem 2rem 1.5rem 2rem;
    width: 100%;
  }

  .footer .company {
    margin: 1rem 0 3rem 0;
    font-size: 2.5rem;
  }

}
/* end footer 
---------------------------------------------------------------------*/



/* キービジュアル部
---------------------------------------------------------------------*/

/* キービジュアル親 */
.key_visual {
  position: relative;
}

/* キービジュアル部のサイズ指定 */
.key_visual_inner {
  position: relative;
  height: 38vw;
  max-height: 340px;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 6%;
  padding-right: 6%;
}

/* タイトル背景画像の属性 */
.key_visual_img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(70%);    /* 暗くして文字を見やすく */
}

.key_visual_heading {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  color: #ffffff;
}

.key_visual_heading h1 {
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 1.3rem; 
  text-indent: 1.3rem;   /* 中央揃えを維持するためletter-spacingと同様の値をセット */
  text-shadow: 0px 1px 1px #1b1b1b , 0px -1px 1px #1b1b1b
  , 1px 0px 1px #1b1b1b , -1px 0px 1px #1b1b1b
  ,1px 1px 1px #1b1b1b , 1px -1px 1px #1b1b1b
  , -1px 1px 1px #1b1b1b , -1px -1px 1px #1b1b1b;
}

.key_visual_heading p {
  margin-top: 0.7rem;
  font-size: 1.0rem;
  font-weight: 400;
  letter-spacing: 0.4rem; 
  text-indent: 0.4rem;   /* 中央揃えを維持するためletter-spacingと同様の値をセット */
  text-shadow: 0px 1px 1px #1b1b1b , 0px -1px 1px #1b1b1b
  , 1px 0px 1px #1b1b1b , -1px 0px 1px #1b1b1b
  ,1px 1px 1px #1b1b1b , 1px -1px 1px #1b1b1b
  , -1px 1px 1px #1b1b1b , -1px -1px 1px #1b1b1b
}


/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {

  /* キービジュアル部のサイズ指定 */
  .key_visual_inner {
    position: relative;
    height: 35vh;
    max-height: 370px;
    margin-bottom: 0;
    padding-bottom: 0px;
    padding-left: 6%;
    padding-right: 6%;
  }

  /* キービジュアルタイトルの位置 */
  .key_visual_heading {
    top: 58%;
  }

  .key_visual_heading h1 {
    font-size: 3.7rem;
    letter-spacing: 1.2rem; 
    text-shadow: 0px 2px 2px #1b1b1b , 0px -2px 2px #1b1b1b
    , 2px 0px 2px #1b1b1b , -2px 0px 2px #1b1b1b
    ,2px 2px 2px #1b1b1b , 2px -2px 2px #1b1b1b
    , -2px 2px 2px #1b1b1b , -2px -2px 2px #1b1b1b;
      }
  
  .key_visual_heading p {
    margin-top: 1rem;
    font-size: 1.5rem;
    text-shadow: 0px 1px 1px #1b1b1b , 0px -1px 1px #1b1b1b
    , 1px 0px 1px #1b1b1b , -1px 0px 1px #1b1b1b
    ,1px 1px 1px #1b1b1b , 1px -1px 1px #1b1b1b
    , -1px 1px 1px #1b1b1b , -1px -1px 1px #1b1b1b
    }


}   /* end パソコン・タブレット用 */


/* タブレット横・パソコン（1366×768）※パソコン共通に上書きするため、パソコン共通より下に記述する） */
@media all and (max-width: 1400px) and (min-width: 1023px) {

  .key_visual_heading h1 {
    font-size: 3.5rem;
    letter-spacing: 1.1rem; 
    text-shadow: 0px 1.8px 2.5px #1b1b1b , 0px -1.8px 2.5px #1b1b1b
    , 1.8px 0px 2.5px #1b1b1b , -1.8px 0px 2.5px #1b1b1b
    ,1.8px 1.8px 2.5px #1b1b1b , 1.8px -1.8px 2.5px #1b1b1b
    , -1.8px 1.8px 2.5px #1b1b1b , -1.8px -1.8px 2.5px #1b1b1b;
  }
  
  .key_visual_heading p {
    margin-top: 1rem;
    font-size: 1.45rem;
    }


}   /* end タブレット用 */

/* end キービジュアル部
---------------------------------------------------------------------*/




/* ページナビ（共通）
---------------------------------------------------------------------*/

/* ページナビ背景色 */
.page_nav_common_bgcolor {
  margin-bottom: 2rem;
  padding: 0.3rem 0;
}

/* ページナビ */
.page_nav_common {
  margin: 1.5rem 0 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  padding: 0;
}
.page_nav_common li {
  margin: 0 0.5rem;
}

/* ページナビボタン */
.page_nav_link {
  font-size: 0.95rem;
  width: 8.5rem;
  color: #686868;
}
.page_nav_link_2 {
  width: 7rem;
} 

/* 選択済ボタン */
h3.page_nav_common_selected {
  color: #152f66; 
  font-weight: 600;
}

/* ページナビボタン右矢印（fontawesome） */
.page_nav_common_btn h3::after {
  position: absolute;
  content: '\f101';
	font-family:'Font Awesome 6 Pro';     /* Free版だがPro指定が必要 */
  font-weight:900;
  top: 12%;
  right: 1%;
}

/* ページナビボタン左矢印（fontawesome） */
.page_nav_common_btn.arrow_left h3::after {
  position: absolute;
  content: '\f100';
	font-family:'Font Awesome 6 Pro';     /* Free版だがPro指定が必要 */
	font-weight:900;
  right: 90%;
}


/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {

  /* ページナビ背景色 */
  .page_nav_common_bgcolor {
    margin-bottom: 3.5rem;
    padding: 0.6rem 0;
  }

  /* ページナビボタン */
  .page_nav_link {
    font-size: 1.1rem;
    width: 9rem;
  }
  .page_nav_link_2 {
    width: 10rem;
  } 
  /* ページナビボタンテキスト */
  .page_nav_common_btn h3 {
    padding-top: 0.2rem;
    font-size: 1.15rem;
  }

  /* ページナビボタン右矢印（fontawesome） */
  .page_nav_common_btn h3::after {
    top: 15%;
    right: 2%;
  }

}

/* end ページナビ 
---------------------------------------------------------------------*/



/* トップページ
---------------------------------------------------------------------*/

/* ヒーロー動画をposition: fixedすることへのfooter対応 */
.top_page .footer {
  position: relative;
  margin: 0;
}

.hero_movie {
  position: fixed;
  margin-bottom: 7%;
  width: 100%;
  height: 80vw;
  max-height: 580px;
}
 
/* ヒーロー動画分のスペース確保（回り込み回避） */
.padding_hero_movie {
  height: 80vw;       /* .hero_movie.heightと同じにする */
}

.hero_movie video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -10;
}

.hero_movie .sp_video {
  font-family: 'object-fit: cover;'; /* IE対策 object-fit-videos.min.js*/
}
.hero_movie .pc_video {
  display: none;
}

/* 本社の映像で会社名表示 */
.hero_text {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 80%;
}

/* 本社の映像で会社名表示（背景バー） */
.hero_text::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) , rgba(0, 0, 0, 0));
  transform-origin: left top;
  transform: scale(0,1);
  transition: all 0.9s;
  z-index: -1;
}

/* 本社の映像で会社名表示（背景バーを左から右に伸ばす） */
.hero_text.active::after {
  transform: scale(1,1);
}

/* 本社の映像で会社名表示（テキスト） */
.slide_text {
  padding: 0.1rem 0 0.2rem 2rem;
  color: #ffffff;
  font-size: 1.0rem;
  font-weight: 200;
  letter-spacing: 0.1rem;
  opacity: 0;
  transition: all 1.0s;
}

/* 本社の映像で会社名表示（テキストを右から左にスライド表示） */
.hero_text.active .slide_text{
  animation-name: RightToLeft;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-timing-function: cubic-bezier(.075,.82,.165,1.000);
  animation-delay: 0.8s;      /* アニメーション開始までの時間 */
  animation-duration: 1.8s;   /* アニメーション時間 */
}

/* Loadingメッセージ（動画再生開始時にjsにて非表示） */
.poster_text {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 85%;
  padding: 0.3em 0 0.3em 2em;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) , rgba(0, 0, 0, 0));
  color: #ffffff;
  font-size: 0.9em;
  font-weight: 200;
  letter-spacing: 0.4em;
  z-index: 0;
}

/* Loadingメッセージ（点滅） */
.poster_text_blinking {
  animation: blinking 1.9s 0s ease-in-out infinite;   
}


/* 下スクロールリンク（spでは不要） */
.hero_movie .scroll {
  display: none;
}


.news_space{
  position: relative;
  width: 100%;
  padding: 7% 0 8%;
  background-color: rgb(255, 255, 255);
}

.top_news {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 1%;
  margin-bottom: 2rem;
}

.top_news > h2 {
  margin: 0 0 0.7rem 0;
  padding: 0 0 0.2rem 0;
  color: rgb(0, 79, 139);
  border-bottom: 2px solid rgb(000, 090, 160);
  font-size: 1.9rem;
  letter-spacing: 0.5rem;
}

.p_news_list {
  position: absolute;
  top: 0.4rem;
  right: 0.8rem;
  font-size: 1.25rem;
}

.top_news li {
  position: relative;
  padding: 0.7rem 0;
  border-bottom: 1px solid #e0e0e0;
}

/* ホバー時アンダーラインを右に伸ばす */
.top_news li::before {
  content: '';
  position: absolute;
  z-index: 100;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #1cbfff;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.79, 0.17, 0.15, 0.96), opacity 0.1s;
}
/* ホバー時アンダーラインを右に伸ばす */
.top_news li:hover::before, .top_news li:active::before {
  transform: scaleX(1);
  opacity: 1;
}
.top_news li:hover > p {
  animation-name: right_left;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-delay: 0s;      /* アニメーション開始までの時間 */
  animation-duration: 0.5s;   /* アニメーション時間 */
}

.date {
  display: inline-block;
  margin: 0 0 0.3rem 0.1rem;
  padding: 0;
  font-weight: 300;
  font-size: 1.1rem;
  font-family: 'Roboto';
  color: #8f8f8f;
  letter-spacing: 1px;
}

.category {
  display: inline-block;
  margin: 0 1rem;
  padding: 0 0 0.1rem 0;
  width: 6.5rem;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  border-radius: 0.1rem;
  color: #1a1a1a;
  letter-spacing: 1px;
}

/* カテゴリ背景色（施工実績） */
.top_news .works {
  border: solid 1px #c1cfe6;
  color: #1552ad;
  background-color: #e6f0ff;
}

/* カテゴリ背景色（イベント） */
.top_news .event {
  border: solid 1px #e7c9c4;
  color: #f04318;
  background-color: #fff1ef;
}

/* カテゴリ背景色（告知） */
.top_news .info {
  border: solid 1px #cfe2cf;
  color: #209720;
  background-color: #f3fbf0;
}

.title {
  margin: 0;
  padding: 0.1rem 0 0.2rem 0.6rem;
  color: #3d3d3d;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.2s;
}


/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {

  .hero_movie {
    margin-bottom: 0;
    width: 100%;
    height: 87vh;
    max-height: 900px;
  }

  /* ヒーロー動画分のスペース確保（回り込み回避） */
  .padding_hero_movie {
    height: 87vh;       /* .hero_movie.heightと同じにする */
  }


  .hero_movie .pc_video {
    display: block;
    font-family: 'object-fit: cover;'; /* IE対策 object-fit-videos.min.js*/
  }  
  .hero_movie .sp_video {
    display: none;
    font-family: initial;
  }

  .hero_movie .hero_text {
    position: absolute;
    bottom: 5rem;
    left: 0;
    width:80%;
  }

  .slide_text {
    padding: 0 0 0 7rem;
    color: #ffffff;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
  
  /* Loadingメッセージ */
  .poster_text {
  bottom: 30%;
  left: 0;
  width: 55%;
  padding: 0.3em 0 0.3em 5.5em;
  font-size: 1.3rem;
  letter-spacing: 0.4em;
  }

  /* 下スクロールリンク */
  .hero_movie .scroll {
    display: block;
    position: absolute;
    margin: auto;
    bottom: 0.3rem;
    left: 0;
    right: 0;
    width: 6rem;
    color: #ffffff;
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 0.1rem;
    }

  /* 下スクロールリンク（サークル） */
  .hero_movie .scroll::after {
    position: absolute;
    margin: auto;
    content: "";
    bottom: 2.9rem;
    left: 0;
    right: 0;
    border: 2px solid #ffffff;
    border-radius: 30rem;
    width: 3.9rem;
    height: 3.9rem;
    animation: up_down 1.8s 0s ease-in-out infinite;   
  }

  /* 下スクロールリンク（下矢印） */
  .hero_movie .scroll::before {
    position: absolute;
    margin: auto;
    content: "";
    bottom: 4.4rem;
    left: 0;
    right: 0;
    width: 1.1rem;
    height: 1.1rem;
    border-right: solid 3.5px #ffffff;
    border-bottom: solid 3.5px #ffffff;
    border-radius: 0.1rem;
    transform: rotate(45deg);
    animation: up_down 1.8s 0s ease-in-out infinite; 
  }

  /* 下スクロールリンク（ホバー） */
  .hero_movie .scroll:hover, .hero_movie .scroll:hover::after
  , .hero_movie .scroll:hover::before {
    transition: 0.4s;
    color: rgb(255, 235, 198);
    border-color: rgb(255, 235, 198);
  }

  
  .news_space{
    padding: 2% 0 7%;
  }

  .top_news {
    width: 57rem;
    margin: 0 auto;
    padding: 0;
  }

  .top_news > h2 {
    padding: 0 0 0.4rem 0;
    font-size: 2.5rem;
  }

  .p_news_list {
    top: 0.9em;
  }
  
  .top_news li {
    margin: 0 1rem;
    padding: 0.6rem 0;
  }

  .date {
    margin: 0;
    padding: 0 0 0 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  
  .category {
    display: inline-block;
    margin: 0 1.5rem;
    padding: 0 0 0.1rem 0;
    width: 6.2rem;
    font-size: 0.8rem;
    text-align: center;
  }
  
  .title {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
  }
  
  
}
/* end トップページ
---------------------------------------------------------------------*/



/* NEWSリスト
---------------------------------------------------------------------*/

/* ※キービジュアル基本定義は上部に共通化 */

/* タイトル背景画像部 */
.key_visual_news_list {
  position: relative;
}

/* タイトル背景画像URL */
.key_visual_bgurl_news_list {
  background-image: url(../image/news/key_visual.jpg);
}

/* キービジュアル部のサイズ指定 */
.key_visual_news_list_inner {
  position: relative;
  height: 34vw;
  max-height: 210px;
  margin: 0 0 2rem 0;
  padding-bottom: 0;
  padding-left: 6%;
  padding-right: 6%;
}

/* キービジュアルタイトルの位置 */
.key_visual_news_list_inner .key_visual_heading {
  top: 4.9rem;
}

/* キービジュアル部タイトル */
.key_visual_news_list_inner .key_visual_heading h1 {
  letter-spacing: 0rem; 
  text-indent: 0rem;   /* 中央揃えを維持するためletter-spacingと同様の値をセット */
  font-size: 2.5rem;
}

/* キービジュアル部タイトル */
.key_visual_news_list_inner .key_visual_heading p {
  letter-spacing: 0rem;
}

/* ※ニュースリストのCSSはトップページ部に記載（共通） */


/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {

  /* キービジュアル部のサイズ指定 */
  .key_visual_news_list_inner {
    position: relative;
    margin: 0 0 3rem 0;
    padding-bottom: 16rem;
    padding-left: 6%;
    padding-right: 6%;
  }

  /* キービジュアルタイトルの位置 */
  .key_visual_news_list_inner .key_visual_heading {
    top: 10rem;
  }

  /* キービジュアル部タイトル */
  .key_visual_news_list_inner .key_visual_heading h1 {
    font-size: 3.5rem;
    letter-spacing: 0;
    text-indent: 0.1rem;   /* 中央揃えを維持するためletter-spacingと同様の値をセット */
    }


}

/* end NEWSリスト
---------------------------------------------------------------------*/



/* NEWS
---------------------------------------------------------------------*/

/* ※キービジュアル基本定義は上部に共通化 */

/* タイトル背景画像部 */
.key_visual_news {
  position: relative;
}

/* タイトル背景画像URL */
.key_visual_bgurl_news {
  background-image: url(../image/news/key_visual.jpg);
  opacity: 0.7;
}

/* キービジュアル部のサイズ指定 */
.key_visual_news_inner {
  position: relative;
  height: 34vw;
  max-height: 200px;
  margin: 0 ;
  padding-bottom: 0;
  padding-left: 6%;
  padding-right: 6%;
}

/* キービジュアルタイトルの位置 */
.key_visual_news_inner .key_visual_heading {
  top: 5rem;
}

/* キービジュアル部タイトル */
.key_visual_news_inner .key_visual_heading h1 {
  letter-spacing: 0rem; 
  text-indent: 0rem;   /* 中央揃えを維持するためletter-spacingと同様の値をセット */
  font-size: 1.2rem;
}

/* キービジュアル部タイトル */
.key_visual_news_inner .key_visual_heading p {
  letter-spacing: 0.1rem;
}

.news_body pre {
  margin: 1.5rem 0 0 0;
  white-space: pre-wrap;
  font-size: inherit;
  font-weight: 300;
  color: #1f3134;
}

.news_body a {
  color: #c9321e; 
}

.news_body a:hover {
  text-decoration:underline;
  text-decoration-color:#c9321e;
}

/* 実績画像一覧 */
.list_news {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  padding: 0;
}

.list_news li {
  margin: 0 0.3rem 1rem 0.3rem;
  width: 320px;
  transition: all 0.3s;
}
/* SPは設定なし（PCのみ） */
.list_news li.li_video {
}

/* 動画 */
.list_news video {
  width: 100%;
  height: 280px;
  filter: drop-shadow(2px 2px 2px #aaa);
  border: none;
  object-fit: contain;  /* 縦横比維持 */
  font-family: 'object-fit: contain;'; /*IE対策*/
}

/* 画像 */
.list_news img {
  width: 100%;
  height: 210px;
  border: 0.2rem solid #ffffff;
  filter: drop-shadow(2px 2px 2px #aaa);
  object-fit: cover;  /* トリミング */
  font-family: 'object-fit: cover;'; /* IE対策トリミング */
}
/* イベント系の写真、及び動画は縦横比がまちまちなのでそれを維持 */
.list_news img.event {
  border: none;
  object-fit: contain;  /* 縦横比維持 */
  font-family: 'object-fit: contain;'; /*IE対策*/
}



/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {

  /* キービジュアル部のサイズ指定 */
  .key_visual_news_inner {
    position: relative;
    padding-bottom: 15rem;
    padding-left: 6%;
    padding-right: 6%;
  }

  /* キービジュアルタイトルの位置 */
  .key_visual_news_inner .key_visual_heading {
    top: 10rem;
  }

  /* キービジュアル部タイトル */
  .key_visual_news_inner .key_visual_heading h1 {
    font-size: 2rem;
    letter-spacing: 0;
    text-indent: 0.1rem;   /* 中央揃えを維持するためletter-spacingと同様の値をセット */
    }

  .news_body pre {
    margin: 3rem 0;
    font-size: 1.1rem;  
    font-weight: 400;
    line-height: 1.8;
  }

  .list_news li {
    margin: 0 0.3rem 1rem 0.3rem;
    width: 32.35rem;
    transition: all 0.3s;
  }
  /* 動画はサイズを大きく */
  .list_news li.li_video {
    width: 46rem;
  }
  .list_news img {
    height: 23.53rem;
  }
  .list_news video {
    height: 35rem;
  }

}

/* end NEWS
---------------------------------------------------------------------*/



/* 事業案内・会社情報 共通
---------------------------------------------------------------------*/


/* タイトル背景画像URL（建築事業｜事業案内） */
.key_visual_bgurl_construction {
  background-image: url(../image/business_construction/sakuraen_top.jpg);
}

/* タイトル背景画像URL（土木事業｜事業案内） */
.key_visual_bgurl_engineering {
  background-image: url(../image/business_engineering/bypass370_3.jpg);
}

/* タイトル背景画像URL（舗装・維持管理｜事業案内） */
.key_visual_bgurl_pavement {
  background-image: url(../image/business_pavement/hosou_sp.jpg);
}

/* タイトル背景画像URL（ごあんない｜会社情報） */
.key_visual_bgurl_topmessage {
  background-image: url(../image/company_topmessage/shimizuura_1.jpg);
}

/* タイトル背景画像URL（会社概要｜会社情報） */
.key_visual_bgurl_outline {
  background-image: url(../image/company_outline/honsha_sp.jpg);
}

/* タイトル背景画像URL（関連会社｜会社情報） */
.key_visual_bgurl_group {
  background-image: url(../image/company_group/around.jpg);
}



/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {

  /* タイトル背景画像URL（建築事業｜事業案内） */
  .key_visual_bgurl_construction {
    background-image: url(../image/business_construction/sakuraen_top.jpg);
  }

  /* タイトル背景画像URL（土木事業｜事業案内） */
  .key_visual_bgurl_engineering {
    background-image: url(../image/business_engineering/bypass370_3.jpg);
  }

  /* タイトル背景画像URL（舗装・維持管理｜事業案内） */
  .key_visual_bgurl_pavement {
    background-image: url(../image/business_pavement/hosou_large.jpg);
  }

  /* タイトル背景画像URL（ごあんない｜会社情報） */
  .key_visual_bgurl_topmessage {
    background-image: url(../image/company_topmessage/shimizuura_1.jpg);
  }

  /* タイトル背景画像URL（会社概要｜会社情報） */
  .key_visual_bgurl_outline {
    background-image: url(../image/company_outline/honsha.jpg);
  }

  /* タイトル背景画像URL（関連会社｜会社情報） */
  .key_visual_bgurl_group {
    background-image: url(../image/company_group/around.jpg);
  }


}




/* 事業案内共通
---------------------------------------------------------------------*/


/* 説明文 */
.business_outline {
  margin-bottom: 4%;
  font-size: 0.9rem;
  font-weight: 400;
  color: #353535;
}

/* 事例イメージ */
.list_case {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  padding: 0;
}

.list_case li {
  margin: 0 0.3rem 1rem 0.3rem;
  width: 42vw;
}

.list_case img {
  width: 100%;
  height: 30vw;
  filter: drop-shadow(2px 2px 2px #aaa);
  object-fit: cover;  /* トリミング */
  font-family: 'object-fit: cover;'; /*IE対策*/
}

.list_case figcaption {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1rem;
}


/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {

  .business_outline {
    font-size: 1.1rem;
    line-height: 1.8rem;
  }

  .list_case {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: stretch;
    padding: 0;
  }

  .list_case li {
    margin: 0 0.5rem 2.5rem 0.3rem;
    width: 17.5rem;
  }
  
  .list_case img {
    width: 100%;
    height: 12.5rem;
    object-fit: cover;  /* トリミング */
    font-family: 'object-fit: cover;'; /*IE対策*/
  }

  .list_case figcaption {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
  }
  
}

/* タブレット横・パソコン（1366×768）※パソコン共通に上書きするため、パソコン共通より下に記述する） */
@media all and (max-width: 1400px) and (min-width: 1023px) {
  .list_case li {
    width: 16.0rem;
  }
  
  .list_case img {
    height: 12.0rem;
  }
}
/* end 事業案内共通
---------------------------------------------------------------------*/



/* SDGs宣言｜会社情報
---------------------------------------------------------------------*/


.img_sdgs {
  margin: 2rem 0 4rem 0;
  width: 100%;
}

/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {
  .img_sdgs {
    margin: 2rem 0 5rem 0;
    width: 100%;
  }

}


/* 会社概要｜会社情報
---------------------------------------------------------------------*/

.philosophy {
  padding: 0 1.4rem;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.1rem;
  color: #020530;
}

.top_message {
  margin-bottom: 1rem;
  padding: 0 1.4rem;
  font-family: var(--font-jpn-serif-1);
  font-weight: var(--font-weight-jpn-serif-1);
}

.president_name {
  text-align: right;
  width: 100%;
  height: 2.3rem;
}

.president_name img {
  height: 100%;
}


dl.profile {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  line-height: 1.5rem;
}

dl.profile > dt {
  width: 27%;
  margin-right: 1%;
  padding: 1rem 0rem 1rem 0.3rem;
  border-bottom: 2px solid #ffffff;
  background-color: #eef4f8;
  color: rgb(28, 40, 65);
  border-radius: 3px;
}

dl.profile > dd {
  width: 70%;
  padding: 1rem 0 1rem 0.5rem;
  border-bottom: 1px solid #dee6ec;
}

/* グーグルマップ */
.gmap {
  margin: 0 0 0.5rem 0;
  height: 0;
  overflow: hidden;
  padding-bottom: 80%;
  position: relative;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}



/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {


  .philosophy {
    padding: 0 0 0 2rem;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    line-height: 2.7rem;  
  }

  .top_message {
    margin-bottom: 1.5rem;
    padding: 0 0 0 2rem;
    font-size: 1.2rem;
  }

  dl.profile > dt {
    width: 22%;
    margin-left: 5%;
    margin-right: 1%;
    padding: 1rem 0.5rem 1rem 1.2rem;
    font-weight: 600;
  }
  
  dl.profile > dd {
    padding: 1rem 0 1rem 1.8rem;
    line-height: 1.8;
  }
  
  /* グーグルマップ */
  .gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
  }


}

/* end 会社概要｜会社情報
---------------------------------------------------------------------*/
 


/* 関連会社｜会社情報
---------------------------------------------------------------------*/

dl.group {
  display: block;
  margin-left: 0;
  line-height: 2rem;
}

dl.group > dt {
  position: relative;
  margin: 0;
  padding: 0rem 1rem 0.6rem 0.5rem;
  border-bottom: 1px solid rgb(211, 217, 221);
  color: rgb(31, 37, 49);
  font-size: 1.4rem;
  font-weight: 500;
}

dl.group > dt::before {
  display: block;
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 0.3em;
  height: 1.3em;
  content: "";
}

dl.group > dd {
  padding: 0.5rem 1rem 1rem 1rem;
  font-weight: 400;
  color: #3d3d3d;
}

/* グーグルマップ */
.gmap_group {
  margin: 0 0 4rem 0;
  height: 0;
  overflow: hidden;
  padding-bottom: 50%;
  position: relative;
}

.gmap_group iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 85%;
}

/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {

  dl.group {
    margin-left: 12%;
  }
  
}

/* end 関連会社｜会社情報
---------------------------------------------------------------------*/




/* 採用情報
---------------------------------------------------------------------*/


/* タイトル背景画像URL（関連会社｜会社情報） */
.key_visual_bgurl_recruit {
  background-image: url(../image/recruit/window.jpg);
}

/* キービジュアル部のサイズ指定 */
.key_visual_recruit_inner {
  position: relative;
  height: 45vw;
  max-height: 270px;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
  padding-left: 6%;
  padding-right: 6%;
}

.key_visual_recruit_inner .key_visual_heading p {
  letter-spacing: 0.1rem;
}

.recruit_message {
  font-size: 1rem;
  text-align: center;
  line-height: 2rem;
  color: #00054e;
}

dl.recruit_detail {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  line-height: 2rem;
}

dl.recruit_detail > dt {
  width: 25%;
  margin-right: 1%;
  padding: 0.7rem 0.5rem 0.7rem 0.5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #eaeff3;
  color: rgb(31, 37, 49);
  font-weight: 400;
}

dl.recruit_detail > dd {
  width: 73%;
  padding: 0.7rem 0rem 0.7rem 0.5rem;
  border-bottom: 1px solid #dee6ec;
  color: #1f1f1f;
  font-weight: 400;
}


/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {

  /* キービジュアル部のサイズ指定 */
  .key_visual_recruit_inner {
    padding-bottom: 19rem;
    padding-left: 6%;
    padding-right: 6%;
  }

  /* キービジュアルタイトルの位置 */
  .key_visual_recruit_inner .key_visual_heading {
    top: 10.5rem;
  }

  .recruit_message {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.8rem;
  }
  
  dl.recruit_detail > dt {
    width: 19%;
    margin-left: 2rem;
    padding: 0.7rem 0.5rem 0.7rem 1rem;
  }
  
  dl.recruit_detail > dd {
    width: 74%;
    margin: 0;
    padding: 0.7rem 0rem 0.7rem 1.5rem;
  }

}



/* 施工実績 一覧
---------------------------------------------------------------------*/

/* キービジュアル親 */
.key_visual_works {
  position: relative;
}

/* タイトル背景画像URL（施工実績） */
.key_visual_bgurl_works {
  background-image: url(../image/works/building.jpg);
}

/* キービジュアル部のサイズ指定 */
.key_visual_works_inner {
  position: relative;
  height: 34vw;
  max-height: 240px;
  padding-bottom: 0;
  padding-left: 6%;
  padding-right: 6%;
}

.key_visual_works_inner .key_visual_heading p{
  letter-spacing: 0.1rem;
}


/* ※ページナビ基本設定は上部に共通化 */

/* ページナビボタン */
.page_nav_works_btn {
  margin: 0 0.5% 0.2rem 0.5%;
  width: 45%;
}

/* ページ内リンクの位置調整（グローバルナビより下に少しずらす） */
a.anchor{
  display: block;
  padding-top: 5.5rem;
  margin-top: -5.5rem;
  visibility: hidden;
}

/* 実績リスト */
.list_works {
  margin: 1.5rem 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

.list_works li {
  margin: 0 0.05rem 6% 0.05rem;
  width: 45vw;
}

.list_works img {
  width: 100%;
  height: 32vw;
  object-fit: cover;  /* トリミング */
  font-family: 'object-fit: cover;'; /*IE対策*/
  transition: all 0.3s;
}

/* 画像ホバー */
.list_works li:hover img, .list_works li:active img {
  animation-name: up_down_2;  /* アニメーション名 */
  animation-fill-mode:forwards;  /* アニメーション最後のCSSを適用 */
  animation-duration: 0.6s;   /* アニメーション時間 */
  z-index: 9999;
}

.list_works h4 {
  margin: 0.7rem 0 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  color: rgb(47, 56, 66);
}


.category_works {
  margin: 0.7rem auto;
  padding: 0 0 0.1rem 0;
  width: 7rem;
  font-size: 0.7rem;
  font-weight: 400;
  text-align: center;
  border-radius: 0px;
  letter-spacing: 0;
}

/* カテゴリ背景色（公共建築） */
.category_works.public {
  border: solid 1px #b5c8e9;
  color: #1552ad;
}

/* カテゴリ背景色（民間建築） */
.category_works.private {
  border: solid 1px #e7c9c4;
  color: #f04318;
}

/* カテゴリ背景色（土木） */
.category_works.engineering {
  border: solid 1px #c2ddc2;
  color: #209720;
}

/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {

  /* キービジュアル部のサイズ指定 */
  .key_visual_works_inner {
    position: relative;
    padding-bottom: 20rem;
    padding-left: 6%;
    padding-right: 6%;
  }

  /* キービジュアルタイトルの位置 */
  .key_visual_works_inner .key_visual_heading {
    top: 11rem;
  }

  /* ページナビボタン */
  .page_nav_works_btn {
    margin: 0 0.5rem;
    width: 14rem;
  }

  /* ページ内リンクの位置調整（グローバルナビより下に少しずらす） */
  a.anchor{
    padding-top: 5rem;
    margin-top: -5rem;
  }

  .list_works {
    margin: 3rem 0 0 0;
  }

  /* 施工実績リスト */
  .list_works li {
    margin: 0 0.05rem 3.5rem 0.05rem;
    width: 24.7rem;
  }
  
  /* 施工実績リスト画像 */
  .list_works img {
    width: 100%;
    height: 15.88rem;
    object-fit: cover;  /* トリミング */
    font-family: 'object-fit: cover;'; /*IE対策*/
  }

  /* 施工実績リストタイトル */
  .list_works h4 {
    margin-top: 1.0rem;
    font-size: 1.1rem;
  }
 
  .category_works {
    margin: 0.7rem auto;
    padding: 0 0 0.1rem 0;
    width: 9rem;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
  }

}
/* end パソコン・タブレット用 */


/* タブレット横・パソコン（1366×768）※パソコン共通に上書きするため、パソコン共通より下に記述する） */
@media all and (max-width: 1400px) and (min-width: 1023px) {

  /* キービジュアル部のサイズ指定 */
  .key_visual_works_inner {
    padding-bottom: 18rem;
  }

  .list_works {
    margin: 2rem 0 0 0;
  }

  /* 施工実績リスト */
  .list_works li {
    margin: 0 0.5rem 2.0rem 0.3rem;
    width: 21.5rem;
  }
  
  /* 施工実績リスト画像 */
  .list_works img {
    height: 14.5rem;
  }

}
/* end タブレット用 */


/* end 施工実績
---------------------------------------------------------------------*/



/* 詳細 施工実績
---------------------------------------------------------------------*/

/* PCのみ回り込み回避 */
.pc_set_padding {
  display: none;
}

.set_margin {
  margin: 0.4rem 0 0 0;
}

.works_detail_main_img {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 90vw;
  overflow: hidden;
}

.works_detail_main_img img {
  width: 100%;
  height: 64vw;
  border: 0.25rem solid #ffffff;
  object-fit: cover;  /* トリミング */
  font-family: 'object-fit: cover;'; /*IE対策*/
  filter: drop-shadow(3px 3px 3px #aaa);
}


/* メイン画像を左から右に流れるように表示する（@mediaに記述するとIEで動かないので注意） */
@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}

/* メイン画像を左から右に流れるように表示する */
.works_detail_main_img:before {
  animation: img-wrap 1.0s cubic-bezier(.87,.12,0,.82) 0.5s 1 forwards;
  background: #f1efeb;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.works_detail_title {
  margin: 1rem 0 0.5rem 0;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.works_info_bg {
  margin: 0.2rem 0 3rem 0;
  padding: 0.5rem 0;
  border-top: 1px solid #d7dfe7; 
  border-bottom: 1px solid #d7dfe7; 
  z-index: 10;
}

.works_info {
  margin: 0 auto;
  width: 90vw;
  padding: 0rem 0.1rem 0rem 1rem;
  color: #494949;
  line-height: 1.4rem;
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.1rem;
}

/* 下スクロールリンク */
.works_info .scroll {
  position: absolute;
  margin: auto;
  top: calc(100% + 4.0rem);
  left: 0;
  width: 6rem;
  color: #424242;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 0.1rem;
  visibility: hidden;   /* SPは文字表示なし */
}

/* 下スクロールリンク（サークル） */
.works_info .scroll::after {
  position: absolute;
  margin: auto;
  content: "";
  top: -3.5rem;
  left: 0;
  right: 0;
  border: 1.5px solid #969696;
  border-radius: 30rem;
  width: 2.2rem;
  height: 2.2rem;
  animation: up_down 1.8s 0s ease-in-out infinite;   
  visibility: hidden; /* SPは文字表示なし */
}

/* 下スクロールリンク（下矢印） */
.works_info .scroll::before {
  position: absolute;
  margin: auto;
  content: "";
  top: -2.8rem;
  left: 0;
  right: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-right: solid 3px #969696;
  border-bottom: solid 3px #969696;
  border-radius: 0.1rem;
  transform: rotate(45deg);
  animation: up_down 1.8s 0s ease-in-out infinite; 
  visibility: hidden; /* SPは文字表示なし */
}

.section_btn_back {
  margin: 0 0 0.5rem 0;
}

/* 戻るボタン */
.back_to_works {
  margin: 0rem auto;
  width: 14rem;
  height: 1.8rem;
  text-align: center;
}

/* 戻るボタン */
.back_to_works h3 {
  position: relative;
  margin: 0;
  padding-top: 0.1rem;
  height: 100%;
  color: #c9321e; 
  border: 1px solid #e59b8e;
  border-radius: 0.3rem;
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.5s;
  border-radius: 20rem;
}

/* 戻るボタンの左矢印（fontawesome） */
.back_to_works h3::before {
  position: absolute;
  content: '\f100';
	font-family:'Font Awesome 6 Free';
	font-weight:900;
  left: 0.5rem;
}

.back_to_works h3:hover{
  background: linear-gradient(to top, #af301f, #d33c28 20%, #d33c28 80%, #ffa88d 100%);
  color: #ffffff;
  border: 1px solid #ffb6a0;
}

/* 実績画像一覧 */
.list_works_detail {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  padding: 0;
}

.list_works_detail li {
  margin: 1px;
  width: 90vw;
}

.list_works_detail .slide_up_3{
  animation-delay: 1.7s;
}
.list_works_detail .slide_up_4{
  animation-delay: 2.2s;
}

.list_works_detail img {
  width: 100%;
  height: 66vw;
  object-fit: cover;  /* トリミング */
  font-family: 'object-fit: cover;'; /*IE対策*/
}

.works_detail_main_img p {
  margin-top: 0.3rem;
  padding: 0 0 0 1rem;
  font-size: 1rem;
}


/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {

  .pc_set_padding {
    display: block;
    margin-bottom: 1rem;
    height: 3.6rem;       /* header高さ */
  }

  .works_detail_main_img {
    width: 57rem;      /* works_detail_title works_info と同値に！ */
  }
  
  .works_detail_main_img img {
    height: 35rem;
  }

  .works_detail_title {
    margin: 0 auto 2rem auto;
    padding: 1rem 0 0 0;
    width: 57rem;       /* works_detail_main_img.width と同値に！ */
    font-size: 1.8rem;
    letter-spacing: 0.3rem;
  }
  
  .works_info {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 0 0 0 4rem;
    width: 57rem;      /* works_detail_main_img.width と同値に！ */
    font-size: 1.1rem;
    line-height: 1.9rem;
  }

  .works_info > li {
    padding: 0;
    width: 50%;
    height: 2.1rem;
    white-space: nowrap;
  }

  /* 下スクロールリンク */
  .works_info .scroll {
    display: block;
    margin: auto;
    top: -3.0rem;
    left: -7rem;
    width: 6rem;
    font-size: 1rem;
    color: #8d8d8d;
    visibility: visible;
  }

  /* 下スクロールリンク（サークル） */
  .works_info .scroll::after {
    display: block;
    top: -5.2rem;
    border: 1.5px solid #969696;
    width: 3.9rem;
    height: 3.9rem;
    visibility: visible;
  }

  /* 下スクロールリンク（下矢印） */
  .works_info .scroll::before {
    display: block;
    top: -3.8rem;
    width: 1.1rem;
    height: 1.1rem;
    border-right: solid 3px #969696;
    border-bottom: solid 3px #969696;
    visibility: visible;
  }

  /* 下スクロールリンク（ホバー） */
  .works_info .scroll:hover, .works_info .scroll:hover::after
  , .works_info .scroll:hover::before {
    transition: 0.3s;
    color: #1cbfff;
    border-color: #1cbfff;
  }


  /* 戻るボタン */
  .back_to_works {
    width: 15rem;
    height: 2rem;
  }

  /* 戻るボタン */
  .back_to_works h3 {
    padding-top: 0.2rem;
    font-size: 1rem;
    font-weight: 300;
  }

  .list_works_detail li {
    width: 35rem;
  }

  .list_works_detail img {
    width: 100%;
    height: 25rem;
    object-fit: cover;  /* トリミング */
    font-family: 'object-fit: cover;'; /*IE対策*/
  }

}

/* タブレット横・パソコン（1366×768）※パソコン共通に上書きするため、パソコン共通より下に記述する） */
@media all and (max-width: 1400px) and (min-width: 1023px) {
  .works_detail_main_img {
    width: 55.5rem;    /* works_detail_title works_info と同値に！ */
  }
  .works_detail_main_img img {
    height: 34.5rem;
  }
  .works_detail_title {
    width: 55.5rem;     /* works_detail_main_img.width と同値に！ */
  }
  .works_info {
    padding: 0.5rem 0 0.5rem 3rem;
    width: 55.5rem;     /* works_detail_main_img.width と同値に！ */
  }
  .list_works_detail li {
    width: 33.2rem;
  }
  .list_works_detail img {
    height: 24.5rem;
  }


}

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


.inquiry {
  position: relative;
}

/* キービジュアル親 */
.key_visual_inquiry {
  position: relative;
}


/* キービジュアル部のサイズ指定 */
.key_visual_inquiry_inner {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 6rem;
  padding-left: 6%;
  padding-right: 6%;
}

/* キービジュアルタイトルの位置 */
.key_visual_inquiry_inner .key_visual_heading {
  top: 4rem;
}

/* 背景画像 */
.inquiry_bg_image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../image/inquiry/inquiry.jpg) ;
  opacity: 0.8;
  z-index: -10;
}

.inquiry_form th {
  display: block;
}

.inquiry_form td {
  display: block;
  margin: 0 0 1rem 0;
}

/*-- 必須ラベル --*/
.icon_required::after {
	display: inline-block;
  content: "必 須"; 
  border: 1px solid #c93a46;
	color: #c30e1e;
	line-height: 1;
	margin-left: 1rem;
	padding: 0.2rem 0.8rem;
	font-size: 0.7rem;
	font-weight: 300;	
	border-radius: 2px;
	position: relative;
	top: -1px;
}

.inquiry_form input[type="text"], .inquiry_form input[type="email"] 
, .inquiry_form input[type="tel"], .inquiry_form textarea {
  padding-left: 0.5rem;
  width: 90vw;
  color: #303030;
  border: 1px solid #c4c4c4;
  border-radius: 0.2rem;
}

.inquiry_form textarea {
  height: 9rem;
}

.inquiry_btn {
  padding: 2rem 0;
  text-align: center;
}

.p_policy {
  line-height: 1.7rem;
  font-family: var(--font-jpn-serif-1);
  font-weight: var(--font-weight-jpn-serif-1);
}

.p_policy h2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.p_policy p {
  margin: 0.5rem 0 1.5rem 0;
  padding: 0 0 0 1rem;
}
.p_policy h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.p_policy ul {
  margin: 0.5rem 0 1rem 0;
  padding: 0 0 0 1rem;
}

/*-- エラーメッセージ  --*/
.content_error { 
	font-size: 0.9rem; 
	padding: 8px 12px; 
	margin-bottom:13px; 
	border: solid 2px #e6b7b7; 
	color: #e60000; 
	background-color:#ffdbdb; 
	border-radius: 3px;
	text-align: left; 
}


/* タブレット横・パソコン共通 -------------------------------------- */
@media all and (min-width: 1023px) {

  /* キービジュアル部のサイズ指定 */
  .key_visual_inquiry_inner {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 14rem;
    padding-left: 6%;
    padding-right: 6%;
  }

  /* キービジュアルタイトルの位置 */
  .key_visual_inquiry_inner .key_visual_heading {
    top: 10rem;
  }

  .inquiry_form tr {
    height: 4rem;
    vertical-align: top;
  }
  
  .inquiry_form th {
    display: table-cell;
    width: 250px;
  }
  
  .inquiry_form td {
    display: table-cell;
    margin: 0;
    width: 600px;
  }
  
  .inquiry_form input[type="text"], .inquiry_form input[type="email"] 
  , .inquiry_form input[type="tel"], .inquiry_form textarea {
    width: 100%;
  }
  
  .inquiry_form textarea {
    height: 14rem;
  }

}

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


