@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;
  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%;
  display: block;
  font-family: "Noto Sans JP", sans-serif, "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;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  letter-spacing: 0;
  overflow-y: scroll;
}

html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
}
main {
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
  body {
    overflow-y: auto;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  html {
    font-size: 0.8vw;
  }
}

a {
  text-decoration: none;
  color: #333;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.bg-1 {
  background: #f4f4f4;
}
.bg-2 {
  background: #e5f5fd;
}
.bg-3 {
  background: #f2f3f4;
}

.is--sp {
  display: block !important;
}
.is--pc {
  display: none !important;
}
picture,
img {
  font-size: 0;
  border: 0;
  vertical-align: top;
}
.resize {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  .is--sp {
    display: none !important;
  }
  .is--pc {
    display: block !important;
  }
}

/* サイドバナー
---------------------------------------------------------------- */
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
  opacity: 0.5;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0.5; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
  animation-name: slideTextX100;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0.5;
}

@-webkit-keyframes slideTextX100 {
  0% {
    transform: translateX(-100%); /*要素を右の枠外に移動*/
    opacity: 0.5;
  }
  50% {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
  100% {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  0% {
    transform: translateX(-100%); /*要素を右の枠外に移動*/
    opacity: 0.5;
  }
  50% {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
  100% {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
  animation-name: slideTextX-100;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0.5;
}

@-webkit-keyframes slideTextX-100 {
  0% {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0.5;
  }
  50% {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
  100% {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  0% {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0.5;
  }
  50% {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
  100% {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

/* header
------------------------------------------------------------ */
header {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  background: #fcfdff;
  height: 0;
  padding: 0 0 103.625% 0;
}
header h1 {
  position: relative;
  display: block;
}
header .btn {
  position: relative;
  margin: 0 auto -2.5rem;
  display: flex;
  width: 100%;
  max-height: 257px;
	background-image: url(../images/bg_hero_btn.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
/* --webp非対応ブラウザの場合-- */
.no-webp header .btn {
  background-image: url(../images/bg_hero_btn.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
header .btn ul {
  display: flex;
  max-width: 708px;
  width: 92.1875%;
  margin: 1.826% auto 3.5%;
}
header .btn ul li {
  position: relative;
  display: block;
  max-width: 220px;
  width: 31.12%;
  text-align: center;
}
header .btn ul li:not(:last-child) {
  margin-right: 3.32%;
}
header .btn ul li a {
  display: block;
  width: 100%;
}
header .btn ul li.btn01 a {
  padding: 12% 0 34.254%;
}
header .btn ul li.btn02 a {
  padding: 10% 0 30.99%;
}
header .btn ul li.btn03 a {
  padding: 10% 0 28.69%;
}
header .btn ul li span {
  position: relative;
  display: inline-block;
  color: #1e2f97;
  line-height: 1;
  vertical-align: middle;
  z-index: 0;
}
header .btn ul li span.vaBtm span {
  vertical-align: sub;
}
header .btn ul li span.line {
  position: relative;
}
header .btn ul li span.line:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  max-height: 14px;
  background: url(../images/bg_line.png) repeat-x left bottom;
  background-size: 1px auto;
  z-index: -1;
}
header .btn ul li.btn01 span.line:before {
  margin: 0 auto -6%;
  height: 21.902%;
}
header .btn ul li.btn02 span.line:before {
  height: 21.902%;
  margin: 0 auto 0;
}
header .btn ul li.btn02 span:nth-of-type(2) span {
  display: inline-block;
}
header .btn ul li.btn03 span.line:nth-of-type(1):before {
  height: 24.9999991%;
  margin: 0 auto 3%;
}
header .btn ul li.btn03 span.line:nth-of-type(2):before {
  height: 24.9999991%;
  margin: 0 auto -6%;
}
header .btn ul li span.font20 {
  font-size: 20px;
  font-size: 2.604166667vw;
  font-weight: 700;
}
header .btn ul li span.font26 {
  font-size: 26px;
  font-size: 3.385416667vw;
  font-weight: 700;
}
header .btn ul li span.font40 {
  font-size: 40px;
  font-size: 5.208333333vw;
  font-weight: 700;
}
header .btn ul li span.font46 {
  font-size: 46px;
  font-size: 5.989583333vw;
  font-weight: 700;
}
header .btn ul li span.font56 {
  font-size: 56px;
  font-size: 7.291666667vw;
  font-weight: 700;
}
header .btn ul li span.font64 {
  font-size: 64px;
  font-size: 8.333333333vw;
  font-weight: 700;
}
header .btn ul li span.font90 {
  font-size: 90px;
  font-size: 11.71875vw;
  font-weight: 500;
  transform: scale(1.2, 1);
}
header .btn ul li span.mb20 {
  margin-bottom: 9%;
}
header .btn ul li span.fontLs {
  letter-spacing: -0.1em;
}
@media screen and (min-width: 769px) {
  header {
    width: 100%;
    max-height: 520px;
    height: 0;
    padding-bottom: 43.37%;
  }
  header .inner {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  header h1 {
    width: 100%;
    margin: 0 auto;
  }
  header .btn {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0 0 0 auto;
    max-width: 406px;
    width: 34.909716251%;
    max-height: 520px;
    height: 100%;
    background-image: none;
  }
  .webp header .btn,
  .no-webp header .btn {
    background-image: none;
  }
  header .btn ul {
    position: relative;
    width: 100%;
    margin: 0 auto 0;
    display: block;
		background: url(../images/bg_hero_btn.webp) no-repeat right top;
    background-size: 100% auto;
  }
  /* --webp非対応ブラウザの場合-- */
  .no-webp header .btn ul {
    background: url(../images/bg_hero_btn.png) no-repeat right top;
    background-size: 100% auto;
  }

  header .btn ul li {
    position: relative;
    max-width: 350px;
    width: 86.207%;
    max-height: 130px;
    text-align: left;
    margin: 0 9.853% 0 auto;
  }
  header .btn ul li.btn01 {
    margin-top: 8.624%;
  }
  header .btn ul li:not(:last-child) {
    margin-right: 9.853%;
    margin-bottom: 6.15764%;
  }
  header .btn ul li a {
    position: relative;
    width: 100%;
    max-height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  header .btn ul li.btn01 a {
    padding: 8% 0 9.144%;
  }
  header .btn ul li.btn02 a {
    padding: 0 0 5.7143%;
  }
  header .btn ul li.btn03 a {
    padding: 9.5% 0 10.9999996% 4.5%;
    justify-content: flex-start;
  }
  header .btn ul li a:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 3.4% auto auto;
    max-width: 22px;
    width: 6.5%;
    max-height: 22px;
    height: 22px;
    background: url(../images/btn_off.png) no-repeat right center;
    background-size: 100% auto;
  }
  header .btn ul li a:hover:after {
    content: "";
    background: url(../images/btn_on.png) no-repeat right center;
    background-size: 100% auto;
  }
  header .btn ul li span {
    position: relative;
    display: inline;
    color: #1e2f97;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    z-index: 0;
  }
  header .btn ul li.btn03 span {
    vertical-align: text-bottom;
  }
  header .btn ul li.btn01 span:nth-of-type(1) {
    margin: 1% 8% 0 -8%;
  }
  header .btn ul li.btn02 span:nth-of-type(1) {
    margin: 0 0 0 0;
  }
  header .btn ul li.btn03 span:nth-of-type(1) {
    margin: 0 0 0 0;
  }
  header .btn ul li span.vaBtm span {
    vertical-align: sub;
  }
  header .btn ul li span.line {
    position: relative;
  }
  header .btn ul li span.line:before,
  header .btn ul li.btn03 span.line-pc:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    max-height: 14px;
    background: url(../images/bg_line.png) repeat-x left bottom;
    background-size: 1px auto;
    z-index: -1;
  }
  header .btn ul li.btn01 span.line:before {
    margin: 0 auto -6%;
    height: 21.902%;
  }
  header .btn ul li.btn02 span.line:before {
    height: 21.902%;
    margin: 0 auto;
    width: 104%;
  }
  header .btn ul li.btn03 span.line:nth-of-type(1):before {
    display: none;
  }
  header .btn ul li.btn03 span.line:nth-of-type(2):before {
    display: none;
  }
  header .btn ul li.btn03 span.line-pc:before {
    height: 24.9999991%;
    margin: 0 auto -3% 0;
  }
  header .btn ul li span.font20 {
    font-size: 20px;
    font-size: 1.666666667vw;
  }
  header .btn ul li span.font26 {
    font-size: 28px;
    font-size: 2.333333333vw;
  }
  header .btn ul li.btn02 span.fontLs span.font26 {
    font-size: 27px;
    font-size: 2.25vw;
    line-height: 1.4;
  }
  header .btn ul li span.font40 {
    font-size: 47px;
    font-size: 4.166666667vw;
  }
  header .btn ul li span.font46 {
    font-size: 46px;
    font-size: 3.955288048vw;
  }
  header .btn ul li span.font56 {
    font-size: 57px;
    font-size: 4.80vw;
  }
  header .btn ul li span.font64 {
    font-size: 70px;
    font-size: 5.833333333vw;
  }
  header .btn ul li span.font90 {
    font-size: 110px;
    font-size: 9.166666667vw;
  }
  header .btn ul li.btn02 span.fontLs {
    letter-spacing: -0.1em;
    margin: 6% 10% 0px -11%;
  }
  header .btn ul li span.mb20 {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 769px) and ( max-width: 1140px) {
  header .btn ul li.btn03 a {
    padding: 10.5% 0 10.9999996% 4.5%;
  }
}
@media screen and (min-width: 1217px) {
  header {
    max-height: 520px;
    height: 520px;
    padding: 0;
    background: url(../images/bg_hore.webp) #ffffff no-repeat center top;
    background-size: 1920px 520px;
  }
	/* --webp非対応ブラウザの場合-- */
  .no-webp header {
    background: url(../images/bg_hore.png) #ffffff no-repeat center top;
    background-size: 1920px 520px;
  }

  header .btn ul li:not(:last-child) {
    margin-right: 40px;
    margin-bottom: 25px;
  }
  header .btn ul li span.font20 {
    font-size: 20px;
  }
  header .btn ul li span.font26 {
    font-size: 28px;
  }
  header .btn ul li.btn02 span.fontLs span.font26 {
    font-size: 27px;
  }
  header .btn ul li span.font40 {
    font-size: 47px;
  }
  header .btn ul li span.font46 {
    font-size: 46px;
  }
  header .btn ul li span.font56 {
    font-size: 57px;
  }
  header .btn ul li span.font64 {
    font-size: 70px;
  }
  header .btn ul li span.font90 {
    font-size: 110px;
  }
}

.contents-block {
  padding: 6% 2rem 0;
}
@media screen and (min-width: 769px) {
  .contents-block {
    padding: 40px 2rem 0;
  }
}
.content-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .content-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* IPO取扱銘柄スケジュール
------------------------------------------------------- */
.calendar_wrap {
  display: block;
  /*overflow: hidden;*/
  width: 95%;
  margin-top: 30px !important;
}
.calendar_wrap #calControl input {
  cursor: pointer;
}
.calendar_wrap .title {
  margin: 0 0 20px 0;
  padding: 0px;
  line-height: 1.4;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
}
.caltableBody li p {
  cursor: pointer;
}
.caltableBody li em.calDay,
.caltableBody li em.calDate,
.no_ipo .caltableBody li em.calDay,
.no_ipo .caltableBody li em.calDate {
  font-style: normal;
}

@media screen and (min-width: 769px) {
  .calendar_wrap .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .caltableHead,
  .no_ipo .caltableHead {
    max-width: 768px;
    width: 100% !important;
    border-right: none;
  }
  .caltableBody {
    display: none !important;
  }
  .no_ipo .caltableBody {
    display: block !important;
  }
  .no_ipo .caltable {
    display: block !important;
  }
  .no_ipo .caltable .caltableHead {
    height: 45px !important;
  }
  .no_ipo .caltable .caltableHead dd {
    display: none !important;
  }
  .no_ipo .caltableBody ul {
    display: none !important;
  }
  .no_ipo .caltableBody .no_ipo_message {
    height: 40px !important;
    max-width: 768px;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    margin: 0 5px !important;
    padding: 10px 0px 0 !important;
  }
  #modal_wrap {
    display: none !important;
  }
  .balloon {
    width: 87% !important;
    z-index: 10001 !important;
  }
}
@media screen and (min-width: 769px) {
  .calendar_wrap {
    position: relative;
    overflow: unset;
    max-width: 1200px !important;
    margin: 50px auto 0 !important;
    width: 97%;
    z-index: 170;
  }
}
@media screen and (min-width: 769px) {
  .no_ipo_message {
    height: 90px !important;
  }
}

/* point [岡三オンラインのIPO ポイント]
------------------------------------------------------------ */
.contents-block.pointArea {
  display: block;
  padding-top: 8%;
}
.point h2 {
  padding-bottom: 3.5%;
  font-size: 60px;
  font-size: 7.8125vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .point h2 {
    padding-bottom: 40px;
    font-size: 50px;
    font-size: 4.166666667vw;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .point h2 {
    font-size: 50px;
  }
}
.point .pointBox {
  position: relative;
  width: calc(100% - 10px);
  padding: 0 0 6% 0;
  z-index: 1;
}
.point .pointBox:not(:last-child) {
  margin: 0 0 10% 0;
}
.point .pointBox:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 10px 0 0 10px;
  background: #dddddd;
  z-index: 0;
}
.point .pointBox:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto 0 0;
  background: #ffffff;
  z-index: 0;
}
.point .pointBox .inner {
  width: 95%;
  margin: 0 auto;
}
.point .pointBox .box01 {
  position: relative;
  margin: 0 0 5% 0;
  padding: 4% 0 4%;
  text-align: center;
  line-height: 1;
  z-index: 1;
  border-bottom: 2px solid #eeeeee;
}
.point .pointBox .box01 p {
  color: #1a99e0;
  background: -webkit-linear-gradient(-90deg, #1a99e0 0, #1e2f97 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.point .pointBox .box01 .fontS {
  display: block;
  font-size: 24px;
  font-size: 3.125vw;
  font-weight: 700;
}
.point .pointBox .box01 .fontM {
  display: block;
  font-size: 54px;
  font-size: 7.03125vw;
  font-weight: 700;
}
.point .pointBox .box02 {
  position: relative;
  margin: 0 0 5% 0;
  z-index: 1;
}
.point .pointBox .box02 p {
  position: relative;
  font-size: 56px;
  font-size: 7.291666667vw;
  color: #1e2f97;
  text-align: center;
  font-weight: 700;
  z-index: 0;
}
.point .pointBox.point01 .box02 p:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto 0.8%;
  width: 6em;
  max-height: 16px;
  height: 0.4em;
  background: url(../images/bg_line.png) repeat left bottom;
  background-size: 1px auto;
  z-index: -1;
}
.point .pointBox.point02 .box02 p {
  position: relative;
  font-size: 30px;
  font-size: 3.90625vw;
  color: #1e2f97;
  text-align: center;
  font-weight: 700;
  z-index: 0;
  line-height: 1;
}
.point .pointBox.point02 .box02 p.txt02 {
  margin-top: -3%;
}
.point .pointBox.point02 .box02 p.txt02 .fontM {
  position: relative;
  display: inline-block;
  font-size: 160px;
  font-size: 20.83333333vw;
  color: #1e2f97;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  z-index: 0;
  transform: scale(1.2, 1);
}
.point .pointBox.point02 .box02 p.txt02 .fontS {
  position: relative;
  font-size: 60px;
  font-size: 7.8125vw;
  color: #1e2f97;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  z-index: 0;
}
.point .pointBox.point02 .box02 p.txt02:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto 0.5%;
  width: 6em;
  max-height: 16px;
  height: 0.5334em;
  background: url(../images/bg_line.png) repeat left bottom;
  background-size: 1px auto;
  z-index: -1;
}
.point .pointBox.point03 .box02 p:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto 0.5%;
  width: 5em;
  max-height: 16px;
  height: 0.286em;
  background: url(../images/bg_line.png) repeat left bottom;
  background-size: 1px auto;
  z-index: -1;
}
.point .pointBox .box03 {
  position: relative;
  z-index: 1;
  width: 96%;
  margin: 0 auto 4.5%;
}
.point .pointBox .box03 p {
  font-size: 28px;
  font-size: 3.645833333vw;
  font-weight: 500;
  text-align: left;
  line-height: 1.7;
}
.point .pointBox .box04 {
  position: relative;
  max-width: 194px;
  width: 30%;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 414px) {
  .point .pointBox .box01 .fontS {
    font-size: 13px;
  }
  .point .pointBox .box01 .fontM {
    font-size: 27px;
  }
  .point .pointBox.point02 .box02 p {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) {
  .contents-block.pointArea {
    padding-top: 60px;
  }
  .point .pointBox {
    max-width: 1200px;
    width: calc(100% - 10px);
    margin: 0 auto;
    padding: 0;
  }
  .point .pointBox:not(:last-child) {
    margin: 0 auto 25px auto;
  }
  .point .pointBox .inner {
    width: 100%;
    padding: 2% 0;
    display: flex;
    align-items: center;
  }
  .point .pointBox .box01 {
    max-width: 190px;
    width: 16.337059325%;
    margin: 0;
    padding: 5% 0;
    border-bottom: none;
  }
  .point .pointBox .box01:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0 auto auto;
    width: 2px;
    height: 100%;
    border-right: 2px solid #eeeeee;
  }
  .point .pointBox .box01 .fontS {
    font-size: 24px;
  }
  .point .pointBox .box01 .fontM {
    font-size: 54px;
  }
  .point .pointBox .boxTie {
    max-width: 727px;
    width: 59.329320727%;
    margin: 0;
  }
  .point .pointBox .box02 {
    width: auto;
    margin: 0;
    padding-left: 7.2464%;
  }
  .point .pointBox .box02 p {
    font-size: 46px;
    font-size: 4.742268041vw;
    margin-bottom: 25px;
    text-align: left;
  }
  .point .pointBox.point01 .box02 p:before {
    margin: 0;
  }
  .point .pointBox.point02 .box02 {
    max-width: 340px;
    width: 29.234737747%;
    padding: 0;
  }
  .point .pointBox.point02 .box02 p {
    position: relative;
    margin: 0;
    font-size: 30px;
    font-size: 2.989690722vw;
  }
  .point .pointBox.point02 .box02 p.txt02 {
    margin-top: -5%;
  }
  .point .pointBox.point02 .box02 p.txt02 .fontM {
    position: relative;
    display: inline-block;
    font-size: 160px;
    font-size: 16.49484536vw;
  }
  .point .pointBox.point02 .box02 p.txt02 .fontS {
    position: relative;
    font-size: 60px;
    font-size: 6.18556701vw;
  }
  .point .pointBox.point03 .box02 p:before {
    margin: 0;
  }
  .point .pointBox .box03 {
    width: auto;
    margin: 0;
    padding-left: 7.2464%;
  }
  .point .pointBox.point02 .box03 {
    max-width: 350px;
    width: 30.094582975%;
    padding: 0;
  }
  .point .pointBox .box03 p {
    font-size: 16px;
  }
  .point .pointBox .box03 p .notes {
    font-size: 14px;
  }
  .point .pointBox .box04 {
    max-width: 283px;
    width: 24.333619948%;
  }
  .point .pointBox .box04 figure {
    max-width: 194px;
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 970px) {
  .point .pointBox .box02 p {
    font-size: 46px;
  }
  .point .pointBox.point02 .box02 p {
    font-size: 30px;
  }
  .point .pointBox.point02 .box02 p.txt02 .fontM {
    font-size: 160px;
  }
  .point .pointBox.point02 .box02 p.txt02 .fontS {
    font-size: 60px;
  }
  .point .pointBox .box03 p {
    font-size: 18px;
  }
  .point .pointBox .box03 p .notes {
    font-size: 16px;
  }
}

/* otoku [岡三オンラインのおトク！]
------------------------------------------------------------ */
.contents-block.otokuArea {
  padding-top: 14%;
}
.otoku {
  position: relative;
}
.otoku h2 {
  margin-bottom: 3.5%;
  font-size: 60px;
  font-size: 7.8125vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 769px) {
  .otoku h2 {
    margin-bottom: 40px;
    font-size: 50px;
    font-size: 4.166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .otoku h2 {
    font-size: 50px;
  }
}
.otoku .otokuBlock {
  width: 100%;
  background: #ffffff;
  border: 4px solid #dddddd;
  box-sizing: border-box;
}
.otoku .otokuBlock:not(:last-child) {
  margin-bottom: 6%;
}
.otoku .otokuBlock .inner {
  width: 92%;
  margin: 0 auto;
}
.otoku .otokuBlock.block01 .inner {
  padding: 0 0 5% 0;
}
.otoku .otokuBlock.block01 .boxTie {
  display: flex;
  margin-bottom: 6.5%;
}
.otoku .otokuBlock.block01 .boxTie .box01 {
  width: 54%;
  padding-top: 6.5%;
}
.otoku .otokuBlock.block01 .boxTie .box01 p {
  font-weight: 700;
  color: #1e2f97;
}
.otoku .otokuBlock.block01 .boxTie .box01 p.txt01 {
  font-size: 30px;
  font-size: 3.90625vw;
}
.otoku .otokuBlock.block01 .boxTie .box01 p.txt02 {
  font-size: 60px;
  font-size: 7.8125vw;
}
.otoku .otokuBlock.block01 .boxTie .box02 {
  position: relative;
  width: 46%;
}
.otoku .otokuBlock.block01 .boxTie .box02 p {
  position: relative;
  color: #1e2f97;
  line-height: 1;
  z-index: 0;
}
.otoku .otokuBlock.block01 .boxTie .box02 .fontM {
  display: inline-block;
  font-size: 260px;
  font-size: 33.85416667vw;
  transform: scale(1.2, 1);
  font-weight: 500;
}
.otoku .otokuBlock.block01 .boxTie .box02 .fontS {
  font-size: 60px;
  font-size: 7.8125vw;
  font-weight: 700;
}
.otoku .otokuBlock.block01 .boxTie .box02 p:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 0 0.6%;
  width: 11em;
  max-height: 20px;
  height: 0.977em;
  background: url(../images/bg_line.png) repeat left bottom;
  background-size: 1px auto;
  z-index: -1;
}
.otoku .otokuBlock.block01 .box03 {
  margin-bottom: 6.5%;
}
.otoku .otokuBlock.block01 .box03 .txt03 {
  font-size: 28px;
  font-size: 3.645833333vw;
  font-weight: 500;
  line-height: 1.9;
}
.otoku .otokuBlock.block01 .box03 .txt03 span {
  font-size: 26px;
  font-size: 3.385416667vw;
}
.otoku .otokuBlock.block01 .box04 .txt04 {
  padding: 2.5% 0;
  font-size: 30px;
  font-size: 3.90625vw;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  background: #1e2f97;
}
.otoku .otokuBlock.block01 .box04 table {
  width: 100%;
  border-top: 2px solid #dddddd;
  border-left: 2px solid #dddddd;
}
.otoku .otokuBlock.block01 .box04 table th {
  width: 50%;
  padding: 3.5% 0;
  font-size: 28px;
  font-size: 3.645833333vw;
  font-weight: 500;
  text-align: center;
  background: #dde0f0;
  border-bottom: 2px solid #dddddd;
  border-right: 2px solid #dddddd;
}
.otoku .otokuBlock.block01 .box04 table td {
  width: 50%;
  padding: 2.5% 0;
  font-size: 28px;
  font-size: 3.645833333vw;
  font-weight: 500;
  text-align: center;
  background: #ffffff;
  border-bottom: 2px solid #dddddd;
  border-right: 2px solid #dddddd;
}
.otoku .otokuBlock.block02 .inner {
  padding: 4% 0 5%;
}
.otoku .otokuBlock.block02 .box01 {
  margin-bottom: 4%;
}
.otoku .otokuBlock.block02 .box01 .txt01 {
  margin-bottom: 2%;
  font-size: 30px;
  font-size: 3.90625vw;
  font-weight: 700;
  color: #1e2f97;
}
.otoku .otokuBlock.block02 .box01 .txt02 {
  font-size: 60px;
  font-size: 7.8125vw;
  font-weight: 700;
  color: #1e2f97;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.otoku .otokuBlock.block02 .box02 {
  margin-bottom: 4%;
}
.otoku .otokuBlock.block02 .box02 figure {
  max-width: 414px;
  width: 66.5%;
  margin: 0 auto;
}
.otoku .otokuBlock.block02 .box03 dl dt {
  margin-bottom: 2%;
  font-size: 32px;
  font-size: 4.166666667vw;
  font-weight: 700;
}
.otoku .otokuBlock.block02 .box03 dl dd p {
  font-size: 28px;
  font-size: 3.645833333vw;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 769px) {
  .contents-block.otokuArea {
    padding-top: 8.727%;
  }
  .otoku {
    padding-top: 0px;
  }
  .otoku .content-inner {
    align-items: stretch;
  }
  .otoku .otokuBlock {
    max-width: 575px;
    width: 48%;
  }
  .otoku .otokuBlock:not(:last-child) {
    margin-bottom: 0;
  }
  .otoku .otokuBlock .inner {
    width: 90%;
  }
  .otoku .otokuBlock.block01 .inner {
    padding: 0 0 5% 0;
  }
  .otoku .otokuBlock.block01 .boxTie {
    display: flex;
    margin-bottom: 6.5%;
  }
  .otoku .otokuBlock.block01 .boxTie .box01 {
    width: 54%;
    padding-top: 6.5%;
  }
  .otoku .otokuBlock.block01 .boxTie .box01 p.txt01 {
    font-size: 24px;
    font-size: 2.063628547vw;
  }
  .otoku .otokuBlock.block01 .boxTie .box01 p.txt02 {
    font-size: 46px;
    font-size: 3.955288048vw;
  }
  .otoku .otokuBlock.block01 .boxTie .box02 {
    width: 46%;
  }
  .otoku .otokuBlock.block01 .boxTie .box02 p {
    position: relative;
    line-height: 1;
  }
  .otoku .otokuBlock.block01 .boxTie .box02 .fontM {
    font-size: 190px;
    font-size: 16.33705933vw;
  }
  .otoku .otokuBlock.block01 .boxTie .box02 .fontS {
    font-size: 40px;
    font-size: 3.439380911vw;
  }
  .otoku .otokuBlock.block01 .boxTie .box02 p:before {
    margin: 0 0 2% 0;
    width: 70%;
    height: 2em;
  }
  .otoku .otokuBlock.block01 .box03 {
    margin-bottom: 6.5%;
  }
  .otoku .otokuBlock.block01 .box03 .txt03 {
    font-size: 18px;
    font-size: 1.54772141vw;
    font-size: 14px;
    line-height: 1.9;
  }
  .otoku .otokuBlock.block01 .box03 .txt03 > span {
    font-size: 11px;
  }
  .otoku .otokuBlock.block01 .box04 .txt04 {
    padding: 2.5% 0;
    font-size: 20px;
    font-size: 1.719690456vw;
    text-align: center;
    color: #ffffff;
    background: #1e2f97;
  }
  .otoku .otokuBlock.block01 .box04 table th {
    padding: 3.5% 0;
    font-size: 18px;
    font-size: 1.54772141vw;
    font-size: 14px;
  }
  .otoku .otokuBlock.block01 .box04 table td {
    width: 50%;
    padding: 2.5% 0;
    font-size: 18px;
    font-size: 1.54772141vw;
    font-size: 14px;
  }
  .otoku .otokuBlock.block02 .inner {
    padding: 40px 0 0;
  }
  .otoku .otokuBlock.block02 .box01 {
    margin-bottom: 30px;
  }
  .otoku .otokuBlock.block02 .box01 .txt01 {
    margin-bottom: 2%;
    font-size: 24px;
    font-size: 2.063628547vw;
  }
  .otoku .otokuBlock.block02 .box01 .txt02 {
    font-size: 46px;
    font-size: 3.955288048vw;
    line-height: 1.3;
  }
  .otoku .otokuBlock.block02 .box02 {
    margin-bottom: 4%;
  }
  .otoku .otokuBlock.block02 .box02 figure {
    max-width: 304px;
    width: 62%;
    margin: 0 auto;
  }
  .otoku .otokuBlock.block02 .box03 {
    margin-bottom: 65px;
  }
  .otoku .otokuBlock.block02 .box03 dl {
  }
  .otoku .otokuBlock.block02 .box03 dl dt {
    margin-bottom: 2%;
    font-size: 20px;
    font-size: 1.719690456vw;
  }
  .otoku .otokuBlock.block02 .box03 dl dd {
  }
  .otoku .otokuBlock.block02 .box03 dl dd p {
    font-size: 18px;
    font-size: 1.54772141vw;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 905px) {
  .otoku .otokuBlock.block01 .box03 .txt03 {
    font-size: 16px;
  }
  .otoku .otokuBlock.block01 .box03 .txt03 > span {
    font-size: 13px;
  }
  .otoku .otokuBlock.block01 .box04 table th {
    font-size: 16px;
  }
  .otoku .otokuBlock.block01 .box04 table td {
    font-size: 16px;
  }
  .otoku .otokuBlock.block02 .box03 dl dd p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1163px) {
  .contents-block.otokuArea {
    padding-top: 100px;
  }
  .otoku .otokuBlock.block01 .boxTie .box01 p.txt01 {
    font-size: 24px;
  }
  .otoku .otokuBlock.block01 .boxTie .box01 p.txt02 {
    font-size: 46px;
  }
  .otoku .otokuBlock.block01 .boxTie .box02 .fontM {
    font-size: 190px;
  }
  .otoku .otokuBlock.block01 .boxTie .box02 .fontS {
    font-size: 40px;
  }
  .otoku .otokuBlock.block01 .box03 .txt03 {
    font-size: 18px;
  }
  .otoku .otokuBlock.block01 .box03 .txt03 > span {
    font-size: 14px;
  }
  .otoku .otokuBlock.block01 .box04 .txt04 {
    font-size: 20px;
  }
  .otoku .otokuBlock.block01 .box04 table th {
    font-size: 18px;
  }
  .otoku .otokuBlock.block01 .box04 table td {
    font-size: 18px;
  }
  .otoku .otokuBlock.block02 .box01 .txt01 {
    font-size: 24px;
  }
  .otoku .otokuBlock.block02 .box01 .txt02 {
    font-size: 46px;
  }
  .otoku .otokuBlock.block02 .box03 dl dt {
    font-size: 20px;
  }
  .otoku .otokuBlock.block02 .box03 dl dd p {
    font-size: 18px;
  }
}

/* tool [PCもスマホも! 使いやすい取引ツール]
------------------------------------------------------------ */
.contents-block.toolArea {
  padding-bottom: 13%;
}
.tool {
  position: relative;
  background: #ffffff;
  border: 4px solid #dddddd;
  box-sizing: border-box;
}
.tool .inner {
  position: relative;
  width: 92%;
  margin: 0 auto;
  padding: 4% 0 5%;
}
.tool h3 {
  font-weight: 700;
  color: #1e2f97;
}
.tool h3 .fontS {
  display: block;
  font-size: 30px;
  font-size: 3.90625vw;
}
.tool h3 .fontM {
  display: block;
  font-size: 60px;
  font-size: 7.8125vw;
  letter-spacing: -0.01em;
}
.tool .txt01 {
  margin-bottom: 16%;
  font-size: 28px;
  font-size: 3.645833333vw;
  font-weight: 500;
  line-height: 1.7;
}
.tool .toolBlock {
  width: 100%;
}
.tool .toolBlock:nth-of-type(1) {
  margin-bottom: 16%;
}
.tool .toolBlock:nth-of-type(2) {
  margin-bottom: 10%;
}
.tool .toolBlock figure {
  max-width: 512px;
  width: 75%;
  margin: 0 auto 1%;
}
.tool .toolBlock dl dt {
  margin-bottom: 5.5%;
  font-size: 46px;
  font-size: 5.989583333vw;
  font-weight: 700;
  color: #1e2f97;
}
.tool .toolBlock dl dd p {
  font-size: 28px;
  font-size: 3.645833333vw;
  font-weight: 500;
  line-height: 1.7;
}
.tool .note {
  font-size: 24px;
  font-size: 3.125vw;
  font-weight: 500;
}
@media screen and (max-width: 375px) {
  .tool .note {
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  .contents-block.toolArea {
    padding-bottom: 80px;
  }
  .tool {
    max-width: 1200px;
    margin: 0 auto;
  }
  .tool .inner {
    width: 95%;
    padding: 35px 0 40px;
  }
  .tool h3 {
    text-align: center;
    margin-bottom: 25px;
  }
  .tool h3 .fontS {
    font-size: 24px;
    font-size: 2.063628547vw;
  }
  .tool h3 .fontM {
    font-size: 46px;
    font-size: 3.955288048vw;
  }
  .tool .txt01 {
    margin-bottom: 40px;
    font-size: 14px;
    text-align: center;
  }
  .tool .toolBlock {
    max-width: 575px;
    width: 47%;
    margin-bottom: 30px;
  }
  .tool .toolBlock:nth-of-type(1) {
    margin-bottom: 30px;
  }
  .tool .toolBlock .inner {
    width: 96%;
  }
  .tool .toolBlock figure {
    max-width: 422px;
    width: 82%;
    margin: 0 auto 25px;
  }
  .tool .toolBlock dl dt {
    margin-bottom: 30px;
    font-size: 36px;
    font-size: 3.09544282vw;
  }
  .tool .toolBlock dl dd p {
    font-size: 14px;
  }
  .tool .note {
    font-size: 14px;
    text-align: center;
  }
}
@media screen and (min-width: 905px) {
  .tool .txt01 {
    font-size: 16px;
  }
  .tool .toolBlock dl dd p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1163px) {
  .tool h3 .fontS {
    font-size: 24px;
  }
  .tool h3 .fontM {
    font-size: 46px;
  }
  .tool .txt01 {
    font-size: 18px;
  }
  .tool .toolBlock dl dt {
    font-size: 36px;
  }
  .tool .toolBlock dl dd p {
    font-size: 18px;
  }
}

/* flowList [IPO申込みの流れ]
------------------------------------------------------------ */
.contents-block.flowListArea {
  padding: 6% 2rem 8.45%;
}
.flowList {
}
.flowList h4 {
  padding-bottom: 7%;
  font-size: 40px;
  font-size: 5.208333333vw;
  font-weight: 700;
  text-align: center;
}
.flowList ol {
  width: 100%;
}
.flowList ol li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5% 5.102%;
  background: #ffffff;
}
.flowList ol li:not(:last-child) {
  margin-bottom: 8.195%;
}
.flowList ol li:not(:last-child):after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto -1.9535em;
  opacity: 0.3;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.9535em 4.18vw 0 4.18vw;
  border-color: #4c5866 transparent transparent transparent;
  line-height: 0px;
  _border-color: #4c5866 #000000 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}
.flowList ol li .box01 {
  max-width: 70px;
  width: 11.758%;
  font-size: 26px;
  font-size: 3.385416667vw;
  color: #1ba8ed;
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
.flowList ol li .box01 > span {
  font-size: 48px;
  font-size: 6.25vw;
}
.flowList ol li .box02 {
  width: 69.8%;
  font-size: 36px;
  font-size: 4.6875vw;
  font-weight: 700;
  text-align: left;
  text-indent: 1em;
}
.flowList ol li .box03 {
  max-width: 116px;
  width: 19.394%;
  text-align: center;
}
.flowList ol li .box03 figure img {
  vertical-align: top;
}
@media screen and (min-width: 769px) {
  .contents-block.flowListArea {
    padding: 40px 2rem 50px;
  }
  .flowList {
  }
  .flowList h4 {
    padding-bottom: 30px;
    font-size: 36px;
    font-size: 3.09544282vw;
    font-weight: 700;
    text-align: center;
  }
  .flowList ol {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  .flowList ol li {
    max-width: 217px;
    width: 18.056749785%;
    display: block;
    padding: 1.8% 0;
  }
  .flowList ol li:not(:last-child) {
    margin-bottom: 0;
    margin-right: 2.322%;
  }
  .flowList ol li:not(:last-child):after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto -1.3vw auto auto;
    opacity: 0.3;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.537vh 0 1.537vh 1.3vw;
    border-color: transparent transparent transparent #4c5866;
    line-height: 0px;
    _border-color: #000000 #000000 #000000 #4c5866;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
  }
  .flowList ol li .box01 {
    display: block;
    max-width: inherit;
    width: 100%;
    font-size: 14px;
  }
  .flowList ol li .box01 > span {
    font-size: 30px;
    font-size: 2.579535684vw;
  }
  .flowList ol li .box02 {
    display: block;
    padding: 2% 0 5%;
    height: 6.6vh;
    width: 100%;
    font-size: 20px;
    font-size: 1.719690456vw;
    text-align: center;
    text-indent: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .flowList ol li .box03 {
    display: block;
    max-width: 62px;
    width: 29.523%;
    text-align: center;
    margin: 0 auto;
  }
  .flowList ol li .box03 figure {
    width: 100%;
  }
  .flowList ol li .box03 figure img {
    vertical-align: top;
  }
}
@media screen and (min-width: 1163px) {
  .flowList h4 {
    font-size: 36px;
  }
  .flowList ol li .box01 {
    font-size: 16px;
  }
  .flowList ol li .box01 > span {
    font-size: 30px;
  }
  .flowList ol li .box02 {
    font-size: 20px;
  }
}

/* --------------------------------------
共通 フッターエリア
-------------------------------------- */
/* account-bnr */
.account-bnr.m--hero {
  margin-top: 6vw;
}
.account-bnr.m--hero .account-bnr-cover {
  padding: 0;
}
.account-bnr__btn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
  padding: 2px 2vw 7px;
  border: 4px solid #fff;
  background: #de0025;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.account-bnr__btn:after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 3vw;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.account-bnr__btn strong {
  display: block;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
}
.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: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
.account-bnr-free {
  position: absolute;
  top: 50%;
  left: -9%;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}
.account-bnr-free span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.account-bnr-cover {
  padding: 25px 8vw;
}
@media screen and (min-width: 769px) {
  .account-bnr {
    display: none;
  }
}

/* btn-area [無料で口座開設 約5分でWEB申込完了]
-------------------------------------------------------------------- */
.btn-area {
  display: block;
  width: 100vw;
  margin: 2.5rem calc(50% - 50vw) 0;
  text-align: center;
  padding: 2.5rem 0;
  background-color: #de0025;
}
.btn-area .link-btn {
  color: #fff;
  font-size: 1.2rem;
  display: block;
  width: 85%;
  margin: 0 auto;
  letter-spacing: 0.05em;
  line-height: 1.3;
  padding: 1rem 0;
  border: 2px solid #fff;
  border-radius: 4rem;
  transition: all 0.2s;
  background-color: #de0025;
}
.btn-area .link-btn span {
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .btn-area {
    margin: 0 calc(50% - 50vw) 0;
  }
  .btn-area .link-btn {
    font-size: 1.6rem;
    width: 670px;
    padding: 1.5rem 0;
  }
  .btn-area .link-btn span {
    width: 100%;
    font-size: 1.6rem;
  }
  .btn-area .link-btn .btn-txt {
    font-size: 3rem;
  }
}

.btn-area .arrow {
  position: relative;
  display: inline-block;
}
.btn-area .arrow::before,
.btn-area .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.btn-area .arrow1::before {
  left: 101%;
  top: 10%;
  width: 7%;
  height: 3px;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .btn-area .arrow1::before {
    left: 0;
    top: 20%;
    right: -590px;
    width: 25px;
    height: 3px;
  }
}
.btn-area .arrow1::after {
  left: 105.5%;
  top: 10%;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
@media screen and (min-width: 769px) {
  .btn-area .arrow1::after {
    left: 0;
    right: -600px;
    top: 18%;
    width: 10px;
    height: 10px;
  }
}
.btn-area .zoom-in:hover {
  transform: scale(1.1);
}
@media screen and (min-width: 769px) {
  .btn-area .zoom-in:hover {
    transform: scale(1.2);
  }
}

/* opened [口座開設のお申込みの流れ]
-------------------------------------------------------------------- */
.opened h2 {
  padding-bottom: 7%;
  font-size: 2.5rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .opened h2 {
    padding-bottom: 35px;
    width: 100%;
    font-size: 4rem;
    margin-top: 0.6rem;
  }
}
.opened .step-img {
  position: relative;
}
@media screen and (min-width: 769px) {
  .opened .step-img.is--pc:nth-of-type(4),
  .opened .step-img.is--pc:nth-of-type(5) {
    max-width: 377px;
    width: 31.416666667%;
  }
  .opened .step-img.is--pc:nth-of-type(6) {
    max-width: 340px;
    width: 28.333333333%;
  }
}
.opened .step-img .step-icon1 {
  position: absolute;
  content: url(../img/opened_step_icon01.png);
  top: 20%;
  left: -10px;
  width: 18%;
  z-index: 7;
}
.opened .step-img .step-icon2 {
  position: absolute;
  content: url(../img/opened_step_icon02.png);
  top: 20%;
  left: -10px;
  width: 18%;
  z-index: 7;
}
.opened .step-img .step-icon3 {
  position: absolute;
  content: url(../img/opened_step_icon03.png);
  top: 20%;
  left: -10px;
  width: 18%;
  z-index: 7;
}
.opened img {
  width: 100%;
  margin-bottom: 0.45rem;
}
@media screen and (min-width: 769px) {
  .opened .btn-area {
    margin-top: 50px;
  }
  .opened img {
    margin-bottom: 0;
  }
}

/* bt-content-inner
-------------------------------------------------------------------- */
@media screen and (min-width: 769px) {
  .bt-content-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
}
.bt-content-inner p {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .bt-content-inner p {
    text-align: center;
    font-size: 2rem;
    line-height: 1.4;
  }
}
.bt-content-inner .free-call {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 769px) {
  .bt-content-inner .free-call {
    display: flex;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
.bt-content-inner .free-call .free-call-number {
  width: 82%;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .bt-content-inner .free-call .free-call-number {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}
.bt-content-inner .free-call .free-call-number p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 769px) {
  .bt-content-inner .free-call .free-call-number p {
    font-size: 3rem;
  }
}
.bt-content-inner .free-call .free-call-number a {
  display: inline-block;
  color: #333;
  font-size: 2.1rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  white-space: nowrap;
  margin-bottom: 1.5rem;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .bt-content-inner .free-call .free-call-number a {
    font-size: 3.5rem;
    margin-bottom: 3rem;
  }
}
.bt-content-inner .free-call .free-call-number a span {
  font-size: 4.2rem;
}
@media screen and (min-width: 769px) {
  .bt-content-inner .free-call .free-call-number a span {
    font-size: 7rem;
    margin-right: -10.5rem;
  }
}
.bt-content-inner .free-call img {
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  margin-top: 4%;
}
@media screen and (min-width: 769px) {
  .bt-content-inner .free-call img {
    width: 8%;
    left: 25%;
    margin-top: 2%;
  }
}
.bt-content-inner .note-txt-area {
  margin-top: 5rem;
  padding-bottom: 4.4rem;
}
@media screen and (min-width: 769px) {
  .bt-content-inner .note-txt-area {
    margin-top: 8.6rem;
  }
}
.bt-content-inner .note-txt-area .note-txtBtn {
  position: relative;
  text-align: center;
  padding: 1.3rem 0;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid #4c5866;
  background-color: #4c5866;
  color: #fff;
  margin-bottom: 1rem;
}
@media screen and (min-width: 769px) {
  .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.2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .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:hover {
    text-decoration: none;
  }
}
.bt-content-inner .note-txt-area .note-txt span a {
  margin-top: 1rem;
  display: inline-block;
  line-height: 1.8;
}

/* footer
-------------------------------------------------------------------- */
footer {
  padding: 5rem 2rem 1.6rem;
  background-color: #f2f3f4;
}
footer p {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) {
  footer p {
    font-size: 2.4rem;
  }
}
footer a {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #333;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 769px) {
  footer a {
    font-size: 1.4rem;
  }
}
footer p:nth-child(1),
footer p:nth-child(3) {
  text-align: center;
}
footer p:nth-child(5) {
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.01rem;
}
@media screen and (min-width: 769px) {
  footer p:nth-child(5) {
    font-size: 1.4rem;
  }
}
footer p:nth-child(6) {
  font-size: 1.2rem;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  footer p:nth-child(6) {
    font-size: 1.4rem;
  }
}
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-bottom: 1rem;
}
footer ul li:last-child {
  margin-right: 0;
}
footer .copyright {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2rem;
  margin-top: 5rem;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .footer_inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
}

/* side-link
-------------------------------------- */
.sideFloatingBtn {
	position: relative;
}
.side-link span:nth-child(1) {
  font-size: 2rem;
  color: #fffc00;
  text-align: center;
  font-weight: bold;
  display: block;
}
.side-link .redtxt {
  display: flex;
	align-items: center;
	flex-wrap: nowrap;
	width: 100%;
	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: 200;
  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;
  }
}

/* lazy */
.lozad {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.lozad.m--active {
  -webkit-animation: anim 0.5s 0.3s cubic-bezier(0.355, 0.535, 0.87, 0.965)
    forwards;
  animation: anim 0.5s 0.3s cubic-bezier(0.355, 0.535, 0.87, 0.965) forwards;
}
@-webkit-keyframes anim {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes anim {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* IPO申込みの流れ */
@media screen and (min-width: 769px) {
  .flowList ol li.m--active:nth-child(1) {
    -webkit-animation: anim 0.5s cubic-bezier(0.355, 0.535, 0.87, 0.965) 1
      forwards;
    animation: anim 0.5s cubic-bezier(0.355, 0.535, 0.87, 0.965) 1 forwards;
  }
  .flowList ol li.m--active:nth-child(2) {
    -webkit-animation: anim 0.5s cubic-bezier(0.355, 0.535, 0.87, 0.965) 0.1s 1
      forwards;
    animation: anim 0.5s cubic-bezier(0.355, 0.535, 0.87, 0.965) 0.1s 1 forwards;
  }
  .flowList ol li.m--active:nth-child(3) {
    -webkit-animation: anim 0.5s cubic-bezier(0.355, 0.535, 0.87, 0.965) 0.22s 1
      forwards;
    animation: anim 0.5s cubic-bezier(0.355, 0.535, 0.87, 0.965) 0.22s 1
      forwards;
  }
  .flowList ol li.m--active:nth-child(4) {
    -webkit-animation: anim 0.5s cubic-bezier(0.355, 0.535, 0.87, 0.965) 0.34s 1
      forwards;
    animation: anim 0.5s cubic-bezier(0.355, 0.535, 0.87, 0.965) 0.34s 1
      forwards;
  }
  .flowList ol li.m--active:nth-child(5) {
    -webkit-animation: anim 0.5s cubic-bezier(0.355, 0.535, 0.87, 0.965) 0.46s 1
      forwards;
    animation: anim 0.5s cubic-bezier(0.355, 0.535, 0.87, 0.965) 0.46s 1
      forwards;
  }
}



/* 無料口座開設ボタン[光] */
.contents-block.btn-area_adjust {
  padding: 6% 0 0;
}
.accountBtn {
  width: 100%;
  margin: 0 auto 0;
  text-align: center;
  padding: 20px 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: 3em; */
  font-size: clamp(14px,3.385416667vw,26px);
  font-weight: 700;
  margin: 0 auto;
  padding: 20px 0;
   color: #fff;
   border: 2px solid #fff;
   letter-spacing: 0.05em;
  line-height: 1.3;
  border-radius: 50px;
  overflow: hidden;
}
.accountBtn .link-btn a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 3.5% auto auto;
  max-width: 30px;
  max-height: 30px;
  min-width: 20px;
  min-height: 20px;
  width: 2.284vw;
  height: 2.284vw;
  background-image: url(../fonts/icn_accountbtn_arr.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: right center;
}
/* FV用 */
.btn-area-block.-fvaccountBtn .accountBtn {
  padding: 20px 0 40px;
  background-color: #ffffff;
}
.btn-area-block.-fvaccountBtn .accountBtn .link-btn {
  width: 100%;
}
.btn-area-block.-fvaccountBtn .accountBtn .link-btn a {
  padding: 10px 0;
  border: 2px solid #de0025;
}
@media screen and (min-width: 769px) {
  .contents-block.btn-area_adjust {
    padding: 40px 0 0;
  }
  .accountBtn {
    width: 100%;
    margin: 0 auto 0;
    text-align: center;
    padding: 25px 0;
    background-color: #de0025;
  }
  .accountBtn .link-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    display: block;
    max-width: 670px;
    width: 63%;
    line-height: 1.3;
    border-radius: 50px;
    overflow: hidden;
    background: #de0025;
   transition: all 0.5s;
  }
  .accountBtn .link-btn.zoom-in:hover {
    transform: scale(1.1);
  }
  .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;
  }
  .accountBtn .link-btn a {
    position: relative;
    display:  block;
    font-size: clamp(20px,2.586206897vw,30px);
    font-weight: 700;
    margin: 0 auto;
    padding: 20px 0;
     color: #fff;
     border: 2px solid #fff;
     letter-spacing: 0.05em;
    line-height: 1.3;
    border-radius: 50px;
    overflow: hidden;
  }
  .accountBtn .link-btn a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 12px auto auto;
    max-width: 30px;
    max-height: 30px;
    min-width: 25px;
    min-height: 25px;
    width: 2.284vw;
    height: 2.284vw;
    background-image: url(../images/icn_accountbtn_arr.svg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: right center;
  }
  /* FV用 */
  .btn-area-block.-fvaccountBtn {
    display: none;
  }
}