/* レンタル用アカウントと異なることを注意喚起 */
.Signin__loginTitle::after {
  content: "\A※eSIM squareのアカウントとは異なります";
  white-space: pre; /* 改行を有効にする */
  color: red;       /* 赤文字にする */
  display: block;   /* 行として扱う */
  margin-top: 4px;  /* 見た目上の余白を少し追加（任意） */
  font-size: 0.9em; /* 少し小さめに調整（任意） */
}

/* 連絡者名の補足 */
#title_field_contactId::after {
  content: "（連絡者の氏名）";
  font-weight: normal;      /* 補足なので太字を解除（必要に応じて） */
  color: #666;              /* 少し薄いグレーで補足っぽく */
  margin-left: 4px;         /* 「連絡先名」との間に少し余白 */
  font-size: 0.9em;         /* やや小さめの文字 */
}

/* 期限の非表示 */
#layoutContainer > div.Layout__layout2 > div > div > div:nth-child(2) > div.view_properties > div:nth-child(1) > div.Info__infoList.ticket_duedate{
  display:none;
}

/* チケット共通情報、詳細情報の非表示 */
#layoutContainer > div.Layout__layout2 > div > div > div:nth-child(2) > div.view_properties > div:nth-child(2){
  display:none;
}
#layoutContainer > div.Layout__layout2 > div > div > div:nth-child(2) > div.view_properties > div:nth-child(3){
  display:none;
}

/******************** FAQ見出し用 ********************/
h1.toc_anchors {
    position: relative;
    padding: .5em .7em;
    background-color: #008fe6;
    color: #fff;
}

h1.toc_anchors::before {
    position: absolute;
    top: 100%;
    left: 0;
    border-bottom: solid 10px transparent;
    border-right: solid 20px #006fb3;
    content: '';
}

h2.toc_anchors {
  position: relative;
  padding: 12px 0 16px 28px; /* 左は四角分の余白 */
  font-weight: 700;
}

/* 左のブロック */
h2.toc_anchors::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: #008fe6;
}

h2.toc_anchors::before {
  box-shadow: 
    4px 4px 0 rgba(0,0,0,0.15);
}


/* 下のライン */
h2.toc_anchors::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #000000; 
}


/* ================== お知らせウィジェット用 ================== */
.oem-esim-hc.oemhc-alert{
  border: 2px solid var(--oem-main);
  border-radius: 14px;
  padding: 14px 16px;
  background: #ffffff;
  margin: 0 0 16px;
}

.oem-esim-hc .oemhc-alert__head{
  display: block;
}

.oem-esim-hc .oemhc-alert__title{
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 800;
  color: var(--oem-text);
}


/* ================== FAQトップ誘導ウィジェット ================== */
.oem-esim-hc.oemhc-faq-cta{
  margin: 0 0 16px;
}

.oem-esim-hc .oemhc-faq-cta__link{
  display: block;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--oem-border);
  border-radius: 2px;
  padding: 18px 22px;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

.oem-esim-hc .oemhc-faq-cta__title{
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  color: #3c61ad; /* ← 指定どおり */
}

.oem-esim-hc .oemhc-faq-cta__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333333; /* ← 濃いグレー（ほぼ黒） */
}

/* スマホ微調整 */
@media (max-width: 720px){
  .oem-esim-hc .oemhc-faq-cta__link{
    padding: 16px;
  }
  .oem-esim-hc .oemhc-faq-cta__title{
    font-size: 18px;
  }
  .oem-esim-hc .oemhc-faq-cta__text{
    font-size: 13px;
  }
}
/* === アクション === */
.oem-esim-hc .oemhc-faq-cta__link{
  position: relative;
  will-change: transform;
  transform: translateZ(0);
}

/* hover / tap / focus */
.oem-esim-hc .oemhc-faq-cta__link:hover,
.oem-esim-hc .oemhc-faq-cta__link:focus-visible,
.oem-esim-hc .oemhc-faq-cta__link:active{
  outline: none;
  animation: oemhc-faq-smooth-float 560ms cubic-bezier(.25,.9,.25,1);
  border-color: var(--oem-main);
  box-shadow: 0 12px 24px rgba(0,0,0,.14);
}

/* スッ → しっかり前 → 戻る（中くらい） */
@keyframes oemhc-faq-smooth-float{
  0% {
    transform: translateY(0) scale(1);
  }

  /* 前に出る量を少しだけ増やす */
  45% {
    transform: translateY(-4px) scale(1.03);
  }

  /* 着地 */
  100% {
    transform: translateY(0) scale(1);
  }
}

/* 動きが苦手な人への配慮 */
@media (prefers-reduced-motion: reduce){
  .oem-esim-hc .oemhc-faq-cta__link:hover,
  .oem-esim-hc .oemhc-faq-cta__link:focus-visible,
  .oem-esim-hc .oemhc-faq-cta__link:active{
    animation: none;
  }
}


/* ================== CTAウィジェット用 ================== */
.oem-esim-hc.oemhc-contact-cards{ margin: 0 0 16px; }

.oem-esim-hc .oemhc-contact-cards__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 720px){
  .oem-esim-hc .oemhc-contact-cards__grid{ grid-template-columns: 1fr; }
}

.oem-esim-hc .oemhc-contact-cards__card{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;

  text-decoration: none;
  background: #fff;
  border: 1px solid #d7e2f2;
  border-radius: 4px;
  padding: 18px 18px;

  box-shadow: 0 2px 8px rgba(0,0,0,.10);
  position: relative;
  cursor: pointer;
}

.oem-esim-hc .oemhc-contact-cards__card::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(0,0,0,.18);
}

.oem-esim-hc .oemhc-contact-cards__card:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
  border-color: var(--oem-main);
}

.oem-esim-hc .oemhc-contact-cards__icon{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oem-esim-hc .oemhc-contact-cards__iconImg{
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.oem-esim-hc .oemhc-contact-cards__iconImg[src=""]{
  display: none;
}

.oem-esim-hc .oemhc-contact-cards__title{
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  color: #3c61ad;
  margin: 0 0 8px;
}

.oem-esim-hc .oemhc-contact-cards__text{
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
  margin: 0;
}

/* 静的カード：クリック感を消す */
.oem-esim-hc .oemhc-contact-cards__card--static{
  cursor: default;
}

.oem-esim-hc .oemhc-contact-cards__card--static:hover{
  transform: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
  border-color: #d7e2f2;
}

/* === アクション === */
.oem-esim-hc .oemhc-contact-cards__card--primary{
  will-change: transform;
  transform: translateZ(0);
}

/* メッセージだけ：スッと前に出る */
.oem-esim-hc .oemhc-contact-cards__card--primary:hover,
.oem-esim-hc .oemhc-contact-cards__card--primary:active,
.oem-esim-hc .oemhc-contact-cards__card--primary:focus-visible{
  outline: none;
  animation: oemhc-smooth-float 650ms cubic-bezier(.25,.9,.25,1);
  border-color: var(--oem-main);
  box-shadow:
    0 18px 34px rgba(230,77,151,.26),
    0 10px 22px rgba(0,0,0,.14);
}

/* スッ → フワ → 戻る */
@keyframes oemhc-smooth-float{
  0% {
    transform: translateY(0) scale(1);
  }

  /* 一気に前へ */
  45% {
    transform: translateY(-6px) scale(1.04);
  }

  /* 自然に着地 */
  100% {
    transform: translateY(0) scale(1);
  }
}

/* 動きが苦手な人への配慮 */
@media (prefers-reduced-motion: reduce){
  .oem-esim-hc .oemhc-contact-cards__card--primary:hover,
  .oem-esim-hc .oemhc-contact-cards__card--primary:active,
  .oem-esim-hc .oemhc-contact-cards__card--primary:focus-visible{
    animation: none;
  }
}


/* ================== 営業時間ウィジェット ================== */
.oem-esim-hc.oemhc-hours{
  margin: 0 0 28px;
}

/* 見出しはそのまま */
.oem-esim-hc .oemhc-hours__title{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 900;
  color: var(--oem-text);
}

/* グリッドは維持 */
.oem-esim-hc .oemhc-hours__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 720px){
  .oem-esim-hc .oemhc-hours__grid{
    grid-template-columns: 1fr;
  }
}

/* 完全にカード感を消す */
.oem-esim-hc .oemhc-hours__card{
  background: #f8f9fb;              /* 紙っぽい背景 */
  border: none;
  border-left: 5px solid #cfd7e6;   /* 左ライン＝お知らせ */
  border-radius: 0;
  padding: 12px 14px 12px 12px;
  box-shadow: none;
}

/* テクニカルは色だけ変えて注意喚起 */
.oem-esim-hc .oemhc-hours__card--tech{
  border-left-color: #e64d97;       /* ブランドピンク */
  background: #fff6fa;
}

/* ヘッダ：表っぽく */
.oem-esim-hc .oemhc-hours__head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

/* ラベルは黒寄りでCTAと差別化 */
.oem-esim-hc .oemhc-hours__label{
  font-size: 13px;
  font-weight: 900;
  color: #000;
}

/* 時間は強調するが“ボタン感”は出さない */
.oem-esim-hc .oemhc-hours__time{
  font-size: 13px;
  font-weight: 900;
  color: #000;
}

/* 説明文は完全に本文トーン */
.oem-esim-hc .oemhc-hours__desc{
  margin: 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: #333;
}

/* 見出しの装飾 */
h1.toc_anchors {
    position: relative;
    padding: .5em .7em;
    background-color: #e64d97;
    color: #fff;
}

h1.toc_anchors::before {
    position: absolute;
    top: 100%;
    left: 0;
    border-bottom: solid 10px transparent;
    border-right: solid 20px #b23d76;
    content: '';
}


#footerContainer > div.Footer__footerBg{
  display:none;
}



