@charset "UTF-8";
/* =========================================================
 基本設定
========================================================= */
body {
  font-size: 14px;
  line-height: 1.3;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", Osaka, sans-serif;
}

a:link {
  color: #005135;
}

a:visited {
  color: #4c665d;
}

a:hover {
  color: #07ad73;
  text-decoration: none;
}

a:active {
  color: #07ad73;
}

table {
  border-collapse: separate;
}

/* Hide amazon advertising beacon */
img[height="1"][width="1"][border="0"][src*="amazon-adsystem.com"] {
  visibility: hidden;
  position: absolute;
  top: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

/* =========================================================
 汎用クラス
 ※汎用クラスはimportant
========================================================= */
/* H0100 文字装飾
--------------------------------------------------------- */
/* ----- ウェイト ----- */
.fwMiddle {
  /*削除*/
  font-weight: 600 !important;
}

.fwBold {
  /*削除*/
  font-weight: bold !important;
}

.fwNormal {
  /*削除*/
  font-weight: normal !important;
}

/* ----- 下線 ----- */
.txtDeco {
  text-decoration: underline !important;
}

/* ----- 薄文字 ----- */
.txtLowImp {
  /*削除*/
  font-size: 86% !important;
  color: #555 !important;
}

/* ----- 強調（赤字） ----- */
.highImp {
  /*削除*/
  color: #D40C0C !important;
}

/* ----- 強調（黒文字） ----- */
.normalImp {
  /*削除*/
  font-weight: bold !important;
}

/* ----- 強調（黒文字） ----- */
.lowImp {
  /*削除*/
  font-size: 100% !important;
  font-weight: bold !important;
}

/*強調（文中で通常のテキストよりも訴求を強める場合に適用する。）*/
.txtStrong {
  font-weight: bold !important;
}

.android.tablet .txtStrong {
  -webkit-font-weight: normal;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: black;
  -webkit-text-fill-color: black;
}

.txtStrong02 {
  font-weight: bold !important;
  color: #65AE07 !important;
}

.android.tablet .txtStrong02 {
  -webkit-font-weight: normal;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #65AE07;
  -webkit-text-fill-color: #65AE07;
}

/* ----- 文字色 ----- */
/*------------------ 削除予定 start ---------------*/
.colGreen {
  color: #65ae07 !important;
}

.colOrange {
  color: #e96300 !important;
}

.colRed {
  color: #dd3300 !important;
}

.salImp {
  color: #d40c0c !important;
}

.colWhite {
  color: #ffffff !important;
}

.colGray {
  color: #999999 !important;
}

/*------------------ 削除予定 end ---------------*/
.col01 {
  color: #ffffff !important;
}

.col02 {
  color: #000000 !important;
}

.col03 {
  color: #65ae07 !important;
}

.col08 {
  color: #e96300 !important;
}

.col09 {
  color: #d40c0c !important;
}

.col10 {
  color: #999999 !important;
}

/* H0200 フォントサイズ
--------------------------------------------------------- */
.fSize10 {
  font-size: 72% !important;
}

.fSize11 {
  font-size: 79% !important;
}

.fSize12 {
  font-size: 86% !important;
}

.fSize13 {
  font-size: 93% !important;
}

.fSize14 {
  font-size: 100% !important;
}

.fSize15 {
  font-size: 108% !important;
}

.fSize16 {
  font-size: 115% !important;
}

.fSize17 {
  font-size: 122% !important;
}

.fSize18 {
  font-size: 129% !important;
}

.fSize19 {
  font-size: 136% !important;
}

.fSize20 {
  font-size: 143% !important;
}

.fSize21 {
  font-size: 150% !important;
}

.fSize22 {
  font-size: 158% !important;
}

.fSize23 {
  font-size: 165% !important;
}

.fSize24 {
  font-size: 172% !important;
}

.fSize25 {
  font-size: 179% !important;
}

.fSize26 {
  font-size: 187% !important;
}

/* H0300 ディスプレイ・テーブルレイアウト
--------------------------------------------------------- */
/* ----- display table ----- */
.dispTable {
  display: table !important;
}

.dispTableRow {
  display: table-row !important;
}

.dispTableCell {
  display: table-cell !important;
}

/* ----- スマホのみ表示させるクラス（PCで非表示） ----- */
.forSpBlock {
  display: none !important;
}

.dispInline {
  display: inline !important;
}

.dispInlBlock {
  display: inline-block !important;
}

.dispBlock {
  display: block !important;
}

/* ----- table-layout ----- */
.tableLayoutAuto {
  table-layout: auto !important;
}

.tableLayoutFixed {
  table-layout: fixed !important;
}

/* H0400 行揃え
--------------------------------------------------------- */
/* ----- 横方向 ----- */
.txtCenter {
  text-align: center !important;
}

.txtLeft {
  text-align: left !important;
}

.txtRight {
  text-align: right !important;
}

/* ----- 縦方向 ----- */
.valignTop {
  vertical-align: top !important;
}

.valignMiddle {
  vertical-align: middle !important;
}

.valignBottom {
  vertical-align: bottom !important;
}

/* ----- 改行しない ----- */
.whiteSNowrap {
  white-space: nowrap !important;
}

/* ----- 縦書き ----- */
.writeVertically {
  width: 1em;
}

/* H0500 配置・フロート・クリア
--------------------------------------------------------- */
/* ----- position style ----- */
.posSta {
  position: static !important;
}

.posRel {
  position: relative !important;
}

.posAbso {
  position: absolute !important;
}

/* ----- フロート ----- */
.fLeft {
  float: left !important;
}

.fRight {
  float: right;
}

/* ----- フロートクリア ----- */
.clear {
  clear: both !important;
}

/* ----- クリアフィックス ----- */
.clearfix:after {
  content: "";
  display: block;
  /* overflow: hidden; */
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* H0600 幅指定
--------------------------------------------------------- */
/* ----- 横　パーセント指定 ----- */
.w5p {
  width: 5% !important;
}

.w10p {
  width: 10% !important;
}

.w15p {
  width: 15% !important;
}

.w16p {
  width: 16% !important;
}

.w20p {
  width: 20% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w33p {
  width: 33% !important;
}

.w36p {
  width: 36% !important;
}

.w40p {
  width: 40% !important;
}

.w50p {
  width: 50% !important;
}

.w60p {
  width: 60% !important;
}

.w70p {
  width: 70% !important;
}

.w80p {
  width: 80% !important;
}

.w90p {
  width: 90% !important;
}

.w100p {
  width: 100% !important;
}

.w100 {
  /* 削除予定 */
  width: 100% !important;
}

/* ----- 横　ピクセル指定 ----- */
.w10px {
  width: 10px !important;
}

.w20px {
  width: 20px !important;
}

.w30px {
  width: 30px !important;
}

.w40px {
  width: 40px !important;
}

.w50px {
  width: 50px !important;
}

.w60px {
  width: 60px !important;
}

.w70px {
  width: 70px !important;
}

.w80px {
  width: 80px !important;
}

.w90px {
  width: 90px !important;
}

.w100px {
  width: 100px !important;
}

.w120px {
  width: 120px !important;
}

.w130px {
  width: 130px !important;
}

.w140px {
  width: 140px !important;
}

.w150px {
  width: 150px !important;
}

.w160px {
  width: 160px !important;
}

.w170px {
  width: 170px !important;
}

.w180px {
  width: 180px !important;
}

.w190px {
  width: 190px !important;
}

.w200px {
  width: 200px !important;
}

.w250px {
  width: 250px !important;
}

.w300px {
  width: 300px !important;
}

/* ----- 縦　ピクセル指定 ----- */
.h40px {
  height: 40px !important;
}

/* H0700 マージン
--------------------------------------------------------- */
.maC {
  margin: 0 auto !important;
}

.maT0 {
  margin-top: 0 !important;
}

.maT5 {
  margin-top: 5px !important;
}

.maT10 {
  margin-top: 10px !important;
}

.maT15 {
  margin-top: 15px !important;
}

.maT20 {
  margin-top: 20px !important;
}

.maT25 {
  margin-top: 25px !important;
}

.maT30 {
  margin-top: 30px !important;
}

.maT35 {
  margin-top: 35px !important;
}

.maT40 {
  margin-top: 40px !important;
}

.maT45 {
  margin-top: 45px !important;
}

.maT50 {
  margin-top: 50px !important;
}

.maT55 {
  margin-top: 55px !important;
}

.maT60 {
  margin-top: 60px !important;
}

.maT65 {
  margin-top: 65px !important;
}

.maT70 {
  margin-top: 70px !important;
}

.maT75 {
  margin-top: 75px !important;
}

.maT80 {
  margin-top: 80px !important;
}

.maT85 {
  margin-top: 85px !important;
}

.maT90 {
  margin-top: 90px !important;
}

.maT95 {
  margin-top: 95px !important;
}

.maT100 {
  margin-top: 100px !important;
}

.maT105 {
  margin-top: 105px !important;
}

.maT110 {
  margin-top: 110px !important;
}

.maT115 {
  margin-top: 115px !important;
}

.maT120 {
  margin-top: 120px !important;
}

.maR0 {
  margin-right: 0 !important;
}

.maR5 {
  margin-right: 5px !important;
}

.maR10 {
  margin-right: 10px !important;
}

.maR15 {
  margin-right: 15px !important;
}

.maR20 {
  margin-right: 20px !important;
}

.maR25 {
  margin-right: 25px !important;
}

.maR30 {
  margin-right: 30px !important;
}

.maR35 {
  margin-right: 35px !important;
}

.maR40 {
  margin-right: 40px !important;
}

.maR45 {
  margin-right: 45px !important;
}

.maR50 {
  margin-right: 50px !important;
}

.maR100 {
  margin-right: 100px !important;
}

.maB0 {
  margin-bottom: 0 !important;
}

.maB5 {
  margin-bottom: 5px !important;
}

.maB10 {
  margin-bottom: 10px !important;
}

.maB15 {
  margin-bottom: 15px !important;
}

.maB20 {
  margin-bottom: 20px !important;
}

.maB25 {
  margin-bottom: 25px !important;
}

.maB30 {
  margin-bottom: 30px !important;
}

.maB35 {
  margin-bottom: 35px !important;
}

.maB40 {
  margin-bottom: 40px !important;
}

.maB45 {
  margin-bottom: 45px !important;
}

.maB50 {
  margin-bottom: 50px !important;
}

.maB60 {
  margin-bottom: 60px !important;
}

.maB65 {
  margin-bottom: 65px !important;
}

.maB70 {
  margin-bottom: 70px !important;
}

.maB75 {
  margin-bottom: 75px !important;
}

.maB80 {
  margin-bottom: 80px !important;
}

.maB85 {
  margin-bottom: 85px !important;
}

.maB90 {
  margin-bottom: 90px !important;
}

.maB95 {
  margin-bottom: 95px !important;
}

.maB100 {
  margin-bottom: 100px !important;
}

.maB105 {
  margin-bottom: 105px !important;
}

.maB110 {
  margin-bottom: 110px !important;
}

.maB115 {
  margin-bottom: 115px !important;
}

.maB120 {
  margin-bottom: 120px !important;
}

.maL0 {
  margin-left: 0px !important;
}

.maL5 {
  margin-left: 5px !important;
}

.maL10 {
  margin-left: 10px !important;
}

.maL15 {
  margin-left: 15px !important;
}

.maL20 {
  margin-left: 20px !important;
}

.maL25 {
  margin-left: 25px !important;
}

.maL30 {
  margin-left: 30px !important;
}

.maL35 {
  margin-left: 35px !important;
}

.maL40 {
  margin-left: 40px !important;
}

.maL45 {
  margin-left: 45px !important;
}

.maL50 {
  margin-left: 50px !important;
}

.ma0 {
  margin: 0px !important;
}

.ma5 {
  margin: 5px !important;
}

.ma10 {
  margin: 10px !important;
}

.ma15 {
  margin: 15px !important;
}

.ma20 {
  margin: 20px !important;
}

.ma25 {
  margin: 25px !important;
}

.ma30 {
  margin: 30px !important;
}

.ma35 {
  margin: 35px !important;
}

.ma40 {
  margin: 40px !important;
}

.ma45 {
  margin: 45px !important;
}

.ma50 {
  margin: 50px !important;
}

/* H0800 パディング
--------------------------------------------------------- */
.paT0 {
  padding-top: 0px !important;
}

.paT5 {
  padding-top: 5px !important;
}

.paT10 {
  padding-top: 10px !important;
}

.paT15 {
  padding-top: 15px !important;
}

.paT20 {
  padding-top: 20px !important;
}

.paT25 {
  padding-top: 25px !important;
}

.paT30 {
  padding-top: 30px !important;
}

.paT35 {
  padding-top: 35px !important;
}

.paT40 {
  padding-top: 40px !important;
}

.paT45 {
  padding-top: 45px !important;
}

.paT50 {
  padding-top: 50px !important;
}

.paR0 {
  padding-right: 0px !important;
}

.paR5 {
  padding-right: 5px !important;
}

.paR10 {
  padding-right: 10px !important;
}

.paR15 {
  padding-right: 15px !important;
}

.paR20 {
  padding-right: 20px !important;
}

.paR25 {
  padding-right: 25px !important;
}

.paR30 {
  padding-right: 30px !important;
}

.paR35 {
  padding-right: 35px !important;
}

.paR40 {
  padding-right: 40px !important;
}

.paR45 {
  padding-right: 45px !important;
}

.paR50 {
  padding-right: 50px !important;
}

.paB0 {
  padding-bottom: 0px !important;
}

.paB5 {
  padding-bottom: 5px !important;
}

.paB10 {
  padding-bottom: 10px !important;
}

.paB15 {
  padding-bottom: 15px !important;
}

.paB20 {
  padding-bottom: 20px !important;
}

.paB25 {
  padding-bottom: 25px !important;
}

.paB30 {
  padding-bottom: 30px !important;
}

.paB35 {
  padding-bottom: 35px !important;
}

.paB40 {
  padding-bottom: 40px !important;
}

.paB45 {
  padding-bottom: 45px !important;
}

.paB50 {
  padding-bottom: 50px !important;
}

.paL0 {
  padding-left: 0px !important;
}

.paL5 {
  padding-left: 5px !important;
}

.paL10 {
  padding-left: 10px !important;
}

.paL15 {
  padding-left: 15px !important;
}

.paL20 {
  padding-left: 20px !important;
}

.paL25 {
  padding-left: 25px !important;
}

.paL30 {
  padding-left: 30px !important;
}

.paL35 {
  padding-left: 35px !important;
}

.paL40 {
  padding-left: 40px !important;
}

.paL45 {
  padding-left: 45px !important;
}

.paL50 {
  padding-left: 50px !important;
}

.paL55 {
  padding-left: 55px !important;
}

.paL60 {
  padding-left: 60px !important;
}

.pa0 {
  padding: 0px !important;
}

.pa5 {
  padding: 5px !important;
}

.pa10 {
  padding: 10px !important;
}

.pa15 {
  padding: 15px !important;
}

.pa20 {
  padding: 20px !important;
}

.pa25 {
  padding: 25px !important;
}

.pa30 {
  padding: 30px !important;
}

.pa35 {
  padding: 35px !important;
}

.pa40 {
  padding: 40px !important;
}

.pa45 {
  padding: 45px !important;
}

.pa50 {
  padding: 50px !important;
}

/* =========================================================
 H9000 その他
========================================================= */
/* フルードイメージ
--------------------------------------------------------- */
.fldImg {
  max-width: 100% !important;
  height: auto !important;
}

/* カーソル
--------------------------------------------------------- */
.cursorP:hover {
  cursor: pointer !important;
}

/* セクション
--------------------------------------------------------- */
.section {
  zoom: 1;
  clear: both;
}

.section:after {
  content: "";
  display: block;
  /* overflow: hidden; */
  clear: both;
}

/* 文字飛ばし
--------------------------------------------------------- */
.txtMagic {
  text-indent: 100% !important;
  display: block !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

/* セット
--------------------------------------------------------- */
div.set {
  margin-bottom: 10px;
}

/* MS Pゴシックファースト
--------------------------------------------------------- */
.msPGothicFirst {
  font-family: "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", "Meiryo", sans-serif;
}

/* スマホレイアウト
--------------------------------------------------------- */
/* -----
タブレット&&横持ち&&スマホレイアウト用（実質PCと同じになるが、
画面内に左右マージンを含められないため）
 ----- */
html.tablet body.sp-layout #allWrapper #wrapper {
  margin-right: 0;
  margin-left: 0;
}

/* ----- Fix表示用 ----- */
.js-fixed {
  position: fixed;
  top: 20px;
  width: 100%;
}

.js-fixSide.fixTop {
  top: 20px;
}

.js-fixSide.fixBtm {
  bottom: 20px;
}

/* 動画
--------------------------------------------------------- */
@media only screen and (max-width: 640px) {
  .video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }

  .video iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
}
/* 定義リスト代替え
--------------------------------------------------------- */
.defList01 dt {
  font-weight: bold;
  margin-top: 10px;
}

.defList01 dt:first-child {
  margin-top: 0;
}

/*新ヘッダー、お困りごとを探す*/
.searchInfoContainer {
  background-color: #E9F4F2;
  padding: 40px 40px 20px;
  width: 100%;
  margin-bottom: 100px;
}

.searchInfoContainer .searchInfoInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.searchInfoContainer .searchInfoInner .searchInfoItem {
  width: 215px;
  height: 200px;
  margin-bottom: 20px;
  padding: 25px;
  background-color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  cursor: pointer;
}

.searchInfoContainer .searchInfoInner .searchInfoItem:hover {
  opacity: 0.6;
}

.searchInfoContainer .searchInfoInner .searchInfoItem .searchInfoText {
  margin: 0;
  margin-top: 10px;
  color: #005332;
  font-weight: bold;
}

.searchInfoContainer .searchInfoResult {
  width: 100%;
  margin-bottom: 2rem;
}

.searchInfoContainer .searchInfoResult .searchInfoResultHeadingContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.searchInfoContainer .searchInfoResult .searchInfoResultHeadingContainer .searchInfoIcon {
  display: block;
  width: 42px;
  height: 42px;
}

.searchInfoContainer .searchInfoResult .searchInfoResultHeadingText {
  color: #005332;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 20px;
  height: auto;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
}

.searchInfoContainer .searchInfoResult .searchInfoResultList .searchInfoResultListItem {
  cursor: pointer;
  color: #000;
  background-color: #fff;
  font-weight: bold;
  border-radius: 10px;
  margin-top: 15px;
}

.searchInfoContainer .searchInfoResult .searchInfoResultList .searchInfoResultListItem a {
  color: black;
  display: block;
  padding: 10px 20px;
}

.searchInfoContainer .searchInfoResult .searchInfoResultList .searchInfoResultListItem:hover {
  opacity: 0.6;
}

.searchInfoContainer .searchInfoResult .searchInfoResultList .searchInfoResultListItem a {
  text-decoration: none;
}

.searchInfoContainer .searchInfoResult .searchInfoResultList .searchInfoResultListItem a:hover {
  opacity: 1;
}

.searchInfoContainer .searchInfoBackToPrevLink {
  color: #005332;
  font-size: 1.4rem;
  margin-top: 15px;
  padding-left: 15px;
  position: relative;
  cursor: pointer;
}

.searchInfoContainer .searchInfoBackToPrevLink:hover {
  opacity: 0.6;
}

.searchInfoContainer .searchInfoBackToPrevLink::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background-image: url("/static/responsive/img/mem/icon_right_chevron.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 10px;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  position: absolute;
  left: 0;
  top: 7px;
}

@media only screen and (max-width: 640px) {
  .searchInfoContainer {
    width: 100%;
    margin-bottom: 40px;
    padding: 15px 7.5px 0;
  }

  .searchInfoContainer .searchInfoInner .searchInfoItem {
    width: calc(50% - 15px);
    height: auto;
    margin: 0 7.5px 15px;
    padding: 20px 20px 10px;
  }

  .searchInfoContainer .searchInfoInner .searchInfoItem .searchInfoIcon {
    max-width: 54px;
  }

  .searchInfoContainer .searchInfoInner .searchInfoItem .searchInfoText {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    margin-top: 10px;
    font-size: 3.5vw;
  }

  .searchInfoContainer .searchInfoResult {
    margin: 0 7.5px;
    padding: 15px 15px 20px;
    width: calc(100% - 15px);
  }

  .searchInfoContainer .searchInfoResult .searchInfoResultHeading {
    font-size: 4vw;
    line-height: 1.409;
    padding-left: 45px;
    padding-top: 6px;
  }

  .searchInfoContainer .searchInfoResult .searchInfoResultHeading::before {
    content: "";
    width: 36px;
    height: 36px;
    background-size: 36px 36px;
  }

  .searchInfoContainer .searchInfoBackToPrevLink {
    padding-left: 25px;
    padding-bottom: 20px;
  }

  .searchInfoContainer .searchInfoBackToPrevLink::before {
    left: 7.5px;
  }
}
.infoH1Block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: calc(((100vw - 100%) / 2) * -1);
  margin-left: calc(((100vw - 100%) / 2) * -1);
  padding: 15px calc((100vw - 100%) / 2 + 40px);
  background-color: #e9f4f2;
  min-width: 1000px;
  min-height: 97px;
  margin-bottom: 50px;
}

.infoH1Block .btnWraper {
  margin-bottom: 10px;
}

.infoH1Block .btnWraper:last-of-type {
  margin-bottom: 25px;
}

.infoH1Block .smallArrowLink {
  margin-bottom: 25px;
}

.infoH1Block .actionQuestionList.btnWraper {
  margin-bottom: 20px;
}

.infoH1Block .btnWraper {
  width: 440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.infoH1Block .btnWraper .smallArrowLink {
  text-align: center;
}

.infoH1Block .btnWraper .otherLink {
  margin: 15px auto 0;
}

.infoH1Block .btnWraper .note > li {
  margin: 0;
  width: 440px;
  text-align: left;
}

.infoH1Block .btnWraper .note > li:not(:last-child) {
  margin-bottom: 8px;
}

.infoH1Block .btnWraper .jsEvModal.btnNormal span.blankLink, .infoH1Block .btnWraper .jsEvModal.btnWhite span.blankLink {
  width: 20px;
  height: 20px;
  background-image: url(/static/responsive/img/mem/icon_popup_darkgreen.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  z-index: 12;
}

.infoH1Block .btnWraper .jsEvModal.btnNormal::after, .infoH1Block .btnWraper .jsEvModal.btnWhite::after {
  content: none;
}

.infoH1Block .btnWraper .btnWhite {
  background-color: #fff;
  color: #1a4832;
  border: 1px solid #DEDEDE;
  margin-bottom: 15px;
  display: inline-block;
  width: 440px;
  max-width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 20px 45px 20px 20px;
  text-decoration: none;
  position: relative;
}

.infoH1Block .btnWraper .btnWhite::after {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
}

.infoH1Block .btnWraper .btnWhite::after {
  background-image: url(/static/responsive/img/mem/icon_button_self.svg);
}

.infoH1Block .btnWraper .btnWhite:hover {
  opacity: 0.7;
}

.infoH1Block h1 {
  padding: 0;
  width: 100%;
  min-width: auto;
  min-height: 50px;
  font-size: 3rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 40px;
  margin-top: 60px;
  text-align: center;
  word-break: break-all;
  position: relative;
}

.infoH1Block h1:before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -15px;
  display: inline-block;
  min-width: 340px;
  width: 50%;
  height: 12px;
  background-color: #D0EEE8;
}

.infoH1Block .infoH1ImageBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.infoH1Block .infoH1ImageBox .infoH1Item {
  margin: 0 10px 20px;
}

.infoH1Block .infoH1ImageBox .infoH1Item img {
  border-radius: 50%;
}

.infoH1Block .infoH1LeadTxt {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  word-break: break-all;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1000px) and (min-width: 641px) {
  .infoH1Block {
    margin-right: 0;
    margin-left: 0;
    padding: 15px 40px;
  }
}
@media only screen and (max-width: 640px) {
  .infoH1Block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 0;
    min-height: unset;
    padding: 30px 25px;
  }

  .infoH1Block .btnWraper {
    width: 100%;
  }

  .infoH1Block .btnWraper > li {
    width: 100%;
  }

  .infoH1Block .btnWraper .note {
    width: 100%;
  }

  .infoH1Block .btnWraper .note > li {
    width: auto;
  }

  .infoH1Block .btnWraper .btnWhite {
    width: 100%;
  }

  .infoH1Block h1 {
    min-width: 0;
    min-height: 36px;
    font-size: 2.4rem;
    line-height: 1.6;
    text-align: center;
    padding: 0 6.5%;
    margin-bottom: 30px;
    margin-top: 0;
  }

  .infoH1Block h1:before {
    min-width: 250px;
  }

  .infoH1Block .infoH1ImageBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .infoH1Block .infoH1ImageBox .infoH1Item {
    margin: 0 7.5px 25px;
    max-width: 120px;
  }

  .infoH1Block .infoH1ImageBox .infoH1Item img {
    border-radius: 50%;
  }

  .infoH1Block .infoH1LeadTxt {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    word-break: break-all;
  }
}
/*# sourceMappingURL=all_common_proc.css.map */
/* =========================================================
 rwd_common.css
========================================================= */
@media only screen and (max-width: 640px) {
  /* =========================================================
  基本設定
  ========================================================= */
  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  body {
    margin: 0 !important;
    -ms-overflow-y: hidden;
    overflow-y: hidden;
  }

  /* =========================================================
  汎用クラス
  ※汎用クラスはimportant
  ========================================================= */
  /* H0100 文字装飾
  --------------------------------------------------------- */
  /* H0200 フォントサイズ
  --------------------------------------------------------- */
  .rwdFSize10 {
    font-size: 72% !important;
  }

  .rwdFSize11 {
    font-size: 79% !important;
  }

  .rwdFSize12 {
    font-size: 86% !important;
  }

  .rwdFSize13 {
    font-size: 93% !important;
  }

  .rwdFSize14 {
    font-size: 100% !important;
  }

  .rwdFSize15 {
    font-size: 108% !important;
  }

  .rwdFSize16 {
    font-size: 115% !important;
  }

  .rwdFSize17 {
    font-size: 122% !important;
  }

  .rwdFSize18 {
    font-size: 129% !important;
  }

  .rwdFSize19 {
    font-size: 136% !important;
  }

  .rwdFSize20 {
    font-size: 143% !important;
  }

  .rwdFSize21 {
    font-size: 150% !important;
  }

  .rwdFSize22 {
    font-size: 158% !important;
  }

  .rwdFSize23 {
    font-size: 165% !important;
  }

  .rwdFSize24 {
    font-size: 172% !important;
  }

  .rwdFSize25 {
    font-size: 179% !important;
  }

  .rwdFSize26 {
    font-size: 187% !important;
  }

  /* H0300 ディスプレイ
  --------------------------------------------------------- */
  /* ----- スマホのみ表示させるクラス（PCで非表示） ----- */
  body .forSpBlock {
    display: block !important;
  }

  /* ----- PCのみ表示させるクラス（スマホで非表示） ----- */
  body .forPcBlock {
    display: none !important;
  }

  .rwdDispInline {
    display: inline !important;
  }

  .rwdDispInlBlock {
    display: inline-block !important;
  }

  .rwdDispBlock {
    display: block !important;
  }

  .rwdDispTable {
    display: table !important;
  }

  .rwdDispTableCell {
    display: table-cell !important;
  }

  /* H0400 行揃え
  --------------------------------------------------------- */
  /* ----- 横方向 ----- */
  .rwdTxtLeft {
    text-align: left !important;
  }

  .rwdTxtCenter {
    text-align: center !important;
  }

  .rwdTxtRight {
    text-align: right !important;
  }

  /* ----- 縦方向 ----- */
  .rwdValignTop {
    vertical-align: top !important;
  }

  .rwdValignMiddle {
    vertical-align: middle !important;
  }

  .rwdValignBottom {
    vertical-align: bottom !important;
  }

  /* H0500 配置・フロート・クリア
  --------------------------------------------------------- */
  /* H0600 幅指定
  --------------------------------------------------------- */
  /* ----- パーセント指定 ----- */
  .rwdW5p {
    width: 5% !important;
  }

  .rwdW10p {
    width: 10% !important;
  }

  .rwdW15p {
    width: 15% !important;
  }

  .rwdW20p {
    width: 20% !important;
  }

  .rwdW30p {
    width: 30% !important;
  }

  .rwdW33p {
    width: 33% !important;
  }

  .rwdW40p {
    width: 40% !important;
  }

  .rwdW50p {
    width: 50% !important;
  }

  .rwdW60p {
    width: 60% !important;
  }

  .rwdW70p {
    width: 70% !important;
  }

  .rwdW80p {
    width: 80% !important;
  }

  .rwdW90p {
    width: 90% !important;
  }

  .rwdW100p {
    width: 100% !important;
  }

  .rwdW100 {
    /* 削除予定 */
    width: 100%;
  }

  /* ----- ピクセル指定 ----- */
  .rwdW50px {
    width: 50px !important;
  }

  .rwdW60px {
    width: 60px !important;
  }

  .rwdW70px {
    width: 70px !important;
  }

  .rwdW80px {
    width: 80px !important;
  }

  .rwdW90px {
    width: 90px !important;
  }

  .rwdW100px {
    width: 100px !important;
  }

  .rwdW120px {
    width: 120px !important;
  }

  .rwdW150px {
    width: 150px !important;
  }

  .rwdW200px {
    width: 200px !important;
  }

  .rwdW250px {
    width: 250px !important;
  }

  .rwdW300px {
    width: 300px !important;
  }

  /* H0700 マージン
  --------------------------------------------------------- */
  .rwdMaC {
    margin: 0 auto !important;
  }

  .rwdMaT0 {
    margin-top: 0 !important;
  }

  .rwdMaT5 {
    margin-top: 5px !important;
  }

  .rwdMaT10 {
    margin-top: 10px !important;
  }

  .rwdMaT15 {
    margin-top: 15px !important;
  }

  .rwdMaT20 {
    margin-top: 20px !important;
  }

  .rwdMaT25 {
    margin-top: 25px !important;
  }

  .rwdMaT30 {
    margin-top: 30px !important;
  }

  .rwdMaT35 {
    margin-top: 35px !important;
  }

  .rwdMaT40 {
    margin-top: 40px !important;
  }

  .rwdMaT45 {
    margin-top: 45px !important;
  }

  .rwdMaT50 {
    margin-top: 50px !important;
  }

  .rwdMaT55 {
    margin-top: 55px !important;
  }

  .rwdMaT60 {
    margin-top: 60px !important;
  }

  .rwdMaT65 {
    margin-top: 65px !important;
  }

  .rwdMaT70 {
    margin-top: 70px !important;
  }

  .rwdMaT75 {
    margin-top: 75px !important;
  }

  .rwdMaT80 {
    margin-top: 80px !important;
  }

  .rwdMaT85 {
    margin-top: 85px !important;
  }

  .rwdMaT90 {
    margin-top: 90px !important;
  }

  .rwdMaT95 {
    margin-top: 95px !important;
  }

  .rwdMaT100 {
    margin-top: 100px !important;
  }

  .rwdMaR0 {
    margin-right: 0 !important;
  }

  .rwdMaR5 {
    margin-right: 5px !important;
  }

  .rwdMaR10 {
    margin-right: 10px !important;
  }

  .rwdMaR15 {
    margin-right: 15px !important;
  }

  .rwdMaR20 {
    margin-right: 20px !important;
  }

  .rwdMaR25 {
    margin-right: 25px !important;
  }

  .rwdMaR30 {
    margin-right: 30px !important;
  }

  .rwdMaR35 {
    margin-right: 35px !important;
  }

  .rwdMaR40 {
    margin-right: 40px !important;
  }

  .rwdMaR45 {
    margin-right: 45px !important;
  }

  .rwdMaR50 {
    margin-right: 50px !important;
  }

  .rwdMaB0 {
    margin-bottom: 0 !important;
  }

  .rwdMaB5 {
    margin-bottom: 5px !important;
  }

  .rwdMaB10 {
    margin-bottom: 10px !important;
  }

  .rwdMaB15 {
    margin-bottom: 15px !important;
  }

  .rwdMaB20 {
    margin-bottom: 20px !important;
  }

  .rwdMaB25 {
    margin-bottom: 25px !important;
  }

  .rwdMaB30 {
    margin-bottom: 30px !important;
  }

  .rwdMaB35 {
    margin-bottom: 35px !important;
  }

  .rwdMaB40 {
    margin-bottom: 40px !important;
  }

  .rwdMaB45 {
    margin-bottom: 45px !important;
  }

  .rwdMaB50 {
    margin-bottom: 50px !important;
  }

  .rwdMaB55 {
    margin-bottom: 55px !important;
  }

  .rwdMaB60 {
    margin-bottom: 60px !important;
  }

  .rwdMaB65 {
    margin-bottom: 65px !important;
  }

  .rwdMaB70 {
    margin-bottom: 70px !important;
  }

  .rwdMaB75 {
    margin-bottom: 75px !important;
  }

  .rwdMaB80 {
    margin-bottom: 80px !important;
  }

  .rwdMaB85 {
    margin-bottom: 85px !important;
  }

  .rwdMaB90 {
    margin-bottom: 90px !important;
  }

  .rwdMaB95 {
    margin-bottom: 95px !important;
  }

  .rwdMaB100 {
    margin-bottom: 100px !important;
  }

  .rwdMaL0 {
    margin-left: 0px !important;
  }

  .rwdMaL5 {
    margin-left: 5px !important;
  }

  .rwdMaL10 {
    margin-left: 10px !important;
  }

  .rwdMaL15 {
    margin-left: 15px !important;
  }

  .rwdMaL20 {
    margin-left: 20px !important;
  }

  .rwdMaL25 {
    margin-left: 25px !important;
  }

  .rwdMaL30 {
    margin-left: 30px !important;
  }

  .rwdMaL35 {
    margin-left: 35px !important;
  }

  .rwdMaL40 {
    margin-left: 40px !important;
  }

  .rwdMaL45 {
    margin-left: 45px !important;
  }

  .rwdMaL50 {
    margin-left: 50px !important;
  }

  .rwdMa0 {
    margin: 0px !important;
  }

  .rwdMa5 {
    margin: 5px !important;
  }

  .rwdMa10 {
    margin: 10px !important;
  }

  .rwdMa15 {
    margin: 15px !important;
  }

  .rwdMa20 {
    margin: 20px !important;
  }

  .rwdMa25 {
    margin: 25px !important;
  }

  .rwdMa30 {
    margin: 30px !important;
  }

  .rwdMa35 {
    margin: 35px !important;
  }

  .rwdMa40 {
    margin: 40px !important;
  }

  .rwdMa45 {
    margin: 45px !important;
  }

  .rwdMa50 {
    margin: 50px !important;
  }

  /* H0800 パディング
  --------------------------------------------------------- */
  .rwdPaT0 {
    padding-top: 0px !important;
  }

  .rwdPaT5 {
    padding-top: 5px !important;
  }

  .rwdPaT10 {
    padding-top: 10px !important;
  }

  .rwdPaT15 {
    padding-top: 15px !important;
  }

  .rwdPaT20 {
    padding-top: 20px !important;
  }

  .rwdPaT25 {
    padding-top: 25px !important;
  }

  .rwdPaT30 {
    padding-top: 30px !important;
  }

  .rwdPaT35 {
    padding-top: 35px !important;
  }

  .rwdPaT40 {
    padding-top: 40px !important;
  }

  .rwdPaT45 {
    padding-top: 45px !important;
  }

  .rwdPaT50 {
    padding-top: 50px !important;
  }

  .rwdPaR0 {
    padding-right: 0px !important;
  }

  .rwdPaR5 {
    padding-right: 5px !important;
  }

  .rwdPaR10 {
    padding-right: 10px !important;
  }

  .rwdPaR15 {
    padding-right: 15px !important;
  }

  .rwdPaR20 {
    padding-right: 20px !important;
  }

  .rwdPaR25 {
    padding-right: 25px !important;
  }

  .rwdPaR30 {
    padding-right: 30px !important;
  }

  .rwdPaR35 {
    padding-right: 35px !important;
  }

  .rwdPaR40 {
    padding-right: 40px !important;
  }

  .rwdPaR45 {
    padding-right: 45px !important;
  }

  .rwdPaR50 {
    padding-right: 50px !important;
  }

  .rwdPaB0 {
    padding-bottom: 0px !important;
  }

  .rwdPaB5 {
    padding-bottom: 5px !important;
  }

  .rwdPaB10 {
    padding-bottom: 10px !important;
  }

  .rwdPaB15 {
    padding-bottom: 15px !important;
  }

  .rwdPaB20 {
    padding-bottom: 20px !important;
  }

  .rwdPaB25 {
    padding-bottom: 25px !important;
  }

  .rwdPaB30 {
    padding-bottom: 30px !important;
  }

  .rwdPaB35 {
    padding-bottom: 35px !important;
  }

  .rwdPaB40 {
    padding-bottom: 40px !important;
  }

  .rwdPaB45 {
    padding-bottom: 45px !important;
  }

  .rwdPaB50 {
    padding-bottom: 50px !important;
  }

  .rwdPaL0 {
    padding-left: 0px !important;
  }

  .rwdPaL5 {
    padding-left: 5px !important;
  }

  .rwdPaL10 {
    padding-left: 10px !important;
  }

  .rwdPaL15 {
    padding-left: 15px !important;
  }

  .rwdPaL20 {
    padding-left: 20px !important;
  }

  .rwdPaL25 {
    padding-left: 25px !important;
  }

  .rwdPaL30 {
    padding-left: 30px !important;
  }

  .rwdPaL35 {
    padding-left: 35px !important;
  }

  .rwdPaL40 {
    padding-left: 40px !important;
  }

  .rwdPaL45 {
    padding-left: 45px !important;
  }

  .rwdPaL50 {
    padding-left: 50px !important;
  }

  .rwdPa0 {
    padding: 0px !important;
  }

  .rwdPa5 {
    padding: 5px !important;
  }

  .rwdPa10 {
    padding: 10px !important;
  }

  .rwdPa15 {
    padding: 15px !important;
  }

  .rwdPa20 {
    padding: 20px !important;
  }

  .rwdPa25 {
    padding: 25px !important;
  }

  .rwdPa30 {
    padding: 30px !important;
  }

  .rwdPa35 {
    padding: 35px !important;
  }

  .rwdPa40 {
    padding: 40px !important;
  }

  .rwdPa45 {
    padding: 45px !important;
  }

  .rwdPa50 {
    padding: 50px !important;
  }

  /* =========================================================
  H9000 その他
  ========================================================= */
  /* フルードイメージ
  --------------------------------------------------------- */
  .rwdFldImg {
    max-width: 100% !important;
    height: auto !important;
  }

  .rwdFldImg02 {
    width: 100% !important;
    height: auto !important;
  }

  /* CSSスプライト用背景イメージ非表示
  --------------------------------------------------------- */
  .rwdBGNone {
    background-image: none !important;
    list-style-image: none !important;
  }

  /* 文字飛ばし
  --------------------------------------------------------- */
  .txtMagicSP {
    text-indent: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
  }

  /* スマホレイアウト
  --------------------------------------------------------- */
  /* ----- Fix表示用 ----- */
  .js-fixed {
    position: static;
  }

  /* ----- フロート ----- */
  .rwdFNone {
    float: none !important;
  }

  /* ----- クリアフィックス ----- */
  .rwdClearfix:after {
    content: "";
    display: block;
    overflow: hidden;
    clear: both;
  }

  .rwdClearfix {
    zoom: 1;
  }
}
/* =========================================================
 header.css
========================================================= */
/* ------ そのまま移行ページ用にpadding-topを削除  ----- */
@media only screen and (max-width: 640px) {
  #contWrap {
    padding-top: 0px;
  }
}
/* ------ そのまま移行ページ（プラチナ）のコンテンツエリア調整  ----- */
.PlatinumContents {
  margin: 20px auto 0;
}

.PlatinumContents + .BPTWrap {
  margin: 50px auto 5px;
}

@media only screen and (max-width: 640px) {
  .PlatinumContents {
    width: auto;
  }

  .PlatinumContents + .BPTWrap {
    width: auto;
  }
}
html {
  border: none;
  /* 旧iOSハックを無効化 */
}

body {
  overflow-x: hidden;
}

@media only screen and (max-width: 1000px) {
  body {
    overflow-x: visible;
  }
}
/* ------ ヘッダ要素のPC/SP表示切り替え  ----- */
.forPcFlex {
  display: flex !important;
}

.forSpFlex {
  display: none !important;
}

@media only screen and (max-width: 640px) {
  .forPcFlex {
    display: none !important;
  }

  .forSpFlex {
    display: flex !important;
  }
}
/* ヘッダ
--------------------------------------------------------- */
/* ------ header  ----- */
#header {
  line-height: 1.8;
  min-width: 1000px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  background: #fff;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", Osaka, sans-serif;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 991;
}

#header.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: scaleX(1);
}

@media only screen and (max-width: 640px) {
  #header {
    height: 135px;
    width: 100%;
    min-width: 320px;
  }
}
#header *,
#header *::before,
#header *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ios角丸除去 */
#header input {
  border-radius: 0;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", Osaka, sans-serif;
}

#header > .headerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1000px;
  max-width: 1000px;
  min-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  position: relative;
  height: 85px;
}

@media only screen and (max-width: 640px) {
  #header > .headerInner {
    height: 60px;
    width: 100%;
    min-width: 320px;
  }
}
@media print {
  #header {
    display: none;
  }
}
#header .hLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: auto;
  width: 180px;
}

#header .hLeft h1.logo_out,
#header .hLeft h1.logo_in {
  /*共通H1スタイルリセット*/
  font-size: 1rem;
  line-height: 1.8;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  background-color: transparent;
  min-width: 0;
  font-weight: normal;
  margin-bottom: 0px;
  text-align: left;
  min-height: auto;
}

#header .hLeft p.logo_out,
#header .hLeft h1.logo_out {
  width: 152px;
  height: 32px;
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/logo_logout.png) left/152px no-repeat;
}

#header .hLeft p.logo_out {
  margin-bottom: 0;
}

@media only screen and (max-width: 640px) {
  #header .hLeft p.logo_out,
#header .hLeft h1.logo_out {
    width: 122px;
    height: 20px;
    background-size: contain;
  }
}
#header .hLeft p.logo_out a,
#header .hLeft h1.logo_out a {
  display: block;
  width: 152px;
  height: 24px;
  margin: 0;
}

#header .hLeft p.logo_in,
#header .hLeft h1.logo_in {
  width: 180px;
  height: 32px;
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/logo_login.png) left/180px no-repeat;
  margin-bottom: 0;
}

@media only screen and (max-width: 640px) {
  #header .hLeft p.logo_in,
#header .hLeft h1.logo_in {
    width: 122px;
    height: 20px;
    background-size: contain;
  }
}
#header .hLeft p.logo_in a,
#header .hLeft h1.logo_in a {
  display: block;
  height: auto;
  margin: 0;
  line-height: 32px;
}

#header .hLeft p.txt {
  font-size: 72%;
  padding-top: 3px;
  line-height: 1em;
}

#header .hLeft .wrap .txt br {
  display: none;
}

@media only screen and (max-width: 640px) {
  #header {
    position: relative;
    height: 135px;
    width: 100%;
  }

  #header.header-fixed {
    height: 75px;
  }

  #header .hLeft {
    margin-left: 16px;
    width: 122px;
  }

  #header .hLeft p.logo_in a,
#header .hLeft h1.logo_in a {
    line-height: 20px;
  }
}
#header .hRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 640px) {
  #header .hRight {
    margin-right: 8px;
    margin-top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: visible;
  }
}
div ul.hRight_subMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 8px !important;
  /* XXX all_contents.css対応 */
  margin-bottom: 5px !important;
}

@media only screen and (max-width: 640px) {
  div ul.hRight_subMenu {
    margin-top: 0 !important;
    /* XXX */
    margin-bottom: 0px !important;
  }
}
.subMenu_item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 20px;
}

@media only screen and (max-width: 640px) {
  .subMenu_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    margin-top: 0px !important;
    /* XXX */
    width: 50px;
    font-size: 10px;
    line-height: 14px;
  }

  .subMenu_item.subMenu_item-menu > a {
    color: #117766;
  }
}
.subMenu_item:not(:first-child) {
  margin-left: 24px;
}

.subMenu_item.subMenu_item-login {
  margin-left: 20px;
}

.subMenu_item.subMenu_item-userInfo {
  margin-right: 16px;
}

@media only screen and (max-width: 640px) {
  .subMenu_item:not(:first-child) {
    margin-left: 0;
  }

  .subMenu_item.subMenu_item-logout {
    margin-left: 8px;
  }

  .subMenu_item.subMenu_item-userInfo {
    margin-right: 0px;
  }
}
.subMenu_item::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

@media only screen and (max-width: 640px) {
  .subMenu_item::before {
    margin-right: 0;
    position: absolute;
    pointer-events: none;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    /* for IE11※ */
    left: 50%;
    /* for IE11※ */
    /* IE11でflex-itemの疑似要素の背景が左右中央に整列しない対策 */
  }
}
.subMenu_item-menu {
  color: #117766;
  display: none;
}

/* QA */
@media only screen and (max-width: 640px) {
  .subMenu_item-qa,
.subMenu_item-support {
    display: none;
  }

  .subMenu_item-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 46px;
  }
}
.subMenu_item-search {
  cursor: pointer;
}

.subMenu_item-qa::before {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_qa.svg") no-repeat center;
}

.subMenu_item-qa:hover::before {
  background-image: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_qa_on.svg");
}

/* Sub-Menu Supprt */
.subMenu_item-support::before {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_support.svg") no-repeat center;
}

/* Sub-Menu Search */
.subMenu_item-search::before {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_search.svg") no-repeat center;
}

/* Sub-Menu Translated Pages */
.subMenu_item-Translated::before {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_language.svg") no-repeat center;
}

/* Sub-Menu User */
.subMenu_item-userInfo::before {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_mypage_pc.svg") no-repeat center;
}

@media only screen and (max-width: 640px) {
  .subMenu_item-userInfo::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_mypage_sp.svg") no-repeat center;
  }
}
/* Sub-Menu Login */
@media only screen and (min-width: 641px) {
  .subMenu_item-login {
    background-color: #00846D;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 20px;
  }

  .subMenu_item-login > a {
    color: #fff !important;
    font-weight: bold;
  }

  .subMenu_item-logout {
    padding: 4px 0px;
    line-height: 20px;
  }
}
.subMenu_item-login::before {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_login_white.svg") no-repeat center;
}

@media only screen and (max-width: 640px) {
  .subMenu_item-login::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_login_green.svg") no-repeat center;
  }
}
/* Sub-Menu Logout */
.subMenu_item-logout::before {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_logout.svg") no-repeat center;
}

/* Sub-Menu Link */
.subMenu_item > .subMenu_itemInner,
.subMenu_item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  text-decoration: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 640px) {
  .subMenu_item > .subMenu_itemInner,
.subMenu_item > a {
    height: 36px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 10px;
    font-weight: bold;
    color: #00846D;
    white-space: nowrap;
  }
}
.subMenu_item:hover > span,
.subMenu_item:hover > a {
  color: #117766;
  text-decoration: underline !important;
  opacity: 0.5;
}

.subMenu_item:hover::before {
  opacity: 0.5;
}

.subMenu_dropdown {
  cursor: pointer;
  position: relative;
}

.subMenu_dropdown::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 4px;
}

.subMenu_dropdown:hover > a {
  text-decoration: none;
}

@media only screen and (max-width: 640px) {
  .subMenu_dropdown:after {
    display: none;
  }
}
.subMenu_dropdown_body {
  display: none;
}

.subMenu_dropdown.isShow .subMenu_dropdown_body {
  background-color: #EEE;
  cursor: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 10px;
  position: absolute;
  top: calc(100% + 10px);
  right: calc((-208px + 8px) / 2);
  margin: 0;
  width: 208px;
  z-index: 991;
}

@media only screen and (max-width: 640px) {
  .subMenu_dropdown.isShow .subMenu_dropdown_body {
    display: none;
  }
}
.subMenu_dropdown .subMenu_dropdown_body:after {
  content: "";
  top: -8px;
  left: calc((208px - 16px) / 2);
  position: absolute;
  border-style: solid;
  border-width: 0 8px 8px;
  border-color: #EEE transparent;
}

.subMenu_dropdown_item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  min-height: 45px;
}

a.subMenu_dropdown_item_link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px 27px 13px 0;
  text-decoration: none;
}

a.subMenu_dropdown_item_link::after {
  position: absolute;
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg") no-repeat center;
  content: "";
  width: 12px;
  height: 12px;
  right: 0;
  top: calc(50% - 12px / 2);
  text-decoration: underline;
  color: #117766;
}

.subMenu_dropdown_item + .subMenu_dropdown_item {
  border-top: 1px dashed #CCC;
}

.subMenu_dropdown_item:last-child {
  border-bottom: 1px dashed #CCC;
}

.subMenu_dropdown_close {
  display: none;
}

@media only screen and (max-width: 640px) {
  /* Sub-Menu Menu(Close) */
  .subMenu_item-menu::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_menu.svg") no-repeat center;
    top: calc(50% - 16px / 2);
    width: 16px;
    height: 14px;
  }

  /* Sub-Menu Menu(Open) */
  .isSpMenuOpen .subMenu_item-menu::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_menu_close.svg") no-repeat center;
  }
}
/* SP時の会員情報のモーダル表示 */
.mfp-bg {
  opacity: 0.6;
}

.subMenu_userInfo_title {
  pointer-events: none;
}

@media only screen and (max-width: 640px) {
  .subMenu_userInfo_title {
    pointer-events: auto;
  }
}
.subMenu_modal_content.mfp-hide {
  display: block !important;
}

.mfp-content > .subMenu_modal_content {
  font-size: 16px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 65vh;
  max-width: 95%;
  min-width: 290px;
  margin: 15px auto !important;
  padding: 30px 15px;
}

*::-ms-backdrop, .mfp-content > .subMenu_modal_content {
  /* IE11 のみ適用される */
  height: 1px;
}

.subMenu_modal_title {
  display: none;
}

.mfp-content .subMenu_modal_title {
  display: block;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #CCC;
}

.mfp-content .subMenu_dropdown_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mfp-content .subMenu_dropdown_list {
  width: 100%;
}

.mfp-content .subMenu_userInfo_prevLogin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: calc(16px + 16px);
}

.subMenu_modal_close_top,
.subMenu_modal_close_bottom {
  display: none;
}

.mfp-content .subMenu_modal_close_top {
  cursor: pointer;
  display: block;
  position: absolute;
  right: 14px;
  top: -16px;
}

.mfp-content .subMenu_modal_close_bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-top: auto;
}

.mfp-content .subMenu_modal_close_bottom::before {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/btn_modal_close.svg") no-repeat center;
  content: "";
  height: 24px;
  width: 24px;
  margin-right: 10px;
}

/* メガドロップダウン */
.megaMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 27px;
  font-size: 14px;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  margin-top: 8px;
  z-index: 990;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 750px;
}

@media only screen and (max-width: 640px) {
  /* 疑似ドロップシャドウ */
  .megaMenu:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    -webkit-box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.039);
    box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.039);
    z-index: 2;
  }

  .megaMenu {
    display: none;
    position: absolute;
    left: 0;
    top: 60px;
    margin-top: 0;
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: calc(100vh - 75px);
    height: auto;
    overflow-y: visible;
    width: 100%;
  }

  .header-fixed .megaMenu {
    top: 0;
  }

  .megaMenubtn {
    display: flex;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  /* iosのスクロールバー削除分の余白調整 */
  /*
  html.ios .megaMenu {
    width: calc(100% + 6px);
  }
  html.ios .headerPlatinum .megaMenu {
    width: 100%;
  }
  */
}
@media only screen and (min-width: 641px) {
  .megaMenu.hamburgerMenuSp {
    display: none !important;
  }
}
ul li.megaMenu_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 20px;
  margin-bottom: 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

/*
.megaMenu_item:nth-child(2) {
  padding-left: 28px;
}
.megaMenu_item:nth-last-child(3) {
  padding-right: 0;
}*/
.megaMenu_item > .megaMenu_itemTitle {
  color: #333;
  cursor: default;
  line-height: 20px;
}

@media only screen and (max-width: 640px) {
  ul li.megaMenu_item {
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 16px;
    height: auto;
    padding: 0;
    margin-right: auto;
    margin-bottom: 0;
  }

  .megaMenu_item:nth-child(2) {
    padding-left: 0;
  }

  .megaMenu_item.megaMenu_item-isAccordionOpen {
    overflow: visible;
  }
}
.megaMenu_item-isMenuOpen > .megaMenu_itemTitle,
.megaMenu_item-active > .megaMenu_itemTitle {
  /*border-bottom: 2px solid #1A4832;*/
}

@media only screen and (max-width: 640px) {
  .megaMenu_item > .megaMenu_itemTitle,
.megaMenu_item-isMenuOpen > .megaMenu_itemTitle,
.megaMenu_item-active > .megaMenu_itemTitle {
    border-bottom: none;
  }
}
.megaMenu_item-isMenuOpen .megaMenu_itemTitlebtmline {
  background-color: #00846D;
  height: 4px;
  border-radius: 2px;
  margin-top: 8px;
}

.megaMenu_item-isMenuOpen > .megaMenu_itemTitle > a,
.megaMenu_item-active > .megaMenu_itemTitle {
  color: #1A4832;
}

@media only screen and (max-width: 640px) {
  .megaMenu_item > .megaMenu_itemTitle,
.megaMenu_item-isMenuOpen > .megaMenu_itemTitle > a,
.megaMenu_itemTitle > a {
    color: #333;
  }

  .megaMenu_item > .megaMenu_itemTitle.jsAccordion_active {
    color: #fff;
  }
}
.megaMenu_itemTitle {
  font-weight: bold;
  position: relative;
}

/* メガドロップダウンの吹き出し部分
  NOTE: .megaMenu_itemをrelativeにすると、メガドロップダウンに影響してしまうため、.megaMenu_itemTitleで吹き出し部分を再現 */
/*
.megaMenu_itemTitle::before {
  content: '';
  bottom: -17px;
  left: calc(50% - 8px / 2);
  position: absolute;
  border-style: solid;
  border-width: 0px 8px 8px;
  border-color: #EEE transparent;
  transition: all .2s ease-in 0s;
  visibility: hidden;
  opacity: 0;
}
*/
.megaMenu_item-isMenuOpen > .megaMenu_itemTitle::before {
  visibility: visible;
  opacity: 1;
}

a.megaMenu_itemTitleLink,
.megaMenu_item-isMenuOpen > .megaMenu_itemTitle > a.megaMenu_itemTitleLink {
  color: #333;
  text-decoration: none;
  font-size: 15px;
}

a.megaMenu_itemTitleLink:hover {
  opacity: 1;
}

@media only screen and (max-width: 640px) {
  .megaMenu_itemTitle {
    background-color: #fff;
    font-size: 0px;
    min-height: 58px;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    height: 75px;
  }

  .megaMenu_item > .megaMenu_itemTitle {
    line-height: 0px;
  }

  .megaMenu_itemTitle.jsAccordion_active {
    background-color: #F5F5F5;
  }

  .megaMenu_itemTitle::after {
    display: none;
    position: absolute;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_open.svg") no-repeat center;
    content: "";
    width: 16px;
    height: 16px;
    right: 20px;
    top: calc(50% - 16px / 2);
  }

  .megaMenu_itemTitle.jsAccordion_active::after {
    background-image: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_close_wh.svg");
  }

  .megaMenu_itemTitle::before {
    display: none;
  }

  .megaMenu_itemTitleimg_st, .megaMenu_itemTitleimg_fill {
    width: 62px;
    height: 75px;
    margin: 0 auto;
    cursor: pointer;
  }

  .megaMenu_item:nth-child(2) .megaMenu_itemTitleimg_st,
.megaMenu_item:nth-child(2) .megaMenu_itemTitleimg_fill {
    width: 65px;
  }

  .megaMenu_itemTitle .megaMenu_itemTitleimg_fill,
.megaMenu_itemTitle.jsAccordion_active .megaMenu_itemTitleimg_st {
    display: none !important;
  }

  .megaMenu_itemTitle.jsAccordion_active .megaMenu_itemTitleimg_fill {
    display: block !important;
  }
}
/* メガドロップダウン ボディ */
.megaMenu_itemBody {
  background-color: #fff;
  position: absolute;
  top: 85px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  height: auto;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in 0.1s;
  transition: all 0.4s ease-in 0.1s;
  line-height: 1.4;
  width: calc(100% + 64px);
  margin-left: -32px;
  padding-left: 32px;
  padding-right: 32px;
}

.megaMenu_item-isMenuOpen .megaMenu_itemBody {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in 0s;
  transition: all 0.2s ease-in 0s;
}

@media only screen and (max-width: 1000px) {
  .megaMenu_itemBody {
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 640px) {
  .megaMenu_itemBody {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 1;
    top: 75px;
    height: auto;
    min-height: auto;
    max-height: none;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
    border-top: 1px solid #F5F5F5;
  }

  .megaMenu_item-isMenuOpen .megaMenu_itemBody {
    -webkit-transition: none;
    transition: none;
  }
}
/* メガドロップダウン サブトップ */
.megaMenu_subTop {
  /*background-color: #1A4832;*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-top: 16px;
  /*margin-left: -20px;*/
  width: 1000px;
}

@media only screen and (max-width: 640px) {
  .megaMenu_subTop {
    display: none;
  }
}
.meagDdm_subTopButton {
  height: 88px;
  width: 144px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-right: 16px;
  padding: 0px 8px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.meagDdm_subTopButton:hover {
  text-decoration: underline;
}

.meagDdm_subTopBtnItem {
  width: 100%;
  text-align: center;
}

.meagDdm_subTopBtnText {
  margin-top: 4px;
  font-size: 12px;
  line-height: 18px;
  color: #00846D;
}

.meagDdm_subTopTitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}

@media only screen and (max-width: 640px) {
  .meagDdm_subTopTitle {
    display: none;
  }
}
.meagDdm_subTopLink {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  padding-left: 18px;
  position: relative;
  text-decoration: underline;
}

a.meagDdm_subTopLink {
  color: #fff;
}

.meagDdm_subTopLink:hover {
  text-decoration: none;
}

.meagDdm_subTopLink::after {
  position: absolute;
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron_wh.svg") no-repeat center;
  content: "";
  width: 12px;
  height: 12px;
  top: 4px;
  left: 0;
}

@media only screen and (max-width: 640px) {
  .meagDdm_subTopLink {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 56px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
    background-color: #CCC;
    padding: 15px 48px 17px 30px;
    position: relative;
  }

  a.meagDdm_subTopLink {
    color: #333;
    text-decoration: none;
  }

  .meagDdm_subTopLink::after {
    position: absolute;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg") no-repeat center;
    content: "";
    width: 12px;
    height: 12px;
    right: 20px;
    top: calc(50% - 12px / 2);
    left: auto;
  }
}
.meagDdm_subTopBelow {
  margin-top: auto;
}

.meagDdm_subTopBelow > .note {
  color: #fff;
  font-size: 12px;
  margin-bottom: 0;
}

@media only screen and (max-width: 640px) {
  .meagDdm_subTopBelow {
    display: none;
  }
}
/* メガドロップダウン サブ */
.megaMenu_subMenu {
  /*background-color: #F0F0F0;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 16px 0px 32px;
  /*margin-right: -60px;*/
  overflow: hidden;
  width: 1000px;
}

@media only screen and (max-width: 640px) {
  .megaMenu_subMenu {
    background-color: #F5F5F5;
    display: block;
    width: auto;
    padding: 0;
    margin-right: 0;
    overflow-y: auto;
    max-height: calc(100dvh - 174px);
  }
}
a.megaMenu_subTopLink {
  padding: 16px 24px 16px 0px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  border-bottom: 1px solid #ddd;
  width: 100%;
  display: inline-block;
  position: relative;
}

.megaMenu_subWrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.megaMenu_sub {
  height: 100%;
}

.megaMenu_subWrap:nth-child(n+3) {
  margin-left: 41px;
}

@media only screen and (max-width: 640px) {
  .megaMenu_subWrap {
    padding: 0 18px;
    margin-left: 0;
  }

  .megaMenu_subWrap:not(:first-child) {
    margin-left: 0;
  }
}
.megaMenu_subTitle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 20px;
  font-weight: bold;
  padding: 15px 0;
  border-bottom: 1px solid #CCC;
}

@media only screen and (max-width: 640px) {
  .megaMenu_subTitle {
    border-bottom: 0;
    min-height: 40px;
    font-size: 14px;
    line-height: 16px;
    padding: 16px 18px 8px 0;
    position: relative;
  }

  .megaMenu_subWrap:last-child .megaMenu_sub:last-child .megaMenu_subTitle.jsAccordion_active {
    border-bottom-color: #CCC;
  }

  .megaMenu_subTitle::after {
    display: none;
  }

  .megaMenu_subTitle.jsAccordion_active::after {
    position: absolute;
    background-image: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_close.svg");
  }
}
.megaMenu_subTitle_two {
  height: auto;
}

.megaMenu_subBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.megaMenu_subItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 51px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-bottom: 1px dashed #CCC;
}

@media only screen and (max-width: 640px) {
  .megaMenu_subItem {
    height: 48px;
    min-height: 48px;
    border-bottom: 0;
  }
}
/* NOTE: visited打ち消しのため要素指定 */
a.megaMenu_subItem_link {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  color: #333;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  text-decoration: none;
  width: 100%;
}

a.megaMenu_subItem_link {
  opacity: 1;
}

.megaMenu_subItem_link:hover,
.megaMenu_subTopLink:hover {
  text-decoration: underline;
  color: #117766;
}

.megaMenu_subItem_link::after,
.megaMenu_subTopLink::after {
  position: absolute;
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_arrow-right.svg") no-repeat center;
  background-size: contain;
  content: "";
  width: 12px;
  height: 12px;
  right: 10px;
  top: calc(50% - 12px / 2);
}

@media only screen and (max-width: 640px) {
  .megaMenu_subItem_link::after,
.megaMenu_subTopLink::after {
    width: 16px;
    height: 16px;
    top: calc(50% - 16px / 2);
    right: 0px;
  }
}
.megaMenu_subItem_link[target=_blank]::after {
  background-image: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_blank.svg");
}

.megaMenu_subItem_linkIcon {
  margin: auto;
  height: 42px;
  width: 42px;
}

.megaMenu_subItem_linkText {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 13px;
  line-height: 20px;
  padding: 0 32px 0 10px;
}

@media only screen and (max-width: 640px) {
  .megaMenu_subItem_linkText {
    font-size: 14px;
    line-height: 16px;
    padding: 16px 32px 16px 10px;
  }

  .megaMenu_subItem_linkIcon {
    margin: 0;
    height: auto;
  }
}
@media only screen and (max-width: 640px) {
  .megaMenu_subMessage {
    font-size: 12px;
    line-height: 20px;
    color: #707070;
    padding-left: 1.3em;
    text-indent: -1.3em;
    padding: 12px 18px 12px 34px;
    background-color: #fff;
  }

  .megaMenu_subMessage::before {
    color: #707070;
    content: "※ ";
  }

  a.megaMenu_subClsBtn {
    background-color: #00846D;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    text-decoration: none;
    padding: 16px;
    cursor: pointer;
    height: 48px;
    width: 100%;
    position: relative;
  }

  a.megaMenu_subClsBtn:hover {
    color: #fff;
  }

  .megaMenu_subClsBtn::after {
    position: absolute;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_close_white.svg") no-repeat center;
    content: "";
    width: 16px;
    height: 16px;
    right: 18px;
    top: calc(50% - 16px / 2);
    left: auto;
  }
}
/* 2カラム */
.megaMenu_subWrap-col2 {
  height: 355px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 493px;
  flex: 0 0 653.5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.megaMenu_subWrap-col2 .megaMenu_subBody {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.megaMenu_subWrap-col2 .megaMenu_subItem {
  -webkit-box-flex: 0;
  -ms-flex: 0;
  flex: 0;
  width: 306.5px;
}

@media only screen and (max-width: 640px) {
  .megaMenu_subWrap-col2 {
    height: auto;
  }

  .megaMenu_subWrap-col2 .megaMenu_subItem {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
  }
}
/* 1カラム2段 */
.megaMenu_subWrap-row > .megaMenu_sub {
  margin-left: 0;
  height: auto;
}

.megaMenu_subWrap-row > .megaMenu_sub:not(:first-child) {
  margin-top: 70px;
}

@media only screen and (max-width: 640px) {
  .megaMenu_subWrap-row > .megaMenu_sub:not(:first-child) {
    margin-top: 0;
  }
}
/* SP時メニュー下部 */
#header .megaMenu_item-sp {
  display: none;
}

@media only screen and (max-width: 640px) {
  #header .megaMenu_item-sp {
    display: block;
  }

  #header .megaMenu_spBottom {
    background-color: #F5F5F5;
  }

  .megaMenu_spBottom .note {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .megaMenu_spBottom ul.note li {
    font-size: 12px;
  }

  .megaMenu_spBottom .screenShareSupport img {
    width: 60px;
  }

  .megaMenu_spBottomNavItem {
    line-height: 1;
  }

  .megaMenu_item .megaMenu_spBottomNavItem + .megaMenu_spBottomNavItem {
    margin-top: 0px !important;
  }

  #header .megaMenu_spBottomNavItemLink,
#header .megaMenu_spBottomNavItemShare {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    color: #333333;
    text-decoration: none;
    position: relative;
    display: flex;
  }

  #header .megaMenu_spBottomNavItemLink {
    padding: 16px 18px 16px 28px;
  }

  #header .megaMenu_spBottomNavItemShare {
    padding: 23px 18px 24px 28px;
  }

  #header .megaMenu_spBottomNavItemLoginTime {
    padding: 10px 18px;
    font-size: 12px;
    line-height: 1.5;
    text-align: right;
    color: #707070;
    background-color: #F0F0F0;
  }

  #header .megaMenu_spBottomNavItemLink:hover,
#header .megaMenu_spBottomNavItemShare:hover {
    text-decoration: underline;
    color: #117766;
  }

  #header .screenShareSupport .megaMenu_spBottomNavItemLink {
    padding: 0;
  }

  .megaMenu_spBottomNavItemLink::after,
.megaMenu_spBottomNavItemShare::after {
    content: "";
    display: block;
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .megaMenu_spBottomNavItemLink::after {
    height: 16px;
    width: 16px;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg") no-repeat center;
  }

  .megaMenu_spBottomNavItemShare::after {
    height: 32px;
    width: 32px;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_screen-share.svg") no-repeat center;
  }

  .screenShareSupport .megaMenu_spBottomNavItemLink::before {
    background-image: none;
  }
}
/* 検索エリア
--------------------------------------------------------- */
/* ------ #searchArea  ----- */
#searchArea {
  display: none;
  z-index: 990;
}

#header .hRight .searchAreaWrap {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  background-color: #F0F0F0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 640px) {
  #header .hRight .searchAreaWrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.searchBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.searchButton {
  border: none;
  height: 45px;
  width: 45px;
  color: transparent;
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/btn_search.svg") no-repeat center;
}

.searchButton:hover {
  opacity: 0.7;
}

input.searchTextBox {
  border: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px 20px;
  width: 100%;
}

/*
.headerPlatinum input.searchTextBox {
  background-color: #fff;
  font-size: 16px;
}
*/
@media only screen and (max-width: 640px) {
  .searchAreaWrapSp .searchBox {
    display: flex;
    padding: 12px;
    background-color: #F0F0F0;
  }

  .megaMenu input.searchTextBox {
    font-size: 16px;
  }
}
/* SMBCライン
--------------------------------------------------------- */
/* ------ smbcLine  ----- */
#smbcLine {
  line-height: 1.8;
  position: relative;
  z-index: 901;
}

#smbcLine *,
#smbcLine *::before,
#smbcLine *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*
#smbcLine.smbcLinePlatinum .logoSmbcGroup{
  margin-top: 5px;
}*/
#smbcLine_pc {
  background-color: #1a4832;
  border-bottom: 3px solid #b6ca3f;
  min-width: 1000px;
}

#smbcLine_pc .smbcGroupWrap {
  width: 1000px;
  height: 36px;
  margin: 0 auto;
  padding: 8px 0;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#smbcLine_pc .logoSmbc {
  width: 72px;
  height: 21px;
}

#smbcLine_pc .logoSmbc img {
  vertical-align: baseline;
  width: 100%;
  height: 100%;
}

#smbcLine_pc .logoSmbcGroup {
  width: 48px;
  height: 7px;
}

#smbcLine_pc .logoSmbcGroup img {
  vertical-align: top;
  width: 100%;
  height: 100%;
}

#smbcLine_sp {
  display: none;
}

@media print {
  #smbcLine_pc {
    display: none;
  }

  #smbcLine_sp {
    display: block;
  }

  #smbcLine_sp div {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  #smbcLine {
    position: relative;
    top: 0;
    left: 0;
  }

  #smbcLine_pc {
    display: none;
  }

  #smbcLine_sp {
    display: block;
    background-color: #1a4832;
    border-bottom: 3px solid #b6ca3f;
  }

  #smbcLine_sp .smbcGroupWrap {
    width: 100%;
    height: 36px;
    margin: 0 auto;
    padding: 8px 0;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  #smbcLine_sp .logoSmbc {
    width: 78px;
    height: 23px;
    margin-left: 20px;
  }

  #smbcLine_sp .logoSmbc img {
    vertical-align: baseline;
  }

  #smbcLine_sp .logoSmbcGroup {
    width: 56px;
    height: 8px;
    margin-right: 20px;
  }

  #smbcLine_sp .logoSmbcGroup img {
    vertical-align: top;
  }

  #smbcLine_sp img {
    width: 100%;
  }
}
/* オーバーレイ
--------------------------------------------------------- */
#header_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0s ease 1s;
  transition: opacity 0.4s, visibility 0s ease 1s;
  z-index: 900;
}

#header_overlay.isShow {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  /* ios */
}

.subMenu_modal_content a:visited, .subMenu_modal_content a:link {
  color: #333333;
}

/************************* add **************************/
/* PC */
@media only screen and (min-width: 641px) {
  #header.vpass {
    width: 100vw;
  }

  div#header.vpass::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 40px;
    bottom: 0;
    background-color: #F2F2F2;
    z-index: 0;
  }

  #header.vpass .headerInner .hLeft {
    display: block;
    z-index: 1;
  }

  #header.vpass .hLeft p.logo_out, #header.vpass .hLeft h1.logo_out {
    background-size: contain;
    background-repeat: no-repeat;
    width: auto;
    height: 24px;
    margin: 10px 0 14px;
  }

  #header.vpass .hLeft p.logo_in, #header.vpass .hLeft h1.logo_in {
    background-size: contain;
    background-repeat: no-repeat;
    width: auto;
    height: 24px;
    margin: 10px 0 14px;
  }

  #header.vpass .headerInner .hLeft .membersServic_buttonPC {
    position: relative;
    width: 153px;
    height: 22px;
    border-radius: 20px;
    padding: 3px 12px 3px 10px;
    color: #ffffff;
    cursor: pointer;
    font-size: 10px;
    text-align: left;
    border: none;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: bold;
  }

  #header.vpass .headerInner .hLeft .membersServic_buttonPC.membersServic_buttonPC-nav {
    background-color: #162688;
  }

  #header.vpass .headerInner .hLeft .membersServic_buttonPC.membersServic_buttonPC-vpass {
    background-color: #00846D;
  }

  #header.vpass .headerInner .hLeft .membersServic_buttonPC.membersServic_buttonPC-vpass:hover {
    background-color: #076B59;
  }

  button.membersServic_buttonPC::after {
    content: "";
    display: block;
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 10px;
    height: 10px;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_white_arrow.svg") no-repeat center;
  }

  #header.vpass .headerInner .hLeft .membersService.opened .membersServic_buttonPC {
    background-color: #ffffff;
    position: relative;
    border: none;
    font-weight: bold;
  }

  #header.vpass .headerInner .hLeft .membersService.opened .membersServic_buttonPC:hover::after {
    opacity: 0.5;
  }

  #header.vpass .headerInner .hLeft .membersService.opened .membersServic_buttonPC.membersServic_buttonPC-nav {
    color: #162688;
  }

  #header.vpass .headerInner .hLeft .membersService.opened .membersServic_buttonPC.membersServic_buttonPC-nav:hover {
    text-decoration: underline;
    color: #16268888;
  }

  #header.vpass .headerInner .hLeft .membersService.opened .membersServic_buttonPC.membersServic_buttonPC-vpass {
    color: #00846D;
  }

  #header.vpass .headerInner .hLeft .membersService.opened .membersServic_buttonPC.membersServic_buttonPC-vpass:hover {
    color: #00846D88;
  }

  #header.vpass .headerInner .hLeft .membersService.opened .membersServic_buttonPC.membersServic_buttonPC-vpass::after {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_green_arrow.svg") no-repeat center;
  }

  #header.vpass ul li.megaMenu_item {
    margin-top: 7px;
    height: 15px;
  }

  .megaMenu_item-isMenuOpen .megaMenu_itemTitlebtmline {
    margin-top: 5px;
  }

  .membersService {
    position: relative;
  }

  .membersService_menuPC {
    visibility: hidden;
    opacity: 0;
    width: 336px;
    height: 247px;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: #ffffff;
    padding: 24px;
    box-shadow: 0px 1px 5px #ababab;
    transition: all 0.2s ease-in 0s;
  }

  .membersService_menuPC::before {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    transform: rotateZ(45deg);
    top: -5px;
    left: 90px;
    background-color: #ffffff;
    box-shadow: -2px -2px 2px #dadada;
  }

  .membersService.opened .membersService_menuPC {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .membersService_title {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000000;
    line-height: 1em;
  }

  .membersService_disc {
    font-size: 12px;
    text-align: center;
    color: #616161;
    margin-top: 0;
    margin-bottom: 17px;
    line-height: 1em;
  }

  a.membersService_vpassLogin {
    position: relative;
    width: 288px;
    height: 50px;
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    color: #333333;
    font-weight: bold;
    border: 2px solid #00846D;
    background-color: #EEF6F5;
    border-radius: 6px;
    margin-bottom: 8px;
    line-height: 1.5em;
    text-decoration: none;
  }

  .a.membersService_vpassLogin:hover {
    opacity: 0.5;
  }

  .membersService_navLogin {
    position: relative;
    width: 288px;
    height: 50px;
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    color: #162688;
    font-weight: bold;
    border: 2px solid #162688;
    background-color: #F9F9FA;
    border-radius: 6px;
    margin-bottom: 16px;
    line-height: 1.5em;
    text-decoration: none;
  }

  .membersService_vpassLogin.open {
    border: 2px solid #dddddd;
    background-color: #ffffff;
  }

  .membersService_navLogin.open {
    border: 2px solid #dddddd;
    background-color: #F9F9FA;
    color: #333333;
    opacity: 1;
  }

  .membersService_navLogin.open:hover {
    border-color: #162688;
    color: #162688;
    background-color: #FFFFFF;
    opacity: 1;
  }

  .membersService_navLogin.open:hover::after {
    background-image: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_darkgray_arrow_vpass_hover.svg");
  }

  .membersService_vpassLogin.open::after,
.membersService_navLogin.open::after {
    content: "";
    display: block;
    position: absolute;
    right: 24px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 15px;
    height: 15px;
  }

  .membersService_navLogin.open::after {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_darkgray_arrow.svg") no-repeat center;
  }

  .membersService_vpassLogin.viewing {
    pointer-events: none;
    cursor: default;
    color: #00846D;
  }

  .membersService_navLogin.viewing:after,
.membersService_vpassLogin.viewing:after {
    content: "閲覧中";
    display: block;
    position: absolute;
    right: 22px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 23px;
    color: #333333;
    font-weight: normal;
    font-size: 12px;
    line-height: 26px;
  }

  .membersService_missing {
    position: relative;
    font-size: 12px;
    color: #333333 !important;
    padding-left: 30px;
    text-decoration: none;
  }

  .membersService_missing:hover {
    color: #117766;
    text-decoration: underline;
    opacity: 0.5;
  }

  .membersService_missing::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ic_support.svg) no-repeat center;
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }

  .membersServiceSP {
    display: none;
  }

  .megaMenu_subWrap-single .megaMenu_subBody {
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  .megaMenu_subWrap-single .megaMenu_subItem {
    width: 306px;
  }

  .megaMenu_itemBody {
    background-color: #F2F2F2;
  }

  #smbcLine_pc .logoSmbcGroup {
    width: 78px;
    height: 11px;
  }

  #header.vpass .hLeft p.logo_out, #header.vpass .hLeft h1.logo_out {
    background-size: contain;
    background-repeat: no-repeat;
    width: auto;
    height: 24px;
    margin: 10px 0 14px;
  }

  #header.vpass .hLeft p.logo_in, #header.vpass .hLeft h1.logo_in {
    background-size: contain;
    background-repeat: no-repeat;
    width: auto;
    height: 24px;
    margin: 10px 0 14px;
  }

  .IDline {
    display: none;
  }

  body {
    overflow-x: visible;
  }
}
/* SP */
@media only screen and (max-width: 640px) {
  .megaMenu {
    top: 77px;
  }

  .megaMenu.hamburgerMenuSp {
    display: block;
    left: 100vw;
    right: auto;
    transition: left 0.5s;
    z-index: 991;
    top: 98px;
    padding: 0px;
    margin: 0px;
  }

  .megaMenu.hamburgerMenuSp.isOpenMegaMenu {
    left: 0;
  }

  .membersService {
    display: none;
  }

  .membersServiceSP {
    display: block;
    padding: 33px 16px 16px 16px;
    background-color: #F5F5F5;
  }

  .membersServiceSP_textArea {
    display: flex;
    margin-bottom: 12px;
    color: #333333;
    align-items: center;
    justify-content: space-between;
  }

  .membersServiceSP_title {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
  }

  .membersServiceSP_disp {
    font-size: 10px;
    margin: 0;
  }

  .membersServiceSP_linkArea {
    display: flex;
    margin-bottom: 13px;
  }

  .membersServiceSP_vpassLogin,
.membersServiceSP_navLogin {
    width: 50%;
    height: 75px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding-bottom: 10px;
    position: relative;
    text-decoration: none;
  }

  .membersServiceSP_vpassLogin {
    border-radius: 6px 0 0 6px;
  }

  .membersServiceSP_navLogin {
    border-radius: 0 6px 6px 0;
  }

  .membersServiceSP_vpassLogin.open,
.membersServiceSP_navLogin.open {
    border: 1px solid #dddddd;
    color: #333333;
  }

  .membersServiceSP_vpassLogin.viewing {
    background-color: #EEF6F5;
    color: #00846D;
    border: 2px solid #00846D;
    pointer-events: none;
  }

  .membersServiceSP_navLogin.viewing {
    background-color: #ffffff;
    color: #162688;
    border: 2px solid #162688;
  }

  .membersServiceSP_vpassLogin.open::after,
.membersServiceSP_navLogin.open::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    top: 40px;
    left: 0;
    right: 0;
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ic_darkgray_arrow.svg) no-repeat center;
  }

  .membersServiceSP_vpassLogin.viewing::after,
.membersServiceSP_navLogin.viewing::after {
    content: "閲覧中";
    display: block;
    position: absolute;
    height: 20px;
    margin: 0 auto;
    top: 40px;
    left: 0;
    right: 0;
    text-align: center;
    color: #333333;
    font-size: 10px;
    font-weight: normal;
  }

  .membersServiceSP_missing {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 12px;
    color: #333333 !important;
    position: relative;
    text-decoration: none;
  }

  .membersServiceSP_missing::before {
    content: "";
    display: block;
    position: absolute;
    right: 13.5em;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 20px;
    height: 20px;
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ic_support.svg) no-repeat center;
  }

  .megaMenubtn {
    z-index: 0;
  }

  .headerInner {
    z-index: 2;
    background-color: #ffffff;
  }

  #smbcLine {
    z-index: 1000;
  }

  #header.vpass .hLeft {
    padding-left: 16px;
    margin: 0;
    z-index: 3;
    background-color: #ffffff;
    width: 150px;
  }

  #header.vpass .hRight {
    z-index: 2;
    background-color: #ffffff;
    width: 150px;
    margin-right: 0;
  }

  .hRight_subMenu {
    width: 100%;
    height: 100%;
    align-items: center;
    background-color: #ffffff;
    z-index: 2;
  }

  #header.header-fixed .hLeft,
#header.header-fixed .hRight_subMenu {
    z-index: 0;
  }

  .IDline {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    font-size: 8px;
    height: 17px;
    color: #ffffff;
    padding: 1px 16px;
    z-index: 2;
    line-height: 14px;
    font-weight: bold;
  }

  .IDline-nav {
    background-color: #162688;
  }

  .IDline-vpass {
    background-color: #00846D;
  }

  .IDline_text {
    font-size: 10px;
    line-height: 1.5;
  }

  .IDline.IDline-openMenuFixed {
    display: none;
  }

  .megaMenu_spBottomNavItemLink,
.megaMenu_spBottomNavItemShare {
    padding: 16px 18px 16px 16px;
  }

  .searchAreaWrapSp form {
    margin-bottom: 0;
  }

  .megaMenu_itemTitleimg_st, .megaMenu_itemTitleimg_fill,
.megaMenu_itemTitle {
    height: 58px;
  }

  #smbcLine_sp {
    border-bottom: 2.67px solid #b6ca3f;
  }

  .megaMenu_itemBody {
    top: 58px;
  }

  #header.vpass > .headerInner {
    padding-bottom: 0;
    height: 60px;
  }

  #header.vpass.header-fixed {
    height: 60px;
  }

  body {
    height: auto;
  }

  html {
    overflow: unset;
  }

  .hamburgerMenuSp.hamburgerMenuSp-fixed {
    top: 60px;
  }

  .header-fixed .megaMenu {
    top: 17px;
  }

  .header-fixed .IDline {
    top: 0;
  }

  .header-fixed.isSpMenuOpen .megaMenu {
    top: 17px;
  }

  .header-fixed.isSpMenuOpen .IDline {
    display: none;
  }

  .hRight .searchAreaWrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .megaMenu_item-sp {
    display: block;
  }

  .megaMenu_spBottom {
    background-color: #F5F5F5;
    width: 100%;
    padding-bottom: 16px;
  }

  .megaMenu_spBottomNavItem .megaMenu_spBottomNavItemLink,
.megaMenu_spBottomNavItem .megaMenu_spBottomNavItemShare {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    color: #333333;
    text-decoration: none;
    position: relative;
    display: flex;
  }

  .megaMenu_spBottomNavItemLoginTime {
    padding: 10px 18px;
    font-size: 12px;
    line-height: 1.5;
    text-align: right;
    color: #707070;
    background-color: #F0F0F0;
  }

  .megaMenu_spBottomNavItemLink:hover,
.megaMenu_spBottomNavItemShare:hover {
    text-decoration: underline;
    color: #117766;
  }

  .screenShareSupport .megaMenu_spBottomNavItemLink {
    padding: 0;
  }

  .megaMenubtn.megaMenubtn-openMenuFixed {
    display: none;
  }

  #header.vpass {
    height: auto;
    padding-bottom: 76px;
    z-index: 992;
  }

  #header.isSpMenuOpen {
    padding-bottom: 0;
    margin-bottom: 76px;
  }

  body, html {
    overflow-x: hidden;
    position: relative;
  }

  #header.vpass .hLeft p.logo_out, #header.vpass .hLeft h1.logo_out {
    margin-top: 0;
  }

  #header.vpass .hLeft p.logo_in, #header.vpass .hLeft h1.logo_in {
    margin-top: 0;
  }

  .searchButton,
.megaMenu .searchAreaWrapSp input.searchTextBox {
    border-radius: 0;
  }
}
@media only screen and (max-width: 1000px) {
  body, html {
    position: relative;
  }
}
/**********************
* footer.css
**********************/
/* =========================================================
 会員静的用
========================================================= */
footer {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", Osaka, sans-serif;
  background-color: #f2f2f2;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  min-width: 1000px;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  #footer {
    min-width: 0px;
  }
}
#footer .footAreaTopInner,
#footer .footNavArea,
#footer .footAreaBottom ul {
  max-width: 1000px;
  min-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 640px) {
  #footer .footAreaTopInner,
#footer .footNavArea,
#footer .footAreaBottom ul {
    max-width: 100%;
    min-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.footNavArea {
  padding-bottom: 20px;
}

@media print {
  footer {
    min-width: 0px;
  }

  .footNavWrapArea {
    display: none;
  }
}
/* ----- ページトップボタン ----- */
.pgTopLinkWrap {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 980;
  margin-top: 0;
}

.pgTopLinkWrap img {
  width: 66px;
}

.pgTopLink02:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 640px) {
  .pgTopLinkWrap {
    right: 0px;
    bottom: 0px;
    z-index: 899;
  }

  .pgTopLink02:hover {
    opacity: 1;
  }
}
/* footAreaTop
--------------------------------------------------------- */
.footAreaTop {
  font-size: 13px;
  padding: 14px 15px;
  background-color: #dddddd;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .footAreaTop {
    padding: 30px 15px 15px;
  }
}
.footAreaTop .footAreaTopInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 640px) {
  .footAreaTop .footAreaTopInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.footAreaTop .footAreaTop_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 640px) {
  .footAreaTop .footAreaTop_items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -16px;
  }
}
.footAreaTop .footAreaTop_items .footAreaTop_item {
  padding: 0 24px 0;
  margin: 0;
  z-index: 0;
  background: none;
  line-height: 1;
}

@media only screen and (max-width: 640px) {
  .footAreaTop .footAreaTop_items .footAreaTop_item {
    padding: 0;
    margin-right: 15px;
    margin-bottom: 16px;
    width: 45%;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    line-height: 1.8;
  }
}
.footAreaTop .footAreaTop_items .footAreaTop_item + .footAreaTop_item {
  border-left: 1px solid #666666;
}

@media only screen and (max-width: 640px) {
  .footAreaTop .footAreaTop_items .footAreaTop_item + .footAreaTop_item {
    border-left: none;
  }
}
.footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink {
  position: relative;
  display: block;
  padding: 0 0 0 17px;
  color: #000;
  text-align: left;
  text-indent: -18px;
  text-decoration: underline;
}

.footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink::before {
  color: #000;
  content: "";
  display: inline-block;
  height: 9px;
  width: 9px;
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg) no-repeat;
  background-size: cover;
  font-size: 23px;
  line-height: 1;
  left: 0;
  top: 0;
  bottom: 0;
  margin-right: 8px;
}

.footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink.winPopup::before {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_popup.svg") no-repeat;
  background-size: cover;
  height: 10px;
  width: 10px;
}

.footAreaTop .verisign {
  width: 100px;
  height: 72px;
}

@media only screen and (max-width: 640px) {
  .footAreaTop .verisign {
    margin-top: 10px;
  }
}
/* footAreaBottom
--------------------------------------------------------- */
.footNavWrapArea .footNavArea {
  width: 100%;
  max-width: 100%;
  min-width: auto;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}

@media only screen and (max-width: 640px) {
  .footNavWrapArea .footNavArea {
    background-color: #ffffff;
  }
}
.footNavWrapArea .footNavArea .footNavAreaInner {
  font-size: 13px;
  width: 1000px;
  margin: 0 auto;
  padding: 40px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 640px) {
  .footNavWrapArea .footNavArea .footNavAreaInner {
    width: 100%;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footNavWrapArea .footNavArea .footNavAreaInner .nav_contents {
  width: 168px;
}

@media only screen and (max-width: 640px) {
  .footNavWrapArea .footNavArea .footNavAreaInner .nav_contents {
    width: 100%;
    font-size: 16px;
  }
}
.footNavWrapArea .footNavArea .footNavAreaInner .nav_contents .nav_category_title {
  font-size: 16px;
  margin: 0 0 24px 0;
}

@media only screen and (max-width: 640px) {
  .footNavWrapArea .footNavArea .footNavAreaInner .nav_contents .nav_category_title {
    margin: 0;
    border-bottom: 1px solid #cccccc;
  }
}
.nav_category_title_sp {
  display: none;
}

@media only screen and (max-width: 640px) {
  .nav_category_title_sp {
    display: block;
  }

  .nav_category_title_sp .nav_category_titleLink {
    text-decoration: none;
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 56px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
    background-color: #CCC;
    padding: 15px 48px 17px 30px;
    position: relative;
  }

  .nav_category_title_sp .nav_category_titleLink::after {
    position: absolute;
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg) no-repeat center;
    content: "";
    width: 12px;
    height: 12px;
    right: 20px;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
  }

  .nav_category_title .nav_category_title_subText {
    color: #666666;
    font-size: 12px;
    font-weight: normal;
    margin-top: 5px;
    line-height: 1.3;
  }

  .nav_category_title.jsAccordion_active .nav_category_title_subText {
    color: #fff;
  }
}
.nav_category_title .nav_category_titleLink {
  display: block;
  color: #00846D;
  font-weight: bold;
  line-height: 20px;
  position: relative;
  text-decoration: none;
}

@media only screen and (max-width: 640px) {
  .nav_category_title.jsAccordion_active {
    background-color: #1A4832;
  }

  .nav_category_title .nav_category_titleLink {
    color: #333;
    text-decoration: none;
    pointer-events: none;
    font-size: 18px;
    line-height: 1.5;
    padding: 15px 95px 15px 20px;
  }

  .nav_category_title.jsAccordion_active .nav_category_titleLink {
    color: #fff;
  }
}
.nav_category_title .nav_category_titleLink::before {
  color: #000;
  content: "";
  display: block;
  height: 16px;
  width: 16px;
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic-arrow-right.svg") no-repeat;
  background-size: cover;
  line-height: 1;
  position: absolute;
  left: 152px;
  top: calc(50% - 16px / 2);
}

@media only screen and (max-width: 640px) {
  .nav_category_title .nav_category_titleLink::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_open.svg") no-repeat center;
    content: "";
    width: 16px;
    height: 16px;
    right: 20px;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
  }

  .nav_category_title.jsAccordion_active .nav_category_titleLink::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_close_wh.svg") no-repeat center;
  }
}
@media only screen and (max-width: 640px) {
  .nav_contentBody {
    display: none;
  }
}
.nav_content + .nav_content {
  margin-top: 25px;
}

@media only screen and (max-width: 640px) {
  .nav_content {
    background-color: #F0F0F0;
  }

  .nav_content + .nav_content {
    margin-top: 0;
  }
}
@media only screen and (max-width: 640px) {
  .nav_contentInner {
    padding-left: 30px;
    margin-left: 0;
  }
}
.nav_content_title {
  font-size: 13px;
  font-weight: bold;
  color: #333333;
  line-height: 16px;
  margin: 0 0 16px 0;
}

@media only screen and (max-width: 640px) {
  .nav_content_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    border-bottom: 1px dashed #CCC;
    min-height: 56px;
    font-size: 16px;
    padding: 15px 46px 14px 0;
    position: relative;
    margin: 0;
    color: #000;
  }

  .nav_content:last-child .nav_content_title {
    border-bottom-color: transparent;
  }

  .nav_content:last-child .nav_content_title.jsAccordion_active {
    border-bottom-color: #CCC;
  }

  .nav_content_title::after {
    position: absolute;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_open.svg") no-repeat center;
    content: "";
    width: 16px;
    height: 16px;
    right: 20px;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
  }

  .nav_content_title.jsAccordion_active::after {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_close.svg") no-repeat center;
  }
}
.nav_content_item {
  line-height: 16px;
}

@media only screen and (max-width: 640px) {
  .nav_content_items {
    display: none;
  }

  .nav_content_item {
    min-height: 56px;
    border-bottom: 1px dashed #CCC;
  }
}
.nav_content_items {
  margin-bottom: 24px;
  width: 144px;
}

.nav_content_item .nav_content_itemLink {
  display: block;
  color: #333333;
  text-decoration: none;
  position: relative;
  margin-bottom: 16px;
}

.nav_content_item .nav_content_item_blank_Link {
  display: block;
  color: #333333;
  text-decoration: none;
  position: relative;
  margin-bottom: 16px;
}

.nav_content_item .nav_content_itemLink::before {
  color: #000;
  content: "";
  display: block;
  height: 16px;
  width: 16px;
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic-arrow-right.svg") no-repeat;
  background-size: cover;
  line-height: 16px;
  position: absolute;
  right: -24px;
  top: calc(50% - 16px / 2);
}

.nav_content_item .nav_content_item_blank_Link::before {
  color: #000;
  content: "";
  display: block;
  height: 16px;
  width: 16px;
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic-blank.svg") no-repeat;
  background-size: cover;
  line-height: 1;
  position: absolute;
  left: 152px;
  top: calc(50% - 16px / 2);
}

@media only screen and (max-width: 640px) {
  .nav_content_item .nav_content_itemLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 16px;
    padding: 15px 50px 17px 8px;
    color: #333;
  }

  .nav_content_item .nav_content_item_blank_Link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 16px;
    padding: 15px 50px 17px 8px;
    color: #333;
  }

  .nav_content:last-child .nav_content_item:last-child {
    border-bottom: transparent;
  }

  .nav_content_item .nav_content_itemLink::before {
    display: none;
  }

  .nav_content_item .nav_content_item_blank_Link::before {
    display: none;
  }

  .nav_content_item .nav_content_itemLink::after {
    position: absolute;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic-arrow-right.svg") no-repeat center;
    content: "";
    width: 16px;
    height: 16px;
    right: 20px;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
  }

  .nav_content_item .nav_content_item_blank_Link::after {
    position: absolute;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic-blank.svg") no-repeat center;
    content: "";
    width: 16px;
    height: 16px;
    right: 20px;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
  }
}
.nav_content_item + .nav_content_item {
  margin: 10px 0 0 0;
}

@media only screen and (max-width: 640px) {
  .nav_content_item + .nav_content_item {
    margin: 0;
  }
}
.footBottomArea {
  padding-bottom: 30px;
  width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 640px) {
  .footBottomArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 20px 15px 30px;
    background: #ffffff;
  }
}
@media only screen and (max-width: 640px) {
  .footBottomArea .footBreadCrumbArea {
    width: 100%;
  }
}
.footBottomArea .footBreadCrumbArea .breadCrumb_itemBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 640px) {
  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink::before {
    content: "";
    display: block;
    height: 12px;
    width: 12px;
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg) no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item {
  margin-left: 26px;
}

.footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item:first-child {
  margin-left: 0px;
}

.footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item.screenShareSupport {
  margin-left: 0px;
}

@media only screen and (max-width: 640px) {
  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item,
.footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item:first-child {
    margin-left: 0px;
  }
}
.footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink {
  display: block;
  color: #000;
  text-decoration: none;
  position: relative;
  padding-left: 15px;
}

@media only screen and (min-width: 640px) {
  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink {
    font-size: 16px;
  }
}
@media only screen and (max-width: 640px) {
  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink {
    display: inline;
    font-size: 16px;
    color: #117766;
    text-decoration: underline;
  }

  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item + .breadCrumb_item {
    margin-top: 10px;
  }
}
.footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink::before {
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg") no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item.screenShareSupport .breadCrumb_itemLink::before {
  background-image: none;
}

@media only screen and (max-width: 640px) {
  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item.screenShareSupport .breadCrumb_itemLink::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg") no-repeat;
  }
}
.footBottomArea .footSnsArea {
  width: 224px;
}

@media only screen and (max-width: 640px) {
  .footBottomArea .footSnsArea {
    width: 100%;
    margin-top: 30px;
  }
}
.footBottomArea .footSnsArea .sns_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 640px) {
  .footBottomArea .footSnsArea .sns_items {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footBottomArea .footSnsArea .sns_item + .sns_item {
    margin-left: 25px;
  }
}
.footBottomArea li.screenShareSupport {
  position: relative;
  right: 712px;
  bottom: 100px;
}

.footBottomArea .screenShareSupport img {
  display: block;
  width: 60px;
}

.footBottomArea .screenShareSupport span {
  display: none;
}

@media only screen and (max-width: 640px) {
  .footBottomArea .screenShareSupport img {
    display: none;
  }

  .footBottomArea .screenShareSupport span {
    display: inline;
  }

  .footBottomArea li.screenShareSupport {
    position: static;
  }
}
.sns_item_twitter img {
  width: 22px;
  height: 22px;
}

.sns_item_instagram img {
  width: 24px;
  height: 24px;
}

.sns_item_facebook img {
  width: 24px;
  height: 24px;
}

.sns_item_tiktok img {
  width: 24px;
  height: 24px;
}

.sns_item_youtube img {
  width: 24px;
  height: 24px;
}

.sns_item_line img {
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 640px) {
  .sns_item_twitter img {
    width: 30px;
    height: 30px;
  }

  .sns_item_instagram img {
    width: 32px;
    height: 32px;
  }

  .sns_item_facebook img {
    width: 32px;
    height: 32px;
  }

  .sns_item_tiktok img {
    width: 32px;
    height: 32px;
  }

  .sns_item_youtube img {
    width: 32px;
    height: 32px;
  }

  .sns_item_line img {
    width: 32px;
    height: 32px;
  }
}
/* コピーライトエリア
--------------------------------------------------------- */
.footArea_copyright {
  background-color: #1a4832;
  padding: 10px 15px;
  text-align: center;
  font-size: 12px;
}

@media only screen and (max-width: 640px) {
  .footArea_copyright {
    font-size: 10px;
  }
}
#copyArea {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 0;
}

#copyArea small {
  font-size: 100%;
}

/* ポップアップ
--------------------------------------------------------- */
/********************** add ***********************/
/* PC */
@media only screen and (min-width: 641px) {
  #footer a:hover {
    opacity: 0.5;
  }

  .footAreaTop_itemLink {
    text-decoration: none;
  }

  .footNavAreaTitle {
    font-size: 18px;
    font-weight: bold;
    padding: 30px 0 25px;
    border-bottom: 1px solid #DDDDDD;
    margin-bottom: 0;
  }

  .footAreaTop {
    padding: 30px 15px 15px;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item {
    margin-bottom: 15px;
    font-size: 14px;
    padding: 0 0 0 16px;
    position: relative;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 20px;
    background-color: #666666;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 22px;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item:last-child::after,
.footAreaTop .footAreaTop_items .footAreaTop_item:nth-child(5)::after {
    display: none;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink {
    text-decoration: none;
    padding: 0 24px 0 0;
    font-size: 13px;
    margin-right: 18px;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink[target=_blank],
.footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink.winPopup {
    margin-right: 50px;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink[target=_blank]::after,
.footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink.winPopup::after {
    background-size: cover;
    color: #000;
    content: "";
    display: inline-block;
    height: 9px;
    width: 9px;
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg) no-repeat;
    background-size: cover;
    font-size: 23px;
    line-height: 1;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    position: absolute;
    right: -5px;
    top: 0;
    bottom: 0;
    left: auto;
    height: 16px;
    width: 16px;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink[target=_blank]::after {
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ic-blank.svg) no-repeat;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink.winPopup::after {
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ic-popup.svg) no-repeat;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink::before {
    display: none;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item + .footAreaTop_item {
    border: none;
  }

  .footAreaTop .footAreaTop_items {
    flex-wrap: wrap;
  }

  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink {
    font-size: 14px;
    padding-left: 0;
    padding-left: 20px;
  }

  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink:hover {
    opacity: 0.5;
  }

  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink::before {
    display: none;
  }

  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink::after {
    content: "";
    display: block;
    height: 12px;
    width: 12px;
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg) no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item.screenShareSupport .breadCrumb_itemLink::after {
    display: none;
  }

  .footArea_copyright {
    color: #ffffff;
  }

  .footBottomArea li.screenShareSupport {
    right: 721px;
  }

  .nav_category_title .nav_category_titleLink::before {
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg) no-repeat;
  }

  .nav_content_item .nav_content_itemLink::before {
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ic_arrow-right.svg) no-repeat;
  }

  .nav_content_item .nav_content_item_blank_Link::before {
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ic_blank.svg) no-repeat;
  }
}
/* SP */
@media only screen and (max-width: 640px) {
  .footAreaTop .footAreaTop_items .footAreaTop_item {
    width: auto;
    flex: none;
    position: relative;
    margin-right: 48px;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 16px;
    background-color: #666666;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: -24px;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item:last-child:after {
    display: none;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink {
    text-indent: 0;
    padding: 0;
    text-decoration: none;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink[target=_blank],
.footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink.winPopup {
    padding: 0 24px 0 0;
  }

  .footAreaTop {
    padding: 30px 15px 30px;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink::before {
    display: none;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink::after {
    color: #000;
    content: "";
    display: block;
    position: absolute;
    height: 16px;
    width: 16px;
    background-size: cover;
    font-size: 23px;
    line-height: 1;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink[target=_blank]::after {
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ic-blank.svg) no-repeat;
    background-size: cover;
  }

  .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink.winPopup::after {
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ic-popup.svg) no-repeat;
    background-size: cover;
  }

  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink {
    text-decoration: none;
    padding-right: 0;
    padding-left: 20px;
    font-size: 14px;
  }

  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink::before {
    display: none;
  }

  .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink::after {
    content: "";
    display: block;
    height: 12px;
    width: 12px;
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg) no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .footArea_copyright {
    color: #ffffff;
  }
}
/**********************
* カテゴリー
**********************/
.cmn_h2 {
  border-left: 4px solid #004a3c;
  background-color: #f7f7f7;
  font-weight: bold;
  font-size: 129%;
  margin-bottom: 20px;
}
.cmn_h2 span {
  display: block;
  border-top: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.cmn_h2 span span {
  display: block;
  padding: 11px 0 10px 20px;
  border: none;
}

/*trouble_section*/
.trouble_section_cover {
  margin-bottom: 30px;
  display: flex;
}
.trouble_section_cover img {
  vertical-align: middle;
}

.trouble_section ul {
  width: 30%;
  border: 2px solid #ddd;
  display: inline-block;
  box-sizing: border-box;
  width: 316px;
  height: auto;
}
.trouble_section ul li {
  padding: 0 20px;
  line-height: 3;
  color: #004a3c;
}
.trouble_section ul li:first-child {
  font-weight: bold;
  font-size: 16px;
  padding: 10px 20px 0;
  line-height: 1.2;
}
.trouble_section ul li:last-child {
  margin-bottom: 20px !important;
}
.trouble_section ul li a {
  color: #117766;
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_arrow_blue_right_s.png") no-repeat left 3px #fff;
  padding: 0 0 0 16px;
}
.trouble_section ul li a:visited {
  color: #117766;
}
.trouble_section ul li a:hover {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_arrow_blue_right_s.png") no-repeat left 3px #fff;
  color: #117766;
  opacity: 0.5;
}
.trouble_section div ul:first-child {
  margin-right: 21px;
}
.trouble_section div ul + ul + ul {
  margin-left: 21px;
}

.top_sp_menu {
  /* .cate_nav ul {
    display: none;
  } */
  /*20150527 accordion menu*/
}
@media screen and (max-width: 767px) {
  .top_sp_menu #r_nav .cate_nav {
    width: 95%;
    margin: 0 auto;
  }
}
.top_sp_menu #r_nav ul.cate_nav li div {
  margin: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_sp_menu #r_nav ul.cate_nav li div {
    padding: 15px 10px 5px 50px !important;
    height: 30px !important;
    background-size: 30px !important;
  }
}
.top_sp_menu #r_nav ul.cate_nav li:not(:first-child) div:after {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_open_green.png) no-repeat;
  position: absolute;
  background-size: 90%;
  right: 12px;
  top: 40%;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
}
.top_sp_menu #r_nav ul.cate_nav li:last-child div.open {
  border-bottom: none;
}
.top_sp_menu #r_nav ul.cate_nav li div {
  box-sizing: content-box;
}
.top_sp_menu #r_nav ul.cate_nav li:first-child div {
  padding-left: 57px;
}
.top_sp_menu #r_nav ul.cate_nav li:first-child a:hover {
  text-decoration: none;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(1) div {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_top.png) no-repeat 15px;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(2) div {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_trouble.png) no-repeat 15px;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(3) div {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_customer.png) no-repeat 15px;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(4) div {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_payment.png) no-repeat 15px;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(5) div {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_payment.png) no-repeat 15px;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(6) div {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_trouble.png) no-repeat 15px;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(7) div {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_nyukai.png) no-repeat 15px;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(8) div {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_addcard.png) no-repeat 15px;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(9) div {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_card.png) no-repeat 15px;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(10) div {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_service.png) no-repeat 15px;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(11) div {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_vpass.png) no-repeat 15px;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(12) div {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_point.png) no-repeat 15px;
}
.top_sp_menu #r_nav ul.cate_nav li:last-child div {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_point.png) no-repeat 15px;
}
.top_sp_menu #r_nav ul.cate_nav li:first-child div:after {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_arrow_green_right.png) no-repeat;
  position: absolute;
  right: 14px;
  top: 40%;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
}
.top_sp_menu #r_nav ul.cate_nav li ul li a.active {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_arrow_white_right.png") no-repeat 10px 50% #004a3c;
  color: #FFFFFF;
  text-decoration: none;
}
.top_sp_menu #r_nav ul li {
  background: #fff !important;
}
.top_sp_menu #r_nav ul.cate_nav li:not(:first-child) div.open {
  background-size: 10%;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(2) div.open {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_trouble.png) no-repeat 15px #fff;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(3) div.open {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_customer.png) no-repeat 15px #fff;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(4) div.open {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_payment.png) no-repeat 15px #fff;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(5) div.open {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_payment.png) no-repeat 15px #fff;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(6) div.open {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_trouble.png) no-repeat 15px #fff;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(7) div.open {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_nyukai.png) no-repeat 15px #fff;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(8) div.open {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_addcard.png) no-repeat 15px #fff;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(9) div.open {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_card.png) no-repeat 15px #fff;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(10) div.open {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_service.png) no-repeat 15px #fff;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(11) div.open {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_vpass.png) no-repeat 15px #fff;
}
.top_sp_menu #r_nav ul.cate_nav li:nth-child(12) div.open {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_point.png) no-repeat 15px #fff;
}
.top_sp_menu #r_nav ul.cate_nav li:last-child div.open {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_point.png) no-repeat 15px #fff;
}
.top_sp_menu .frequent {
  display: none !important;
}
.top_sp_menu #r_nav ul.cate_nav li div.open {
  color: #004a3c;
}
.top_sp_menu #r_nav ul.cate_nav li:last-child div {
  border-bottom: none;
}
.top_sp_menu #r_nav ul.cate_nav li {
  position: relative;
}
.top_sp_menu #r_nav ul.cate_nav li div.open::after {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_close_green.png) no-repeat;
  height: 10px;
}
.top_sp_menu #r_nav ul.cate_nav li ul li a {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ico_arrow_blue_right.png) no-repeat 10px 50% #fff;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.top_sp_menu .cate_nav {
  border-bottom: 1px solid #ddd;
}
.top_sp_menu #r_nav {
  margin-top: 30px;
  margin-bottom: 30px;
}
.top_sp_menu #r_nav ul.cate_nav li ul li:last-child a {
  padding-bottom: 15px;
}
.top_sp_menu #r_nav ul.cate_nav li ul li a:hover {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ico_arrow_blue_right.png) no-repeat 10px 50% #fff;
  color: #073e65;
  text-decoration: underline;
}
.top_sp_menu #r_nav ul.cate_nav li:last-child ul {
  border-bottom: 1px solid #ddd;
}
.top_sp_menu #r_nav ul.cate_nav li div.open:after {
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_close_green.png) no-repeat;
  background-size: 90%;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
}
.top_sp_menu #r_nav ul.cate_nav li {
  vertical-align: middle;
}
.top_sp_menu #r_nav ul.cate_nav .frequent .active a {
  display: block;
  margin-top: -25px;
  height: 45px;
  padding-top: 25px;
  padding-left: 22px;
  width: 240px;
  margin-left: -15px;
}
.top_sp_menu #r_nav ul.cate_nav li div {
  color: #004a3c;
  display: block;
  font-size: 114.3%;
  font-weight: bold;
  padding: 25px 15px 0px 57px;
  border-top: 2px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  height: 45px;
}
.top_sp_menu #r_nav ul.cate_nav li div.pa_few {
  padding: 14px 15px 14px 57px;
}
.top_sp_menu #r_nav ul.cate_nav li:last-child div {
  border-bottom: 2px solid #dddddd;
}
.top_sp_menu #r_nav ul.cate_nav li:last-child ul {
  border-bottom: 2px solid #dddddd;
}
.top_sp_menu #r_nav ul.cate_nav li div:hover {
  text-decoration: none;
  cursor: pointer;
}
.top_sp_menu #r_nav ul.cate_nav li div ul {
  background-color: #004a3c;
  color: #fff;
}
.top_sp_menu #r_nav ul.cate_nav li ul li {
  margin: 0;
}
.top_sp_menu #r_nav ul.cate_nav li ul li a {
  display: block;
  padding: 10px 10px 10px 26px;
  background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ico_arrow_blue_right.png) no-repeat 10px 50%;
}
.top_sp_menu #r_nav ul.cate_nav li ul li a:hover {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_arrow_white_right.png") no-repeat 10px 50% #004a3c;
  color: #fff;
  text-decoration: none;
}

.internetservice_ttl img {
  display: inline-block;
  margin-top: -15px;
  vertical-align: baseline;
}
.internetservice_ttl p {
  display: inline-block;
  margin-top: 10px;
}

.trouble_ttl, .enrollment_ttl, .inquiry_ttl, .useofcard_ttl, .billing_ttl, .variouscards_ttl, .internetservice_ttl, .pointservice_ttl, .service_ttl {
  padding-left: 14px !important;
}

.enrollment_ttl {
  font-size: 15.4px !important;
}

.trouble_section_cover img {
  width: 15%;
  margin-right: 5px;
}

.trouble_section ul li #inaccessibility:hover {
  background: url("/common/faq/imgs/ico_inaccessibility.png") no-repeat 15px 23px #f7f7f7;
}

.trouble_section ul li #loss {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ico_loss.png") no-repeat 18px 23px;
}

.trouble_section ul li #loss:hover {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ico_loss.png") no-repeat 18px 23px #f7f7f7;
}

.trouble_section ul li #payment {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ico_payment.png") no-repeat 13px 21px;
}

.trouble_section ul li #payment:hover {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ico_payment.png") no-repeat 13px 21px #f7f7f7;
}

.trouble_section ul li #mailing {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ico_mailing.png") no-repeat 18px 21px;
}

.trouble_section ul li #mailing:hover {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ico_mailing.png") no-repeat 18px 21px #f7f7f7;
}

.trouble_section ul li #sales {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ico_sales.png") no-repeat 27px 21px;
}

.trouble_section ul li #sales:hover {
  background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ico_sales.png") no-repeat 27px 21px #f7f7f7;
}

/**********************
* Helpfeel CSS
**********************/
:root {
  --rounded-md: 6px;
  --rounded-lg: 8px;
  --focus-ring-color: #117766;
  --card-border-color: #e0e1e6;
  --card-border-radius: 8px;
  --page-container-width: 1000px;
  --button-bg-color: #f0f0f3;
  --button-bg-hover-color: #e8e8ec;
  --button-label-color: #1c2024;
  --button-disabled-bg-color: #f0f0f3;
  --button-disabled-label-color: #8b8d98;
  --feedback-button-bg-color: #f0f0f3;
  --feedback-button-bg-hover-color: #e8e8ec;
  --feedback-button-label-color: #1c2024;
  --feedback-button-disabled-bg-color: #f0f0f3;
  --feedback-button-disabled-label-color: #8b8d98;
  --wizard-content-bg-color: #e9f4f2;
  --wizard-button-bg-color: #FFFFFF;
  --wizard-button-bg-hover-color: #d1e6e2;
  --wizard-button-border-color: #117766;
  --wizard-button-label-color: #117766;
  --wizard-button-active-color: #117766;
}

.container {
  width: 1000px;
}

.header {
  padding-top: 0;
}
.header #header .hLeft a:hover,
.header #header .hRight a:hover {
  background-color: inherit;
}

.navbar .navbar-inner {
  max-width: 1000px;
  width: 100%;
  padding: 8px 0;
  margin-right: auto;
  margin-left: auto;
}
.navbar h1.brand img {
  height: 24px;
}
.navbar a:hover {
  background: none;
}

.query-input {
  align-items: center;
  height: 56px;
  width: 100%;
  max-width: 728px;
  margin: 0 auto;
  border-radius: var(--rounded-lg);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.04), 0px 1px 4px 0px rgba(0, 0, 0, 0.04);
  outline: 2px solid transparent;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, outline;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.query-input:focus-within {
  outline: 2px solid var(--focus-ring-color);
  outline-offset: 2px;
}
.query-input input,
.query-input textarea {
  padding: 12px 16px;
  font-size: 18px;
  line-height: 1.5;
}
.query-input .speech-button {
  position: relative;
  width: 32px;
  height: 32px;
  margin-right: 16px;
  border-radius: 6px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.query-input .speech-button:focus-visible {
  outline: 2px solid var(--focus-ring-color);
  outline-offset: -2px;
}
.query-input .speech-button:hover {
  background-color: var(--link-hover-color);
}
.query-input .speech-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url(https://custom-assets.helpfeel.com/helpfeel-sample/icons/icon-mic.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}
.query-input .speech-button img {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .query-input {
    margin-top: 40px;
  }
}

.faq-list {
  margin-top: 24px;
  padding: 0;
  border: solid 1px var(--card-border-color);
  border-radius: var(--card-border-radius);
}
@media screen and (max-width: 767px) {
  .faq-list {
    margin-top: 16px;
  }
}
.faq-list .faq-list-search-summary {
  padding-left: 8px;
}
.faq-list .faq-list-scroll-container {
  height: initial;
  max-height: calc(62px + (39px * 8));
  overflow-y: auto;
  overflow-x: visible;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .faq-list .faq-list-scroll-container {
    max-height: calc(62px + (36px * 8));
    padding: 24px 8px;
  }
}
.faq-list .faq-list-empty-container {
  padding-left: 8px;
}
.faq-list .faq-list-title {
  position: initial;
  padding: 0 0 0 8px;
  margin: 20px auto 12px;
  font-weight: normal;
  background: transparent;
}
.faq-list ul > li:not(:last-child) {
  margin: 0 auto 4px;
}
.faq-list ul > li > a {
  padding: 4px 8px;
  line-height: 1.5;
  border-radius: 6px;
  overflow-wrap: anywhere;
}
.faq-list ul > li > a:hover {
  background-color: #f0f0f3;
}
.faq-list ul > li > a .icon {
  width: 24px;
  margin-right: 8px;
}
.faq-list .faq-list-bottom {
  display: none;
}

.keywords {
  padding: 24px 32px;
  margin-top: 24px;
  border: solid 1px var(--card-border-color);
  border-radius: var(--card-border-radius);
}
@media screen and (max-width: 767px) {
  .keywords {
    padding: 24px 16px;
    margin-top: 16px;
  }
}
.keywords .keywords-title {
  font-weight: normal;
}
.keywords .keywords-body .section:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .keywords .keywords-body .section:not(:last-child) {
    margin-bottom: 16px;
  }
}
.keywords .keywords-body .list {
  justify-content: initial;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.keywords .keywords-body .list > a {
  padding: 2px 12px;
  line-height: 1.5;
  border-radius: var(--rounded-lg);
  background-color: #f0f0f3;
}
.keywords .keywords-body .list > a:hover {
  background-color: var(--link-hover-color);
}

.powered-by-helpfeel {
  display: none;
}

.footer {
  max-width: 100%;
  padding-bottom: 0;
  margin-top: auto;
  padding-top: 48px;
  text-align: left;
  background: none;
}
@media screen and (max-width: 767px) {
  .footer {
    min-width: initial;
  }
}
.footer .footer-category {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.footer .footer-main {
  display: flex;
  gap: 16px;
  justify-content: center;
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .footer .footer-main {
    margin-bottom: 48px;
  }
}
.search-page .footer .footer-main {
  display: none;
}
.footer .btn {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  border-radius: var(--rounded-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
}
.footer .btn.footer-main_search-top {
  border: solid 1px #1a4832;
  background-color: #fff;
  color: #1a4832;
}
.footer .btn.footer-main_search-top:hover {
  background-color: var(--button-bg-color);
  border: solid 1px #1a4832;
  color: #1a4832;
}
body.search-page .footer .btn.footer-main_search-top {
  display: none;
}
.footer .btn.footer-main_contact {
  border: solid 1px #e1ea7f;
  background-color: #e1ea7f;
  color: #1a4832;
}
.footer .btn.footer-main_contact:hover {
  border: solid 1px #1a4832;
  background-color: #1a4832;
  color: #fff;
}
.footer #footer {
  background-color: #f2f2f2;
}

.faq-list-scroll-container {
  height: initial;
  max-height: calc(22px + 44px * 8);
  /* 各位調整 */
}

/*****************************************
* ARTICLE PAGE
*****************************************/
.article-page {
  /* Heading ---------------------------------------------------------------*/
}
.article-page .content {
  width: 100%;
  margin: 48px auto 24px;
}
@media screen and (max-width: 767px) {
  .article-page .page-content {
    padding: 0;
    border: none;
  }
}
.article-page .page-content .line {
  font-size: 17px;
  line-height: 1.9;
}
.article-page .page-content .line.title {
  padding-bottom: 0.666em;
  margin-bottom: 1em;
  font-size: 24px;
  line-height: 1.333;
  border-bottom: solid 1px #d9d9e0;
}
.article-page .page-content .hf-wizard {
  margin-top: 12px;
  margin-bottom: 12px;
}
.article-page .page-content .hf-wizard .hf-wizard-choice-group {
  margin: 12px 0;
  gap: 10px;
}
.article-page .page-content .hf-wizard .hf-wizard-choice-group .hf-wizard-choice {
  padding: 8px 12px;
  font-size: 16px;
  font-weight: normal;
  background: var(--wizard-button-bg-color);
  border: solid 1px var(--wizard-button-border-color);
  color: var(--wizard-button-label-color);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.article-page .page-content .hf-wizard .hf-wizard-choice-group .hf-wizard-choice:disabled {
  cursor: default;
}
.article-page .page-content .hf-wizard .hf-wizard-choice-group .hf-wizard-choice:hover {
  border: solid 1px var(--wizard-button-active-color);
  background-color: var(--wizard-button-bg-hover-color);
  color: var(--wizard-button-active-color);
}
.article-page .page-content .hf-wizard .hf-wizard-choice-group .hf-wizard-choice.chosen {
  background-color: var(--wizard-button-active-color);
  border: solid 1px var(--wizard-button-active-color);
  color: #FFFFFF;
  font-weight: bold;
}
.article-page .page-content .hf-wizard .hf-wizard-block {
  margin: 24px auto;
}
@media screen and (max-width: 767px) {
  .article-page .page-content .hf-wizard .hf-wizard-block {
    margin: 16px auto;
  }
}
.article-page .page-content .hf-wizard .hf-wizard-block:has(.hf-wizard-choice-group) {
  padding: 16px 22px;
  background-color: var(--wizard-content-bg-color);
  border: solid 1px var(--card-border-color);
  border-radius: var(--card-border-radius);
}
@media screen and (max-width: 767px) {
  .article-page .page-content .hf-wizard .hf-wizard-block:has(.hf-wizard-choice-group) {
    padding: 12px 16px;
  }
}
.article-page .feedback-section .buttons button {
  position: relative;
  overflow: hidden;
  min-width: 140px;
  border: none;
  background: var(--feedback-button-bg-color);
  border-radius: var(--rounded-md);
  color: var(--feedback-button-label-color);
}
.article-page .feedback-section .buttons button:hover {
  background-color: var(--feedback-button-bg-hover-color);
}
.article-page .feedback-section .buttons button #feedback-good-button-label,
.article-page .feedback-section .buttons button #feedback-bad-button-label {
  text-indent: -1000px;
}
.article-page .feedback-section .buttons button #feedback-good-button-label:after,
.article-page .feedback-section .buttons button #feedback-bad-button-label:after {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-indent: 0;
}
.article-page .feedback-section .buttons button #feedback-good-button-label:after {
  content: "役に立った";
}
.article-page .feedback-section .buttons button #feedback-bad-button-label:after {
  content: "役に立たなかった";
}
.article-page .feedback-section #feedback-bad-button-label {
  margin-top: 0;
}
.article-page .feedback .buttons .good-button #feedback-good-button-label,
.article-page .feedback .buttons .good-button #feedback-bad-button-label,
.article-page .feedback .buttons .bad-button #feedback-good-button-label,
.article-page .feedback .buttons .bad-button #feedback-bad-button-label {
  margin-top: 0;
}
.article-page .detailed-feedback-link {
  background-color: transparent;
}
.article-page .detailed-feedback-link:hover {
  background-color: transparent;
}
.article-page .detailed-feedback-link-button {
  border: none;
  background-color: var(--feedback-button-bg-color);
  color: var(--feedback-button-label-color);
  border-radius: var(--rounded-md);
}
.article-page .detailed-feedback-link-button:hover {
  background-color: var(--feedback-button-bg-hover-color);
  border-radius: var(--rounded-md);
}
.article-page .related-pages-section {
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .article-page .related-pages-section {
    border-top: solid 1px var(--card-border-color);
  }
}
@media screen and (max-width: 767px) {
  .article-page .related-pages-section .container {
    max-width: calc(100% - 16px);
  }
}
.article-page .related-pages-section .related-pages {
  margin-top: 0;
  margin-bottom: 0;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .article-page .related-pages-section .related-pages {
    padding: 16px 0;
    border-radius: none;
  }
}
.article-page .related-pages-section .related-pages .related-pages-title {
  font-weight: normal;
  padding-left: 8px;
}
.article-page .related-pages-section .related-pages .related-pages-body ul > li:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .article-page .related-pages-section .related-pages .related-pages-body ul > li:not(:last-child) {
    margin-bottom: 6px;
  }
}
.article-page .related-pages-section .related-pages .related-pages-body ul > li > a {
  padding: 4px 8px;
  text-decoration: underline;
}
.article-page .related-pages-section .related-pages .related-pages-body ul > li > a .icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  margin-top: 2px;
  background-image: url(https://custom-assets.helpfeel.com/helpfeel-sample/icons/icon-file-text.svg) !important;
  background-size: contain;
  background-position: center;
}
.article-page strong.level.level-3 {
  font-size: 125%;
  line-height: 140%;
  display: block;
  margin: 1.25em 0 0;
  font-feature-settings: "palt";
}
.article-page strong.level.level-4 {
  font-size: 150%;
  line-height: 140%;
  display: block;
  margin: 1.5em 0 0;
  font-feature-settings: "palt";
}

.article-page-empty {
  display: flex;
  flex-direction: column;
}
.article-page-empty .content {
  margin-bottom: 0;
  order: 1;
}
.article-page-empty .content .page-content {
  padding-bottom: 0;
  border-bottom: 0;
  border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
}
.article-page-empty .content .page-content .line.title {
  margin-bottom: 0;
}
.article-page-empty .feedback-section {
  order: 3;
}
.article-page-empty .related-pages-section {
  order: 2;
}
.article-page-empty .related-pages-section .container .related-pages {
  border-top: 0;
  border-radius: 0 0 var(--card-border-radius) var(--card-border-radius);
}
.inframe .article-page-empty .related-pages-section .container .related-pages {
  padding-top: 0;
}
.article-page-empty #detailed-feedback-section {
  order: 4;
}
.article-page-empty .footer {
  order: 5;
}

/*****************************************
* CONTACT PAGE
*****************************************/
.custom-contact-container .description {
  color: var(--helper-color);
}

.contact-page {
  font-size: 14px;
}
.contact-page .navbar ul.header-menu a {
  display: none;
}
.contact-page .description-html .description {
  padding: 10px 0;
  background-color: transparent;
}
.contact-page .description-html:has(+ #g-recaptcha) {
  margin-top: 40px;
}
.contact-page .form-group.required > label:after, .contact-page .form-group.required.radio-button-container > div:not(.radio-button-group) > label:after {
  content: "必須";
  color: #fff;
  font-size: 10px;
  background-color: #e5484d;
  padding: 3px;
  border-radius: 4px;
  margin-left: 5px;
  vertical-align: 2px;
}
.contact-page .form-group > label, .contact-page .form-group.radio-button-container > div:not(.radio-button-group) label {
  display: block;
  color: var(--header-color);
  font-size: 16px;
  line-height: 16px;
  margin: 0 0 12px;
  font-weight: bold;
}
.contact-page .form-group.rel-question, .contact-page .form-group.nohit {
  margin-top: 0;
}
.contact-page div#g-recaptcha {
  margin: 60px 0 80px;
}
.contact-page div#g-recaptcha > div {
  margin: 0 auto;
}
.contact-page .contact-container {
  padding-bottom: 0;
}
.contact-page .contact-container .hints {
  padding-left: 0;
}
.contact-page .contact-container .form-group + .description-html {
  margin: 0;
}
.contact-page .contact-container .button-submit {
  color: white;
  background: var(--primary9);
  border-radius: var(--rounded-md);
  padding: 12px 14px;
}
.contact-page .contact-container .button-submit:hover {
  background-color: var(--primary10);
}
.contact-page .contact-container .button-submit:disabled {
  background: var(--button-disabled-bg-color);
  color: var(--button-disabled-label-color);
}
.contact-page .footer {
  padding-top: 24px;
}
.contact-page .footer .footer-main_contact {
  display: none;
}
.contact-page .footer .footer-main_search-top {
  max-width: 240px;
  width: 100%;
  box-sizing: border-box;
}

/*****************************************
* POPUP SETTING
*****************************************/
html.inframe #app-container {
  margin-top: 57px;
}
html.inframe .search-page::after {
  display: none;
}
html.inframe .header {
  height: auto;
  padding: 0;
  border-bottom: solid 1px var(--custom-border-color, var(--form-border-color));
}
html.inframe .container {
  width: 100%;
  max-width: 100%;
}
html.inframe .keywords {
  margin-top: 0;
  border: none;
  border-top: solid 1px var(--custom-border-color, var(--form-border-color));
  border-radius: 0;
}
html.inframe .faq-list {
  border: none;
}
html.inframe .faq-list .faq-list-scroll-container {
  /* Firefox - 通常時はスクロールバー非表示 */
  scrollbar-width: none;
  /* WebKit - 通常時はスクロールバー非表示 */
  /* Firefox - ホバー時のみスクロールバー表示 */
  /* WebKit - ホバー時のみスクロールバー表示 */
}
html.inframe .faq-list .faq-list-scroll-container::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
html.inframe .faq-list .faq-list-scroll-container:hover {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}
html.inframe .faq-list .faq-list-scroll-container:hover::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}
html.inframe .faq-list .faq-list-scroll-container:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
html.inframe .faq-list,
html.inframe .keywords,
html.inframe .article-page .page-content {
  border-radius: 0;
  background-color: #fff;
}
html.inframe .query-input {
  background-color: #fff;
}
html.inframe .query-input:focus-within {
  outline: none;
}
html.inframe .query-input input,
html.inframe .query-input textarea {
  background-size: 18px;
  padding-left: 48px;
  background-position: 16px center;
}
html.inframe .faq-list {
  margin-top: 0;
}
html.inframe .article-page .content {
  margin-top: 16px;
}
html.inframe .article-page .page-content {
  padding-inline: 24px;
}
html.inframe .article-page .related-pages-section .container {
  max-width: calc(100% - 24px);
}
html.inframe .inframe-header {
  font-weight: normal;
}
html.inframe .inframe-header a svg {
  width: 16px;
}
html.inframe .inframe-header a svg path {
  fill: var(--helper-color);
}
html[data-pdf="1"].inframe .query-input {
  padding-top: 0;
}

html {
  scroll-behavior: smooth;
}
html .query-input {
  scroll-margin-top: 120px;
}

body.article-page .page-content {
  visibility: hidden;
  opacity: 0;
  transition-property: visibility, opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 250ms;
}
body.article-page.processed-lines .page-content {
  visibility: visible;
  opacity: 1;
}

body:has(.preview-label).article-page .page-content {
  visibility: visible;
  opacity: 1;
}

/* アニメーションの基本設定 */
.top_sp_menu .cate_nav ul {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

html body.article-page.article-page-empty .feedback-section {
  display: none;
}
html body.article-page.article-page-empty .related-pages-section .related-pages .related-pages-title {
  display: none;
}
html body.article-page.article-page-empty .related-pages-section .related-pages .related-pages-body ul > li > a .icon {
  width: 24px;
  height: 24px;
  margin-top: 0px;
  background-image: url(/img/answer.svg) !important;
}
html body.article-page.article-page-empty .footer .btn.footer-main_contact {
  display: none;
}

html #app-container {
  min-height: initial;
}
html .query-input input,
html .query-input textarea {
  scrollbar-width: none;
}
html body.search-page .faq-list ul > li > a {
  text-decoration: underline;
}
html body.article-page.article-page-empty .page-content {
  visibility: visible;
  opacity: 1;
}
html body.article-page:not(.article-page-empty) .page-content .line.title {
  position: relative;
  padding-top: 0.666em;
  padding-left: 2.5em;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  background: #f7f7f7;
}
@media screen and (max-width: 767px) {
  html body.article-page:not(.article-page-empty) .page-content .line.title {
    font-size: 20px;
    line-height: 1.5;
  }
}
html body.article-page:not(.article-page-empty) .page-content .line.title::before {
  position: absolute;
  top: calc(50%);
  left: 0.5em;
  content: "Q.";
  background: #1a4832;
  color: #fff;
  padding: 3px 8px;
  transform: translateY(-50%);
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  html body.article-page:not(.article-page-empty) .page-content .line.title::before {
    padding: 5px 6px 7px;
    font-size: 0.8em;
    line-height: 1;
  }
}

@media only screen and (width: 1020px) {
  html {
    overflow-x: hidden;
  }
}
@media only screen and (width: 1020px) {
  html body {
    overflow-x: hidden;
  }
}
@media screen and (max-width: 767px) {
  html .query-input {
    margin-top: 8px;
  }
}
html .article-page .content {
  margin-top: 0;
}

#TopLink {
  max-width: 1000px;
  min-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  #TopLink {
    min-width: initial;
  }
}
.search-page #TopLink {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#TopLink .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #TopLink .inner {
    padding: 0 5px 5px;
  }
}
#TopLink .inner a {
  color: #117766;
}
#TopLink .inner a:hover {
  text-decoration: underline;
}
#TopLink .inner ul {
  border: none;
  list-style: none;
  padding-left: 0;
  font-size: 14px;
}
#TopLink .inner ul li:first-child {
  background: url(https://custom-assets.helpfeel.com/smbc-card/memfs/ico_home.png) no-repeat left 3px;
  padding-left: 27px;
}
#TopLink .inner ul li span {
  font-weight: bold;
}
.search-page #TopLink .inner ul li span a {
  color: #333;
  pointer-events: none;
}
#TopLink .inner div {
  display: none;
}
.search-page #TopLink .inner div {
  display: block;
}

.faq-list-search-summary {
  font-size: 0px !important;
}
.faq-list-search-summary span:first-of-type {
  font-size: 14px;
  font-weight: 400 !important;
}
.faq-list-search-summary span:first-of-type::after {
  content: "件ヒット";
  font-size: 14px;
}

.article-page .custom-fragment {
  scroll-margin-top: 110px;
  display: block;
}

body .keywords:not(.keywords-top-most) {
  display: none;
}

.faq-list .faq-list-scroll-container.no-query:has(div:first-child:not(.faq-list-title)) > .faq-list-title,
.faq-list .faq-list-scroll-container.no-query:has(div:first-child:not(.faq-list-title)) > ul {
  display: none;
}

.feedback:not(:has(button[disabled])) #feedback-message-title-solution {
  position: relative;
  overflow: hidden;
  text-indent: -200%;
}
.feedback:not(:has(button[disabled])) #feedback-message-title-solution::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "この記事はお役に立ちましたか？";
  width: 100%;
  text-indent: 0;
}

body.article-page:not(.article-page-empty) .related-pages-section {
  display: none;
}

body:has(.vpass.header-fixed) #smbcLine {
  margin-bottom: 85px;
}
@media screen and (max-width: 767px) {
  body:has(.vpass.header-fixed) #smbcLine {
    margin-bottom: 136px;
  }
}

.faq-list .faq-list-scroll-container {
  max-height: initial;
}
@media screen and (max-width: 767px) {
  .faq-list .faq-list-scroll-container {
    max-height: initial;
  }
}

@media screen and (max-width: 767px) {
  .header .subtitle {
    display: block;
    padding: 0;
  }
}

html.inframe #header,
html.inframe #smbcLine,
html.inframe #TopLink {
  display: none !important;
}
html.inframe .footer {
  display: block;
}
@media only screen and (max-width: 767px) {
  html.inframe {
    /* =========================================================
      基本設定
      ========================================================= */
    /* =========================================================
    汎用クラス
    ※汎用クラスはimportant
    ========================================================= */
    /* H0100 文字装飾
    --------------------------------------------------------- */
    /* H0200 フォントサイズ
    --------------------------------------------------------- */
    /* H0300 ディスプレイ
    --------------------------------------------------------- */
    /* ----- スマホのみ表示させるクラス（PCで非表示） ----- */
    /* ----- PCのみ表示させるクラス（スマホで非表示） ----- */
    /* H0400 行揃え
    --------------------------------------------------------- */
    /* ----- 横方向 ----- */
    /* ----- 縦方向 ----- */
    /* H0500 配置・フロート・クリア
    --------------------------------------------------------- */
    /* H0600 幅指定
    --------------------------------------------------------- */
    /* ----- パーセント指定 ----- */
    /* ----- ピクセル指定 ----- */
    /* H0700 マージン
    --------------------------------------------------------- */
    /* H0800 パディング
    --------------------------------------------------------- */
    /* =========================================================
    H9000 その他
    ========================================================= */
    /* フルードイメージ
    --------------------------------------------------------- */
    /* CSSスプライト用背景イメージ非表示
    --------------------------------------------------------- */
    /* 文字飛ばし
    --------------------------------------------------------- */
    /* スマホレイアウト
    --------------------------------------------------------- */
    /* ----- Fix表示用 ----- */
    /* ----- フロート ----- */
    /* ----- クリアフィックス ----- */
    /* Sub-Menu Menu(Close) */
    /* Sub-Menu Menu(Open) */
    /* 疑似ドロップシャドウ */
    /* iosのスクロールバー削除分の余白調整 */
    /*
    html.ios .megaMenu {
      width: calc(100% + 6px);
    }
    html.ios .headerPlatinum .megaMenu {
      width: 100%;
    }
    */
  }
  html.inframe .video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  html.inframe .video iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
  html.inframe .searchInfoContainer {
    width: 100%;
    margin-bottom: 40px;
    padding: 15px 7.5px 0;
  }
  html.inframe .searchInfoContainer .searchInfoInner .searchInfoItem {
    width: calc(50% - 15px);
    height: auto;
    margin: 0 7.5px 15px;
    padding: 20px 20px 10px;
  }
  html.inframe .searchInfoContainer .searchInfoInner .searchInfoItem .searchInfoIcon {
    max-width: 54px;
  }
  html.inframe .searchInfoContainer .searchInfoInner .searchInfoItem .searchInfoText {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    margin-top: 10px;
    font-size: 3.5vw;
  }
  html.inframe .searchInfoContainer .searchInfoResult {
    margin: 0 7.5px;
    padding: 15px 15px 20px;
    width: calc(100% - 15px);
  }
  html.inframe .searchInfoContainer .searchInfoResult .searchInfoResultHeading {
    font-size: 4vw;
    line-height: 1.409;
    padding-left: 45px;
    padding-top: 6px;
  }
  html.inframe .searchInfoContainer .searchInfoResult .searchInfoResultHeading::before {
    content: "";
    width: 36px;
    height: 36px;
    background-size: 36px 36px;
  }
  html.inframe .searchInfoContainer .searchInfoBackToPrevLink {
    padding-left: 25px;
    padding-bottom: 20px;
  }
  html.inframe .searchInfoContainer .searchInfoBackToPrevLink::before {
    left: 7.5px;
  }
  html.inframe .infoH1Block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 0;
    min-height: unset;
    padding: 30px 25px;
  }
  html.inframe .infoH1Block .btnWraper {
    width: 100%;
  }
  html.inframe .infoH1Block .btnWraper > li {
    width: 100%;
  }
  html.inframe .infoH1Block .btnWraper .note {
    width: 100%;
  }
  html.inframe .infoH1Block .btnWraper .note > li {
    width: auto;
  }
  html.inframe .infoH1Block .btnWraper .btnWhite {
    width: 100%;
  }
  html.inframe .infoH1Block h1 {
    min-width: 0;
    min-height: 36px;
    font-size: 2.4rem;
    line-height: 1.6;
    text-align: center;
    padding: 0 6.5%;
    margin-bottom: 30px;
    margin-top: 0;
  }
  html.inframe .infoH1Block h1:before {
    min-width: 250px;
  }
  html.inframe .infoH1Block .infoH1ImageBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  html.inframe .infoH1Block .infoH1ImageBox .infoH1Item {
    margin: 0 7.5px 25px;
    max-width: 120px;
  }
  html.inframe .infoH1Block .infoH1ImageBox .infoH1Item img {
    border-radius: 50%;
  }
  html.inframe .infoH1Block .infoH1LeadTxt {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    word-break: break-all;
  }
  html.inframe * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  html.inframe .rwdFSize10 {
    font-size: 72% !important;
  }
  html.inframe .rwdFSize11 {
    font-size: 79% !important;
  }
  html.inframe .rwdFSize12 {
    font-size: 86% !important;
  }
  html.inframe .rwdFSize13 {
    font-size: 93% !important;
  }
  html.inframe .rwdFSize14 {
    font-size: 100% !important;
  }
  html.inframe .rwdFSize15 {
    font-size: 108% !important;
  }
  html.inframe .rwdFSize16 {
    font-size: 115% !important;
  }
  html.inframe .rwdFSize17 {
    font-size: 122% !important;
  }
  html.inframe .rwdFSize18 {
    font-size: 129% !important;
  }
  html.inframe .rwdFSize19 {
    font-size: 136% !important;
  }
  html.inframe .rwdFSize20 {
    font-size: 143% !important;
  }
  html.inframe .rwdFSize21 {
    font-size: 150% !important;
  }
  html.inframe .rwdFSize22 {
    font-size: 158% !important;
  }
  html.inframe .rwdFSize23 {
    font-size: 165% !important;
  }
  html.inframe .rwdFSize24 {
    font-size: 172% !important;
  }
  html.inframe .rwdFSize25 {
    font-size: 179% !important;
  }
  html.inframe .rwdFSize26 {
    font-size: 187% !important;
  }
  html.inframe body .forSpBlock {
    display: block !important;
  }
  html.inframe body .forPcBlock {
    display: none !important;
  }
  html.inframe .rwdDispInline {
    display: inline !important;
  }
  html.inframe .rwdDispInlBlock {
    display: inline-block !important;
  }
  html.inframe .rwdDispBlock {
    display: block !important;
  }
  html.inframe .rwdDispTable {
    display: table !important;
  }
  html.inframe .rwdDispTableCell {
    display: table-cell !important;
  }
  html.inframe .rwdTxtLeft {
    text-align: left !important;
  }
  html.inframe .rwdTxtCenter {
    text-align: center !important;
  }
  html.inframe .rwdTxtRight {
    text-align: right !important;
  }
  html.inframe .rwdValignTop {
    vertical-align: top !important;
  }
  html.inframe .rwdValignMiddle {
    vertical-align: middle !important;
  }
  html.inframe .rwdValignBottom {
    vertical-align: bottom !important;
  }
  html.inframe .rwdW5p {
    width: 5% !important;
  }
  html.inframe .rwdW10p {
    width: 10% !important;
  }
  html.inframe .rwdW15p {
    width: 15% !important;
  }
  html.inframe .rwdW20p {
    width: 20% !important;
  }
  html.inframe .rwdW30p {
    width: 30% !important;
  }
  html.inframe .rwdW33p {
    width: 33% !important;
  }
  html.inframe .rwdW40p {
    width: 40% !important;
  }
  html.inframe .rwdW50p {
    width: 50% !important;
  }
  html.inframe .rwdW60p {
    width: 60% !important;
  }
  html.inframe .rwdW70p {
    width: 70% !important;
  }
  html.inframe .rwdW80p {
    width: 80% !important;
  }
  html.inframe .rwdW90p {
    width: 90% !important;
  }
  html.inframe .rwdW100p {
    width: 100% !important;
  }
  html.inframe .rwdW100 {
    /* 削除予定 */
    width: 100%;
  }
  html.inframe .rwdW50px {
    width: 50px !important;
  }
  html.inframe .rwdW60px {
    width: 60px !important;
  }
  html.inframe .rwdW70px {
    width: 70px !important;
  }
  html.inframe .rwdW80px {
    width: 80px !important;
  }
  html.inframe .rwdW90px {
    width: 90px !important;
  }
  html.inframe .rwdW100px {
    width: 100px !important;
  }
  html.inframe .rwdW120px {
    width: 120px !important;
  }
  html.inframe .rwdW150px {
    width: 150px !important;
  }
  html.inframe .rwdW200px {
    width: 200px !important;
  }
  html.inframe .rwdW250px {
    width: 250px !important;
  }
  html.inframe .rwdW300px {
    width: 300px !important;
  }
  html.inframe .rwdMaC {
    margin: 0 auto !important;
  }
  html.inframe .rwdMaT0 {
    margin-top: 0 !important;
  }
  html.inframe .rwdMaT5 {
    margin-top: 5px !important;
  }
  html.inframe .rwdMaT10 {
    margin-top: 10px !important;
  }
  html.inframe .rwdMaT15 {
    margin-top: 15px !important;
  }
  html.inframe .rwdMaT20 {
    margin-top: 20px !important;
  }
  html.inframe .rwdMaT25 {
    margin-top: 25px !important;
  }
  html.inframe .rwdMaT30 {
    margin-top: 30px !important;
  }
  html.inframe .rwdMaT35 {
    margin-top: 35px !important;
  }
  html.inframe .rwdMaT40 {
    margin-top: 40px !important;
  }
  html.inframe .rwdMaT45 {
    margin-top: 45px !important;
  }
  html.inframe .rwdMaT50 {
    margin-top: 50px !important;
  }
  html.inframe .rwdMaT55 {
    margin-top: 55px !important;
  }
  html.inframe .rwdMaT60 {
    margin-top: 60px !important;
  }
  html.inframe .rwdMaT65 {
    margin-top: 65px !important;
  }
  html.inframe .rwdMaT70 {
    margin-top: 70px !important;
  }
  html.inframe .rwdMaT75 {
    margin-top: 75px !important;
  }
  html.inframe .rwdMaT80 {
    margin-top: 80px !important;
  }
  html.inframe .rwdMaT85 {
    margin-top: 85px !important;
  }
  html.inframe .rwdMaT90 {
    margin-top: 90px !important;
  }
  html.inframe .rwdMaT95 {
    margin-top: 95px !important;
  }
  html.inframe .rwdMaT100 {
    margin-top: 100px !important;
  }
  html.inframe .rwdMaR0 {
    margin-right: 0 !important;
  }
  html.inframe .rwdMaR5 {
    margin-right: 5px !important;
  }
  html.inframe .rwdMaR10 {
    margin-right: 10px !important;
  }
  html.inframe .rwdMaR15 {
    margin-right: 15px !important;
  }
  html.inframe .rwdMaR20 {
    margin-right: 20px !important;
  }
  html.inframe .rwdMaR25 {
    margin-right: 25px !important;
  }
  html.inframe .rwdMaR30 {
    margin-right: 30px !important;
  }
  html.inframe .rwdMaR35 {
    margin-right: 35px !important;
  }
  html.inframe .rwdMaR40 {
    margin-right: 40px !important;
  }
  html.inframe .rwdMaR45 {
    margin-right: 45px !important;
  }
  html.inframe .rwdMaR50 {
    margin-right: 50px !important;
  }
  html.inframe .rwdMaB0 {
    margin-bottom: 0 !important;
  }
  html.inframe .rwdMaB5 {
    margin-bottom: 5px !important;
  }
  html.inframe .rwdMaB10 {
    margin-bottom: 10px !important;
  }
  html.inframe .rwdMaB15 {
    margin-bottom: 15px !important;
  }
  html.inframe .rwdMaB20 {
    margin-bottom: 20px !important;
  }
  html.inframe .rwdMaB25 {
    margin-bottom: 25px !important;
  }
  html.inframe .rwdMaB30 {
    margin-bottom: 30px !important;
  }
  html.inframe .rwdMaB35 {
    margin-bottom: 35px !important;
  }
  html.inframe .rwdMaB40 {
    margin-bottom: 40px !important;
  }
  html.inframe .rwdMaB45 {
    margin-bottom: 45px !important;
  }
  html.inframe .rwdMaB50 {
    margin-bottom: 50px !important;
  }
  html.inframe .rwdMaB55 {
    margin-bottom: 55px !important;
  }
  html.inframe .rwdMaB60 {
    margin-bottom: 60px !important;
  }
  html.inframe .rwdMaB65 {
    margin-bottom: 65px !important;
  }
  html.inframe .rwdMaB70 {
    margin-bottom: 70px !important;
  }
  html.inframe .rwdMaB75 {
    margin-bottom: 75px !important;
  }
  html.inframe .rwdMaB80 {
    margin-bottom: 80px !important;
  }
  html.inframe .rwdMaB85 {
    margin-bottom: 85px !important;
  }
  html.inframe .rwdMaB90 {
    margin-bottom: 90px !important;
  }
  html.inframe .rwdMaB95 {
    margin-bottom: 95px !important;
  }
  html.inframe .rwdMaB100 {
    margin-bottom: 100px !important;
  }
  html.inframe .rwdMaL0 {
    margin-left: 0px !important;
  }
  html.inframe .rwdMaL5 {
    margin-left: 5px !important;
  }
  html.inframe .rwdMaL10 {
    margin-left: 10px !important;
  }
  html.inframe .rwdMaL15 {
    margin-left: 15px !important;
  }
  html.inframe .rwdMaL20 {
    margin-left: 20px !important;
  }
  html.inframe .rwdMaL25 {
    margin-left: 25px !important;
  }
  html.inframe .rwdMaL30 {
    margin-left: 30px !important;
  }
  html.inframe .rwdMaL35 {
    margin-left: 35px !important;
  }
  html.inframe .rwdMaL40 {
    margin-left: 40px !important;
  }
  html.inframe .rwdMaL45 {
    margin-left: 45px !important;
  }
  html.inframe .rwdMaL50 {
    margin-left: 50px !important;
  }
  html.inframe .rwdMa0 {
    margin: 0px !important;
  }
  html.inframe .rwdMa5 {
    margin: 5px !important;
  }
  html.inframe .rwdMa10 {
    margin: 10px !important;
  }
  html.inframe .rwdMa15 {
    margin: 15px !important;
  }
  html.inframe .rwdMa20 {
    margin: 20px !important;
  }
  html.inframe .rwdMa25 {
    margin: 25px !important;
  }
  html.inframe .rwdMa30 {
    margin: 30px !important;
  }
  html.inframe .rwdMa35 {
    margin: 35px !important;
  }
  html.inframe .rwdMa40 {
    margin: 40px !important;
  }
  html.inframe .rwdMa45 {
    margin: 45px !important;
  }
  html.inframe .rwdMa50 {
    margin: 50px !important;
  }
  html.inframe .rwdPaT0 {
    padding-top: 0px !important;
  }
  html.inframe .rwdPaT5 {
    padding-top: 5px !important;
  }
  html.inframe .rwdPaT10 {
    padding-top: 10px !important;
  }
  html.inframe .rwdPaT15 {
    padding-top: 15px !important;
  }
  html.inframe .rwdPaT20 {
    padding-top: 20px !important;
  }
  html.inframe .rwdPaT25 {
    padding-top: 25px !important;
  }
  html.inframe .rwdPaT30 {
    padding-top: 30px !important;
  }
  html.inframe .rwdPaT35 {
    padding-top: 35px !important;
  }
  html.inframe .rwdPaT40 {
    padding-top: 40px !important;
  }
  html.inframe .rwdPaT45 {
    padding-top: 45px !important;
  }
  html.inframe .rwdPaT50 {
    padding-top: 50px !important;
  }
  html.inframe .rwdPaR0 {
    padding-right: 0px !important;
  }
  html.inframe .rwdPaR5 {
    padding-right: 5px !important;
  }
  html.inframe .rwdPaR10 {
    padding-right: 10px !important;
  }
  html.inframe .rwdPaR15 {
    padding-right: 15px !important;
  }
  html.inframe .rwdPaR20 {
    padding-right: 20px !important;
  }
  html.inframe .rwdPaR25 {
    padding-right: 25px !important;
  }
  html.inframe .rwdPaR30 {
    padding-right: 30px !important;
  }
  html.inframe .rwdPaR35 {
    padding-right: 35px !important;
  }
  html.inframe .rwdPaR40 {
    padding-right: 40px !important;
  }
  html.inframe .rwdPaR45 {
    padding-right: 45px !important;
  }
  html.inframe .rwdPaR50 {
    padding-right: 50px !important;
  }
  html.inframe .rwdPaB0 {
    padding-bottom: 0px !important;
  }
  html.inframe .rwdPaB5 {
    padding-bottom: 5px !important;
  }
  html.inframe .rwdPaB10 {
    padding-bottom: 10px !important;
  }
  html.inframe .rwdPaB15 {
    padding-bottom: 15px !important;
  }
  html.inframe .rwdPaB20 {
    padding-bottom: 20px !important;
  }
  html.inframe .rwdPaB25 {
    padding-bottom: 25px !important;
  }
  html.inframe .rwdPaB30 {
    padding-bottom: 30px !important;
  }
  html.inframe .rwdPaB35 {
    padding-bottom: 35px !important;
  }
  html.inframe .rwdPaB40 {
    padding-bottom: 40px !important;
  }
  html.inframe .rwdPaB45 {
    padding-bottom: 45px !important;
  }
  html.inframe .rwdPaB50 {
    padding-bottom: 50px !important;
  }
  html.inframe .rwdPaL0 {
    padding-left: 0px !important;
  }
  html.inframe .rwdPaL5 {
    padding-left: 5px !important;
  }
  html.inframe .rwdPaL10 {
    padding-left: 10px !important;
  }
  html.inframe .rwdPaL15 {
    padding-left: 15px !important;
  }
  html.inframe .rwdPaL20 {
    padding-left: 20px !important;
  }
  html.inframe .rwdPaL25 {
    padding-left: 25px !important;
  }
  html.inframe .rwdPaL30 {
    padding-left: 30px !important;
  }
  html.inframe .rwdPaL35 {
    padding-left: 35px !important;
  }
  html.inframe .rwdPaL40 {
    padding-left: 40px !important;
  }
  html.inframe .rwdPaL45 {
    padding-left: 45px !important;
  }
  html.inframe .rwdPaL50 {
    padding-left: 50px !important;
  }
  html.inframe .rwdPa0 {
    padding: 0px !important;
  }
  html.inframe .rwdPa5 {
    padding: 5px !important;
  }
  html.inframe .rwdPa10 {
    padding: 10px !important;
  }
  html.inframe .rwdPa15 {
    padding: 15px !important;
  }
  html.inframe .rwdPa20 {
    padding: 20px !important;
  }
  html.inframe .rwdPa25 {
    padding: 25px !important;
  }
  html.inframe .rwdPa30 {
    padding: 30px !important;
  }
  html.inframe .rwdPa35 {
    padding: 35px !important;
  }
  html.inframe .rwdPa40 {
    padding: 40px !important;
  }
  html.inframe .rwdPa45 {
    padding: 45px !important;
  }
  html.inframe .rwdPa50 {
    padding: 50px !important;
  }
  html.inframe .rwdFldImg {
    max-width: 100% !important;
    height: auto !important;
  }
  html.inframe .rwdFldImg02 {
    width: 100% !important;
    height: auto !important;
  }
  html.inframe .rwdBGNone {
    background-image: none !important;
    list-style-image: none !important;
  }
  html.inframe .txtMagicSP {
    text-indent: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
  }
  html.inframe .js-fixed {
    position: static;
  }
  html.inframe .rwdFNone {
    float: none !important;
  }
  html.inframe .rwdClearfix:after {
    content: "";
    display: block;
    overflow: hidden;
    clear: both;
  }
  html.inframe .rwdClearfix {
    zoom: 1;
  }
  html.inframe #contWrap {
    padding-top: 0px;
  }
  html.inframe .PlatinumContents {
    width: auto;
  }
  html.inframe .PlatinumContents + .BPTWrap {
    width: auto;
  }
  html.inframe .forPcFlex {
    display: none !important;
  }
  html.inframe .forSpFlex {
    display: flex !important;
  }
  html.inframe #header {
    height: 135px;
    width: 100%;
    min-width: 320px;
  }
  html.inframe #header > .headerInner {
    height: 60px;
    width: 100%;
    min-width: 320px;
  }
  html.inframe #header .hLeft p.logo_out,
html.inframe #header .hLeft h1.logo_out {
    width: 122px;
    height: 20px;
    background-size: contain;
  }
  html.inframe #header .hLeft p.logo_in,
html.inframe #header .hLeft h1.logo_in {
    width: 122px;
    height: 20px;
    background-size: contain;
  }
  html.inframe #header {
    position: relative;
    height: 135px;
    width: 100%;
  }
  html.inframe #header.header-fixed {
    height: 75px;
  }
  html.inframe #header .hLeft {
    margin-left: 16px;
    width: 122px;
  }
  html.inframe #header .hLeft p.logo_in a,
html.inframe #header .hLeft h1.logo_in a {
    line-height: 20px;
  }
  html.inframe #header .hRight {
    margin-right: 8px;
    margin-top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: visible;
  }
  html.inframe div ul.hRight_subMenu {
    margin-top: 0 !important;
    /* XXX */
    margin-bottom: 0px !important;
  }
  html.inframe .subMenu_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    margin-top: 0px !important;
    /* XXX */
    width: 50px;
    font-size: 10px;
    line-height: 14px;
  }
  html.inframe .subMenu_item.subMenu_item-menu > a {
    color: #117766;
  }
  html.inframe .subMenu_item:not(:first-child) {
    margin-left: 0;
  }
  html.inframe .subMenu_item.subMenu_item-logout {
    margin-left: 8px;
  }
  html.inframe .subMenu_item.subMenu_item-userInfo {
    margin-right: 0px;
  }
  html.inframe .subMenu_item::before {
    margin-right: 0;
    position: absolute;
    pointer-events: none;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    /* for IE11※ */
    left: 50%;
    /* for IE11※ */
    /* IE11でflex-itemの疑似要素の背景が左右中央に整列しない対策 */
  }
  html.inframe .subMenu_item-qa,
html.inframe .subMenu_item-support {
    display: none;
  }
  html.inframe .subMenu_item-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 46px;
  }
  html.inframe .subMenu_item-userInfo::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_mypage_sp.svg") no-repeat center;
  }
  html.inframe .subMenu_item-login::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_login_green.svg") no-repeat center;
  }
  html.inframe .subMenu_item > .subMenu_itemInner,
html.inframe .subMenu_item > a {
    height: 36px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 10px;
    font-weight: bold;
    color: #00846D;
    white-space: nowrap;
  }
  html.inframe .subMenu_dropdown:after {
    display: none;
  }
  html.inframe .subMenu_dropdown.isShow .subMenu_dropdown_body {
    display: none;
  }
  html.inframe .subMenu_item-menu::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_menu.svg") no-repeat center;
    top: calc(50% - 16px / 2);
    width: 16px;
    height: 14px;
  }
  html.inframe .isSpMenuOpen .subMenu_item-menu::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_menu_close.svg") no-repeat center;
  }
  html.inframe .subMenu_userInfo_title {
    pointer-events: auto;
  }
  html.inframe .megaMenu:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    -webkit-box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.039);
    box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.039);
    z-index: 2;
  }
  html.inframe .megaMenu {
    display: none;
    position: absolute;
    left: 0;
    top: 60px;
    margin-top: 0;
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: calc(100vh - 75px);
    height: auto;
    overflow-y: visible;
    width: 100%;
  }
  html.inframe .header-fixed .megaMenu {
    top: 0;
  }
  html.inframe .megaMenubtn {
    display: flex;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  html.inframe ul li.megaMenu_item {
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 16px;
    height: auto;
    padding: 0;
    margin-right: auto;
    margin-bottom: 0;
  }
  html.inframe .megaMenu_item:nth-child(2) {
    padding-left: 0;
  }
  html.inframe .megaMenu_item.megaMenu_item-isAccordionOpen {
    overflow: visible;
  }
  html.inframe .megaMenu_item > .megaMenu_itemTitle,
html.inframe .megaMenu_item-isMenuOpen > .megaMenu_itemTitle,
html.inframe .megaMenu_item-active > .megaMenu_itemTitle {
    border-bottom: none;
  }
  html.inframe .megaMenu_item > .megaMenu_itemTitle,
html.inframe .megaMenu_item-isMenuOpen > .megaMenu_itemTitle > a,
html.inframe .megaMenu_itemTitle > a {
    color: #333;
  }
  html.inframe .megaMenu_item > .megaMenu_itemTitle.jsAccordion_active {
    color: #fff;
  }
  html.inframe .megaMenu_itemTitle {
    background-color: #fff;
    font-size: 0px;
    min-height: 58px;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    height: 75px;
  }
  html.inframe .megaMenu_item > .megaMenu_itemTitle {
    line-height: 0px;
  }
  html.inframe .megaMenu_itemTitle.jsAccordion_active {
    background-color: #F5F5F5;
  }
  html.inframe .megaMenu_itemTitle::after {
    display: none;
    position: absolute;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_open.svg") no-repeat center;
    content: "";
    width: 16px;
    height: 16px;
    right: 20px;
    top: calc(50% - 16px / 2);
  }
  html.inframe .megaMenu_itemTitle.jsAccordion_active::after {
    background-image: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_close_wh.svg");
  }
  html.inframe .megaMenu_itemTitle::before {
    display: none;
  }
  html.inframe .megaMenu_itemTitleimg_st, html.inframe .megaMenu_itemTitleimg_fill {
    width: 62px;
    height: 75px;
    margin: 0 auto;
    cursor: pointer;
  }
  html.inframe .megaMenu_item:nth-child(2) .megaMenu_itemTitleimg_st,
html.inframe .megaMenu_item:nth-child(2) .megaMenu_itemTitleimg_fill {
    width: 65px;
  }
  html.inframe .megaMenu_itemTitle .megaMenu_itemTitleimg_fill,
html.inframe .megaMenu_itemTitle.jsAccordion_active .megaMenu_itemTitleimg_st {
    display: none !important;
  }
  html.inframe .megaMenu_itemTitle.jsAccordion_active .megaMenu_itemTitleimg_fill {
    display: block !important;
  }
  html.inframe .megaMenu_itemBody {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 1;
    top: 75px;
    height: auto;
    min-height: auto;
    max-height: none;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
    border-top: 1px solid #F5F5F5;
  }
  html.inframe .megaMenu_item-isMenuOpen .megaMenu_itemBody {
    -webkit-transition: none;
    transition: none;
  }
  html.inframe .megaMenu_subTop {
    display: none;
  }
  html.inframe .meagDdm_subTopTitle {
    display: none;
  }
  html.inframe .meagDdm_subTopLink {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 56px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
    background-color: #CCC;
    padding: 15px 48px 17px 30px;
    position: relative;
  }
  html.inframe a.meagDdm_subTopLink {
    color: #333;
    text-decoration: none;
  }
  html.inframe .meagDdm_subTopLink::after {
    position: absolute;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg") no-repeat center;
    content: "";
    width: 12px;
    height: 12px;
    right: 20px;
    top: calc(50% - 12px / 2);
    left: auto;
  }
  html.inframe .meagDdm_subTopBelow {
    display: none;
  }
  html.inframe .megaMenu_subMenu {
    background-color: #F5F5F5;
    display: block;
    width: auto;
    padding: 0;
    margin-right: 0;
    overflow-y: auto;
    max-height: calc(100dvh - 174px);
  }
  html.inframe .megaMenu_subWrap {
    padding: 0 18px;
    margin-left: 0;
  }
  html.inframe .megaMenu_subWrap:not(:first-child) {
    margin-left: 0;
  }
  html.inframe .megaMenu_subTitle {
    border-bottom: 0;
    min-height: 40px;
    font-size: 14px;
    line-height: 16px;
    padding: 16px 18px 8px 0;
    position: relative;
  }
  html.inframe .megaMenu_subWrap:last-child .megaMenu_sub:last-child .megaMenu_subTitle.jsAccordion_active {
    border-bottom-color: #CCC;
  }
  html.inframe .megaMenu_subTitle::after {
    display: none;
  }
  html.inframe .megaMenu_subTitle.jsAccordion_active::after {
    position: absolute;
    background-image: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_close.svg");
  }
  html.inframe .megaMenu_subItem {
    height: 48px;
    min-height: 48px;
    border-bottom: 0;
  }
  html.inframe .megaMenu_subItem_link::after,
html.inframe .megaMenu_subTopLink::after {
    width: 16px;
    height: 16px;
    top: calc(50% - 16px / 2);
    right: 0px;
  }
  html.inframe .megaMenu_subItem_linkText {
    font-size: 14px;
    line-height: 16px;
    padding: 16px 32px 16px 10px;
  }
  html.inframe .megaMenu_subItem_linkIcon {
    margin: 0;
    height: auto;
  }
  html.inframe .megaMenu_subMessage {
    font-size: 12px;
    line-height: 20px;
    color: #707070;
    text-indent: -1.3em;
    padding: 12px 18px 12px 34px;
    background-color: #fff;
  }
  html.inframe .megaMenu_subMessage::before {
    color: #707070;
    content: "※ ";
  }
  html.inframe a.megaMenu_subClsBtn {
    background-color: #00846D;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    text-decoration: none;
    padding: 16px;
    cursor: pointer;
    height: 48px;
    width: 100%;
    position: relative;
  }
  html.inframe a.megaMenu_subClsBtn:hover {
    color: #fff;
  }
  html.inframe .megaMenu_subClsBtn::after {
    position: absolute;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_close_white.svg") no-repeat center;
    content: "";
    width: 16px;
    height: 16px;
    right: 18px;
    top: calc(50% - 16px / 2);
    left: auto;
  }
  html.inframe .megaMenu_subWrap-col2 {
    height: auto;
  }
  html.inframe .megaMenu_subWrap-col2 .megaMenu_subItem {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
  }
  html.inframe .megaMenu_subWrap-row > .megaMenu_sub:not(:first-child) {
    margin-top: 0;
  }
  html.inframe #header .megaMenu_item-sp {
    display: block;
  }
  html.inframe #header .megaMenu_spBottom {
    background-color: #F5F5F5;
  }
  html.inframe .megaMenu_spBottom .note {
    font-size: 12px;
    margin-bottom: 30px;
  }
  html.inframe .megaMenu_spBottom ul.note li {
    font-size: 12px;
  }
  html.inframe .megaMenu_spBottom .screenShareSupport img {
    width: 60px;
  }
  html.inframe .megaMenu_spBottomNavItem {
    line-height: 1;
  }
  html.inframe .megaMenu_item .megaMenu_spBottomNavItem + .megaMenu_spBottomNavItem {
    margin-top: 0px !important;
  }
  html.inframe #header .megaMenu_spBottomNavItemLink,
html.inframe #header .megaMenu_spBottomNavItemShare {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    color: #333333;
    text-decoration: none;
    position: relative;
    display: flex;
  }
  html.inframe #header .megaMenu_spBottomNavItemLink {
    padding: 16px 18px 16px 28px;
  }
  html.inframe #header .megaMenu_spBottomNavItemShare {
    padding: 23px 18px 24px 28px;
  }
  html.inframe #header .megaMenu_spBottomNavItemLoginTime {
    padding: 10px 18px;
    font-size: 12px;
    line-height: 1.5;
    text-align: right;
    color: #707070;
    background-color: #F0F0F0;
  }
  html.inframe #header .megaMenu_spBottomNavItemLink:hover,
html.inframe #header .megaMenu_spBottomNavItemShare:hover {
    text-decoration: underline;
    color: #117766;
  }
  html.inframe #header .screenShareSupport .megaMenu_spBottomNavItemLink {
    padding: 0;
  }
  html.inframe .megaMenu_spBottomNavItemLink::after,
html.inframe .megaMenu_spBottomNavItemShare::after {
    content: "";
    display: block;
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  html.inframe .megaMenu_spBottomNavItemLink::after {
    height: 16px;
    width: 16px;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg") no-repeat center;
  }
  html.inframe .megaMenu_spBottomNavItemShare::after {
    height: 32px;
    width: 32px;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic_screen-share.svg") no-repeat center;
  }
  html.inframe .screenShareSupport .megaMenu_spBottomNavItemLink::before {
    background-image: none;
  }
  html.inframe #header .hRight .searchAreaWrap {
    padding-left: 15px;
    padding-right: 15px;
  }
  html.inframe .searchAreaWrapSp .searchBox {
    display: flex;
    padding: 12px;
    background-color: #F0F0F0;
  }
  html.inframe .megaMenu input.searchTextBox {
    font-size: 16px;
  }
  html.inframe #smbcLine {
    position: relative;
    top: 0;
    left: 0;
  }
  html.inframe #smbcLine_pc {
    display: none;
  }
  html.inframe #smbcLine_sp {
    display: block;
    background-color: #1a4832;
    border-bottom: 3px solid #b6ca3f;
  }
  html.inframe #smbcLine_sp .smbcGroupWrap {
    width: 100%;
    height: 36px;
    margin: 0 auto;
    padding: 8px 0;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  html.inframe #smbcLine_sp .logoSmbc {
    width: 78px;
    height: 23px;
    margin-left: 20px;
  }
  html.inframe #smbcLine_sp .logoSmbc img {
    vertical-align: baseline;
  }
  html.inframe #smbcLine_sp .logoSmbcGroup {
    width: 56px;
    height: 8px;
    margin-right: 20px;
  }
  html.inframe #smbcLine_sp .logoSmbcGroup img {
    vertical-align: top;
  }
  html.inframe #smbcLine_sp img {
    width: 100%;
  }
  html.inframe .megaMenu {
    top: 77px;
  }
  html.inframe .megaMenu.hamburgerMenuSp {
    display: block;
    left: 100vw;
    right: auto;
    transition: left 0.5s;
    z-index: 991;
    top: 98px;
    padding: 0px;
    margin: 0px;
  }
  html.inframe .megaMenu.hamburgerMenuSp.isOpenMegaMenu {
    left: 0;
  }
  html.inframe .membersService {
    display: none;
  }
  html.inframe .membersServiceSP {
    display: block;
    padding: 33px 16px 16px 16px;
    background-color: #F5F5F5;
  }
  html.inframe .membersServiceSP_textArea {
    display: flex;
    margin-bottom: 12px;
    color: #333333;
    align-items: center;
    justify-content: space-between;
  }
  html.inframe .membersServiceSP_title {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
  }
  html.inframe .membersServiceSP_disp {
    font-size: 10px;
    margin: 0;
  }
  html.inframe .membersServiceSP_linkArea {
    display: flex;
    margin-bottom: 13px;
  }
  html.inframe .membersServiceSP_vpassLogin,
html.inframe .membersServiceSP_navLogin {
    width: 50%;
    height: 75px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding-bottom: 10px;
    position: relative;
    text-decoration: none;
  }
  html.inframe .membersServiceSP_vpassLogin {
    border-radius: 6px 0 0 6px;
  }
  html.inframe .membersServiceSP_navLogin {
    border-radius: 0 6px 6px 0;
  }
  html.inframe .membersServiceSP_vpassLogin.open,
html.inframe .membersServiceSP_navLogin.open {
    border: 1px solid #dddddd;
    color: #333333;
  }
  html.inframe .membersServiceSP_vpassLogin.viewing {
    background-color: #EEF6F5;
    color: #00846D;
    border: 2px solid #00846D;
    pointer-events: none;
  }
  html.inframe .membersServiceSP_navLogin.viewing {
    background-color: #ffffff;
    color: #162688;
    border: 2px solid #162688;
  }
  html.inframe .membersServiceSP_vpassLogin.open::after,
html.inframe .membersServiceSP_navLogin.open::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    top: 40px;
    left: 0;
    right: 0;
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ic_darkgray_arrow.svg) no-repeat center;
  }
  html.inframe .membersServiceSP_vpassLogin.viewing::after,
html.inframe .membersServiceSP_navLogin.viewing::after {
    content: "閲覧中";
    display: block;
    position: absolute;
    height: 20px;
    margin: 0 auto;
    top: 40px;
    left: 0;
    right: 0;
    text-align: center;
    color: #333333;
    font-size: 10px;
    font-weight: normal;
  }
  html.inframe .membersServiceSP_missing {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 12px;
    color: #333333 !important;
    position: relative;
    text-decoration: none;
  }
  html.inframe .membersServiceSP_missing::before {
    content: "";
    display: block;
    position: absolute;
    right: 13.5em;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 20px;
    height: 20px;
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ic_support.svg) no-repeat center;
  }
  html.inframe .megaMenubtn {
    z-index: 0;
  }
  html.inframe .headerInner {
    z-index: 2;
    background-color: #ffffff;
  }
  html.inframe #smbcLine {
    z-index: 1000;
  }
  html.inframe #header.vpass .hLeft {
    padding-left: 16px;
    margin: 0;
    z-index: 3;
    background-color: #ffffff;
    width: 150px;
  }
  html.inframe #header.vpass .hRight {
    z-index: 2;
    background-color: #ffffff;
    width: 150px;
    margin-right: 0;
  }
  html.inframe .hRight_subMenu {
    width: 100%;
    height: 100%;
    align-items: center;
    background-color: #ffffff;
    z-index: 2;
  }
  html.inframe #header.header-fixed .hLeft,
html.inframe #header.header-fixed .hRight_subMenu {
    z-index: 0;
  }
  html.inframe .IDline {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    font-size: 8px;
    height: 17px;
    color: #ffffff;
    padding: 1px 16px;
    z-index: 2;
    line-height: 14px;
    font-weight: bold;
  }
  html.inframe .IDline-nav {
    background-color: #162688;
  }
  html.inframe .IDline-vpass {
    background-color: #00846D;
  }
  html.inframe .IDline_text {
    font-size: 10px;
    line-height: 1.5;
  }
  html.inframe .IDline.IDline-openMenuFixed {
    display: none;
  }
  html.inframe .megaMenu_spBottomNavItemLink,
html.inframe .megaMenu_spBottomNavItemShare {
    padding: 16px 18px 16px 16px;
  }
  html.inframe .searchAreaWrapSp form {
    margin-bottom: 0;
  }
  html.inframe .megaMenu_itemTitleimg_st, html.inframe .megaMenu_itemTitleimg_fill,
html.inframe .megaMenu_itemTitle {
    height: 58px;
  }
  html.inframe #smbcLine_sp {
    border-bottom: 2.67px solid #b6ca3f;
  }
  html.inframe .megaMenu_itemBody {
    top: 58px;
  }
  html.inframe #header.vpass > .headerInner {
    padding-bottom: 0;
    height: 60px;
  }
  html.inframe #header.vpass.header-fixed {
    height: 60px;
  }
  html.inframe body {
    height: auto;
  }
  html.inframe html {
    overflow: unset;
  }
  html.inframe .hamburgerMenuSp.hamburgerMenuSp-fixed {
    top: 60px;
  }
  html.inframe .header-fixed .megaMenu {
    top: 17px;
  }
  html.inframe .header-fixed .IDline {
    top: 0;
  }
  html.inframe .header-fixed.isSpMenuOpen .megaMenu {
    top: 17px;
  }
  html.inframe .header-fixed.isSpMenuOpen .IDline {
    display: none;
  }
  html.inframe .hRight .searchAreaWrap {
    padding-left: 15px;
    padding-right: 15px;
  }
  html.inframe .megaMenu_item-sp {
    display: block;
  }
  html.inframe .megaMenu_spBottom {
    background-color: #F5F5F5;
    width: 100%;
    padding-bottom: 16px;
  }
  html.inframe .megaMenu_spBottomNavItem .megaMenu_spBottomNavItemLink,
html.inframe .megaMenu_spBottomNavItem .megaMenu_spBottomNavItemShare {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    color: #333333;
    text-decoration: none;
    position: relative;
    display: flex;
  }
  html.inframe .megaMenu_spBottomNavItemLoginTime {
    padding: 10px 18px;
    font-size: 12px;
    line-height: 1.5;
    text-align: right;
    color: #707070;
    background-color: #F0F0F0;
  }
  html.inframe .megaMenu_spBottomNavItemLink:hover,
html.inframe .megaMenu_spBottomNavItemShare:hover {
    text-decoration: underline;
    color: #117766;
  }
  html.inframe .screenShareSupport .megaMenu_spBottomNavItemLink {
    padding: 0;
  }
  html.inframe .megaMenubtn.megaMenubtn-openMenuFixed {
    display: none;
  }
  html.inframe #header.vpass {
    height: auto;
    padding-bottom: 76px;
    z-index: 992;
  }
  html.inframe #header.isSpMenuOpen {
    padding-bottom: 0;
    margin-bottom: 76px;
  }
  html.inframe body, html.inframe html {
    overflow-x: hidden;
    position: relative;
  }
  html.inframe #header.vpass .hLeft p.logo_out, html.inframe #header.vpass .hLeft h1.logo_out {
    margin-top: 0;
  }
  html.inframe #header.vpass .hLeft p.logo_in, html.inframe #header.vpass .hLeft h1.logo_in {
    margin-top: 0;
  }
  html.inframe .searchButton,
html.inframe .megaMenu .searchAreaWrapSp input.searchTextBox {
    border-radius: 0;
  }
  html.inframe #footer {
    min-width: 0px;
  }
  html.inframe #footer .footAreaTopInner,
html.inframe #footer .footNavArea,
html.inframe #footer .footAreaBottom ul {
    max-width: 100%;
    min-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  html.inframe .pgTopLinkWrap {
    display: none !important;
    right: 0px;
    bottom: 0px;
    z-index: 899;
  }
  html.inframe .pgTopLink02:hover {
    opacity: 1;
  }
  html.inframe .footAreaTop {
    padding: 30px 15px 15px;
  }
  html.inframe .footAreaTop .footAreaTopInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  html.inframe .footAreaTop .footAreaTop_items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -16px;
  }
  html.inframe .footAreaTop .footAreaTop_items .footAreaTop_item {
    padding: 0;
    margin-right: 15px;
    margin-bottom: 16px;
    width: 45%;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    line-height: 1.8;
  }
  html.inframe .footAreaTop .footAreaTop_items .footAreaTop_item + .footAreaTop_item {
    border-left: none;
  }
  html.inframe .footAreaTop .verisign {
    margin-top: 10px;
  }
  html.inframe .footNavWrapArea .footNavArea {
    background-color: #ffffff;
  }
  html.inframe .footNavWrapArea .footNavArea .footNavAreaInner {
    width: 100%;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  html.inframe .footNavWrapArea .footNavArea .footNavAreaInner .nav_contents {
    width: 100%;
    font-size: 16px;
  }
  html.inframe .footNavWrapArea .footNavArea .footNavAreaInner .nav_contents .nav_category_title {
    margin: 0;
    border-bottom: 1px solid #cccccc;
  }
  html.inframe .nav_category_title_sp {
    display: block;
  }
  html.inframe .nav_category_title_sp .nav_category_titleLink {
    text-decoration: none;
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 56px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
    background-color: #CCC;
    padding: 15px 48px 17px 30px;
    position: relative;
  }
  html.inframe .nav_category_title_sp .nav_category_titleLink::after {
    position: absolute;
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg) no-repeat center;
    content: "";
    width: 12px;
    height: 12px;
    right: 20px;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
  }
  html.inframe .nav_category_title .nav_category_title_subText {
    color: #666666;
    font-size: 12px;
    font-weight: normal;
    margin-top: 5px;
    line-height: 1.3;
  }
  html.inframe .nav_category_title.jsAccordion_active .nav_category_title_subText {
    color: #fff;
  }
  html.inframe .nav_category_title.jsAccordion_active {
    background-color: #1A4832;
  }
  html.inframe .nav_category_title .nav_category_titleLink {
    color: #333;
    text-decoration: none;
    pointer-events: none;
    font-size: 18px;
    line-height: 1.5;
    padding: 15px 95px 15px 20px;
  }
  html.inframe .nav_category_title.jsAccordion_active .nav_category_titleLink {
    color: #fff;
  }
  html.inframe .nav_category_title .nav_category_titleLink::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_open.svg") no-repeat center;
    content: "";
    width: 16px;
    height: 16px;
    right: 20px;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
  }
  html.inframe .nav_category_title.jsAccordion_active .nav_category_titleLink::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_close_wh.svg") no-repeat center;
  }
  html.inframe .nav_contentBody {
    display: none;
  }
  html.inframe .nav_content {
    background-color: #F0F0F0;
  }
  html.inframe .nav_content + .nav_content {
    margin-top: 0;
  }
  html.inframe .nav_contentInner {
    padding-left: 30px;
    margin-left: 0;
  }
  html.inframe .nav_content_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    border-bottom: 1px dashed #CCC;
    min-height: 56px;
    font-size: 16px;
    padding: 15px 46px 14px 0;
    position: relative;
    margin: 0;
    color: #000;
  }
  html.inframe .nav_content:last-child .nav_content_title {
    border-bottom-color: transparent;
  }
  html.inframe .nav_content:last-child .nav_content_title.jsAccordion_active {
    border-bottom-color: #CCC;
  }
  html.inframe .nav_content_title::after {
    position: absolute;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_open.svg") no-repeat center;
    content: "";
    width: 16px;
    height: 16px;
    right: 20px;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
  }
  html.inframe .nav_content_title.jsAccordion_active::after {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_toggle_close.svg") no-repeat center;
  }
  html.inframe .nav_content_items {
    display: none;
  }
  html.inframe .nav_content_item {
    min-height: 56px;
    border-bottom: 1px dashed #CCC;
  }
  html.inframe .nav_content_item .nav_content_itemLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 16px;
    padding: 15px 50px 17px 8px;
    color: #333;
  }
  html.inframe .nav_content_item .nav_content_item_blank_Link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 16px;
    padding: 15px 50px 17px 8px;
    color: #333;
  }
  html.inframe .nav_content:last-child .nav_content_item:last-child {
    border-bottom: transparent;
  }
  html.inframe .nav_content_item .nav_content_itemLink::before {
    display: none;
  }
  html.inframe .nav_content_item .nav_content_item_blank_Link::before {
    display: none;
  }
  html.inframe .nav_content_item .nav_content_itemLink::after {
    position: absolute;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic-arrow-right.svg") no-repeat center;
    content: "";
    width: 16px;
    height: 16px;
    right: 20px;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
  }
  html.inframe .nav_content_item .nav_content_item_blank_Link::after {
    position: absolute;
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/ic-blank.svg") no-repeat center;
    content: "";
    width: 16px;
    height: 16px;
    right: 20px;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
  }
  html.inframe .nav_content_item + .nav_content_item {
    margin: 0;
  }
  html.inframe .footBottomArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 20px 15px 30px;
    background: #ffffff;
  }
  html.inframe .footBottomArea .footBreadCrumbArea {
    width: 100%;
  }
  html.inframe .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  html.inframe .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink::before {
    content: "";
    display: block;
    height: 12px;
    width: 12px;
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg) no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  html.inframe .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item,
html.inframe .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item:first-child {
    margin-left: 0px;
  }
  html.inframe .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink {
    display: inline;
    font-size: 16px;
    color: #117766;
    text-decoration: underline;
  }
  html.inframe .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item + .breadCrumb_item {
    margin-top: 10px;
  }
  html.inframe .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item.screenShareSupport .breadCrumb_itemLink::before {
    background: url("https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg") no-repeat;
  }
  html.inframe .footBottomArea .footSnsArea {
    width: 100%;
    margin-top: 30px;
  }
  html.inframe .footBottomArea .footSnsArea .sns_items {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  html.inframe .footBottomArea .footSnsArea .sns_item + .sns_item {
    margin-left: 25px;
  }
  html.inframe .footBottomArea .screenShareSupport img {
    display: none;
  }
  html.inframe .footBottomArea .screenShareSupport span {
    display: inline;
  }
  html.inframe .footBottomArea li.screenShareSupport {
    position: static;
  }
  html.inframe .sns_item_twitter img {
    width: 30px;
    height: 30px;
  }
  html.inframe .sns_item_instagram img {
    width: 32px;
    height: 32px;
  }
  html.inframe .sns_item_facebook img {
    width: 32px;
    height: 32px;
  }
  html.inframe .sns_item_tiktok img {
    width: 32px;
    height: 32px;
  }
  html.inframe .sns_item_youtube img {
    width: 32px;
    height: 32px;
  }
  html.inframe .sns_item_line img {
    width: 32px;
    height: 32px;
  }
  html.inframe .footArea_copyright {
    font-size: 10px;
  }
  html.inframe .footAreaTop .footAreaTop_items .footAreaTop_item {
    width: auto;
    flex: none;
    position: relative;
    margin-right: 48px;
  }
  html.inframe .footAreaTop .footAreaTop_items .footAreaTop_item::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 16px;
    background-color: #666666;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: -24px;
  }
  html.inframe .footAreaTop .footAreaTop_items .footAreaTop_item:last-child:after {
    display: none;
  }
  html.inframe .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink {
    text-indent: 0;
    padding: 0;
    text-decoration: none;
  }
  html.inframe .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink[target=_blank],
html.inframe .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink.winPopup {
    padding: 0 24px 0 0;
  }
  html.inframe .footAreaTop {
    padding: 30px 15px 30px;
  }
  html.inframe .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink::before {
    display: none;
  }
  html.inframe .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink::after {
    color: #000;
    content: "";
    display: block;
    position: absolute;
    height: 16px;
    width: 16px;
    background-size: cover;
    font-size: 23px;
    line-height: 1;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  html.inframe .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink[target=_blank]::after {
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ic-blank.svg) no-repeat;
    background-size: cover;
  }
  html.inframe .footAreaTop .footAreaTop_items .footAreaTop_item .footAreaTop_itemLink.winPopup::after {
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/ic-popup.svg) no-repeat;
    background-size: cover;
  }
  html.inframe .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink {
    text-decoration: none;
    padding-right: 0;
    padding-left: 20px;
    font-size: 14px;
  }
  html.inframe .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink::before {
    display: none;
  }
  html.inframe .footBottomArea .footBreadCrumbArea .breadCrumb_itemBody .breadCrumb_item .breadCrumb_itemLink::after {
    content: "";
    display: block;
    height: 12px;
    width: 12px;
    background: url(https://custom-assets.helpfeel.com/smbc-card/mem/icon_right_chevron.svg) no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  html.inframe .footArea_copyright {
    color: #ffffff;
  }
}

html .feedback .feedback-form-link {
  text-align: center;
}
html .feedback .feedback-form-link .feedback-form-link__button {
  display: inline-block;
  cursor: pointer;
  color: var(--body-color);
  border: none;
  border-radius: var(--rounded-md);
  border-radius: 4px;
  background: var(--feedback-button-bg-color);
  font-size: 14px;
  padding: 12px 16px;
  text-align: center;
  user-select: none;
  color: var(--feedback-button-label-color);
}