@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  pageTitle

---------------------------------*/
#pageTitle {
  max-width: var(--txtWidth);
  margin: auto;
  width: 90%;
  padding: 10rem 0 3rem;
}
#pageTitle .inner {
  display: flex;
  align-items: baseline;
  gap: 2rem;
}
#pageTitle ._en {
  color: var(--col-bg);
  font-size: 3.5rem;
  font-weight: 700;
}
#pageTitle h1 {
  color: #7f7f7f;
  font-size: 1.4rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------

  パンくず

---------------------------------*/
#breadlist {
  background: var(--bg-col);
  font-size: 80%;
  list-style: none;
  margin: auto;
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}
#breadlist ol {
  margin: auto;
  max-width: var(--mainWidth);
  width: 90%;
  /*--*/
  text-align: right;
}
#breadlist li {
  display: inline-block;
}
#breadlist li::after {
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #ccc;
  content: '';
  display: inline-block;
  margin: 0 5px;
  width: 0;
  height: 0;
}
#breadlist li:last-child::after {
  content: none;
}
#breadlist li a, #breadlist li {
  color: var(--col-de);
  font-weight: 500;
}
#breadlist li:last-child a, #breadlist li:last-child {
  color: var(--col-bg);
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  #breadlist {
    margin: auto;
    padding: .5rem 0;
  }
}
/*---------------------------------

  リリースノート

---------------------------------*/
.newsBlock {
  padding: 0 0 15rem;
}
.newsBlock .l-inner {
  background: #fff;
  border-radius: 2rem;
  max-width: var(--txtWidth);
  padding: 3.5rem 5rem;
}
.newsBlock .infoBox {}
.newsBlock .infoBox ._infoList {
  list-style: none;
}
.newsBlock .infoBox ._infoList li {
  display: flex;
  gap: 4.5rem;
  padding: 3rem 0;
}
.newsBlock .infoBox ._infoList li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.newsBlock .infoBox ._infoList li time {
  color: #6D6865;
}
.newsBlock .infoBox ._infoList li p {
  font-weight: 500;
}
.newsBlock .infoBox ._infoList li p a {
  color: var(--col-de);
  display: inline-block;
  text-decoration: underline;
}
.newsBlock .infoBox ._infoList li p a:hover {
  color: var(--col-bl);
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .newsBlock {
    padding: 0 0 10rem;
  }
}
@media screen and (max-width: 896px) {
  .newsBlock .l-inner {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .newsBlock .l-inner {
    box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.05);
  }
  .newsBlock .infoBox ._infoList li {
    gap: 2rem;
    padding: 1.5rem 0;
  }
}
/*---------------------------------

  ページャー

---------------------------------*/
#pagerList {
  margin: 7rem 0 0;
}
#pagerList h2 {
  display: none;
}
#pagerList .nav-links {}
#pagerList .nav-links ul {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: 1.4rem;
  margin: 0;
}
#pagerList .nav-links ul li {
  min-width: 4rem;
  height: 4rem;
  text-align: center;
}
#pagerList .nav-links ul .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#pagerList .nav-links ul .page-numbers:not(.prev):not(.next):not(.current) {
  border-radius: 50%;
  background: #eee;
  color: var(--col-de);
}
#pagerList .nav-links ul .page-numbers.current {
  background: var(--col-bg);
  border-radius: 50%;
  color: #fff;
}
#pagerList .nav-links ul .page-numbers.dots {}
#pagerList .nav-links ul .page-numbers.prev, #pagerList .nav-links ul .page-numbers.next {
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 2px;
  height: 100%;
}
#pagerList .nav-links ul .page-numbers.prev {
  background: transparent url("../images/arrow_prev.svg") no-repeat center/1.5rem;
  padding: 0 2rem;
}
#pagerList .nav-links ul .page-numbers.next {
  background: transparent url("../images/arrow_next.svg") no-repeat center/1.5rem;
  padding: 0 2rem;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  #pagerList {
  margin: 4rem 0 0;
}
  #pagerList .nav-links ul {
    font-size: 1.2rem;
  }
  #pagerList .nav-links ul li {}
  #pagerList .nav-links ul .page-numbers.prev {}
  #pagerList .nav-links ul .page-numbers.next {}
}
/*---------------------------------

  詳細ページ

---------------------------------*/
.detailBlock {
  padding: 0 0 15rem;
}
.detailBlock .l-inner {
  max-width: var(--txtWidth);
}
.detailBlock .mainBox {
  background: #fff;
  border-radius: 2rem;
  padding: 5rem 7rem;
}
.detailBlock .data {
  font-weight: 600;
  font-size: .9em;
  margin-bottom: 3rem;
  text-align: right;
}
.detailBlock .title {
  margin-bottom: 1.6em;
}
.detailBlock .title h1 {
  font-size: 1.9em;
  font-weight: 800;
  letter-spacing: .05em;
}
.detailBlock .contentsTxt {
  font-weight: 500;
  letter-spacing: .06em;
}
.detailBlock .contentsTxt h2 {
  border-left: 4px solid var(--col-bg);
  font-size: 1.6em;
  margin: 2em 0 1.5em;
  padding-left: .5em;
}
.detailBlock .contentsTxt h3 {
  color: var(--col-bg);
  font-size: 1.2em;
  margin: 1.5em 0 1em;
}
.detailBlock .contentsTxt h4 {
  color: #777;
  font-weight: 800;
  font-size: 1.06em;
  margin: 1.5em 0 1em;
}
.detailBlock .contentsTxt p {
  line-height: 1.8;
  margin: .7em 0;
}
.detailBlock .contentsTxt a {
  color: var(--col-bl);
  text-decoration: underline;
}
.detailBlock .contentsTxt a:hover {
  text-decoration: none;
}
.detailBlock .contentsTxt a:visited {
  color: blueviolet;
}
.detailBlock .btn {
  margin: 5rem auto 0;
}
.detailBlock .btn a span {
  background: url("../images/arrow_next_w.svg") no-repeat center right .5rem/1.5rem;
  display: inline-block;
  padding-right: 3rem;
  transition: all .3s;
}
.detailBlock .btn a:hover span {
  background-position: center right 0rem;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .detailBlock {
    padding: 0 0 10rem;
  }
}
@media screen and (max-width: 480px) {
  .detailBlock .mainBox {

  padding: 3rem 2.5rem;
}
}