@charset "UTF-8";

html{
	font-size:62.5%;
	scroll-behavior: smooth;
	}

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


body{
	width: 100%;
	font-family: quasimoda,"sans-serif","Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight: 100;
	font-style: normal;
	color: #000;
	}

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

i{  
font-family:"FontAwesome";
font-style:normal;  
} 

a {
text-decoration: none;
display:block;
}

img{
max-width: 100%;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}


/*ページ内リンク飛ばし先の位置を直す方法*/
.anchor{
  padding-top:90px;
  margin-top:-90px;
}

/*日本語*/
.font{
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight: 100;
}

/* --------------------------------
 * サイトオープン時の遅れ
 * -------------------------------- */

.header-f {
    animation: fadeIn 6s ease 0s 1 normal;
    -webkit-animation: fadeIn 6s ease 0s 1 normal;
}

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

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
	80% {opacity: 0}
    100% {opacity: 1}
}


/* --------------------------------
 * アニメーション　下からフワッと
 * -------------------------------- */
.fadein {
    opacity : 0;
    transform : translate(0, 30px);
    transition : all 1000ms;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}


/* --------------------------------
 * オープンアニメーション
 * -------------------------------- */
#lottie{
	position: absolute;
	z-index: 100;
	top: 10%;
}
#lottie_sp{
	display: none;
}

/* --------------------------------
 * header
 * -------------------------------- */
.header{
	position: fixed;
    display: flex;
    z-index: 10000;
    background: #fff;
    width: 100%;
	height: 100px;
    top: -1px;
}


.titleH1{
	display: flex;
	position: absolute;
}
.header_logo {
	margin: 10px 5% 0 15%;
}
.header_logo img{
	width: 100px;
}
.header_logo_sp{
	display: none;
}
.sh1{
	width: 400px;
	margin: 35px 0 0;
}
.header_sub_h1{
	position: relative;
}
.header_h1{
	position: absolute;
	top: 280px;
	width:100% ;
	text-align: center;
	/*background: #0f72a9;*/
	color: #fff;
	font-weight: bold;
    font-size: 3rem;
	letter-spacing: 5px;
	z-index: 1000;
	text-shadow: 5px 5px 7px black;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

/*ハンバーガー*/
.global-nav {
	width:100%;
	position: relative;;
	right: 7%;
	top: 10px;
}

header nav ul{
	justify-content: flex-end;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing:0.3rem;
}
header nav ul li{
   z-index: 101;
}
header nav ul li a{
   z-index: 101;
}

/* --------------------------------
 * header_sub
 * -------------------------------- */
.fade-in{ 
　opacity:0;
  animation-name:sample02;
  animation-duration:9.8s; 
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}
@keyframes sample02 {
0% {
 opacity: 0;
 transform: translateX(0px);
}
  50%{
    opacity: 1;
    transform: translateX(0);
  }
 100% {
 opacity:0;
 transform: translateX(-70px);
 } 
}

/* TOP画像 */
.top_g_sp{
	display: none;
}

/* --------------------------------
 * TOPスライダー
 * -------------------------------- */

.img-frame {
    position: relative;
    width: 100%;
	aspect-ratio: 16 / 8;
    /*height: 600px;*/
    overflow: hidden;
    margin: 0 auto;
}


/* 各画像用のスタイル */
.img-01, .img-02, .img-03, .img-04, .img-05 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0; /* 初期状態ではすべて非表示 */
    transition: opacity 1s ease-in-out; /* より滑らかなフェードのためのtransitionを追加 */
}


/* 背景画像の指定 */
.img-01 {
    background-image: url("../images/top_1.jpg");
    animation: slide-animation-01 35s infinite; /* アニメーション時間を長く */
}
.img-02 {
    background-image: url("../images/top_2.jpg");
    animation: slide-animation-02 35s infinite;
}
.img-03 {
    background-image: url("../images/top_3.jpg");
    animation: slide-animation-03 35s infinite;
}
.img-04 {
    background-image: url("../images/top_4.jpg");
    animation: slide-animation-04 35s infinite;
}
.img-05 {
    background-image: url("../images/top_5.jpg");
    animation: slide-animation-05 35s infinite;
}




/* アニメーションの定義 */
@keyframes slide-animation-01 {
    0% { opacity: 1; transform: scale(1.0); } /* 1枚目表示開始 */
    24% { opacity: 1; } /* 1枚目表示継続 */
    30% { opacity: 0; transform: scale(1.05); } /* ゆっくりとフェードアウト */
    94% { opacity: 0; } /* 非表示継続 */
    100% { opacity: 1; transform: scale(1.0); } /* 1枚目再表示 */
}


@keyframes slide-animation-02 {
    0% { opacity: 0; }
    24% { opacity: 0; transform: scale(1.05); } /* 2枚目表示準備 */
    30% { opacity: 1; } /* ゆっくりとフェードイン */
    54% { opacity: 1; } /* 2枚目表示継続 */
    60% { opacity: 0; transform: scale(1.0); } /* ゆっくりとフェードアウト */
    100% { opacity: 0; }
}


@keyframes slide-animation-03 {
    0% { opacity: 0; }
    54% { opacity: 0; transform: scale(1.0); }
    60% { opacity: 1; }
    84% { opacity: 1; }
    90% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; }
}


@keyframes slide-animation-04 {
    0% { opacity: 0; }
    84% { opacity: 0; transform: scale(1.05); }
    90% { opacity: 1; }
    114% { opacity: 1; } /* 意図的に100%を超過させていますが、infiniteなので問題ありません */
    120% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; }
}


@keyframes slide-animation-05 {
    0% { opacity: 0; }
    114% { opacity: 0; transform: scale(1.05); }
    120% { opacity: 1; }
    144% { opacity: 1; }
    100% { opacity: 0; transform: scale(1.05); } /* 最後のフェードアウト */
}
	

.h1B{
	font-size: 6.5rem;
}
.h1S{
	font-size: 1.5rem;
}
/*-------------------------------------------
TOP スクロール促すCSS
-------------------------------------------*/
.arrows {
  width: 60px;
  height: 120px;
  position: relative;
  left: 50%;
  margin-left: -30px;
  top: 60px;
}

.arrows path {
  stroke: #0f72a9;
  fill: transparent;
  stroke-width: 2px;  
  animation: arrow 3s infinite;
  -webkit-animation: arrow 3s infinite; 
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

.arrows path.a1 {
  animation-delay:-1s;
  -webkit-animation-delay:-1s; /* Safari 和 Chrome */
}

.arrows path.a2 {
  animation-delay:-0.5s;
  -webkit-animation-delay:-0.5s; /* Safari 和 Chrome */
}

/* --------------------------------
 * about
 * -------------------------------- */


.about{
	display: flex;
	margin: 150px 10% 0;
}
.about_img{
	width: 50%;
}

.about_img img{
	width: 100%;
}

.about_text{
	width: 50%;
	padding:0 5% 0;
	letter-spacing:0.3rem;
}

.about_text h1{
	text-align: right;
	letter-spacing:0.3rem;
	font-size: 4rem;
	font-weight:bold;
}

.about_text p{
	margin-top: 150px;
	letter-spacing:0.3rem;
	font-size: 1.6rem;
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

.background_about{
	width: 50%;
	height: 500px;
	position: relative;
	background-color: #f0f0f0;
	bottom: 400px;
	margin-bottom: -400px;
	left: 40%;
	z-index: -1000;
}

/* --------------------------------
 * about
 * -------------------------------- */

.container{
	padding: 0 1%;
    margin: 0 auto;
}
.aboutB{
	font-size: 1.8rem;
	font-weight: bold;
}
.aboutb{
	font-weight: bold;
}
.box1 {
    background: #0f72a9;
    padding: 10px 10%;
    margin-bottom: 15px;
    color: #fff;
}
.box1 span{
	font-size: 2rem;
}
.box1 h2{
	font-size: 2.8rem;
	line-height: 2.5rem;
}
.box2 {
    padding: 0 10%;
}
.txt1{
	font-size: 1.5rem;
	line-height: 3rem;
}
.txt2 {
    text-align: right;
    margin-top: 15px;
	font-size: 1.5rem;
}

.item {
    background-color: #f1f1f1;
    height: auto;
    padding: 60px 0;
    margin-top: 100px;
}
.sdgsp p {
    text-align: center;
    margin: 0 auto;
}
.sdgsp img {
    width: 51%;
    text-align: center;
    margin: 0 auto;
}
.sdgsbtn {
    padding: 0 0 0 15px;
    line-height: 50px;
    color: #333;
}
.sdgsbtn{
	padding: 30px 0 0;
	font-size: 2rem;
	font-weight: bold;
}
/* --------------------------------
 * 実績（performance）
 * -------------------------------- */

#performance{
	margin: 150px 0 50px;
}

.performance{
	width: 80%;
	margin: 0 auto;
}

.performance_text{
	margin: 0 0 50px;
	text-align: center;
	letter-spacing:0.3rem;
	font-size: 2rem;
	font-weight:100;
}

.swiper-container_2{
	width: 50%;
	height: 300px;
	margin: 0 auto;
	box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.1);
}

.performance_text span{
	font-weight: 100;
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

.performance_see{
	text-align: center;
}

.performance_see a{
	position: relative;
	margin: 30px;
	letter-spacing:0.3rem;
	font-size: 2rem;
	color: #000;
	font-weight:bold;
	font-weight: 100;
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

/*矢印*/
.performance_see a {
	margin-top: 80px;
}

.performance_see a:hover{
	opacity: 0.3;
	-moz-opacity: 0.8;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.performance_see a span {
  position: absolute;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #0f72a9;
  border-bottom: 1px solid #0f72a9;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
.performance_see a span:nth-of-type(1) {
	left: 60%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.performance_see a span:nth-of-type(2) {
  left: 63%;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
.performance_see a span:nth-of-type(3) {
  left: 66%;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/* --------------------------------
 * 施工事例
 * -------------------------------- */
.exampleH2{
	margin:160px auto 0;
	text-align: center;
	font-size: 2.5rem;
}
.example {
  margin: 0 1% 0;
  width: 98%;
  border-collapse: collapse; /* セルのボーダーを重ねて一本線にする */
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.exampleT th {
  background-color: #f1f1f1;
  color: #000;
  font-weight: bold;
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}
.col-1{
	width: 25%;
}
.col-2{
	width: 50%;
}
.col-3{
	width: 25%;
}
.exampleTB td {
  padding: 10px;
  border: 1px solid #eee;
  text-align: center;
}
/*偶数行に薄い背景色をつける
.exampleTB tr:nth-child(even) {
  background-color: #f9f9f9; 
}
*/
.exampleTF td {
  padding: 10px;
  font-weight: bold;
  text-align: right;
  border-top: 1px solid #ddd;
}

.responsive-break {
  display: none; /* 通常時は非表示 */
}
/* --------------------------------
 * company
 * -------------------------------- */
.company{
	margin-top: 200px;
}

.company h1{
	margin: 0 10% 0;
}

/*table*/
.company_name{
	background-color: #f0f0f0;
}

.tbl-r01 {
  margin: 20px 10% ;
	text-align: left;
	letter-spacing:0.2rem;
	font-size: 1.8rem;
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
.tbl-r01 th {
  padding: 10px;
	font-weight: 100;
}
.tbl-r01 td {
  padding: 10px;
}

.company_name_img{
	position: relative;
	width: 300px;
	bottom: 200px;
	margin-bottom: -200px;
	left: 64%;
	box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.1);
}

.company_name_img img{
   width: 100%;
}

.company_name_img2_flex{
	display: flex;
}

.company_name_img2{
	position: relative;
	left: 10%;
}
.company_name_img2 img{
   width: 100%;
}

.tbl-r02{
	margin:130px 10% 0 15%;
	text-align: left;
	letter-spacing:0.2rem;
	font-size: 1.8rem;
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

.tbl-r02 tr th{
	padding: 10px;
	font-weight: 100;
	width: 250px;
}

.tbl-r02 tr td{
	padding: 10px;
}
.tbl-r02 span{
	font-size: 1.2rem;
}
/* --------------------------------
 * content
 * -------------------------------- */

.content {
  display: flex;
  width: 100%;
  margin: 100px auto;
}
.content .left {
  width: 35%;
  position: relative;
}
/*
疑似要素（before）で白いボックスを作り画像の上に重ねる
「transform: skewX(-18deg);」で角度をつけて平行四辺形にする
positionとrightで画像の上に重ねる
*/
.content .left::before {
  content: "";
  width: 163px;
  height: 100%;
  background: #f0f0f0;
  position: absolute;
  right: -81px;
  transform: skewX(-18deg);
}
.content .left .text-area {
  position: absolute;
  left: 30%;

}
.content .left .title {
  line-height: 1;
  margin-bottom: 56px;
}
/*
「display: block;」を設定することで、
改行されてmargin-bottomが効くようになる。
※spanタグはデフォルトではinlineのため、
改行もされないしmargin-bottomも効かない
*/
.content .left .title .en {
  display: block;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 80px;
  letter-spacing:0.3rem;
}
.content .left .title .ja {
  display: block;
  font-size: 1.8rem;
  font-weight: 100;
  letter-spacing:0.2rem;
}
.content .left .copy {
  font-size: 1.8rem;
  letter-spacing:0.2rem;
}
.content .right {
  width: 65%;
}
/*
「vertical-align: bottom;」で画像の下にできる隙間を消す
「object-fit: cover;」で高さを500pxで固定したままトリミングする
※「object-fit」はIEでは正しく動作しないため注意が必要
*/
.content .right img {
  width: 100%;
  height: 500px;
  vertical-align: bottom;
  object-fit: cover;
}
/* --------------------------------
 * contact　offer
 * -------------------------------- */
.offer{
	margin: 130px 1% 0;
	padding: 50px 10% 50px;
	letter-spacing:0.2rem;
	font-size: 1.8rem;
	color: #fff;
	background: #a4bdd3;
}

.offer h1{
	text-align: center;
}

.offer_flex{
	display: flex;
	justify-content: center;
	text-align: center;
}

.offer_tel{
	margin: 0;
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
.beg{
	margin: 5px;
	font-weight: bold;color: #005bac;
}

.offer_form{
	margin: 20px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background-color:#005bac;
    box-shadow: 0 5px 0 #03315a; /* 影の太さ・色 */
    border-radius: 60px;
}

.offer_form a{
	color: #fff;
	border-radius: 100px;
}
.offer_form:hover{
	box-shadow: none;
    transform: translateY(5px);
}
.offer_form:active {
  box-shadow: none;
  transform: translateY(5px);
}
/* --------------------------------
 * contact
 * -------------------------------- */
.contact{
	margin: 50px 1% 150px;
	padding: 50px 10% 50px;
	/*background: #f0f0f0;*/
	background: #005bac;
	letter-spacing:0.2rem;
	font-size: 1.8rem;
	color: #fff;
}

.contact h1{
	text-align: center;
}

.contact_flex{
	display: flex;
	justify-content: center;
}

.contact_tel{
	margin: 50px;
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

.contact_form{
	margin: 50px;
  width: 250px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	/*background-color: #B1B0B0;*/
	background-color:rgba(255,255,255,0.4);;
	
}

.contact_form a{
	color: #fff;
}

.contact_form a:hover{
	color: #a4bdd3;
	background-color: #C7DEEE;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.cp{
	text-align: center;
}

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

footer{
	margin: 0 10% 0;
}

.logo_poz{
	position: relative;
	left: 82%;
	width: 100px;
}

.logo_poz img{
	width: 100%;
}

.footer_box{
	position: relative;
	bottom: 150px;
	
}

.footer_nav{
	margin-bottom: 80px;
	display: flex;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing:0.3rem;
	color: #7e6646;
}

.footer_nav li{
	margin:0 5% 0 0;
}

.footer_nav a{
	color: #000;
}

.footer_nav a:hover{
	opacity: 0.5;
	-webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.footer_box p{
	margin-top: 20px;
	font-size: 1.5rem;
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

/* --------------------------------
 * メディアクエリー 1400
 * -------------------------------- */
@media screen and (max-width: 1400px) {
/* --------------------------------
 * オープンアニメーション
 * -------------------------------- */
.header_h1{
	top:230px;
}

	
}
/* --------------------------------
 * メディアクエリー 1024
 * -------------------------------- */
@media screen and (max-width: 1024px) {
/* --------------------------------
 * オープンアニメーション
 * -------------------------------- */
#lottie{
	top: 15%;
}
.header_h1{
	top:200px;
	
}
.h1B{
	font-size: 3rem;
}
	

}

/* --------------------------------
 * メディアクエリー
 * -------------------------------- */
@media screen and (max-width: 768px) {
	
	
/* --------------------------------
 * オープンアニメーション
 * -------------------------------- */
#lottie{
	display:none ;
}	
#lottie_sp{
	position: absolute;
	display:block;
	z-index: 100;
}	

/* --------------------------------
 * スライド
 * -------------------------------- */
.img-frame{
   height: 450px;
}
/*-------------------------------------------
TOP スクロール促すCSS
-------------------------------------------*/
.arrows {
  top: 40px;
}
/*nav*/
.drawer-navbar--fixed{position:fixed}
	
/*ページ内リンク飛ばし先の位置を直す方法*/
.anchor{
  padding-top:70px;
  margin-top:-70px;
}

/*rogo*/	
.titleH1{
	position: inherit;
	margin-top: 17px;
}
.header_logo{
	display: none;
}
.header_logo_sp{
	display: block;
	width: 50px;
}
.header_logo_sp {
	margin: 10px 0 0 5%;
}
.header_logo_sp img{
	width: 100%;
}
.sh1{
	margin: 25px 0 0 20px;
	font-size: 0.8rem;	
}
/*rogo*/		
.header_sub_h1 img{
	width: 130px;
}

.rainbow{
		font-size: 1.5rem;
	}
	
.top_slider_man_button{
	bottom: 0;
}

/* TOP文字 */	
.header_h1{
	margin: 0 5%;
	width: 90%;
	top:220px;
	color: #fff;
	font-size: 1rem;
}
.h1B{
	font-size: 2.5rem;
}
.h1S{
	font-size: 2rem;
}
/* TOP画像 */
.top_g_sp{
	display: block;
}	
.top_g{
	display: none;
}
	
/* スライダー */

.top_slider_man{
	padding:0;
	width: 100%;
}

.top_slider_woman{
	padding: 0;
	width: 100%;
}
	
.top_slider_man h2,
.top_slider_woman h2{
		margin: 0 0 20px;
	}
	
/*ハンバーガー*/

.rogo_w_h{
	position:relative;
	width:45px;
	height:auto;
	margin:10px 7%;;
	}

.rogo_w_h a:hover{
	opacity: 0.7;
  filter: alpha(opacity=80);
  -moz-opacity: 0.7;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.img_rogo{
	display: block;
	position:absolute;
	width:100%;
	height:auto;
	z-index:5;
	}

#nav_b{
	position:fixed;
	top:0;
	width:100%;
	height:55px;
	background:#fff;
	z-index:2;
	}

.global-nav {
	width:100%;
	height: 600px;
	margin:-18px auto 0;
    text-align: center;
	position: fixed;
    top: 50px;
	z-index: 101;
}
.global-nav .nav-item {
  display: inline-block;
  margin: 0 10px;
}
.global-nav .nav-item a {
  display: inline-block;
  width: 100px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 8px;
  color: #7e6646;
  font-size: 1.3rem;
  letter-spacing: 1px;
  transition: 0.15s;
  text-decoration:none;
}

.global-nav .nav-item a:hover {
  color:#123631;
}

.global-nav-ul{
	padding: 0;
}
	
	
/* about */
.about{
	display:block !important;
	margin: 80px 5% 100px;
}
.about_img{
	position: relative;
	width: 65%;
	left: 0%;
}
.about_text{
	padding: 0;
	width: 100%;
}
.about_text h1{
  position: relative;
  bottom: 270px;
  font-size: 2.4rem;
}
.about_text p{
	margin-top: 30px;
	font-size: 1.3rem;
}
.background_about {
    width: 60%;
    height: 400px;
    bottom: 440px;
    margin-bottom: -440px;
    left: 40%;
	}
.box1 h2{
	font-size: 2.3rem;
	line-height: 2.5rem;
	text-align: center;
}
.item {
    margin-top: 80px;
}
	/*実績*/
.swiper-container{
	top: 24px;
}
.swiper-container_2{
	width: 100%;
	height: auto;
}
.swiper-container_2 img{
	width: 100%;
}
	
.performance_see a span:nth-of-type(1) {
	top: 50px;
	left: 40%;
}
.performance_see a span:nth-of-type(2) {
	top: 50px;
  left: 48%;
}
.performance_see a span:nth-of-type(3) {
	top: 50px;
  left: 57%;
}	

.content .left .text-area {
  padding: 0 20% 0;
  width: 350px;
  position: absolute;
  top: 70px;
  left: 30%;
  background-color: rgba(255, 255, 255, 0.7);

}
/*company*/	
.exampleH2{
	margin:100px auto 0;
	font-size: 2rem;
}
.example{
	font-size: 1.2rem;
}
.responsive-break {
    display: inline; /* または block */
  }
/*company*/	
.company {
    margin-top: 140px;
}

.company_name{
		margin-top: 30px;
	}
.company_name_img2{
	position: static;
    padding: 0 10% 10%;
}
.company_name_img2_flex {
    margin-top: 60px;
	display: block;
}
.company_name_img2_flex img {
   width: 100%;
}

.tbl-r01{
	font-size: 1.3rem;
}

.tbl-r02{
	width: 95%;
	margin: 0 2.5% 0;
	font-size: 1.3rem;
}

.tbl-r02 th{
	background:#f0f0f0 ;
}

.tbl-r02 tr th{
	width: 100%;
}
	
/*table*/
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }

  .tbl-r02 th,
  .tbl-r02 td {
　　border-bottom: none;
   display: block;
   width: 100%;
  }

/*contact*/
.contact{
	margin: 100px 2.5% 150px;
}

.contact_flex	{
	display: block !important;
}

.contact_tel{
	margin: 0;
	text-align: center;
}	

.contact_form {
    margin: 0 auto;
    width: 100%;
}
	
	
/*footer*/
.footer_nav{
	display: block !important;
}

.footer_box ul li{
	margin: 20px 0 20px;
}

.logo_poz {
    left: 65%;
	}

.footer_box {
    bottom: 110px;
    margin-bottom: -110px;
	}

/*メディアクエリーのケツ*/	
}


