@charset "UTF-8";


/*フォントの指定 */
.wf-notosansjapanese { font-family: "Noto Sans JP"; }
.wf-sawarabimincho { font-family: "Sawarabi Mincho"; }


/*BOXの横並び */

.container {
	container-type: inline-size;
	margin: auto;
	width: 95%;
}

.grid {
  --_column: 1;
  --_gap: clamp(8px, 2cqi, 16px);

  display: block grid;
  grid-template-columns: repeat(auto-fit, calc((100% - var(--_gap) * (var(--_column) - 1)) / var(--_column)));
  gap: var(--_gap);
  justify-content: center;

  @container (800px <= inline-size) {
    --_column: 3;
  }
}


/*説明テキストのBOXスタイル */

.box-design01 {
	margin: 20px auto 20px 20px;
	padding: 20px;
	border: 1px solid #000066;
	font-size: 14px;
	font-weight: normal;
	font-family: "Noto Sans JP";
	color: #006;
}
.box-design01-ttl {
	position: relative;
	left: -40px;
	background-color: #4c9ac0;
	color: #fff;
	padding: 0.5em 1em;
	margin: 0;
	width: 100%;
	font-size: 18px;
	font-family: "Noto Sans JP";
	font-weight: normal;
}

.box-design02 {
	padding:3em 2em 2em; /* ボックス内側余白 */
	position:relative; /* 配置(ここを基準に)*/
	border: 1px solid #757575; /* ボックスの線 (太さ・種類・色)*/
	background-color:#F8F8F8; /* ボックス背景色*/
}
.box-design02-ttl {
	background-color:#757575; /* タイトル背景色 */
	font-size: 1em;/* タイトル文字の大きさ */
	color: #fff ; /* タイトル文字色 */
	padding: 7px 12px;/*タイトルの余白*/
	line-height: 1;/*タイトルの行の高さ*/
	position:absolute;/* 配置(ここを動かす) */
	top: 0; /*上からの距離*/
	left: 0; /*左からの距離*/
}


.box-design {
  margin: 20px auto;
}
.box-design-ttl {
  background-color: #4c9ac0;
  color: #fff;
  padding: 0.5em 20px;
  width: fit-content;
  border-radius: 10px 10px 0 0;
  margin: 0;
  font-size: 17px;
  font-weight: bold;
}
.box-design-txt {
  padding: 10px 20px;
  border: 2px solid #4c9ac0;
}


/*区切り線*/


hr.style-four {
    height: 20px;
    border: 0;
    box-shadow: inset 0 30px 30px -25px rgba(153,204,204,1.5);
}


/*工事内容のミニボタン*/
.text-menu-box01 {
	padding: 5px;	/*上下、左右への余白*/
	text-align: right;
	margin: auto;
}

.btn-social-long-menu {
	color: #FFF;/*文字・アイコン色*/
	border-radius: 7px;/*角丸に*/
	display: inline-block;
	height: 25px;/*高さ*/
	width: 140px;/*幅*/
	text-align: center;/*中身を中央寄せ*/
	font-size: 16px;/*文字のサイズ*/
	line-height: 25px;
	overflow: hidden;/*はみ出た部分を隠す*/
	text-decoration: none;/*下線は消す*/
	background-color: #999999;
	margin: auto;
}

.btn-social-long-menu .fa-menu {
  text-shadow: 2px 2px 0px #4287d6;
  font-size: 14px;
}

.btn-social-long-menu span {
  display:inline-block;
  transition: .5s;
}

.btn-social-long-menu:hover span {
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
}


/*施工事例の写真の表示*/

.anim-box{
    animation-name: fadein;
    animation-duration: 3s;
}
@keyframes fadein{
    from{
    opacity: 0;
    transform: translatey(40px);
    }
    to{
    opacity: 1;
    transform: translatey(0);
    }
}


/*========= モーダル表示のためのCSS ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title{
	font-size:1.2rem;
	text-align: center;
	margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper{
	padding:0;
}


/*代表紹介のタイトル*/
.ceo_title {
	position: relative;
	padding-top: 30px;
	font-size: 18pt;
	border-bottom: 1px solid rgba(5,62,98,1);
	padding-left: 30px;
}

.ceo_title span {
	position: relative;
	z-index: 2;
}

.ceo_title::before {
	content: attr(data-en);
	position: absolute;
	top: 0px;
	left: 0;
	color: rgba(5,62,98,0.2);
	font-size: 40px;
	text-transform: uppercase;
	z-index: 1;
	padding-left: 15px;
}

/*代表紹介の紹介テキスト部分*/
#ceo_box{
	background-size: cover;
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px 0px;
	background-image: url(../img/about/about-ceo-bg.png);
	background-repeat: no-repeat;
	background-position: center;
}

#ceo_box h2{
	font-size: 1rem;
	position: relative;
	margin: 0 0 50px 0;
	color: #006;
}

#ceo_box p{
	text-align: left;
	width: 85%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 50px;
	margin-left: 0;
}

@media screen and (max-width:1090px) {
#ceo_box{
	background-size: cover;
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px 30px;
	background-image: url(../img/about/about-ceo-bg-mini.png);
	background-repeat: no-repeat;
	background-position: center;
}
#ceo_box h2{
    font-size:0.8rem;
	color: #006;
}  
}
@media screen and (max-width:600px) {
#ceo_box{
	background-size: cover;
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px 30px;
	background-image: url(../img/about/about-ceo-bg-mini.png);
	background-repeat: no-repeat;
	background-position: center;
}
#ceo_box .ceo_box-detail h2 br{
    display: block;
}
}

#ceo_box p{
	text-align: left;
	width: 60%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 50px;
	margin-left: 0;
}

@media screen and (max-width:400px) {
#ceo_box{
	background-size: cover;
	color: #333;
    font-size:0.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px 30px;
	background-image: url(../img/about/about-ceo-bg-mini.png);
	background-repeat: no-repeat;
	background-position: center;
}
#ceo_box .ceo_box-detail h2{
    font-size: 0.8rem;
	color: #006;
}
#ceo_box .ceo_box-detail p br{
    display: block;
}
#ceo_box p{
	text-align: left;
	width: 55%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 50px;
	margin-left: 0;
}
}


/*会社理念のスタイル*/

#idea_box{
	background-size: cover;
	display: flex;
	justify-content: right;
	align-items: right;
	background-image: url(../img/about/about-idea-bg.png);
	background-repeat: no-repeat;
	background-position: center;
	padding-top: 100px;
	padding-right: 180px;
	padding-bottom: 100px;
	padding-left: 0px;
	margin: auto;
}

#idea_box h2{
	font-size: 1rem;
	position: relative;
	color: #006;
	text-align: center;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 25px;
	margin-left: auto;
}

#idea_box p{
	width: 85%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 50px;
	margin-left: 0;
}

@media screen and (max-width:1090px) {
#idea_box{
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: right;
	padding: 100px 30px;
	background-image: url(../img/about/about-idea-bg-mini.png);
	background-repeat: no-repeat;
	background-position: right;
}
#idea_box h2{
    font-size:0.8rem;
	color: #006;
	text-align: center;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 25px;
	margin-left: auto;
}  
}
@media screen and (max-width:600px) {
#idea_box{
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px 30px;
	background-image: url(../img/about/about-idea-bg-mini.png);
	background-repeat: no-repeat;
	background-position: center;
}
#idea_box .idea_box-detail h2 br{
    display: block;
}
}

#idea_box p{
	text-align: left;
	width: 60%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 50px;
	margin-left: 0;
}

@media screen and (max-width:400px) {
#idea_box{
	background-size: cover;
    font-size:0.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px 30px;
	background-image: url(../img/about/about-idea-bg-mini.png);
	background-repeat: no-repeat;
	background-position: center;
}
#idea_box .idea_box-detail h2{
    font-size: 0.8rem;
	color: #006;
}
#idea_box .idea_box-detail p br{
    display: block;
}
#idea_box p{
	text-align: left;
	width: 55%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 25px;
	margin-left: 0;
}
}

/*縦書きのスタイル*/

.tate-text {
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;/* IE対応 */
	margin: auto;
	font-size: 16pt;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	line-height: 30pt;
}

.upright {
	text-orientation: upright;
	margin: auto;
}
.tate_text_b {
	font-size: 20pt;
	text-transform: uppercase;
	padding-bottom: 10px;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-weight: bold;
}


.box-design03 {
	background: #b2d3e4;
	box-shadow: 0 0 0 10px #b2d3e4;
	border: 2px dashed #fff;
	margin-top: 50px;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
	width: 35%;
	padding-top: 15px;
	padding-bottom: 15px;
}

@media screen and (max-width:767px){
.box-design03 {
	background: #b2d3e4;
	box-shadow: 0 0 0 10px #b2d3e4;
	border: 2px dashed #fff;
	margin-top: 50px;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
	width: 80%;
	padding-top: 15px;
	padding-bottom: 15px;
	height: 350px;
}
}



.abu-box{
	padding: 5px;/*内側の余白*/
	background: none;/*元のボックス背景色なし*/
	border: 1px solid #ccc;/*線の太さ・種類・色*/
	position: relative;/*配置（基準）*/
	margin: auto;
	width: 98%;
}
.abu-box:after{
	background-color:#eee;/*ずらしたボックスの背景色*/
	border:none;
	content: '';
	position: absolute;/*配置（ここを動かす）*/
	top: 10px;/*上から7pxずらす*/
	left: 10px;/*左から7pxずらす*/
	width: 100%;
	height: 100%;
	z-index: -1;
}


/*スタッフ紹介のレイアウト*/

.inner_about{
	width: 95%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 30px;
	padding-right: 20px;
	padding-bottom: 50px;
	padding-left: 20px;
}

.box{
  display: flex;
  flex-direction: row;
}
.box.reverse{
  flex-direction: row-reverse;
}
.box + .box{
  margin-top: 80px;
}
.box_body{
  width: 100%;
  padding: 0 20px;
}
.box_ttl {
  font-size: 18px;
  text-transform: uppercase;
}
.box_txt {
	margin-top: 20px;
	margin-left: auto;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 12pt;
	margin-right: auto;
	margin-bottom: auto;
}
.box_text01 {
	margin: auto;
	padding: 2px;
	font-size: 10pt;
	text-align: right;
}
.box_image{
  width: 35%;
}
.box_image img{
  object-fit: cover;
}

@media screen and (max-width:767px){
  .box {
    display: block;
  }
  .box + .box{
    margin-top: 60px;
  }
  .box_body{
    width: 100%;
    padding: 0;
  }
  .box_image{
	margin-top: 20px;
	width: 85%;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
  }
}

/*スタッフ紹介の見出し*/


.about-title01 {
	position: relative;
	font-weight: bold;
	text-align: center;
	margin-top: 15;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
	font-size: 16pt;
}
.about-title01 span {
  position: relative;
  z-index: 2;
}
.about-title01::before {
  content: attr(data-en);
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(119,188,255,0.3);
  font-size: 70px;
  font-style: italic;
}


/*スタッフ紹介のスタイル*/

.box001{
	background-image: url(../img/about/bg01.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.box002{
	background-image: url(../img/about/bg02.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}
.box003{
	background-image: url(../img/about/bg01.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.box004{
	background-image: url(../img/about/bg03.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}

.eye_style01 {
	position: relative;
	padding-top: 0.7em;
	padding-right: 0.5em;
	padding-bottom: 0.1em;
	padding-left: 68px;
}

.eye_style01::before {
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    bottom: 0;
    width: calc(100% - 40px);
    height: 3px;
    background: #ccc;
}

.eye_style01 span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 70%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ccc;
    transform: translateY(-50%);
    font-size: 14px;
}

.eye_style01 span::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border: 1px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

*,::before, ::after {
    box-sizing: border-box;
}

h3 {
   margin: 20px;
   color: #333;
}

