@charset "utf-8";


.shake:hover {
  animation: shake 0.3s linear infinite;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}
.company-inner{
	background:#fff;
}

.company-title{
	text-align:center;
	padding:3em 0 0;
	margin: 0 auto;
	max-width:90%;

}
@media screen and (min-width:768px){
.company-title{
	max-width:100%;
	}
}

/* ローディングオーバーレイ */
#loading-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  pointer-events: none;
}

/* ロゴふわっとアニメーション */
.loading-logo {
  width: 160px;
  opacity: 0;
  transform: translateY(20px); /* 下から浮かせる */
  animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



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

見出し（共通）

------------------------------------------------------------------- */
.title-inner{
	position:relative;
}
.title-inner::before{
 position: absolute;
  top: calc(-20px - 1px);
  left: 0;
  width: 50%;
  height: 1px;
  content: '';
  background: #000;
}
.title-h2{
	font-size:clamp(35px, 3vw ,50px);
	font-family:"Century Gothic";
	font-weight:500;
	padding: 0 0 0 0px;
	width:min(90% , 1000px);
	margin: 0 auto;
}
.title-h2 span {
  position: relative;

}
.title-inner p{
	font-size:clamp(16px, 3vw ,18px);
	font-family:"Century Gothic";
	font-weight:600;
	padding: 20px 0 0 0px;
	letter-spacing:1px;
}
@media screen and (min-width:768px){
.title-inner::before{
	width: 30%;
}
.title-h2{
	padding: 0 0 0 0px;
	}
.title-inner p{
	padding: 40px 0 0 0px;
	}
}
.concept-color{
color:var(--concept);
}
/* -------------------------------------------------------------------

メインビジュアル

------------------------------------------------------------------- */
.mv-inner{
	padding:0em 0 1em;
	position:relative;
		background: #fff;
}

.mv-copy{
	font-size:clamp(30px, 4vw , 60px);
	font-weight:700;
	letter-spacing:3px;
	position:absolute;
	left:2%;
	bottom:15%;
}
.mv-copy span{
	display:inline-block;
	background:#fff;
	margin:2px 0;
	padding:0 10px;
}


.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:1%;
	right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
	position: absolute;
	left:-20px;
	bottom:10px;
    /*テキストの形状*/
	color: #333;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #333;
    transform: skewX(-31deg);
}

.scrolldown4:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	right:0;
    /*矢印の形状*/
	width:1px;
	height: 50px;
	background:#333;
}
/* -------------------------------------------------------------------
 無限ループスライダー
------------------------------------------------------------------- */
@keyframes horizontal-animation {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.slider-container_top {
  display: flex;
  overflow: hidden;
  margin:0px auto 60px;
}


@media screen and (max-width:768px){
.slider-container {
	margin:100px auto 0;
	}
}
.slider-wrapper {
  display: flex;
  animation: horizontal-animation 90s linear infinite;
}

.slide {
  position: relative;
  width: 900px;
  margin: 0 45px;
}
@media screen and (max-width:768px){
.slide {
  width: 400px;
  margin: 0 20px;
	}
}


.slide img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius:10px;
}
/*
@media (hover: hover) {
  .slider-container:hover .slider-wrapper {
    animation-play-state: paused;
  }
}
*/

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

企業理念

------------------------------------------------------------------- */
.philosophy-inner {

}

.philosophy-inner .philosophy-text{
	font-size:clamp(15px, 2.5vw ,18px);
	font-weight:500;
	line-height:1.75;
	margin:60px 0 0;
	letter-spacing:1.3px;

}
.philosophy-inner .philosophy-text span{
	display:block;
	margin:20px 0;
}

.ph3{
	text-align:center;
	position:relative;
	display: flex;
	justify-content:center;
	align-items: center;	
}
@media screen and (min-width:768px){
.ph3{
	justify-content:flex-start;
	}	
}

.ph3:before{
    content: "";
    width: 40px;
    height: 3px;
    background-color: #333333;
    display: block;
    margin-right: 20px;
	
}
.ph3:after{
    content: "";
    width: 40px;
    height: 3px;
    background-color: #333333;
    display: block;
    margin-left: 20px;
	
}

@media screen and (min-width:768px){
.ph3{
	text-align:left;
	}
}
/* -------------------------------------------------------------------

メッセージ

------------------------------------------------------------------- */
.message-inner{
	display:grid;
	grid-template-columns:1fr;
	gap:50px;
}
@media screen and (min-width:768px){
.message-inner{
	grid-template-columns:1fr 1fr;
	}
}
.eng-name{
	color:rgba(230,230,230,1);
	font-size:clamp(45px, 8vw ,140px);
	font-family:"Century Gothic";
	font-weight:600;
	margin:0 0 0px;
}
@media screen and (min-width:768px){
.eng-name{
	margin:0 0 0px;
	}
}
.title-h3{
	font-size:clamp(28px, 2.2vw ,60px);
	font-weight:600;
}
.message-inner{
	margin:0px 0 0px;
	letter-spacing:2px;
}
@media screen and (min-width:768px){
.message-inner{
	margin:30px 0 0px;
	}
}

.message-inner .ceo-name{
	font-size:clamp(19px, 2.5vw ,30px);
	font-weight:600;
	position:relative;
	padding-left:30px;
	margin:0 0 30px;
}
@media screen and (min-width:768px){
.message-inner .ceo-name{
	margin:0 0 60px;
	}
}

.message-inner .ceo-name:before{
 position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 20px;
  height: 1px;
  content: '';
  background: #000;
}
.message-inner .ceo-text{
	font-size:clamp(14px, 2.5vw ,18px);
	font-weight:500;
	line-height:1.75;

}
.message-inner .ceo-text span{
	display:block;
	margin:10px 0;
}

.photoArea{
  margin: 0 auto;
	max-width:75%;
	text-align:center;
}
.photoArea picture::before {
  content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: #0095D9;
}
.photoArea picture {
  position: relative;
  display: inline-block;
  overflow: hidden;

}

@media screen and (min-width:768px){
.photoArea{
	max-width:100%;
	text-align:left;
  margin: auto 0 0 0;
	}
}

.photoArea.move picture::before {
  animation: barAnime forwards 1.1s 1 ease 0.1s normal;
}
.photoArea picture img {
  opacity: 0;
  transform: scale(1.1);
  	border-radius:10px;
}
.photoArea.move picture img {
  animation: photoAnime forwards 1.1s 1 ease 0.5s normal;
}
@keyframes barAnime{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	68% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@keyframes photoAnime{
	0% {
    opacity: 0;
    transform: scale(1.1);
  }
	50% {
    opacity: 0;
    transform: scale(1.1);
  }
	100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* -------------------------------------------------------------------

施工事例

------------------------------------------------------------------- */
.works-inner{
	width:95%;
	margin: 80px auto 0;
}
.slider-works {
   width:95%;
    margin:0 auto;
}
@media screen and (min-width:768px){
.slider-works {
   width:100%;
	}
}

.slider-works img {
    width:100%;
    height:auto;
}

.slider-works li{
	position:relative;
}

.slider-works li div{
	position:absolute;
	left:0;
	bottom:0;
	background:rgba(255,255,255,.9);
	padding:10px 20px;
	border-radius:0 10px 0 0;
}
.slider-works li div dt{
	font-size:clamp(14px, 2.5vw ,16px);
	font-weight:500;
	letter-spacing:1px;
	color:var(--concept);
}
.slider-works li div dd{
	font-size:clamp(14px, 2.5vw ,16px);
	letter-spacing:2px;
}

.slider-works .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/
.slick-prev, 
.slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    height: 15px;
    width: 15px;
}

.slick-prev {
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right: -1.5%;
    transform: rotate(45deg);
}


.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
	display:inline-block;
	margin:0 5px;
}



.slick-dots button {
    color: transparent;
    outline: none;
    width:4px;
    height:4px;
    display:block;
    border-radius:0%;
    background:#333;
    border:none;
}
.slick-dots .slick-active button{
    background:#0095D9;
}
.slick-slider div { transition: none; }

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

よくある質問

------------------------------------------------------------------- */
.qa-6 {
	max-width: 100%;
	margin-bottom: 5px;
	border-bottom: 1px solid #ccc;
}

.qa-6 summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em 1em 3em;
	color: #333333;
	font-weight: 600;
	cursor: pointer;
	font-size:clamp(14px, 2.5vw ,16px);
	font-weight:500;
	letter-spacing:1px;
}

.qa-6 summary::before,
.qa-6 p::before {
	position: absolute;
	left: 1em;
	font-weight: 600;
	font-size: 1.3em;
}

.qa-6 summary::before {
	color: var(--concept);
	content: "Q";
}

.qa-6 summary::after {
	transform: translateY(-25%) rotate(45deg);
	width: 10px;
	height: 10px;
	margin-left: 10px;
	border-bottom: 3px solid var(--concept);
	border-right: 3px solid var(--concept);
	content: '';
	transition: transform .3s;
}

.qa-6[open] summary::after {
	transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
	font-size:clamp(14px, 2.5vw ,16px);
	font-weight:500;
	letter-spacing:2px;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}
/* -------------------------------------------------------------------

会社概要

------------------------------------------------------------------- */
.company-inner{
	display:grid;
	grid-template-columns:1fr;
	gap:20px;
}
/*
@media screen and (min-width:768px){
.company-inner{
	grid-template-columns:1fr 2fr;
	gap:50px;
	}
}
*/
.company-inner table {
	letter-spacing:2px;
	width:100%;
}
.company-inner table tr{
	border-bottom:1px solid #ccc;
}
.company-inner table th{
	font-size:clamp(14px, 2.5vw ,16px);
	font-weight:500;
	padding:20px 20px 20px 0px;
	width:30%;
}
@media screen and (min-width:768px){
.company-inner table th{
	padding:20px 60px 20px 20px;
	width:200px;
	}
}
.company-inner table td{
	font-size:clamp(14px, 2.5vw ,16px);
	padding:20px 0;
}

.gmap{
	background:url(../cmn/images/map.png) no-repeat 0% 50%;
	background-size:13px;
	padding-left:15px;
}
.gmap a{
	color:#333;
}
.modal-wrapper {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-wrapper.active {
  display: flex;
  opacity: 1;
}

.modal-window {
  position: relative;
  background: #fff;
  padding: 20px;
  width: 850px;
  max-height: 90%;
  border-radius: 8px;
  z-index: 1001;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
@media screen and (max-width:768px){
.modal-window {
	width: 95%;
	}
}

.modal-wrapper.active .modal-window {
  transform: scale(1);
}

.modal-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
}

.modal-content iframe {
  width: 100%;
  height: 70vh;
  border: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color:#000;


}

/* ▼ 初期状態（JS実行前） */
body.is-loading #loading {
  display: flex;
}

body.is-loading #content {
  display: none;
}

/* ▼ 2回目以降（ローディング不要） */
body:not(.is-loading) #loading {
  display: none;
}

/* ▼ 最初から描画させない（チラつき防止の核心） */
html.no-loading #loading {
  display: none !important;
}

/* ローディング全体 */
#loading {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

#loading.fade-out {
  opacity: 0;
}

.loading-inner {
  text-align: center;
}

.spinner {
  margin: 0 auto 20px;
}

.progress-percent {
  font-size: 20px;
  font-weight: bold;
  color: #555;
}
.no-js #loading {
  display: none;
}

.recruit{
	background:url(../images/bg.jpg) no-repeat 50% 50% ;
	padding:10em 0 ;

	letter-spacing:1.5px;
}

.recruit dl{
	text-align:center;
	margin: 0 0 30px;
}

.recruit dl dt{
	text-align:center;
	font-size:clamp(35px, 4vw ,60px);
	font-weight:700;
	color:var(--concept);
  text-shadow: 3px 3px 3px #fff, -3px -3px 3px #fff,
  -3px 3px 0 #fff,  3px -3px 0 #fff,
  3px 0 0 #fff, -3px  0 0 #fff,
  0 3px 0 #fff,  0 -3px 0 #fff;
	/*
	text-shadow:
    0 1px #bbb,
    1px 2px #fff,
    2px 3px #fff,
    3px 4px #fff,
    4px 5px #fff,
    5px 10px 8px #fff;
    */
    margin: 0 0 20px;
}
.recruit dl dd{
	text-align:center;
	font-size:clamp(15px, 2.5vw ,17px);
	font-weight:700;
}

.rec-contact{
	text-align:center;
}

.btn06{
    /*矢印の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
	background:#333;
	color:#fff;
    padding: 10px 40px 10px 30px;
	border-radius:25px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
	font-size:clamp(14px, 2.5vw ,17px);
}

.btn06:hover{
	background:#555;
}


/* 矢印が右に移動 */

.btnarrow1::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    top:42%;
    right: 11px;
    /*矢印の形状*/
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after{
    right: 16px;
}
.line{
	margin: 30px auto 0;
	text-align:center;
}
.line span{
	display:block;
	font-size:clamp(11px, 2.5vw ,13px);
	margin:5px 0 0;
}