@charset "UTF-8";
/* -----------------------------------------
  reset（編集しない）
----------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  max-height: 99999px;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing=&quot;0&quot;' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

/* -----------------------------------------
  base（fontは1.6rem＝16px）
----------------------------------------- */
/* rem用 */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans Japanese", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 1.6rem;
  min-width: none;
}

/* 解析タグの隙間対策 */
body > img {
  display: none;
}

/* 画像の隙間対策 */
img {
  vertical-align: bottom;
  display: block;
  width: 100%;
}

/* -----------------------------------------
  button（ボタン関連）
----------------------------------------- */
/* ボタン 基本 */
.btn {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: .8em 0;
  background: #fff;
  border: 1px solid #bdb14e;
  border-radius: 40px;
  color: #a1942a;
  font-weight: bold;
  text-decoration: none;
  font-size: calc(14px + 6 * ( (100vw - 640px) / 460));
  /* ボタン 背景透明 */
}
@media screen and (max-width: 640px) {
  .btn {
    font-size: 14px;
  }
}
@media screen and (min-width: 1100px) {
  .btn {
    font-size: 20px;
  }
}
.btn:after {
  top: 0;
  right: 5%;
  bottom: 0;
  margin: auto 0;
  border-style: solid;
  border-width: 0 3px 3px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 9px;
  width: 9px;
  border-color: #a1942a;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.btn-color {
  background: none;
}
@media screen and (min-width: 640px) {
  .btn {
    border: 2px solid #bdb14e;
    -webkit-transition: .5s;
    transition: .5s;
  }
  .btn:hover {
    background: #bdb14e;
    color: #fff;
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
    box-shadow: 0px 4px 10px 3px rgba(82, 82, 82, 0.29);
  }
  .btn:hover:after {
    border-color: #fff;
  }
}

/* 各ボタンレイアウト
----------------------------------------- */
.cvArea {
  width: 87%;
  margin: -5% auto 0 auto;
}
.cvArea li {
  margin-top: 5%;
}
@media screen and (min-width: 640px) {
  .cvArea {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .cvArea li {
    width: 100%;
    max-width: 400px;
    margin-left: 2%;
    margin-right: 2%;
  }
}

/* FV ボタンレイアウト
----------------------------------------- */
.cvAreaFv {
  width: 87%;
  margin: -5% auto 0 auto;
}
.cvAreaFv li {
  margin-top: 5%;
}
.cvAreaFv a {
  font-size: 16px;
}
@media screen and (min-width: 880px) {
  .cvAreaFv {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .cvAreaFv a {
    font-size: 14px;
  }
  .cvAreaFv li {
    width: 100%;
    max-width: 400px;
    margin-left: 2%;
    margin-right: 2%;
  }
  .cvAreaFv li:first-child {
    width: 78%;
  }
}
@media screen and (min-width: 1200px) {
  .cvAreaFv a {
    font-size: 18px;
  }
}

/* -----------------------------------------
  typography（見出し・注釈・本文など共通）
----------------------------------------- */
/* 注釈
 * --------------------- */
.note {
  font-size: calc(10px + 4 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .note {
    font-size: 10px;
  }
}
@media screen and (min-width: 1100px) {
  .note {
    font-size: 14px;
  }
}
.note-indent {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}
.note-list {
  line-height: 1.4;
}
.note-list-indent {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}

/* 見出し
 * --------------------- */
.headding {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: calc(23px + 27 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .headding {
    font-size: 23px;
  }
}
@media screen and (min-width: 1100px) {
  .headding {
    font-size: 50px;
  }
}

/* -----------------------------------------
  aos アニメーション 独自設定
----------------------------------------- */
/* 「資産運用を始めたきっかけ」グラフ */
[data-aos="graph_in"] {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
[data-aos="graph_in"].aos-animate {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* 全体フェードアップ */
[data-aos="fadeUp-anime"] {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
[data-aos="fadeUp-anime"].aos-animate {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* -----------------------------------------
  table
----------------------------------------- */
.table {
  margin-top: 1.5em;
  border: 1px solid #d6dbde;
  table-layout: fixed;
  width: 100%;
  font-size: calc(13px + 5 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .table {
    font-size: 13px;
  }
}
@media screen and (min-width: 1100px) {
  .table {
    font-size: 18px;
  }
}
.table th {
  width: 30%;
  padding: 1em .5em;
  background-color: #edeff0;
  border: 1px solid #d6dbde;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
}
.table td {
  padding: .8em;
  background-color: #fff;
  border-left: 1px solid #d6dbde;
  border-bottom: 1px solid #d6dbde;
  vertical-align: middle;
}
@media screen and (min-width: 640px) {
  .table th {
    width: 240px;
  }
  .table td {
    padding: 1.2em 2em;
  }
}

/* -----------------------------------------
  カラム
----------------------------------------- */
/* 横並び
 * --------------------- */
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.row-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.row-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media screen and (min-width: 640px) {
  .row-pc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .row-pc-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .row-pc-wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .row-pc-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .col-pc2 {
    width: calc(100% / 2);
  }
  .col-pc3 {
    width: calc(100% / 3);
  }
  .col-pc4 {
    width: calc(100% / 4);
  }
}
/* 上下中央
 * --------------------- */
.alignCenter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* -----------------------------------------
  Footer
----------------------------------------- */
.footer {
  margin: 3em 0 2em 0;
  text-align: center;
}
.footer_copy {
  font-size: calc(12px + 4 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .footer_copy {
    font-size: 12px;
  }
}
@media screen and (min-width: 1100px) {
  .footer_copy {
    font-size: 16px;
  }
}

/* -----------------------------------------
  main
----------------------------------------- */
.wrapper {
  color: #062a52;
  min-width: 320px;
  font-weight: 400;
  line-height: 1.8;
  font-size: calc(14px + 6 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .wrapper {
    font-size: 14px;
  }
}
@media screen and (min-width: 1100px) {
  .wrapper {
    font-size: 20px;
  }
}

/* サイトの最大幅 */
.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4.6875%;
}
@media screen and (min-width: 1200px) {
  .inner {
    padding: 0;
  }
}

.sec {
  padding: 4em 0;
}
@media screen and (min-width: 640px) {
  .sec {
    padding: 5em 0;
  }
}

.sec_bg {
  background: #fbfbfb;
}

/* fv
----------------------------------------- */
.fv h1 {
  padding-top: 6%;
  width: 100%;
  max-width: 110px;
}
.fv_main {
  margin-bottom: 4em;
}
.fv_text {
  margin-top: 13%;
}
.fv_text_1 {
  line-height: 1;
  font-size: calc(15px + 11 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .fv_text_1 {
    font-size: 15px;
  }
}
@media screen and (min-width: 1100px) {
  .fv_text_1 {
    font-size: 26px;
  }
}
.fv_text_2 {
  margin-bottom: 1em;
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
  font-size: calc(20px + 18 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .fv_text_2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .fv_text_2 {
    font-size: 38px;
  }
}
.fv_text_big {
  display: inline-block;
  padding: .4em 0;
  font-size: calc(60px + 40 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .fv_text_big {
    font-size: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .fv_text_big {
    font-size: 100px;
  }
}
.fv_countup_main {
  position: relative;
  max-width: 200px;
  margin: 0 auto;
}
.fv_countup_no {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  width: 96px;
  margin: auto;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -4px;
  text-align: center;
  font-size: calc(60px + 30 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .fv_countup_no {
    font-size: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .fv_countup_no {
    font-size: 90px;
  }
}
@media screen and (max-width: 320px) {
  .fv_text_2 {
    font-size: 18px;
  }
}
@media screen and (min-width: 640px) {
  .fv h1 {
    max-width: 182px;
  }
  .fv_main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
  .fv_text {
    width: 600px;
    margin-top: 12%;
  }
  .fv_text_2 {
    margin-bottom: 3.8em;
  }
  .fv_text_big {
    padding: .5em 0 .4em 0;
  }
  .fv_countup {
    padding-left: 8%;
  }
  .fv_countup_main {
    max-width: 349px;
    margin: 0 auto;
  }
  .fv_countup_no {
    width: 44%;
  }
}

.video {
  position: relative;
  margin: 5em auto 0 auto;
  max-width: 960px;
  border: 1px solid #ccc;
}
.video_inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video_inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* sec01
----------------------------------------- */
.sec01 {
  padding-bottom: 0;
}
.sec01 h2 {
  margin-bottom: 5%;
}
@media screen and (min-width: 640px) {
  .sec01 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* sec02
----------------------------------------- */
.sec02 {
  padding-bottom: 6em;
}
.sec02 h2 {
  padding-bottom: 10%;
  font-size: calc(38px + 22 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec02 h2 {
    font-size: 38px;
  }
}
@media screen and (min-width: 1100px) {
  .sec02 h2 {
    font-size: 60px;
  }
}
.sec02 h3 {
  position: relative;
  margin-bottom: 10%;
  padding-bottom: 20px;
  text-align: center;
  font-size: calc(18px + 8 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec02 h3 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1100px) {
  .sec02 h3 {
    font-size: 26px;
  }
}
.sec02 h3:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 1px;
  background: #062a52;
}
.sec02_main {
  margin-top: -20%;
}
.sec02_main_item {
  margin-top: 20%;
}
.sec02_img {
  max-width: 170px;
  margin: 0 auto;
}
.sec02_footer {
  margin-top: 4em;
  text-align: center;
}

.graphTrigger li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-size: calc(12px + 2 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .graphTrigger li {
    font-size: 12px;
  }
}
@media screen and (min-width: 1100px) {
  .graphTrigger li {
    font-size: 14px;
  }
}
.graphTrigger li:nth-child(4) {
  color: #a1942a;
  font-weight: 500;
}
.graphTrigger p {
  width: 50%;
  padding-right: 10px;
  text-align: right;
}
.graphTrigger_graph {
  width: 50%;
  overflow: hidden;
}
.graphTrigger_border {
  width: 100%;
  height: 20px;
  background: #e8ebee;
}
.graphTrigger_1 {
  width: 100%;
}
.graphTrigger_2 {
  width: 80% !important;
}
.graphTrigger_3 {
  width: 67% !important;
}
.graphTrigger_4 {
  width: 43% !important;
  background: #bdb14e;
}
.graphTrigger_5 {
  width: 35% !important;
}

/* sec03
----------------------------------------- */
.sec03 {
  padding: 5em 0;
}
.sec03 h2 {
  margin-bottom: 1.4em;
}
.sec03 h3 {
  margin: 10% 0 5% 0;
  border-bottom: 1px solid #bdb14e;
  font-size: calc(18px + 8 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec03 h3 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1100px) {
  .sec03 h3 {
    font-size: 26px;
  }
}
.sec03_txt1 {
  text-align: center;
  letter-spacing: -0.5px;
}
.sec03_txt2 {
  margin-bottom: 10%;
  font-size: calc(12px + 8 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec03_txt2 {
    font-size: 12px;
  }
}
@media screen and (min-width: 1100px) {
  .sec03_txt2 {
    font-size: 20px;
  }
}
.sec03_img {
  width: 88%;
  margin: 0 auto 20% auto;
}
@media screen and (max-width: 320px) {
  .sec03 h2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 640px) {
  .sec03 h2 {
    margin-bottom: .5em;
    letter-spacing: -2px;
  }
  .sec03_main {
    margin: 8% 0 12% 0;
  }
  .sec03_left {
    width: 507px;
  }
  .sec03_right {
    width: 530px;
  }
  .sec03_img {
    width: 100%;
    margin: 0 0 0 -15px;
  }
}

/* sec04
----------------------------------------- */
.sec04 h2 {
  font-size: calc(28px + 22 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec04 h2 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1100px) {
  .sec04 h2 {
    font-size: 50px;
  }
}

.sec04List_item {
  padding: 5em 0 4em 0;
  text-align: center;
}
.sec04List h3 {
  margin-bottom: 1.5em;
  text-align: center;
  line-height: 1;
  font-size: calc(20px + 6 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec04List h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .sec04List h3 {
    font-size: 26px;
  }
}
.sec04List_icn {
  display: block;
  width: 80px;
  margin: 0 auto 1.2em auto;
  padding: .3em 0;
  border: 1px solid #bdb14e;
  color: #a1942a;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: calc(10px + 6 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec04List_icn {
    font-size: 10px;
  }
}
@media screen and (min-width: 1100px) {
  .sec04List_icn {
    font-size: 16px;
  }
}
.sec04List_01 {
  padding-top: 3em;
}
.sec04List_01_img {
  width: 96.62%;
  margin: 2.5em auto 0 auto;
}
.sec04List_02_img {
  width: 62.3%;
  margin: 2.5em auto 0 auto;
}
.sec04List_03 {
  padding-bottom: 0;
}
.sec04List_03 p {
  letter-spacing: -0.5px;
}
.sec04List_03_img {
  width: 66.6%;
  margin: 2.5em auto 0 auto;
}
.sec04List_03_color {
  display: inline-block;
  padding: 1em 0 2em 0;
  color: #a1942a;
  font-weight: 500;
}
@media screen and (min-width: 640px) {
  .sec04List h3 {
    text-align: left;
  }
  .sec04List_icn {
    margin: 0 0 1.2em 0;
    width: 120px;
  }
  .sec04List_item {
    text-align: left;
    padding: 3em 0;
  }
  .sec04List_item_main {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
  }
  .sec04List_01 {
    padding-top: 0;
  }
  .sec04List_03_img {
    width: 77.6%;
  }
}

/* sec05
----------------------------------------- */
.sec05 {
  background: #00233d;
  color: #fff;
}
.sec05 h2 {
  margin-bottom: 1.5em;
  font-weight: 400;
  font-size: calc(30px + 20 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec05 h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .sec05 h2 {
    font-size: 50px;
  }
}

.sec05List_item {
  padding: 0 0 5em 0;
  text-align: center;
}
.sec05List_text1 {
  padding-bottom: .5em;
  line-height: 1;
  font-size: calc(18px + 6 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec05List_text1 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1100px) {
  .sec05List_text1 {
    font-size: 24px;
  }
}
.sec05List_text2 {
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
  font-size: calc(22px + 8 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec05List_text2 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1100px) {
  .sec05List_text2 {
    font-size: 30px;
  }
}
.sec05List_text2 span {
  font-size: calc(38px + 12 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec05List_text2 span {
    font-size: 38px;
  }
}
@media screen and (min-width: 1100px) {
  .sec05List_text2 span {
    font-size: 50px;
  }
}
.sec05List_img {
  width: 24%;
  margin: 0 auto 1.5em auto;
}
.sec05List .note {
  margin-top: 1em;
}
@media screen and (min-width: 640px) {
  .sec05List_img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 34%;
    height: 120px;
  }
}

/* sec06
----------------------------------------- */
.sec06 {
  padding-bottom: 6em;
}
.sec06 h2 {
  font-size: calc(30px + 25 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec06 h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .sec06 h2 {
    font-size: 55px;
  }
}
@media screen and (min-width: 640px) {
  .sec06 {
    padding-top: 7em;
  }
  .sec06 h2 {
    margin-bottom: .6em;
  }
}

.sec06List_item {
  position: relative;
  margin-top: 3em;
  padding: 4em 1.5em 1.5em 1.5em;
  box-shadow: 0px 4px 7px 0px rgba(82, 82, 82, 0.16);
}
.sec06List_item h3 {
  margin-bottom: .7em;
  padding-bottom: .5em;
  border-bottom: 1px solid #bdb14e;
  font-family: 'Noto Serif JP', serif;
  font-size: calc(16px + 6 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec06List_item h3 {
    font-size: 16px;
  }
}
@media screen and (min-width: 1100px) {
  .sec06List_item h3 {
    font-size: 22px;
  }
}
.sec06List_no {
  position: absolute;
  top: -15px;
  left: -7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 56px;
  height: 56px;
  padding: 5px;
  background: #00233d;
  line-height: 1;
  font-family: 'Crimson Text', serif;
  font-size: calc(20px + 15 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec06List_no {
    font-size: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .sec06List_no {
    font-size: 35px;
  }
}
.sec06List p {
  font-size: calc(14px + 4 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec06List p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1100px) {
  .sec06List p {
    font-size: 18px;
  }
}
@media screen and (min-width: 640px) {
  .sec06List_item {
    padding-top: 6em;
  }
  .sec06List_item h3 {
    line-height: 1.4;
  }
  .sec06List_no {
    width: 90px;
    height: 90px;
  }
}
@media screen and (min-width: 880px) {
  .sec06List {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sec06List .sec06List_item {
    width: calc((100% - 7.2%) / 3);
  }
}

/* sec07
----------------------------------------- */
.sec07 h2 {
  letter-spacing: 6px;
  font-size: calc(30px + 25 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec07 h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .sec07 h2 {
    font-size: 55px;
  }
}

.sec07List {
  margin-bottom: 15%;
}
.sec07List h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin-bottom: 1.5em;
}
.sec07List_head {
  font-size: calc(16px + 10 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec07List_head {
    font-size: 16px;
  }
}
@media screen and (min-width: 1100px) {
  .sec07List_head {
    font-size: 26px;
  }
}
.sec07List_head_small {
  font-size: calc(10px + 10 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec07List_head_small {
    font-size: 10px;
  }
}
@media screen and (min-width: 1100px) {
  .sec07List_head_small {
    font-size: 20px;
  }
}
.sec07List_no {
  margin-right: .4em;
  padding-right: .4em;
  font-family: 'Crimson Text', serif;
  border-right: 1px solid #bdb14e;
  font-size: 3.8rem;
}
.sec07List_item {
  margin-top: 2.2em;
  padding: 2.4em 1.2em 2em 1.2em;
  background: #fff;
}
@media screen and (max-width: 320px) {
  .sec07List_head {
    font-size: 14px;
  }
}
@media screen and (min-width: 640px) {
  .sec07List {
    position: relative;
    margin-bottom: 15%;
  }
  .sec07List_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .sec07List_item_left {
    padding-left: 1.5em;
  }
  .sec07List_no {
    font-size: 9rem;
    line-height: 1;
    height: 100%;
  }
  .sec07List li:last-child p {
    padding-bottom: 10%;
  }
}
@media screen and (min-width: 880px) {
  .sec07List:after {
    content: "";
    position: absolute;
    right: 3%;
    bottom: -14%;
    width: 28.2%;
    padding-top: 40%;
    background: url(../img/step_img.png) no-repeat;
    background-size: contain;
  }
}

/* sec08
----------------------------------------- */
.sec08 {
  background: #001935 url(../img/referral_bg.jpg);
  background-position: top center;
  color: #fff;
}
.sec08 h2 {
  margin-bottom: 1.5em;
  font-weight: 400;
  font-size: calc(28px + 20 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec08 h2 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1100px) {
  .sec08 h2 {
    font-size: 48px;
  }
}
.sec08_btn {
  width: 90%;
  max-width: 600px;
  margin: 2em auto 0 auto;
  text-align: center;
}
@media screen and (max-width: 320px) {
  .sec08 h2 {
    font-size: 26px;
  }
  .sec08_btn a {
    font-size: 12px;
  }
}
@media screen and (min-width: 640px) {
  .sec08 {
    text-align: center;
  }
  .sec08 h2 {
    margin-bottom: 1em;
  }
}

.sec08List {
  width: 70%;
  margin: 2em auto .5em auto;
}
.sec08List_01 {
  width: 60%;
}
.sec08List_02 {
  width: 70%;
}
.sec08List_03 {
  width: 80%;
}
.sec08List_04 {
  width: 90%;
}
.sec08List_05 {
  width: 100%;
}
.sec08List_note {
  width: 70%;
  margin: 0 auto 2em auto;
}
@media screen and (min-width: 640px) {
  .sec08List {
    width: 73.7%;
    margin-top: 3em;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sec08List li {
    width: calc((100% - 20%) / 5);
  }
  .sec08List_note {
    width: 73.7%;
    margin: 1em auto 4em auto;
    text-align: right;
  }
}

/* sec09
----------------------------------------- */
.sec09 h2 {
  letter-spacing: 5px;
  font-size: calc(34px + 16 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec09 h2 {
    font-size: 34px;
  }
}
@media screen and (min-width: 1100px) {
  .sec09 h2 {
    font-size: 50px;
  }
}
@media screen and (min-width: 640px) {
  .sec09 h2 {
    margin-bottom: 1.2em;
  }
}
.sec09_smallText {
  font-size: calc(22px + 14 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec09_smallText {
    font-size: 22px;
  }
}
@media screen and (min-width: 1100px) {
  .sec09_smallText {
    font-size: 36px;
  }
}

.sec09Qa {
  margin-top: 1.5em;
  border: 1px solid #00233d;
}
.sec09Qa_inner {
  padding-left: 1em;
  text-indent: -1.5em;
}
.sec09Qa_icn {
  font-family: 'Noto Serif JP', serif;
  padding-right: .5em;
}
.sec09Qa dt {
  padding: .6em 1.2em;
  background: #00233d;
  color: #fff;
  line-height: 1.4;
  font-size: calc(16px + 4 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec09Qa dt {
    font-size: 16px;
  }
}
@media screen and (min-width: 1100px) {
  .sec09Qa dt {
    font-size: 20px;
  }
}
.sec09Qa dd {
  padding: 1em 1.5em;
  font-size: calc(14px + 4 * ( (100vw - 640px) / 460));
}
@media screen and (max-width: 640px) {
  .sec09Qa dd {
    font-size: 14px;
  }
}
@media screen and (min-width: 1100px) {
  .sec09Qa dd {
    font-size: 18px;
  }
}
@media screen and (min-width: 640px) {
  .sec09Qa_inner {
    padding-left: 1.5em;
    text-indent: -2em;
  }
  .sec09Qa_icn {
    padding-right: 1em;
  }
  .sec09Qa dt {
    padding: .8em 2em;
  }
  .sec09Qa dd {
    padding: 1em 2em;
  }
}

/* sec10
----------------------------------------- */
.sec10 {
  margin-bottom: 4em;
}

/* -----------------------------------------
  PC・SPで表示切り替え
----------------------------------------- */
.pc_only {
  display: none !important;
}
.pc_only_inline {
  display: none !important;
}

.sp_only {
  display: block !important;
}

@media screen and (min-width: 640px) {
  .pc_only {
    display: block !important;
  }
  .pc_only_inline {
    display: inline !important;
  }

  .sp_only {
    display: none !important;
  }
}
/* -----------------------------------------
  utility
----------------------------------------- */
/* 上付き文字 */
sup {
  font-size: 1.2rem;
  vertical-align: text-top;
  line-height: 1.2;
}

/* 太字 */
.t_bold {
  font-weight: bold;
}

/* 色文字 */
.t_color {
  color: #bdb14e;
}

/* カギカッコの位置調整 */
.letter {
  margin-left: -.5rem;
}

.letter2 {
  margin-right: -.5rem;
}

/* 位置 */
.txtC {
  text-align: center;
}

.txtR {
  text-align: right;
}

.txtR {
  text-align: left;
}
