@charset "UTF-8";
/* CSS Document */
body {
  margin: 0;
}
.disp_pc {
  display: block;
}
.disp_sp {
  display: none;
}
@media screen and (max-width:767px) {
  .disp_pc {
    display: none;
  }
  .disp_sp {
    display: block;
  }
}
/* スマホ対応 */
/* ランドスケープ時(横向き表示時)の表示調整 */
@media only screen and (max-width: 823px) and (max-height: 414px) and (orientation: landscape) {
  .disp_pc {
    display: none !important;
  }
  .disp_sp {
    display: block !important;
  }
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
* {
  box-sizing: border-box;
}
/**/
#wrapper {
  position: relative;
}

/* header */
#header {
  display: none;
}
@media (min-width: 768px) {
  #header {
    position: static;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  #header #header_core {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    z-index: 102;
    position: static;
    width: 300px;
    height: 60px;
  }
  #header #header_menu {
    padding-right: 30px;
    background: #ffffff;
    line-height: 1;
  }
}
.header_sp {
  overflow: auto;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  padding: 0;
}
.header_sp .header_inner {
  width: 100%;
  height: 63px;
  display: table;
}
.header_sp .header_inner .header-logo {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding-left: 5px;
  padding: 5px;
  line-height: 1;
}
.header_sp .header_inner .header-logo > a {
  display: inline-block;
}
.header_sp .header_inner .header-logo > a img {
  width: 100%;
  max-width: 300px;
}
/**/
.inner_block {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .inner_block {
    max-width: 980px;
  }
}

/* mv */
.mv {
  background-color: #53548a;
  background-image: url(../images/mv_bg_sp.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 50px 0 30px;
  color: #fff;
}
@media (min-width: 768px) {
  .mv {
    background-image: url(../images/mv_bg_pc.png);
    background-size: cover;
    padding: 85px 0 80px;
  }
}
.mv-01 {
  margin: 0 52px;
  text-align: center;
}
@media (min-width: 768px) {
  .mv-01 {
  }
}
.mv-02 {
  margin: 15px 23px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .mv-02 {
    margin: 40px 0 0;
  }
}
.mv-03 {
  margin: 15px -4px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .mv-03 {
    margin: 30px 0 0;
  }
}
.mv-04 {
  margin: 60px 0 0;
  text-align: center;
}
@media (min-width: 768px) {
  .mv-04 {
    margin: 45px 20px 0 0;
  }
}
.mv-05 {
  margin: 20px 0 0;
  text-align: center;
}
@media (min-width: 768px) {
  .mv-05 {
    margin-top: -10px;
  }
}
.mv-note {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .mv-note {
    margin-top: 45px;
  }
}
.mv-note {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .mv-note {
    margin-top: 45px;
  }
}


.mv-01,
.mv-02,
.mv-03,
.mv-04,
.mv-05,
.mv-06{
  overflow: hidden;
}
.mv-01__inner,
.mv-02__inner,
.mv-03__inner,
.mv-04__inner,
.mv-05__inner,
.mv-06__inner{
  transform: translateY(200%);
  transition-property: transform;
  transition-duration: 1s;
  transition-timing-function: ease;
}
.mv-01__inner,
.mv-06__inner{
  transition-delay: .2s;
}
.mv-02__inner{
  transition-delay: .4s;
}
.mv-03__inner{
  transition-delay: .6s;
}
.mv-04__inner{
  transition-delay: 1.0s;
}
.mv-05__inner{
  transition-delay: 1.1s;
}


html.loaded .mv-01__inner,
html.loaded .mv-02__inner,
html.loaded .mv-03__inner,
html.loaded .mv-04__inner,
html.loaded .mv-05__inner,
html.loaded .mv-06__inner{
  transform: translateY(0%);
}


/**/
.nav-list {
  padding-top: 42px;
  padding-bottom: 42px;
}
@media (min-width: 768px) {
  .nav-list {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.nav-list-item:nth-of-type(n+2) {
    margin-top: 15px;
}
@media (min-width: 768px) {
  .nav-list-item:nth-of-type(n+2) {
    margin-top: 0;
  }
}

/**/
.section {
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.sec-title {
  font-size: 30px;
  line-height: 1.3;
  margin: 0 0 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-title {
    font-size: 50px;
    margin-bottom: 50px;
  }
}
.sec-title-marker {
  background: linear-gradient(transparent 70%, #ffff00 70%);
}
@media (min-width: 768px) {
  .sec-title-marker {
  }
}
.sec-title-number {
  font-size: 36px;
}
@media (min-width: 768px) {
  .sec-title-number {
    font-size: 60px;
  }
}
.sec-lead {
  font-size: 13px;
  margin: 20px 0;
}
@media (min-width: 768px) {
  .sec-lead {
    font-size: 18px;
  }
}
/**/
.sec02-block {
  background: #ffffff;
  border: 4px solid;
  border-radius: 4px;
  position: relative;
  margin-top: 25px;
}
.sec02-01 {
  border-color: #5c92b5;
}
.sec02-02 {
  border-color: #438086;
}
.sec02-03 {
  border-color: #a04da3;
}
@media (min-width: 768px) {
  .sec02-block {
  }
}

.sec02-inner_block {
  padding: 20px;
}
@media (min-width: 768px) {
  .sec02-inner_block {
    padding: 45px 35px;
  }
}
.sec02-title {
  color: #fff;
  font-weight: bold;
  margin: 0;
  padding: 15px;
  text-align: center;
  position: relative;
}
.sec02-01 .sec02-title {
  background-color: #5c92b5;
}
.sec02-02 .sec02-title {
  background-color: #438086;
}
.sec02-03 .sec02-title {
  background-color: #a04da3;
}
@media (min-width: 768px) {
  .sec02-title {
    padding: 25px;
  }
}
.sec02-title:after{
  content:'';
  height:0;
  width:0;
  pointer-events:none;
  position:absolute;
  border-style: solid;
  border-width: 17px 15px 0 15px;
  bottom:-15px;
  left:50%;
  transform: translateX(-50%);
}
.sec02-01 .sec02-title:after {
  border-color: #5c92b5 transparent transparent transparent;
}
.sec02-02 .sec02-title:after {
  border-color: #438086 transparent transparent transparent;
}
.sec02-03 .sec02-title:after {
  border-color: #a04da3 transparent transparent transparent;
}
.sec02-title-text-main {
  font-size: 18px;
  line-height: 1.1;
  display: block;
}
@media (min-width: 768px) {
  .sec02-title-text-main {
    font-size: 28px;
    display: inline-block;
  }
}
.sec02-title-text-sub {
  font-size: 14px;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .sec02-title-text-sub {
    font-size: 22px;
  }
}
.points-badge {
  display: inline-block;
  border-radius: 99px;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.2;
  padding: 5px 10px;
  text-align: center;
  white-space: nowrap;
}
.sec02-01 .points-badge {
  background-color: #5c92b5;
}
.sec02-02 .points-badge {
  background-color: #438086;
}
.sec02-03 .points-badge {
  background-color: #a04da3;
}
@media (min-width: 768px) {
  .points-badge {
    font-size: 22px;
    padding: 10px;
    width: 100%;
  }
}
.note-sec02 li{
  font-size: 13px;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .note-sec02 li{
    font-size: 18px;
    margin-top: 0;
  }
}
.note-circle {
  font-size: 12px;
}
.note-circle-fz-18 {
  font-size: 18px;
}
.sec02-01 .note-circle {
  color: #5c92b5;
}
.sec02-02 .note-circle {
  color: #438086;
}
.sec02-03 .note-circle {
  color: #a04da3;
}
@media (min-width: 768px) {
  .note-circle {
    font-size: 18px;
  }
}
.sec02-img{
  margin-top: 25px;
}
@media (min-width: 768px) {
  .sec02-img{
    margin-top: 50px;
  }
}
/**/
.sec03-inner_block {
  background: #ffffff;
  border-radius: 4px;
  padding: 25px 20px;
}
@media (min-width: 768px) {
  .sec03-inner_block {
    padding: 40px 40px;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
  }
}
.sec04-inner_block {
  background: #ffffff;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .sec04-inner_block {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .sec-img {
    text-align: center;
  }
}
.sec-sub-title {
  background-color: #53548a;
  border-radius: 99px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  padding: 8px 10px;
}
@media (min-width: 768px) {
  .sec-sub-title {
    font-size: 20px;
    padding: 15px 20px;
    margin-bottom: 30px;
  }
}
.sec05-badge {
  display: inline-block;
  border-radius: 99px;
  border: 3px solid #53548a;
  color: #53548a;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.2;
  padding: 5px 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .sec05-badge {
    width: 100%;
    font-size: 22px;
  }
}
.note-sec05 .note-circle {
  color: #53548a;
}
.sec-notice {
  background-color: #808080;
  color: #fff;
  padding: 10px;
}
@media (min-width: 768px) {
  .sec-notice {
    padding: 10px;
  }
}

/**/
.balloon-title {
  font-size: 22px;
  line-height: 1.5;
  margin-top: 0;
}
@media (min-width: 768px) {
  .balloon-title {
    font-size: 28px;
  }
}
.balloon-list {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .balloon-list {
    padding: 0 60px;
  }
}
.balloon-list-alink {
  border: 3px solid #53548a;
  border-radius: 5px;
  box-shadow: 3px 3px 0px 0px rgba(83, 84, 138, 1) ;
  width: 100%;
  display: block;
  position: relative;
  padding: 15px 40px 15px 15px;
  color: #000;
  background-color: #fff;
}
.balloon-list-alink:before {
  position: absolute;
  content: "";
  width: 22px;
  height: 16px;
  background: url(../images/icon_blank_01.png) no-repeat center center;
  background-size: 100%;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.balloon-list-text-main{
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .balloon-list-text-main{
    font-size: 24px;
    line-height: 1.5;
  }
}
.balloon-list-text-sub{
  font-size: 13px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .balloon-list-text-sub{
    font-size: 18px;
  }
}

/**/
.note {
  list-style: none;
}
.note li {
  display: flex;
}
.note li span {
  display: inline-block;
}
@media (min-width: 768px) {
  .note li span.note-circle {
    margin-top: -0.1em;
    margin-right: 0.1em;
  }
}
.note li span.nowrap {
  white-space: nowrap;
}
.sup {
  font-size: 100%;
  vertical-align: top;
  position: relative;
  top: 0em;
}

/**/
.modaal-content-container {
  padding: 50px 0;
}
.modaal-content-container .modal_box {
  width: 100%;
  max-width: 980px;
  padding: 25px 20px;
  background: #ffffff;
  border-radius: 5px;
  display: block;
  position: relative;
}
.modaal-container {
  background: transparent;
}
.modaal-close:after, .modaal-close:before {
  display: none;
}
.modaal-wrapper .modaal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  content: "";
  background: url(../images/btn_close.png) no-repeat center center;
  background-size: contain;
  border-radius: 0;
}
.modal_box .modal_ttl {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
  color: #4f5b96;
  margin-bottom: 15px;
  padding-bottom: 10px;
  width: 100%;
  display: inline-block;
  border-bottom: 2px solid #4f5b96;
}
.modal_box .note {
  line-height: 1.8;
  font-size: 13px;
}
@media (min-width: 768px) {
  .modaal-content-container {
      padding: 80px 30px;
      width: 100%;
  }
  .modaal-content-container .modal_box {
    padding: 50px 60px;
    width: calc(100% - 60px);
  }
  .modaal-wrapper .modaal-close {
    position: absolute;
    top: 10px;
    right: 90px;
    width: 50px;
    height: 50px;
    content: "";
    background: url(../images/btn_close.png) no-repeat center center;
    background-size: contain;
    border-radius: 0;
  }
  .modal_box .modal_ttl {
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    width: 100%;
    display: inline-block;
  }
  .modal_box .note {
    line-height: 1.8;
    font-size: 18px;
  }
}

/* ----------------------------------------
  footer
---------------------------------------- */
#footer {
  background-color: #eee;
  border-top: 10px solid #b61018;
  width: 100%;
  padding: 0;
  font-size: 1.4rem;
}

#footer * {
  font-family: "ＭＳ Ｐゴシック", "メイリオ", "ヒラギノ角ゴ Pro W3", Osaka, Arial, Helvetica, sans-serif;
  box-sizing: content-box;
  line-height: 1;
}

#footer a {
  color: #005699;
  text-decoration: underline;
}
#footer a:hover {
  opacity: 1;
}

#footer .contents_inner {
  max-width: 1000px;
  margin: 0 auto;
}

#footer .line3 {
  position: relative;
  background: url(/lp/msgp/images/common/line.png) repeat-x top;
  height: 21px;
}

#footer .line3 .lineend {
  position: absolute;
  background: url(/lp/msgp/images/common/line_right.png) no-repeat top;
  width: 193px;
  height: 66px;
  bottom: 0px;
  right: 0px;
}

#footer .line3 .lineendtop {
  position: absolute;
  background: url(/lp/msgp/images/common/line_right_top.png) no-repeat top;
  width: 193px;
  height: 66px;
  bottom: 0px;
  right: 0px;
}

#footer .cover2 {
  background: #505050;
}

#footer_bg {
  background: #DDDDDD;
  padding: 15px 0 5px;
  height: 40px;
}

#footer_bg dl {
  max-width: 960px;
  margin: 0 auto;
  padding-left: 20px;
  background: url(../images/footer_txt.gif) no-repeat 0 0;
  height: 29px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

span.blank {
  display: inline-block;
  background: url(../images/icon_blank.png) no-repeat left 0px;
  padding: 0px 0px 0px 18px;
  margin: 3px 0px -5px 3px;
  min-height: 16px;
  height: auto !important;
}

span.pdf {
  background: transparent url(../images/icon_pdf_s.gif) no-repeat left center;
  display: inline-block;
  height: auto !important;
  margin: 0 0 0 3px;
  min-height: 16px;
  padding: 0 0 0 30px;
}

#pagetop_btn a {
  display: block;
  float: right;
  background: url(../images/btn_pagetop.png) no-repeat left top;
  width: 130px;
  height: 40px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  margin-top: -33px;
  position: relative;
}

#pagetop_btn {
  margin: 0 !important;
}

#footer_bana {
  clear: both;
  padding: 15px 0 0 10px;
  overflow: hidden;
  margin: 0 auto 20px;
}

#footer_bana li {
  float: left;
  margin-right: 30px;
}

#footer_bana li.btn04 {
  margin-right: 0;
}

#footer_bana li a {
  display: block;
  height: 54px;
  width: 217px;
  text-indent: -9999px;
  background-image: url(../images/footer_bana.png);
}

#footer_bana li.btn01 a {
  background-position: 0 0;
}

#footer_bana li.btn01 a:hover {
  background-position: 217px 0;
}

#footer_bana li.btn02 a {
  background-position: 0 164px;
}

#footer_bana li.btn02 a:hover {
  background-position: 217px 164px;
}

#footer_bana li.btn03 a {
  background-position: 0 109px;
}

#footer_bana li.btn03 a:hover {
  background-position: 217px 109px;
}

#footer_bana li.btn04 a {
  background-position: 0 54px;
}

#footer_bana li.btn04 a:hover {
  background-position: 217px 54px;
}

#footer_textlink {
  font-size: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 15px;
}

#footer_textlink ul {
  padding: 0 0 10px 0;
  text-align: center;
}

#footer_textlink ul:first-child {
  margin-top: 20px;
}

#footer_textlink li {
  display: inline-block;
  padding: 0 5px 0 5px;
  overflow: hidden;
  line-height: 2;
}

#footer_textlink li a {
  padding-left: 15px;
  background: url(../images/arrow_footer.png) no-repeat left center;
}

#footer_textlink li img {
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 5px;
}

#footer_textlink hr {
  max-width: 980px;
  border-top: 1px #c5c2c2 solid;
  border-bottom: 1px #fff solid;
  height: 0;
}

#footer_inner2 {
  padding: 20px 0 20px 0;
  text-align: center;
  font-size: 108%;
  border-top: 10px solid #eee;
  background: #eee;
}

#footer_inner2 li {
  display: inline;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #222;
}

#footer_inner2 li.last {
  display: inline;
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

#footer_inner2 li a {
  background: url(../images/arrow_news.png) no-repeat left center;
  padding-left: 20px;
}

#footer_inner3 {
  background: #505050;
  color: #fff;
  font-size: 86%;
  padding: 20px 0;
  max-width: 980px;
  margin: 0 auto;
}

#footer_inner3 img {
  width: auto;
}

#footer_inner3 img:last-child,
#copyright {
  display: none;
}

#page-top {
  display: none;
  width: 50px;
  height: 50px;
  background: rgba(80, 80, 80, 0.6);
  border-radius: 100px;
  position: fixed;
  bottom: 7%;
  right: 100px;
  z-index: 100;
  transition: all 0s;
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding-top: 5px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  #footer {
    border-top: 1px solid #cecece;
    margin-top: 0;
    padding-bottom: 62px;
    position: relative;
  }
  #footer_bg {
    background: none;
    height: auto;
  }
  #footer_bg dl {
    background: none;
    padding: 20px 10px;
    height: auto;
    overflow: visible;
    text-indent: 0;
    white-space: normal;
  }
  #footer_bg dd {
    margin: 0;
  }
  footer .inquiryBox {
    border-top: 1px solid #cecece;
  }
  footer .inquiry {
    padding: 20px 10px;
    text-align: center;
  }
  .inquiry_inner {
    background: #fff;
    margin-top: 15px;
    padding: 20px 10px;
  }
  .inquiry_tel {
    color: #e60000;
    font-weight: bold;
  }
  .inquiry_telnum {
    font-size: 32px;
    font-weight: bold;
    margin-top: 10px;
  }
  .inquiry_telnum a {
    color: #e60000 !important;
    text-decoration: none !important;
  }
  .inquiry_telnum a::before {
    content: "";
    display: inline-block;
    background: url(../images/icon_inquiry_tel.png) no-repeat 0 0;
    background-size: 24px;
    width: 24px;
    height: 24px;
    margin-right: 5px;
  }
  .inquiry_time {
    margin-top: 15px;
    line-height: 1.4;
  }
  .inquiry_time > span {
    font-weight: bold;
    display: block;
  }
  #footer_textlink {
    width: auto;
  }
  #footer_textlink li {
    display: block;
    overflow: visible;
    padding: 0;
  }
  #footer_inner2 li {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border-right: none !important;
  }
  #footer_textlink ul, #footer .contents_inner {
    background-color: #fff;
    margin: 0 !important;
    padding: 0 !important;
  }
  #footer_inner2 {
    padding: 0;
    border-top: none;
    background: none;
  }
  #footer_textlink li a, #footer_inner2 li a {
    background: none;
    color: #595857;
    border-bottom: 1px solid #eeeeee;
    display: block;
    font-size: 1.2rem;
    line-height: 1.7;
    padding: 11px 35px 11px 9px;
    position: relative;
    text-align: left;
    text-decoration: none;
  }
  #footer_textlink li a:after, #footer_inner2 li a:after {
    background-image: url(../images/bg_nav_fnavi_01.png);
    background-size: 6px 12px;
    content: "";
    width: 6px;
    height: 12px;
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -6px;
  }
  #footer_textlink li a[href$=".pdf"]:after, #footer_inner2 li a[href$=".pdf"]:after {
    background-image: url(../images/icon_footer_pdf.png);
    background-size: 28px 15px;
    width: 28px;
    height: 15px;
    right: 6px;
    margin-top: -8px;
  }
  span.pdf {
    background: none;
    min-height: 0;
    padding: 0;
  }
  #copyright {
    background-color: #fff;
    display: block;
    text-align: center;
    padding: 4px 0 5px;
    margin: 0;
  }
  #copyright img {
    width: 280px;
    vertical-align: baseline;
  }
  #footer_inner3 {
    border-bottom: 2px #E60000 solid;
    padding: 15px 5px 15px 15px;
  }
  #footer_inner3 img:last-child {
    display: block;
    width: 260px;
  }
  #pagetop_btn {
    background: #f0f0f0 url(../images/btn_scroll_top.png) no-repeat center center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 42px;
  }
  #pagetop_btn a {
    background: none;
    float: none;
    margin-top: 0;
    position: static;
    width: 100%;
    height: 42px;
  }
  #page-top {
    width: 40px;
    height: 40px;
    bottom: 3%;
    right: 25px;
    font-size: 1.6rem;
  }
  #footer_bana,
  #footer_textlink hr,
  #footer_textlink li span:not(.pdf),
  #footer_inner2 li span:not(.pdf),
  #footer_textlink li.spNone:not(.pdf),
  #footer_inner3 img:first-child {
    display: none;
  }
}
/* スマホ対応 */
/* ランドスケープ時(横向き表示時)の表示調整 */
@media only screen and (max-width: 823px) and (max-height: 414px) and (orientation: landscape) {
  #footer {
    border-top: 1px solid #cecece;
    margin-top: 0;
    padding-bottom: 42px;
    position: relative;
  }
  #footer_bg {
    background: none;
    height: auto;
  }
  #footer_bg dl {
    background: none;
    padding: 20px 10px;
    height: auto;
    overflow: visible;
    text-indent: 0;
    white-space: normal;
  }
  #footer_bg dd {
    margin: 0;
  }
  footer .inquiryBox {
    border-top: 1px solid #cecece;
  }
  footer .inquiry {
    padding: 20px 10px;
    text-align: center;
  }
  .inquiry_inner {
    background: #fff;
    margin-top: 15px;
    padding: 20px 10px;
  }
  .inquiry_tel {
    color: #e60000;
    font-weight: bold;
  }
  .inquiry_telnum {
    font-size: 32px;
    font-weight: bold;
    margin-top: 10px;
  }
  .inquiry_telnum a {
    color: #e60000 !important;
    text-decoration: none !important;
  }
  .inquiry_telnum a::before {
    content: "";
    display: inline-block;
    background: url(../images/icon_inquiry_tel.png) no-repeat 0 0;
    background-size: 24px;
    width: 24px;
    height: 24px;
    margin-right: 5px;
  }
  .inquiry_time {
    margin-top: 15px;
    line-height: 1.4 !important;
  }
  .inquiry_time > span {
    font-weight: bold;
    display: block;
  }
  #footer_textlink {
    width: auto;
  }
  #footer_textlink li {
    display: block;
    overflow: visible;
    padding: 0;
  }
  #footer_inner2 li {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border-right: none !important;
  }
  #footer_textlink ul, #footer .contents_inner {
    background-color: #fff;
    margin: 0 !important;
    padding: 0 !important;
  }
  #footer_inner2 {
    padding: 0;
    border-top: none;
    background: none;
  }
  #footer_textlink li a, #footer_inner2 li a {
    background: none;
    color: #595857;
    border-bottom: 1px solid #eeeeee;
    display: block;
    font-size: 1.2rem;
    line-height: 1.7;
    padding: 11px 35px 11px 9px;
    position: relative;
    text-align: left;
    text-decoration: none;
  }
  #footer_textlink li a:after, #footer_inner2 li a:after {
    background-image: url(../images/bg_nav_fnavi_01.png);
    background-size: 6px 12px;
    content: "";
    width: 6px;
    height: 12px;
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -6px;
  }
  #footer_textlink li a[href$=".pdf"]:after, #footer_inner2 li a[href$=".pdf"]:after {
    background-image: url(../images/icon_footer_pdf.png);
    background-size: 28px 15px;
    width: 28px;
    height: 15px;
    right: 6px;
    margin-top: -8px;
  }
  span.pdf {
    background: none;
    min-height: 0;
    padding: 0;
  }
  #copyright {
    background-color: #fff;
    display: block;
    text-align: center;
    padding: 4px 0 5px;
    margin: 0;
  }
  #copyright img {
    width: 280px;
    vertical-align: baseline;
  }
  #footer_inner3 {
    border-bottom: 2px #E60000 solid;
    padding: 15px 5px 15px 15px;
  }
  #footer_inner3 img:last-child {
    display: block;
    width: 260px;
  }
  #pagetop_btn {
    background: #f0f0f0 url(../images/btn_scroll_top.png) no-repeat center center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 42px;
  }
  #pagetop_btn a {
    background: none;
    float: none;
    margin-top: 0;
    position: static;
    width: 100%;
    height: 42px;
  }
  #page-top {
    width: 40px;
    height: 40px;
    bottom: 3%;
    right: 25px;
    font-size: 1.6rem;
  }
  #footer_bana,
  #footer_textlink hr,
  #footer_textlink li span:not(.pdf),
  #footer_inner2 li span:not(.pdf),
  #footer_textlink li.spNone:not(.pdf),
  #footer_inner3 img:first-child {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #pagetop_btn a {
    left: -10vw;
  }
  #footer_bana {
    max-width: 60%;
    display: flex;
    flex-wrap: wrap;
  }
  #footer_bana li {
    margin-top: 20px;
    margin-right: 0;
    flex: 1 1 auto;
  }
}
/* page_top */
@media (max-width:767px) {
  #page_top {
    background-image: url(../images/pagetop.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    margin: 0;
    position: fixed;
    right: 10px;
    bottom: calc(45px + 13vw);
    opacity: 1;
    z-index: 5;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    text-decoration: none;
  }
}
/* スマホ対応 */
/* ランドスケープ時(横向き表示時)の表示調整 */
@media only screen and (max-width: 823px) and (max-height: 414px) and (orientation: landscape) {
  p#page_top {
    background-image: url(../images/pagetop.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    margin: 0;
    position: fixed;
    right: 10px;
    bottom: calc(45px + 13vw);
    opacity: 1;
    z-index: 5;
  }
  p#page_top a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    text-decoration: none;
  }
}
@media (min-width:768px) {
  #page_top {
    background-image: url(../images/pagetop.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 0;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 70px;
    opacity: 1;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    text-decoration: none;
  }
}
/**/
.background-color-ffffff {
  background-color: #ffffff;
}
.background-color-f5f5f5 {
  background-color: #f5f5f5;
}
.text-color-ffffff {
  color: #ffffff;
}
.text-color-53548a {
  color: #53548a;
}
.text-color-b82618 {
  color: #b82618;
}
.text-center {
  text-align: center;
}
.text-decoration-underline {
  text-decoration: underline;
}
.flex-wrap-nowrap {
  flex-wrap: nowrap;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-flex-end {
  justify-content: flex-end;
}
.justify-content-space-between {
  justify-content: space-between;
}
.align-items-center {
  align-items: center;
}
.align-items-flex-end {
  align-items: flex-end;
}

@media (min-width: 768px) {
  .medium-display-flex {
    display: flex !important;
  }
  .medium-text-center {
    text-align: center;
  }
}

@media (min-width:768px) {
  .medium-row-gutter-40px{
    display: flex;
    margin-right: -20px;
    margin-left: -20px;
  }
  .medium-row-gutter-40px > .medium-col-6of12{
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .medium-row-gutter-40px > .medium-col-2of12{
    flex: 0 0 16.6666%;
    max-width: 16.6666%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .medium-row-gutter-40px > .medium-col-10of12{
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

html.ie .modaal-outer-wrapper{
  display: block;
}
html.ie .modaal-inner-wrapper{
  display: block;

}
@media (min-width: 768px) {
  .img-width-adjust {
    width: 70%;
  }
}

.side_btn.pc {
  position: fixed;
  bottom: 160px;
  right: 0;
  left: auto;
  display: flex;
  width: 50px;
  flex-wrap: wrap;
  opacity: 0;
  transition: 0.5s all linear;
  pointer-events: none;
}
.side_btn.pc.fadein {
  opacity: 1;
  pointer-events: auto;
}
.side_btn a {
  display: block;
}
.side_btn.sp {
  display: none;
}
#risk_return {
  height: auto;
  width: 60%;
  position: absolute;
  top: 70px;
  right: calc(4% + 2vw);
  text-align: right;
}
@media screen and (max-width:767px) {
  .side_btn.sp {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    transition: 0.5s all linear;
    pointer-events: none;
  }
  .side_btn.sp.destory {
    display: none;
  }
  .side_btn.sp.fadein {
    opacity: 1;
    pointer-events: auto;
  }
  .side_btn.sp .d-flex {
    background: rgba(0,0,0,1.0);
    padding: 30px 10px 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 0;
  }
  .side_btn.sp .d-flex a {
    width: calc(50% - 5px);
    margin: auto;
    text-align: center;
  }
  .side_btn.sp .side_close {
    position: absolute;
    top: 0px;
    right: 0;
    width: 25px;
    height: 25px;
    margin: 0;
  }
  .side_btn.pc {
    display: none!important;
  }
  #risk_return {
    font-size: calc(1vw + 9px);
    right: 3%;
  }
}
/* スマホ対応 */
/* ランドスケープ時(横向き表示時)の表示調整 */
@media only screen and (max-width: 823px) and (max-height: 414px) and (orientation: landscape) {
  .side_btn.sp {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    transition: 0.5s all linear;
    pointer-events: none;
  }
  .side_btn.sp.destory {
    display: none;
  }
  .side_btn.sp.fadein {
    opacity: 1;
    pointer-events: auto;
  }
  .side_btn.sp .d-flex {
    background: rgba(0,0,0,1.0);
    padding: 30px 10px 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 0;
  }
  .side_btn.sp .d-flex a {
    width: calc(50% - 5px);
    margin: auto;
    text-align: center;
  }
  .side_btn.sp .side_close {
    position: absolute;
    top: 0px;
    right: 0;
    width: 25px;
    height: 25px;
    margin: 0;
  }
  .side_btn.pc {
    display: none!important;
  }
  #risk_return {
    font-size: calc(1vw + 9px);
    right: 3%;
  }
}
/* chart */
.chart_box {
  width: auto;
  min-width: 240px;
  background: #FFF;
  padding: 0px 50px 1px;
  margin: 60px auto 20px auto;
  border: 1px solid #333;
}
.chart_ttl {
  margin: 0;
  padding: 0 2px;
  width: auto;
  display: inline-block;
  position: relative;
  background-color: #FFF;
  text-align: center;
  top: -15px;
}
.fund_box {
  margin-top: -10px;
  margin-bottom: -24px;
}
.set_date {
  display: inline-block;
  position: relative;
  height: 0px !important;
  right: -1%;
  bottom: 40px;
  font-size: 11px;
}
.base_date {
  display: inline-block;
  position: relative;
  bottom: 40px;
  font-size: 11px;
  width: 100px;
  height: 20px;
  float: right;
}
.chart_box .fund_box div  {
  height: 400px;
}
.highcharts-legend {
  display: none !important;
}
g.highcharts-axis path {
  display: none;
}
.tspan {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .set_date {
    right: calc(50% + -120px);
  }
}
@media screen and (max-width: 767px) {
  .chart_ttl {
    left: 50%;
    transform: translate(-50%);
    font-size: calc(3.2vw - 3px);
  }
  .chart_box {
    padding: 0px 1px 1px;
    margin: 60px auto 20px auto;
    border: 1px solid #333;
  }
  .fund_box {
    margin-top: -20px;
  }

}
@media screen and (max-width: 414px) {
  .chart_box .fund_box div  {
    height: 300px;
    width: 310px;
  }
  .chart_box {
    width: 300px;
  }
  .highcharts-container {
    left:-10px;
  }
  .highcharts-container > rect {
    display: none;
  }
}
/* スマホ対応 */
/* ランドスケープ時(横向き表示時)の表示調整 */
@media only screen and (max-width: 823px) and (max-height: 414px) and (orientation: landscape) {
  .chart_ttl {
    left: 50%;
    transform: translate(-50%);
    font-size: calc(3.2vw - 3px);
  }
  .chart_box {
    padding: 0px 1px 1px;
    margin: 60px auto 20px auto;
    border: 1px solid #333;
  }
  .fund_box {
    margin-top: -20px;
  }

}

.bunpai_image{
  width: 400px;
  margin-right: 15px;
}

.fund_type{
  text-align: center;
}

.note-square {
  font-size: 12px;
}

.note-square-fz-21{
  font-size: 21px;
}
