@charset "UTF-8";

/*-------------------------------------------
Profile About
-------------------------------------------*/
#profile {
  /* 下 */
  position: relative;
  left: 0;
  top: 60px;
  width: 100%;
  /*z-index: -20;*/
  background-color: #ffd700;/* Gold */
  clip-path: polygon(0 0,50% 0,100% 0,100% 90%, 50% 100%, 0 90%);
  padding: 60px 0 200px;
  margin-bottom: 40px;
}
#profile::before {
  /* 上 */
  content: "";
  position: absolute;
  left: 0;
  top: -40px;
  z-index: -10;
  width: 100%;
  height: 100%;
  background-color: #ffed58;/* Yamabuki */
  clip-path: polygon(0 0,50% 0,100% 0,100% 90%, 50% 100%, 0 90%);
}

#profile .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#profile .text .description {
  font-weight: 500;
  line-height: 1.6;
  margin-right: 30px;
  margin-bottom: 40px;
}
#profile .text .description a {
  font-size: 20px;
}
#profile img {
  max-width: 400px;
}



/*-------------------------------------------
Profile Corporate-Information
-------------------------------------------*/
#corporate-information {
  padding: 0 40px 0px 40px;
  margin: 0 auto;
  margin-top: 120px;
}

/*-------------------------------------------
Profile Corporate-Information Corporate-Data
-------------------------------------------*/
.corporate-data {
  padding: 20px 40px 60px 40px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.corporate-data .corporate-data-list {
  display: flex;
  flex-wrap: wrap;
}
.corporate-data .corporate-data-list dt {
  width: 200px;
  border-top: solid 1px #1f1f1f;
  font-size: 16px;
  padding: 40px 0;
  line-height: 1.6;
}
.corporate-data .corporate-data-list dt:last-of-type {
  border-bottom: solid 1px #1f1f1f;
}
.corporate-data .corporate-data-list dd {
  width: calc(100% - 200px);
  border-top: solid 1px #ccc;
  font-size: 16px;
  padding: 40px 0;
  line-height: 1.6;
}
.corporate-data .corporate-data-list dd:last-of-type {
  border-bottom: solid 1px #ccc;
}






/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {

  /*-------------------------------------------
  Profile About
  -------------------------------------------*/
  #profile {
    /* 下 */
    clip-path: polygon(0 0,50% 0,100% 0,100% 90%, 50% 100%, 0 90%);
  }
  #profile::before {
    /* 上 */
    clip-path: polygon(0 0,50% 0,100% 0,100% 90%, 50% 100%, 0 90%);
  }

  #profile .inner {
    flex-direction: column;
  }
  #profile .text .description {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  #profile img {
    width: 100%;
  }



  /*-------------------------------------------
  Profile Corporate-Information
  -------------------------------------------*/
  #corporate-information {
    padding: 0 40px 0px 40px;
    margin: 0 auto;
    margin-top: 120px;
  }

  /*-------------------------------------------
  Profile Corporate-Information Corporate-Data
  -------------------------------------------*/
  .corporate-data .corporate-data-list dt {
    width: 100px;
    padding: 20px 0;
  }
  .corporate-data .corporate-data-list dd {
    width: calc(100% - 100px);
    padding: 20px 0;
  }



}