@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  appearance: textfield;
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

@keyframes slidein {
  from {
    transform: translateY(300px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font: 1.6em "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #1588D8;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

@keyframes slidein {
  from {
    transform: translateY(300px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#header {
  background: #FFF;
}
#header .inner {
  max-width: 1050px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 15px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  #header .inner {
    gap: 10px;
    align-items: start;
  }
}
#header .inner .header-logo {
  padding-top: 5px;
  display: flex;
  align-items: center;
  gap: 10px 20px;
}
@media (max-width: 767px) {
  #header .inner .header-logo {
    align-items: center;
    gap: 16px;
    flex-direction: column;
    align-items: start;
  }
}
#header .inner .header-logo img {
  max-width: 100%;
  height: auto;
}
#header .inner .header-logo a:first-child {
  color: #000;
  font-size: 1.2rem;
  line-height: 1em;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
#header .inner .header-logo a:first-child .name {
  text-wrap: nowrap;
}
@media (max-width: 767px) {
  #header .inner .header-logo a:first-child {
    gap: 7px;
    justify-content: start;
  }
  #header .inner .header-logo a:first-child .logo img {
    max-width: none;
    height: 21px;
    width: auto;
  }
  #header .inner .header-logo a:first-child .name {
    line-height: 1.3em;
    font-size: 1rem;
  }
}
#header .inner .header-logo a:nth-child(2) {
  color: #333;
  font-size: 1.6rem;
  line-height: 1em;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  margin-top: -12px;
}
#header .inner .header-logo a:nth-child(2):hover {
  color: #1588D8;
}
@media (max-width: 767px) {
  #header .inner .header-logo a:nth-child(2) {
    font-size: 1.4rem;
    margin-top: 0;
  }
}
#header .inner .header-status {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  #header .inner .header-status {
    gap: 5px 2px;
    width: 170px;
  }
}
#header .inner .header-status p {
  color: #666;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1em;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5px;
}
#header .inner .header-status p b {
  color: #93ABBE;
}
#header .inner .header-status p img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  #header .inner .header-status p {
    font-size: 12px;
    align-items: center;
  }
  #header .inner .header-status p img {
    height: 20px;
    width: 25px;
    max-width: none;
  }
}
#header .inner .header-status a {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1em;
  text-align: center;
  text-decoration: none;
  background: #93ABBE;
  border: 1px solid #93ABBE;
  border-radius: 3px;
  display: block;
  padding: 4px 10px 6px;
  position: relative;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  #header .inner .header-status a {
    font-size: 1.2rem;
    padding: 5px;
  }
}
#header .inner .header-status a:after {
  content: "";
  background: #DFE6EC;
  height: 5.1961524227px;
  width: 6px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  position: absolute;
  bottom: 3px;
  right: 3px;
}
#header .inner .header-status a:hover {
  color: #93ABBE;
  background: #FFF;
}
#header .inner .header-status a:hover:after {
  background-color: #93ABBE;
}

main {
  background: #F4F6F5;
  flex: 1 0 auto;
}
main > .inner {
  max-width: 1050px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  main > .inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
main > .inner .cate-box {
  background: #F2F2F2;
  padding: 20px;
  margin: -15px -15px 40px;
}
@media (max-width: 767px) {
  main > .inner .cate-box {
    background: none;
    margin: -15px -15px 50px;
    padding: 0;
  }
}
main > .inner .cate-box:last-child {
  margin-bottom: 0;
}
main > .inner .cate-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  main > .inner .cate-box ul {
    gap: 0;
    border-top: 1px solid #bbb;
  }
}
main > .inner .cate-box ul li {
  font-size: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  main > .inner .cate-box ul li {
    font-size: 1.4rem;
    line-height: 1.3em;
    min-height: 4em;
    white-space: inherit;
    width: 50%;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
  }
  main > .inner .cate-box ul li:nth-child(even) {
    border-right: none;
  }
}
main > .inner .cate-box ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 8px;
}
@media (max-width: 767px) {
  main > .inner .cate-box ul li a {
    background: #F2F2F2;
    height: 100%;
    padding: 5px 20px;
    text-decoration: none;
    font-weight: bold;
  }
}
main > .inner .cate-box ul li a:before {
  content: "";
  background-image: url(../img/icon_release.gif);
  background-size: cover;
  display: inline-block;
  width: 21px;
  height: 17px;
}
main > .inner .cate-box ul li a:has(img):before {
  content: none;
  background: none;
  width: auto;
  height: auto;
}
main > .inner .news-list {
  list-style: none;
  margin: 0;
  padding: 0 1.5em;
}
@media (max-width: 767px) {
  main > .inner .news-list {
    padding: 0;
  }
}
main > .inner .news-list li {
  display: flex;
  justify-content: flex-start;
  gap: 5px 20px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  main > .inner .news-list li {
    flex-direction: column;
    margin: 0 -15px 0;
    padding: 10px 15px 15px;
    border-bottom: 1px dotted #ccc;
  }
  main > .inner .news-list li:nth-child(odd) {
    background: #f9f9f9;
  }
  main > .inner .news-list li:first-child {
    border-top: 1px dotted #ccc;
  }
}
main > .inner .news-list li .date {
  color: #999;
  white-space: nowrap;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  main > .inner .news-list li .date {
    font-size: 1.4rem;
  }
}
main > .inner .news-list li .support-title {
  padding-left: 30px;
}
@media (max-width: 767px) {
  main > .inner .news-list li .support-title {
    font-size: 1.5rem;
  }
}
main > .inner .news-list li .support-title span {
  background: #aaa;
  border-radius: 3px;
  display: inline-block;
  margin-right: 5px;
  padding: 2px 6px 5px 3px;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: -0.05em;
  line-height: 1em;
  text-decoration: none;
}
main > .inner .news-list li .support-title:has(> img + a) {
  padding-left: 30px;
  text-indent: -30px;
}
main > .inner .news-list li .support-title:has(> img + a) img {
  margin-right: 10px;
}
main > .inner .news-list li .support-title:has(> img + a) span {
  text-indent: 0;
  margin-left: 5px;
}
main > .inner .s-contact-box2 .support-btn-type2 a {
  color: #FFF;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3em;
  text-decoration: none;
  background: #ec4150;
  border-radius: 5px;
  padding: 25px;
  transition: all 0.3s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}
@media (max-width: 767px) {
  main > .inner .s-contact-box2 .support-btn-type2 a {
    font-size: 1.7rem;
    padding: 15px;
  }
}
main > .inner .s-contact-box2 .support-btn-type2 a:before {
  content: "";
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="30px" height="21px"%3E%3Cpath fill-rule="evenodd" fill="%23ffffff" d="M28.000,20.1000 L1.1000,20.1000 C0.895,20.1000 -0.000,20.105 -0.000,19.000 L-0.000,2.257 L14.646,15.608 C14.842,15.804 15.158,15.804 15.354,15.608 L30.000,2.257 L30.000,19.000 C30.000,20.105 29.105,20.1000 28.000,20.1000 ZM14.646,12.608 L1.075,0.237 C1.353,0.091 1.664,0.000 1.1000,0.000 L28.000,0.000 C28.336,0.000 28.647,0.091 28.925,0.237 L15.354,12.608 C15.158,12.804 14.842,12.804 14.646,12.608 Z"/%3E%3C/svg%3E');
  background-size: cover;
  width: 24px;
  height: 16px;
  display: inline-block;
}
main > .inner .s-contact-box2 .support-btn-type2 a:hover {
  transform: scale(1.03, 1.03);
}
main > .inner .s-logo {
  display: flex;
  justify-content: space-between;
  gap: 10px 40px;
}
@media (max-width: 767px) {
  main > .inner .s-logo {
    flex-direction: column;
    text-align: center;
  }
}
main > .inner .s-logo h1 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 30px;
  line-height: 1.3em;
}
@media (max-width: 767px) {
  main > .inner .s-logo h1 {
    order: 2;
    font-size: 2rem;
  }
}
main > .inner .s-logo h1 .subhead {
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 1.5em;
  display: block;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  main > .inner .s-logo h1 .subhead {
    text-align: center;
  }
}
main > .inner .s-logo h1 .subhead a {
  background: #aaa;
  border-radius: 3px;
  display: inline-block;
  margin-right: 5px;
  padding: 4px 6px 3px 3px;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: -0.05em;
  line-height: 1em;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  main > .inner .s-logo h1 .subhead a {
    display: inline-block;
  }
}
main > .inner .s-logo h1 .subhead br + a {
  margin-left: 15px;
}
@media (max-width: 767px) {
  main > .inner .s-logo h1 .subhead br + a {
    margin-left: 0;
  }
}
main > .inner .s-logo h1 .subhead .memberonly {
  color: #EC4150;
  border: 1px solid #EC4150;
  border-radius: 3px;
  display: inline-block;
  padding: 4px 6px 3px 3px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1em;
  letter-spacing: -0.05em;
}
main > .inner .s-logo h1 .subhead .memberonly img {
  max-height: 10px;
  width: auto;
  margin-right: 5px;
  vertical-align: middle;
}
main > .inner .s-logo p {
  margin: 0;
}
@media (max-width: 767px) {
  main > .inner .s-logo p {
    order: 1;
  }
}
main > .inner .s-logo p img {
  max-width: 200px;
  max-height: 40px;
  width: auto;
  height: auto;
}
@media (max-width: 767px) {
  main > .inner .s-logo p img {
    max-height: 15px;
  }
}
@media (max-width: 767px) {
  #support.entry main > .inner .s-logo h1 {
    font-size: 1.8rem;
    line-height: 1.5em;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
main > .inner .s-news-box {
  font-size: 1.6rem;
  line-height: 1.5em;
  background: #E3EAF0;
  margin-bottom: 20px;
  padding: 20px;
}
@media (max-width: 767px) {
  main > .inner .s-news-box {
    font-size: 1.4rem;
    line-height: 1.4em;
    margin-bottom: 15px;
    padding: 15px;
  }
}
main > .inner .s-news-box * {
  margin-top: 0;
}
main > .inner .s-news-box *:last-child {
  margin-bottom: 0;
}
main > .inner .s-news-box h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  main > .inner .s-news-box h2 {
    font-size: 1.6rem;
  }
}
main > .inner .s-box {
  background: #FFF;
  border: #E6E6E6 1px solid;
  margin: 0 0 20px;
  padding: 10px 20px;
  display: flex;
  align-items: flex-start;
  gap: 0 30px;
}
@media (max-width: 767px) {
  main > .inner .s-box {
    flex-direction: column;
    margin-bottom: 30px;
    padding: 10px 15px;
  }
}
main > .inner .s-box h2 {
  color: #999;
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  main > .inner .s-box h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  main > .inner .s-box .targetproduct {
    font-size: 1.5rem;
  }
}
main > .inner .s-list-box {
  background: #FFF;
  border: #E6E6E6 1px solid;
  margin: 0 0 30px;
  overflow: hidden;
  padding: 20px;
}
@media (max-width: 767px) {
  main > .inner .s-list-box {
    border: none;
    margin: 0 -15px 30px;
    padding: 15px;
  }
}
main > .inner .list-cate {
  margin-top: 40px;
}
main > .inner .cate-title {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0 20px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  main > .inner .cate-title {
    flex-direction: column;
    align-items: center;
  }
}
main > .inner .cate-title h2 {
  margin: 0;
  padding: 0;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  main > .inner .cate-title h2 {
    font-size: 2rem;
  }
}
main > .inner .cate-title h2 span {
  font-size: 1.6rem;
  font-weight: normal;
}
main > .inner .cate-title .list-more a {
  color: #1588D8;
  text-decoration: none;
}
main > .inner .cate-title .list-more a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #1588D8;
  line-height: 1;
  width: 5px;
  height: 5px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  margin-right: 5px;
  transform: translateX(-25%) rotate(45deg);
}
main > .inner .cate-title .list-more a:hover {
  color: #575757;
}
main > .inner .cate-title .list-more a:hover:before {
  color: #575757;
}
main > .inner .subcate-link {
  list-style: none;
  margin: 0;
  padding: 0 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
}
@media (max-width: 767px) {
  main > .inner .subcate-link {
    justify-content: center;
    margin: 0;
  }
}
main > .inner .subcate-link li a {
  color: #1588D8;
  font-size: 1.5rem;
  line-height: 1em;
  text-decoration: none;
  background: #F2F2F2;
  border-radius: 2px;
  display: inline-block;
  padding: 8px 10px;
  transition: all 0.3s ease 0s;
}
main > .inner .subcate-link li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #1588D8;
  line-height: 1;
  width: 5px;
  height: 5px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  margin-right: 5px;
  transform: translateX(-25%) rotate(45deg);
}
main > .inner .subcate-link li a:hover {
  color: #FFF;
  background: #1588D8;
}
main > .inner .subcate-link li a:hover:before {
  color: #FFF;
}
main > .inner .subcate-link li.active a {
  color: #FFF;
  background: #1588D8;
  pointer-events: none;
}
main > .inner .subcate-link li.active a:before {
  color: #FFF;
}
main > .inner .s-attention {
  border-top: 1px dotted #000;
  border-bottom: 1px dotted #000;
  padding: 20px 0;
  margin: 60px 0 0;
}
main > .inner .s-attention h3 {
  font-size: 1.4rem;
  line-height: 1em;
  margin: 0 0 20px;
}
main > .inner .s-attention p {
  font-size: 1.4rem;
  margin: 0;
}
main > .inner .list-cate.vizdl .cate-listbox2 .cate-list2 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(305px, 1fr));
  gap: 2px;
}
@media (max-width: 767px) {
  main > .inner .list-cate.vizdl .cate-listbox2 .cate-list2 {
    grid-template-columns: 1fr;
  }
}
main > .inner .list-cate.vizdl .cate-listbox2 .cate-list2 li {
  min-height: 60px;
}
main > .inner .list-cate.vizdl .cate-listbox2 .cate-list2 li a {
  line-height: 1.3em;
  text-decoration: none;
  background: #F2F2F2;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  transition: all 0.3s ease 0s;
  display: flex;
  align-items: center;
}
main > .inner .list-cate.vizdl .cate-listbox2 .cate-list2 li a:hover {
  color: #FFF;
  background: #1588D8;
}
main > .inner .list-cate.vizdl .cate-listbox2 .cate-list2 li a:hover:before {
  color: #FFF;
}
#support.archive main > .inner .s-list-box {
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  #support.archive main > .inner .s-list-box {
    padding-bottom: 0;
  }
}
#support.archive main > .inner #box-pagelink {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  #support.archive main > .inner #box-pagelink {
    margin: 0;
    padding: 15px 0;
  }
}
#support.archive main > .inner #box-pagelink .link-support1 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
@media (max-width: 767px) {
  #support.archive main > .inner #box-pagelink .link-support1 {
    display: none;
  }
}
#support.archive main > .inner #box-pagelink .link-support1 .link-brand {
  margin-bottom: 30px;
}
#support.archive main > .inner #box-pagelink .link-support1 .link-brand a:before {
  content: "";
  background: url(../img/icon_top.gif) no-repeat left center;
  background-size: cover;
  width: 20px;
  height: 18px;
  display: inline-block;
  margin-right: 5px;
}
#support.archive main > .inner #box-pagelink .link-support1 .link-parent:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #575757;
  line-height: 1;
  width: 5px;
  height: 5px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  margin-right: 5px;
  transform: translateX(-25%) rotate(45deg);
  margin: 0 10px;
}
#support.archive main > .inner #box-pagelink .link-support1 .link-parent.active a {
  pointer-events: none;
  color: #666;
  text-decoration: none;
}
#support.archive main > .inner #box-pagelink .link-support2 {
  list-style: none;
  margin: 0;
  padding: 0 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
}
@media (max-width: 767px) {
  #support.archive main > .inner #box-pagelink .link-support2 {
    justify-content: center;
    margin: 0;
  }
}
#support.archive main > .inner #box-pagelink .link-support2 li a {
  color: #1588D8;
  font-size: 1.5rem;
  line-height: 1em;
  text-decoration: none;
  background: #F2F2F2;
  border-radius: 2px;
  display: inline-block;
  padding: 8px 10px;
  transition: all 0.3s ease 0s;
}
#support.archive main > .inner #box-pagelink .link-support2 li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #1588D8;
  line-height: 1;
  width: 5px;
  height: 5px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  margin-right: 5px;
  transform: translateX(-25%) rotate(45deg);
}
#support.archive main > .inner #box-pagelink .link-support2 li a:hover {
  color: #FFF;
  background: #1588D8;
}
#support.archive main > .inner #box-pagelink .link-support2 li a:hover:before {
  color: #FFF;
}
#support.archive main > .inner #box-pagelink .link-support2 li.active a {
  color: #FFF;
  background: #1588D8;
  pointer-events: none;
}
#support.archive main > .inner #box-pagelink .link-support2 li.active a:before {
  color: #FFF;
}
#support.archive main > .inner .cate-box {
  margin: 50px -15px 0;
}
@media (max-width: 767px) {
  #support.archive main > .inner .cate-box {
    margin: 30px -15px 0;
  }
}
@media (max-width: 767px) {
  #support.archive main > .inner .cate-box ul {
    background: #F2F2F2;
    border-bottom: 1px solid #bbb;
  }
}
#support.archive main > .inner .cate-box ul li:first-child {
  width: 100%;
}
@media (max-width: 767px) {
  #support.archive main > .inner .cate-box ul li:nth-child(even) {
    border-right: 1px solid #bbb;
  }
  #support.archive main > .inner .cate-box ul li:nth-child(odd) {
    border-right: none;
  }
}
main > .inner #box-support {
  background: #FFF;
  border: #E6E6E6 1px solid;
  margin: 0 0 30px;
  overflow: hidden;
  padding: 20px;
}
@media (max-width: 767px) {
  main > .inner #box-support {
    border: none;
    margin: 0 -15px 30px;
    padding: 15px;
  }
}
main > .inner #box-support .inner .header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  main > .inner #box-support .inner .header {
    margin-bottom: 30px;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  main > .inner #box-support .inner .header .list {
    font-size: 1.4rem;
  }
}
main > .inner #box-support .inner .header .list a {
  text-decoration: none;
}
main > .inner #box-support .inner .header .list a:hover {
  text-decoration: underline;
}
main > .inner #box-support .inner .header .list a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #575757;
  line-height: 1;
  width: 5px;
  height: 5px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  margin-right: 5px;
  transform: translateX(-25%) rotate(45deg);
}
main > .inner #box-support .inner .header .update {
  text-align: right;
}
@media (max-width: 767px) {
  main > .inner #box-support .inner .header .update {
    font-size: 1.4rem;
  }
}
main > .inner #box-support .inner .box-content {
  padding: 0 30px 40px;
}
@media (max-width: 767px) {
  main > .inner #box-support .inner .box-content {
    padding: 0;
  }
}
main > .inner #box-support .inner .box-content h2 {
  font-size: 1.6rem !important;
  margin: 10px 0 0;
  color: #FFF !important;
  background: #93ABBE;
  padding: 10px;
}
main > .inner #box-support .inner .box-content img {
  max-width: 100%;
  height: auto;
}
main > .inner #box-support .inner .box-filedl {
  background: #F5F6FA;
  padding: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  main > .inner #box-support .inner .box-filedl {
    padding: 15px;
  }
}
main > .inner #box-support .inner .box-filedl a {
  color: #21428B;
  font-weight: bold;
  text-decoration: none;
  background: #FFF;
  border: 1px solid #21428B;
  border-radius: 3px;
  display: inline-block;
  padding: 15px 30px;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  main > .inner #box-support .inner .box-filedl a {
    padding: 15px;
    font-size: 1.4rem;
  }
}
main > .inner #box-support .inner .box-filedl a:hover {
  color: #FFF;
  background: #21428B;
}
main > .inner #box-support .inner .page-previous {
  padding-top: 50px;
  text-align: right;
}
@media (max-width: 767px) {
  main > .inner #box-support .inner .page-previous {
    border-top: 1px dotted #999;
    margin-top: 30px;
    padding-top: 10px;
    text-align: center;
    font-size: 1.4rem;
  }
}
main > .inner #box-support .inner .page-previous a {
  text-decoration: none;
}
main > .inner #box-support .inner .page-previous a:hover {
  text-decoration: underline;
}
main > .inner #box-support .inner .page-previous a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #575757;
  line-height: 1;
  width: 5px;
  height: 5px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  margin-right: 5px;
  transform: translateX(-25%) rotate(45deg);
}
#support.login main > .inner, #support.already-login main > .inner, #support.logout main > .inner, #support.password main > .inner, #support.pw_form main > .inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
#support.login main > .inner header, #support.already-login main > .inner header, #support.logout main > .inner header, #support.password main > .inner header, #support.pw_form main > .inner header {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  #support.login main > .inner header, #support.already-login main > .inner header, #support.logout main > .inner header, #support.password main > .inner header, #support.pw_form main > .inner header {
    text-align: center;
  }
}
#support.login main > .inner header h1, #support.already-login main > .inner header h1, #support.logout main > .inner header h1, #support.password main > .inner header h1, #support.pw_form main > .inner header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 10px;
  line-height: 1.3em;
}
@media (max-width: 767px) {
  #support.login main > .inner header h1, #support.already-login main > .inner header h1, #support.logout main > .inner header h1, #support.password main > .inner header h1, #support.pw_form main > .inner header h1 {
    font-size: 2rem;
  }
}
main > .inner .support-box {
  background: #FFF;
  border: #E6E6E6 1px solid;
  margin: 0 0 30px;
  overflow: hidden;
  padding: 20px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  main > .inner .support-box {
    border: none;
    margin: 0 -15px 30px;
    padding: 15px;
  }
}
@media (max-width: 767px) {
  main > .inner .support-box {
    margin: 0 -15px 15px;
    min-height: 150px;
  }
}
main > .inner .support-box .box-infotext p {
  font-weight: bold;
  font-size: 2.5rem;
  color: #1C5AB0;
}
@media (max-width: 767px) {
  main > .inner .support-box .box-infotext p {
    font-size: 1.6rem;
  }
}
main > .inner .pageback {
  text-align: center;
}
main > .inner .pageback p a {
  text-decoration: none;
}
main > .inner .pageback p a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #1588D8;
  line-height: 1;
  width: 5px;
  height: 5px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  margin-right: 5px;
  transform: translateX(-25%) rotate(45deg);
}
main > .inner .pageback p a:hover {
  text-decoration: underline;
}
#support.login main > .inner .support-box {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: start;
  gap: 40px;
  padding: 30px;
}
@media (max-width: 767px) {
  #support.login main > .inner .support-box {
    grid-template-columns: 1fr;
  }
}
#support.login main > .inner .support-box #loginform .box-infotext {
  margin-bottom: 30px;
}
#support.login main > .inner .support-box #loginform .box-infotext .read {
  font-size: 1.6rem;
  margin: 0;
}
#support.login main > .inner .support-box #loginform .box-infotext .finished {
  background: #FDECED;
  font-weight: bold;
  color: #EB4050;
  padding: 10px;
  margin: 15px 0 0;
  font-size: 1.5rem;
}
#support.login main > .inner .support-box #loginform .formblock label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
}
#support.login main > .inner .support-box #loginform .formblock label span {
  font-size: 1.4rem;
}
#support.login main > .inner .support-box #loginform .formblock input#user_id,
#support.login main > .inner .support-box #loginform .formblock input#password {
  outline: none;
  font-size: 1.8rem;
  margin: 0;
  padding-block: 10px;
  padding-inline: 10px;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #999;
}
#support.login main > .inner .support-box #loginform .formblock input#user_id:focus,
#support.login main > .inner .support-box #loginform .formblock input#password:focus {
  border-color: #1959B0;
  box-shadow: 0px 0px 7px -1px hsla(207, 100%, 50%, 0.5);
}
#support.login main > .inner .support-box #loginform .formblock .error .error-box {
  background: #FDECED;
  font-weight: bold;
  color: #EB4050;
  padding: 10px;
  margin: 15px 0 0;
  font-size: 1.5rem;
}
#support.login main > .inner .support-box #loginform .formblock .submitbtn {
  padding: 30px 0 0;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s ease 0s;
}
#support.login main > .inner .support-box #loginform .formblock .submitbtn:after {
  content: "";
  background: #DFE6EC;
  height: 5.1961524227px;
  width: 6px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 100;
}
#support.login main > .inner .support-box #loginform .formblock .submitbtn:hover {
  transform: scale(1.03, 1.03);
}
#support.login main > .inner .support-box #loginform .formblock .submitbtn input {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1em;
  background: repeating-linear-gradient(-45deg, #1959B0, #1959B0 5px, #2163B9 5px, #2163B9 10px);
  border: none;
  border-radius: 5px;
  width: 100%;
  padding: 20px;
  cursor: pointer;
}
#support.login main > .inner .support-box #loginform .forgetpassword {
  text-align: center;
}
#support.login main > .inner .support-box #box-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F2F2F2;
  padding: 30px;
  height: 100%;
}
#support.login main > .inner .support-box #box-contact .read {
  font-size: 1.5rem;
  font-weight: bold;
  color: #666;
  margin: 0;
  line-height: 1.8em;
}
#support.login main > .inner .support-box #box-contact .read span {
  display: block;
  padding-top: 10px;
  font-size: 1.4rem;
  line-height: 1.6em;
}
#support.login main > .inner .support-box #box-contact .contact .btn-info {
  margin: 30px 0 0;
}
#support.login main > .inner .support-box #box-contact .contact .btn-info a {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3em;
  text-decoration: none;
  background: #ec4150;
  border-radius: 5px;
  padding: 25px 15px;
  transition: all 0.3s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
@media (max-width: 767px) {
  #support.login main > .inner .support-box #box-contact .contact .btn-info a {
    font-size: 1.7rem;
    padding: 15px;
  }
}
#support.login main > .inner .support-box #box-contact .contact .btn-info a:before {
  content: "";
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="30px" height="21px"%3E%3Cpath fill-rule="evenodd" fill="%23ffffff" d="M28.000,20.1000 L1.1000,20.1000 C0.895,20.1000 -0.000,20.105 -0.000,19.000 L-0.000,2.257 L14.646,15.608 C14.842,15.804 15.158,15.804 15.354,15.608 L30.000,2.257 L30.000,19.000 C30.000,20.105 29.105,20.1000 28.000,20.1000 ZM14.646,12.608 L1.075,0.237 C1.353,0.091 1.664,0.000 1.1000,0.000 L28.000,0.000 C28.336,0.000 28.647,0.091 28.925,0.237 L15.354,12.608 C15.158,12.804 14.842,12.804 14.646,12.608 Z"/%3E%3C/svg%3E');
  background-size: cover;
  width: 24px;
  height: 16px;
  display: inline-block;
}
#support.login main > .inner .support-box #box-contact .contact .btn-info a:hover {
  transform: scale(1.03, 1.03);
}
#support.password main > .inner .support-box {
  padding: 30px;
}
#support.password main > .inner #forgetpassword {
  width: 80%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
#support.password main > .inner #forgetpassword .box-forgettext {
  width: 100%;
}
#support.password main > .inner #forgetpassword .box-forgettext h2 {
  margin: 0;
  font-size: 2.4rem;
  color: #1c5ab0;
}
#support.password main > .inner #forgetpassword .box-forgettext p {
  font-size: 1.8rem;
}
#support.password main > .inner #forgetpassword #passwordform {
  width: 100%;
}
#support.password main > .inner #forgetpassword #passwordform .password-box {
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  padding: 20px;
}
#support.password main > .inner #forgetpassword #passwordform .password-box p:nth-of-type(1) label {
  text-wrap: nowrap;
}
#support.password main > .inner #forgetpassword #passwordform .password-box p:nth-of-type(2) {
  width: 100%;
}
#support.password main > .inner #forgetpassword #passwordform .password-box p:nth-of-type(2) input[type=text] {
  outline: none;
  font-size: 1.8rem;
  margin: 0;
  padding-block: 10px;
  padding-inline: 10px;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #999;
}
#support.password main > .inner #forgetpassword #passwordform .password-box p:nth-of-type(3) input[type=submit] {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1em;
  background: repeating-linear-gradient(-45deg, #1959B0, #1959B0 5px, #2163B9 5px, #2163B9 10px);
  border: none;
  border-radius: 5px;
  width: 100px;
  height: 43px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
#support.password main > .inner #forgetpassword #passwordform .password-box p:nth-of-type(3) input[type=submit]:hover {
  background: repeating-linear-gradient(-45deg, #154891, #154992 5px, #1c549c 5px, #1d57a1 10px);
}
@media (max-width: 767px) {
  #support.password main > .inner .support-box {
    padding: 30px;
  }
  #support.password main > .inner #forgetpassword {
    width: 100%;
    min-height: auto;
  }
  #support.password main > .inner #forgetpassword .box-forgettext h2 {
    font-size: 2rem;
  }
  #support.password main > .inner #forgetpassword .box-forgettext p {
    font-size: 1.6rem;
  }
  #support.password main > .inner #forgetpassword #passwordform .password-box {
    flex-direction: column;
    gap: 15px;
    align-items: start;
  }
  #support.password main > .inner #forgetpassword #passwordform .password-box p {
    margin: 0;
  }
  #support.password main > .inner #forgetpassword #passwordform .password-box p:nth-of-type(2) {
    width: 100%;
  }
  #support.password main > .inner #forgetpassword #passwordform .password-box p:nth-of-type(2) input[type=text] {
    font-size: 16px;
  }
  #support.password main > .inner #forgetpassword #passwordform .password-box p:nth-of-type(3) {
    width: 100%;
  }
  #support.password main > .inner #forgetpassword #passwordform .password-box p:nth-of-type(3) input[type=submit] {
    width: 100%;
  }
}
#support.pw_form main > .inner .support-box {
  padding: 30px;
}
#support.pw_form main > .inner #pwform {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 20px;
  align-items: start;
  justify-content: start;
}
#support.pw_form main > .inner #pwform .error {
  font-weight: bold;
  color: #eb4050;
  padding: 0 0 10px 0;
  font-size: 1.6rem;
}
#support.pw_form main > .inner #pwform h2 {
  margin: 0;
  font-size: 2.4rem;
  color: #1c5ab0;
}
#support.pw_form main > .inner #pwform p {
  font-size: 1.8rem;
  width: 100%;
  margin: 0;
}
#support.pw_form main > .inner #pwform #amember_pw_form {
  display: grid;
  gap: 20px;
  width: 100%;
  background-color: #f2f2f2;
  padding: 20px 30px;
}
#support.pw_form main > .inner #pwform #amember_pw_form dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#support.pw_form main > .inner #pwform input[type=password] {
  outline: none;
  font-size: 16px;
  margin: 0;
  padding-block: 10px;
  padding-inline: 10px;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #999;
}
#support.pw_form main > .inner #pwform .submit {
  width: 100%;
  text-align: center;
}
#support.pw_form main > .inner #pwform .submit input[type=submit] {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1em;
  background: repeating-linear-gradient(-45deg, #1959B0, #1959B0 5px, #2163B9 5px, #2163B9 10px);
  border: none;
  border-radius: 5px;
  width: 200px;
  height: 43px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
#support.pw_form main > .inner #pwform .submit input[type=submit]:hover {
  background: repeating-linear-gradient(-45deg, #154891, #154992 5px, #1c549c 5px, #1d57a1 10px);
}
@media (max-width: 767px) {
  #support.pw_form main > .inner .support-box {
    padding: 30px;
  }
  #support.pw_form main > .inner #pwform {
    width: 100%;
  }
  #support.pw_form main > .inner #pwform h2 {
    font-size: 2rem;
  }
  #support.pw_form main > .inner #pwform p {
    font-size: 1.6rem;
  }
  #support.pw_form main > .inner #pwform #amember_pw_form dl dd {
    margin-inline-start: 0;
  }
  #support.pw_form main > .inner #pwform .submit input[type=submit] {
    width: 100%;
  }
}

#footer {
  flex-shrink: 0;
  background: #FFF;
}
#footer .inner {
  max-width: 1050px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 30px 0;
}
#footer .inner .footer-copy {
  color: #333;
  font-size: 1.3rem;
  text-align: center;
}

.backtotop {
  position: fixed;
  right: 15px;
  bottom: 20px;
  z-index: 9000;
}
.backtotop a {
  color: #777;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3em;
  text-align: center;
  text-decoration: none;
  background-color: #DDD;
  border-radius: 5px;
  display: block;
  margin: 0;
  padding: 20px 10px;
}

#support.top main header {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  #support.top main header {
    text-align: center;
    margin-bottom: 30px;
  }
}
#support.top main header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 10px;
  line-height: 1.3em;
}
@media (max-width: 767px) {
  #support.top main header h1 {
    font-size: 2rem;
  }
}
#support.top main header > p {
  text-align: right;
  margin: 0;
}
@media (max-width: 767px) {
  #support.top main header > p {
    font-size: 1.3rem;
    text-align: center;
  }
}
#support.top main #top--list .inner {
  background: #FFF;
  border: #E6E6E6 1px solid;
  margin-bottom: 40px;
}
#support.top main #top--list .inner .top--list-box {
  border-top: 1px solid #E6EBE9;
  min-height: 80px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  #support.top main #top--list .inner .top--list-box {
    flex-direction: column;
    padding: 15px 15px 20px;
  }
}
#support.top main #top--list .inner .top--list-box:first-child {
  border: none;
}
#support.top main #top--list .inner .top--list-box:nth-child(even) {
  background: #FBFBFB;
}
#support.top main #top--list .inner .top--list-box h2 {
  margin: 0;
  padding: 0;
  width: 30%;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 992px) {
  #support.top main #top--list .inner .top--list-box h2 {
    width: 40%;
  }
}
@media (max-width: 767px) {
  #support.top main #top--list .inner .top--list-box h2 {
    width: 100%;
    margin-bottom: 15px;
  }
}
#support.top main #top--list .inner .top--list-box h2 img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
#support.top main #top--list .inner .top--list-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 67%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 60px;
}
@media (min-width: 768px) and (max-width: 992px) {
  #support.top main #top--list .inner .top--list-box ul {
    gap: 0 30px;
    width: 57%;
  }
}
@media (max-width: 767px) {
  #support.top main #top--list .inner .top--list-box ul {
    width: 100%;
    justify-content: center;
  }
}
#support.top main #top--list .inner .top--list-box ul li {
  font-size: 1.7rem;
}
@media (max-width: 767px) {
  #support.top main #top--list .inner .top--list-box ul li {
    font-size: 1.6rem;
  }
}
#support.top main #top--list .inner .top--list-box ul li a {
  color: #1588D8;
  text-decoration: none;
}
#support.top main #top--list .inner .top--list-box ul li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #575757;
  line-height: 1;
  width: 5px;
  height: 5px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  margin-right: 5px;
  transform: translateX(-25%) rotate(45deg);
}
#support.top main #top--list .inner .top--list-box ul li a:hover {
  text-decoration: underline;
}
#support.top main #top--list .inner .top--list-box ul li a:hover:before {
  color: #1588D8;
}
#support.top main #info {
  margin-bottom: 30px;
}
#support.top main #info .inner h2 {
  font-size: 2rem;
  color: #1C5AB0;
  font-weight: bold;
  margin: 0 0 15px;
}
#support.top main #info .inner .info-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#support.top main #info .inner .info-list ul li {
  background: #FFF;
  padding: 7px 10px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
}
@media (max-width: 767px) {
  #support.top main #info .inner .info-list ul li {
    flex-direction: column;
    padding: 15px 15px;
  }
}
#support.top main #info .inner .info-list ul li .date {
  color: #999;
  font-size: 1.4rem;
  width: 11%;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #support.top main #info .inner .info-list ul li .date {
    width: 100%;
  }
}
#support.top main #info .inner .info-list ul li .support-title {
  width: calc(89% - 30px);
}
@media (max-width: 767px) {
  #support.top main #info .inner .info-list ul li .support-title {
    width: 100%;
    font-size: 1.4rem;
  }
}
#support.top main #info .inner .info-list ul li .support-title a {
  color: #333;
  text-decoration: none;
}
#support.top main #info .inner .info-list ul li .support-title a:hover {
  color: #1588D8;
  text-decoration: underline;
}
#support.top main #top--terms {
  background: #fff;
  margin-top: 40px;
  padding: 30px;
}
#support.top main #top--terms h2 {
  font-size: 1.7rem;
  font-weight: bold;
  margin: 0 0 20px;
  padding: 0;
}
#support.top main #top--terms p {
  font-size: 1.5rem;
  line-height: 1.8em;
  margin: 0;
  padding: 0;
}
#support.top main #top--terms .btn-terms {
  margin: 1em;
}
#support.top main #top--terms .btn-terms a {
  color: #1588D8;
  padding: 0;
  font-size: 1.6rem;
}
#support.top main #top--terms .btn-terms a:hover {
  text-decoration: none;
}
#support.top main #top--terms .btn-terms a:hover:before {
  color: #1588D8;
}
#support.top main #top--terms .btn-terms a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #333;
  width: 8px;
  height: 8px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  position: relative;
  top: -2px;
  margin-right: 5px;
}
#support.top main #top--terms .btn-terms a img {
  margin-left: 5px;
}
@media (max-width: 767px) {
  #support.top main #top--terms {
    padding: 20px;
  }
  #support.top main #top--terms p {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.5em;
  }
  #support.top main #top--terms p:last-child {
    margin-bottom: 0;
  }
  #support.top main #top--terms .btn-terms {
    margin: 2em 0;
  }
  #support.top main #top--terms .btn-terms a {
    font-size: 1.5rem;
  }
}

@keyframes slidein {
  from {
    transform: translateY(300px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hidden-md {
    display: none;
  }
  .visible-sm {
    display: none;
  }
  .visible-xs {
    display: none;
  }
  .visible-xss {
    display: none;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .hidden-md {
    display: none;
  }
  .visible-sm {
    display: block;
  }
  .visible-xs {
    display: none;
  }
  .visible-xss {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .hidden-sm {
    display: none;
  }
  .visible-sm {
    display: none;
  }
  .visible-xs {
    display: none;
  }
  .visible-xss {
    display: none;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none;
  }
  .visible-sm {
    display: none;
  }
  .visible-xs {
    display: block;
  }
  .visible-xs.inline {
    display: inline !important;
  }
  .visible-xss {
    display: none;
  }
}
@media (max-width: 320px) {
  .hidden-xss {
    display: none;
  }
  .visible-xss {
    display: block;
  }
  .visible-xss.inline {
    display: inline;
  }
}
.box-message-full {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.box-message-full .contents-frame {
  color: #FFF;
}