@charset "UTF-8";
/*****************************************************************************
pageTitle
*****************************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family:
    "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  color: #333;
  background: #fff;
  line-height: 1.7;
}
a {
  color: #184e96;
  text-decoration: underline;
  transition: 0.2s;
}
a:hover {
  opacity: 0.8;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* BANNER */
.subPageTitle {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 120px;
  display: flex;
  align-items: center;
}
.subPageTitle .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px;
  width: 100%;
}
.subPageTitle .inner > p {
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin: 0;
}
.subPageTitle .inner > p > span {
  font-size: 1rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 6px;
}
.subPageTitle .inner > p > em {
  font-style: normal;
  font-weight: bold;
  font-size: 2rem;
  display: block;
}

/* CONTENT */
.faq.entry .subPageContent {
  margin-top: 0;
  background-color: #fff;
}
.subPageContent .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px 80px;
}
article.entry {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  line-height: 1.7;
}
article.entry .head {
  margin-top: 40px;
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}
.date {
  margin: 0 !important;
  text-align: right;
  color: #959596;
  font-size: 0.875rem;
}

/* HEADINGS */
article.entry h1 {
  margin: 0 0 30px;
  font-size: 32px;
  line-height: 1.4;
  color: #000;
  letter-spacing: 0.05em;
  border-left: 6px solid #dc0002;
  padding-left: 16px;
}
article.entry h2 {
  margin: 50px 0 20px;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.05em;
  background: #184e96;
  padding: 12px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
article.entry h2 .h2num {
  background: #fff;
  color: #184e96;
  font-size: 13px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
article.entry h3 {
  margin: 30px 0 14px;
  font-size: 19px;
  line-height: 1.5;
  color: #184e96;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #184e96;
  padding-bottom: 8px;
}
article.entry h4 {
  margin: 20px 0 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background: #f0f4fb;
  padding: 10px 14px;
  border-left: 4px solid #184e96;
}
article.entry p {
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
article.entry ul {
  margin: 1em 0;
  padding: 0 0 0 1.7em;
}
article.entry ul li {
  list-style-type: circle;
  margin-bottom: 0.4em;
}

/* TOC */
dl.contentIndex {
  margin: 2em 0;
  background: #e8ecf4;
  border: 1px solid #c5cfe0;
  border-radius: 6px;
  overflow: hidden;
}
dl.contentIndex dt {
  margin: 0;
  padding: 12px 16px 12px 20px;
  color: #184e96;
  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px solid #c5cfe0;
  background: #d0daf0;
}
dl.contentIndex dd {
  margin: 0;
}
dl.contentIndex a {
  display: block;
  padding: 9px 10px 9px 30px;
  color: #184e96;
  text-decoration: none;
  border-bottom: 1px solid #c5cfe0;
  transition: 0.2s;
  font-weight: bold;
  font-size: 14px;
}
dl.contentIndex a:hover {
  background: #f0f4fb;
  opacity: 1;
}
dl.contentIndex dd:last-child a {
  border-bottom: none;
}

/* STEP BOXES */
.stepBox {
  margin: 16px 0;
  border: 1px solid #dde4f0;
  border-radius: 8px;
  overflow: hidden;
}
.stepBox .stepHeader {
  background: #184e96;
  color: #fff;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.stepBox .stepNum {
  background: #fff;
  color: #184e96;
  font-weight: 900;
  font-size: 13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stepBox .stepTitle {
  font-size: 15px;
  font-weight: bold;
}
.stepBox .stepContent {
  padding: 14px 18px;
  background: #f9fafd;
}
.stepBox .stepContent p {
  margin: 0.5em 0;
}

/* STEP WITH IMAGE */
.stepWithImg {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.stepWithImg .stepText {
  flex: 1;
  min-width: 0;
}
.stepImgWrap {
  flex-shrink: 0;
  width: 160px;
}
.stepImgWrap img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #dde4f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* SCREEN GALLERY */
.screenGallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0;
}
.screenItem {
  text-align: center;
  flex: 0 0 auto;
}
.screenItem img {
  width: 150px;
  border-radius: 10px;
  border: 1px solid #dde4f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.screenItem .screenLabel {
  font-size: 12px;
  color: #555;
  margin-top: 6px;
  line-height: 1.3;
}

/* SCREEN SINGLE */
.screenSingle {
  margin: 16px 0;
  text-align: center;
}
.screenSingle img {
  max-width: 300px;
  border-radius: 10px;
  border: 1px solid #dde4f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}
.screenSingle .screenLabel {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

/* SCREEN ROW */
.screenRow {
  display: flex;
  gap: 12px;
  margin: 16px 0;
  flex-wrap: wrap;
  align-items: flex-start;
}
.screenRow .screenItem img {
  width: 160px;
}

/* FEATURE TABLE */
table.featureTable {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 15px;
}
table.featureTable thead tr th {
  background: #184e96;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: bold;
}
table.featureTable tbody tr:nth-child(odd) {
  background: #f4f7fc;
}
table.featureTable tbody tr:nth-child(even) {
  background: #fff;
}
table.featureTable tbody tr td {
  padding: 10px 14px;
  border-bottom: 1px solid #e0e8f4;
}
table.featureTable tbody tr td:first-child {
  font-weight: bold;
  color: #184e96;
  white-space: nowrap;
  width: 160px;
}

/* POINT BOX */
.pointBox {
  margin: 20px 0;
  padding: 14px 18px;
  background: #fffbea;
  border: 1px solid #f0d060;
  border-left: 5px solid #f0a000;
  border-radius: 4px;
}
.pointBox .pointLabel {
  font-weight: bold;
  color: #a06000;
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}

/* ERROR BOX */
.errorBox {
  background: #fff0f0;
  border: 1px solid #ffc0c0;
  border-left: 5px solid #dc0002;
  border-radius: 4px;
  padding: 14px 18px;
  margin: 16px 0;
}
.errorBox .errorLabel {
  font-weight: bold;
  color: #dc0002;
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}

/* SECTION DIVIDER */
.sectionDivider {
  height: 6px;
  background: linear-gradient(to right, #184e96, #dc0002);
  border-radius: 3px;
  margin: 50px 0 30px;
}

/* BACK BUTTON */
.ColumnBackBtn {
  margin: 50px 0 20px;
  text-align: center;
}
.BtnType03 a {
  display: inline-block;
  padding: 14px 40px;
  color: #184e96;
  text-decoration: none;
  border: 2px solid #184e96;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.2s;
}
.BtnType03 a:hover {
  background: #184e96;
  color: #fff;
  opacity: 1;
}

/* DOWNLOAD BUTTONS */
.downloadBtns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}
.downloadBtns a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  transition: 0.2s;
  color: #fff;
}
.downloadBtns a.ios {
  background: #000;
}
.downloadBtns a.android {
  background: #3ddc84;
  color: #000;
}
.downloadBtns a:hover {
  opacity: 0.85;
}

/* INTRO BANNER */
.appIntro {
  background: linear-gradient(135deg, #e8ecf8 0%, #f4f6fb 100%);
  border: 1px solid #c5cfe0;
  border-radius: 8px;
  padding: 24px 28px;
  margin: 24px 0;
  display: flex;
  gap: 24px;
  align-items: center;
}
.appIntro .appIntroText {
  flex: 1;
}
.appIntro .appIntroImg {
  flex-shrink: 0;
  width: 120px;
  text-align: center;
}
.appIntro .appIntroImg img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  header .inner {
    padding: 12px 15px;
    flex-wrap: wrap;
    gap: 10px;
  }
  nav {
    display: none;
  }
  #crumb ul {
    padding: 0 15px;
  }
  .subPageTitle .inner {
    padding: 20px 15px;
  }
  .subPageTitle .inner > p > em {
    font-size: 1.5rem;
  }
  .subPageContent .inner {
    padding: 0 15px 40px;
  }
  article.entry h1 {
    font-size: 22px;
  }
  article.entry h2 {
    font-size: 18px;
  }
  .stepWithImg {
    flex-direction: column;
  }
  .stepImgWrap {
    width: 100%;
    max-width: 200px;
  }
  .screenGallery {
    gap: 10px;
  }
  .screenItem img {
    width: 120px;
  }
  .screenRow .screenItem img {
    width: 130px;
  }
  table.featureTable tbody tr td:first-child {
    white-space: normal;
    width: auto;
  }
  .downloadBtns {
    flex-direction: column;
    align-items: center;
  }
  .vkNav01 nav ul {
    flex-direction: column;
  }
  .vkNav01 nav ul li a {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
  .appIntro {
    flex-direction: column;
  }
}
