@charset "UTF-8";

.wrapper {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}
.wrapper::after {
  content: "";
  display: block;
  clear: both;
}

/*-------------------------------------------
Section Title
-------------------------------------------*/
.section-title {
  font-size: 32px;
  font-weight: 500;
  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: 120px;
  overflow: hidden;
  position: relative;
}
#philosophy .img-top {
  width: clamp(390px, 50vw, 460px);
  position: absolute;
  top: 70px;
  left: 50%;
}
#philosophy .text-area {
  width: 70%;
  background-color: #fafafa;
  padding: 7% 0 10% 6%;
  margin-top: 100px;
}
#philosophy .text-area .inner {
  width: clamp(500px, 34vw, 600px);
}
#philosophy .text-area .inner .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 40px;
}
#philosophy .text-area .inner .text {
  letter-spacing: 0.05em;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 30px;
}

/*-------------------------------------------
Overview
-------------------------------------------*/
#overview {
  margin-bottom: 120px;
}
#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;
}
/*-------------------------------------------
スマートフォン767px以下
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }
  .section-title::before {
    content: none;
  }
  /*-------------------------------------------
  philosopy
  -------------------------------------------*/
  #philosophy {
    margin-bottom: 60px;
    height: auto;
    overflow: visible;
  }
  #philosophy .text-area {
    width: 100%;
    padding: 40px 20px;
    margin: 0 ;
    background-color: #fafafa;
  }
  #philosophy .text-area .inner {
    width: 100%;
    max-width: 100%;
  }
  #philosophy .text-area .inner .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  #philosophy .text-area .inner .text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  /*-------------------------------------------
  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;
  }


}