/* ==================================================
  reset
================================================== */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
}





/* ==================================================
  color
================================================== */

:root {
  --electric-blue: #024ad8;
  --power-storm: #568393;
  --orange-bloom: #ff5050;
  --standard-gray: #e6e6e6;
  --light-gray: #f2f2f2;

  --amd: #FFA133;
  --electric-blue-20: #ccdbf7;
}





/* ==================================================
  base
================================================== */

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
.visid {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
  line-height: 1.375;
}
.visid,
.visid *,
.visid *::before,
.visid *::after {
  box-sizing: border-box;
}
.visid img,
.visid video {
  vertical-align: bottom;
  max-width: 100%;
}
.visid sup {
  vertical-align: top;
  position: relative;
  top: .7em;
  font-size: 10px;
  line-height: 0;
}



/* ----------------------------------------
  a
---------------------------------------- */

.visid a {
  color: #007dba;
  text-decoration: none;
}
.visid a:hover {
  text-decoration: underline;
}
.visid a:visited {
  color: #822980;
}


/* images -------------------- */

.visid a img {
  transition: .2s;
}
.visid a:hover img {
  opacity: .7;
}



/* ----------------------------------------
  table
---------------------------------------- */

.visid table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.visid th,
.visid td {
  vertical-align: middle;
  padding: .8em 1em;
  border: 1px solid #000;
}

@media (max-width: 812px) {
  .visid th,
  .visid td {
    font-size: 14px;
  }
}





/* ==================================================
  common
================================================== */

/* ----------------------------------------
  cont_wrap
---------------------------------------- */

.cont_wrap {
  padding: 40px 20px;
}

@media (min-width: 813px) {
  .cont_wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1280px) {
  .cont_wrap {
    padding-right: 40px;
    padding-left: 40px;
  }
}



/* ----------------------------------------
  heading
---------------------------------------- */

h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1.4;
}

.x5l { font-size: 46px; line-height: 50px; }
.x4l { font-size: 46px; line-height: 50px; }
.x3l { font-size: 46px; line-height: 50px; }
.xxl { font-size: 40px; line-height: 46px; }
.xl { font-size: 30px; line-height: 34px; }
.h1 { font-size: 26px; line-height: 28px; }
.h2 { font-size: 24px; line-height: 26px; }
.h3 { font-size: 22px; line-height: 26px; }
.h4 { font-size: 20px; line-height: 24px; }
.h5 { font-size: 18px; line-height: 26px; }

@media (min-width: 813px) {
  .x5l { font-size: 90px; line-height: 96px; }
  .x4l { font-size: 90px; line-height: 96px; }
  .x3l { font-size: 90px; line-height: 96px; }
  .xxl { font-size: 60px; line-height: 66px; }
  .xl { font-size: 40px; line-height: 44px; }
  .h1 { font-size: 36px; line-height: 40px; }
  .h2 { font-size: 32px; line-height: 36px; }
  .h3 { font-size: 26px; line-height: 30px; }
  .h4 { font-size: 20px; line-height: 26px; }
}

@media (min-width: 1280px) {
  .x5l { font-size: 260px; line-height: 260px; }
  .x4l { font-size: 180px; line-height: 180px; }
  .x3l { font-size: 112px; line-height: 116px; }
  .xxl { font-size: 70px; line-height: 74px; }
  .xl { font-size: 50px; line-height: 52px; }
  .h1 { font-size: 40px; line-height: 42px; }
  .h2 { font-size: 34px; line-height: 40px; }
  .h3 { font-size: 28px; line-height: 34px; }
  .h4 { font-size: 22px; line-height: 28px; }
  .h5 { font-size: 20px; line-height: 28px; }
}


/* hLine -------------------- */

.hLine {
  display: flex;
  align-items: center;
  gap: .5em;
  text-align: center;
}
.hLine::before,
.hLine::after {
  content: "";
  flex-grow: 1;
  border-top: 1px solid #000;
}


/* title_line -------------------- */

.title_line {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}


/* title_bar -------------------- */

.title_bar {
  padding: 10px 20px 12px;
  color: #fff;
  text-align: center;
  background: var(--amd);
}



/* ----------------------------------------
  margin
---------------------------------------- */

.xxl + p { margin-top: 20px; }
.xl + p { margin-top: 20px; }
.h1 + p { margin-top: 10px; }
.h2 + p { margin-top: 16px; }
.h3 + p { margin-top: 16px; }
.h4 + p { margin-top: 10px; }
.h5 + p { margin-top: 10px; }

.visid p + p,
.visid div + p,
.visid table + p,
.visid ul + p,
.visid ol + p,
.visid dl + p
.visid img + p {
  margin-top: 1em;
}



/* ----------------------------------------
  text
---------------------------------------- */

.tcenter { text-align: center !important; }
.tleft { text-align: left !important; }
.tright { text-align: right !important; }

.fw_normal { font-weight: normal !important; }
.fw_bold, .bold { font-weight: bold !important;}



/* ----------------------------------------
  button
---------------------------------------- */

a.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
  vertical-align: bottom;
  padding: .5em 1.2em;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  background: #000;
}
a.button:link,
a.button:visited,
a.button:hover,
a.button:focus {
  color: #fff;
  text-decoration: none;
}
a.button:hover {
  background: #5a5a5a;
}
a.button.slim {
  font-size: 13px;
}
a.button.sslim {
  font-size: 11px;
}


/* large -------------------- */

a.button.large {
  padding: .8em 1.2em;
  font-size: 20px;
}

@media (min-width: 1024px) {
  a.button.large {
    font-size: 22px;
  }
}


/* line -------------------- */

a.button.line {
  border: 2px solid #000;
}
a.button.line:hover {
  color: #000;
  background: #fff;
}


/* icon -------------------- */

a.button.icon {
  flex-direction: row;
  gap: 16px;
}
a.button.icon::after {
  content: "";
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: 0 0;
  filter: invert(1);
}

/* quote */
a.button.quote::after {
  background-image: url(images/img-icon-quote.png);
}

/* download */
a.button.download::after {
  background-image: url(images/img-icon-download.png);
}



/* ----------------------------------------
  notes
---------------------------------------- */

.notes {
  padding-left: 1em;
  font-size: 12px;
  line-height: 1.33;
  text-indent: -1em;
}
.notes > li:nth-child(n+2) {
  margin-top: .5em;
}


/* num -------------------- */

.notes_num {
  counter-reset: num;
  font-size: 12px;
  line-height: 1.33;
}
.notes_num > li {
  position: relative;
  padding-left: 3em;
}
.notes_num > li:nth-child(n+2) {
  margin-top: .5em;
}
.notes_num > li::before {
  counter-increment: num;
  content: "\203B" counters(num, "-") "";
  position: absolute;
  left: 0;
}



/* ----------------------------------------
  list_basic
---------------------------------------- */

.list_basic > li {
  position: relative;
  padding-left: 1em;
  line-height: 1.6;
}
.list_basic > li:nth-child(n+2) {
  margin-top: .5em;
}
.list_basic > li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: .2em;
  font-family: Arial;
  font-size: 130%;
  line-height: 1;
}



/* ----------------------------------------
  table - scroll
---------------------------------------- */

.table_scroll {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table_scroll::-webkit-scrollbar {
  height: 8px;
}
.table_scroll::-webkit-scrollbar-track {
  background: #e6e6e6;
}
.table_scroll::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--electric-blue);
}





/* ==================================================
  navi
================================================== */

.navi {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  text-align: center;
}
.navi_title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 10px 14px;
  line-height: 1.2;
  background: #FAE9D6;
  border: 2px solid var(--amd);
}
.navi_list {
  flex-grow: 1;
  display: grid;
  gap: 10px;
}
.navi_list > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  width: 100%;
  height: 100%;
  padding: 12px 10px 14px;
  line-height: 1.2;
  border: 2px solid var(--electric-blue);
}
.navi_list > li a:link,
.navi_list > li a:visited {
  color: var(--electric-blue);
  background: var(--electric-blue-20);
  text-decoration: none;
}
.navi_list > li a:hover {
  color: #fff;
  background: var(--electric-blue);
}

@media (max-width: 812px) {
  .navi_title br,
  .navi_list br {
    display: none;
  }
}

@media (min-width: 813px) {
  .navi {
    flex-wrap: nowrap;
  }
  .navi_title {
    flex-shrink: 0;
    width: calc((100% - 50px) / 6);
  }
  .navi_list {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1280px) {
  .navi_list > li a {
    font-size: 18px;
  }
}





/* ==================================================
  amd
================================================== */

.amd > .cont_wrap > * + * {
  margin-top: 40px;
}

@media (min-width: 813px) {
  .amd > .cont_wrap > * + * {
    margin-top: 60px;
  }
}



/* ----------------------------------------
  logoText
---------------------------------------- */

.logoText {
  display: grid;
  gap: 30px 40px;
  text-align: center;
}
.logoText .media {
  text-align: center;
}

@media (min-width: 813px) {
  .logoText {
    grid-template-columns: 320px auto;
    align-items: center;
    justify-content: center;
    text-align: left;
  }
}



/* ----------------------------------------
  imgText
---------------------------------------- */

.imgText {
  display: grid;
  gap: 20px 40px;
}
.imgText .media {
  text-align: center;
}

@media (min-width: 813px) {
  .imgText {
    grid-template-columns: 40% 1fr;
    align-items: center;
  }
}



/* ----------------------------------------
  amd_chara
---------------------------------------- */

.amd_chara {
  padding: 30px 20px;
  background: var(--light-gray);
}
.amd_chara_list {
  display: grid;
  gap: 30px;
}
.amd_chara_list > li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 20px;
}
.amd_chara_list .title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  background: #FFC000;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

@media (min-width: 813px) {
  .amd_chara {
    padding: 30px;
  }
  .amd_chara_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .amd_chara {
    padding: 40px;
  }
  .amd_chara_list {
    gap: 40px;
  }
}



/* ----------------------------------------
  imgText2
---------------------------------------- */

.imgText2 {
  display: grid;
  gap: 20px 40px;
}
.imgText2 .media {
  text-align: center;
}

@media (min-width: 813px) {
  .imgText2 {
    grid-template-columns: 1fr 220px;
    align-items: center;
  }
}



/* ----------------------------------------
  iconText_list
---------------------------------------- */

.iconText_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.iconText_list > li {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: var(--light-gray);
}
.iconText_list .media {
  text-align: center;
}

@media (min-width: 813px) {
  .iconText_list > li {
    flex-direction: row;
    align-items: center;
  }
  .iconText_list .media {
    flex-shrink: 0;
    width: 160px;
  }
  .iconText_list .cont {
    flex-grow: 1;
  }
}





/* ==================================================
  login
================================================== */

.login {
  padding-bottom: 40px;
  text-align: center;
}
.login .button {
  margin-top: 20px;
}

@media (min-width: 813px) {
  .login {
    padding-bottom: 60px;
  }
}





/* ==================================================
  product
================================================== */

/* ----------------------------------------
  prod_title
---------------------------------------- */

.prod_title h2 span {
  display: block;
  padding: 8px 20px 10px;
  color: #fff;
  text-align: center;
}
.prod_title .h3 {
  background: var(--amd);
}
.prod_title .h2 {
  background: var(--power-storm);
}



/* ----------------------------------------
  prod_main
---------------------------------------- */

.prod_main {
  display: flex;
  flex-direction: column-reverse;
}
.prod_main .cont {
  padding: 40px 20px;
}
.prod_main .cont h2 {
  margin-top: 10px;
}
.prod_main .cont .spec {
  margin-top: 40px;
}
.prod_main .media {
  text-align: center;
}

@media (max-width: 1023px) {
  .prod_main .cont {
    text-align: center;
  }
  .prod_main .cont h2 br {
    display: none;
  }
}

@media (min-width: 1024px) {
  .prod_main {
    flex-direction: row;
  }
  .prod_main .cont,
  .prod_main .media {
    width: 50%;
  }
  .prod_main .cont {
    padding-right: 30px;
    padding-left: 30px;
  }
  .prod_main .media {
    padding-bottom: 40px;
  }
}



/* ----------------------------------------
  prod_content
---------------------------------------- */

.prod_content {
  padding: 0 20px 40px;
}
.prod_content > * + * {
  margin-top: 40px;
}

@media (min-width: 813px) {
  .prod_content {
    padding-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .prod_content {
    padding: 0 30px 60px;
  }
}



/* ----------------------------------------
  prod_cta
---------------------------------------- */

.prod_cta_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prod_cta_list > li {
  width: 100%;
  max-width: 460px;
}
.prod_cta_list .button {
  width: 100%;
  height: 100%;
}
.prod_cta_list .notes {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .prod_cta_list {
    flex-direction: row;
    justify-content: center;
  }
  .prod_cta_list > li {
    flex: 1;
  }
}



/* ----------------------------------------
  prod_point
---------------------------------------- */

/* prod_point_title -------------------- */

.prod_point_title {
  padding: 8px 20px 10px;
  color: #fff;
  text-align: center;
  background: var(--electric-blue);
}


/* prod_point_top -------------------- */

.prod_point_top {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px 40px;
  margin-top: 30px;
}
.prod_point_top .media {
  text-align: center;
}

@media (min-width: 813px) {
  .prod_point_top {
    flex-direction: row;
    padding: 0 20px;
  }
  .prod_point_top .media {
    flex-shrink: 0;
    align-self: center;
    width: 50%;
  }
}


/* prod_point_list -------------------- */

.prod_point_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.prod_point_list > li {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: var(--light-gray);
}
.prod_point_list .media {
  text-align: center;
}

@media (min-width: 813px) {
  .prod_point_list > li {
    flex-direction: row;
  }
  .prod_point_list > li:nth-child(even) {
    flex-direction: row-reverse;
  }
  .prod_point_list .media {
    flex-shrink: 0;
    width: 320px;
  }
  .prod_point_list .cont {
    align-self: center;
  }
}


/* prod_acce_point_list -------------------- */

.prod_acce_point_list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.prod_acce_point_list .cont {
  padding: 20px;
  background: var(--light-gray);
}
.prod_acce_point_list .media {
  text-align: center;
}

@media (min-width: 813px) {
  .prod_acce_point_list .full {
    grid-column: span 2;
  }
  /* monitor-322pf */
  #monitor-322pf .prod_acce_point_list {
    grid-template-columns: calc((440 / 1220) * 100%) 1fr;
  }
  #monitor-322pf .prod_acce_point_list .half {
    grid-column: 2;
  }
  #monitor-322pf .prod_acce_point_list .media {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row: span 4;
  }
  /* voyager-legend50 */
  #voyager-legend50 .prod_acce_point_list {
    grid-template-columns: 1fr calc((440 / 1220) * 100%);
  }
  #voyager-legend50 .prod_acce_point_list .half {
    grid-column: 1;
  }
  #voyager-legend50 .prod_acce_point_list .media {
    grid-row: 1 / span 3;
    grid-column: 2;
  }
  #voyager-legend50 .prod_acce_point_list .media img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}



/* ----------------------------------------
  prod_spec
---------------------------------------- */

/* prod_spec_table -------------------- */

.prod_spec_table {
  table-layout: fixed;
  width: 100%;
  overflow-wrap: break-word;
  border-collapse: collapse;
  background: #fff;
}
.prod_spec_table th,
.prod_spec_table td {
  padding: .6em .8em;
  font-size: 14px;
  text-align: center;
  border: 1px solid #ccc;
}
.prod_spec_table th {
  font-weight: bold;
  background: #f2f2f2;
}
.prod_spec_table tbody th {
  width: 100px;
  text-align: left;
}

@media screen and (max-width: 812px) {
  .prod_spec_table th,
  .prod_spec_table td {
    font-size: 12px;
  }
}

@media screen and (min-width: 1024px) {
  .prod_spec_table tbody th {
    width: 180px;
  }
}


/* table_scroll -------------------- */

@media screen and (max-width: 812px) {
  .table_scroll .prod_spec_table {
    width: 773px;
  }
  .prod_spec + .notes + * {
    margin-top: 1em;
  }
}

@media screen and (min-width: 813px) {
  .prod_spec + .notes {
    display: none;
  }
}


/* acce -------------------- */

.prod_spec_table.acce th {
  text-align: center;
}



/* ----------------------------------------
  prod_download
---------------------------------------- */

.prod_download {
  padding: 20px;
  margin-top: 10px;
  text-align: center;
  background: var(--electric-blue-20);
}
.prod_download .button {
  margin-top: 15px;
}





/* ==================================================
  footer
================================================== */

.footer {
  padding: 30px 20px;
}
.footer_list {
  font-size: 14px;
}
.footer_list a:link,
.footer_list a:visited {
  color: #000;
  text-decoration: none;
}
.footer_list a:hover {
  color: #000;
  text-decoration: underline;
}
.footer .copyright {
  font-size: 12px;
}

@media (min-width: 813px) {
  .footer {
    text-align: center;
  }
  .footer_list {
    display: flex;
    justify-content: center;
  }
  .footer_list > li:not(:last-child)::after {
    content: "|";
    margin: 0 20px;
  }
}
