
@charset "UTF-8";
:root{
  /* 色 */
  --txtColor: #333;
  --mainColor: #A91A0A;
  --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_ZenKakuAntique);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

html,
body{overflow-x: hidden;}
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%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px 25px;
  transition: .3s;
  flex-wrap: wrap;
}
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コード調整------------------- */
@media all and (min-width: 921px){
  header{
    padding:0 25px;
  }
}
/* 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: fixed;
	  z-index: 10;
	  top: -69px;
	  left: calc(-15vw - 120px);
	  border: none;
	}
	header nav ul li.chatbot a {
	}
	header nav ul li.chatbot,
	header nav ul li.chatbot a {
	  width: 130px;
	}
}
/* ============================================== */
/* ヘッダーにお知らせ追加 */
/* ============================================== */
.header_caution{
  width: 100%;
  padding: 1em;
}
.header_caution > div{
  width: 90%;
  max-width: 980px;
  display: flex;
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 104px auto 0;
  gap: 16px;
  background-color: #fff;
  padding: 1em;
  font-weight: bold;
  border: 12px solid #FF2800;
  color: #000;
}
.header_caution p{
  color: #000;
  font-size: 18px;
}
.header_caution p a{
  color: var(--mainColor);
  font-size: 18px;
  text-decoration: underline;
}
.header_caution img{
  width: 24px;
  object-fit: contain;
  margin-top: 4px;
}

@media all and (max-width: 767px) {
  .header_caution{
    margin-top: 60px;
  }
  .header_caution > div{
    margin-top: 0;
  }
}
/* ============================================== */
/* KV */
/* ============================================== */
.kv{
  position: relative;
  z-index: 0;
  display: flex;
  margin: 0 auto 32px;
  width: 100%;
  height: auto;
}
.kv .kv_inner{
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 0;
}
.kv .kv_inner > div > h1{
}
.kv .kv_inner > div > h1 img{
  width: 100%;
}
.pc_cont{
  position: relative;
}
.kv_inner_btn{
  max-width: 1000px;
  width: 55%;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.kv {
  width: 100%;
  margin: 0px auto 0px !important;
}
.kv .kv_inner {
  max-width: none !important;
  padding: 0 0px 50px !important;
  width: 100% !important;
}
.kv .kv_inner .pc_cont{
  width: 100%;
}
@media screen and (min-width: 2000px) {
  .kv {
    height: auto !important;
  }
  .kv .kv_inner {
    max-width: 100% !important;
    background-position: 50% 0%;
  }
}
@media screen and (max-width: 1240px) {
  .kv .kv_inner {
      width: 100% !important;
  }
}
@media screen and (max-width: 1160px) {
  .kv {
    aspect-ratio: auto !important;
    background-image: none !important;
    padding: 0 !important;
    margin: 100px 0 0 !important;
  }
  .kv .kv_inner {
    background-image: none !important;
    padding: 0 !important;
    display: block !important;
    row-gap: 9vw;
    margin: 0 !important;
  }
  .kv .kv_inner > div:nth-of-type(2) {
      height: auto !important;
  }
  .kv .kv_inner > div > h1 img {
    margin: 0 !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 1160px) and (min-width: 768px) {
  .kv .kv_inner .pc_cont {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .kv .kv_inner .sp_cont {
    display: none !important;
  }
}
@media screen and (max-width: 1120px) {
  .kv .kv_inner {
      width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .kv {
    margin: 0px 0 0 !important;
  }
  .kv_inner_btn{
    width: 100%;
  } 
}
@media screen and (min-width: 2000px) {

}


/* ============================================== */
/* セクション共通 */
/* ============================================== */
main section{
  margin: 0 auto;
  padding: 80px 0 100px;
}
main section.noradius{
  border-radius: 0;
  box-shadow: none;
}

/* 中央揃えセクション（画面のカスタマイズ以降） */
main > section{
  text-align: center;
}
main > section h2{
  position: relative;
  z-index: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 24px auto 10px;
}
main > section h2 p{
  font-size: 20px;
  line-height: 1.85;
  font-weight: 500;
}

/* 202509改修追記 ナビゲーション設置------------------- */
/* ============================================== */
/* d_port-anc_menu navigation */
/* ============================================== */
/* d_port-anc_menu */
.d_port-anc_menu{
  background: var(--mainColor);
}
.d_port-anc_menu div{
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  padding-top: 20px;
  max-width: 1200px;
  width: 100%;
}
.d_port-anc_menu div .anc_list{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
}
.d_port-anc_menu div .anc_list:last-of-type{
  margin-bottom: 0;
}
.d_port-anc_menu div .anc_item{
  width: 600px;
}
.d_port-anc_menu div .anc_item a{
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;
  text-decoration: none;
}
.d_port-anc_menu div .anc_item a:hover{
  text-decoration: underline;
}
.d_port-anc_menu div .anc_item a:before{
  content: "▼";
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 2rem;
  vertical-align: top;
}

@media all and (max-width: 767px) {
  main > section h2{
    font-size: 31px !important;
    line-height: 1.3;
  }
  .d_port-anc_menu div{
    padding: 15px 10px;
    width: 100%;
  }
  .d_port-anc_menu div .anc_list{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
    padding-right: 0;
  }
  .d_port-anc_menu div .anc_item{
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 4px;
  }
  .d_port-anc_menu div .anc_item:last-of-type{
    /*border: none;*/
    padding-bottom: 0;
  }
  .d_port-anc_menu div .anc_item a:before{
    font-size: 1.6rem;
  }
  .d_port-anc_menu div .anc_item a,
  .d_port-anc_menu div .anc_item a:after{
    font-size: 1.4rem;
  }
}
/* END：202509改修追記 ナビゲーション設置------------------- */


body div.main-contents main {
  overflow-x: hidden !important;
  background-color: #FFF;
}






/* ============================================== */
/* パスキー認証のメリット */
/* ============================================== */
#section02 {
  padding-top: 0;
  background-image: url("/content/dam/daiwasecurities/onlinetrade/tool/d_port/images/passkey/whitebg_curve.png");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: contain;
}
#section02 .inner {
  max-width: 980px;
  padding: 0 0;
  width: 90%;
}
.section02-img{
  margin-top: 60px;
}
.section02-img::after{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 64px 100px 0px 100px;
  border-color: #A91A0A transparent transparent transparent;
  margin:40px 0 24px;
}
#section02 .inner p{
  max-width: 1280px;
  padding: 0 0;
  width: 100%;
}
#section02 .inner h2:before {
  background: #A91A0A;
  background: linear-gradient(90deg,rgba(169, 26, 10, 1) 0%, rgba(169, 26, 10, 1) 50%, rgba(123, 12, 0, 1) 50%, rgba(123, 12, 0, 1) 100%);
  bottom: -16px; /* 線の位置 */
  content: "";
  height: 6px; /* 線の高さ */
  left: 50%; /* 線の中央寄せ */
  position: absolute;
  transform: translateX(-50%); /* 線の中央寄せ */
  width: 50px; /* 線の長さ */
}
#section02 .inner .merit-text {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  background-color: #fff;
  border-radius: 16px;
}
#section02 .inner .merit-text p {
  font-size: 18px;
  padding: 20px 0;
  margin-top: 24px;
  font-family: var(--ff_NotoSans);
}
.section02-points{
  display: flex;
  gap:4%;
}
.section02-points section{
  display: flex;
  flex-direction: column;
  gap: 4%;
  align-items: center;
  padding: 0;
}
.section02-points h3{
  background-color: #A91A0A;
  padding: 0em 1em;
  border-radius: 40px;
  width: 100%;
  color: #fff;
  margin-top: 0;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: bold;
}
.section02-points section::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 44px 70px 0px 70px;
  border-color: #A91A0A transparent transparent transparent;
  margin-top: 40px;
}
@media all and (max-width: 767px) {
  #section02{
    padding-bottom: 64px;
  }
  #section02_anc { height: 30px !important; }
  #section02 .inner h2{
    margin-top: 24px;
  }
  #section02 .inner h2.sp_cont {
    padding: 0;
  }
  #section02 .inner h2.sp_cont::before {
    display: none;
  }
  #section02 .inner h2.sp_cont img {
    width: 70%;
    margin: 10px auto;
  }
  #section02 .inner .merit-text {
  }
  #section02 .inner .merit-text::after {
    display: none;
  }
  #section02 .inner .merit-text p {
    text-align: center;
    padding: 0px 5px;
    font-size: 110%;
  }
  .section02-img .sp_cont{
    max-width: 400px;
    margin: 0 auto;
  }
  .section02-img::after {
    border-width: 32px 60px 0px 60px !important;
    margin: 24px 0 8px;
  }
  .section02-img2 img{
    max-width: 400px;
    margin: 0 auto;
  }
  .section02-points section::before {
    border-width: 24px 34px 0px 34px;
    margin-top: 24px;
  }
  #section2 h2{
    margin-top: 24px;
  }
}




/* ============================================== */
/* パスキー認証とは？ */
/* ============================================== */
#section03 {
  background-color: #fff;
  padding-top: 0;
  border-bottom-left-radius: 800px 200px;
  border-bottom-right-radius: 800px 200px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 24px;

}
.accordion-wrap{
  display: none;
}
#section03 .inner {
  border: #A91A0A solid 3px;
  border-radius: 20px;
  width: 90%;
  max-width: 980px;
  padding: 0;
  margin: 40px auto;
}
#section03 .inner h3 {
  margin-top: 0;
  font-size: 22px;
  text-align: left;
  font-weight: 500;
  margin: 0px 0;
  display: flex;
  align-items: center;
  padding: .5em 1em;
  position: relative;
  font-weight: bolder;
}
#section03 .inner h3::after{/* 閉じている時 */
	content: "＋";
	position: absolute;
	right: 20px;
}
#section03 .inner h3.active::after{/* 開いている時 */
	content: "－";
}
#section03 .inner h3::before {
  content: "Q";
  background-color: #A91A0A;
  color: #fff;
  display: inline-block;
  width: 36px;
  height: 36px;
  font-size: 20px;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
  text-align: center;
  border-radius: 100%;
  flex-shrink: 0;
}
#section03 .inner h3 span {
  font-size: 130%;
  padding-left: 8px;
  color: #A91A0A;
}
#section03 .inner h3 span em {
  font-size: 170%;
  font-weight: 800;
}
#section03 .inner .passkey-text {
  margin-bottom: 30px;
}
#section03 .inner .passkey-text p {
  font-weight: 500;
}
#section03 .inner .accordion-wrap {
  max-width: 900px;
  margin: 40px auto 70px;
  width: 90%;
}
.loginflow-arrow{
  width: 220px;
  margin: 24px auto;
}
@media all and (max-width: 767px) {
  
  #section03 .inner .passkey-text p {
    font-size: 110%;
  }
  #section03 .inner h3 {
    font-size: 16px;
    padding: .5em 2.5em 0.5em .5em;
    gap: .5em;
  }
  #section03 .inner h3::before {
    width: 32px;
    height: 32px;
    font-size: 18px;
    margin: 0;
  }
  #section03 .inner .accordion-wrap .loginflow{
    padding: 4%;
  }
  #section03 .inner .accordion-wrap{
    margin: 12px auto;
  }
}




/* ============================================== */
/* アプリダウンロードBOX */
/* ============================================== */
.download-box-wrap {
}
.download-box-wrap h3 {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -1px;
}
.download-box-wrap h3 .l {
  font-size: 145%;
  font-weight: 800;
}
.download-box {
  max-width: 900px;
  margin: 0 auto 10px;
  display: flex;
  justify-content: space-between;
  border: 3px solid #A91A0A;
  border-radius: 30px;
}
.download-box .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #A91A0A;
  border-radius: 26px 0 0 26px;
  width: 56%;
}
.download-box .logo figure {
}
.download-box .logo figure img {
  display: inline-block;
  max-width: 370px;
}
.download-box .dl-link {
  background-color: #fff;
  border-radius: 0 26px 26px 0;
  width: 44%;
}
.download-box .dl-link ul {
  padding: 15px;
}
.download-box .dl-link ul li {
  display: inline-block;
}
.download-box .dl-link ul li.qr {
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
.download-box .dl-link ul li.qr img {
  display: inline-block;
  width: 140px;
}
.download-box .dl-link ul li.store-link {
}
.download-box .dl-link ul li.store-link.ios {
  margin-right: 8px;
}
.download-box .dl-link ul li.store-link.android {
}
.download-box-wrap .env-text {
  font-weight: 700;
  font-size: 125%;
}

@media all and (max-width: 767px) {
  
  .download-box-wrap h3 {
    font-size: 4.8vw;
    line-height: 1;
    margin-bottom: 15px;
  }
  .download-box {
    flex-direction: column;
  }
  .download-box .logo {
    width: 100%;
    border-radius: 26px 26px 0 0;
    padding: 20px 10vw;
  }
  .download-box .dl-link {
    width: 100%;
    border-radius: 0 0 26px 26px;
  }
  .download-box .dl-link ul {
    display: flex;
    justify-content: space-around;
  }
  .download-box .dl-link ul li {
    margin: 0 !important;
    text-align: center;
  }
  .download-box .dl-link ul li a {
    display: inline-block;
    margin: 10px 4vw;
  }
  .download-box .dl-link ul li a img {
    height: 11vw;
  }
  .download-box .dl-link ul li.qr {
    display: none;
  }
  .download-box .dl-link ul li.store-link.ios {
    width: 44%;
  }
  .download-box .dl-link ul li.store-link.ios img {
  }
  .download-box .dl-link ul li.store-link.android {
    width: 55%;
  }
  .download-box .dl-link ul li.store-link.android img {
  }
  .download-box-wrap .env-text {
    font-size: 105%;
    line-height: 1.5;
    text-align: left;
  }
  
}



/* ============================================== */
/* ご利用までのながれ */
/* ============================================== */
.section04 {
  background-color: #E25D57;
  padding: 0px 0; 
   border-radius: 0 !important;
}
.section04 .inner {
  max-width: 980px;
  width: 80%;
  margin: 0 auto;
}


section .inner h2.mini-border {
  margin-top: 0;
  position: relative;
  padding: 50px 0 10px;
  margin-bottom: 30px;
  font-size: 30px;
}
section .inner h2.mini-border::before,
section .inner h2.mini-border::after {
  position: absolute;
  content: "";
  height: 7px;
  bottom: 0;
  left: 50%;
}
section .inner h2.mini-border::before {
  background: #A91A0A;
  width: 2em;
  margin-left: -1em;
}
section .inner h2.mini-border::after {
  width: 1em;
  background: #7B0C00;
}

.section04 .inner .registflow-text-sub {
  font-size: 16px;
  font-weight: 500;
  margin: 16px 0 0;
  text-align: left;
  font-family: var(--ff_NotoSans);
  color: #000;
}
.section04-img{
  width: 100%;
}

@media all and (max-width: 767px) {
  
  .section04 .inner {
    border-radius: 0;
  }
  .section04 .inner {
    width: 100%;
    padding: 40px 5%;
  }
  .section04 .inner .registflow-text-sub {
    font-size: 14px;
  } 
}



/* ============================================== */
/* PDFダウンロード */
/* ============================================== */
#section05 {
  padding: 0;
  padding-top: 64px;
  margin-bottom: 64px;
}
.section05-h2{
  margin-top: 0;
}
#section05 .inner {
  max-width: 980px;
}
.section05-tab-container {
  display: flex;
  gap:24px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.section05-tab {
  position: relative;
  padding: 1em;
  border-radius: 24px 24px 0 0;
  background-color: #ddd;
  transition: all .2s;
  cursor: pointer;
  width: 50%;
  font-weight: bold;
  font-size: 20px;
}
#section05 .inner h2:before {
    background: #A91A0A;
    background: linear-gradient(90deg, rgba(169, 26, 10, 1) 0%, rgba(169, 26, 10, 1) 50%, rgba(123, 12, 0, 1) 50%, rgba(123, 12, 0, 1) 100%);
    bottom: -16px;
    content: "";
    height: 6px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 50px;
}

/* タブ現在値 */
.current {
  color: #eaeaea;
  background-color: #A91A0A;
}

.menu-box{
  border: solid 1px #747373;
  transform: translate(0px, -1px);
  padding: 4%;
}

.menu-title{
  font-size: 26px;
  color: #A91A0A;
  text-align: center;
  margin:0 0 1em;
  font-weight: bold;
}
.menu-box-image{
  display: flex;
  gap:24px;
}
.menu-sub{
  font-size: 22px;
  margin-top: 2em;
  font-weight: bold;
}
.menu-sub a{
  display: block;
  width: 70%;
  margin: 24px auto 0;
}
.menu-box-pc p{
  font-size: 18px;
}
@media all and (max-width: 767px) {
  #section05 {
    padding-bottom: 0px;
    margin-top: 0;
    padding-top: 24px;
  }
  .section05-h2{
    margin-top: 24px !important;
  }
  .menu-box-image{
    flex-direction: column;
  }
  .menu-sub{
    font-size: 18px;
    padding-top: 1em;
  }
  .menu-sub a{
    display: block;
    width: 90%;
    margin: 16px auto;
  }
  .section05-tab{
    font-size: 16px;
  }
}



/* ============================================== */
/* パソコンからのログインにも */
/* ============================================== */
#section06 {
}
#section06 .inner {
	background-color: #fff;
	border-radius: 24px;
	padding-bottom: 60px;
}

#section06 .inner .passkey-pc-goriyou-ok {
  text-align:center;
	margin-bottom: 40px;
}
#section06 .inner .passkey-pc-goriyou-ok span {
  display: inline-block;
	background-color: #fbf6f5;
	border-radius: 4px;
	padding: 4px 35px;
	font-weight: 600;
	font-size: 20px;
}

#section06 .inner .pclogin-text {
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 40px;
  font-size: 18px;
}
#section06 .inner .pclogin-text .r {
	color: #A91A0A;
	font-size: 100%;
	font-weight: 700;
}
#section06 .inner .pclogin-text .l {
	color: #A91A0A;
	font-size: 130%;
	font-weight: 700;
}
#section06 .inner .pclogin-flow {
  margin-bottom: 60px;
}
#section06 .inner .pclogin-flow .pclogin-flow-inner {
  display: flex;
  align-items: center;
}
#section06 .inner .pclogin-flow .pclogin-flow-inner .pclogin-flow-img {
  width: 35%;
}
#section06 .inner .pclogin-flow .pclogin-flow-inner .pclogin-flow-img figure {
  padding: 0px;
}
#section06 .inner .pclogin-flow .pclogin-flow-inner .pclogin-flow-img figure img {
}
#section06 .inner .pclogin-flow .pclogin-flow-inner .pclogin-flow-text {
  width: 65%;
}
#section06 .inner .pclogin-flow .pclogin-flow-inner .pclogin-flow-text p {
	text-align: left;
	font-weight: 500;
	padding-bottom: 20px;
}
#section06 .inner .pclogin-flow .pclogin-flow-inner .pclogin-flow-text p .r {
	color: #A91A0A;
	font-weight: 700;
  font-size: 18px;
}
#section06 .inner .pclogin-flow .pclogin-image-flow {
}
#section06 .inner .youtube-box {
	display: flex;
	background-color: #F5F5F5;
	border-radius: 20px;
	padding: 20px;
	align-items: center;
}
#section06 .inner .youtube-box figure {
  width: 45%;
}
#section06 .inner .youtube-box p {
  width: 55%;
  font-weight: 700;
  text-align: left;
  padding: 16px;
}

@media all and (max-width: 767px) {
  .section05-tab {
    padding: 1em .5em;
    line-height: 1.3;
  }
  .section05-tab-container {
    gap: 8px;
  }
  .menu-title{
    line-height: 1.2;
    margin-top: 16px;
    margin-bottom: 32px;
    font-size: 18px;
  }
  #section06 .inner .youtube-box figure {
    width: 100%;
  }
  .youtube-box .sp_cont{
    font-size: 24px;
  }

}


/* よくあるご質問 */
#section07{
  padding: 0 100px;
}
#section07 .inner{
  max-width: 1080px;
}
#section07 .inner h2:before {
  background: #A91A0A;
  background: linear-gradient(90deg, rgba(169, 26, 10, 1) 0%, rgba(169, 26, 10, 1) 50%, rgba(123, 12, 0, 1) 50%, rgba(123, 12, 0, 1) 100%);
  bottom: -16px;
  content: "";
  height: 6px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 50px;
}
.qa_container{
  margin-top: 64px;
}
.qa_container > div{
  border-bottom: 1px solid #000;
}
.qa_container > div:first-child{
  border-top: 1px solid #000;
}
.qa_container > div > dt, .qa_container > div > dd{
  margin-top: 0;
  font-size: clamp(18px, 1.285vw, 27px);
  text-align: left;
  font-weight: 500;
  margin: 0px 0;
  display: flex;
  align-items: center;
  padding: .5em 3em .5em 1em;
  position: relative;
}
.qa_container > div > dt{
  font-weight: bold;
}
.qa_container .bold{
  font-weight: bold;
}
.qa_container > div > dt::before {
  content: "Q";
  background-color: #A91A0A;
  color: #fff;
  display: inline-block;
  width: 36px;
  height: 36px;
  font-size: 20px;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
  text-align: center;
  border-radius: 100%;
  flex-shrink: 0;
}
.qa_container > div > dd::before {
  content: "A";
  background-color: #000;
  color: #fff;
  display: inline-block;
  width: 36px;
  height: 36px;
  font-size: 20px;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
  text-align: center;
  border-radius: 100%;
  flex-shrink: 0;
}
.qa_container > div > dt::after{/* 閉じている時 */
	content: "＋";
	position: absolute;
	right: 20px;
}
.qa_container > div > dt.active::after{/* 開いている時 */
	content: "－";
}
.qa_container > div > dd{
  display: none;  
  align-items: flex-start;
}
.qa_container p,.qa_container dd,.qa_container dt,.qa_container li,.qa_container a{
  font-size: 24px;
}
.auth-check-list > li:first-child{
  margin-bottom: 1em;
}
.device-change-list{
  margin-top: 1em;
}
.device-change-list li{
  margin-bottom: 1em;
}
.qa_container a{
  text-decoration: none;
  pointer-events: none;
}
/* =================== =========================== */
/* 最下部（フッター上） */
/* ============================================== */
#bottom-section {
  background-color: #fff;
}
#bottom-section .app-link-btn {
  margin: 0 0 60px;
}
#bottom-section .app-link-btn a {
  position: relative;
  display: block;
  background-color: #A91A0A;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 19px 0;
  border-radius: 40px;
  max-width: 700px;
  margin: 0 auto;
}
#bottom-section .app-link-btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 53%;
  right: 35px;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-left: none;
  border-bottom: none;
  transform: translatey(-50%) rotatez(45deg);
}
#bottom-section .license-text {
  max-width: 960px;
  padding: 0 50px;
  margin: 100px auto -30px;
  text-align: left;
  font-size: 87%;
  font-weight: 500;
}


@media all and (max-width: 767px) {
  .qa_container a{
    text-decoration: underline;
    pointer-events: all;
  }
  #bottom-section {
    border-radius: 0;
  }
  #bottom-section .app-link-btn a {
    text-align: left;
    font-size: 4.5vw;
    line-height: 1.3;
    padding-left: 17vw;
    padding-right: 17vw;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 10vw;
  }
  #bottom-section .license-text {
    padding: 0;
    font-size: 92%;
  }
  #section06 .inner .pclogin-flow .pclogin-flow-inner {
    flex-direction: column;
  }
  #section06 .inner .pclogin-flow .pclogin-flow-inner .pclogin-flow-img {
    width: 60%;
  }
  #section06 .inner .pclogin-flow .pclogin-flow-inner .pclogin-flow-text {
    width: 100%;
    font-size: 18px;
    text-align: center;
  }
  .pclogin-flow-inner{
    padding: 0;
  }
  .menu-box-pc p {
    font-size: 16px;
  }
  #section06 .inner .pclogin-flow .pclogin-flow-inner .pclogin-flow-text p .r {
    color: #A91A0A;
    font-weight: 700;
    font-size: 16px;
  }
  #section06 .inner{
    padding:0;
  }
  .menu-box .sp_cont{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: .5em;
  }
  #section06 .inner .pclogin-flow {
    margin-bottom: 32px;
  }
  .qa_container > div > dd,.qa_container > div > dt {
    font-size: 16px;
    padding: .5em 2.5em 0.5em .5em;
    gap: .5em;
  }
  .qa_container > div > dd::before,.qa_container > div > dt::before {
    width: 32px;
    height: 32px;
    font-size: 18px;
    margin: 0;
  }
  #section07 h2{
    margin-top: 0px;
  }
  #section07 {
    padding: 24px 0;
  }
  .qa_container p,.qa_container dd,.qa_container dt,.qa_container li,.qa_container a{
    font-size: 16px;
  }
}



/* 202508改修追記 アンカーリンク調整------------------- */
#olt-usage, #heading-smart, #heading-pc{
  scroll-margin-top: 100px;
}
/* END：202508改修追記 アンカーリンク調整------------------- */





/* ============================================== */
/* ディスクレーマー、フッター */
/* ============================================== */
/* 共通 */
.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 50px;
}
.panel-note{
  padding: 75px 0;
  border: none;
}
.panel-note h2{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
}
.panel-note h2::before{
  display: inline-block;
  content: '';
  width: 18px;
  height: 16px;
  background: url(/content/dam/daiwasecurities/onlinetrade/tool/d_port/images/ico/disclaimer.svg) no-repeat center / contain;
}
.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{padding-left: 8px;}
.link::before{margin-top: -2px;}
/* フッター */
footer{
  text-align: center;
  padding: 0 0 70px;
}

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 {
    width: 50px;
    height: 50px;
    opacity: 0.5;
    z-index: 9999;
  }
}

/* END：202509改修追記 SP用ページトップ修正------------------- */

/* ============================================== */
/* youtubeモーダル */
/* ============================================== */
/* .youtubeBox
----------------------------------------------- */
.youtubeBox{
  position:relative;
  height:0;
  overflow:hidden;
  padding-bottom:56.3%;
  padding-top:0;
}
.youtubeBox video,
.youtubeBox iframe,
.youtubeBox object,
.youtubeBox embed{
  border:none;
  width:100%;
  height:100%;
  position:absolute;
  left:0;
  top:0;
}
/* .js-youtube-modal
----------------------------------------------- */
.js-youtube-modal{
  cursor:pointer;
}
.js-youtube-modal .modal > .modal-inner{
  padding:0;
  position:relative;
  overflow:initial;
  overflow:visible;
  width:960px;
  max-width:95%;
}
/* .js-close-youtube-modal
----------------------------------------------- */
.js-close-youtube-modal{
  position:absolute;
  right:0;
  top:-50px;
  margin:0;
  display:block;
  width:30px;
  height:30px;
}
.js-close-youtube-modal .button{
  position:relative;
  display:block;
  width:30px;
  height:30px;
  padding:0;
  margin:0;
}
.js-close-youtube-modal .button::before,
.js-close-youtube-modal .button::after{
  content:'';
  position: absolute;
  top: 50%;
  background: #1d395b;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  background:#ffffff;
  display:block;
}
.js-close-youtube-modal .button::before{
  left:14px;
  width:3px;
  height:38px;
}
.js-close-youtube-modal .button::after{
  left: -3px;
  width: 38px;
  height: 3px;
}
/* 202509改修追記 追従バナー設置------------------- */
/* ============================================== */
/* 追従バナー */
/* ============================================== */
/* spとタブレット */
@media screen and (max-width: 920px) {
  .d_port-conversion{
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .d_port-conversion._bottomFixed{
    position: fixed;
    bottom:0;
    margin-bottom:0;
    z-index: -1;
    opacity:0;
    transition: all 0.3s ease;
    padding: 5px 20px 10px;
  }
  .d_port-conversion._bottomFixed p.conversion_lead{
    color:#fff;
    text-align:center;
    font-weight:bold;
  }
  .d_port-conversion._bottomFixed.is-show {
    z-index: 99;
    opacity:1;
  }
  .d_port-conversion._bottomFixed ._trade_links ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
  }
  .d_port-conversion._bottomFixed ._trade_links li {
    flex: 0 0 auto;
  }
  .d_port-conversion._bottomFixed ._trade_links img {
    width: auto;
    height: 44px;
    display: block;
  }
  .footer {
  }
}
/* END：202509改修追記 追従バナー設置------------------- */

/* 202509改修追記 追従バナーPCで非表示修正------------------- */
@media screen and (min-width: 921px) {
  .d_port-conversion{
    display: none;
  }
}
/* END：202509改修追記 追従バナーPCで非表示修正------------------- */





/* -----------------------------------------
  251226
  kv内にアプリダウンロードボタン追加
----------------------------------------- */
.kv_inner > .kv-app-box {
  opacity: 0;
  transition: .2s;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translatex(-50%);
  width: 100%;
  max-width: 1500px;
}
@media (min-width: 2000px) {
  .kv_inner > .kv-app-box {
    bottom: 100px;
  }
}
.kv.is_loaded .kv_inner > .kv-app-box {
  opacity: 1;
}
.kv .kv_inner > .kv-app-box ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 250px;
}
@media (min-width: 768px) and (max-width: 1500px) {

  .kv .kv_inner > .kv-app-box {
    display: flex;
    justify-content: flex-end;
  }
  .kv .kv_inner > .kv-app-box ul {
    width: 47vw;
    padding-right: 17vw;
  }
  .kv .kv_inner > .kv-app-box ul li {
    display: inline-block;
  }
}

.kv .kv_inner > .kv-app-box ul li {
  margin: 0 10px;
}
.kv .kv_inner > .kv-app-box ul li a.dl_link {
  
}
.kv .kv_inner > .kv-app-box ul li a.dl_link img {
  max-height: 40px;
}
@media (min-width: 768px) and (max-width: 1160px) {
  .kv_inner > .kv-app-box {
    bottom: 2.0vw !important;
  }
  .kv .kv_inner > .kv-app-box ul {
    width: 50vw !important;
    padding-right: 5vw !important;
  }
  .kv .kv_inner > .kv-app-box ul li {
    margin: 0 4px;
  }
  .kv .kv_inner > .kv-app-box ul li a.dl_link img {
    max-height: 70px;
  }
}
.kv .kv_inner > .kv-app-box ul li.qr img {
  width: 100px;
}

@media (max-width: 767px) {
  
  .kv .kv_inner > .kv-app-box {
    bottom: 8vw;
  }
  .kv .kv_inner > .kv-app-box  ul {
    width: 100%;
    padding: 0;
    justify-content: center;
  }
  .kv .kv_inner > .kv-app-box ul li a.dl_link img {
    max-height: 12vw
  }
}

/* -----------------------------------------
  251226-2
  アンカーリンク追加
----------------------------------------- */
.anchor-link-box {
  padding-bottom: 24px;
}
.anchor-link-box ul {
  border-radius: 200px;
  max-width: 1000px;
  width: 55%;
  margin: 0 auto;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-width: 600px;
}
.anchor-link-box ul li {
  text-align: center;
  width: calc(100%/3);
  border-left: 1px solid #A91A0A;
}
.anchor-link-box ul li:last-child{
  border-right: 1px solid #A91A0A;
}
.anchor-link-box ul li:nth-last-child {
  border-right: 1px solid #A91A0A;
}
.anchor-link-box ul li a {
  display: block;
  position: relative;
  font-weight: 600;
  font-feature-settings: "palt";
  line-height: 1.3;
  font-size: 22px;
  padding: 16px 0 40px 0;
}
.anchor-link-box ul li a span {
  font-size: 22px;
  line-height: 1.3em;
}
.anchor-link-box ul li a:after {
  position: absolute;
  bottom: 0px;
  left: 50%;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 3px solid #A91A0A;
  border-top: none;
  border-left: none;
  border-radius: 2px;
  transform: rotatez(45deg) translatex(-50%);
}
.anchor-link-box ul li a span.r {
  color: #A91A0A;
  font-size: 100%;
}

@media (max-width: 767px) {
  .pc_only{ 
    display: none;
  }
  .anchor-link-box ul li:last-child a {
      line-height: 1.3;
  }
  .anchor-link-box ul {
    border-radius: 56px;
    padding: 20px 0px;
    min-width: auto;
    width: 100%;
  }
  .anchor-link-box ul li {
    width: 100%;
  }
  .anchor-link-box ul li:first-child {
    border-left: none;
  }
    .anchor-link-box ul li:last-child {
    border-right: none;
  }
  .anchor-link-box ul li a {
    font-size: 14px;
    padding: 16px 0 32px 0;
  }
  .anchor-link-box ul li a:after {
    bottom: auto;
    left: auto;
    top: 84%;
    right: 50%;
    transform: rotatez(45deg) translatey(-50%);
  }

}
.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%;
  }
}












/* ------------------------------------------------------------- */

  
header {
  min-height: 100px;
  box-shadow: 0 1px 0 #e0e0e0;
}
@media (min-width: 0px) and (max-width: 767px) {
  header {
    min-height: 60px;
  }
}
.header_caution > div > ul {
}
.header_caution > div > ul > li {
  background-image: url("/content/dam/daiwasecurities/onlinetrade/tool/d_port/images/icon_caution.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-left: 32px;
  margin: 8px 0;
}
.header_caution > div > ul > li > p,
.header_caution > div > ul > li > p a {
  line-height: 1.2;
}
@media (min-width: 0px) and (max-width: 767px) {
  .header_caution > div {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .header_caution > div > ul > li > p,
  .header_caution > div > ul > li > p a {
    font-size: 16px;
  }
}


#intro {
  padding-top: 52px;
  background-color:#A91A0A;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 50px;
}
#intro .inner {
  background-color: #fff;
  padding: 40px;
  border-radius: 40px;
  max-width: 980px;
  width: 90%;
}
#intro .inner h2 {
  background-color: #A91A0A;
  padding: .2em 1.9em;
  border-radius: 40px;
  width: fit-content;
  color: #fff;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 27px;
}
#intro .inner p {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  justify-content: center;
  line-height: 1.75;
  padding-bottom: 16px;
}
#intro .inner p:last-child {
  padding-bottom: 0;
}
#intro .inner p a.modal-open {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #00a;
  color: #00a;
  padding-left: 1.5em;
}
#intro .inner p a.modal-open:before {
  content: "";
  display: block;
  width: .5em;
  height: .5em;
  border: 2px solid #00a;
  position: absolute;
  top: 50%;
  left: .4em;
  transform: rotatez(-45deg) translatey(-50%);
  border-left: none;
  border-top: none;
}

@media all and (max-width: 767px) {
  
  #intro{
    padding-bottom: 40px;
  }
  #intro .inner h2 {
    font-size: 22px !important;
    padding: .4em 1em;
    border-radius: 24px;
  }
  #intro .inner {
    padding: 24px;
    border-radius: 24px;
  }
  #intro .inner p {
    font-size: 16px;
    line-height: 1.35
  }
  
}

/* h2のかざり（共通） */
section .inner h2.kazari {
  margin-bottom: 40px;
}
section .inner h2.kazari:before {
  background: #A91A0A;
  background: linear-gradient(90deg,rgba(169, 26, 10, 1) 0%, rgba(169, 26, 10, 1) 50%, rgba(123, 12, 0, 1) 50%, rgba(123, 12, 0, 1) 100%);
  bottom: -16px; /* 線の位置 */
  content: "";
  height: 6px; /* 線の高さ */
  left: 50%; /* 線の中央寄せ */
  position: absolute;
  transform: translateX(-50%); /* 線の中央寄せ */
  width: 50px !important; /* 線の長さ */
}

section .inner h2.kazari + p {
  font-weight: 600;
  text-align: center;
  font-size: 26px;
  text-indent: .7em;
}
@media (min-width: 0px) and (max-width: 767px) {
  section .inner h2.kazari {
    margin-top: 0;
  }
  section .inner h2.kazari + p {
    font-size: 18px;
  }
}

.reg-flow {
}
.reg-flow ol {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 70px;
}
.reg-flow ol li {
  position: relative;
  border: 4px solid #A91A0A;
  border-radius: 40px;
  width: 31%;
  padding: 40px 20px 20px;
}
.reg-flow ol li .step {
  background-color: #A91A0A;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: -80px auto 0;
}
.reg-flow ol li .step:after {
  content: "Step";
  color: #fff;
  font-weight: 500;
  display: block;
  line-height: 1;
  margin: -24px 0 0 0;
}
.reg-flow ol li .step .num {
  display: block;
  transform: translatey(-8px) scalex(1.2);
  color: #fff;
  font-weight: 500;
  font-size: 40px;
}
.reg-flow ol li dl {
  padding-top: 8px;
}
.reg-flow ol li dl dt,
.reg-flow ol li dl dt em {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.reg-flow ol li dl dt {
  min-height: 70px;
  padding-top: 20px;
}
.reg-flow ol li dl dt:has(br) {
  padding-top: 10px;
}
.reg-flow ol li dl dt em {
  color: #A91A0A;
}
.reg-flow ol li dl dd {
}
.reg-flow ol li dl dd.pict {
  padding: 20px 0;
}
.reg-flow ol li dl dd.pict img {
  width: 80%;
  margin: 0 auto;
}
.reg-flow ol li dl dd.text {
}
.reg-flow ol li dl dd.text p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.reg-flow ol li dl dd.text p.notice {
  font-size: 80%;
  padding-top: 16px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .reg-flow ol {
    flex-direction: column;
  }
  .reg-flow ol li {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 24px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 32px;
  }
  .reg-flow ol li dl dt {
    height: auto;
  }
  .reg-flow ol li dl dd.text p {
    text-align: center;
  }
  .reg-flow ol li dl dd.text p.notice {
    font-size: 14px;
  }
}


#anc_02 {
  background-color: #FAE9E8;
}

section .inner .inner-section {
  max-width: 980px;
  background-color: #fff;
  border-radius: 40px;
  padding: 40px;
  margin: 20px auto 40px;
}
section .inner .inner-section h4 {
  text-align: left;
  font-size: 28px;
  font-weight: 700;
}
section .inner .inner-section h4:before {
  content: "■";
  display: inline-block;
  margin-right: .2em;
  color: #A91A0A;
}
section .inner .inner-section p {
  text-align: left;
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 21px;
}
@media (min-width: 0px) and (max-width: 767px) {
  section .inner .inner-section {
    padding: 24px;
    border-radius: 24px;
  }
  section .inner .inner-section h4 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  section .inner .inner-section p {
    font-size: 18px;
  }
}


section .inner .inner-section .table-container {
}
section .inner .inner-section .table-container .table-title {
  font-weight: 700;
  font-size: 24px;
  border-bottom: 1px solid #ccc;
  padding: 8px 8px 0;
}
section .inner .inner-section .table-container table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}
section .inner .inner-section .table-container table th,
section .inner .inner-section .table-container table td {
  border: 1px solid #ddd;
  padding: 8px;
}
section .inner .inner-section .table-container table th {
  text-align: center;
  background-color: #eee;
}
section .inner .inner-section .table-container table td {
  font-weight: 500;
  vertical-align: middle;
}
section .inner .inner-section .table-container table td.hozonsaki {
  text-align: left;
}
section .inner .inner-section .table-container table tr.boldline td {
  font-weight: 800;
}
section .inner .inner-section .table-container table td em.r {
  color: #A91A0A;
}
@media (min-width: 0px) and (max-width: 767px) {
  
  section .inner .inner-section .table-container .sp_cont dl.device-section {
    margin: 16px 0;
  }
  section .inner .inner-section .table-container .sp_cont dl.device-section dt {
    text-align: left;
    font-weight: 800;
    font-size: 4.0vw;
  }
  section .inner .inner-section .table-container .sp_cont dl.device-section dd {
    margin-bottom: 8px;
  }
  section .inner .inner-section .table-container .sp_cont dl.device-section dd table {
  }
  section .inner .inner-section .table-container .sp_cont dl.device-section dd table th,
  section .inner .inner-section .table-container .sp_cont dl.device-section dd table td {
    padding: 8px 4px;
  }
  section .inner .inner-section .table-container .sp_cont dl.device-section dd table th,
  section .inner .inner-section .table-container .sp_cont dl.device-section dd table td,
  section .inner .inner-section .table-container table td em.r {
    font-size: 3.8vw;
    line-height: 1.3;
  }
  section .inner .inner-section .table-container .sp_cont dl.device-section dd table th {
    vertical-align: middle;
    width: 20vw;
  }
  section .inner .inner-section .table-container .sp_cont dl.device-section dd table td {
    text-align: left;
  }
  
}


section .inner .inner-section .wide-pdf-button {
  max-width: 80%;
  margin: 40px auto 0;
}
section .inner .inner-section .wide-pdf-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #A91A0A;
  padding: 20px 40px;
  border-radius: 80px;
}
section .inner .inner-section .wide-pdf-button a:hover {
  box-shadow: 0 4px 16px rgba(58, 3, 3, .2);
}
section .inner .inner-section .wide-pdf-button a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  background-image: url(/content/dam/daiwasecurities/onlinetrade/tool/d_port_web/images/icon_pdf.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}
section .inner .inner-section .wide-pdf-button a span {
  color: #A91A0A;
  font-weight: 600;
  font-size: 24px;
}
@media (min-width: 0px) and (max-width: 767px) {
  
  section .inner .inner-section .wide-pdf-button {
    max-width: 100%;
  }
  section .inner .inner-section .wide-pdf-button a {
    border-radius: 16px;
    padding: 8px 16px;
  }
  section .inner .inner-section .wide-pdf-button a span {
    text-align: left;
    font-size: 4.1vw;
    line-height: 1.4;
    width: calc(100% - 24px);
  }
  section .inner .inner-section .wide-pdf-button a:before {
    width: 24px;
    height: 24px;
  }
  
}


section .qa_container > div > dt.accordion2 {
  cursor: pointer;
  background-image: none;
  line-height: 1.5;
  padding: .8em 3em .8em 1em;
}
section .qa_container > div > dt.accordion2:hover {
  background-color: #fdf6f6;
}
section .qa_container > div > dd.accordion-wrap {
}
@media (min-width: 0px) and (max-width: 767px) {
  section .qa_container > div > dd.accordion-wrap {
    padding-left: 1em;
    padding-right: .5em;
  }
}
section .qa_container > div > dd.accordion-wrap > div > p,
section .qa_container > div > dd.accordion-wrap > div > p a,
section .qa_container > div > dd.accordion-wrap > div > p em,
section .qa_container > div > dd.accordion-wrap > div > dl dt,
section .qa_container > div > dd.accordion-wrap > div > dl dd {
  font-size: clamp(18px, 1.285vw, 27px);
}
@media (min-width: 0px) and (max-width: 767px) {
  section .qa_container > div > dd.accordion-wrap > div > p,
  section .qa_container > div > dd.accordion-wrap > div > p a,
  section .qa_container > div > dd.accordion-wrap > div > p em,
  section .qa_container > div > dd.accordion-wrap > div > dl dt,
  section .qa_container > div > dd.accordion-wrap > div > dl dd {
    font-size: 16px;
  }
  section .qa_container > div > dd.accordion-wrap > div > p:first-child {
    padding-top: 0;
  }
}
section .qa_container > div > dd.accordion-wrap > div > p {
  padding: 10px 0;
}
section .qa_container > div > dd.accordion-wrap > div > p a {
  text-decoration: underline;
  pointer-events: auto;
  color: #152666;
}
section .qa_container > div > dd.accordion-wrap > div > p em.r {
  color: #A91A0A;
}
section .qa_container > div > dd.accordion-wrap > div > dl {
}
section .qa_container > div > dd.accordion-wrap > div > dl dt {
}
section .qa_container > div > dd.accordion-wrap > div > dl dd {
  text-indent: -1em;
  padding-left: 1em;
}
@media (min-width: 0px) and (max-width: 767px) {
  section .qa_container > div > dd.accordion-wrap > div > dl {
    width: 100%;
  }
  section .qa_container > div > dd.accordion-wrap > div > dl dt {
    padding: 0;
    background-image: none;
  }
  section .qa_container > div > dd.accordion-wrap > div > dl dd {
    padding-right: 0;
    line-height: 1.5;
    margin: 4px 0;
  }
}



body.-show-modal .modal-window {
  opacity: 1;
  pointer-events: auto;
}
.modal-window {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translatey(-50%) translatex(-50%);
  width: 90%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 40px;
  padding: 40px 40px 32px;
  box-shadow: 0 16px 24px rgb(0 0 0 / .3), 0 0 40px 100vw rgb(0 0 0 / .5);
  transition: .2s;
}
.modal-window .modal-window-inner {
}
.modal-window .modal-window-inner h2,
.modal-window .modal-window-inner h2 em {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}
.modal-window .modal-window-inner h2 em {
  color: #A91A0A;
}
.modal-window .modal-window-inner p {
  font-weight: 500;
}
.modal-window .modal-window-inner p.sub-h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

.modal-window .modal-window-inner .-col2 {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.modal-window .modal-window-inner .-col2 .modal-window-inner-img {
}
.modal-window .modal-window-inner .-col2 .modal-window-inner-img img {
  width: 200px;
}
.modal-window .modal-window-inner .-col2 .modal-window-inner-text {
}
.modal-window .modal-window-inner .-col2 .modal-window-inner-text p {
  font-size: 18px;
}

@media (min-width: 0px) and (max-width: 767px) {
  
  .modal-window {
    border-radius: 16px;
    padding: 24px;
  }
  .modal-window .modal-window-inner h2,
  .modal-window .modal-window-inner h2 em {
    font-size: 5.5vw;
  }
  .modal-window .modal-window-inner p.sub-h2 {
    font-size: 3.3vw;
  }
  .modal-window .modal-window-inner .-col2 {
    flex-direction: column;
  }
  .modal-window .modal-window-inner .-col2 .modal-window-inner-img img {
    width: 40%;
    margin: 0 auto;
  }
  .modal-window .modal-window-inner .-col2 .modal-window-inner-text p {
    font-size: 4vw;
    line-height: 1.5;
  }

  
}

.modal-window .modal-window-inner .modal-window-close {
  margin-top: 16px;
  text-align: center;
}
.modal-window .modal-window-inner .modal-window-close a {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 40px;
  padding: 8px 24px;
  font-weight: 500;
}
.modal-window .modal-window-inner .modal-window-close a:before {
  content: "✕";
  display: inline-block;
  margin-right: 16px;
}
.modal-window .modal-window-inner .modal-window-close a:hover {
  box-shadow: 0 2px 16px rgb(0 0 0 / .3);
}


@media (min-width: 0px) and (max-width: 767px) {

  .anchor-link-box ul li a {
    padding-top: 25px;
    padding-bottom: 41px;
  }
  .anchor-link-box ul li a:has(br) {
    padding-top: 16px;
    padding-bottom: 32px;
  }

}
















