@charset "UTF-8";
/* ------------------------- Reset ------------------------- */
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%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
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,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.9;
  font-weight: 300;
  color: #000;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

.Mincho-font {
  font-family: "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "YuMincho", Georgia, "游明朝体", "游明朝", HiraMinProN-W3, "ヒラギノ明朝 ProN", "ヒラギノ明朝 Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.font-serif {
  font-family: "Noto Serif JP", serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  display: block;
}

div {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a, a i {
  text-decoration: none;
  outline: none;
  color: #000;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
}

a img {
  display: block;
  outline: none;
}

a:hover img {
  opacity: 1;
}

img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  outline: none;
}

a:focus, a:active, input, textarea, button {
  outline: none;
}

a:hover, a:hover img {
  opacity: 0.6;
}

.text-indent {
  text-indent: 3em;
}

.text-input, input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
}

/* Chrome、Safari */
.text-input, input[type=number]::-webkit-outer-spin-button,
.text-input, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox、IE */
.text-input, input[type=number] {
  -moz-appearance: textfield;
}

/* Chrome、Safari */
.text-input, input[type=text] {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox、IE */
.text-input, input[type=text] {
  -moz-appearance: textfield;
}

.a-color-blue {
  color: #3BB4FF;
}

.a-decoration-show {
  text-decoration: underline;
}

.show320 {
  display: none;
}
@media screen and (max-width : 320px) {
  .show320 {
    display: block;
  }
}

.show768 {
  display: none;
}
@media screen and (max-width: 768px) {
  .show768 {
    display: block;
  }
}

.show760 {
  display: none;
}
@media screen and (max-width: 760px) {
  .show760 {
    display: block;
  }
}

.show1200 {
  display: none;
}
@media screen and (max-width: 1200px) {
  .show1200 {
    display: block;
  }
}

.hide760 {
  display: block;
}
@media screen and (max-width: 760px) {
  .hide760 {
    display: none;
  }
}

.hide992 {
  display: block;
}
@media screen and (max-width: 992px) {
  .hide992 {
    display: none;
  }
}

.show1000 {
  display: none;
}
@media screen and (max-width: 1000px) {
  .show1000 {
    display: block;
  }
}

.hide1000 {
  display: block;
}
@media screen and (max-width: 1000px) {
  .hide1000 {
    display: none;
  }
}

.hide1200 {
  display: block;
}
@media screen and (max-width: 1200px) {
  .hide1200 {
    display: none;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.margin-center {
  margin-right: auto;
  margin-left: auto;
}

.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.underline {
  text-decoration: underline;
}

.warp {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 760px) {
  .mt20 {
    margin-top: 10px !important;
  }
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 760px) {
  .mt30 {
    margin-top: 25px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 760px) {
  .mt40 {
    margin-top: 30px !important;
  }
}

.mt50 {
  margin-top: 50px !important;
}
@media screen and (max-width: 760px) {
  .mt50 {
    margin-top: 30px !important;
  }
}

.mt60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 760px) {
  .mt60 {
    margin-top: 30px !important;
  }
}

.mt70 {
  margin-top: 70px !important;
}
@media screen and (max-width: 760px) {
  .mt70 {
    margin-top: 40px !important;
  }
}

.mt80 {
  margin-top: 80px !important;
}
@media screen and (max-width: 760px) {
  .mt80 {
    margin-top: 40px !important;
  }
}

.mt100 {
  margin-top: 100px !important;
}
@media screen and (max-width: 760px) {
  .mt100 {
    margin-top: 40px !important;
  }
}

.mt110 {
  margin-top: 110px !important;
}

.mt120 {
  margin-top: 120px !important;
}
@media screen and (max-width: 760px) {
  .mt120 {
    margin-top: 80px !important;
  }
}

.mt130 {
  margin-top: 130px !important;
}
@media screen and (max-width: 760px) {
  .mt130 {
    margin-top: 60px !important;
  }
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 760px) {
  .mb60 {
    margin-bottom: 30px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 760px) {
  .mb70 {
    margin-bottom: 40px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 760px) {
  .mb100 {
    margin-bottom: 60px !important;
  }
}

.mb120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 760px) {
  .mb120 {
    margin-bottom: 80px !important;
  }
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb240 {
  margin-bottom: 240px !important;
}
@media screen and (max-width: 760px) {
  .mb240 {
    margin-bottom: 80px !important;
  }
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mar50 {
  margin: 50px 0;
}

.mar75 {
  margin: 75px 0;
}
@media screen and (max-width: 760px) {
  .mar75 {
    margin: 35px 0;
  }
}

.mar100 {
  margin: 100px 0;
}

.mar120 {
  margin: 120px 0;
}

.mar150 {
  margin: 150px 0;
}

.mar5075 {
  margin: 50px 0 75px 0;
}

.mar50100 {
  margin: 50px 0 100px 0;
}

.mar50125 {
  margin: 50px 0 125px 0;
}

.mar80100 {
  margin: 80px 0 100px 0;
}

.mar100125 {
  margin: 100px 0 125px 0;
}

.pt0 {
  padding-top: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}
@media screen and (max-width: 760px) {
  .pt60 {
    padding-top: 50px !important;
  }
}

.pt100 {
  padding-top: 100px !important;
}
@media screen and (max-width: 760px) {
  .pt100 {
    padding-top: 50px !important;
  }
}

.pt120 {
  padding-top: 120px !important;
}
@media screen and (max-width: 760px) {
  .pt120 {
    padding-top: 60px !important;
  }
}

.pt130 {
  padding-top: 130px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}
@media screen and (max-width: 760px) {
  .pb60 {
    padding-bottom: 50px !important;
  }
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}
@media screen and (max-width: 760px) {
  .pb120 {
    padding-bottom: 60px !important;
  }
}

.pb180 {
  padding-bottom: 180px !important;
}
@media screen and (max-width: 760px) {
  .pb180 {
    padding-bottom: 60px !important;
  }
}

.pb200 {
  padding-bottom: 200px !important;
}
@media screen and (max-width: 760px) {
  .pb200 {
    padding-bottom: 100px !important;
  }
}

.pb240 {
  padding-bottom: 240px !important;
}
@media screen and (max-width: 760px) {
  .pb240 {
    padding-bottom: 128px !important;
  }
}

.pb130 {
  padding-bottom: 130px !important;
}

.pad40 {
  padding: 40px 0;
}

.pad50 {
  padding: 50px 0;
}

.pad60 {
  padding: 60px 0;
}
@media screen and (max-width: 760px) {
  .pad60 {
    padding: 50px 0;
  }
}

.pad75 {
  padding: 75px 0;
}

.pad100 {
  padding: 100px 0;
}

.pad120 {
  padding: 120px 0;
}
@media screen and (max-width: 760px) {
  .pad120 {
    padding: 60px 0 !important;
  }
}

.pad240 {
  padding: 240px 0;
}
@media screen and (max-width: 760px) {
  .pad240 {
    padding: 100px 0 !important;
  }
}

.pad150 {
  padding: 150px 0;
}

.pad5075 {
  padding: 50px 0 75px 0;
}

.pad50100 {
  padding: 50px 0 100px 0;
}

.pad50125 {
  padding: 50px 0 125px 0;
}

.pad60100 {
  padding: 60px 0 100px 0;
}

.pad80100 {
  padding: 80px 0 100px 0;
}

.pad100125 {
  padding: 100px 0 125px 0;
}

.pad120 {
  padding: 120px 0;
}

.pad160180 {
  padding: 160px 0 180px 0;
}
@media screen and (max-width: 760px) {
  .pad160180 {
    padding: 80px 0 100px 0;
  }
}

.pad7550 {
  padding: 75px 0 50px 0;
}

.pad-right-115 {
  padding-right: 115px;
}

.fw-100-thin {
  font-weight: 100 !important;
}

.fw-300-light {
  font-weight: 300 !important;
}

.fw-400-regular {
  font-weight: 400 !important;
}

.fw-500-medium {
  font-weight: 500 !important;
}

.fw-600-bold {
  font-weight: 600 !important;
}

.fw-700-bold {
  font-weight: 700 !important;
}

.fw-900-black {
  font-weight: 900 !important;
}

.fs-10-px {
  font-size: 1rem !important;
}

.fs-13-px {
  font-size: 1.3rem !important;
}

.fs-16-px {
  font-size: 1.6rem !important;
}

.fs-18-px {
  font-size: 1.8rem;
}

.fs-20-px {
  font-size: 2rem;
}
@media screen and (max-width: 760px) {
  .fs-20-px {
    font-size: 1.8rem;
  }
}

.fs-22-px {
  font-size: 2.2rem;
}
@media screen and (max-width: 760px) {
  .fs-22-px {
    font-size: 2rem;
  }
}

.fs-24-px {
  font-size: 2.4rem;
}
@media screen and (max-width: 760px) {
  .fs-24-px {
    font-size: 2rem;
  }
}

.fs-28-px {
  font-size: 2.8rem;
}
@media screen and (max-width: 760px) {
  .fs-28-px {
    font-size: 2.4rem;
  }
}

.fs-30-px {
  font-size: 3rem;
}

.fs-32-px {
  font-size: 3.2rem;
  line-height: 35px;
}
@media screen and (max-width: 760px) {
  .fs-32-px {
    font-size: 2.8rem;
  }
}

.line-height-18 {
  line-height: 1.8;
}

.txt-right {
  text-align: right;
}

.link-sp {
  pointer-events: none !important;
}
@media screen and (max-width: 768px) {
  .link-sp {
    pointer-events: visible !important;
  }
}

.content-720 {
  width: 92%;
  max-width: 720px;
  margin: 0 auto;
}

.content-880 {
  width: 92%;
  max-width: 880px;
  margin: 0 auto;
}

.content-900 {
  width: 92%;
  max-width: 900px;
  margin: 0 auto;
}

.content-940 {
  width: 92%;
  max-width: 940px;
  margin: 0 auto;
}

.content-960 {
  width: 92%;
  max-width: 960px;
  margin: 0 auto;
}

.content-1020 {
  width: 92%;
  max-width: 1020px;
  margin: 0 auto;
}

.content-1088 {
  width: 92%;
  max-width: 1088px;
  margin: 0 auto;
}

.content-1120 {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
}

.content-1170 {
  width: 92%;
  max-width: 1170px;
  margin: 0 auto;
}

.content-1200 {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.content-1200-full-right {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .content-1200-full-right {
    margin: inherit;
    margin-left: auto;
    width: 96%;
  }
}

.content-1230 {
  width: 92%;
  max-width: 1230px;
  margin: 0 auto;
}

.content-1300 {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
}

.content-1345 {
  width: 92%;
  max-width: 1345px;
  margin: 0 auto;
}

.content-1366 {
  width: 92%;
  max-width: 1366px;
  margin: 0 auto;
}

.content-1400 {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

.content-1440 {
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
}

.content-1440-full-width {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.content-1440-full-right {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .content-1440-full-right {
    margin: inherit;
    margin-left: auto;
    width: 96%;
  }
}
@media screen and (max-width: 760px) {
  .content-1440-full-right {
    margin: 0 auto;
    margin-left: auto;
    width: 96%;
  }
}
@media screen and (max-width : 420px) {
  .content-1440-full-right {
    width: 92%;
  }
}

.content-1440-full-left {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .content-1440-full-left {
    margin: inherit;
    margin-right: auto;
    width: 92%;
  }
}
@media screen and (max-width: 760px) {
  .content-1440-full-left {
    margin: 0 auto;
    margin-left: auto;
    width: 96%;
  }
}
@media screen and (max-width : 420px) {
  .content-1440-full-left {
    width: 92%;
  }
}

.relative {
  position: relative;
}

.color-blue {
  color: #0068b0;
}

.color-white {
  color: #fff;
}

.color-black {
  color: #000 !important;
}

.color-red {
  color: #de2b1e;
}

.color-grey {
  color: #989898;
}

.color-0098D8 {
  color: #0098D8;
}

.bg-red {
  background-color: #C40101;
}

.bg-blue {
  background-color: #0B46B7;
}

.bg-grey-dark {
  background-color: #343434;
}

.bg-grey-light {
  background-color: #EEEEEE;
}

.bg-white {
  background-color: #fff;
}

.bg-grey-DD {
  background-color: #DDD;
}

.bg-grey-D1 {
  background-color: #D1D1D1;
}

.bg-grey-E6 {
  background-color: #E6E6E6;
}

.bg-grey-EA {
  background-color: #EAEAEA;
}

.bg-grey-EB {
  background-color: #EBEBEB;
}

.bg-grey-E8 {
  background-color: #E8E8E8;
}

.bg-grey-36 {
  background-color: #363636 !important;
}

.bg-grey-f6 {
  background-color: #F6F6F6;
}

.bg-grey-f6f5f2 {
  background-color: #f6f5f2;
}

.bg-grey-f7 {
  background-color: #F7F7F7;
}

.bg-grey-f8 {
  background-color: #F8F8F8;
}

.bg-bea870 {
  background-color: #bea870;
}

.bg-a8a9a8 {
  background-color: #a8a9a8;
}

.bg-997a5c {
  background-color: #997a5c;
}

.bg-dedede {
  background-color: #dedede;
}

.btn-center {
  margin-left: auto;
  margin-right: auto;
}

.btn-right {
  margin-left: auto;
}

.btn:hover {
  opacity: 0.6;
}

.btn-size-14 {
  font-size: 1.4rem;
}

.btn-height-50 {
  height: 50px;
}

.btn-height-54 {
  height: 54px;
}

.btn-height-60 {
  height: 60px;
}

.btn-height-80 {
  height: 80px;
}
@media screen and (max-width: 760px) {
  .btn-height-80 {
    height: 60px;
  }
}

.btn-height-140 {
  height: 140px;
}

.btn-width-114 {
  max-width: 114px;
  width: 100%;
}

.btn-width-157 {
  max-width: 157px;
  width: 100%;
}

.btn-width-160 {
  max-width: 160px;
  width: 100%;
}

.btn-width-220 {
  max-width: 220px;
  width: 100%;
}

.btn-width-307 {
  max-width: 307px;
  width: 100%;
}

.btn-width-320 {
  max-width: 320px;
  width: 100%;
}

.btn-width-335 {
  max-width: 335px;
  width: 100%;
}

.btn-width-389 {
  max-width: 389px;
  width: 100%;
}

.btn-width-400 {
  max-width: 400px;
  width: 100%;
}

.btn-width-520 {
  max-width: 520px;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .btn-width-520 {
    max-width: 320px;
  }
}

.btn-white-right-back {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
  margin-left: auto;
  margin-right: auto;
  background: url("/invester/assets/images/common/arrow-btn-right-back.svg") #fff;
  background-repeat: no-repeat;
  background-position: right 1.2em top 50%;
  background-size: 9px auto;
  border-radius: 5px;
  border: 1px solid #000;
}

.btn-white-back {
  border: 1px solid #000;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
  background: url("/assets/images/common/arrow-back-black.svg") #fff;
  background-repeat: no-repeat;
  background-position: left 1em top 50%;
  background-size: 5px auto;
}

.btn-white-blue {
  border: 1px solid #0B46B7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #0B46B7;
  background: url("/assets/images/common/line-btn-blue02.svg") #fff;
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: 16px auto;
}
@media screen and (max-width: 760px) {
  .btn-white-blue {
    background-size: 24px auto;
    background-position: right -10px top 50%;
  }
}

.btn-contact-blue {
  border: 1px solid #0B46B7;
  background-color: #0B46B7 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
  background-position: left 1em top 50%;
  background-size: 5px auto;
  color: #fff;
}
.btn-contact-blue .icon-mail {
  background-position: left top 9px;
}

.btn-entry-white {
  border: 1px solid #fff;
  background-color: #fff !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
  background-position: left 1em top 50%;
  background-size: 5px auto;
  color: #0B46B7;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url(/assets/images/common/line-btn-blue.svg);
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: 20px auto;
}
.btn-entry-white .h-txt-entry {
  font-weight: bold;
  font-size: 4rem;
  line-height: 40px;
}
.btn-entry-white .icon-mail {
  background-position: left top 9px;
}

.btn-more {
  border: 1px solid #0B46B7;
  background-color: #0B46B7 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
  background-position: left 1em top 50%;
  background-size: 5px auto;
  color: #fff;
  font-family: initial;
  background: url("/assets/images/common/line-btn.svg") #0B46B7;
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: 16px auto;
}
@media screen and (max-width: 760px) {
  .btn-more {
    background-size: 24px auto;
    background-position: right -10px top 50%;
  }
}

.btn-blue {
  border: 1px solid #0B46B7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
  background: url("/assets/images/common/line-btn.svg") #0B46B7;
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: 16px auto;
}
@media screen and (max-width: 760px) {
  .btn-blue {
    background-size: 24px auto;
    background-position: right -10px top 50%;
  }
}

.row-btn {
  width: 100%;
}

.btn-border-white {
  border: 1px solid #fff;
}

.gototop {
  position: absolute;
  bottom: 70px;
  right: 100px;
  max-width: 69px;
  cursor: pointer;
}
@media screen and (max-width: 760px) {
  .gototop {
    bottom: 70px;
    right: 20px;
  }
}

.txt-title h1 {
  font-size: 2.4rem;
  font-weight: bold;
}

.list-col5 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -6%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -3%;
}
@media screen and (max-width: 760px) {
  .list-col5 ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.list-col5 ul li {
  width: 21.99%;
  margin-left: 3%;
  margin-top: 6%;
}
@media screen and (max-width: 760px) {
  .list-col5 ul li {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}
.list-col5 ul li img {
  width: 100%;
}
.list-col5 ul li a {
  display: block;
  height: 100%;
}
.list-col5 ul li a .title-list {
  margin: 20px 0;
}
.list-col5 ul li a .img-list img {
  width: 100%;
}
.list-col5 ul li a:hover {
  opacity: 1;
}
.list-col5 ul li a:hover .cover img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.list-col5 ul li a .cover {
  overflow: hidden;
}
.list-col5 ul li a .cover img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.list-col4 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -6%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -3%;
}
@media screen and (max-width: 760px) {
  .list-col4 ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.list-col4 ul li {
  width: 21.99%;
  margin-left: 3%;
  margin-top: 6%;
}
@media screen and (max-width: 760px) {
  .list-col4 ul li {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}
.list-col4 ul li img {
  width: 100%;
}
.list-col4 ul li a {
  display: block;
  height: 100%;
}
.list-col4 ul li a .title-list {
  margin: 20px 0;
}
.list-col4 ul li a .img-list img {
  width: 100%;
}
.list-col4 ul li a:hover {
  opacity: 1;
}
.list-col4 ul li a:hover .cover img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.list-col4 ul li a .cover {
  overflow: hidden;
}
.list-col4 ul li a .cover img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.list-col3 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -3%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -3%;
}
@media screen and (max-width: 760px) {
  .list-col3 ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.list-col3 ul li {
  width: 30.33%;
  margin-left: 3%;
  margin-top: 3%;
}
@media screen and (max-width: 760px) {
  .list-col3 ul li {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}
.list-col3 ul li img {
  width: 100%;
}
.list-col3 ul li a {
  display: block;
  height: 100%;
}
.list-col3 ul li a .title-list {
  margin: 20px 0;
}
.list-col3 ul li a .img-list img {
  width: 100%;
}
.list-col3 ul li a:hover {
  opacity: 1;
}
.list-col3 ul li a:hover .cover img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.list-col3 ul li a .cover {
  overflow: hidden;
}
.list-col3 ul li a .cover img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.list-col2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .list-col2 ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.list-col2 ul li {
  width: 48.7%;
  margin-top: 30px;
}
@media screen and (max-width: 760px) {
  .list-col2 ul li {
    margin-top: 4.4%;
    width: 100% !important;
  }
}
.list-col2 ul li img {
  width: 100%;
}
.list-col2 ul li a {
  display: block;
  height: 100%;
}
.list-col2 ul li a .img-list img {
  width: 100%;
}
.list-col2 ul li a:hover .cover img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.list-col2 ul li a .cover {
  overflow: hidden;
}
.list-col2 ul li a .cover img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.col3-center ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -3%;
}
@media screen and (max-width: 760px) {
  .col3-center ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 0;
  }
}
.col3-center ul li {
  width: 30%;
  margin-left: 1.367%;
  margin-right: 1.367%;
  margin-top: 3%;
}
.col3-center ul li img {
  width: 100%;
}
.col3-center ul li a {
  display: block;
  height: 100%;
}
.col3-center ul li a .img-list img {
  width: 100%;
}
.col3-center ul li a:hover {
  opacity: 1;
}
.col3-center ul li a:hover .cover img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.col3-center ul li a .cover {
  overflow: hidden;
}
.col3-center ul li a .cover img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.head-row-green {
  background: url("/invester/assets/images/common/line-head-center.png");
  background-repeat: repeat-x;
  background-position: left 0 top 50%;
}
.head-row-green h1, .head-row-green h2 {
  background-color: #22AC38;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 3rem;
  color: #fff;
  font-weight: 500;
  padding: 0 10px;
}
@media screen and (max-width: 992px) {
  .head-row-green h1, .head-row-green h2 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 760px) {
  .head-row-green h1, .head-row-green h2 {
    font-size: 2rem;
  }
}

.head-line-bottom-green h1, .head-line-bottom-green h2, .head-line-bottom-green h3, .head-line-bottom-green h4, .head-line-bottom-green h5 {
  font-size: 3rem;
  background: url("/invester/assets/images/common/line-head-bottom.png");
  background-repeat: no-repeat;
  background-position: left 0 bottom 0;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  background-size: 90px;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .head-line-bottom-green h1, .head-line-bottom-green h2, .head-line-bottom-green h3, .head-line-bottom-green h4, .head-line-bottom-green h5 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 760px) {
  .head-line-bottom-green h1, .head-line-bottom-green h2, .head-line-bottom-green h3, .head-line-bottom-green h4, .head-line-bottom-green h5 {
    font-size: 2rem;
  }
}

.header {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo {
  width: 66px;
}
.header .corporate-btn .btn {
  padding: 5px 40px 5px 15px;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 760px) {
  .header .corporate-btn .btn {
    padding: 5px 30px 5px 15px;
    font-size: 1.3rem;
  }
}

#coppy-right {
  background-color: #555555;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#coppy-right .coppy-right {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
}

@media screen and (max-width: 760px) {
  .pcElm {
    display: none;
  }
}

.spElm {
  display: none;
}
@media screen and (max-width: 760px) {
  .spElm {
    display: block;
  }
}

.mainvisual {
  position: relative;
  max-height: 600px;
  overflow: hidden;
  width: 100vw;
  background-color: #fff;
}
.mainvisual h1 {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 3rem;
  background-color: rgba(111, 113, 111, 0.5);
  padding: 2px 25px;
  top: 1px;
  left: 80px;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  .mainvisual h1 {
    font-size: 2rem;
    left: 20px;
  }
}
@media screen and (max-width: 760px) {
  .mainvisual h1 {
    font-size: 1.8rem;
    padding: 7px 12px;
    left: 0;
  }
}
.mainvisual .txt {
  position: absolute;
  bottom: 80px;
  left: 80px;
  width: 80%;
  max-width: 648px;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .mainvisual .txt {
    left: 20px;
  }
}
@media screen and (max-width: 760px) {
  .mainvisual .txt {
    left: 10px;
    bottom: 50px;
    max-width: 448px;
  }
}
.mainvisual .txt img {
  width: 100%;
  max-width: 648px;
  height: auto;
}
@media screen and (max-width: 992px) {
  .mainvisual .txt img {
    max-width: 448px;
  }
}
.mainvisual .ir-report {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 140px;
  z-index: 2;
}
.mainvisual .ir-report a {
  display: inline-block;
  width: 140px;
  height: 195px;
  background-color: #fff;
}
.mainvisual .ir-report img {
  width: 140px;
  height: auto;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.swiper-pagination {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 17px !important;
  height: 17px !important;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1 !important;
  background: inherit !important;
  background-color: rgba(74, 74, 72, 0.8) !important;
  margin: 0 3px;
}
@media screen and (max-width: 760px) {
  .swiper-pagination-bullet {
    width: 13px !important;
    height: 13px !important;
  }
}

.swiper-container {
  position: inherit !important;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  position: inherit !important;
}

.swiper-container-fade .swiper-slide {
  position: inherit !important;
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #22AC38 !important;
}

.swiper-txt-sum-img {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
}
.swiper-txt-sum-img img {
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .swiper-txt-sum-img {
    bottom: 5px;
    right: 3px;
  }
}

.swiper-button-next {
  background-image: url("/invester/assets/images/mv/arrow-right.svg") !important;
  margin-right: 80px;
}
@media screen and (max-width: 992px) {
  .swiper-button-next {
    width: 30px !important;
    height: 30px !important;
    margin-right: 10px !important;
  }
}

.swiper-button-prev {
  background-image: url("/invester/assets/images/mv/arrow-left.svg") !important;
  margin-left: 80px;
}
@media screen and (max-width: 992px) {
  .swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
    margin-left: 10px !important;
  }
}

#menu-toggle-down {
  background-color: #22AC38;
  margin-top: -1px;
  z-index: 9999;
  position: relative;
}
@media screen and (max-width: 760px) {
  #menu-toggle-down .menu-toggle-down {
    width: 100%;
  }
}
#menu-toggle-down .menu-toggle-down > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 760px) {
  #menu-toggle-down .menu-toggle-down > ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 760px) {
  #menu-toggle-down .menu-toggle-down > ul li {
    width: 50%;
  }
}
#menu-toggle-down .menu-toggle-down > ul li a {
  padding: 15px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  background: url("/invester/assets/images/common/arrow-down-white.svg");
  background-repeat: no-repeat;
  background-position: right 0.4em top 51%;
  background-size: 17px auto;
}
@media screen and (max-width: 992px) {
  #menu-toggle-down .menu-toggle-down > ul li a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 760px) {
  #menu-toggle-down .menu-toggle-down > ul li a {
    padding: 10px 30px;
    border: 1px solid #fff;
    border-top: 0;
    background-position: right 1em top 51%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 992px) {
  #everyone .everyone p {
    font-size: 1.4rem;
  }
}

.human-user .human-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .human-user .human-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.human-user .human-detail .human-img {
  width: 20.5%;
  text-align: center;
}
.human-user .human-detail .human-img img {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 760px) {
  .human-user .human-detail .human-img {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.human-user .human-detail .human-txt {
  width: 75%;
  padding-top: 50px;
  font-size: 1.8rem;
}
@media screen and (max-width: 992px) {
  .human-user .human-detail .human-txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 760px) {
  .human-user .human-detail .human-txt {
    width: 100%;
    padding-top: 30px;
  }
}

#human-business {
  background: url("/invester/assets/images/top/bee-bg.jpg?ASD=SAD");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
@media screen and (max-width: 992px) {
  #human-business .content-business {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 760px) {
  #human-business .content-business {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
#human-business .human-business-detail {
  position: absolute;
  font-size: 1.8rem;
}
@media screen and (max-width: 1200px) {
  #human-business .human-business-detail {
    max-width: 590px;
  }
  #human-business .human-business-detail br {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  #human-business .human-business-detail {
    max-width: 450px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  #human-business .human-business-detail {
    max-width: 100%;
    max-width: 400px;
  }
  #human-business .human-business-detail br {
    display: none;
  }
}
@media screen and (max-width: 910px) {
  #human-business .human-business-detail {
    max-width: 380px;
  }
}
@media screen and (max-width: 760px) {
  #human-business .human-business-detail {
    max-width: 100%;
    max-width: 330px;
    position: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#human-business .human-business-img {
  max-width: 942px;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  #human-business .human-business-img {
    max-width: 542px;
  }
}
@media screen and (max-width: 992px) {
  #human-business .human-business-img {
    max-width: 585px;
  }
}
@media screen and (max-width: 800px) {
  #human-business .human-business-img {
    max-width: 515px;
  }
}
@media screen and (max-width: 768px) {
  #human-business .human-business-img {
    max-width: 400px;
  }
}
@media screen and (max-width: 760px) {
  #human-business .human-business-img {
    margin-top: 30px;
  }
}

@media screen and (max-width: 992px) {
  #strengths .strengths {
    font-size: 1.4rem;
  }
}
#strengths .strengths .list-col1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#strengths .strengths .list-col1 img {
  max-width: 503px;
  width: 100%;
}
@media screen and (max-width: 760px) {
  #strengths .strengths .list-col1 img {
    max-width: 100%;
  }
}
#strengths .strengths .list-col2 ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 760px) {
  #strengths .strengths .list-col2 ul li {
    width: 70% !important;
  }
}
#strengths .strengths .list-col2 ul li img {
  max-width: 100%;
  width: auto;
}
@media screen and (max-width: 760px) {
  #strengths .strengths .list-col2 ul li img {
    margin-left: auto;
    margin-right: auto;
  }
}
#strengths .strengths .list-col2 ul li:first-child img {
  max-width: 503px;
  width: 100%;
}
@media screen and (max-width: 760px) {
  #strengths .strengths .list-col2 ul li:first-child img {
    max-width: 100%;
  }
}
@media screen and (max-width: 760px) {
  #strengths .strengths .strengths-detail br {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  #earning-power .earning-power {
    font-size: 1.4rem;
  }
}
#earning-power .earning-power .earning-power-detail .section {
  padding-bottom: 60px;
}
@media screen and (max-width: 760px) {
  #earning-power .earning-power .earning-power-detail .section {
    padding-bottom: 30px;
  }
}
#earning-power .earning-power .earning-power-detail .section + .section {
  padding-top: 50px;
  border-top: 1px solid #22AC38;
}
@media screen and (max-width: 760px) {
  #earning-power .earning-power .earning-power-detail .section + .section {
    padding-top: 20px;
  }
}
/*# sourceMappingURL=stylesheet.css.map */