/*  */
.pc{
    display: block;
}
.sp{
    display: none;
}
@media screen and (max-width: 768px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}

/* 字詰め */
.palt{
    font-feature-settings: "palt";
}

/* ボタン 調整 */
a.btn{
    line-height: 62px;
    padding: 0;
    max-width: 592px;
    margin: auto;
}
@media screen and (max-width: 768px) {
    a.btn{
        line-height: 54px;
    }
}

/* 横幅 */
.w860{
    width: 860px;
    margin: auto;
}
@media screen and (max-width: 860px) {
    .w860{
        width: 88vw;
    }
}

.w900{
    width: 900px;
    margin: auto;
}
@media screen and (max-width: 860px) {
    .w900{
        width: 100%;
    }
}

/* パンくず スマホ用調整 */
@media screen and (max-width: 768px) {
    .breadcrumb {
        height: 40px;
        padding: 0 24px;
        background: #F9F9F9;
    }
}

/* 下層ページタイトル */
#under_pagetitle{
    text-align: center;
    padding: 80px 0;
    font-size: 40px;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    #under_pagetitle{
        padding: 48px 0;
        font-size: 24px;
    }
}

/* アンダーラインつきタイトル */
.title_underline{
    text-align: center;
    margin-bottom: 32px;
}
.title_underline p{
    display: inline-block;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.5em;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
}
.title_underline span{
    display: block;
    font-size: 24px;
}
@media screen and (max-width: 768px) {
    .title_underline p{
        font-size: 24px;
    }
}

/* ボーダーレフトつきタイトル */
.title_borderleft{
    margin-bottom: 32px;
}
.title_borderleft p{
    font-size: 26px;
    padding-left: 20px;
    font-weight: 700;
    border-left: 4px solid #000;
    line-height: 1.5em;
}
.title_borderleft p span{
    font-size: 16px;
    display: block;
    line-height: 1.5em;
}
@media screen and (max-width: 768px) {
    .title_borderleft{
        margin-bottom: 20px;
    }
    .title_borderleft p{
        font-size: 22px;
        padding-left: 16px;
    }
    .title_borderleft p span{
        font-size: 14px;
    }
}

/* ページネーション */
#pager{
    text-align: center;
    font-size: 0;
}
#pager .arrow{
    font-size: 14px;
    position: relative;
}
#pager .arrow::before{
    content: "";
    width: 7px;
    height: 12px;
    background: url('/html/template/default/assets/img/arrow-right-icon.png')no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}
#pager .arrow.prev{
    margin-right: 115px;
    padding-left: 17px;
}
#pager .arrow.prev::before{
    left: 0;
    transform: rotate(180deg);
}
#pager .arrow.next{
    margin-left: 115px;
    padding-right: 17px;
}
#pager .arrow.next::before{
    right: 0;
}
#pager .num{
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    width: 40px;
    line-height: 40px;
    background: #C3C4C4;
    display: inline-block;
    margin: 0 5px;
}
#pager .num.current{
    background: #000;
}
@media screen and (max-width: 768px) {
    #pager .arrow.prev{
        margin-right: 40px;
    }
    #pager .arrow.next{
        margin-left: 40px;
    }
}

/* ガイドページ共通 */
#guide_list{
    font-size: 16px;
    line-height: 1.7em;
}
#guide_list p{
    margin-bottom: 60px;
    font-weight: 500;
}
#guide_list dl{
    margin-bottom: 0;
}
#guide_list dl dt{
    border-top: 1px solid #E2E2E2;
    padding-top: 32px;
    margin-bottom: 20px;
    font-size: 20px;
}
#guide_list dl dd{
    padding-bottom: 32px;
    margin-left: 0;
}
#guide_list dl dd:last-of-type{
    padding-bottom: 0;
}
#guide_list ul{
    list-style-type: decimal;
    margin-left: 1em;
}
#guide_list ul li{
    margin-bottom: 16px;
}
#guide_list ul li:last-of-type{
    margin-bottom: 0;
}
@media screen and (max-width: 768px) {
    #guide_list{
        font-size: 14px;
    }
    #guide_list p{
        margin-bottom: 32px;
    }
    #guide_list dl dt{
        margin-bottom: 16px;
        font-size: 16px;
    }
}

/* 要素開閉ボタン */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slide-down {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.slide-up {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}
.content-wrap {
  height: 280px;
  overflow: hidden;
  position: relative;
  margin: 0;
}
.close-btn, .more-btn {
  display: block;
  width: 100%;
  padding: 80px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  background: -moz-linear-gradient(
    top,
    rgba(249, 249, 249, 0) 0%,
    rgba(249, 249, 249, 1) 60%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(249, 249, 249, 0) 0%,
    rgba(249, 249, 249, 1) 60%
  );
  background: linear-gradient(
    to bottom,
    rgba(249, 249, 249, 0) 0%,
    rgba(249, 249, 249, 1) 60%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(
      startColorstr='#00ffffff',
      endColorstr='#ffffff',
      GradientType=0
    );
}
.close-btn {
  background: none;
}
.slide-up {
  height: 280px;
  padding-bottom: 0;
  overflow: hidden;
}
.slide-down {
  height: auto;
  overflow: visible;
  padding-bottom: 50px;
}
.more-btn p {
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #000;
  cursor: pointer;
  max-width: 100%;
  text-align: center;
  line-height: 62px;
  padding: 0;
  max-width: 592px;
  margin: auto;
}
.close-btn {
  padding:0;
}
.close-btn p {
  /*background: #aaa;*/
}



/* ---------------------------------------------
    情報セキュリティ
------------------------------------------------ */
.under.security_policy{
    padding-bottom: 100px;
}
.under.security_policy #guide_list dd p{
    margin-bottom: 0;
}
.under.security_policy #guide_list dd * + p{
    margin-top: 16px;
}
.under.security_policy .security_box{
    margin-top: 16px;
}
.under.security_policy .security_box p{
    margin-bottom: 10px !important;
    font-weight: 700;
}
.under.security_policy .sign{
    text-align: right;
}
@media screen and (max-width: 768px) {
    .under.security_policy{
        padding-bottom: 64px;
    }
}



