@charset "UTF-8";

html {
  font-size: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f0f0f0;
  font-family: 'Noto Serif JP', serif;
  color: #000;
}

p {
  font-size: 90%;
}

a {
  color: #000;
  font-size: 100%;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.bluetext {
  color:#4da4ff;
  font-weight:bold;
  font-size: 100%;
  margin-bottom: 50px;
}

.redtext {
  color: #ef525e;
  font-size: 80%;
}

.logo {
  width: 125px;
  margin-right: 75px;
  margin-left: 25px;
}

.logo a {
  display: block;
}

.section-title {
  font-weight: normal;
  line-height: 1;
  margin-bottom: 50px;
}
/*
疑似要素を使って下線を引く
*/
.section-title::after {
  content: "";
  width: 150px;
  height: 1px;
  background-color: #4da4ff;
  display: block;
}
/*
「display: inline-block;」を設定してブロック化することで、
改行されてmargin-bottomが使用できるようになる
*/
.section-title .ja {
  display: block;
  font-size: 120%;
  margin-bottom: 10px;
  letter-spacing: 3px;
}
.section-title .en {
  display: block;
  font-size: 45%;
  color: #4da4ff;
  font-weight: 900;
  margin-bottom: 36px;
  letter-spacing: 3px;
}
/*
横幅を設定するための共通クラス
*/
.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
  background-color: #fff;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .inner {
  display: flex;
  align-items: center;
}
#header .inner ul {
  display: flex;
  align-items: center;
  list-style: none;
}
#header .inner li {
  margin-right: 30px;
}
#header .inner li:last-child {
  margin-right: 0;
}

#header .inner a:hover {
  color: #4da4ff;
}

#header .contact-btn {
  width: 200px;
  height: 100px;
  line-height: 100px;
  background-color: #0c2367;
  color: #fff;
  font-size: 100%;
  display: inline-block;
  text-align: center;
}
#header .contact-btn:hover {
  background-color: #004ea0;
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/

.mv img {
  width: 100%;
  object-fit: cover;
}

.syakun {
  margin-top: 100Px;
  margin-bottom: 200px;
}

.syakun img {
  width: 100%;
  object-fit: cover;
}

.title-photo {
  margin-bottom: 100px;
}

.title-photo img {
  width: 100%;
  object-fit: cover;
}




/*-------------------------------------------
About
-------------------------------------------*/

#about .text {
  width: 800px;
  margin-top: 150px;
  margin-bottom: 150px;
  margin-left: auto;
  margin-right: auto;
}

#about .text p {
  line-height: 2;
  margin-bottom: 20px;
}

/*-------------------------------------------
philosophy
-------------------------------------------*/

#philosophy .text {
  width: 800px;
  margin-top: 150px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}


#philosophy .text li {
  line-height: 2;
  margin-bottom: 20px;
  margin-left: 20px;
  padding-left: 15px;
}


/*-------------------------------------------
Company
-------------------------------------------*/

#company {
  display: flex;
  margin-top: 150px;
}
#company .text {
  width: 45%;
  padding: 0px 5% 0 5%;
}

#company .img {
  width: 55%;
}
#company .img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#company .info {
  display: flex;
  flex-wrap: wrap;
  font-size: 85%;
  letter-spacing: 1px;
}
#company .info dt {
  width: 25%;
  margin-top: 10px;
}
/*
1つめのdtにはmargin-topを設定しない
*/
#company .info dt:first-of-type {
  margin-top: 0;
}
#company .info dd {
  width: 75%;
  margin-top: 10px;
}
/*
1つめのddにはmargin-topを設定しない
*/
#company .info dd:first-of-type {
  margin-top: 0;
}
#company .info .add {
  margin-left: 20%;
}

.map {
  width: 100%;
  margin-top: 0px;
}

/*-------------------------------------------
Business
-------------------------------------------*/

#business {
  display: block;
  margin-bottom: 75px;
}

#business .text {
  display: block;
  width: 550px;
  padding: 0 0 0 5%;
  margin-bottom: 50px;
}

#business .text p {
  line-height: 2;
}

.businessContainer{
 display:flex;
 flex-wrap: wrap; 
}

.flow-photo {
  margin-bottom: 100px;
}

.flow-photo img {
  width: 100%;
  border-radius: 15px;
}

.business-photo {
  margin-left: 100px;
  margin-bottom: 100px;
}

.business-photo img {
  width: 550px;
}


/*-------------------------------------------
Contact
-------------------------------------------*/

#contact {
  display: block;
  margin-bottom: 125px;
}

#contact .text {
  display: block;
  width: 100%;
  padding: 0 5% 0 5%;
  margin-bottom: 50px;
}

#contact .text p {
  line-height: 2;
}

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

.footer {
  padding: 25px;
  font-size: 85%;
  color: #000;
  background: #fff;
}

.footer a {
  color: #000;
  text-decoration: none;
}

.footer a:hover {
  color: #4da4ff;
}

.footer hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #f0f0f0;
  margin: 30 0;
}

.footer-navi {
  display: block;
  margin-left: 40px;
}

.footer-navi li {
  display: inline-block;
}

.footer-navi li:not(:last-child) {
  margin-right: 20px;
}

.footer-logo {
  display: block;
  margin-bottom: 25px;
}

.footer-logo img {
  width: 85px;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: center;
}

.copyright {
  text-align: center;
  margin-top: 15px;
}


/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 900px) {
  .logo {
	  width: 100px;
	  margin-top: 15px;
	  margin-bottom: 15px;
  }
  .section-title {
    margin-bottom: 34px;
  }
  .section-title .ja {
    margin-bottom: 24px;
  }

  /*-------------------------------------------
  ヘッダー
  -------------------------------------------*/
  #header .inner {
    flex-direction: column;
    align-items: flex-start;
  }
	
  #header .inner li {
	font-size: 70%;
	margin-right: 5px;
	padding-left: 15px;
    margin-bottom: 10px;
  }

  #header .contact-btn {
	font-size: 75%;
  }
	
#header .contact-btn {
  width: 150px;
  height: 100px;
  line-height: 100px;
  font-size: 75%;
}
	
  /*-------------------------------------------
  Mainvisual
  -------------------------------------------*/

.mv img {
  width: 100%;
  height: 275px;
  object-fit: cover;
}
	
.syakun {
  margin-top: 0px;
  margin-bottom: 50px;
	
}
	
.syakun img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}


  .title-photo {
  margin-bottom: 50px;
}
	
  .title-photo img {
    height: 175px;
  }

.flow-photo img {
  width: 100%;
}


	
.map {
  margin-top: 100px;
}
	
  /*-------------------------------------------
  About
  -------------------------------------------*/
	
  #about .text {
    width: 100%;
    padding: 0 30px;
    margin-top: 100px;
  }

  /*-------------------------------------------
  Philosophy
  -------------------------------------------*/
	
  #philosophy .text {
    width: 100%;
    padding: 0 30px;
    margin-top: 100px;
  }
	

	
  /*-------------------------------------------
  Business
  -------------------------------------------*/
  #business {
    margin-bottom: 50px;
  }
	
  #business .text {
    width: 100%;
    padding: 0 30px;
  }
	
  #business .text p{
	font-size: 80%;
  }
	
#business .flow-photo {
  margin-left: 0px;
}

#business .business-photo {
  margin-left: 0px;
  width: 100%;
}
	
  /*-------------------------------------------
  Company
  -------------------------------------------*/

  #company {
    flex-direction: column-reverse;
  }

  #company .text {
    width: 100%;
    padding: 0 30px;
    margin-top: 50px;
  }

  #company .img {
    width: 100%;
  }
  #company .img img {
    height: 300px;
  }
	
  #company .info {
    flex-direction: column;
  }
	
  #company .info dt {
    width: 100%;
    margin-top: 20px;
  }
  #company .info dd {
    width: 100%;
    margin-top: 5px;
    padding-left: 20px;
  }
  #company .info dd:first-of-type {
    margin-top: 5px;
  }
  #company .info .add {
    margin-left: 0;
  }

  /*-------------------------------------------
  Contact
  -------------------------------------------*/
	
  #contact {
    margin-bottom: 125px;
  }
	
  #contact .text {
    width: 100%;
    padding: 0 15px;
  }
	
  /*-------------------------------------------
  footer
  -------------------------------------------*/
	
.footer-navi {
  margin-left: 30px;
  font-size: 65%;
}	
	
.footer-logo img {
  width: 70px;
}

.copyright {
  font-size: 65%;
}
	
}

  /*-------------------------------------------
  ボタン
  -------------------------------------------*/


  /*-------------------------------------------
  スペース
  -------------------------------------------*/

.mt20 {
		margin-top: 20px;
}

.mt25 {
		margin-top: 25px;
}

.mt50 {
		margin-top: 50px;
}

.mt75 {
		margin-top: 75px;
}

.mt100 {
		margin-top: 100px;
}

.mt125 {
		margin-top: 125px;
}

.mt150 {
		margin-top: 150px;
}

.mt200 {
		margin-top: 200px;
}

.mb20 {
		margin-bottom: 20px;
}

.mb25 {
		margin-bottom: 25px;
}

.mb50 {
		margin-bottom: 50px;
}

.mb75 {
		margin-bottom: 75px;
}

.mb100 {
		margin-bottom: 100px;
}

.mb125 {
		margin-bottom: 125px;
}

.mb150 {
		margin-bottom: 150px;
}

.mb200 {
		margin-bottom: 200px;
}

  /*-------------------------------------------
  スペース
  -------------------------------------------*/