@charset "UTF-8";

html{
	font-size:62.5%;
	}

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

body{
	background-size:cover;
	color:#212121;
	text-align:center;
	font-size:1.4rem;
	font-family:"Yu Mincho", "Hiragino Mincho ProN", "serif";
	}

ul {
  list-style: none;
}

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

#lottieSp{
		display:none;
	}

/* --------------------------------
 * 英語フォント
 * -------------------------------- */
.english-font{
	font-weight:400;
}

/* --------------------------------
 * アニメーション　サイトオープン時の遅れ
 * -------------------------------- */

body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

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

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


/* --------------------------------
 * アニメーション　下からフワッと
 * -------------------------------- */

.fadein {
    opacity : 0;
    transform : translate(0, 30px);
    transition : all 1000ms;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* --------------------------------
 * アニメーション　上下に揺れる
 * -------------------------------- */

.fluffy {
  animation: fluffy1 5s cubic-bezier(0.0, 0.0, 0.0, 0.0)  infinite;
}

@keyframes fluffy1 {
  0% { transform:translateY(0) }
	50%{ transform:translateY(15px) }
  100% { transform:translateY(0) }
}

/* --------------------------------
 * 画像右からスライド
 * -------------------------------- */

.sample {
  overflow: hidden;
  position: relative;
}
.sample img {
  display: block;
  height: 100%;
  width: 100%;
}
.sample-second.sample-animation {
  animation: sample-second-img 2s cubic-bezier(.4, 0, .2, 1);
}
.sample-second.sample-animation:before {
  animation: sample-second-before 2s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #6fbaf5;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@keyframes sample-second-img {
  0% {
    opacity: 0;
  }
}
@keyframes sample-second-before {
  100% {
    transform: translateX(100%);
  }
}
/* 画像右からスライド */




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

.site-title{
	margin:130px 0 40px;
	font-size:7.6rem;
	}

/*ハンバーガー*/

.rogo_w_h{
	position:relative;
	width:200px;
	height:auto;
	margin:5px 3%;
	}

.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:45px;
	height:auto;
	z-index:5;
	}

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

.global-nav {
	height: 700px;
}

.global-nav-ul{
	padding: 0;
}

.headerLogo{
	position: absolute;
	top: 23%;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

    

.headerLogo img{
	width: 30%;
}


.navTel{
	font-size: 2.5rem;
	font-family: "Arial", sans-serif; /* ゴシック体のフォントを設定 */
	font-weight: bold;
}
.navTel a{
	color:#141E10;
}
.navTel span{
	font-size: 2rem;
	font-family: "Arial", sans-serif; /* ゴシック体のフォントを設定 */
	font-weight: 100;
	padding: 0 5px 0;
}
.navTel img{
	width: 17px;
}
/*navアイコン*/
.icon{
	display: flex;
    justify-content: flex-end;
	position: absolute;
	top: 13px;
	right: 150px;
}
.icon ul{
   display: flex;
}
.icon li{
   margin: 0 5%;
}
.iconLiTel{
	width: 10px;
}
.iconLi img{
	width: 30px;
}


/*上から下るCSS LOGOの　サイトオープン時の遅れ*/
.headerLogo {
    animation: fadeInLogo 14s ease 0s 1 normal;
    -webkit-animation: fadeInLogo 14s ease 0s 1 normal;
}
@keyframes fadeInLogo {
  0% { transform:translateY(-100%) }
  95%{ transform:translateY(-99%) }
  100% { transform:translateY(0) }
  0% {opacity: 0}
  96% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeInLogo {
  0% { transform:translateY(-100%) }
  95%{ transform:translateY(-99%) }
  100% { transform:translateY(0) }
  0% {opacity: 0}
  96% {opacity: 0}
  100% {opacity: 1}
}




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

.about{
	padding:50px 10% 130px;
	background-color:#fff;
	color:#000;
	top: 30px;
	}

/*タイトル*/
.headihg{
	display:inline-block;
	margin:60px 0 60px 33px;
	padding-bottom:15px;
	letter-spacing:2px;
	font-size:3.5rem;
	font-weight: 600;
	color:#fff ;
	text-shadow: 0 5px 5px rgba(0, 0, 0, 1);
	}

.headihg::before,
.headihg::after{
	content:'';
	position:absolute;
	right:0;
	bottom:0;
	left:0;
	border-bottom:1px solid #fff;
	}

.headihg::before{
	bottom:5px;
	}
/*タイトル2*/
.headihg_g{
	display:inline-block;
	margin:60px 15px 0 0;
	padding-bottom:15px;
	letter-spacing:2px;
	font-size:3.5rem;
	font-weight: 600;
	color:#000 ;
	text-shadow:1px 1px 0 #f0f0e7, -1px -1px 0 #f0f0e7,
              -1px 1px 0 #f0f0e7, 1px -1px 0 #f0f0e7,
              0px 1px 0 #f0f0e7,  0-1px 0 #f0f0e7,
              -1px 0 0 #f0f0e7, 1px 0 0 #f0f0e7;
	}

.headihg_g::before,
.headihg_g::after{
	content:'';
	position:absolute;
	right:0;
	bottom:0;
	left:0;
	border-bottom:1px solid #000;
	}

.headihg_g::before{
	bottom:5px;
	}

.about-text_1{
	margin:0;
	line-height:3rem;
	color:#000 ;
	text-align: center;
	font-size: 2.3rem;
	font-weight: bold;
	/*text-shadow: 0 3px 3px rgba(0, 0, 0, 1);*/
	}

.about-text{
	margin: 0 auto;
	line-height:2.5;
	color:#000 ;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	/*text-shadow: 0 3px 3px rgba(0, 0, 0, 1);*/
	}

.about_business{
	position: relative;
	margin-top: 50px;
	display: flex;
	font-size: 2.2rem;
}

.about_business_a img{
	margin: 0 10% 0;
	width: 70%;
	/*box-shadow: 8px 5px 5px rgba(0, 0, 0, 0.3);*/
}

.about_business_p img{
	margin: 0 10% 0;
	width: 70%;
	/*box-shadow: 8px 5px 5px rgba(0, 0, 0, 0.3);*/
}


/*背景右斜め*/

.aboutlBGGreetings {
  position: relative;
  overflow: hidden;
}

.aboutlBGGreetings:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 60%;
  margin: 0 -10% 0; 
  background: url("../images/top_1.jpg");
  -webkit-transform-origin:left  center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  transform: rotate(-6deg);
  z-index: -1;
}

/*背景左斜め*/

.diagonalBGGreetings {
  position: relative;
  overflow: hidden;
}

.diagonalBGGreetings:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 40%;
  margin: 0 -10% 0;
  background-image: url("../images/top_2.jpg");
  -webkit-transform-origin:right  center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: rotate(6deg);
  -ms-transform: rotate(6deg);
  transform: rotate(6deg);
  z-index: -1;
}


/*まっすぐ*/
.staff {
  position: relative;
  overflow: hidden;
	padding-bottom: 100px;
}

.staff:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 30%;
  margin: 0 -10% 0;
  background-image: url("../images/top_3.jpg");
  /* 
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  transform: rotate(-6deg);
  */
  z-index: 0;/*ここでｈ2の背景の位置をコントロール*/
}


/*背景斜め*/

/* --------------------------------
 * greetings
 * -------------------------------- */

.greetings{
	padding:80px 10% 130px;
	background-color:#fff;
	color:#000;
	}

/*h2*/
.headihgGreetings{
	display:inline-block;
	margin:0 0 80px;
	padding-bottom:15px;
	letter-spacing:2px;
	font-size:3.5rem;
	font-weight: 600;
	color:#fff ;
	text-shadow: 0 5px 5px rgba(0, 0, 0, 1);
	}


.headihgGreetings::before,
.headihgGreetings::after{
	content:'';
	position:absolute;
	right:0;
	bottom:0;
	left:0;
	border-bottom:1px solid #fff;
	}

.headihgGreetings::before{
	bottom:5px;
	}
/*h2*/

.greetingsBox{
	margin-top: 80px;
	display: flex;
	font-size: 2.2rem;
}
.greetingsBox_1{
	width: 30%;
}
.greetingsBox_1 img{
	width: 100%;
}
.greetingsBox_1 p span{
	font-size: 1.8rem;
}
.greetingsBox_2{
	width: 70%;
	padding-left: 5%;
}
.greetingsBox_2 p {
  margin: 0 0 1.4rem; /* 段落間の余白（調整可） */
  text-align: center;
}
.greetingsText_1{
	 display: block;       /* ブロック化して line-height を確実に効かせる */
	  font-size: 2.3rem;    /* デスクトップ基準 */
	  line-height: 1.4;     /* 読みやすい比率（pxではなく比率推奨） */
	  margin: 4rem 0 2rem;  /* 上下の余白は必要に応じて調整 */
	  font-weight: 700;
	}

.greetingsText{
	display: block;
  font-size: 1.8rem;    /* デスクトップ基準 */
  line-height: 1.8;     /* 行間（見やすさ優先） */
  margin: 0 0 1.6rem;
  white-space: normal;  /* 改行は通常どおり */
	}



/* --------------------------------
 * employeeIntroduction従業員紹介
 * -------------------------------- */

.employeeIntroduction{
	background-color: #fff;
}

/*h2*/
.staff_h2{
	position: relative;
	display:inline-block;
	margin:80px 0 80px;
	padding-bottom:15px;
	letter-spacing:2px;
	font-size:3.5rem;
	font-weight: 600;
	color:#fff ;
	text-shadow: 0 5px 5px rgba(0, 0, 0, 1);
	}


.staff_h2::before,
.staff_h2::after{
	content:'';
	position:absolute;
	right:0;
	bottom:0;
	left:0;
	border-bottom:1px solid #fff;
	}

.staff_h2::before{
	bottom:5px;
	}
/*h2*/

.staffS{
	margin: 0 5% 0;
	position: relative;
	top:100px;
}
.staffS img{
	width: 100%;
    height: 600px;  /* ← 好みで調整OK（350～450くらいが見やすい） */
    object-fit: contain; /* ← 画像を切らずに縮小して枠におさめる */
    display: block;
}

.staffBox{
    display: flex;
    position: relative;
    bottom: 100px;
    justify-content: center;
    align-items: center;
}


/* --------------------------------
 * contact
 * -------------------------------- */

.contact{
	padding:80px 0 150px;
	background:#e9ecee;
	color:#4B4B4B ;
	}

.contact_b{
	background:#e9ecee;
	background-size:cover;
	}

/*タイトル*/
.contact_h2{
	margin:60px 0 30px;
	padding-bottom:15px;
	letter-spacing:2px;
	font-size:3.5rem;
	font-weight: 600;
	color:#000 ;
	}

.contact-from{
	width:50%;
	margin:30px auto 0;
	}

.contact-from input[type=text],
.contact-from textarea{
	display:block;
	width:100%;
	margin-bottom:10px;
	padding:15px;
	outline:none;
	border:1px solid #CFCFCF;
	border-radius:0;
	background-color:#fff;
	color:#4B4B4B;
	}

.contact-from ::-webkit-input-placeholder{
	color: #CFCFCF;
	opacity:1;
	}
	
.contact-from :-ms-input-placeholder{
	color: #CFCFCF;
	opacity:1;
	}

.contact-from ::-moz-placeholder{
	color: #CFCFCF;
	opacity:1;
	}

.contact-from textarea{
	height:250px;
	}

.contact-from input[type=text]:focus,
.contact-from textarea:focus{
	box-shadow:0 0 8px rgba(0,0,0,0.2) inset;
	}


.contact-from input[type=submit]{
	display:block;
	width:100%;
	margin:40px auto 0;
	padding:15px;
	border:1px solid rgba(0,0,0,0.23);
	border-radius:5px;
	background-color:rgba(0,0,0,0.8);
	color:rgba(255,255,255,0.6);
	cursor:pointer;
	}

.contact-from input[type=submit]:hover{
	background-color:rgba(0,0,0,0.3);
	}

/* --------------------------------
 * footer
 * -------------------------------- */
.footer{
	padding:130px 5% 50px;
	font-size:1.3rem;
	background:#6fbaf5;
	font-weight: bold;
	}

.horizontal-item{
	position: relative;
	padding:0;
	letter-spacing:1px;
	}

.horizontal-list{
	width:100%;
	margin:0 auto 30px;
	}

.horizontal-list .horizontal-item a{
	transition:color .15s;
	text-decoration:none;
	}

.horizontal-list .horizontal-item a:hover{
	opacity: 0.5;
	transition: opacity 0.6s;
	}

.horizontal-item-logo img{
	width: 30%;
}

.horizontal-item-name{
	font-size: 4rem;
	padding:0 0 30px;
}

.horizontal-item-address{
	font-size: 2rem;
}

.horizontal-item-tel{
	font-size: 6rem;
}

.horizontal-item-instagram{
	padding: 50px;
}
.horizontal-item-instagram img{
	width: 77px;
}

.cop{
	margin: 0 auto;
}



/* --------------------------------
 * smart phone
 * -------------------------------- */

	
@media (max-width:1024px){
	
	body{
	background-image: none;
	}
	
	}	
	
	
@media (max-width:768px){
	
	body{
		font-size:1.3rem;
		}
	
	/*header*/
	
	/*AE*/
	#lottie{
		display: none;
	}
	#lottieSp{
		display:inline;
	}
	
	
	.header{
		
		}
	
	.rogo_w_h{
	  width:160px;
	  margin-left: 5%;
	}
	.navTel{
		padding: 5px 0 0;
	}
	.navTel img{
	width: 14px;
}
	.button:hover{
		opacity:1;
		}
	
/*logo*/
	.headerLogo{
	position: absolute;
	top: 35%;
    }
    .headerLogo img{
	 width: 300px;
    }
	
/*nav*/
	
.global-nav .nav-item {
  	display: block;
    }
	
    /*navアイコン*/
.icon{
	display:none;
}

/* --------------------------------
 * about me
 * -------------------------------- */	
	.aboutlBGGreetings:before{
		height: 55%;
	}
	.headihg{
		font-size:3.5rem;
		}
	
	.about{
		padding:0 7% 40px;
	}
	
	.about-text{
		line-height:1.8;
		}

	.about_business{
		margin-top: 50px;
	}	
	
	.about_business_a img{
		margin: 0 5% 0 0;
		width: 90%;
	}
	.about_business_p p{
	   font-size: 1.8rem;
		line-height: 3;
	} 
	.about_business_a p{
	   font-size: 1.8rem;
		line-height: 3;
	}
	.about_business_p img{
		margin: 0 0 0 5%;
		width: 90%;
	}

	.contents:before {
    height: 28%;
   }
	
/* --------------------------------
 * staff
 * -------------------------------- */	
.staffS{
	margin: 0 5% 0;
	position: relative;
	top:100px;
}
.staffS img{
	width: 100%;
    height: 100%;  /* ← 好みで調整OK（350～450くらいが見やすい） */
    object-fit: contain; /* ← 画像を切らずに縮小して枠におさめる */
    display: block;
}
.staffBox{
 padding-bottom: 70px;
  bottom: 40px; 
}	

/* --------------------------------
 * greetings
 * -------------------------------- */	
.greetings{
	padding:80px 5% 80px;
	color:#000;
	}

/*h2*/
.headihgGreetings{
	position: relative;
	display:inline-block;
	margin:0;
	padding-bottom:15px;
	letter-spacing:2.2px;
	font-size:3.5rem;
	font-weight: 600;
	}

.headihgGreetings::before,
.headihgGreetings::after{
	content:'';
	position:absolute;
	right:0;
	bottom:0;
	left:0;
	border-bottom:1px solid #fff;
	}

.headihgGreetings::before{
	bottom:5px;
	}
/*h2*/

.greetingsBox{
	display: inline-block;
	font-size:4rem;
}
.greetingsBox_1{
	width: 100%;
}
.greetingsBox_1 img{
	margin: 0 auto;
	width: 100%;
}
.greetingsBox_1 p{
	margin: 30px auto 0;
	font-size: 3rem;
}
.greetingsBox_1 p span{
	font-size: 2.3rem;
}
.greetingsBox_2{
	width: 100%;
	margin: 0 auto;
}

.greetingsText_1{
	font-size: 2.0rem;   /* スマホでは少し小さく */
    line-height: 1.3;    /* スマホ向けに微調整 */
    margin: 2.4rem 0 1.2rem;
	}

.greetingsText{
	margin:50px 0;
	font-size: 1.8rem;
	}
/*h2*/
.staff_h2{
	margin:80px 0 0;
	}	
	/*contact*/
	
	.contact{
		margin-top: 0;
		padding: 1px 0 100px;
	}
	
	.contact-from{
		width:80%;
		}
	
	/* footer*/
	
	.horizontal-list{
		padding:0;
		}

	.horizontal-item{
		display:block;
		padding:5px 0;
		}
	
	.horizontal-item::before{
	display:none
	}
	
	.horizontal-item-logo img{
	width: 50%;
}

.horizontal-item-name{
	font-size: 3.5rem;
	padding:0 0 30px;
}

.horizontal-item-address{
	font-size: 2rem;
}

.horizontal-item-tel{
	font-size: 3rem;
}

	
	}
	