@charset "utf-8";
@import url(//fonts.googleapis.com/earlyaccess/notosansjp.css);
:root {
  /* 東邦銀行オリジナルカラー   */
  --original-color: #005bac;
  /* WEBイメージカラー1  */
  --back-color: #f2f2f2;
  /* WEBイメージカラー2  */
  --main-color: #ffffff;
  /* フォントカラー  */
  --font-color: #302927;
  /* 影などのグレー  */
  --gray-color: #cccccc;
  /* 線などのグレー  */
  --border-gray-color: rgb(224, 224, 224);
  /* フォント1 */
  --font-family: "Noto Sans JP", "Roboto", "Helvetica", "Arial", sans-serif;
  /* フォント2 */
  --font-family-2: "Noto Sans Japanese", "Helvetica", "Arial", sans-serif;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  overflow-y: scroll;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

table {
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--gray-color);
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  color: var(--font-color);
  font-size: 1em;
  line-height: 1.4;
  width: 100%;
  height: 100%;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--back-color);
}

html,
body {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

main {
  padding: 40px 140px 0px 140px;
  display: block;
  margin-top: 120px;
}

/* ヘッダー */
header {
  background: var(--main-color);
}

/* ログアウト画面バナー */
.banner_logout {
  text-align: center;
  margin-top: 38px;
}

.banner_logout img {
  width: 300px;
  height: 225px;
  background: var(--main-color);
  margin: 15px;
}

/* ボタン */
button {
  outline: 0;
  cursor: pointer;
}

button:active {
  filter: brightness(90%);
}

.hed_t {
  text-align: left;
  padding: 10px 0px 10px 72px;
}

.hed_t img {
  width: 160px;
}

hr {
  display: block;
  height: 2px;
  border: 0;
  border-top: 1px solid var(--gray-color);
  padding: 0;
  margin: 0;
}

/* 画面名 */
.contents-title {
  display: flex;
  padding: 11px 0px 11px 0px;
  justify-content: center;
  font: Bold 20px / 27px Noto Sans;
  letter-spacing: 0px;
  color: var(--font-color);
  font-family: var(--font-family-2);
  border-bottom: 1px solid #e6e6e6;
}

.err_msg {
  margin: 0 auto;
  text-align: center;
  color: red;
}
.close_container {
  text-align: center;
  margin-top: 37px;
}

.logout_message {
  text-align: center;
}

.top_p {
  margin-bottom: 10px;
}

#window_close,
#btn_to_top {
  display: block;
  margin: auto;
  margin-top: 60px;
  width: 280px;
  height: 60px;
  font-size: 16px;
  color: var(--font-color);
  background-color: var(--main-color);
  border-radius: 30px;
  border: 0.5px solid var(--gray-color);
}

#system_error,
#session_error {
  display: none;
}


/*-- オーバーレイ＆スピナー関連CSS  --*/

#loaderOverlay[hidden] {
    display: none;
}
#loaderOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.35);
}

.spinner{
  position: relative;
  width: 64px;
  height: 64px;
}

.spinner i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--original-color);
  transform-origin: 0 0;
  animation: dot-fade 1.2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * -0.15s); /* duration(1.2s)/8 ≈ 0.15s */
}

.spinner i:nth-child(1) {
  transform: rotate(0deg) translate(28px); --i: 7; 
}
.spinner i:nth-child(2) {
  transform: rotate(45deg) translate(28px); --i: 6;
}
.spinner i:nth-child(3) {
  transform: rotate(90deg) translate(28px); --i: 5;
}
.spinner i:nth-child(4) {
  transform: rotate(135deg) translate(28px); --i: 4;
}
.spinner i:nth-child(5) {
  transform: rotate(180deg) translate(28px); --i: 3;
}
.spinner i:nth-child(6) {
  transform: rotate(225deg) translate(28px); --i: 2;
}
.spinner i:nth-child(7) {
  transform: rotate(270deg) translate(28px); --i: 1;
}
.spinner i:nth-child(8) {
  transform: rotate(315deg) translate(28px); --i: 0;
}

@keyframes dot-fade {
  0% {
    filter: none;
  }

  30% {
    filter: grayscale(40%) brightness(120%);
  }

  60% {
    filter: grayscale(60%) brightness(150%);
  }

  100% {
    filter: grayscale(90%) brightness(180%);
  }
}

@media (prefers-reduced-motion: reduce){
  .spinner i {
    animation: none;
    opacity: 1; 
  }
}

.no-scroll { 
  overflow: hidden;
}

/*-- PC版表示CSS  --*/

.phone_area {
  display: none;
}

#phone_area {
  display: none;
}

/* ブラウザ別対応 */

/* Edge */
@supports (-ms-ime-align: auto) {
  .mdl-textfield__input_icon {
    display: none;
  }
}

/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 750px) {
  #pc_area {
    display: none;
  }

  .pc_area {
    display: none;
  }

  #phone_area {
    display: block;
  }
  .phone_area {
    display: block;
  }

  main {
    padding: 30px 5% 30px 5%;
    display: block;
  }

  /*-- ヘッダー  --*/

  .contents-title {
    font-size: 15px;
    padding: 5px;
  }

  .hed_t {
    padding: 10px 0px 10px;
  }

  .hed_t img {
    width: 150px;
    display: block;
    margin: 0 auto;
  }

  p {
    font-size: 14px;
  }
  /* ログアウト画面バナー */
  .banner_logout {
    text-align: center;
    margin-top: 10px;
  }

  .banner_logout img {
    width: 300px;
    height: 250px;
    margin: 15px;
  }
  #window_close,
  #btn_to_top {
    display: block;
    margin: auto;
    margin-top: 40px;
    width: 200px;
    height: 44px;
    font-size: 14px;
    color: var(--font-color);
    background-color: var(--main-color);
    border-radius: 22px;
    border: 0.5px solid var(--gray-color);
  }
}

@media screen and (max-width: 400px) {
  p {
    font-size: 14px;
  }
}

@media screen and (max-width: 350px) {
  .banner_logout img {
    width: 264px;
    height: 220px;
  }
}

@media screen and (max-width: 320px) {
  .banner_logout img {
    width: 264px;
    height: 220px;
  }
  .hed_t {
    padding: 10px 0px 10px;
  }
  .hed_t img {
    width: 130px;
  }
}

@media screen and (max-width: 280px) {
  .banner_logout img {
    width: 228px;
    height: 190px;
  }
}

@media print {
  body {
    background: var(--main-color);
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
    top: 0 !important;
    left: 0 !important;
    size: A4 landscape;
    overflow: visible;
    height: auto;
  }

  main {
    margin-top: 0px;
  }
  /*   Chrome のみ適用される  */
  _::content,
  _:future,
  main:not(*:root) {
    padding: 0px;
    padding-top: 30px;
    width: 1200px;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    transform-origin: 0 0;
  }

  /* Edge のみ適用される */
  @supports (-ms-ime-align: auto) {
    main {
      padding: 0px;
      padding-top: 30px;
      width: 1200px;
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      transform-origin: 0 0;
    }
  }
  /* Firefox */
  @-moz-document url-prefix() {
    main {
      padding: 0px;
      width: auto;
      transform: none;
      transform-origin: center;
    }
  }
  /* safari */
  _::-webkit-full-page-media,
  _:future,
  :root main {
    padding: 0px;
    padding-top: 30px;
    width: 1100px;
    -webkit-transform: scale(1);
    transform-origin: 0 0;
  }
}
