@charset "UTF-8";

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

.title {
width: 100%;
height: 140px;
overflow: hidden;
position: relative;
}

/*タイトル部分ここから*/
.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;
  line-height: 1;
}

/* 右：リンク（右寄せ） */
.titlebar__nav{
  display: flex;              /* flexbox */
  align-items: center;
  justify-content: flex-end;  /* 右寄せ */
  gap: 35px;
  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;
}


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

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

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

.vendors{
  background:#fff;
}

.vendors-inner{
  max-width: 100%;
  margin: 0 auto;
  padding: 27px 1em 0 1em;
  box-sizing: border-box;
}

.vendors-grid{
  display: flex;
  gap: 35px;              /* 画像っぽい中央余白 */
  align-items: flex-start;
}

/* 片側カラム */
.vendors-col{
  flex: 1 1 0;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

/* 1行（上下中央揃え） */
.vendor-row{
  display: grid;
  grid-template-columns: 240px 1fr;
  column-gap: 1.3em;

  padding: 0.6em 0;              /* 行の高さを安定させる */
  border-top: 1px solid #c8c9ca;

  align-items: center;          /* ★上下中央揃え */
}


/* 最後も線が欲しい場合 */
.vendors-col .vendor-row:last-child{
  border-bottom: 1px solid #c8c9ca;
}

/* ● を before で */
.vendor-company{
  font-size: 13px;
  position: relative;
  padding: 0 0 0 1.7em;
  margin: 0.6em 0;
  line-height: 1.4;
  font-weight: 700;
}

.vendor-company::before{
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.95em;
  color: #005d99;
  padding-left: 0.5em;
}

.vendor-items{
  font-size: 13px;
  line-height: 1.4;
}

}



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

/* タイトル */
.title {
width: 100%;
height: 5em;
overflow: hidden;
position: relative;
}

/*タイトル部分ここから*/
.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__title{
  margin: 0;
  color: #2f6f90;
  font-weight: 800;
  font-size: 6.5vw;
  letter-spacing: 0;
  line-height: 1;
}
/*タイトル部分ここまで*/

/* 右：リンク（右寄せ） */
.titlebar__nav{
  display: none;
}
/*タイトル部分ここまで*/


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

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

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

.vendors{
  background:#fff;
}

.vendors-inner{
  max-width: 100%;
  margin: 0 auto;
  padding: 1.5em 0 0 0;
  box-sizing: border-box;
}

.vendors-grid{
  display: block;
/*  gap: 35px;              /* 画像っぽい中央余白 */
/*  align-items: flex-start;*/
}

/* 片側カラム */
.vendors-col{
  flex: 1 1 0;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  border-bottom: 1px solid #fff;
}
.vendors-col:last-child{
  border-bottom: 1px solid #c8c9ca;
}

/* 1行（上下中央揃え） */
.vendor-row{
  display: grid;
  grid-template-columns: 52% 1fr;
  column-gap: 1em;

  padding: 0.6em 0;              /* 行の高さを安定させる */
  border-top: 1px solid #c8c9ca;

  align-items: center;          /* ★上下中央揃え */
}


/* 最後も線が欲しい場合 */
.vendors-col .vendor-row:last-child{
/*  border-bottom: 1px solid #c8c9ca;*/
}

/* ● を before で */
.vendor-company{
  font-size: 85%;
  position: relative;
  padding: 0 0 0 1.7em;
  margin: 0.6em 0;
  line-height: 1.4;
  font-weight: 700;
}

.vendor-company::before{
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.95em;
  color: #005d99;
  padding-left: 0.5em;
}

.vendor-items{
  font-size: 85%;
  line-height: 1.4;
}

}














