@charset "UTF-8";
/*======================================================================
 * サポートブログ
======================================================================*/
html {
  font-size: 10px;
}

.buffer-message {
  padding: 1em;
  margin-bottom: 2em;
  border: 2px solid #e08025;
  background-color: #e0802526;
}

/*------------------------------------------------------------
 * パンくず
------------------------------------------------------------*/
.support-banner.banner {
  padding-top: 5px;
  padding-bottom: 19px;
  color: inherit;
}
.support-banner.banner .breadcrumbs {
  margin: 19px 0 0;
}
.support-banner.banner * {
  color: inherit !important;
}
.support-banner.banner a {
  text-decoration: none;
}

/*------------------------------------------------------------
 * container
------------------------------------------------------------*/
.helpPage .adjust-width {
  max-width: 1080px;
}
.adjust-width {
  max-width: 815px;
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .adjust-width {
    width: calc(100% - 30px);
  }
}

.g-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.helpPage .g-menu {
  display: none;
}
.g-container .g-menu {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  /*  */
  width: 30%;
  max-width: 420px;
  padding: 30px 20px;
  background: #F1F1F1;
  text-align: center;
}
.g-container .g-menu > div {
  height: 100%;
}
.g-container .g-main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media screen and (max-width: 767px) {
  .g-container {
    display: block;
    padding-bottom: 125px;
  }
  .g-container .g-menu {
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: none;
  }
}

/*------------------------------------------------------------
 * 一覧
------------------------------------------------------------*/
.menu-toggle {
  display: none;
  width: 275px;
  max-width: 90%;
  margin: 0 auto 50px;
  padding: 10px;
  background: #eee;
  border: 3px solid #8F9DA1;
  border-radius: 25px;
  outline: none;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #8F9DA1;
}
@media screen and (max-width: 767px) {
  .menu-toggle {
    display: block;
    cursor: pointer;
  }
  .menu-toggle:last-child {
    margin-top: 70px;
    margin-bottom: 0;
  }
}

.support-menu {
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  position: sticky;
  top: 70px;
}
.support-menu ul {
  list-style: none;
  padding-left: 0;
  font-weight: bold;
}
.support-menu ul a {
  display: block;
  padding: 0;
  color: inherit;
  text-decoration: none;
}
.support-menu .hs-menu-wrapper {
  display: inline-block;
  padding-left: 30px;
  text-align: left;
}
.support-menu .hs-menu-wrapper ul {
  display: block;
  font-size: 1.6rem;
}
.support-menu .hs-menu-wrapper ul li:not(:last-child) {
  margin-bottom: 2rem;
}
.support-menu .hs-menu-wrapper ul a {
  color: inherit;
}
.support-menu .hs-menu-wrapper ul a::before {
  content: none !important;
}
.support-menu .hs-menu-wrapper ul a:hover {
  color: inherit;
}
.support-menu .hs-menu-wrapper .hs-menu-depth-1 {
  margin-bottom: 3rem;
}
.support-menu .hs-menu-wrapper .hs-menu-depth-1 ul {
  margin-top: 2rem;
}
.support-menu .hs-menu-wrapper .hs-menu-depth-1 > a {
  position: relative;
  font-size: 2rem;
}
.support-menu .hs-menu-wrapper .hs-menu-depth-1 > a .icon {
  display: block;
  position: absolute;
  top: 50%;
  left: -30px;
  width: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 0;
}
.support-menu .hs-menu-wrapper .hs-menu-depth-2 ul {
  padding-left: 10px;
  border-left: 2px solid #DDDDDD;
}
.support-menu .hs-menu-wrapper .hs-menu-depth-2 ul li {
  color: #A4AFB2;
}
.support-menu .hs-menu-wrapper .hs-menu-depth-2 ul li.active-branch {
  color: #e08025;
}
.support-menu .parent {
  display: inline-block;
  padding-left: 30px;
  text-align: left;
}
.support-menu .parent ul {
  margin-top: 30px;
  font-size: 1.6rem;
}
.support-menu .parent ul li:not(:last-child) {
  margin-bottom: 30px;
}
.support-menu .parent > li {
  margin-bottom: 80px;
}
.support-menu .parent > li > a {
  position: relative;
  font-size: 2rem;
}
.support-menu .parent > li > a .icon {
  display: block;
  position: absolute;
  top: 50%;
  left: -30px;
  width: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 0;
}
.support-menu .children li > span {
  display: block;
  cursor: pointer;
}
.support-menu .grandchild {
  display: none;
  padding-left: 10px;
  border-left: 2px solid #DDDDDD;
}
.support-menu .grandchild li {
  color: #A4AFB2;
}
.support-menu .grandchild li.current {
  color: #e08025;
}
.support-menu .grandchild.-js-opened {
  display: block;
}
@media screen and (max-width: 767px) {
  .support-menu {
    position: fixed;
    z-index: 100;
    top: 62px;
    left: 100%;
    width: 95%;
    height: calc(100% - 62px);
    max-height: 100%;
    padding: 25px 15px;
    background: #F1F1F1;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
  }
  .support-menu.-js-opened {
    left: auto;
    right: 0;
    opacity: 1;
    visibility: visible;
  }
  .support-menu ul li {
    margin-bottom: 20px;
  }
  .support-menu .parent ul {
    margin-top: 20px;
    font-size: 1.8rem;
  }
  .support-menu .parent > li > a .icon {
    left: -30px;
    width: 18px;
  }
  .support-menu .grandchild {
    font-size: 1.6rem;
  }
  .support-menu .menu-toggle {
    position: relative;
    margin-bottom: 40px;
  }
  .support-menu .menu-toggle::before, .support-menu .menu-toggle::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 20px;
    height: 3px;
    background: #8F9DA1;
    margin-top: -1px;
  }
  .support-menu .menu-toggle::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .support-menu .menu-toggle::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.overlay {
  display: none;
}
@media screen and (max-width: 767px) {
  .overlay {
    position: fixed;
    top: 62px;
    right: 0;
    width: 100%;
    height: calc(100% - 62px);
    background: rgba(0, 0, 0, 0.7);
    z-index: 90;
  }
  .overlay.-js-opened {
    display: block;
  }
}

/*------------------------------------------------------------
 * 一覧
------------------------------------------------------------*/
.listing-main-content {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .listing-main-content {
    line-height: 1.6;
  }
}
.listing-main-content h1 {
  margin-bottom: 40px;
  color: #494A52;
  font-size: 3.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .listing-main-content h1 {
    margin-bottom: 1.6em;
    font-size: 2.2rem;
  }
}
.listing-main-content h2 {
  margin: 0 0 40px;
  position: relative;
  padding-left: 40px;
  font-size: 2.4rem;
  font-weight: bold;
  color: inherit;
}
.listing-main-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 30px;
  height: 30px;
  border: 8px solid #e08025;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .listing-main-content h2 {
    margin-bottom: 2.05em;
    padding-left: 30px;
    font-size: 2rem;
  }
  .listing-main-content h2::before {
    top: 0;
    width: 20px;
    height: 20px;
    border-width: 5px;
  }
}
.listing-main-content .hs-horizontal-spacer {
  position: relative;
  display: block;
  height: 4px;
  background: #F1F1F1;
}
.listing-main-content .hs-horizontal-spacer::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 60px;
  background: #e08025;
  z-index: 1;
}

.support-blog-listing {
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .support-blog-listing {
    padding-bottom: 0;
  }
}
.support-blog-listing .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
  color: #494A52;
  font-size: 3.4rem;
  font-weight: bold;
}
.support-blog-listing .heading > span {
  display: block;
}
.support-blog-listing .heading .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 30px;
  margin-right: 10px;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .support-blog-listing .heading {
    margin-bottom: 1.6em;
    font-size: 2.2rem;
  }
  .support-blog-listing .heading .icon {
    width: 25px;
  }
}
.support-blog-listing .lead {
  margin-bottom: 70px;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .support-blog-listing .lead {
    margin-bottom: 4.2em;
    line-height: 1.6;
  }
}
.support-blog-listing .sub-heading {
  margin: 0 0 40px;
  position: relative;
  padding-left: 40px;
  font-size: 2.4rem;
  font-weight: bold;
  color: inherit;
}
.support-blog-listing .sub-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 30px;
  height: 30px;
  border: 8px solid #e08025;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .support-blog-listing .sub-heading {
    margin-bottom: 2.05em;
    padding-left: 30px;
    font-size: 2rem;
  }
  .support-blog-listing .sub-heading::before {
    top: 0;
    width: 20px;
    height: 20px;
    border-width: 5px;
  }
}
.support-blog-listing .sub-menu-list {
  position: relative;
  padding: 110px 0 70px;
  margin-top: -55px;
}
.support-blog-listing .sub-menu-list:last-child {
  padding-bottom: 0;
}
.support-blog-listing .sub-menu-list::before, .support-blog-listing .sub-menu-list::after {
  content: "";
  display: block;
  position: absolute;
  top: 65px;
  left: 0;
  height: 4px;
}
.support-blog-listing .sub-menu-list::before {
  width: 100%;
  background: #F1F1F1;
}
.support-blog-listing .sub-menu-list::after {
  width: 60px;
  background: #e08025;
  z-index: 1;
}
.support-blog-listing .sub-menu-list .grandchild {
  list-style: none;
  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;
  margin-bottom: -20px;
  padding-left: 50px;
}
.support-blog-listing .sub-menu-list .grandchild li {
  position: relative;
  width: 50%;
  margin-bottom: 20px;
  padding-left: 18px;
  font-size: 1.6rem;
  font-weight: bold;
}
.support-blog-listing .sub-menu-list .grandchild li::before {
  content: "";
  display: block;
  position: absolute;
  left: -4px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #e08025;
  border-right: 2px solid #e08025;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.support-blog-listing .sub-menu-list .grandchild li a {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .support-blog-listing .sub-menu-list {
    padding-top: 90px;
    margin-top: -45px;
  }
  .support-blog-listing .sub-menu-list::before, .support-blog-listing .sub-menu-list::after {
    top: 45px;
    height: 3px;
  }
  .support-blog-listing .sub-menu-list::after {
    width: 45px;
  }
  .support-blog-listing .sub-menu-list .grandchild {
    margin-bottom: -12px;
    padding-left: 0;
  }
  .support-blog-listing .sub-menu-list .grandchild li {
    width: 100%;
    margin-bottom: 12px;
    padding-left: 18px;
  }
  .support-blog-listing .sub-menu-list .grandchild li::before {
    left: -4px;
    top: 3px;
  }
}

.tag-listing-container {
  margin-top: 60px;
}

/*------------------------------------------------------------
 * 詳細
------------------------------------------------------------*/
.support-blog-post {
  padding-bottom: 160px;
}
.support-blog-post .blog-post-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 162px;
  margin-bottom: 40px;
  padding: 20px 0;
  background: #e08025;
}
.support-blog-post .blog-post-title > * {
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
}
.support-blog-post table * {
　　word-wrap: break-word; 　　/* IEやFirefox対応用 */
　　overflow-wrap: break-word;
   word-break: break-all;
}
@media screen and (max-width: 767px) {
  .support-blog-post {
    padding-bottom: 0;
  }
  .support-blog-post .blog-post-title {
    min-height: 125px;
    padding: 15px 0;
  }
  .support-blog-post .blog-post-title > * {
    font-size: 2.2rem;
  }
  .support-blog-post table * {
    font-size: 1.4rem;
  }
}



.post-body {
  font-size: 1.6rem;
  line-height: 1.8;
}
.post-body h2, .post-body h3, .post-body h4, .post-body h5, .post-body h6 {
  margin: 2.3em 0 1em;
  font-weight: bold;
  line-height: 1.3;
}
.post-body h2 + *, .post-body h3 + *, .post-body h4 + *, .post-body h5 + *, .post-body h6 + * {
  margin-top: 0;
}
.post-body h2 {
  font-size: 2.8rem;
  color: inherit;
}
.post-body h3 {
  font-size: 2.4rem;
  color: #e08025;
}
.post-body h4 {
  position: relative;
  padding-left: 14px;
  font-size: 2rem;
  color: inherit;
}
.post-body h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 4px;
  height: 1em;
  background: #e08025;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.post-body h5 {
  position: relative;
  padding-left: 25px;
  font-size: 1.8rem;
}
.post-body h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 13px;
  height: 13px;
  border: 3px solid #e08025;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.post-body h6 {
  font-size: 1.6rem;
  color: inherit;
}
.post-body hr {
  margin: 100px auto;
  position: relative;
  border: none;
  height: 4px;
  background: #F1F1F1;
}
.post-body hr::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 60px;
  background: #e08025;
}
.post-body table {
  border-collapse: collapse;
}
.post-body table th, .post-body table td {
  padding: 1em;
  border-color: #DECBCB;
  text-align: left;
  line-height: 1.3;
}
.post-body table th {
  background: #FFEBEB;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .post-body {
    line-height: 1.6;
  }
  .post-body h2 {
    font-size: 2rem;
  }
  .post-body h3 {
    font-size: 2rem;
  }
  .post-body h4 {
    padding-left: 14px;
    font-size: 1.8rem;
  }
  .post-body h5 {
    padding-left: 25px;
    font-size: 1.7rem;
  }
  .post-body h5::before {
    top: 4px;
  }
  .post-body hr {
    margin: 3em auto;
    height: 3px;
  }
  .post-body hr::before {
    height: 3px;
    width: 45px;
  }
}


/* リスト  */
/* 20231211追記 */
.m-select-post-listing .post-list {
  list-style: none;
  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;
  margin-bottom: -20px;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .m-select-post-listing .post-list {
    margin-bottom: -12px;
    padding-left: 0;
  }
}
.m-select-post-listing .post-list li {
  position: relative;
  width: 50%;
  margin-bottom: 20px;
  padding-left: 18px;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .m-select-post-listing .post-list li {
    width: 100%;
    margin-bottom: 12px;
    padding-left: 18px;
  }
}
.m-select-post-listing .post-list li::before {
  content: "";
  display: block;
  position: absolute;
  left: -4px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #e08025;
  border-right: 2px solid #e08025;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .m-select-post-listing .post-list li::before {
    left: -4px;
    top: 3px;
  }
}
.m-select-post-listing .post-list li a {
  text-decoration: none;
}