@charset "UTF-8";

/* 共通コンテナ設定 */
.container {
    max-width: 1366px;
    margin: 0 auto;
}

/* 基本色 */
:root {
	--main-color: #009DE0;
	--accent-color: #E07800;
	--dark-main-color: #2E708B;
}

/* 基本設定：ページ全体 */
body {
    margin: 0;
	font-family: 'メイリオ',
	    'Hiragino Kaku Gothic Pro',
		sans-serif;
}

/* コンテンツA：ヒーローイメージ */
.conA img {
    width: 100%;
}


/* ヒーロー(ヘッダー) */
.hero {
  background-color: #003B6C;
  max-width: 1366px; 
  height: 152px;              /* 縦は固定、横だけ伸縮 */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* 右下のコピー表記 */
.hero__copy {
  position: absolute;
  right: 28px;
  bottom: 8px;
  color: #fff;
  font-size: 11px;
  letter-spacing: .02em;
  opacity: .95;
  pointer-events: none;
  margin: 0;
}

.hero__band {
  position: absolute;
  left: 0;
  right: 0;
  top: 65%;
  transform: translateY(-50%); /* ヒーローの中央に配置 */
  height: 48px;                /* 白帯の太さ（お好みで調整） */
  background: #fff;
  width: 100%;
}

/* 白帯の中身 */
.hero__inner {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px 0 48px;
  box-sizing: border-box;
  width: 100%;
}

/* 既存の共通 .container はそのままでOK（max-width:1366px; margin:0 auto;） */

/* ロゴはサイズ固定（縮まない） */
.hero__logo {
  width: 160px;      /* 必要なら 140〜180px で調整 */
  height: auto;
  flex: 0 0 auto;
}

/* タイトル：右寄せ・黒文字・省略制御 */
.hero__title {
  margin: 0;
  color: #000;       /* 黒 */
  font-size: 22px;
  font-weight: 500;
  font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;    /* 右側で幅を使う */
}

/* コンテンツB：ご利用案内*/
.conB .container {
    width: 80%;
    margin: 0 auto;
}

.conB h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 20px;
}

.conB p {
    margin-top: 0;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.8;
}

/* コンテンツC：お知らせ */
.conC {
    margin-top: 0;
    margin-bottom: 30px;
    margin-left: 35px;
    margin-right: 35px;
    /* border: 5px solid #003B6C; */
}

.conC h3 {
    margin: 0;
}

.conC a {
    padding-left: 20px;
}

.conC .container {
    width: 80%;
    background-color: #e9e9e9;
    border: 1px solid #003B6C;
    box-sizing: border-box;
    padding: 20px;
}

/* コンテンツD：アイコン6個 */
.menu {
  font-family: Arial, Helvetica, sans-serif; /* ゴシック系フォント */
  font-size: 20px;
  font-weight: bold;
  color: #003366; /* 濃紺 */
  display: inline-block; /* 下線調整のため */
  padding-bottom: 2px;   /* 下線との間隔 */
  border-bottom: 2px solid #003366; /* 下線を忠実に再現 */
}

.conD {
    text-align: center;
    margin-bottom: 20px;
}

.conD img {
    margin: 10px;
}

/* コンテンツE：写真3個 */
.conE {
    text-align: center;
    margin-bottom: 30px;
}

/* コンテンツF：ご注意事項 */
.conF {
    margin-top: 0;
    margin-bottom: 60px;
    margin-left: 35px;
    margin-right: 35px;
    /* border: 5px solid #003B6C; */
}

.conF .container {
    width: 80%;
    background-color: #e9e9e9;
    border: 1px solid #003B6C;
    box-sizing: border-box;
    padding: 0 20px 0 20px;
}

.conC h4 {
    margin: 0;
}

/* コンテンツG：チャットヘッダー*/
.conG img {
    width: 100%;
}
/* チャットヘッダー（高さ固定・背景のみ・右寄せ＆下寄せ） */
.chatbar {
  background: url("img/chat_header_bg.png") center / cover no-repeat; 
  height: 64px;
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.chatbar__inner {
  height: 100%;
  display: flex;
  align-items: flex-end;      /* 下辺に寄せる */
  justify-content: flex-end;  /* 右寄せ */
  padding: 0 24px 10px;       /* 右と下の余白（下は ::after とバランス取り） */
  box-sizing: border-box;
}

/* タイトル文字：固定サイズ・省略制御 */
.chatbar__title {
  margin: 0;
  color: #fff;
  font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;           /* 画像の“太め”に寄せる */
  font-size: 22px;            /* 必要に 20〜24px で調整 */
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 10px; 
}

/* コンテンツH：chatご利用にあたって */
.flex {
    display: flex;
}

.flex .image {
    margin: 0 0 5px 100px; 
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 64px;
    align-self: center;
}

.flex .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;          /* 全体を見せる（トリミングしない） */
  object-position: center;      /* 念のため中央 */
  display: block;
}

/* .flex .text{ 
    position: relative;
    display: inline-block;
    margin: 1.5em 0 1.5em 15px;
    margin-right: 30px;
    padding: 7px 10px;
    max-width: 100%;
    font-size: 16px;
    background: #e9e9e9;
} */
  
.flex .text:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #e9e9e9;
}
  
.flex .text {
    position: relative;
    display: block;
    margin: 1.5em 100px 0 1.5em;
    padding: 20px;          /* 内側の余白を追加 */
    max-width: 100%;
    font-size: 16px;
    background: #e9e9e9;
    border: 1px solid #e9e9e9; /* 枠線を追加（必要に応じて） */
    border-radius: 12px;     /* 角を丸くする */
    line-height: 1.8; 
}

.flex .text a {
    display: inline;
}

/* コンテンツI：ベンダー一覧 */
.conI {
    font-size:20px;
    text-align:center;
}

/* コンテンツJ：チャットダミー*/
.conJ img{
    width: 100%;
}

/* コンテンツK：フッター*/
.conK img{
    width: 100%;
}

/* リンクの下線を削除*/
a.no-underline {
    text-decoration: none;
}

/* === フッター（背景画像＋高さ固定） === */
.footer {
  background: url("img/フッター_bg.png") center / cover no-repeat; /* ← バックだけの画像 */
  height: 44px;                 /* 必要なら 56〜80px で調整。高さは固定 */
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  color: #fff;
  overflow: hidden;
  /* 文字選択しやすくするなら line-height は使わず下で調整 */
}

/* 中身：中央寄せ（横は中央、縦はやや下に寄せる） */
.footer__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 10px 0 0 0;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
}

/* コピー表記 */
.footer__copy {
  font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: .95;
}

.footer__nav {
  display: flex;
  gap: 40px;
}

/* リンク */
.footer__nav a {
  color: #fff;
  text-decoration: none;
  font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.footer__nav a:hover { text-decoration: underline; }

/* 文字がはみ出す端末では途中で折り返しにする（任意） */
@media (max-width: 480px) {
  .footer__inner {
    white-space: normal;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-bottom: 8px;
  }
}