@charset "UTF-8";

.wrapper {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

/* セクションタイトル */
.section-title {
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
}
.section-title span {
  max-width: 1000px;
  display: block;
  padding: 0 20px;
  margin: 0 auto;
}
.section-title::before {
  content: "";
  width: calc((100% - 1000px) / 2);
  height: 1px;
  background-color: #1f1f1f;
  position: absolute;
  top: 12px;
  left: 0;
}



/*-------------------------------------------
Philosophy
-------------------------------------------*/
#philosophy {
  margin-bottom: 100px;
}

#philosophy .section-title{
  margin-top: 80px;
  font-size: x-large;
}
#philosophy .text-area {
  width: 90%;
  background-color: #fafafa;
  padding: 8%;
  margin-top: 100px;
}

#philosophy .text-area .inner .text {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 30px;
}


/*-------------------------------------------
introduction
-------------------------------------------*/
#introduction {
  margin-bottom: 100px;
}

#introduction .section-title{
  margin-top: 80px;
  font-size: x-large;
}
#introduction .text-area {
  width: 90%;
  background-color: #fafafa;
  padding: 8%;
  margin-top: 100px;
}

#introduction .text-area .inner .text {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 30px;
}

 



/*-------------------------------------------
Overview 会社概要
-------------------------------------------*/
#overview {
  margin-bottom: 120px;
}
#overview .section-title{
  margin-top: 80px;
  font-size: larger;
}
#overview .overview-list {
  display: flex;
  flex-wrap: wrap;
}
#overview .overview-list dt {
  width: 200px;
  border-top: solid 1px #1f1f1f;
  font-size: 15px;
  padding: 40px 0;
}
#overview .overview-list dt:last-of-type {
  border-bottom: solid 1px #1f1f1f;
}
#overview .overview-list dd {
  width: calc(100% - 200px);
  border-top: solid 1px #ccc;
  font-size: 15px;
  padding: 40px 0;
  line-height: 1.8;
}
#overview .overview-list dd:last-of-type {
  border-bottom: solid 1px #ccc;
}

/*-------------------------------------------
Access
-------------------------------------------*/
#access {
  margin-bottom: 120px;
}
#acsess .section-title{
  margin-top: 80px;
  font-size: larger;
}

#access .map iframe {
  width: 100%;
  height: 400px;
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /* セクションタイトル */
  .section-title {
    margin-bottom: 10px;
  }
  .section-title::before {
    content: none;
  }

  /*-------------------------------------------
  Philosophy
  -------------------------------------------*/
  #philosophy #introduction {
    margin-bottom: 60px;
    position: static;
  }
 
  #philosophy #introduction .text-area {
    width: 100%;
    padding: 20px;
    margin: 0 0 20px;
  }
  #philosophy #introduction .text-area .inner {
    width: 100%;
  }
  #philosophy #introduction .img-bottom {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
 
  
  /*-------------------------------------------
  Overview
  -------------------------------------------*/
  #overview {
    margin-bottom: 60px;
  }
  #overview .overview-list dt {
    width: 100px;
    padding: 20px 0;
  }
  #overview .overview-list dd {
    width: calc(100% - 100px);
    padding: 20px 0;
  }

  /*-------------------------------------------
  Access
  -------------------------------------------*/
  #access {
    margin-bottom: 60px;
  }
}