
@charset "UTF-8";
:root{
  /* 色 */
  --txtColor: #161616;
  --mainColor: #D83309;
  --footerLinkColor: #152666;
  /* フォント */
  --ff_ZenKakuAntique: "Zen Kaku Gothic Antique", sans-serif;
  --ff_NotoSans: "Noto Sans JP", sans-serif;
  --ff_PlusJakarta: "Plus Jakarta Sans", sans-serif;
  --ff_Oswald: "Oswald", sans-serif;
}

*{
  color: var(--txtColor);
  font-family: var(--ff_NotoSans);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

html,
figure,
img{display: block;width: 100%;max-width: 100%;height: auto;}
a{transition: .3s;}
a:hover{opacity: 0.8;}
a:visited{color: currentColor;}

/* .main-contents{
  min-width: 1100px;
} */
 body{min-width: auto;}
.inner{
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
  margin: 0 auto;
}
.flex{
  display: flex;
  justify-content: space-between;
}

@media all and (min-width: 768px){
  .pc_cont{display: block;}
  .sp_cont{display: none;}
}
/* ============================================== */
/* 共通 */
/* ============================================== */
.dl_link img{
  display: block;
  max-height: 40px;
  width: auto;
}
.dl_link img[src*="dl_app"] {
    aspect-ratio: 1 / 0.37;
}
.dl_link img[src*="dl_google"] {
    aspect-ratio: 1 / 0.298;
}
area{ cursor: pointer; }
/* ============================================== */
/*                    ヘッダー                    */
/* ============================================== */
.ham{display: none;}
.ham span {font-size: 0;}
header{
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px 25px;
  transition: .3s;
  flex-wrap: wrap;
  border-bottom: solid 1px #D9D9D9;
}
header > p{width: 140px;}
header > p a{display: block;}

header nav ul{
  display: flex;
  align-items: center;
}

header nav ul a{
  position: relative;
  z-index: 0;
  display: block;
  margin: 0 2em 0 0;
  font-size: 14px;
  font-weight: 700;
}
header nav ul a.dl_link{margin: 0 8px 0 0;}
header nav ul li:last-of-type a.dl_link{margin: 0;}

/* あしらい */
header nav ul a:not(:has(img))::before{
  position: absolute;
  z-index: 0;
  inset: auto -100% -.5em;
  margin: auto;
  content: '';
  width: 95%;
  height: 1px;
  background: var(--txtColor);
  transform: scaleX(0);
  transition: .3s;
}
header nav ul a:not(:has(img)):hover{opacity: 1;}
header nav ul a:not(:has(img)):hover::before{
  transform: scaleX(1);
}

/* 202509改修追記 PCヘッダーQRコード調整------------------- */

/* END：202509改修追記 PCヘッダーQRコード調整------------------- */


/* ============================================== */
/* ヘッダーアンカーに く 追加 */
/* ============================================== */
header nav ul a:not(:has(img)) {
  padding-right: .8em;
}
header nav ul a:not(:has(img))::after {
  content: "";
  position: absolute;
  top: 44%;
  right: 0;
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid #666;
  border-radius: 1px;
  border-top: none;
  border-left: none;
  transform: rotatez(45deg) translatey(-50%);
}
/* ============================================== */
/* ヘッダーにチャットボット 追加 */
/* ============================================== */
header nav ul li.chatbot a {
  width: 165px;
}
@media screen and (max-width: 920px) {
	header nav ul li.chatbot {
		position: relative;
	  z-index: 10;
	  border: none;
	}
	header nav ul li.chatbot a {
	}
	header nav ul li.chatbot,
	header nav ul li.chatbot a {
	  width: 130px;
	}
}

@media all and (max-width:767px) {
    header{
        height: auto;
        padding: 15px;
        max-width: 100vw;
    }
    header > p{width: 100px;}
}

/* ============================================== */
/* 共通 */
/* ============================================== */
.main-contents {
  background-color: #fff;
}

.link-right {
  display: flex;
  justify-content: right;
  align-items: center;
  margin-top: 30px;

  > a {
    position: relative;
    padding-left: 15px;
    text-decoration: none !important;

    &::before {
      position: absolute;
      top: 50%;
      left: 0;
      width: 10px;
      height: 10px;
      content: "";
      border-right: 3px solid #161616;
      border-bottom: 3px solid #161616;
      transform: translateY(-50%) rotate(-45deg);
      border-radius: 0 0 3px 0;
    }
  }
}

@media screen and (max-width: 767px) {
  .link-right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;

    > a {
      font-size: 14px;
    }
  }
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #999;
  background: #FFF;
  border-radius: 60px;

  ::after {
    position: absolute;
    top: 50%;
    content: "";
    transform: translateY(-50%);
  }
}

.btn-orange {
  color: #fff !important;
  background-color: #E0634E;
  border: none;

  &::after {
    border-color: #fff !important;
  }
}


.btn-link {
  &::after {
    position: absolute;
    display: block;
    top: 50%;
    right: 30px;
    width: 14px;
    height: 14px;
    content: "";
    border-right: 3px solid #161616;
    border-bottom: 3px solid #161616;
    transform: translateY(-50%) rotate(-45deg);
    border-radius: 0 0 3px 0;
  }
}

.btn-pdf {
  padding: 20px 52px 20px 25px;
  font-weight: 600;
  &::before {
    position: absolute;
    top: 50%;
    left: 10px;
    content: "";
    vertical-align: middle;
    width: 32px;
    height: 32px;
    background-image: url(/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/ico_pdf.png);
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);

  }

  &::after {
    position: absolute;
    display: block;
    top: 50%;
    right: 30px;
    width: 14px;
    height: 14px;
    content: "";
    border-right: 3px solid #161616;
    border-bottom: 3px solid #161616;
    transform: translateY(-50%) rotate(-45deg);
    border-radius: 0 0 3px 0;
  }
}

@media screen and (max-width: 767px) {
  .btn-pdf {
    padding: 10px 45px 10px 40px !important;
    margin-top: 28px;
    font-size: 14px !important;
    &::before {
      width: 24px;
      height: 25px;
    }

    &::after {
      right: 10px;
      width: 10px;
      height: 10px;
    }
  } 
}

.btn-anc {
  &::after {
    position: absolute;
    display: block;
    top: 50%;
    width: 14px;
    height: 14px;
    content: "";
    border-right: 3px solid #161616;
    border-bottom: 3px solid #161616;
    transform: translateY(-50%) rotate(45deg);
    border-radius: 0 0 3px 0;
  }
}

.btn-back {
  padding: 16px;
  width: 230px;
  background-color: #F2F2F2;
  border: solid 1px #999;
}

.btn-other {
  padding: 16px;
  width: 306px;
  background-color: #fff;
  border: solid 1px #999;
}

.btn-white {
  background-color: #fff;

  &:hover {
    background-color: #f5f5f5;
  }
}


h2:not(.panel-hdg) {
  position: relative;
  font-size: 38px;
  font-weight: bold;
  text-align: left;
  padding-left: 35px;
  line-height: 1.2;

  &::before {
    position: absolute;
    top: .3em;
    left: 0;
    width: 24px !important;
    height: 24px;
    content: "";
    background-color: var(--mainColor);
    border-radius: 100%;
  }
}

h3 {
  font-size: 24px;
  font-weight: 700;
}

h4 {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  padding-left: 22px;

  &::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px !important;
    height: 10px;
    content: "";
    background-color: var(--mainColor);
    border-radius: 100%;
    transform: translateY(-50%);
  }
}

h5 {
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  h2:not(.panel-hdg) {
    font-size: 24px;
    padding-left: 24px;

    &::before {
      width: 19px !important;
      height: 19px;
      top: .3em;
      transform: translateY(0);
    }
  }

  h3 {
    font-size: 20px;
  }

  h5 {
    font-size: 20px;
  }
}

.text-main {
  color: var(--mainColor);
}

.text-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.passkey_acc {
  > dt {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 36px;
    font-size: 18px;
    font-weight: 400;
    border-top: solid 1px #999;
    min-height: 104px;

    &::after {
      content: "＋";
      position: absolute;
      right: 20px;
    }

    &.active {
      &::after {
        content: "ー";
      }
    }
  }

  > dd {
    padding: 0 32px 36px;
    > p {
      font-size: 18px;
    }
  }

  &.passkey_acc-num {
    > dt {
      padding-left: 68px;

      &::before {
        position: absolute;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        top: 50%;
        left: 20px;
        width: 27px;
        height: 27px;
        background-color: #161616;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        font-family: var(--ff_NotoSans);
        border-radius: 100%;
        transform: translateY(-50%);
        line-height: .8;
      }
    }

    > dd {
      padding-left: 68px;
    }
    &:nth-of-type(1) {
      > dt {
        &::before {
          content: "1";
        }
      }
    }
    &:nth-of-type(2) {
      > dt {
        &::before {
          content: "2";
        }
      }
    }
    &:nth-of-type(3) {
      > dt {
        &::before {
          content: "3";
        }
      }
    }
    &:nth-of-type(4) {
      > dt {
        &::before {
          content: "4";
        }
      }
    }
    &:nth-of-type(5) {
      > dt {
        &::before {
          content: "5";
        }
      }
    }
    &:nth-of-type(6) {
      > dt {
        &::before {
          content: "6";
        }
      }
    }
  }
}

.accordion2 {
  pointer-events: all;
  cursor: pointer;

  &:hover {
    background-color: #F5F5F5;
  }
}

@media screen and (max-width: 767px) {
  .passkey_acc {
    > dt {
      padding: 10px 40px 10px 20px;
      font-size: 14px;
      min-height: 70px;
      display: flex;
      align-items: center;

      &::after {
        top: 50%;
        right: 15px;
        font-weight: bold;
        transform: translateY(-50%);
      }
    }

    > dd {
      padding: 0;
      > p {
        font-size: 18px;
      }
    }

    &.passkey_acc-num {
      > dt {
        padding-left: 51px;

        &::before {
          width: 21px;
          height: 21px;
          font-size: 14px;
          line-height: .7;
        }
      }

      > dd {
        padding-left: 51px;
      }
    }
  }
}

.passkey_reason {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 126px;
  padding: 20px;

  > div {
    width: 100%;
    padding: 27px 25px 30px;
    border: solid 1px #999;

    > h5 {
      text-align: center;
      > span {
        font-size: 24px;
      }
    }

    > ul {
      display: flex;
      justify-content: space-between;
      gap: 54px;

      > li {
        position: relative;
        width: calc((100% - 162px) / 4);
      }

      &:nth-of-type(1) {
        margin-top: 30px;
      }

      &:nth-of-type(2) {
        margin-top: 10px;

        > li {
          font-weight: 600;
        }
      }
    }

    &:nth-of-type(1) {
      position: relative;
      background-color: #F3F3F3;
      &::before {
          position: absolute;
          bottom: -106px;
          left: 50%;
          width: 6px;
          height: 86px;
          content: "";
          background-color: #161616;
          transform: translateX(-50%);
          border-radius: 0 0 6px 0;
        }

        &::after {
          position: absolute;
          bottom: -106px;
          left: 50%;
          width: 30px;
          height: 30px;
          content: "";
          border-right: 6px solid #161616;
          border-bottom: 6px solid #161616;
          transform: translateX(-50%) rotate(45deg);
          border-radius: 0 0 6px 0;
        }
      > ul:nth-of-type(1) {
        li:not(:last-of-type) {
          &::after {
            position: absolute;
            top: 50%;
            right: -27px;
            width: 18px;
            height: 18px;
            content: "";
            border-right: 4px solid #161616;
            border-bottom: 4px solid #161616;
            transform: translateY(-50%) rotate(-45deg);
            border-radius: 0 0 3px 0;
          }
        }
      }
    }

    &:nth-of-type(2) {
      background-color: #F7F0DF;
      > ul:nth-of-type(1) {
        li:not(:last-of-type) {
          &::before {
            position: absolute;
            top: 50%;
            right: calc((-200% - 135px));
            width: calc((200% + 108px));
            height: 6px;
            content: "";
            background-color: #161616;
            transform: translateY(-50%);
            border-radius: 0 0 3px 0;
          }

          &::after {
            position: absolute;
            top: 50%;
            right: calc((-200% - 135px));
         width: 30px;
          height: 30px;
            content: "";
            border-right: 6px solid #161616;
            border-bottom: 6px solid #161616;
            transform: translateY(-50%) rotate(-45deg);
            border-radius: 0 0 6px 0;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 767px) {
  .passkey_reason {
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    gap: 15px;
    padding:30px 0px;

    > div {
      display: flex;
      flex-direction: column;
      width: calc((100% - 15px) / 2);
      padding: 16px 0;

      > h5 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        min-height: 105px;

        > span {
          font-size: 14px;
        }
      }

      > ul {
        flex: 1;
        flex-direction: column;
        gap: 44px;

        > li {
          display: flex;
          flex-direction: column;
          width: 100%;
          gap: 6px;
          padding: 0 15px;

          > p {
            font-size: 14px;
            font-weight: 700;

            > span {
              font-size: 14px;
            }
          }

          &:last-of-type {
            > p {
              min-height: 102px;
            }
          }
        }
      }

      &:nth-of-type(1) {
        &::before {
            bottom: 50%;
            left: auto;
            right: -45px;
            width: 75px;
            height: 5px;
            transform: translateY(-50%) translateX(0);
          }

          &::after {
            bottom: 50%;
            left: auto;
            right: -45px;
            width: 26px;
            height: 26px;
            border-right: 5px solid #161616;
            border-bottom: 5px solid #161616;
            transform: translateY(calc(50% - 4px)) translateX(0) rotate(-45deg);
          }
        > ul:nth-of-type(1) {
          li:not(:last-of-type) {
            &::after {
              top: auto;
              right: 50%;
              bottom: -27px;
              width: 18px;
              height: 18px;
              content: "";
              border-right: 4px solid #161616;
              border-bottom: 4px solid #161616;
              transform: translateX(50%) rotate(45deg);
              border-radius: 0 0 3px 0;
            }
          }
        }
      }

      &:nth-of-type(2) {
        background-color: #F7F0DF;
        > ul:nth-of-type(1) {
          li:not(:last-of-type) {
            &::before {
              top: auto;
              bottom: calc(-200% - 88px );
              right: 50%;
              width: 6px;
              height: calc(200% + 66px);
              content: "";
              background-color: #161616;
              transform: translateX(50%);
              border-radius: 0 0 3px 0;
            }

            &::after {
              position: absolute;
              top: auto;
              bottom: calc(-200% - 88px );
              right: 50%;
              width: 24px;
              height: 24px;
              content: "";
              border-right: 6px solid #161616;
              border-bottom: 6px solid #161616;
              transform: translateY(0) translateX(50%) rotate(45deg);
            }
          }
        }
      }
    }
  }
}

.login {
  margin-top: 50px;
}

.login_pc {
  width: 100%;
  margin-top: 40px;

  > ul {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 60px;

    > li {
      display: flex;
      flex-direction: column;
      gap: 15px;
      width: calc((100% - 60px) / 2);

      img {
        width: 100%;
      }
    }

    > li:not(:last-of-type) {
      > div {
        position: relative;
        &::after {
          position: absolute;
          top: 50%;
          right: -49px;
          width: 32px;
          height: 58px;
          content: "";
          background-image: url(/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/arrow_glay.png);
          background-size: contain;
          background-position: center;
          background-repeat: no-repeat;
          transform: translateY(-50%);
        }
      }
    }
  }
}

.login_sp {
  width: 100%;
  > ul {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    margin-top: 40px;
    row-gap: 40px;

    > li {
      display: flex;
      flex-direction: column;
      gap: 15px;
      width: calc(100% / 3);
      padding-right: 66px;

      > div {
        position: relative;
        > img {
          width: 100%;
        }
        &::after {
          position: absolute;
          top: 50%;
          right: -49px;
          width: 32px;
          height: 58px;
          content: "";
          background-image: url("/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/arrow_glay.png");
          background-size: contain;
          background-position: center;
          background-repeat: no-repeat;
          transform: translateY(-50%);
        }
      }

      &:last-of-type {
        > div::after {
          display: none;
        }
      }

    }
  }
}

.login_app {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;

  .login_apps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;

    > a {
      &:nth-of-type(1) {
        width: 176px;

        > img {
          width: 100%;
        }
      }

      &:nth-of-type(2) {
        width: 218px;

        > img {
          width: 100%;
        }
      }
    }
  }
}

.footer-nav-top {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

/* ============================================== */
/* ページトップ */
/* ============================================== */
@media screen and (min-width: 768px) {
    *:not(body) {
        overflow: visible !important;
    }
}
/* @media screen and (max-width:767px) {
    .pagetop{
        inset: auto 20px 20px auto;
        width: 60px;
        height: 60px;
    }
} */




/* ============================================== */
/* KV */
/* ============================================== */
.kv{
  position: relative;
  z-index: 0;
  display: flex;
  margin: 100px auto 0;
  width: 100%;
  height: auto;
  background: linear-gradient(179deg, #F7F0DF 5.08%, #FFFEFB 104.4%);
}
.kv .kv_inner{
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 41px;
  border-bottom: solid 1px #999999;
}
.kv .kv_inner > div > h1{
  position: relative;
  font-family: var(--ff_NotoSans);
  font-weight: 700;
  font-style: Bold;
  font-size: 50px;
  line-height: 76px;
  letter-spacing: 2px;
  text-align: center;
  z-index: 99;
  padding-left: 115px;

  > span {
    font-family: var(--ff_NotoSans);
    font-weight: 700;
    font-style: Bold;
    font-size: 50px;
    line-height: 76px;
    letter-spacing: 2px;
    color: var(--mainColor);
  }

  &::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 91px;
    height: 97px;
    content: "";
    background-image: url("/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/kv_01.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.kv .kv_inner .kv_subtxt {
  font-family: var(--ff_NotoSans);
  color: var(--txtColor);
  text-align: center;
  margin-top: 20px;
  margin-inline: auto;
}

.kv_caution {
  position: relative;
  padding: 10px;
  margin-top: 43px;
  border-top: solid 1px var(--mainColor);
  border-bottom: solid 1px var(--mainColor);
  cursor: pointer;
  pointer-events: all;

  > p {
    position: relative;
    width: fit-content;
    font-family: var(--ff_NotoSans);
    color: #161616;
    font-weight: bold;
    text-align: center;
    padding-left: 30px;
    padding-right: 15px;

    &::before {
      position: absolute;
      top: 50%;
      left: 0;
      width: 26px;
      height: 26px;
      content: "!";
      font-size: 18px;
      color: #fff;
      font-weight: bold;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--mainColor);
      border-radius: 50%;
      transform: translateY(-50%);
    }

    &::after {
      position: absolute;
        display: block;
        top: 50%;
        right: 0;
        width: 12px;
        height: 12px;
        content: "";
        border-right: 3px solid #161616;
        border-bottom: 3px solid #161616;
        transform: translateY(-50%) rotate(-45deg);
        border-radius: 0 0 3px 0;
    }
  }

  &:hover {
    > p {
      color: var(--mainColor);
      &::after {
        border-right: 3px solid var(--mainColor);
        border-bottom: 3px solid var(--mainColor);
      }
    }
  }
}

.kv_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1040px;
  margin: 60px auto 0;
  gap: 40px;
}

.kv_btn {
  flex-direction: column;
  align-items: flex-start;
  width: calc((100% - 20px) / 2);
  padding: 23px 45px 27px 130px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 100px;
  line-height: 1.2;
      
  > span {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
  }
  &:before {
    position: absolute;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  &::after {
    position: absolute;
    top: 50%;
    right: 31px;
    width: 14px;
    height: 14px;
    content: "";
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    border-radius: 0 0 3px 0;
  }
  &:nth-of-type(1) {
    padding-left: 183px;
    &::before {
      top: 50%;
      left: 42px;
      width: 121px;
      height: 75px;
      background-image: url("/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/kv_03.png");
      transform: translateY(-50%);
    }
  }

  &:nth-of-type(2) {
    &::before {
      top: 50%;
      left: 42px;
      width: 53px;
      height: 101px;
      background-image: url("/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/kv_04.png");
      transform: translateY(-60%);
    }
  }
}


.pc_cont{
  position: relative;
}


.kv .kv_inner .pc_cont{
  width: 100%;
}

@media screen and (min-width: 951px) and (max-width: 1100px) {
  .kv_btns {
    flex-direction: column;

    > a {
      width: 100%;
      max-width: 500px;
    }
  }
}

@media screen and (min-width: 768px) and (max-width: 950px) {

  .kv_btns {
    flex-direction: column;

    > a {
      width: 100%;
      max-width: 500px;
    }
  }
}

@media screen and (max-width: 1000px) {
  .kv .kv_inner > div > h1 {
      font-size: clamp(30px, 4.5vw, 50px);

      > span {
        font-size: clamp(30px, 4.5vw, 50px);
      }
  }
}

@media screen and (max-width: 767px) {
  .kv {
    margin-top: 62px;
    background: linear-gradient(179deg, #F7F0DF 5.08%, #FFFEFB 45.4%);
  }
  .kv .kv_inner{
    padding: 20px 10px 30px;
    border-bottom: solid 1px #999999;
  }
  .kv .kv_inner > div > h1{
    line-height: 1.4;
    font-size: 30px;
    padding: 60px 0 0;

    > span {
      font-size: 30px;
      line-height: 1.4;
    }

    &::before {
      left: 50%;
      width: 50px;
      height: 53px;
      transform: translateX(-50%);
    }
  }

  .kv .kv_inner .kv_subtxt {
    font-size: 14px;
    margin-top: 35px;
  }

  .kv_caution {
    margin-top: 35px;
    padding: 10px 5px;
    
    > p {
      padding: 0 10px 0 25px;
      font-size: 14px;

      &::before {
        width: 20px;
        height: 20px;
        font-size: 14px;
      }

      &::after {
        width: 10px;
        height: 10px;
      }
    }
  }

  .kv_btns {
    flex-direction: column;
    margin: 37px auto 0;
    gap: 16px;
  }

  .kv_btns {
    padding-inline: 15px;
  }

  .kv_btn {
    width: 100%;
    max-width: 335px;
    padding: 15px 5px 15px 100px;
    font-size: 16px;
    border-radius: 80px;
        
    > span {
      font-size: 14px;
    }

    &::after {
      display: none;
      right: 31px;
      width: 14px;
      height: 14px;
      border-right: 3px solid #fff;
      border-bottom: 3px solid #fff;
      transform: translateY(-50%) rotate(45deg);
      border-radius: 0 0 3px 0;
    }
    &:nth-of-type(1) {
      padding-left: 100px;
      &::before {
        left: 20px;
        width: 73px;
        height: 45px;
      }
    }

    &:nth-of-type(2) {
      padding-left: 72px;
      &::before {
        left: 30px;
        width: 32px;
        height: 61px;
        background-image: url("/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/kv_04.png");
        transform: translateY(-70%);
      }
    }
  }

  .kv_caution {
    &::after {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }
  }
}

@media screen and (max-width: 374px) {
  .kv_caution > p {
    font-size: 12px;
  }
}



/* ============================================== */
/* anc */
/* ============================================== */

.anc {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.anc_inner {
  position: relative;
  padding: 44px 0 0;
  text-align: center;

  &::before {
    position: absolute;
    top: 100px;
    left: 150px;
    width: 91px;
    height: 68px;
    content: "";
    background-image: url("/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/modal_01.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  > p {
    margin-top: 10px;
    font-size: 14px;
  }

  .btn {
    display: block;
    width: 340px;
    padding: 20px 0;
    margin: 24px auto 0;
    border-radius: 60px;
  }

  .btn-link {
    font-size: 16px;
    font-weight: bold;
    &::after {
      right: 30px;
    }
  }
}

.anc_hdg {
  font-family: var(--ff_NotoSans);
  font-size: 28px;
  color: var(--mainColor);
  font-weight: 700;
}

.anc_list {
  display: flex;
  justify-content: center;
  margin-top: 64px;

  > li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0 0;
    width: calc((100% / 5));
    border-left: solid 1px #999999;

    &:last-of-type {
      border-right: solid 1px #999999;
    }

    > a {
      position: relative;
      width: 100%;
      padding-bottom: 38px;
      font-weight: bold;

      &:hover {
        color: #D9340A;
        &::after {
          border-right: 3px solid #D9340A;
          border-bottom: 3px solid #D9340A;
        }
      }

      &::after {
        position: absolute;
        bottom: 10px;
        left: 50%;
        width: 14px;
        height: 14px;
        content: "";
        border-right: 3px solid #161616;
        border-bottom: 3px solid #161616;
        transform: translateX(-50%) rotate(45deg);
        border-radius: 0 0 3px 0;
      }
    }
  }
}

@media screen and (max-width: 1100px) {
  .anc_inner {
    &::before {
      left: 100px;
      top: 150px;
    }
  }
}

@media screen and (max-width: 767px) {
  .anc_inner {
    padding-top: 34px;
    padding-inline: 20px;
    > div {
      > p {
        max-width: 70%;
        margin-left: auto;
        font-size: 14px;
        text-align: left;
      }

       .btn {
          width: 285px;
          padding: 17px 0;
          margin: 50px auto 0;
        }

        .btn-link {
          font-size: 14px;
        }
    }
    &::before {
      top: 40px;
      left: 20px;
      width: 20%;
    }

    .anc_hdg {
      max-width: 70%;
      margin-left: auto;
      font-size: 16px;
      text-align: left;
    }
  }

  .anc_list {
    margin-top: 58px;
    row-gap: 19px;
    flex-wrap: wrap;

    > li {
      padding: 0;
      border-left: solid 1px #999999;

      &:nth-of-type(1) {
        width: calc(100% / 2);
      }

      &:nth-of-type(2) {
        width: calc(100% / 2);
        border-right: solid 1px #999999;
      }
      &:nth-of-type(3) {
        width: calc(100% / 3);
      }
      &:nth-of-type(4) {
        width: calc(100% / 3);
      }
      &:nth-of-type(5) {
        width: calc(100% / 3);
      }

      &:last-of-type {
        border-right: solid 1px #999999;
      }

      > a {
        font-size: 14px;
        padding-bottom: 26px;
      }
    }
  }
}

/* ============================================== */
/* passkey */
/* ============================================== */
.passkey {
  margin-top: 100px;
  max-width: 1200px;
  margin-inline: auto;
}

.passkey_inner {
  padding: 0 63px 0;

  > h3 {
    margin-top: 60px;
    font-size: 24px;
    font-weight: 600;
  }
}

.passkey_subtxt {
  font-size: 18px;
  margin-top: 20px;
}

.passkey_cards {
  margin-top: 32px;
}

.passkey_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px 56px;
}

.passkey_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  width: calc((100% - 56px) / 2);
  padding: 40px 25px;
  border-radius: 10px;
  background-color: #F7F0DF;

  .passkey_label {
    > span {
      padding: 4px 14px;
      font-size: 18px;
      color: #fff;
      text-align: center;
      background-color: #D83309;
      border-radius: 4px;
    }

    > p {
      margin-top: 10px;
      font-size: 24px;
      font-weight: 600;
      
      > span {
        font-size: 16px;
        font-weight: 400;
      }
    }
  }

  > img{
    width: 120px;
    height: 120px;
  }
}

.passkey_acc-block {
  margin-top: 40px;
  border-bottom: solid 1px #999;

  > h4 {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .passkey_list {
    gap: 20px;
  }
  .passkey_item {
    width: calc((100% - 20px) / 2);
    padding: 20px 15px;
    gap: 20px;

    > img {
      width: 90px;
      height: 90px;
    }

    .passkey_label {
      > p {
        font-size: 16px;
      }

      > span {
        padding: 2px 10px;
        font-size: 14px;
      }
    }
  }



}

@media screen and (max-width: 767px) {
  .passkey {
    margin-top: 50px;
  }

  .passkey_inner {
    padding: 0 15px 0;

    > h3 {
      margin-top: 23px;
      font-size: 20px;
    }
  }

  .passkey_subtxt {
    font-size: 14px;
    margin-top: 30px;
  }

  .passkey_cards {
    margin-top: 20px;
  }

  .passkey_list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
  }

  .passkey_item {
    max-width: 500px;
    gap: 5%;
    width: 100%;
    padding: 30px 15px 20px;

    .passkey_label {
      width: 70%;
      > p {
        font-size: 18px;
        line-height: 1.5;
        
        > span {
          font-size: 14px;
        }
      }

      > span {
        font-size: 14px;
        padding: 4px 10px;
      }
    }

    > img{
      width: 25%;
      height: 25%;
      max-width: 80px;
    }
  }
  .passkey_acc-block {
    margin-top: 40px;
    border-bottom: solid 1px #999;

    > h4 {
      margin-bottom: 20px;
    }
  }
}

/* ============================================== */
/* flow */
/* ============================================== */

.flow {
  margin-top: 90px;
  margin-inline: auto;
  max-width: 1200px;
}

.flow_inner {
  padding: 52px 64px 64px;
  border-radius: 10px;
  background-color: #F7F0DF;
}

.flow_subtxt {
  margin-top: 20px;
}

.flow_content {
  margin-top: 50px;
}

.passkey_tab {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  background-color: #fff;
  border: solid 1px #999;
  border-radius: 8px;

  > li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3);
    font-weight: bold;
    padding-block: 15px;
    cursor: pointer;

    &:first-of-type {
      border-radius: 8px 0 0 8px;
    }

    &:last-of-type {
      border-radius:  0 8px 8px 0;
    }

    &:not(:last-of-type) {
      border-right: solid 1px #999;
    }

    &.is-active {
      background-color: #F7C660;
    }
  }
}

.passkey_tab-2col {
  > li {
    width: calc(100% / 2);
  }
}

.passkey-tab-content {
  display: none;
  margin-top: 23px;
}

.passkey-tab-content-flow {
  width: 100%;
  justify-content: center;
  border-radius: 8px;
  background-color: #fff;
  border: solid 1px #999;

  &.is-active {
    display: flex;
  }

  > li {
    position: relative;
    flex: 1;
    min-height: 150px;
    padding: 50px 15px 14px 21px;

    &:first-of-type {
      border-radius: 8px 0 0 8px;
    }

    &:last-of-type {
      border-radius:  0 8px 8px 0;
    }

    &:not(:last-of-type) {
      border-right: solid 1px #999;
    }

    > a {
      position: relative;
      padding-right: 20px;

      &::after {
        position: absolute;
        bottom: 2px;
        right: 0;
        width: 10px;
        height: 10px;
        content: "";
        border-right: 3px solid #161616;
        border-bottom: 3px solid #161616;
        transform: translateY(-50%) rotate(45deg);
        border-radius: 0 0 3px 0;
      }
    }

    &::before {
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      top: 18px;
      left: 21px;
      width: 28px;
      height: 28px;
      background-color: #161616;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      font-family: var(--ff_NotoSans);
      border-radius: 100%;
    }

    &:nth-of-type(1) {
      &::before {
        content: "1";
      }
    }
    &:nth-of-type(2) {
      &::before {
        content: "2";
      }
    }
    &:nth-of-type(3) {
      &::before {
        content: "3";
      }
    }
    &:nth-of-type(4) {
      &::before {
        content: "4";
      }
    }
    &:nth-of-type(5) {
      &::before {
        content: "5";
      }
    }
  }
}

.passkey-tab-content-device {
  width: 100%;
  &.is-active {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .flow {
    margin-top: 50px;
  }

  .flow_inner {
    padding: 32px 15px 40px 15px;
    border-radius: 0;
  }

  .flow_subtxt {
    margin-top: 30px;
    font-size: 14px;
  }

  .flow_content {
    margin-top: 45px;

    > p {
    font-size: 14px;
    }
  }

  .passkey_tab {
    border-radius: 8px;
    align-items: stretch;

    > li {
      display: flex;
      justify-content: center;
      align-items: center;
      flex: 1;
      font-size: 14px;
      padding-block: 6px;
      text-align: center;
    }
  }

  .passkey_tab-2col {
    > li {
      width: calc(100% / 2);
    }
  }

  .passkey-tab-content {
    display: none;
    margin-top: 18px;
  }

  .passkey-tab-content-flow {
    width: 100%;
    flex-direction: column;

    &.is-active {
      display: flex;
    }

    > li {
      position: relative;
      flex: 1;
      min-height: auto;
      padding: 18px 20px 18px 50px;
      border-bottom: solid 1px #999;
      font-size: 14px;

      &:not(:last-of-type) {
        border-right: none;
      }

      &:first-of-type {
        border-radius: 8px 8px 0 0px;
      }

      &:last-of-type {
        border-radius:  0 0 8px 8px;
        border-bottom: none;
      }

      > a {
        display: block;
        width: 100%;
        padding-right: 20px;
        font-size: 14px;

        &::after {
          position: absolute;
          bottom: auto;
          top: 50%;
          right: 0;
          width: 10px;
          height: 10px;
          content: "";
          border-right: 3px solid #161616;
          border-bottom: 3px solid #161616;
          transform: translateY(-50%) rotate(45deg);
          border-radius: 0 0 3px 0;
        }
      }

      &::before {
        top: 20px;
        left: 20px;
        width: 21px;
        height: 21px;
        font-size: 14px;
      }

    }
  }
}

/* ============================================== */
/* setting */
/* ============================================== */

.setting {
  margin-top: 74px;
  margin-inline: auto;
  max-width: 1200px;
}

.setting_subtxt {
  margin-top: 20px;
}

.setting_inner {
  padding: 52px 64px 64px;
  border-radius: 10px;
  background-color: #F7F0DF;
}

.setting_cards {
  display: flex;
  justify-content: center;
  gap: 54px;
  margin-top: 60px;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .setting_cards {
    flex-direction: column;

    .setting_card {
    width: 100%;

    > dl {
      > div > dt {
        width: 200px;
      }
    }
  }
  }
  
}

.setting_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 54px) / 2);
  padding: 30px 25px 50px;
  background-color: #fff;
  border-radius: 10px;

  > h3 {
    font-size: 24px;
    font-weight: 700;
  }

  &:first-of-type {
    img {
      width: 157px;
      height: 97px;
      margin-top: 30px;
    }
  }

  &:last-of-type {
    img {
      width: 63px;
      height: 121px;
      margin-top: 5px;
    }
  }

  > dl {
    margin-top: 25px;

    > div {
      display: flex;
      align-items: center;
      padding: 10px 5px 10px 25px;
      gap: 40px;
      border-top: solid 1px #999;

      &:last-of-type {
        border-bottom: solid 1px #999;
      }

      dt {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        width: 100px;
        height: 90px;
        font-weight: 400;
        font-weight: 600;
      }
    }
  }

  .btn {
    margin-top: 40px;
    padding: 20px 56px 20px 40px;
    font-weight: 700;
    border-radius: 60px;

    &::after {
      right: 26px;
      width: 10px;
      height: 10px;
    }
  }
}

@media screen and (max-width: 767px) {
  .setting {
    margin-top: 70px;
  }

  .setting_subtxt {
    margin-top: 30px;
    font-size: 14px;
  }

  .setting_inner {
    padding: 33px 15px 22px;
    border-radius: none;
  }

  .setting_cards {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }

  .setting_card {
    width: 100%;
    padding: 30px 20px;

    > h3 {
      font-size: 18px;
      font-weight: 700;
    }

    > p {
    font-size: 14px;
    }

    &:first-of-type {
      img {
        width: 108px;
        height: 67px;
        margin-top: 20px;
      }
    }

    &:last-of-type {
      img {
        width: 50px;
        height: 96px;
        margin-top: 14px;
      }
    }

    > dl {
      margin-top: 30px;


      > div {
        padding: 12px 5px 12px 15px;
        gap: 17px;

        dt {
          width: 90px;
          height: 70px;
          font-size: 14px;
        }

        dd {
        font-size: 14px;
        }
      }
    }

    .btn {
      margin-top: 30px;
      padding: 17px 50px 17px 37px;
      font-size: 14px;

      &::after {
        right: 26px;
        width: 10px;
        height: 10px;
      }
    }
  }
}

/* ============================================== */
/* shindan */
/* ============================================== */

.shindan {
  max-width: 1074px;
  margin-top: 86px;
  margin-inline: auto;
}

.shindan_subtxt {
  margin-top: 20px;
}

.shindan_inner {
  padding-inline: 20px;
}

.shindan_progress {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 700px;
  margin-top: 40px;
  margin-inline: auto;
}

.shindan_progress::after {
  position: absolute;
  top: 13px;
  left: 20px;
  height: 2px;
  width: calc(100% - 50px);
  content: '';
  background-color: #161616;
}

.progress_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.progress_indicator {
  position: relative;
  margin-bottom: 10px;
}

.progress_circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #111;
  transition: all 0.3s ease;
}

.progress_title {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  color: #161616;
  text-align: center;
  transition: all 0.3s ease;
}

.progress_item.is-active .progress_circle {
  background-color: #161616;
  border-color: #161616;
}

.progress_item.is-active .progress_title {
  font-weight: bold;
}

.shindan_content {
  background: #F7F0DF;
  border-radius: 10px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
  padding: 40px;
}

.question_container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.question_text {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

.choices {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 25px;
}

.choice_button {
  position: relative;
  padding: 26px 57px;
  font-size: 16px;
  font-weight: 500;
  background-color: #FFFFFF;
  border: 1px solid #999;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;

  &:hover {
    background-color: #F5F5F5;
  }

  &::before {
    position: absolute;
    top: 50%;
    left: 36px;
    width: 10px;
    height: 10px;
    content: "";
    background-color: var(--mainColor);
    border-radius: 100%;
    transform: translateY(-50%);
  }
}

.navigation {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  margin-top: 20px;
}

.nav_button {
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav_button.is-disabled,
.nav_button:disabled {
  cursor: not-allowed;
  background-color: #F2F2F2;
  border-color: #999;
}

.nav_return {
  background-color: #fff;
  border-color: #bbb;
}

.result_container {
  padding: 40px 60px 60px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;

  > h4 {
    font-size: 18px;
    margin-top: 40px;
  }
}

.result_title {
  font-size: 18px;
  font-weight: 600;
  color: #161616;
}

.result_description {
  font-size: 16px;
  color: #161616;
  margin: 20px 0 0;
}

.result_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.result_button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px 20px;
  width: 500px;
  font-size: 16px;
  font-weight: 600;
}

.result_other {
  display: inline-block;
  margin: 20px 20px 0 0;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .shindan {
    margin-top: 70px;
  }

  .shindan_inner {
    padding: 0 15px;
  }

  .shindan_subtxt {
    font-size: 14px;
    margin-top: 30px;
  }

  .shindan_progress {
    margin-top: 30px;
  }

  .shindan_progress::after {
    top: 6px;
    left: 25px;
    height: 2px;
    width: calc(100% - 60px);
  }

  .progress_indicator {
    position: relative;
    margin-bottom: 10px;
  }

  .progress_circle {
    width: 14px;
    height: 14px;
  }

  .shindan_content {
    margin-top: 30px;
    padding: 40px 20px;
    gap: 20px;
  }

  .question_text {
    font-size: 20px;
  }

  .choices {
    gap: 14px;
  }

  .choice_button {
    padding: 12px 20px 12px 44px;
    font-size: 14px;

    &::before {
      left: 20px;
      width: 14px;
      height: 14px;
    }
  }

  .navigation {
    gap: 30px 10px;
    flex-wrap: wrap;
    margin-top: 0;
  }

  .nav_button {
    padding: 12px 0;
    font-size: 14px;
    width: calc((100% - 10px) / 2);
    max-width: 150px;
  }

  .result_container {
    padding: 40px 20px;
  }

  .result_title {
    font-size: 16px;
  }

  .result_description {
    font-size: 14px;
    color: #161616;
    margin: 1px 0 0;
  }

  .result_buttons {
    gap: 20px;
    margin-top: 20px;
  }

  .result_button {
    padding: 10px 40px 10px;
    width: 100%;
    font-size: 14px;
  }

  .result_other {
    display: inline-block;
    margin: 20px 20px 0 0;
    text-decoration: underline;
  }
}


/* ============================================== */
/* device */
/* ============================================== */

.device {
  max-width: 1200px;
  margin: 100px auto 0;
}

.device_subtxt {
  margin-top: 20px;
}

.device_inner {
  padding: 52px 64px 64px;
  border-radius: 10px;
  background-color: #F7F0DF;

  > h2 > span {
    font-size: 24px;
  }

  .device_modal-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 230px;
    padding: 12px 0;
    margin-top: 16px;
    border-radius: 60px;

    &::after {
      right: 30px;
      width: 10px;
      height: 10px;
    }
  }

  h3 {
    margin-top: 40px;
  }

  > p {
    margin-top: 20px;
  }
}

.device_content {
  padding: 30px 50px 40px;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;

  .btn-orange {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 340px;
    margin: 30px auto 0;
    padding: 16px 50px;

    &::after {
      width: 10px;
      height: 10px;
    }
  }

  > h5 {
    margin-top: 20px;
  }

  .passkey_acc dd {
    padding-top: 40px;
  }

  > p {
    margin-top: 20px;
  }
}

.device-sp {
  .passkey-tab-content-device {
    dd {
      a {
        text-decoration: underline;
        margin-right: 10px;
      }
    }
  }
}

.accordion-wrap:has(.login_pc) {
  padding-left: 30px !important;
  padding-right: 68px;
}

.accordion-wrap:has(.login_sp) {
  padding-left: 30px !important;
  padding-right: 68px;
}

.accordion-wrap:has(.device_list) {
  flex-direction: column;
  padding-top: 40px;
  gap: 50px;
}

@media screen and (max-width: 767) {
  .accordion-wrap:has(.passkey_reason) {
    padding: 0 !important;
  }
}

.device_list {
  margin-top: 15px;

  > div {
    display: flex;
    justify-content: center;

    > dt, dd {
      width: calc(100% / 3);
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    > dt {
      padding: 13px 0;
      background-color: #DDDDDD;
    }

    > dd {
      padding: 30px 0;
    }

    &:not(:first-of-type) {
      border-bottom: solid 1px #999999;
    }
  }
} 

.device_before {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 27px 0 0;

  > h5 {
    position: relative;
    padding-left: 112px;

    &::before {
      position: absolute;
      top: 50%;
      left: 0;
      width: 92px;
      height: 57px;
      content: "";
      background-image: url(/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/kv_03.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      transform: translateY(-50%);
    }
  }

  > ul {
    margin-top: 35px;
  
  }

  .btn {
    margin-top: 30px;
    padding: 20px 52px;
  }
}

.device_before-pc {
  > ul {
        > li {
      position: relative;
      padding-left: 30px;

      &::before {
        position: absolute;
        top: 50%;
        left: 0;
        width: 22px;
        height: 22px;
        content: "";
        background-image: url("/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/passkey_check.png");
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        transform: translateY(-50%);
      }
    }
  }
}

.device_before-sp {
  > h5 {
    padding-left: 74px;

    &::before {
      width: 44px;
      height: 84px;
      background-image: url(/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/kv_04.png);
    }

  }
  > p {
    width: 100%;
    margin-top: 38px;
  }

  > ul {
    margin-top: 50px;
  }


  dt {
    position: relative;
    padding-left: 50px;

  &::before {
      position: absolute;
      top: 50%;
      left: 20px;
      width: 22px;
      height: 22px;
      content: "";
      background-image: url("/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/passkey_check.png");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      transform: translateY(-50%);
    }
  }
}

.dl_cont-pc {
  margin-top: 40px;
  > p {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
  }
  .dl_list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 30px;
    > img {
      width: 128px;
      height: 128px;
    }

    .dl_app {
      display: flex;
      justify-content: center;
      flex-direction: column;
      gap: 26px;

      > a {
        > img {
          width: 100%;
        }
        &:nth-of-type(1) {
          width: 137px;
          height: 51px;
        }

        &:nth-of-type(2) {
          width: 171px;
          height: 51px;
        }
      }
    }
  }

  > div {
    display: flex;
    justify-content: right;
    align-items: center;
    margin-top: 15px;

    > a {
      position: relative;
      padding-left: 15px;
      &::before {
        position: absolute;
        top: 50%;
        left: 0;
        width: 10px;
        height: 10px;
        content: "";
        border-right: 3px solid #161616;
        border-bottom: 3px solid #161616;
        transform: translateY(-50%) rotate(-45deg);
        border-radius: 0 0 3px 0;
      }
    }
  }
}

.guide {
  margin-top: 50px;

  > p {
    margin-top: 10px;
  }

  > ul {
    display: flex;
    justify-content: center;
    gap: 54px;
    margin-top: 26px;

    > li {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: calc((100% - 54px) / 2);
      padding: 30px 20px 40px;
      background-color: #fff;
      border-radius: 10px;

      > p:nth-of-type(1) {
        font-size: 20px;
        font-weight: 600;
      }

      .link-movie {
        width: 282px;
        height: 160px;
        margin-top: 20px;

        > img {
          width: 100%;
        }
      }

      .btn-pdf {
        margin-top: 70px;
        font-weight: 600;
        padding-right: 35px;
        padding-left: 50px;

        &::after {
          right: 20px;
        }

        &::before {
          width: 24px;
          height: 25px;
        }
      }
    }
  }

  .guide_btns {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .device {
    margin: 78px auto 0;
  }

  .device_inner {
    padding: 37px 20px 35px;

    > h2 {
      line-height: 1.2;
    }

    > h2 > span {
      font-size: 14px;
    }

    > p {
      font-size: 14px;
      margin-top: 30px;

      &:nth-of-type(2) {
        margin-top: 20px;
      }
    }

    .device_modal-btn {
      width: 180px;
      font-size: 14px;

      &::after {
        right: 20px;
        width: 10px;
        height: 10px;
      }
    }

    h3 {
      margin-top: 30px;
    }
  }

  .device_content {
    padding: 40px 15px;

    .btn-orange {
      width: 310px;
      margin: 30px auto 0;
    }

    > h5 {
      margin-top: 20px;
    }
  }

  .device-sp {
    .passkey-tab-content-device {
      dd {
        a {
          text-decoration: underline;
          margin-right: 10px;
        }
      }
    }
  }

  .accordion-wrap:has(.login_pc) {
    padding-left: 30px !important;
    padding-right: 68px;
  }

  .accordion-wrap:has(.login_sp) {
    padding-left: 30px !important;
    padding-right: 68px;
  }

  .accordion-wrap:has(.device_list) {
    flex-direction: column;
    padding-top: 40px;
    gap: 50px;
  }

  @media screen and (max-width: 767) {
    .accordion-wrap:has(.passkey_reason) {
      padding: 0 !important;
    }
  }

  .device_list {

    > h5 {
      margin-top: 20px;
    }

    > div {
      flex-direction: column;

      > dt, dd {
        width: 100%;
      }

      > dt {
        padding: 5px 0;
        background-color: #DDDDDD;
      }

      > dd {
        padding: 5px 0 !important;
        font-size: 14px;
      }

      &:not(:first-of-type) {
        border-bottom: none;
      }

      &:nth-of-type(3n) {
        border-bottom: solid 1px #999;
      }
    }
  } 

  .device_before {
    > ul {
      margin-top: 35px;
    
    }

    .btn {
      margin-top: 30px;
      padding: 20px 52px;
    }
  }

  .device_before-pc {

    > h5 {
      padding-left: 91px;
      
      &::before {
        width: 84px;
        height: 52px;
        content: "";
      }
    }
    > ul {
      > li {
        position: relative;
        padding-left: 22px;

        &::before {
          top: .4em;
          width: 19px;
          height: 19px;
          transform: translateY(0);
        }
      }
    }

    .btn-pdf::after {
      right: 20px;
    }
  }

  .device-sp {
    .device_content {
      padding-top: 20px;

      > p {
        font-size: 14px;
      }
    }
  }

  .device_before-sp {
    > h5 {
      padding-left: 54px;

      &::before {
        width: 41px;
        height: 78px;
      }

    }
    > p {
      width: 100%;
      margin-top: 38px;
    }

    > ul {
      margin-top: 50px;
      > li {
        padding-block: 15px;
      }
    }

    .passkey_acc {
      padding-left: 0;
    }

    dt {
      padding-left: 40px;
      padding-right: 30px;
      font-size: 14px;

    &::before {
        top: 50%;
        width: 16px;
        height: 16px;
        transform: translateY(-50%);
      }
    }

    dd {
      padding: 20px;
      p {
        font-size: 14px;
      }

      a {
        font-size: 14px;
      }
    }
  }

  .dl_cont-pc {
    margin-top: 35px;
    > p {
      font-size: 16px;
    }
    .dl_list {
      flex-direction: column;
      > img {
       display: none;
      }

      .dl_app {
        align-items: center;
        gap: 14px;

        > a {
          &:nth-of-type(1) {
            width: 148px;
            height: 55px;
          }

          &:nth-of-type(2) {
            width: 184px;
            height: 55px;
          }
        }
      }
    }

    > div {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 30px;
    }
  }

  .guide {
    margin-top: 40px;

    > p {
      margin-top: 20px;
      font-size: 14px;
    }

    > ul {
      flex-direction: column;
      gap: 40px;
      margin-top: 15px;

      > li {
        flex-direction: column;
        width: 100%;
        padding: 37px 25px 40px;

        > p {
          text-align: center;
        }

        > p:nth-of-type(1) {
          font-size: 18px;
          font-weight: 600;
        }

        > p:nth-of-type(2) {
          margin-top: 13px;
          font-size: 14px;
        }

        .link-movie {
          width: 215px;
          height: 122px;
          margin-top: 28px;

          > img {
            width: 100%;
          }
        }

      }
    }

    .btn-pdf {
      margin-top: 28px !important;
      font-size: 14px !important;
    }

    .guide_btns {
      margin-top: 30px;
      flex-wrap: wrap;
      gap: 18px 10px;

      > a {
        padding: 0;
        font-size: 14px;
        max-width: 140px;
        height: 50px;
        
        &:nth-of-type(2) {
          max-width: 185px;
          line-height: 1.1;
        }

        &:nth-of-type(3) {
          max-width: 185px;
          line-height: 1.1;
        }
      }
    }
  }

  .login {
    .accordion-wrap {
      padding: 0 20px 60px !important;
      > div {
        > ul {
          flex-direction: column;
          > li {
            position: relative;
            width: 100%;

            > p {
              font-size: 14px;
            }

            &:not(:last-of-type) {
              &::after {
                position: absolute;
                top: auto;
                right: auto;
                bottom: -52px;
                left: 50%;
                width: 32px;
                height: 58px;
                content: "";
                background-image: url(/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/arrow_glay.png);
                background-size: contain;
                background-position: center;
                background-repeat: no-repeat;
                transform: translateY(0) translateX(-50%) rotate(90deg);
              }

            }


            > div {
              &::after {
                display: none;
              }
            }
          }
        }
      }

      .login_sp {
        margin-top: 40px;
        > p {
          font-size: 14px;
        }
        > ul {
          gap: 60px;
          > li {
            padding-right: 0;
            > div >p {
              margin-top: 10px;
            }
          }
        }
      }

      .login_app {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
        > p {
          font-size: 14px;
        }
      }
    }
  }
}

/* ============================================== */
/* QA */
/* ============================================== */
.qa {
  margin: 100px auto 0;
  max-width: 1200px;

  .qa_inner {
    padding-inline: 20px;
  }

  .accordion-wrap {
    padding-top: 30px;
    flex-direction: column;

    a {
      text-decoration: underline;
    }

    > p:not(:first-of-type) {
      margin-top: 20px;
    }

    .qa_link-list {
      margin-top: 20px;

      > ul {
        display: flex;
        flex-direction: column;
        line-gap-override: 10px;
      }
    }
  }
}

@media screen and (max-width: 767px) {
  .qa {
    .qa_inner {
      padding: 0 20px;
    }

    .passkey_acc {
      dt {
        padding-right: 30px;
      }

      dd {
        padding: 10px 30px 10px 20px;

        p {
          font-size: 14px;

          > span {
            font-size: 14px;
          }
        }

        a {
          font-size: 14px;
        }
      }
    }
    .accordion-wrap {
      padding-top: 30px;
      flex-direction: column;

      a {
        text-decoration: underline;
      }

      > p:not(:first-of-type) {
        margin-top: 20px;
      }

      .qa_link-list {
        margin-top: 20px;

        > ul {
          display: flex;
          flex-direction: column;
          line-gap-override: 10px;
        }
      }
    }
  }
}

/* ============================================== */
/* license */
/* ============================================== */
.license {
  margin: 100px auto 0;
  max-width: 1200px;
  > p {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .license {
    padding: 0 20px;
  }
}

/* ============================================== */
/* モーダル */
/* ============================================== */
body.show-modal {
  overflow: hidden;
}

.modal:has(.is-active) {
  opacity: 1;
  pointer-events: auto;
}

.modal:has(.is-active) .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  background-color: rgba(0, 0, 0, .5);
  width: 100%;
  height: 100%;
}

.modal {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  width: 100vw;
  height: 100dvh;
  z-index: 10000;
}

.modal-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translatey(-50%) translatex(-50%) !important;
  width: 90%;
  background-color: #fff;
  border-radius: 10px;
  padding: 55px 60px 60px;
  transition: .2s;
  z-index: 1000;
  max-height: 80dvh;
  overflow-y: auto !important;
}

.modal-window#caution {
    max-width: 880px;
  h3 {
    position: relative;
    width: fit-content;
    padding-left: 45px;
    margin-bottom: 45px;
    margin-inline: auto;

    &::before {
      position: absolute;
      width: 37px;
      height: 37px;
      top: .2em;
      left: 0;
      content: "";
      background-image: url("/content/dam/daiwasecurities/onlinetrade/tool/d_port/passkey/images/ico_caution.png");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
    }
  }

  h5 {
    margin-top: 30px;
  }

  ol {
    > li {
      position: relative;
      padding-left: 1em;
      text-indent: -1em;
      margin-top: 10px;
    }
  }



  > p {
    margin-top: 20px;
  }
}

.modal-window#add-modal {
  .about-browser-content {
    > img {
      width: 164px;
      height: 121px;
    }
  }

  .add-modal_images {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 20px;
    
    > div {
      position: relative;
      width: calc((100% - 70px) / 2);
      
      > img {
        width: 100%;
      }
      
      &:nth-of-type(1) {
        &::after {
            position: absolute;
            top: 50%;
            right: -40px;
            width: 20px;
            height: 20px;
            content: "";
            border-right: 4px solid #161616;
            border-bottom: 4px solid #161616;
            transform: translateY(-50%) rotate(-45deg);
            border-radius: 0 0 3px 0;
        }
      }
    }
  }
}

.modal-window#about-browser {
  .about-browser-content {
    > img {
      width: 120px;
      height: 90px;
    }
  }
}


.modal-window#about-browser,
.modal-window#add-modal {
  max-width: 880px;
  
  > h3 {
    > span {
      font-size: 24px;
    }
  }
  > p {
    text-align: center;
    margin-top: 10px;
  }
  
  .about-browser-content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .modal-window#caution {
    padding: 30px 20px;
  }

  .modal-window#add-modal {
    height: 80dvh;
    overflow-y: auto !important;
  }

  .modal-window#about-browser,
  .modal-window#add-modal {
    max-width: none;
    padding: 40px 20px;

    > h3 {
      font-size: 16px;
      > span {
        font-size: 16px !important;
      }
    }
    > p {
      font-size: 14px;
      margin-top: 5px;
    }

    .about-browser-content{
      flex-direction: column;
      gap: 20px;
      margin-top: 20px;

      > p {
        font-size: 14px;

        > span {
          font-size: 14px;
        }
      }
    }

    .add-modal_images {
      flex-direction: column;
      margin-top: 30px;

      > div {
        position: relative;
        width: 100%;
        padding: 0 30px;

        &:nth-of-type(1) {
          &::after {
            top: auto;
            bottom: -40px;
            right: 50%;
            transform: translateX(50%) rotate(45deg);
          }
        }
      }
    }
  }

  .modal-close {
    width: 150px;
    margin: 30px auto 0;
    border-radius: 60px;

    > a {
      padding: 10px 0;

      > p {
        font-size: 14px;

        &::before {
          font-size: 14px;
        }
      }
    }
  }
}

.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  margin: 40px auto 0;
  border: solid 1px #999;
  border-radius: 60px;

  > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 0;

    > p {
      position: relative;
      width: fit-content;
      padding-left: 20px;
      text-align: center;

      &::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 1em;
        height: 1em;
        font-size: 16px;
        font-weight: bold;
        color: #161616;
        content: "×";
      }
    }
  }
}














.accordion-wrap{
  display: none;

  a {
    text-decoration: underline;
  }
}


/* ============================================== */
/* ディスクレーマー、フッター */
/* ============================================== */
/* 共通 */
.panel-note *,
footer *{font-family: var(--ff_NotoSans);}
.panel-note > *,
footer .inner{max-width: 1100px;margin-left: auto !important;margin-right: auto !important;}

.panel-note > *{
  max-width: 960px;
  padding: 0 20px;
}
.panel-note{
  padding: 75px 0;
  border: none;
}

.panel-note p{font-size: 14px;}
.panel-note p:last-of-type{margin: 1em 0 0;}
.panel-note p a{
  font-size: 14px;
  color: var(--mainColor);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.panel-note p a img{width: unset;}
.link{
  position: relative;
  display: inline-block;
  padding-left: 8px;
}

.panel-note p a::before{
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  margin: -4px 0 0;
  width: 6px;
  height: 6px;
  border: 1px solid #152666;
  border-bottom: transparent;
  border-left: transparent;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -2px;
}
/* フッター */
footer{
  text-align: center;
  padding: 0 0 70px;
}

@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 0;
  }
}

footer dt{font-weight: 400;}

footer ul{
  display: inline;
  line-height: 2.3;
}
footer a{
  color: var(--footerLinkColor);
}

footer .copy{
  margin: 25px auto 0;
  font-size: 13px;
}

/* ============================================== */
/* ページトップ */
/* ============================================== */
.pagetop{
  position: fixed;
  z-index: 5;
  inset: auto 30px 55px auto;
  display: none;
  width: 90px;
  height: 90px;
}
.footer-nav_top a{display: none;}

/* 202509改修追記 SP用ページトップ修正------------------- */
@media screen and (max-width:920px) {
  .main-contents p.pagetop {
    inset: auto 10px 90px auto;
    width: 50px;
    height: 50px;
    opacity: 0.5;
    z-index: 9999;
  }
}

/* END：202509改修追記 SP用ページトップ修正------------------- */

.fadein{
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}
.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fadein2{
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
  transform: translateY(100px);
}
.is-active2 {
  opacity: 1;
  visibility: visible;
  transform: translateY(-40px);
}
@media all and (max-width: 767px) {
  .is-active2 {
    width: 100%;
  }
}