@charset "utf-8";

:root {
  --sp-header-height: 70px;
}

/* =============================================

  HEADER

============================================= */

.fPC{ display: block}
.fSP, .sb-slidebar{ display: none}

.header {
  border-bottom: 1px solid #D5DCE2;
}
.header .logo img {
  width: 107.5px;
}

.header .inner {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .inner::after {
  display: none;
}
.header__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.header__items ul {
  margin: 0;
  list-style: none;
}
.header-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.header-links a {
  font-size: 14px;
  text-decoration: none;
  color: #686868;
}
.header-links a:hover {
  color: #1E5FBF;
  text-decoration: underline;
}

.icon {
  display: inline-block;
  width: 1em;
  aspect-ratio: 1;
  vertical-align: middle;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon--language {
  -webkit-mask-image: url(/assets/img/common/language.svg);
  mask-image: url(/assets/img/common/language.svg);
}

/* =============================================

　Language selector

============================================= */

.langSelect {
  position: relative;
  overflow: visible;
  font-size: 12px;
  display: flex;
  justify-content: flex-end;
}
.langSelect__text {
  margin: 0;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #686868;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  border: 0;
  background: none;
}
.langSelect__text::after {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  border-top: 5px solid #686868;
  border-bottom: 0;
  content: '';
}
.langSelect__text:hover {
  color: #FFFFFF;
  background-color: #1E5FBF;
}
.langSelect__text:hover::after {
  border-top: 5px solid #FFFFFF;
}
.langSelect__text:focus {
  outline: 2px solid  #6FAEF2;
}
.langSelect__links {
  display: none;
  position: absolute;
  right: 0;
  top: 35px;
  z-index: 2;
}
.lang-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 150px;
  padding: 10px 20px;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: -2px 4px 10px 4px rgba(0, 0, 0, 0.2);
}
.lang-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: 14px;
  color: #0A1A2F;
}
.lang-links a.active {
  pointer-events: none;
}
.lang-links a.active,
.lang-links a:hover {
  color: #1E5FBF;
  font-weight: bold;
}
.icon--check {
  -webkit-mask-image: url(/assets/img/common/check.svg);
  mask-image: url(/assets/img/common/check.svg);
}

/* =============================================

  CONTENTS

============================================= */
.contents{
  position: relative;
  max-width: 950px;
  margin: 50px auto 0;
  padding: 0 15px;
}
.mCol{
  position: relative;
}
.mCol h1, .mCol h2, .mCol h3, .mCol strong, .mCol th {
  font-weight: 600;
}
.mCol h1{
  margin: 0 0 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #D5DCE2;
  font-size: 26px;
  line-height: 1;
}
.mCol h2{
  margin-bottom: 25px;
  padding: 18px 0;
  border-bottom: 1px solid #D5DCE2;
  font-size: 18px;
}
.mCol h3{
  margin-bottom: 15px;
  padding: 10px 20px;
  border-left: 5px solid #ababab;
}

.mCol p, .mCol li, .mCol th, .mCol td, .mCol dt, .mCol dd{
  line-height: 1.7;
  font-size: 14px;
}
.mCol p, .mCol ul, .mCol table{
  margin-bottom: 1.5em;
}
.mCol li{
  margin-left: 1.5em;
  list-style: square;
}
.mCol table{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: #FFFFFF;
}
.mCol th, .mCol td{
  padding: 15px;
  text-align: left;
  border: none;
}
.date{
  position: absolute;
  top: -40px;
  right: 0;
  text-align: right;
  line-height: 1.5 !important;
  font-size: 13px !important;
  margin: 0;
}
.cl1{
  background: #ababab;
  font-size: 15px;
}
.cl2{
  width: 30%;
}
.sTxt{
  font-size: 12px;
}
.liLink li, .linkIco{
  margin: 0 0 10px !important;
  padding-left: 20px;
  background: url(/terms/assets/img/bg_parts_pc.png) no-repeat 0 -80px;
  list-style: none;
}
.linkIco{
  display: inline-block;
  font-weight: normal;
}

/* Breadcrumb list
--------------------------------*/
.bnav{
  margin-top: -35px;
}
.bnav li{
  display: inline-block;
  font-size: 12px;
  margin: 0 0 20px 0;
}
.bnav li:after{
  content: ">";
  padding: 0 5px 0 10px;
}
.bnav li:last-child:after{
  content: "";
  padding: 0;
}

/* index.html
--------------------------------*/
.liIndex{
  width: 650px;
  margin-bottom: 10px !important;
  padding-top: 10px;
}
.liIndex li{
  position: relative;
  float: left;
  width: 203px;
  margin: 0 20px 20px 0 !important;
  list-style: none !important;
  font-weight: bold;
}
.liIndex li.lastL{
  margin-right: 0 !important;
}
.liIndex a{
  display: table-cell;
  width: 203px;
  height: 70px;
  background: url(/terms/assets/img/bg_liIndex.png) no-repeat 100% 100% #ababab;
  color: #FFFFFF;
  text-decoration: none;
  vertical-align: middle;
  text-align: center;
}
.liIndex a span{
  display: inline-block;
  margin: 0 auto;
  margin-left: 1.3em;
  text-indent: -1.3em;
  text-align: left;
}
.liIndex a:hover{
  opacity: 0.8;
}
.update {
  margin-bottom: 40px;
  text-align: right;
  line-height: 1.5;
  font-size: 14px;
}
.update span{
  display: block;
}

/* index.html - ol list
--------------------------------*/
.mCol ol{
  counter-reset: rule;
  margin: 0;
  padding-left: 0;
}
.mCol ol li{
  list-style: none;
  margin-bottom: 1.5em;
}
.mCol ol ol li{
  list-style: none;
  margin: 1em 0 0 2.5em;
  overflow-wrap: break-word;
}

.mCol ol li:before{
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  counter-increment: rule;
  content: counter(rule)".";
}
.mCol ol ol li:before{
  width: 2.5em;
  margin-left: -2.5em;
  content: "("counter(rule)")";
}

/* archive
--------------------------------*/
.archive ol{
  list-style: none;
  margin-top: -1em;
  margin-bottom: 1.5em;
}
.archive ol li{
  list-style: none;
  margin: 0 0 0 3em;
}
.archive ol li:before{
  width: 2em;
  margin-left: -2em;
  content: "("counter(rule)")";
}
.archive .itmTtl {
  font-weight: bold;
}


/* side menu
--------------------------------*/
.sCol .snav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sCol .snav a{
  display: block;
  margin-bottom: 1px;
  padding: 18px 20px 18px 40px;
  color: #0A1A2F;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  text-indent: -1.2em;
  background-color: #ababab;
  font-weight: 400;
  letter-spacing: normal;
}
.sCol .snav a::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url(/terms/assets/img/bg_parts_pc.png) no-repeat 0 -85px;
  margin-right: 4px;
}
.sCol .snav a:hover, .sCol .snav a:active{
  text-decoration: underline;
}
.sCol .snav a.active{
  color: #1E5FBF;
}
.sCol .snav a.active::before  {
  background: url(/terms/assets/img/bg_parts_pc.png) no-repeat 0 -35px;
}

/* =============================================

  FOOTER

============================================= */
.footer{
  margin-top: 10px;
  padding: 20px 0;
  background: #ababab;
  text-align: center;
}
.footer p{
  font-size: 12px !important;
}

@media screen and (min-width:801px){
  .contents {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 250px 1fr;
    grid-template-areas: "side contents";
    gap: 50px;
  }
  .mCol {
    grid-area: contents;
  }
  .sCol{
    grid-area: side;
  }
}/* @media screen 801*/
@media screen and (max-width:800px) {

  body{ -webkit-text-size-adjust: 100%; }

  .fPC, .bnav, .toTop{ display: none;}
  .fSP{ display: block;}

  h1{ font-size: 18px;}
  h2{ font-size: 14px;}
  h3{ font-size: 14px;}
  *{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
  }

  /* =============================================

    HEADER

  ============================================= */
  .header .logo img {
    width: 107px;
  }
  .header ul, .header .lang{
    right: 20px;
  }
  .sCol .fSP li a::before {
    display: inline-block;
    content: '';
    width: 13px;
    height: 13px;
    background: url(/terms/assets/img/bg_parts.png) no-repeat;
    background-size: cover;
    background-position: 0 3px;
    margin-right: 5px;
  }
  .sCol .fSP ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
  }

  .header-links {
    display: none;
  }
  .header__items {
    gap: 5px;
    align-items: center;
    flex-direction: row;
  }
  .sb-toggle-right {
    position: relative;
    width: 30px;
    height: 30px;
    border: none;
    background: no-repeat;
  }
  .sb-toggle-right > span {
    background-color: #0A1A2F000;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    transform: translate(-50%, -50%);
    transition: all .3s ease 0s;
  }
  .sb-toggle-right > span:nth-child(1) {
    margin-top: -7px;
  }
  .sb-toggle-right > span:nth-child(3) {
    margin-top: 7px;
  }
  .sb-active .sb-toggle-right > span:nth-child(1) {
    margin: 0;
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
  }
  .sb-active .sb-toggle-right > span:nth-child(2) {
    display: none;
  }
  .sb-active .sb-toggle-right > span:nth-child(3) {
    margin: 0;
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  }

  .header {
    position: fixed;
    top: 0;
    z-index: 2;
    background-color: #FFFFFF;
    width: 100%;
    height: var(--sp-header-height);
  }
  .header .inner {
    display: flex;
    align-items: center;
    height: var(--sp-header-height);
    padding: 15px;
    z-index:1;
  }
  .header .lang{
    right: 10px;
    top: 32px;
  }
  .header .lang a{
    padding-left: 10px;
    background: url(/terms/assets/img/bg_parts_sp.png) 0 -70px no-repeat;
    background-size: 30px auto;
  }
  .sb-slidebar {
    width: 100%;
  }
  .sb-slidebar ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
  }
  .sb-slidebar a{
    display: block;
    padding: 18px 25px 18px 15px;
    background: url(/terms/assets/img/bg_menu.png) no-repeat 97% 50%;
    background-size: 9px auto;
    border-bottom: 1px solid #D5DCE2;
    text-decoration: none;
    color: #0A1A2F;
    line-height: 1.4;
  }
  .etLink a{
    font-size: 13px;
    padding-left: 35px !important;
    background: url(/terms/assets/img/bg_parts.png) no-repeat 15px 21px;
    background-size: 13px auto;
  }

  .langSelect__links {
    top: 35px;
  }
  .langSelect__text::after {
    display: none;
  }
  .langSelect__text:hover {
    background: inherit;
    color: inherit;
  }
  .langSelect__text .icon {
    font-size: 22px;
    color: #0A1A2F;
  }

  /* =============================================

    CONTENTS

  ============================================= */
  #container {
    margin-top: var(--sp-header-height);
  }
  .contents{
    padding: 0;
  }
  .mCol{
    padding: 0 15px 30px;
  }
  .date{
    right: 15px;
  }

  /* archive
  --------------------------------*/
  .archive .content{
    background: #FFFFFFfff;
  }
  /* side menu
  --------------------------------*/
  .sCol .fSP li {
    display: inline;
    font-size: 12px;
    padding: 0 30px 0 0;
  }
  .sCol .fSP{
    padding: 20px 15px;
  }
  .sCol .fSP p a{
    display: block;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
    background: url(/terms/assets/img/bg_parts_sp.png) no-repeat 98% 122% #1E5FBF;
    background-size: 30px auto;
    color: #FFFFFF;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
  }

  /* =============================================

    FOOTER

  ============================================= */
  .footer{
    padding: 15px 0;
  }
}/* @media screen 800*/
@media screen and (max-width:600px) {
  .mCol h1 {
    font-size: 18px;
  }
  .mCol h2{
    font-size: 14px;
    width: 100%;
    display: table;
    vertical-align: middle;
    height: 60px;
    margin: 0;
    padding: 0 30px 0 10px;
    border-left: none;
    background: url(/terms/assets/img/bg_toggle_sp.png) no-repeat 96% 20px #abababeee;
    background-size: 17px auto;
  }
  .mCol h2.active{
    background-position: 96% -30px;
  }
  .mCol h2 span{
    display: table-cell;
    vertical-align: middle;
  }
  .mCol h3{
    margin-bottom: 10px;
    padding: 10px;
  }
  .content{
    display: none;
    padding: 15px 15px 1px;
  }
  .content table{
    margin-bottom: 15px;
  }
  .update{
    margin: 10px 0 0;
  }
}/* @media screen 600*/