@charset "UTF-8";

/* pc -------------------------------------------------------------------------------------*/
@media screen and (min-width: 641px) {

/* サブイメージ */
.sub_image {
width: 100%;
height: 908px;
overflow: hidden;
position: relative;
}

.sub_image img {
width: 100%;
/*height: 100%;*/
object-fit: cover;
object-position: center; /* ★ 常に中央 */
}


/*タイトル部分ここから*/
.titlebar__inner{
  width: 1040px;          /* 指示：左右1040px */
/*  margin: 0 auto;*/
  padding: 18px 20px;
  display: flex;              /* flexbox */
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: absolute;
  top:0;
  left: 50%;            /* 親の左から 50% の位置へ */
  transform: translate(-50%, 0%); /* 自身の幅と高さの半分だけ戻す */
}

.titlebar__inner img{
width: 21px;
height: 21px;
}

/* 左：タイトル（左寄せ＋下線） */
.titlebar__title{
  margin: 0;
  color: #2f6f90;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: .04em;
  line-height: 1;
}

/*アンカーリンクここから*/
/* 右：リンク（右寄せ） */
.titlebar__nav{
  display: flex;              /* flexbox */
  align-items: center;
  justify-content: flex-end;  /* 右寄せ */
  gap: 60px;
  flex: 0 0 auto;
}

.titlebar__link{
  display: inline-flex;       /* アイコン＋文字を横並び */
  align-items: center;
  gap: 0.4em;
  font-weight: 700;
  white-space: nowrap;
}

.titlebar__icon{
  width: 21px;                /* 見た目に合わせて調整OK */
  height: 21px;
  display: block;
  flex: 0 0 auto;
}

.titlebar__text{
  font-size: 15px;
  letter-spacing: .06em;
}
/*アンカーリンクここまで*/


/*事業所案内リンクここから*/
/* 右：リンク（右寄せ） */
.link {
position: relative;
}

.link_1{
  position: absolute;
  top:50%;
  left: 37em;
  transform: translateY(-50%); /* 自身の幅と高さの半分だけ戻す */
}

.link_2{
  display: inline-flex;       /* アイコン＋文字を横並び */
  align-items: center;
  gap: 0.4em;
  font-weight: 700;
  white-space: nowrap;
}

.link_3{
  width: 21px;                /* 見た目に合わせて調整OK */
  height: 21px;
  display: block;
/*  flex: 0 0 auto;*/
}
/*事業所案内リンクここまで*/

.titlebar__text{
  font-size: 15px!important;
  letter-spacing: .06em;
}

/*タイトル部分ここまで*/

/*挨拶部分ここから*/
.aisatsu {
text-align: center;
  position: absolute;
  top:40%;
  left: 50%;            /* 親の左から 50% の位置へ */
  transform: translate(-50%, -50%); /* 自身の幅と高さの半分だけ戻す */
}

.aisatsu h4 {
font-family: "BIZ UDPMincho", "Hiragino Mincho ProN", "MS Mincho", serif;
margin-top: 1em;
font-size: 160%;
font-weight: 700;
}

.aisatsu img {
width: 142px;
height: auto;
}

.aisatsu p {
font-size: 105%;
font-weight: 700;
line-height: 2.3em;
margin-top: 1.7em;
}

/*ドロップシャドウ*/
.aisatsu p,
.aisatsu h4,
.president-block{
text-shadow:
    0 0 10px rgba(255,255,255,1.0),
    0 0 10px rgba(255,255,255,1.0),
    0 0 10px rgba(255,255,255,1.0),
    0 0 10px rgba(255,255,255,1.0);
/*水平方向オフセット 縦方向オフセット ぼかし RGB 濃度（アルファ）*/
/*ぼかしを重ねることで輪郭を厚く見せられる。*/
}

.president-block{
  display: flex;
  align-items: center;
  justify-content: center;  /* ← 横中央（追加） */
  gap: 18px;
  margin-top: 4em;
}

/* 左の肩書き */
.president-title{
  font-size: 14px;
  letter-spacing: .12em;
  white-space: nowrap;
}

/* 右の名前ブロック */
.president-name{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

/* ふりがな（上） */
.president-furigana{
  font-size: 12px;
  letter-spacing: .2em; /* 画像みたいに間隔を広め */
  margin-bottom: 4px;
  white-space: nowrap;
}

/* 氏名（下） */
.president-kanji{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
font-family: "BIZ UDPMincho", "Hiragino Mincho ProN", "MS Mincho", serif;
}

/*挨拶部分ここまで*/

/*---------------------------------------------------------*/

/* 共通 */
section {
border-top: 5px solid #99bed6;
  max-width:100%;
  margin:0 auto 80px;
  padding:0;
}

.section-title{
  text-align:center;
  font-size:24px;
  letter-spacing:.2em;
  color:#669ec2;
  margin:24px 0;
}


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

.profile-list{
  display: grid;
  grid-template-columns: 230px 1fr; /* 左：dt / 右：dd */
  border-top: 1px solid #c8c9ca;
}

.profile-list dt {
  border-bottom: 1px solid #c8c9ca;
  padding: 1em 0;
  box-sizing: border-box;
}

.profile-list dd {
  border-bottom: 1px solid #c8c9ca;
  padding: 1em 0 1em 2.5em;
  box-sizing: border-box;
}

.profile-list dd .address {
  font-weight: 700;
  color:#266693;
}

.profile-list dd p {
  padding-left: 1.3em;
}

/* 左カラム（dt）：行の高さまで背景を伸ばす + 文字を縦中央 */
.profile-list dt{
  background: #f6f6f6;
  font-weight: 700;
  display: flex;
  align-items: center;      /* 縦中央 */
  justify-content: center;  /* ← 横中央（追加） */
}

/* 右カラム（dd） */
.profile-list dd{
  margin: 0;          /* gridにするので margin-left は不要 */
  line-height: 1.8;
  font-size: 14px;
}


/* ==================== 沿革 ==================== */

.history-list{
  margin-bottom: 50px;
}

/* 1行単位をFlexで組む */
.history-row{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 14px;
}

/* 年月（左） */
.history-row dt{
  flex: 0 0 220px;
  background: #cfe1ef;
  padding: 10px 14px;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
}

/* 内容（右） */
.history-row dd{
  flex: 1 1 auto;
  margin: 0;
  padding: 10px 0 10px 1.2em;
  line-height: 1.8;
  position: relative;
}

/* 沿革：dd内の●付きリスト */
.history-bullet{
  list-style: none;
  margin: 0;
  padding: 0;
}

.history-bullet li{
  position: relative;
  padding-left: 1.2em; /* ●分 */
  line-height: 1.8;
}

/* 丸ポチ */
.history-bullet li::before{
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.9em;
  color: #999;
}


/* 車両写真ここから */
.vehicle-row{
  display: flex;
  justify-content: center; /* ★ 全体を中央へ */
  gap: 50px;               /* ★ 画像間を50px */
  align-items: flex-start;
  border-top: 1px solid #c8c9ca;
  padding-top: 50px;
}

/* 各カード */
.vehicle-card{
  width: 434px;
  margin: 0;
}

/* 画像サイズ */
.vehicle-img{
  display: block;
  width: 434px;
  height: 256px;
  object-fit: cover;
}

/* キャプション：画像下50px */
.vehicle-cap{
  margin-top: 0.5em;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
}

/* 車両写真ここまで */
}


/* pc -------------------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {

/* サブイメージ */
.sub_image {
width: 100%;
height: auto;
overflow: hidden;
position: relative;
}

.sub_image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center; /* ★ 常に中央 */
}


/*タイトル部分ここから*/
.titlebar__inner{
  width: 100%;
/*  margin: 0 auto;*/
  padding: 0.5em 0 0 0.6em;
  display: flex;              /* flexbox */
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: absolute;
  top:0;
  left: 0;            /* 親の左から 50% の位置へ */
/*  transform: translate(-50%, 0%); /* 自身の幅と高さの半分だけ戻す */
}

.titlebar__inner img{
width: 21px;
height: 21px;
}

/* 左：タイトル（左寄せ＋下線） */
.titlebar__title{
  margin: 0;
  color: #2f6f90;
  font-weight: 800;
  font-size: 6.5vw;
  letter-spacing: .04em;
  line-height: 1;
}

/*事業所案内リンクここから*/
/* 右：リンク（右寄せ） */
.link {
/*position: relative;*/
}

.link_1{
/*  position: absolute;
  top:50%;
  left: 37em;
  transform: translateY(-50%); /* 自身の幅と高さの半分だけ戻す */
  margin-top: 1em;
}

.link_2{
  display: inline-flex;       /* アイコン＋文字を横並び */
  align-items: center;
  gap: 0.4em;
  font-weight: 700;
  white-space: nowrap;
}

.link_3{
/*  width: 21px;                /* 見た目に合わせて調整OK */
  height: 1.6em;
  display: block;
/*  flex: 0 0 auto;*/
}
/*事業所案内リンクここまで*/

.titlebar__text{
/*  font-size: 15px!important;*/
  letter-spacing: .06em;
}

/*タイトル部分ここまで*/

/*挨拶部分ここから*/
.aisatsu {
text-align: center;
  position: absolute;
  width: 100%;
  top:10%;
  left: 50%;            /* 親の左から 50% の位置へ */
  transform: translate(-50%, 0%); /* 自身の幅と高さの半分だけ戻す */
}

.aisatsu h4 {
font-family: "BIZ UDPMincho", "Hiragino Mincho ProN", "MS Mincho", serif;
margin-top: 1em;
font-size: 110%;
font-weight: 700;
}

/*
.aisatsu img {
width: 142px;
height: auto;
}
*/

.aisatsu .svg {
  width: 30%;
  margin: 0 auto;
}

.aisatsu p {
font-size: 80%;
font-weight: 700;
line-height: 1.8em;
margin-top: 1em;
}

/*ドロップシャドウ*/
.aisatsu p,
.aisatsu h4,
.president-block{
text-shadow:
    0 0 10px rgba(255,255,255,1.0),
    0 0 10px rgba(255,255,255,1.0),
    0 0 10px rgba(255,255,255,1.0),
    0 0 10px rgba(255,255,255,1.0);
/*水平方向オフセット 縦方向オフセット ぼかし RGB 濃度（アルファ）*/
/*ぼかしを重ねることで輪郭を厚く見せられる。*/
}

.president-block{
  display: flex;
  align-items: center;
  justify-content: center;  /* ← 横中央（追加） */
  gap: 1.5em;
  margin-top: 2em;
}

/* 左の肩書き */
.president-title{
  font-size: 80%;
  letter-spacing: .12em;
  white-space: nowrap;
}

/* 右の名前ブロック */
.president-name{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

/* ふりがな（上） */
.president-furigana{
  font-size: 70%;
  letter-spacing: .2em; /* 画像みたいに間隔を広め */
  margin-bottom: 4px;
  white-space: nowrap;
}

/* 氏名（下） */
.president-kanji{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
font-family: "BIZ UDPMincho", "Hiragino Mincho ProN", "MS Mincho", serif;
}

/*挨拶部分ここまで*/

/*---------------------------------------------------------*/

/* 共通 */
section {
border-top: 5px solid #99bed6;
  max-width:100%;
  margin:0 auto 5em;
  padding:0;
}

.section-title{
  text-align:center;
  font-size:140%;
  letter-spacing:.2em;
  color:#669ec2;
  margin:0.7em 0;
}


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

.profile-list{
  display: grid;
  grid-template-columns: 25% 1fr; /* 左：dt / 右：dd */
  border-top: 1px solid #c8c9ca;
  font-size: 90%!important;
}

.profile-list dt {
  border-bottom: 1px solid #c8c9ca;
  padding: 1em 0;
  box-sizing: border-box;
  line-height: 1.3em;
}

.profile-list dd {
  border-bottom: 1px solid #c8c9ca;
  padding: 1em 0 1em 1em;
  box-sizing: border-box;
}

.profile-list dd .address {
  font-weight: 700;
  color:#266693;
}

.profile-list dd p {
  padding-left: 1.3em;
}

/* 左カラム（dt）：行の高さまで背景を伸ばす + 文字を縦中央 */
.profile-list dt{
  background: #f6f6f6;
  font-weight: 700;
  display: flex;
  align-items: center;      /* 縦中央 */
  justify-content: center;  /* ← 横中央（追加） */
}

/* 右カラム（dd） */
.profile-list dd{
  margin: 0;          /* gridにするので margin-left は不要 */
  line-height: 1.8;
/*  font-size: 14px;*/
}


/* ==================== 沿革 ==================== */

.history-list{
  margin-bottom: 2em;
  font-size: 90%!important;
}

/* 1行単位をFlexで組む */
.history-row{
/*  display: flex;*/
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 14px;
}

/* 年月（左） */
.history-row dt{
  flex: 0 0 220px;
  background: #cfe1ef;
  padding: 10px 14px;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
}

/* 内容（右） */
.history-row dd{
  flex: 1 1 auto;
  margin: 0;
  padding: 0.6em 0.3em;
  line-height: 1.8;
  position: relative;
}

/* 沿革：dd内の●付きリスト */
.history-bullet{
  list-style: none;
  margin: 0;
  padding: 0;
}

.history-bullet li{
  position: relative;
  padding-left: 1.2em; /* ●分 */
  line-height: 1.8;
}

/* 丸ポチ */
.history-bullet li::before{
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.9em;
  color: #999;
}


/* 車両写真ここから */
.vehicle-row{
  width: 100%;
  display: flex;
  justify-content: center; /* ★ 全体を中央へ */
  gap: 2em;               /* ★ 画像間を50px */
  align-items: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid #c8c9ca;
  padding-top: 3em;
}

/* 各カード */
.vehicle-card{
  width: 90%;
  margin: 0;
}

/* 画像サイズ */
.vehicle-img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* キャプション：画像下50px */
.vehicle-cap{
  margin-top: 0.5em;
  text-align: center;
  font-size: 85%;
  line-height: 1.6;
  color: #333;
}

/* 車両写真ここまで */

}


/* pc -------------------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {

/* サブイメージ */
.sub_image {
width: 100%;
height: auto;
overflow: hidden;
position: relative;
padding-bottom: 3em;
}

.sub_image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center; /* ★ 常に中央 */
}


/*タイトル部分ここから*/
.titlebar__inner{
  width: 100%;
/*  margin: 0 auto;*/
  padding: 0.5em 0 0 0.9em;
  display: flex;              /* flexbox */
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: absolute;
  top:0;
  left: 0;            /* 親の左から 50% の位置へ */
/*  transform: translate(-50%, 0%); /* 自身の幅と高さの半分だけ戻す */
}

/*.titlebar__inner img{
width: 21px;
height: 21px;
}*/

/* 左：タイトル（左寄せ＋下線） */
.titlebar__title{
  margin: 0;
  color: #2f6f90;
  font-weight: 800;
  font-size: 6.5vw;
  letter-spacing: .04em;
  line-height: 1;
}

/*事業所案内リンクここから*/
/* 右：リンク（右寄せ） */
.link {
/*position: relative;*/
}

.link_1{
/*  position: absolute;
  top:50%;
  left: 37em;
  transform: translateY(-50%); /* 自身の幅と高さの半分だけ戻す */
  margin-top: 1em;
}

.link_2{
  display: inline-flex;       /* アイコン＋文字を横並び */
  align-items: center;
  gap: 0.4em;
  font-weight: 700;
  white-space: nowrap;
}

.link_3{
/*  width: 21px;                /* 見た目に合わせて調整OK */
  height: 1.6em;
  display: block;
/*  flex: 0 0 auto;*/
}
/*事業所案内リンクここまで*/

.titlebar__text{
/*  font-size: 15px!important;*/
  letter-spacing: .06em;
}

/*タイトル部分ここまで*/

/*挨拶部分ここから*/
.aisatsu {
text-align: center;
  position: absolute;
  width: 100%;
  top:10%;
  left: 50%;            /* 親の左から 50% の位置へ */
  transform: translate(-50%, 0%); /* 自身の幅と高さの半分だけ戻す */
}

.aisatsu h4 {
font-family: "BIZ UDPMincho", "Hiragino Mincho ProN", "MS Mincho", serif;
margin-top: 1em;
font-size: 135%;
font-weight: 800;
}

/*
.aisatsu img {
width: 142px;
height: auto;
}
*/

.aisatsu .svg {
  width: 30%;
  margin: 0 auto;
}

.aisatsu p {
font-size: 90%;
font-weight: 700;
line-height: 1.8em;
margin-top: 1em;
}

/*ドロップシャドウ*/
.aisatsu p,
.aisatsu h4,
.president-block{
text-shadow:
    0 0 10px rgba(255,255,255,1.0),
    0 0 10px rgba(255,255,255,1.0),
    0 0 10px rgba(255,255,255,1.0),
    0 0 10px rgba(255,255,255,1.0);
/*水平方向オフセット 縦方向オフセット ぼかし RGB 濃度（アルファ）*/
/*ぼかしを重ねることで輪郭を厚く見せられる。*/
}

.president-block{
  display: flex;
  align-items: center;
  justify-content: center;  /* ← 横中央（追加） */
  gap: 1.5em;
  margin-top: 2em;
}

/* 左の肩書き */
.president-title{
  font-size: 85%;
  letter-spacing: .12em;
  white-space: nowrap;
}

/* 右の名前ブロック */
.president-name{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

/* ふりがな（上） */
.president-furigana{
  font-size: 83%;
  letter-spacing: .07em; /* 画像みたいに間隔を広め */
  margin-bottom: 0.3em;
  white-space: nowrap;
}

/* 氏名（下） */
.president-kanji{
  font-size: 140%;
  font-weight: 700;
  letter-spacing: .15em;
  white-space: nowrap;
font-family: "BIZ UDPMincho", "Hiragino Mincho ProN", "MS Mincho", serif;
}

/*挨拶部分ここまで*/

/*---------------------------------------------------------*/

/* 共通 */
section {
border-top: 5px solid #99bed6;
  max-width:100%;
  margin:0 auto 5em;
  padding:0;
}

.section-title{
  text-align:center;
  font-size:140%;
  letter-spacing:.2em;
  color:#669ec2;
  margin:0.7em 0;
}


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

.profile-list{
  display: grid;
  grid-template-columns: 25% 1fr; /* 左：dt / 右：dd */
  border-top: 1px solid #c8c9ca;
  font-size: 90%!important;
}

.profile-list dt {
  border-bottom: 1px solid #c8c9ca;
  padding: 1em 0;
  box-sizing: border-box;
  line-height: 1.3em;
}

.profile-list dd {
  border-bottom: 1px solid #c8c9ca;
  padding: 1em 0 1em 1em;
  box-sizing: border-box;
}

.profile-list dd .address {
  font-weight: 700;
  color:#266693;
}

.profile-list dd p {
  padding-left: 1.3em;
}

/* 左カラム（dt）：行の高さまで背景を伸ばす + 文字を縦中央 */
.profile-list dt{
  background: #f6f6f6;
  font-weight: 700;
  display: flex;
  align-items: center;      /* 縦中央 */
  justify-content: center;  /* ← 横中央（追加） */
}

/* 右カラム（dd） */
.profile-list dd{
  margin: 0;          /* gridにするので margin-left は不要 */
  line-height: 1.8;
/*  font-size: 14px;*/
}


/* ==================== 沿革 ==================== */

.history-list{
  margin-bottom: 2em;
  font-size: 90%!important;
}

/* 1行単位をFlexで組む */
.history-row{
/*  display: flex;*/
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 14px;
}

/* 年月（左） */
.history-row dt{
  flex: 0 0 auto;
  background: #cfe1ef;
  padding: 0.3em 0;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
}

/* 内容（右） */
.history-row dd{
  flex: 1 1 auto;
  margin: 0;
  padding: 0.6em 0.3em;
  line-height: 1.8;
  position: relative;
}

/* 沿革：dd内の●付きリスト */
.history-bullet{
  list-style: none;
  margin: 0;
  padding: 0;
}

.history-bullet li{
  position: relative;
  padding-left: 1.2em; /* ●分 */
  line-height: 1.8;
}

/* 丸ポチ */
.history-bullet li::before{
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.9em;
  color: #999;
}


/* 車両写真ここから */
.vehicle-row{
  width: 100%;
  display: flex;
  justify-content: center; /* ★ 全体を中央へ */
  gap: 2em;               /* ★ 画像間を50px */
  align-items: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid #c8c9ca;
  padding-top: 3em;
}

/* 各カード */
.vehicle-card{
  width: 90%;
  margin: 0;
}

/* 画像サイズ */
.vehicle-img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* キャプション：画像下50px */
.vehicle-cap{
  margin-top: 0.5em;
  text-align: center;
  font-size: 85%;
  line-height: 1.6;
  color: #333;
}

/* 車両写真ここまで */

}







