@charset "shift-jis";
body{
  font-family: Helvetica, Arial, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
*,
*::before,
*::after{ box-sizing: border-box;}

.pages{
  width: 100%;
  overflow: hidden;
}

main{ margin-top: 50px;}

a { color: #00388C; }
a[href^="tel:"] { pointer-events: none; }

img {
  max-width: 100%;
  height: auto;
  text-align : center
}

.mt100{ margin-top: 100px;}
.mb10{ margin-bottom: 10px !important;}
.mb20{ margin-bottom: 20px !important;}
.mb30{ margin-bottom: 30px !important;}
.mb40{ margin-bottom: 40px !important;}
.pt0{padding-top: 0 !important;}
.pb0{padding-bottom: 0 !important;}

.txt_s{ font-size: .85em;}
.txt_l{ font-size: 1.3em;}
.txt_orange{ color: #EE764E;}
.txt_fanvy{ color: #1c236d;}

.marker{ border-bottom: 2px solid #1c236d;}
.marker2 {
  background: linear-gradient( rgba(255, 242, 160, 0) 20%, rgba(215, 186, 65, 0.3) 20% );
  padding: 2px;
}

.btn{
  display: block;
  background: #e10f40;
  border-radius: 4px;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  padding: 20px 35px;
  width: 85%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.btn:link,
.btn:visited,
.btn:active,
.btn:hover{ color: #fff;}
.btn::after{
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-size: 1.3em;
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.inner{
  width: 94%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0;
}
.normal{
  font-size: 1em;
  font-weight: normal;
  text-align: left;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}

.ttl{
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-align: center;
  margin-bottom: 1em;
}

p{
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  text-align: left;
}


@media screen and (min-width: 1000px) {
  .sp {display: none;}
  .tab {display: none;}
  .pc {display: block;}
}

@media screen and (max-width: 999px) {
}

@media screen and (min-width: 600px) and (max-width: 999px) {
  .sp {
    display: none;
    height: 400px;
  }
  .pc {display: none;}
  .tab {display: block;}

  .inner{ padding: 50px 0;}
}

@media screen and (max-width: 599px) {
  body{ font-size: 14px;}
  
  .tab {display: none;}
  .pc {display: none;}
  .sp {display: block;
    max-width: 100%;
    height: 400px;
  }

  .btn{
    font-size: 14px;
    padding: 20px 30px 20px 20px;
  }

  .inner{ padding: 40px 0;}
  .ttl{ font-size: 26px;}
}


/* ==============================
   header
   ============================== */
header{
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 101;
}
header .inner{
  display: flex;
  justify-content: space-between;
  padding: 0;
  position: relative;
}
header .logo{
  display: flex;
  align-items: center;
}
header .logo img{
  width: 100%;
  max-width: 228px;
  height: auto;
  vertical-align: middle;
}
header #h_nav{
  display: flex;
  align-content: center;
  font-size: 16px;
}

header #h_nav .btn_menu {
  position: relative;
  width: 50px;
  height: 50px;
  transition: all .4s;
}
header #h_nav .btn_menu > p{ opacity: 0;}
header #h_nav .btn_menu span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 33%;
  height: 1px;
  background-color: #333;
}
header #h_nav .btn_menu span:nth-of-type(1) {
  top: 33%;
}
header #h_nav .btn_menu span:nth-of-type(2) {
  top: 50%;
}
header #h_nav .btn_menu span:nth-of-type(3) {
  bottom: 33%;
}
header #h_nav .btn_menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
header #h_nav .btn_menu.active span:nth-of-type(2) {
  opacity: 0;
}
header #h_nav .btn_menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}

header #h_nav ul{
  display: none;
  width: 250px;
  position: absolute;
  top: 50px;
  right: 0;
  background: #fff;
  padding: 0 15px;
  margin-left: 0;
  color: #1c2569;
  list-style: none;
}
header #h_nav li{
  font-size: 12px;
  padding-left: 15px;
  padding-bottom: 25px;
  position: relative;
}
header #h_nav li::before{
  content: "";
  width: 10px;
  height: 1px;
  position: absolute;
  top: .75em;
  left: 0;
  background: #1c2569;
}
header #h_nav li a{
  display: block;
  text-decoration: none;
  color: #333;
}

/* ==============================
   mv
   ============================== */
.mv{
  background-position: center;
  background-size: cover;
  background-repeat:  no-repeat;
}
.mv .inner{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 0 60px;
  text-align: center;
  position: relative;
}
.mv .inner::before{
  content: "";
  width: 100%;
  padding-top: 5em;
  background: url(/parallelincome/img/column/txt_mv.png) right bottom/contain no-repeat;
  position: absolute;
  right: 0;
  bottom: -20px;
}
.mv .photo{
  width: 88.8%;
  max-width: 800px;
  margin: 0 auto;
}
.mv .main_ttl{
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.mv .ttl_column{
  color: #fff;
  font-size: 1.5em;
}
.mv h1{
  color: #1c236d;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.mv h1 span{
  background: #fff;
  padding: 3px;
}
@media screen and (max-width: 599px) {
  .mv .inner{
    padding-top: 46%;
    padding-bottom: 70px;
  }
  .mv .inner::before{
    background-image: url(/parallelincome/img/column/txt_mv_sp.png);
    padding-top: 7em;
  }
  .mv .main_ttl{
    width: 95%;
    top: 10px;
    left: 5.6%;
    transform: initial;
  }
  .mv h1{ font-size: 24px;}
}

/* ==============================
   .top_gaiyou
   ============================== */
.top_gaiyou{
  width: 94%;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0 40px;
}
.pagenav{
  min-height: 2em;
  margin-top: 50px;
  position: relative;
}
.pagenav::before{
  content: "";
  width: 5px;
  height: 100%;
  background: rgb(28,35,109);
  background: linear-gradient(150deg, rgba(28,35,109,1) 50%, rgba(179,179,179,1) 50%, rgba(179,179,179,1) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.pagenav ul{ padding-left: 3.5em;}
.pagenav li::before{
  content: "\025cf";
  padding-right: 1em;
}
.pagenav li{
  color: #6b70a8;
  text-indent: -2em;
  padding-left: 2em;
}
.pagenav li a{
  color: #6b70a8;
  text-decoration: none;
}
.pagenav li a:hover{ text-decoration: underline;}
.pagenav li + li{ margin-top: 1em;}

@media screen and (max-width: 599px) {
  .top_gaiyou{ padding-top: 40px;}
}

/* ==============================
   .contents
   ============================== */
.contents .inner{
  background: #fff;
  box-shadow: 0 5px 50px rgb(27 35 109 / 15%);
  border-radius: 15px;
  padding: 6em 50px;
  margin-bottom: 85px;
}

.contents .block{
  position: relative;
  z-index: 0;
}
.contents .block:before{
  content: "";
  width: 480px;
  height: 300px;
  background: #eeeeee;
  background: -moz-linear-gradient(-10deg,  #eeeeee 0%, #eeeeee 50%, #ded4c1 100%);
  background: -webkit-linear-gradient(-10deg,  #eeeeee 0%,#eeeeee 50%,#ded4c1 100%);
  background: linear-gradient(-10deg,  #eeeeee 0%,#eeeeee 50%,#ded4c1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ded4c1',GradientType=1 );
  border-radius: 25px;
  position: absolute;
  top: -50px;
  z-index: -1;
}
.contents .block:nth-of-type(odd):before{ right: 94%;}
.contents .block:nth-of-type(even):before{ left: 94%;}
.contents .block + .block{ margin-top: 100px;}

.contents .block h2{
  color: #1c236d;
  font-size: 1.5em;
  font-weight: 600;
  text-align: left;
  margin-bottom: 2em;
}
.contents .block h2 .marker{
  background: #1c236d;
  color: #fff;
}
.contents .block p{ line-height: 2.5;}
.contents .box_point{
  background: rgb(117 99 64 / 10%);
  border: 1px solid;
  color: #756340;
  padding: 5px;
  margin-top: 90px;
}
.contents .box_point p{
  background: #fff;
  padding: 1.5em;
}

@media screen and (min-width: 600px) {
  .contents .block p{ padding-left: 100px;}
  .contents .box_point{ margin-left: 100px;}
  
}

@media screen and (max-width: 599px) {
  .contents .inner{ padding: 4em 30px;}
  .contents .block:before{ top: -30px;}
  .contents .block:nth-of-type(odd):before{ right: 90%;}
  .contents .block:nth-of-type(even):before{ left: 90%;}
  }

/* ==============================
   .column
   ============================== */
.column .inner{ padding-top: 120px;}
.column .ttl{ font-size: 40px;}
.column .lead{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 45px;
}

.list_column .column_box a{
  color: #333;
  text-decoration: none;
}
.list_column .column_box a:hover,
.list_column .column_box a:hover *{ opacity: .7;}
.list_column .column_box{
  box-shadow: 0 5px 15px rgb(27 35 109 / 25%);
  border-radius: 5px;
  overflow: hidden;
  margin: 0 15px 15px;
}
.list_column .box_txt{ padding: 25px;}
.list_column .box_txt h3{
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 1em;
}
.list_column .box_txt .date{
  color: #999;
  font-size: 10px;
  margin-bottom: 1rem;
}
.list_column .box_txt .txt{
  font-size: 12px;
  line-height: 2;
}
.column_slick .slick-dots li button:before {
  font-family: inherit;
  content: "\025cf";
  font-size: 15px;
}
.column_slick .slick-prev {
  left: -15px;
}
.column_slick .slick-next {
  right: -15px;
}
.column_slick .slick-prev::before,
.column_slick .slick-next::before {
  content: "";
  color: #707070;
  border-left: 2px solid;
  border-bottom: 2px solid;
  width: 10px;
  height: 10px;
  padding: 8px;
  display: block;
}
.column_slick .slick-prev::before {
  transform: rotate(45deg);
}
.column_slick .slick-next::before {
  transform: rotate(225deg);
}
@media screen and (max-width: 599px) {
  .column .ttl{ font-size: 26px;}

  .list_column{
    width: 87%;
    margin: 0 auto;
  }
}

/* ==============================
   .inquiry
   ============================== */
.wrap_inquiry{ font-size: .85em;}
.inquiry h3{ font-weight: normal;}
.inquiry .conts_tel p{ text-align: center;}
.inquiry .btn{ text-decoration: none;}
.inquiry .btn::after{ content: none;}

@media screen and (max-width: 599px) {
  .wrap_inquiry {
    width: 87%;
    margin: 0 auto;
  }
}

/* ==============================
   .ar_last_msg
   ============================== */
.ar_last_msg {
  background: #F5F2EF;
  margin-bottom: 160px;
}
.ar_last_msg .inner {
  max-width: 1000px;
  padding-bottom: 18em;
  position: relative;
}
.ar_last_msg .last_msg {
  color: #fff;
  font-size: 30px;
  margin: 0 0 96px;
}
.ar_last_msg .last_msg > span{
  background: #333;
  padding: 6px;
}
.ar_last_msg .box {
  background: #fff;
  padding: 40px;
  position: relative;
  border-radius: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}
.ar_last_msg .seminar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 96px;
}
.ar_last_msg .seminar .seminar_box {
  width: 48%;
}
.ar_last_msg .seminar .sub_ttl {
  margin: 0 0 40px;
  font-size: 14px;
  text-align: left;
  line-height: 1.6;
}
.ar_last_msg .seminar h2 {
  margin: 0 0 25px;
  font-size: 30px;
}
.ar_last_msg .seminar .seminar_img{ width: 50%;}
.ar_last_msg .seminar .seminar_img img{ width: 100%;}
.ar_last_msg .seminar .seminar_txt {
  margin: 0 0 30px 0;
  font-size: 14px;
}
.ar_last_msg .seminar .ico_list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  max-width: 300px;
  margin: 0 auto;
  padding: 0;
}
.ar_last_msg .seminar .ico_list li {
  text-align: center;
}
.ar_last_msg .seminar .ico_list span {
  display: block;
  color: #8a9f55;
  font-size: 10px;
  text-align: center;
  line-height: 1.4;
}
.ar_last_msg .seminar .seminar_btn {
  display: block;
  position: relative;
  margin: 30px auto 0;
  padding: 1em 2.5em 1em 1em;
  color: #333;
  border: 1px solid;
  font-size: 16px;
  text-align: center;
  line-height: 1;
  text-decoration: none;
}
.ar_last_msg .seminar .seminar_btn:hover {
  opacity: 0.8;
}
.ar_last_msg .seminar .seminar_btn::before {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 50%;
  content: '';
}
.ar_last_msg .seminar .seminar_btn::after {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  content: '';
}
.ar_last_msg .ttl_taiken{
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
.ar_last_msg .ttl_taiken::after{
  content: "";
  display: block;
  width: 103px;
  border: 52px solid transparent;
  border-top: 24px solid #333;
  margin: 35px auto 0;
}
.ar_last_msg .taiken{
  text-align: center;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -60px;
}
.ar_last_msg .taiken h3{
  font-size: 25px;
  margin-bottom: 35px;
}
.ar_last_msg .taiken .circle{
  width: 112px;
  height: 112px;
  background: #1c236d;
  color: #fff;
  font-weight: normal;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 30px;
  top: -60px;
}
.ar_last_msg .taiken .list_detail{
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  max-width: 500px;
  margin: 0 auto 30px;
}
.ar_last_msg .taiken .list_detail dt{ flex: 0 0 5em;}
.ar_last_msg .taiken .list_detail dt::after{ content: "：";}
.ar_last_msg .taiken .list_detail dd{ flex: 1 1 calc(100% - 5em);}
.ar_last_msg .taiken .btn{ background: #1c236d;}
.ar_last_msg .taiken .btn::before {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 50%;
  content: '';
}
.ar_last_msg .taiken .btn::after {
  position: absolute;
  top: 50%;
  right: calc(1em + 4px);
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  content: '';
}
.ar_last_msg .bnr {
  margin-bottom: 50px;
}
.ar_last_msg .bnr .img_sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .ar_last_msg .inner{ padding-bottom: 20em;}
  .ar_last_msg .seminar {
    display: block;
  }
  .ar_last_msg .seminar .seminar_box {
    width: 100%;
  }
  .ar_last_msg .seminar .sub_ttl {
    margin-bottom: 1em;
  }
  .ar_last_msg .seminar h2 {
    margin-bottom: 15px;
  }
  .ar_last_msg .seminar .seminar_img {
    width: 100%;
  }
  .ar_last_msg .taiken .circle{
    width: 85px;
    height: 85px;
    font-size: 19px;
    top: -43px;
  }
}
@media screen and (max-width: 660px) {
  .ar_last_msg .inner { padding-bottom: 23em;}
}
@media screen and (max-width: 599px) {
  .ar_last_msg {
    margin-bottom: 120px;
  }
  .ar_last_msg .last_msg {
    margin-bottom: 35px;
    font-size: 15px;
    line-height: 2.5;
  }
  .ar_last_msg .box {
    padding: 70px 4% 20px;
  }
  .ar_last_msg .seminar {
    margin-bottom: 35px;
  }
  .ar_last_msg .seminar h2 {
    font-size: 25px;
  }
  .ar_last_msg .seminar .seminar_txt {
    margin-top: 1em;
  }
  .ar_last_msg .seminar .seminar_img img {
    margin-bottom: 35px;
  }
  .ar_last_msg .ttl_taiken{ font-size: 16px;}
  .ar_last_msg .ttl_taiken::after {
    width: 80px;
    border-width: 40px;
    border-top-width: 18px;
    margin-top: 20px;
  }
  .ar_last_msg .taiken h3{ font-size: 25px;}
  .ar_last_msg .bnr .img_pc {
    display: none;
  }
  .ar_last_msg .bnr .img_sp {
    display: block;
  }
}
