@charset "UTF-8";
/*==================================================
COMPANY
==================================================*/
.ly1000 {
  max-width: 1000px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

/*==================================================
見出し・段落
==================================================*/
.ttl_smpl {
  color: #2659ae;
  font-size: clamp(4rem, 3.2rem + 0.8vw, 4.8rem);
  margin-right: 20px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.ttl_smpl2 {
  font-size: clamp(2.8rem, 2.36rem + 1.1vw, 3.9rem);
  margin-bottom: 1em;
  letter-spacing: 0.1em;
}
.deco_smpl {
  font-size: 1.8rem;
  color: #2659ae;
  font-weight: 500;
  padding-top: 1em;
}
.ttlbox_smpl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  align-items: baseline;
}
.min {
  font-family: "Noto Serif JP", serif;
}
.txtbox {
  font-size: clamp(1.5rem, 1.42rem + 0.2vw, 1.7rem);
  line-height: 2.0;
}
.txtbox p{
  margin-bottom: 1em;
}
@media screen and (max-width:640px){
  .ttl_smpl {
    width: 100%;
  }
}

/*==================================================
社長挨拶
==================================================*/
.sec_about {
  padding-top: 150px;
  padding-bottom: 100px;
}
.blk_about {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.name_ceo {
  font-size: clamp(1.5rem, 1.42rem + 0.2vw, 1.7rem);
  display: flex;
  align-items: center;
  padding-top: 20px;
}
.img_name_ceo img{
  width: 190px;
  height: 40px;
  margin-left: 10px;
}
.blk_about {
  display: grid;
}
/* pic_about がある場合 */
.blk_about:has(.pic_about) {
  grid-template-columns: 40% 55%;
  gap: 5%;
}
/* pic_about がない場合 */
.blk_about:not(:has(.pic_about)) .txtbox_about {
  width: 100%;
}
.pic_about {
  grid-column: 1;
  margin-bottom: 30px;
  display: block;
}
.txtbox_about {
  grid-column: 2;
}

@media screen and (max-width:800px) {
  .blk_about {
    display: block;
  }
}


/*==================================================
会社概要
==================================================*/
.sec_profile {
  padding-top: 100px;
  padding-bottom: 100px;

}

/*==================================================
沿革
==================================================*/
.sec_history {
  padding-top: 100px;
  padding-bottom: 150px;

}
/*==================================================
表
==================================================*/

.tbl_smpl {
  font-size: clamp(1.5rem, 1.42rem + 0.2vw, 1.7rem);
}
.tr_prf dt{
  font-weight: bold;
  width: clamp(11rem, 9.4rem + 4vw, 15rem);
}
.tr_prf dd{
  padding: 0 1% 0 5%;
  width: calc(100% - clamp(11rem, 9.4rem + 4vw, 15rem));
}
.tr_his dt{
  font-weight: normal;
  width: clamp(13rem, 12rem + 2.5vw, 15.5rem);
}
.tr_his dd{
  width: calc(100% - clamp(13rem, 12rem + 2.5vw, 15.5rem));
  padding: 0 1% 0 5%;
}
.tr_his ,.tr_prf{
  border-bottom: 1px solid #dbdbdb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.tr_prf{
  padding:  3rem 0;
}
.tr_his{
  padding:  1.5rem 0;
}
