/* =========================================================
   企業情報ページ
========================================================= */

:root{
  --company-inner: 1080px;
  --company-blue: #096FD1;
  --company-blue-deep: #2249B5;
  --company-blue-light: #E6F7FB;
  --company-blue-pale: #E6FBFF;
  --company-text: #111111;
  --company-border: #096FD1;
  --company-header-offset: 040px;
}

html{
  scroll-padding-top: var(--company-header-offset);
}

.page-company{
  color: var(--company-text);
  background: #ffffff;
}

.page-company img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* 他ページから #greeting / #philosophy / #profile へ飛んだときの固定ヘッダー対策 */
.page-company [id]{
  scroll-margin-top: var(--company-header-offset);
}

/* =========================================================
   共通 inner
========================================================= */

.company-pagehead__inner,
.company-section__bar-inner,
.company-section__inner,
.company-philosophy-intro__inner,
.company-subsection__inner{
  width: min(var(--company-inner), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   ページ見出し
========================================================= */

.company-pagehead{
  padding: 56px 0 64px;
  background: #ffffff;
}

.company-pagehead__title{
  margin: 0;
  color: var(--company-blue);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: center;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

/* =========================================================
   セクション共通
========================================================= */

.company-section{
  position: relative;
}

.company-section__bar{
  background: var(--company-blue);
}

.company-section__title{
  margin: 0;
  padding: 40px 48px 45px;
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

.company-section__body{
  padding: 56px 0 72px;
  background: #ffffff;
}

/* =========================================================
   ボタン
   front-page の 300x60 / 白背景 / hover青 に寄せる
========================================================= */

.company-btn{
  position: relative;
  display: flex;
  align-items: center;
  width: 350px;
  height: 60px;
  background: #ffffff;
  border: 1px solid #b9b9b9;
  border-radius: 999px;
  text-decoration: none;
  box-sizing: border-box;
  transition:
    background-color .25s ease,
    border-color .25s ease,
    color .25s ease;
}

.company-btn__label{
  display: block;
  width: 100%;
  color: #111111;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  transition: color .25s ease;
}

.company-btn__arrow{
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: #111111;
  font-size: 14px;
  line-height: 1;
  transition: color .25s ease;
}

.company-btn:hover{
  background: #5F90EB;
  border-color: #ffffff;
}

.company-btn:hover .company-btn__label,
.company-btn:hover .company-btn__arrow{
  color: #ffffff;
}

/* =========================================================
   社長ご挨拶
========================================================= */

.company-greeting__lead-wrap{
  text-align: left;
}

.company-greeting__lead{
  margin: 0 45px;
  color: #2D5FAE;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.company-greeting__content{
  max-width: 980px;
  margin: 52px auto 0;
}

.company-greeting__content p{
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
}

.company-greeting__content p + p{
  margin-top: 34px;
}

.company-greeting__signature{
  margin: 52px 52px 0 0 ;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  text-align: right;
}

/* =========================================================
   企業理念 intro
========================================================= */

.company-philosophy-intro{
  background: var(--company-blue-pale);
  padding: 34px 0 36px;
}

.company-philosophy-intro__content{
  max-width: 760px;
  margin: 0 45px;
}

.company-philosophy-intro__heading{
  margin: 0;
  color: var(--company-blue);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}

.company-philosophy-intro__text{
  margin: 18px 0 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
}

.company-philosophy-intro__action{
  margin: 28px 0 0;
}

/* =========================================================
   企業理念 図
========================================================= */

.company-philosophy-figure{
  text-align: center;
  margin-top: 25px;
}

.company-philosophy-figure img{
  display: block;
  margin: 0 auto;
  width: 789px;
}

.company-philosophy-figure__note{
  margin: 18px 0 ;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

/* =========================================================
   小見出しバー
========================================================= */

.company-subsection__head{
  background: var(--company-blue-pale);
  padding: 35px 0;
}

.company-subsection__head .company-subsection__inner{
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.company-subsection__title{
  color: var(--company-blue);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 45px;
}

.company-subsection__subtitle{
  margin: 0;
  color: var(--company-text);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
}

.company-subsection__body{
  padding: 76px 0 72px;
  background: #ffffff;
}

/* =========================================================
   Vision
========================================================= */

.company-vision{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}

.company-vision__logo{
  text-align: center;
}

.company-vision__logo img{
  display: block;
  margin: 0 110px;
}

.company-vision__texts{
  display: grid;
  gap: 70px;
  max-width: 450px;
  margin-left: 90px;
}

.company-vision__item-title{
  margin: 0;
  color: var(--company-blue);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.company-vision__item-title span{
  font-size: 25px;
  font-weight: 700;
  color: #868686;
}

.company-vision__item-text{
  margin: 12px 0 0 ;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
}

/* =========================================================
   Values
========================================================= */

.company-values-figure{
  text-align: center;
}

.company-values-figure img{
  display: block;
  margin: 0 auto;
}

/* =========================================================
   会社概要
========================================================= */

.company-profile{
  max-width: 940px;
  margin: 0 auto;
}

.company-profile__table{
  margin: 0;
}

.company-profile__row{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 2px dotted var(--company-border);
}

.company-profile__row:first-child{
  border-top: 0px dotted var(--company-border);
}

.company-profile__term{
  margin: 0;
  color: var(--company-blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.company-profile__desc{
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

/* =========================================================
   レスポンシブ
========================================================= */

@media (max-width: 800px){

  :root{
    --company-header-offset: 50px;
  }

.company-pagehead__inner,
.company-section__bar-inner,
.company-section__inner,
.company-philosophy-intro__inner,
.company-subsection__inner{
  width: min(var(--company-inner), calc(100% - 40px));
  margin: 0 auto;
}

  .company-pagehead{
    padding: 30px 0 34px;
  }

   .company-pagehead__title{
    font-size: 40px;
    line-height: 1.2;
  }

  .company-section__title{
    padding: 22px 0 25px;
    font-size: 40px;
    line-height: 1.25;
    text-align: center;
  }

  .company-section__body{
    padding: 28px 0 40px;
  }

  .company-btn{
    width: 300px;
    max-width: 100%;
    height: 60px;
    margin: 0 auto;
  }

  .company-btn__label{
    font-size: 20px;
  }

  .company-greeting__lead{
    font-size: 20px;
    line-height: 1.7;
    text-align: left;
  }


  .company-greeting__lead{
    margin: 0;
  }

.company-vision__texts{
  width: 100%;
}

  .company-greeting__content{
    margin-top: 26px;
  }

  .company-greeting__content p{
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
  }

  .company-greeting__content p + p{
    margin-top: 22px;
  }

  .company-greeting__signature{
    margin-top: 120px;
    font-size: 16px;
    line-height: 1.8;
    margin-right: 0;
  }

  .company-philosophy-intro{
    padding: 22px 0 24px;
  }

  .company-philosophy-intro__heading{
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    margin: 0;
  }
  
  .company-philosophy-intro__content{
  
  margin: 0px;
}

  .company-philosophy-intro__text{
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 500;
  }

  .company-philosophy-intro__action{
    margin-top: 18px;
  }

  .company-philosophy-figure__note{
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }

  .company-subsection__head .company-subsection__inner{
    gap: 12px;
    padding-top: 0px;
    padding-bottom: 0px;
    flex-wrap: wrap;
  }

  .company-subsection__title{
    font-size: 24px;
        
  }

  .company-subsection__subtitle{
    font-size: 20px;
  }
  
  .company-subsection__subtitle_2{
    font-size: 20px;
    padding-left: 42px;
  }


  .company-subsection__body{
    padding: 28px 0 40px;
    
  }

  .company-vision{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-vision__logo img{
    width: 303px;
    margin: 20px auto;
  }

  .company-vision__texts{
    gap: 24px;
    margin: 0;
  }

  .company-vision__item-title{
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
  }
  
    .company-vision__item-title span{
  font-size: 16px;
  font-weight: 700;
  vertical-align: baseline;
}

  .company-vision__item-text{
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
    text-align: justify;
  }
  


  .company-profile__row{
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 32px 0 33px;
  }

  .company-profile__term{
    font-size: 14px;
    line-height: 1.7;
  }

  .company-profile__desc{
    font-size: 16px;
    line-height: 1.8;
  }
}