@charset "UTF-8";

/* ---------------------------------------------------------
リセット
----------------------------------------------------------*/
* {
  box-sizing: border-box;
}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
	font: inherit;
  vertical-align: baseline;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,
section {
  display: block;
}
ol,ul {
  list-style: none;
}
blockquote,q {
  quotes: none;
}
blockquote:before,blockquote:after {
  content: '';
  content: none;
}
q:before,q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th,table td {
  vertical-align: top;
}
input,button,select,textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
  display: none;
}
input[type='submit'],
input[type='button'],
label,button,select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}



/* ---------------------------------------------------------
共通パーツ
----------------------------------------------------------*/
body {
  width: 100%;
  height: 100%;
  font-family: 'Noto Sans JP', 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', 'YuGothic M', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, Arial, sans-serif;
  -webkit-text-size-adjust: none;
  /*font-size: 62.5%;*/
  color: #333333;
  line-height: 1.5;
  font-weight: 500;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  letter-spacing: 0;
  overflow-y: auto;
}
html,body {
  height: 100%;
}
html {
  font-size: 62.5%;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.30378vw;
  }
}
@media (min-width: 769px) and (max-width: 1160px) {
  html {
    font-size: 0.86207vw;
  }
}
a {
  text-decoration: none;
  color: #333;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.resize {
  width: 100%;
  height: auto;
}
.is-sp {
  display: block !important;
}
.is-pc {
  display: none !important;
}
@media (min-width: 769px) {
 .inner01 {
    max-width: 1200px;
    width: 98%;
  }
  .is-sp {
    display: none !important;
  }
  .is-pc {
    display: block !important;
  }
}




/* ---------------------------------------------------------
口座開設のお申込みの流れ
----------------------------------------------------------*/
.accountAppFlowArea {
  padding: 6% 4rem 4rem;
}
.accountAppFlowArea .flow-title {
  padding-bottom: 7% !important;
  font-size: 5rem !important;
}
.accountAppFlowArea .flow-step .box02 {
  font-size: 39px !important;
  font-size: 3.9rem !important;
  font-weight: 700 !important;
}
.accountAppFlowArea .flow-step .is-cfd {
  display: block !important;
  width: 77.9%;
  margin: 15px 0 0 19%;
  text-indent: -1em;
  padding-left: 1em;
  font-size: min(24px, 3.6vw);
  letter-spacing: 0.02em;
}
.accountAppFlowArea .flow-step .box02 .is--pc {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .accountAppFlowArea {
    /* margin-bottom: -30px !important; */
    padding: 80px 4rem 60px !important;
  }
  .accountAppFlowArea .flow-title {
    margin-top: 0 !important;
    padding-bottom: 55px !important;
    font-size: 4rem !important;
  }
  .accountAppFlowArea .flow-step .box02 {
    font-size: 2.6rem !important;
  }
  .accountAppFlowArea .flow-step .is-cfd {
    display: block !important ;
    width: 90%;
    margin: 15px auto 0;
    text-indent: -1em;
    padding-left: 1em;
    font-size: min(16px, 1.65vw);
    letter-spacing: 0.03em;
  }
  .accountAppFlowArea .flow-step .box02 .is--pc {
    display: block !important;
  }
}



/* ---------------------------------------------------------
無料口座開設ボタン[光]
----------------------------------------------------------*/
.accountBtn {
  width: 100%;
  margin: 0 auto 0;
  text-align: center;
  padding: 5vw 0;
  background-color: #de0025;
}
.accountBtn .link-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  display: block;
  width: 90%;
  line-height: 1.3;
  border-radius: 50px;
  overflow: hidden;
  background: #de0025;
  transition: all 0.5s;
}
.accountBtn .link-btn:active {
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}
.accountBtn .link-btn:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient( 130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 55%);
  animation: shine 5s infinite;
}
@keyframes shine {
  33% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.accountBtn .link-btn a {
  position: relative;
  display: block;
  font-size: clamp(14px, 3.846153846vw, 28px);
  font-weight: 700;
  margin: 0 auto;
  padding: 2.8vw 0;
  color: #fff;
  border: 2px solid #fff;
  box-sizing: border-box;
  letter-spacing: 0.05em;
  line-height: 1.3;
  border-radius: 50px;
  overflow: hidden;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.accountBtn .link-btn a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 2.5% auto auto;
  max-width: 30px;
  max-height: 30px;
  min-width: 18px;
  min-height: 18px;
  width: 3.91vw;
  height: 3.91vw;
  background-image: url(/products/common/img/icn_accountbtn_arr.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: right center;
}

@media screen and (min-width: 769px){
  .accountBtn {
    width: 100%;
    margin: 0 auto 0;
    text-align: center;
    padding: 25px 0;
    background-color: #de0025;
  }
  .accountBtn .link-btn {
    max-width: 670px;
    width: 63%;
  }
  .accountBtn .link-btn.zoom-in:hover {
    transform: scale(1.1);
  }
  .accountBtn .link-btn a{
    font-size: clamp(20px, 2.586206897vw, 30px);
    padding: 20px 0;
  }
  .accountBtn .link-btn a::after{
    margin: auto 12px auto auto;
    min-width: 25px;
    min-height: 25px;
  }
}


/* ---------------------------------------------------------
口座を開設する sp
----------------------------------------------------------*/
#account-bnr {
	width:100%;
	position: fixed;
	bottom: -120px;
	left: 0;
	background-color:rgba(0,0,0,0.25);
	padding:1.6% 0;
	z-index:100;
}
.account-bnr.m--hero {
  margin-top: 6vw;
}
.account-bnr.m--hero .account-bnr-cover {
  padding: 0;
}
.account-bnr__btn {
  position: relative;
  display: block;
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0.3% 2vw 1%;
  border: 4px solid #fff;
  background: #de0025;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
	text-decoration: none;
}
.account-bnr__btn:after {
  content: '→';
  position: absolute;
  top: 50%;
  right: 3vw;
  font-size: 53px;
  font-size: 5.3rem;
  font-weight: 500;
	color: #fff;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.account-bnr__btn strong {
  display: block;
  font-size: 57px;
  font-size: 5.7rem;
  font-weight: 500;
	color: #ffffff;
}
.account-bnr__btn.m--active {
  -webkit-animation: scale_anim 1s 1.2s cubic-bezier(0.195, 0.55, 0.295, 1.53);
  animation: scale_anim 1s 1.2s cubic-bezier(0.195, 0.55, 0.295, 1.53);
}
.account-bnr__txt {
  display: block;
  font-size: 28.5px;
  font-size: 2.85rem;
  font-weight: 500;
  color: #fff;
}
.account-bnr-free {
  position: absolute;
  top: 50%;
  left: -9%;
  width: 15vw;
  height: 15vw;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
  background: #fffc00;
}
.account-bnr-free span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  font-size: 37px;
  font-size: 3.7rem;
  font-weight: 700;
	color: #de0025;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.account-bnr-cover {
  padding: 25px 8vw;
}

/* ---------------------------------------------------------
口座を開設 pc
----------------------------------------------------------*/
@media screen and (max-width: 768px){
  .side-link{
    display: none;
  }
}
@media screen and (min-width: 769px){
  .side-link span:nth-child(1) {
    font-size: 2rem;
    color: #fffc00;
    text-align: center;
    font-weight: bold;
    display: block;
  }
  .side-link .redtxt {
    display: inline-block;
    font-size: 3.6rem;
    font-size: 3.06122449vw;
    font-weight: bold;
    writing-mode: vertical-rl;
  }
  .side-link.slide {
    display: inline-block;
    background: #de0025;
    color: #fff;
    overflow: hidden;
    position: fixed;
    top: 30%;
    right: 0;
    border-radius: 10px;
    padding: 10px 10px 30px 10px;
    z-index: 99;
    border: 2px solid #ffffff;
    box-sizing: border-box;
  }
  .side-link.slide::after {
    background: #fff;
    color: #de0025;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
  }
  .side-link.slide:hover {
    color: #de0025;
  }
  .side-link.slide:hover span {
    color: #de0025;
  }
  .side-link.slide:hover::after {
    transform: scale(1, 1);
  }
}
@media screen and (min-width: 1200px) {
  .side-link .redtxt {
    font-size: 3.6rem;
  }
}



/* ---------------------------------------------------------
共通　フッターエリア
----------------------------------------------------------*/
.contents-block {
  padding: 6% 4rem 0;
}
.bt-content-inner p {
  font-size: clamp(12px, 1.83vw, 14px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.bt-content-inner .free-call {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.bt-content-inner .free-call .free-call-number {
  width: 83%;
  margin-left: auto;
}
.bt-content-inner .free-call .free-call-number p {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.2;
}
.bt-content-inner .free-call .free-call-number a {
  display: inline-block;
  color: #333;
  font-size: 4.2rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  white-space: nowrap;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px){
  .bt-content-inner .free-call .free-call-number p:nth-of-type(1) a {
    pointer-events: none;
  }
}
.bt-content-inner .free-call .free-call-number a span {
  font-size: 8.4rem;
}
.bt-content-inner .free-call figure {
  max-width: 85px;
  width: 13%;
  margin: 4% 0 0 0;
}
.bt-content-inner .note-txt-area {
  margin-top: 5rem;
  padding-bottom: 4.4rem;
}
.bt-content-inner .note-txt-area .note-txtBtn {
  position: relative;
  text-align: center;
  padding: 1.3rem 0;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid #4c5866;
  background-color: #4c5866;
  color: #fff;
  margin-bottom: 1rem;
}
.bt-content-inner .note-txt-area .note-txt p {
  margin-bottom: 3%;
  font-size: clamp(12px, 1.83vw, 14px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.bt-content-inner .note-txt-area .note-txt .rule-list {
  margin-bottom: 3%;
  text-align: left;
}
.bt-content-inner .note-txt-area .note-txt .rule-list ul li {
  font-size: clamp(12px, 1.83vw, 14px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-top: 2rem;
}
.bt-content-inner .note-txt-area .note-txt .rule-list.memberAssociation ul li:nth-child(1),
.bt-content-inner .note-txt-area .note-txt .rule-list.memberAssociation ul li:nth-child(2) {
  display: inline-block;
}
.bt-content-inner .note-txt-area .note-txt02 {
  margin-bottom: 3%;
}
.bt-content-inner .note-txt-area .note-txt02 ul {
  border: 2px solid #dddddd;
  padding: 4% 3%;
}
.bt-content-inner .note-txt-area .note-txt02 ul li {
  font-size: clamp(12px, 1.83vw, 14px);
  font-weight: 500;
  text-indent: -1em;
  padding-left: 1em;
}
.bt-content-inner .note-txt-area .note-txt02 ul li:not(:last-child) {
  margin-bottom: 1.5%;
}
.bt-content-inner .note-txt-area .note-txt02 ul li a {
  color: #00a8bb;
  text-decoration: underline;
}
@media screen and (max-width: 375px) {
  .bt-content-inner .note-txt-area .note-txt p {
    font-size: 12px;
  }
  .bt-content-inner .note-txt-area .note-txt .rule-list ul li {
    font-size: 12px;
  }
  .bt-content-inner .note-txt-area .note-txt02 ul li {
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  .bt-content-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  .bt-content-inner p {
    text-align: center;
    font-size: 2rem;
    line-height: 1.6;
  }
  .bt-content-inner .free-call {
    margin: 0 auto;
    text-align: center;
  }
  .bt-content-inner .free-call .free-call-number {
    width: auto;
    display: inline-block;
    text-align: center;
    margin-left: 0;
  }
  .bt-content-inner .free-call .free-call-number p {
    font-size: 3rem;
  }
  .bt-content-inner .free-call .free-call-number a {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    pointer-events: none;
  }
  .bt-content-inner .free-call .free-call-number a span {
    font-size: 7rem;
    margin-left: 15px;
    margin-right: 0;
  }
  .bt-content-inner .free-call figure {
    max-width: 85px;
    width: 8%;
    margin: 1% 0 0 0;
  }
  .bt-content-inner .note-txt-area {
    margin-top: 8.6rem;
    padding-bottom: 30px;
  }
  .bt-content-inner .note-txt-area .note-txtBtn {
    font-size: 2.4rem;
    padding: 2.2rem 0;
    margin-bottom: 4rem;
  }
  .bt-content-inner .note-txt-area .note-txt {
    font-size: 1.4rem;
  }
  .bt-content-inner .note-txt-area .note-txt span {
    font-size: 1.35rem;
    display: block;
    text-align: right;
  }
  .bt-content-inner .note-txt-area .note-txt span a {
    color: #37a8d0;
    text-decoration: underline;
  }
  .bt-content-inner .note-txt-area .note-txt span a:hover {
    text-decoration: none;
  }
  .bt-content-inner .note-txt-area .note-txt p {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    text-align: left;
  }
  .bt-content-inner .note-txt-area .note-txt p a {
    color: #37a8d0;
    text-decoration: underline;
  }
  .bt-content-inner .note-txt-area .note-txt p a:hover {
    text-decoration: none;
  }
  .bt-content-inner .note-txt-area .note-txt .rule-list {
    margin-bottom: 20px;
    text-align: left;
  }
  .bt-content-inner .note-txt-area .note-txt .rule-list ul {
    text-align: right;
  }
  .bt-content-inner .note-txt-area .note-txt .rule-list.memberAssociation ul {
    letter-spacing: -0.05em;
  }
  .bt-content-inner .note-txt-area .note-txt .rule-list ul li {
    font-size: 12px;
    display: block;
    text-align: right;
  }
  .bt-content-inner .note-txt-area .note-txt .rule-list.memberAssociation ul li {
    display: inline-block;
    letter-spacing: 0;
  }
  .bt-content-inner .note-txt-area .note-txt .rule-list.memberAssociation ul li:nth-child(1),
  .bt-content-inner .note-txt-area .note-txt .rule-list.memberAssociation ul li:nth-child(2) {
    display: inline-block;
  }
  .bt-content-inner .note-txt-area .note-txt .rule-list ul li a {
    color: #37a8d0;
    text-decoration: underline;
  }
  .bt-content-inner .note-txt-area .note-txt02 {
    margin-bottom: 50px;
  }
  .bt-content-inner .note-txt-area .note-txt02 ul {
    padding: 20px;
  }
  .bt-content-inner .note-txt-area .note-txt02 ul li {
    font-size: 12px;
  }
  .bt-content-inner .note-txt-area .note-txt02 ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .bt-content-inner .free-call figure {
    margin: 18px 0 0 0;
  }
  .bt-content-inner .note-txt-area .note-txt p {
    font-size: 1.38rem;
  }
  .bt-content-inner .note-txt-area .note-txt .rule-list ul li {
    font-size: 1.38rem;
  }
  .bt-content-inner .note-txt-area .note-txt02 ul li {
    font-size: 1.38rem;
  }
}

/* footer
-------------------------------------------------------------------- */
footer {
  padding: 5rem 2rem 20rem;
  background-color: #f2f3f4;
}
footer p {
	font-size: clamp(14px,2.084vw,16px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 2rem;
}
footer a {
	font-size: clamp(12px,1.83vw,14px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #333;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #333;
}
footer p:nth-child(1),
footer p:nth-child(3) {
  text-align: center;
}
footer p:nth-child(5) {
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.01rem;
}
footer p:nth-child(6) {
  font-size: 2.4rem;
  margin-bottom: 0;
}
footer .mt-25 {
  display: inline-block;
  margin-top: 2.5rem;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 4.5rem;
}
footer ul li {
  margin-right: 3%;
	margin-top: 2rem;
}
footer ul li:last-child {
  margin-right: 0;
}
footer .copyright {
  font-size: clamp(12px,1.83vw,14px);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 5rem;
  margin-bottom: 0;
}









@media screen and (min-width: 769px){
  footer {
    display: block;
    padding: 5rem 2rem 1.6rem;
    background-color: #f2f3f4;
  }
  footer p {
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  footer a {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: #333;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #333;
  }
  footer p:nth-child(5) {
    font-size: 1.4rem;
  }
  footer p:nth-child(6) {
    font-size: 1.4rem;
  }
  footer ul li {
    margin-right: 2%;
  }
  footer .copyright {
    font-size: 1rem;
    line-height: 2rem;
  }
  .footer_inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
}



/* TOPへ戻る
-------------------------------------------------------------------- */
.icn-top {
  position: fixed;
  bottom: 0;
  right: 1.5%;
	max-width: 50px;
  width: 10%;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  margin: 0 0 25% 0;
  padding: 0;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  -webkit-transition: 0.3s cubic-bezier(0, 0.225, 0.62, 0.955);
  transition: 0.3s cubic-bezier(0, 0.225, 0.62, 0.955);
}
.icn-top a {
  padding: 0;
  border-bottom: none;
}
.icn-top.m--active {
  visibility: visible;
  opacity: 1;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
}
@media screen and (min-width: 769px){
  .icn-top{
    bottom: 10px;
    right: 10px;
    width: 50px;
    margin: 0;
  }
}