@charset "UTF-8";
*{
	font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 0vw;
}


/*共通*/

img{
  width:100%;
}

main{
  padding-top: 80px;
}

.w-container{
   width: 90%;
   margin: 0 auto;
}

section{
  margin-top: 2em;
}

.title h3{
  text-align: left;
  margin: 2em 0;
}

p{
  font-weight: 400;
}

/*ヘッダー*/
/*ロゴの大きさを調整*/
#toplogo img {
  width: 200px;
}
 
nav{
z-index: 999;
 width: 100%;
 height: 70px;
 position: relative;
 position: fixed;
 background-color: #FFF;
}

.drawer{
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: space-between;
 position: relative;
 height: 70px;
 padding: 0 1em;
}
 
/*ナビゲーション部分*/
 
.menu ul li a {
  display:block;
  padding: 2em;
  border-bottom: 1px dotted #CCC;
  color:#333;
}
 
.menu ul li a:hover{
	background-color:rgb(250, 246, 246);
  color:orange;
}
 
.menu{
  text-align:center;
  font-weight: 700;
  background-color:rgba(255,255,255,0.9);
  transition: 0.5s ease;/*滑らかに表示*/
  transform: translateX(100%);
  -webkit-transform: translateX(100%);/*画面より100%外へ押し出し非表示にさせる*/
  
}
 
/*OPEN時の動き*/
.menu.open {
 -webkit-transform: translateX(0%);
 transform: translateX(0%);/*メニューを元の位置へ戻す*/
}


/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: fixed;    /* 絶対位置指定 */
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
    right:15px;
}
 
.Toggle span {
    display: block;
    position: absolute;
    width: 40px;
    border-bottom: solid 2px #333;
    -webkit-transition: .35s ease-in-out;	/*変化の速度*/
    -moz-transition: .35s ease-in-out;		/*変化の速度*/
    transition: .35s ease-in-out;			/*変化の速度*/
    -webkit-text-stroke-width: 3px;

    -webkit-text-stroke-color: #FFF;
 
}
 /*各ボーダー少しずつずらす*/
.Toggle span:nth-child(1) {
    top:5px;
}
 .Toggle span:nth-child(2) {
    top: 18px;
}
 .Toggle span:nth-child(3) {
    top: 32px;
}
.Toggle.active span:nth-child(1) {
    top: 18px;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*slick*/

.slider-wrap{
  background: url(../img/back.jpg) center / cover;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  position: relative;
}

.slider img{
	width: 80%;
	max-width: 440px;
  margin: 30vh auto 0;
}

/*h1の文字をslickの上に表示*/

.oath{
  position: absolute;
  top: 20%;
  left: 0;
}

.oath h1{
  font-size: 64px;
  color: ghostwhite;
}


/*会社概要*/

.text{
  margin-bottom: 4em;/*h3のmargin-top食い込み分の修正*/
}

.text-wrap .text{
	text-align: left;
}

.text-wrap .sign{
  width: 40%;
  max-width: 160px;
  float: right;
}

.list-wrap .list{
  line-height: 1.6em; 
}

.list-wrap .list .list-inner dt{
  font-weight: 600;
}

.list-wrap .list .list-inner dd{
  font-size: clamp(1rem, 0.9452rem + 0.2247vw, 1.125rem);
}


/*我が社の強み*/
.motto-details ul li {
	text-align: left;
  font-weight: 600;
}

/*本文の✓マーク*/

.motto .motto-container .motto-details ul {
    list-style-type: none;
    padding: 1em;
    border: 4px solid #fd8c30;
}

.motto .motto-container .motto-details ul li {
    display: flex;
    align-items: center;
    gap: 0 5px;
    padding: .3em;
    font-size: 600;
}

.motto .motto-container .motto-details ul li::before {
    display: inline-block;
    width: 10px;
    height: 5px;
    border-bottom: 3px solid #fd8c30;
    border-left: 3px solid #fd8c30;
    transform: rotate(-45deg) translateY(-1.5px);
    content: '';
}

/*サービス*/

.contents{
	text-align: center;
}

 .contents-container{
    width: 70%;
    margin: 0 auto 2em;  
 }

 /*2番目の画像2枚ある部分*/
 
 .diagonal-images{
    display: flex;
    justify-content: center;
 }
 
 .diagonal-images .image-before img{
   width: 180px;
 }
 
 .diagonal-images .image-after img{
   width: 200px;
   height: auto;
   margin-left: -3rem;
   margin-top: 3rem;
 }
 
 .about .caption{
   width: 80%;
   margin: 1rem auto 2rem auto;
   text-align: left;
 }
 
 /*矢印*/
 
 .arrow {
    display: inline-block;
    width: 62.2px;
    height: 60px;
    background: #f72424;
    clip-path: polygon(0 48.1%, 27.5% 48.1%, 27.5% 0, 72.5% 0, 72.5% 48.1%, 100% 48.1%, 50% 100%);
    margin: 2.4em auto;
  }

  
/*お問い合わせ*/

.info{
  text-align: center;
}

.info-group p{
  font-weight: 700;
  font-size: clamp(1rem, 0.8631rem + 0.5618vw, 1.3125rem);
	margin: 2.4em 0;
}

.info-group .telfaxP{
  padding-top: 2rem;
}

/*お問い合わせボタン*/

a.btn {
	color: #fff;
	font-size: clamp(1rem, -0.3146rem + 5.3933vw, 4rem);
	font-weight: 900;
  padding: 0.8rem 2.4rem;
	background-color: #eb6100;
	border-bottom: 5px solid #b84c00;
	border-radius: 15px;
  }
  
  a.btn:hover {
	margin-top: 3px;
	color: #fff;
	background: #f56500;
	border-bottom: 2px solid #b84c00;
  }

  /*シャドー*/
  a.btn {
	-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
	box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  }

  /*連絡先*/
.number{
  padding-bottom: 2em;
}

.telfax .number .tel-No{
	margin-bottom: 2rem;
}

.number-queue{
	display: flex;
  justify-content: center;
  align-items: center;
}

.number-queue img{
	width: 50px;
	height: auto;
}

.number-queue span{    
	font-weight: 900;
  font-size: clamp(2.5rem, 1.8427rem + 2.6966vw, 4rem);
  margin-left: 1rem;
}

/*アクセス*/

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

.access-inner table{
  text-align: left;
  margin: 0 auto;
  
}

.access-inner table tr th, .access-inner table tr td{
  padding-bottom: 0.4em;
}

.access-inner table tr td{
  padding-left: 1em;
}

/*ロゴ*/
.Logo img{
  width: 250px;
}

iframe{
  width: 100%;
  height: 100vh;
}

/*フッター*/

.footer{
  background-color: #1B1464;
}

.footer-container{
  margin-top: 2em;
  color: #FFF;
}

.footer-nav{
  display: flex;
  justify-content: space-around;
  padding: 1.6em;
}

.footer-nav ul{
 padding: 1.6em;
}

.footer-nav ul li{
  list-style: none;
  font-weight: 700;
}

.footer-nav ul li a:hover{
  color:orange;
}


.footer-Logo{
  width: 160px;
}


/*コピーライト*/
.copyright{
  text-align: center;
}



/*------ここからPC------*/
@media screen and (min-width: 900px) {

.w-container{
  width: 80%;
  max-width: 1000px;
}
 
/*ロゴの大きさを調整*/
#logo img{
  max-width:250px;
}	
	
nav{
 display: flex;
}
 
.Toggle{
 display: none;
}

.menu{
width: 100%;
font-size:0.9em;
background-color: transparent;
margin:0 10px;
-webkit-transform: translateX(0);
transform: translateX(0);
z-index: 999;
}

.menu ul{
 height: 70px;
 display: flex;
 flex-wrap: wrap;
 justify-content: flex-end;
 align-items: center;
}

.menu ul li a{
 padding: 0 1em;
 border-bottom: none;
}

.menu ul li a:hover{
background-color:transparent;
}

/*slick*/

.slider img{
  margin: 10vh auto 0;
}

/*会社概要*/

.list-wrap .list{
  line-height: 2em;
  width: 60%;
  max-width: 800px;
  margin: 0 auto;
}

.list .list-inner{
  display:flex;
  justify-content: flex-start;
  border-bottom: 1px dotted #ccc; 
}

.list .list-inner dt{
  width: 200px;
  padding: 5px;
  text-align: left;
}

.list .list-inner dd{
  padding: 5px;
  width: calc(100% - 200px / 2);
  text-align: left;
}

/*サービス*/

.contents-container{
  max-width: 800px;
}

h3{
	text-align: left;
}

.about{
	display: flex;
	flex-direction: row;
}

.about .caption{
  justify-content: center;
	margin: 2.4em;
}

.about .caption p{
  padding: 0.5em;
}


/*2番目の画像2枚ある部分*/

 .about-reverse .caption{
	margin: 2.4rem 2.4rem 2.4rem 0;
 }
/*flexを逆位置*/
 .about-reverse{
	flex-direction: row-reverse;
 }

/*お問い合わせ*/




/*アクセス*/

.access-inner{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.access-inner table{
  margin: 2.4em;
}

/*フッター*/
.footer-nav ul{
  display: inline-flex;
  width: 80%;
}

.footer-nav ul li a{
  padding-left: 2em;
}


}


@media screen and (min-width: 1280px) {


/*連絡先*/

.number-queue img{
	width: 70px;
}

.number-queue span{    
	font-weight: 900;
  font-size: clamp(2.5rem, 1.8427rem + 2.6966vw, 4rem);
  margin-left: 1rem;
}



}