/* ir004特有のCSS設定はこちらに
#ir004をbodyに付与しているので、上書きしたいCSS要素に#ir001を設定してください。
*/

  @keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
  @keyframes fadeOutAnime{
  from {
    opacity: 1;
  }

  to {
    opacity: 0;

  }
}

/* ナビゲーションメニュー：モバイル */
@media screen and (max-width: 767px) {
  .l_nav {
    position: fixed;
    z-index: 10;
    inset: 0;
    background-color: #fff;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity:0;
    pointer-events: none;
  }
  
  .fadeNav .l_nav{
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    animation-name:fadeOutAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    animation-timing-function: ease;
  }
  
  .open .l_nav {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    animation-name:fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    animation-timing-function: ease;
    opacity:0;
    pointer-events: auto;
  }
  .open .l_nav > ul {
    overflow-y: scroll;
  }
  .open body {
    position: fixed;
    overflow: hidden;
  }
}

/*
 l_header
=====================================================================================*/
#ir004 .l_logo {
  background: #4889C5;
  max-width: 224px;
  /*max-height: 53px; ieよう*/
}
#ir004 .l_logo span {
  display: block;
  /* padding: 1vw 2.4vw; */
  width: 100%;
}
/*.l_logo {
  width: 93px;
}*/
@media screen and (max-width: 768px) {
  #ir004 .l_logo span {
    max-width: 24.8vw;
    margin: auto;
    padding: 2.1vw 3.7vw;
  }
}
@media screen and (max-width: 375px) {
  #ir004 .l_logo span {
    max-width: 24.8vw;
    margin: auto;
    padding: 2.55vw 3.7vw;
    padding: 2.1vw 3.7vw;/*ir004追加*/
    /*padding: 2.4vw 3.7vw;*/
  }
}
@media screen and (max-width: 374px) {
  #ir004 .l_logo span {
    padding: 3.4vw 3.7vw;
  }
}
@media screen and (min-width: 1440px) {
  #ir004 .l_logo span {
    width: 100%;
    /* padding: 1.2vw 2vw; */
    /*padding: 9px 14px 8px 15px;*/
  }
}
@media (min-width: 415px) and (max-width: 800px) {/*目視の調整*/
  #ir004 .l_logo span {
    width: 100%;
    margin: auto;
    padding: 1.5vw 2vw;
  }
}
@media (min-width: 1001px) and (max-width: 1440px) {/*目視の調整*/
  #ir004 .l_logo span {
  width: 97.5%
  }
}


#ir004 .l_nav ul li a:hover {
  color: #4889C5;
}

#ir004 .l_nav li.has-child ul {
  background: #4889C5;
}
#ir004 .l_nav li.has-child ul li a {
  color: #fff; /* 必要 */
}
@media screen and (max-width: 767px) {
  #ir004 .l_nav ul li a:hover {
    color: #4889C5;
  }
}

/* hamburger */
#ir004 .openbtn.active span {
  background: #4889C5;
}
#ir004 .l_headerOn .l_nav ul li a {
  color: #4889C5;
}
@media screen and (max-width: 767px) {
  #ir004 .l_nav ul li a {
    color: #4889C5;
  }
}


/* header　動作 */
#ir004 .l_headerOn .l_nav ul li a {
  color: #4889C5;
}

/*
 l_hero
=====================================================================================*/
#ir004 .l_hero {
  height: 640px;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-color: #4889C5;
  position: relative;
  width: 100%;
  overflow: hidden;
}

#ir004 .l_heroBg{
  background-image: url(/images/ir004/hero-image.png);
  background-position: left;
  background-size: cover;
  width: 100%;
  margin-right: -14.3vw;
  height: 560px;
  position: absolute;
  top: 0;
  right: 0;
}

/*@media screen and (max-width: 768px) {
  #ir004 .l_hero {
    background-image: url(/images/ir004/hero-image_tab.png);
    background-position: center;
    background-size: cover;
    background-color: #4889C5;
  }
}*/
@media screen and (max-width: 768px) {
  #ir004 .l_hero {
  background-image: none;
    background-position: center;
    background-size: cover;
    background-color: #4889C5;
  }  
  #ir004 .l_heroBg{
    background-image: url(/images/ir004/hero-image_sp.png);
    background-position: center;
    background-size: cover;
    margin-right: 0;
    bottom: 0;
    height: 520px;
  }  
}

/* main popout */
.popout {
  overflow: hidden; 
}

.popout .pop_inner {
  display: inline;
  position: relative; /* bottomを指定するために必要 */
  animation: popanime .9s ease-out forwards; /* 最後ゆっくりになるアニメを1秒かけて1回だけやったあと固定 */
}

@keyframes popanime {
  from {
    bottom: -50px; /* 親要素外に配置させて見えなくしておく */
  }
  to {
    bottom: 0;
  }
}
.el_title_popout {
  overflow: hidden; 
}
/* 2行対策 */
.el_title_popout .pop_inner {
  display: inline;
  position: relative; /* bottomを指定するために必要 */
  animation: popanime .9s ease-out forwards; /* 最後ゆっくりになるアニメを1秒かけて1回だけやったあと固定 */
}
@keyframes popanimeTtl {
  from {
    bottom: -100px; /* 親要素外に配置させて見えなくしておく */
  }
  to {
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  /* 2行対策 */
  .el_title_popout .pop_inner {
    /*animation: popanime .9s ease-out forwards;*/
      /*!!popanimeTtlにしていた*/
  }
}


/* main */
.l_main {
    /* width: min(92% ,1120px); */
    width: 88.88%;
    max-width: 1280px;
    height: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-flow: wrap;
    margin: auto;
    -webkit-box-align: center;
  	-ms-flex-align: center;
    align-items: center;
    position: relative;
}
#ir004 .l_titleArea {  

}
#ir004 .l_titleArea_ir004{
  color: #fff;
  width: 100%;
}
#ir004 .l_titleArea_ir004 .popout,#ir004 .l_titleArea_ir004 .el_title_popout{/*アニメーションによるmargin調整*/
  margin-bottom: 24px;
}
#ir004 .l_titleArea_ir004 .popout.el_lead_popout{/*アニメーションによるmargin調整*/
  margin-bottom: 14px;
}
#ir004 .l_titleArea_ir004 .el_whtTtl{
  border: 1px solid currentColor;
  display: inline-block;
  font-size:clamp(16px, 4.2vw, 20px);
  min-height: 0vw;
  font-weight: 700;
  /*margin-bottom: 24px;*/
  padding: 5px 8px;
  line-height: 1;
  letter-spacing: 2px;
}
#ir004 .l_titleArea_ir004 .el_lead{
  font-size:clamp(20px, 5.3vw, 28px);
  min-height: 0vw;
  font-weight: 700;
  /*margin-bottom: 24px;*/
  line-height: 1;
  letter-spacing: 2px;
}
#ir004 .l_titleArea_ir004 .el_title{
  /*margin-bottom: 24px;*/
}
#ir004 .l_titleArea_ir004 .el_title img{
  width: max(346px);
  display: inline-block;
}
#ir004 .l_titleArea_ir004 .el_title span{
  display: inline-block;
  font-size:clamp(40px, 10.6vw, 58px);
  min-height: 0vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  margin-left: 10px;
  transform: translateY(3px);
}
#ir004 .l_titleArea_ir004 .el_place{
  font-size:clamp(20px, 5.3vw, 28px);
  min-height: 0vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
}
#ir004 .l_titleArea_ir004 .el_place span i{
  display: inline-block;
  background: #fff;
  color: #414141;
  font-size:clamp(16px, 4.2vw, 20px);
  min-height: 0vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  font-style: normal;
  padding: 2.5px 2.5px 2.5px 6px;
  margin-left: 12px;
  transform: translateY(-3px);
}

#ir004 .l_titleArea_ir004 .l_titleArea_lead{
  font-size:clamp(14px, 3.7vw, 16px);
  min-height: 0vw;
  font-weight: 400;
  letter-spacing: 2.3px;
  margin-left: auto;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 33px;

}

@media screen and (max-width: 768px) {
  #ir004 .l_main {
      /* width: min(92% ,1120px); */
      width: 78.66%;
      max-width: 1280px;
      height: 640px;
  }
  #ir004 .l_titleArea_ir004 .popout,#ir004 .l_titleArea_ir004 .el_title_popout{/*アニメーションによるmargin調整*/
    margin-bottom: 16px;
  }
  #ir004 .l_titleArea_ir004 .popout.el_title_popout{/*アニメーションによるmargin調整*/
    margin-bottom: 8px;
    margin-bottom: 0;/*ir004追加*/
  }
  #ir004 .l_titleArea_ir004 .el_whtTtl{
    /*margin-bottom: 16px;*/
    padding: 4px 8px 4px;
  }
  #ir004 .l_titleArea_ir004 .el_lead{
    /*margin-bottom: 16px;*/
  }
  #ir004 .l_titleArea_ir004 .el_title{
    /*margin-bottom: 8px;*/
  }
  #ir004 .l_titleArea_ir004 .el_title img{
    width: max(268px);
    margin-bottom: 10px;
  }
  #ir004 .l_titleArea_ir004 .el_title span{
    letter-spacing: 2px;
    margin-left: -6px;
    transform: translateY(0);
  }
  #ir004 .l_titleArea_ir004 .el_place{
    letter-spacing: 2.5px;
    margin-top: -5px;/*ir004追加*/
    display: flex;/*ir004追加*/
    align-items: baseline;/*ir004追加*/
  }
  #ir004 .l_titleArea_ir004 .el_place span{
    display: inline-block;
    margin-left: 12px;
  }/*ir004追加*/

  #ir004 .l_titleArea_ir004 .el_place span i{
    margin-top: 18px;
    padding: 2px 3px 2px 6px;
    margin-left: 0;
    transform: translateY(-3px);
  }
  #ir004 .l_titleArea_ir004 .l_titleArea_lead{
    bottom: 20px;
    bottom: 30px;/*ir004追加*/
    letter-spacing: 0.3px;
    line-height: 1.8;
  }
  
  #ir004 .l_titleArea_inner{
    padding-top: 18px;
  }/*ir004追加*/
}


@media screen and (max-width: 374px) {
  #ir004 .l_main {
      /* width: min(92% ,1120px); */
      width: 88.88%;
  }
  #ir004 .l_titleArea_ir004 .el_place{
    letter-spacing: 2px;
    font-size: 19px;
  }
}

/*#ir004 .l_titleArea_inner{
  text-align: left;
  -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;

  transform: translateX(-31.5%);

}
@media screen and (min-width: 1200px) {
  #ir004 .l_titleArea_inner{
    margin-top: 80px;
  }
}

@media (min-width: 951px) and (max-width: 1050px) {
  #ir004 .l_titleArea_inner{
    transform: translateX(-25.5%);
  }
}
@media (min-width: 800px) and (max-width: 950px) {
  #ir004 .l_titleArea_inner{
    transform: translateX(-22.5%);
  }
}
@media (min-width: 768px) and (max-width: 799px) {
  #ir004 .l_titleArea_inner{
    transform: translateX(-20.5%);
  }
}


#ir004 .l_titleArea .l_titleArea_inner p.el_whtTtl{
  margin-left: 25px;
}

#ir004 .l_titleArea .l_titleArea_inner p.el_whtTtl span {
  background: #fff;

  padding: 8px 3px;
  color: #000;
  font-family: source-han-serif-japanese, serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1148em;
}
#ir004 .l_titleArea .l_titleArea_inner p.el_whtTtl span {
  font-size: 18px;
}
@media screen and (min-width: 375px) {
  #ir004 .l_titleArea .l_titleArea_inner p.el_whtTtl span {
    font-size: calc(0.845vw + 14.831px);
  }
}
@media screen and (min-width: 1440px) {
  #ir004 .l_titleArea .l_titleArea_inner p.el_whtTtl span {
    font-size: 27px;
  }
}

#ir004 .l_titleArea .l_titleArea_inner p.el_clrTtl span {
  background: #4889C5;
  padding: 8px 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #ir004 .l_titleArea .l_titleArea_inner p.el_clrTtl span {
    font-weight: 600;
  }
}
#ir004 .l_titleArea .l_titleArea_inner p.el_clrTtl span {
  font-size: 21px;
}
@media screen and (min-width: 375px) {
  #ir004 .l_titleArea .l_titleArea_inner p.el_clrTtl span {
    font-size: calc(0.469vw + 19.239px);
  }
}
@media screen and (min-width: 1440px) {
  #ir004 .l_titleArea .l_titleArea_inner p.el_clrTtl span {
    font-size: 26px;
  }
}

#ir004 .l_titleArea .el_title {
  text-align: left;
  font-family: source-han-serif-japanese, serif;
  font-weight: 700;
  font-style: normal;
}
#ir004 .l_titleArea .el_title {
  font-size: 34px;
}
@media screen and (min-width: 375px) {
  #ir004 .l_titleArea .el_title {
    font-size: calc(0.751vw + 31.183px);
  }
}
@media screen and (min-width: 1440px) {
  #ir004 .l_titleArea .el_title {
    font-size: 42px;
  }
}

#ir004 .l_titleArea p span {
  background: #4889C5;
}

#ir004 .l_titleArea .el_title i {
  margin-left: 0;
  margin-top: -8px;
  margin-bottom: 8px;
  padding: 8px 0.05em 6px;
  background: #4889C5;
  transform: translateY(0);
}
#ir004 .l_titleArea .el_title strong {
  letter-spacing: -0.2em;
  margin-top: -0.2em;
}


#ir004 .l_titleArea .el_title i {
  font-size: 16px;
}
@media screen and (min-width: 375px) {
  #ir004 .l_titleArea .el_title i {
    font-size: calc(0.469vw + 14.239px);
  }
}
@media screen and (min-width: 1440px) {
  #ir004 .l_titleArea .el_title i {
    font-size: 21px;

  }
}
#ir004 .l_titleArea .el_title span {
  padding: 8px 0.2em;
  display: inline-block;
  position: relative;
  z-index: 0;
}
#ir004 .l_titleArea .el_title span:nth-of-type(2) {
  padding-right: inherit;
}
#ir004 .l_titleArea .el_title span:nth-of-type(3) {
  padding-left: inherit;
}
#ir004 .l_titleArea .el_title span:nth-of-type(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.16em;
  width: 82%;
  height: 100%;
  z-index: -1;
}
#ir004 .l_titleArea .el_title span:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.16em;
  width: 92%;
  height: 100%;
  z-index: -1;
}
#ir004 .l_titleArea p {
  margin: 0 0;
}
#ir004 .l_titleArea_lead {
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 80px;
}
#ir004 .l_titleArea_lead p {
  padding: 1.1em;
  letter-spacing: 0.3px;
  line-height: 1.6;
}
#ir004 .l_titleArea_lead::before {
  content: "";
  position: absolute;
  background: rgba(0,0,0,0.6);
  left: -30vw;
  width: calc(100% + 30vw);
  height: 100%;
  z-index: -1;
}
#ir004 .l_titleArea_lead p span {
  background: none;
  padding-right: 1.3em;
}
#ir004 .l_titleArea_lead p {
  font-size: 14px;
}
@media (min-width: 768px) and (max-width: 950px) {
  #ir004 .l_titleArea_lead {
    left: -7vw;
  }
}
@media screen and (min-width: 375px) {
  #ir004 .l_titleArea_lead p {
    font-size: calc(0.376vw + 12.592px);
  }
}
@media screen and (min-width: 1440px) {
  #ir004 .l_titleArea_lead p {
    font-size: 18px;
  }
}


#ir004 .el_scroll {
  display: none;
}


@media screen and (max-width: 768px) {
  #ir004 .l_titleArea .el_title span:nth-of-type(2) {
    padding: 8px 0;
  }
  #ir004 .el_scroll {
    display: block;
    position: absolute;
    transform: rotateZ(180deg);
    writing-mode: vertical-rl;
    bottom:48px;


    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.2em;
    color: #fff;
    
    animation: arrowmove 3s ease-in-out infinite; 
    perspective: 1000;
  }
  #ir004 .l_main .el_scroll {
    right: -10px;
  }
  #ir004 .l_topWrap01 .el_scroll {
    left: 15px;
  }
  #ir004 .l_topWrap02 .el_scroll {
    right: 15px;
  }
  
  #ir004 .el_scroll::before {
    font-family: "Font Awesome 5 Free";
    content: "\f077";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: -20px;
  }
  #ir004 .el_scroll::after {
    font-family: "Font Awesome 5 Free";
    content: "\f077";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: -30px;
  }
  
}

@keyframes arrowmove{
      0%{bottom:10%;}
      50%{bottom:12%;}
     100%{bottom:10%;}
 }*/



/*
 l_topWrap
=====================================================================================*/
#ir004 .l_topWrap {
  background-color: #4889C5;
  overflow: hidden;
  position: relative;
}


#ir004 .l_nav{
}

@media screen and (min-width: 768px) {
  #ir004 .l_nav {
    content: "";
    width: 100%;
    background: rgba(0,0,0,0.2);
    transition-duration: 0.2s;
    transition-delay: .2s;
  }
  #ir004 .l_nav:hover{
    background: rgba(0,0,0,0);
    transition-delay: 0s;
  }
}

/*
 underlayer_wrapper
=====================================================================================*/
@media screen and (min-width: 768px) {
#ir004 .underlayer_wrapper .l_nav{
  background: rgba(0,0,0,0);
}
}

#ir004 .underlayer_wrapper .l_nav ul li a {
  color: #4889C5;
}

/* hamburger */
#ir004 .underlayer_wrapper .openbtn span {
  background: #4889C5;
}
#ir004 .l_cntTitle .el_title span {
  padding: 8px 24px 8px 0;
}
#ir004 .l_cntTitle .el_title{/*今回*/
  font-weight: 500;
  color: #fff;
}
#ir004 .l_cntTitle .el_title span::before{/*今回*/
  left: -20em;
  width: calc(100% + 20em);
  background: none;
}

/* l_cntsubTitle */
#ir004 .l_cntsubTitle {
  background: #D6EBFF;
  color: #000;
}
#ir004 .l_cntsubTitle .el_title {
  color: #000;
}
#ir004 .l_pageContents a {
  color: #4889C5;
  text-decoration: underline;/*ir001,ir003との違い*/
}
#ir004 .l_pageContents a:hover {
  text-decoration: none;/*ir001,ir003との違い*/
}

/* l_newsdetail */
#ir004 .l_newsdetail .l_returnLink a{
  color: #4889C5;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#fff),
      to(#fff)
    )
    0 100%/0 1px no-repeat;
  background: -o-linear-gradient(#4889C5, #4889C5) 0 100%/0 1px no-repeat;
  background: linear-gradient(#4889C5, #4889C5) 0 100%/0 1px no-repeat;
}

/* l_pageContents table */ /*今回追加*/
.l_pageContents table th {
  background: #eee;
  vertical-align: middle;
}
#ir004 .l_nav li a.current::before {
  height: 3px !important;
}
#ir004 .l_nav li a:hover::before,
#ir004 .l_nav li a:active::before {
  height: 3px !important;
}


/*==768px以下の形状*/
@media screen and (max-width: 767px) {
  #ir004 .l_nav li a.current::before {
    height: 0 !important;
  }
  
  #ir004 .l_nav li a.current::before {
    height: 0px !important;
  }
  #ir004 .l_nav li a:hover::before,
  #ir004 .l_nav li a:active::before {
    height: 0px !important;
  }

}

/*
 各カテゴリーのメイン画像
=====================================================================================*/
#ir004 .ctg_fund_info {
}
#ir004 .l_mainImg.ctg_fund_info {
  height: 240px;
  background-image: url(/images/ir004/fund_info/main_pc.png);
  background-position: center;
  background-size: cover;
  background-color: #4889C5;
}

@media screen and (max-width: 768px) {
  #ir004 .l_mainImg.ctg_fund_info {
  background-image: url(/images/ir004/fund_info/main_sp.png);
    background-position: center;
    background-size: cover;
    background-color: #4889C5;
  }
}
@media screen and (max-width: 375px) {
  #ir004 .l_mainImg.ctg_fund_info {
    background-image: url(/images/ir004/fund_info/main_sp.png);
    background-position: center;
    background-size: cover;
    background-color: #4889C5;
  }
}
#ir004 .ctg_fund_features {
}
#ir004 .l_mainImg.ctg_fund_features {
  height: 240px;
  background-image: url(/images/ir004/fund_features/main_pc.png);
  background-position: center;
  background-size: cover;
  background-color: #4889C5;
}

@media screen and (max-width: 768px) {
  #ir004 .l_mainImg.ctg_fund_features {
  background-image: url(/images/ir004/fund_features/main_sp.png);
    background-position: center;
    background-size: cover;
    background-color: #4889C5;
  }
}
@media screen and (max-width: 375px) {
  #ir004 .l_mainImg.ctg_fund_features {
    background-image: url(/images/ir004/fund_features/main_sp.png);
    background-position: center;
    background-size: cover;
    background-color: #4889C5;
  }
}
.ctg_fund_ir {
}
#ir004 .l_mainImg.ctg_fund_ir {
  height: 240px;
  background-image: url(/images/ir004/fund_ir/main_pc.png);
  background-position: center;
  background-size: cover;
  background-color: #4889C5;
}

@media screen and (max-width: 768px) {
  #ir004 .l_mainImg.ctg_fund_ir {
  background-image: url(/images/ir004/fund_ir/main_sp.png);
    background-position: center;
    background-size: cover;
    background-color: #4889C5;
  }
}
@media screen and (max-width: 375px) {
  #ir004 .l_mainImg.ctg_fund_ir {
    background-image: url(/images/ir004/fund_ir/main_sp.png);
    background-position: center;
    background-size: cover;
    background-color: #4889C5;
  }
}
#ir004 .ctg_other {
}

.l_mainImg.ctg_other {
  height: 240px;
  background-image: url(/images/ir004/other/main_pc.png);
  background-position: center;
  background-size: cover;
  background-color: #4889C5;
}

@media screen and (max-width: 768px) {
  .l_mainImg.ctg_other {
    background-image: url(/images/ir004/other/main_sp.png);
    background-position: center;
    background-size: cover;
    background-color: #4889C5;
  }
}
@media screen and (max-width: 375px) {
  .l_mainImg.ctg_other {
    background-image: url(/images/ir004/other/main_sp.png);
    background-position: center;
    background-size: cover;
    background-color: #4889C5;
  }
}



/*
 fund_info
=====================================================================================*/
/*#ir004 .slider {
  max-width: 1120px;
  width: 100% !important;
}
#ir004 .slider img {
  max-width: 1120px;
  width: 100% !important;
}
#ir004 .slick-track {
  max-width: 1120px !important;
  width: 100% !important;
}

#ir004 .slider {
  max-width: 1120px;
  width: 100% !important;
}
#ir004 .slick_thumb .slick-track {
  margin-left: auto;
}
#ir004 .slick_thumb .slick-track {
  margin-left: auto !important;
}
#ir004 .slick_thumb .slick-track li:first-child{
  margin-left: 20%;
}
@media screen and (max-width: 767px) {
  #ir004 .slick_thumb .slick-track li:first-child{
    margin-left: 0;
  }
}*/
#ir004 .slider ul.slick_thumb li{
  margin-right: 16px;
}
#ir004 .slick_thumb .slick-track {
  margin-left: auto !important;
}
#ir004 .slick_thumb .slick-track li:first-child{
  margin-left: 0;
}
#ir004 .l_tableInner__full{
  max-width: 100%;
}
#ir004 .l_pageContents .l_tableInner__full table{
  max-width: 100%;
  width: 100%;
}

#ir004 .l_dltbl{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#ir004 .l_dltbl dl{
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 4px solid #fff;
}
#ir004 .l_dltbl dt,#ir004 .l_dltbl dd{
  padding: 17px 24px;
  font-size:clamp(12px, 2vw, 16px);
  min-height: 0vw;
  font-weight: 500;
  vertical-align: middle;
  border-bottom: 4px solid #fff;
  word-break: break-all;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#ir004 .l_dltbl dt{
  width: 17.8vw;
  min-width: 200px;
  background: #eee;
  vertical-align: middle;
  border-right: 2px solid #fff;
}
#ir004 .l_dltbl dd{
  width: 100%;
  background: #F5F5F5;
}
#ir004 .l_dltbl .l_dltbl_full{
  width: 100%;
}

#ir004 .l_dltbl .l_dltbl_full dt{
  width: 17.8vw;
  min-width: 200px;
}

@media screen and (min-width: 1280px) {
  #ir004 .l_dltbl dt{
    width: 200px;
  }
  #ir004 .l_dltbl .l_dltbl_full dt{
    width: 200px;
  }
}
@media screen and (max-width: 800px) {
  #ir004 .l_tableInner__full{
    max-width: 100%;
  }
  #ir004 .l_dltbl{
    flex-direction: column;
  }
  #ir004 .l_dltbl dl{
    width: 100%;
  }
  #ir004 .l_dltbl dt,#ir004 .l_dltbl dd{
    padding: 12px 16px;
  }
  #ir004 .l_dltbl dt{

    flex: 1;
    min-width: auto;
  }
  #ir004 .l_dltbl dd{
    flex: 2;
    min-width: auto;
  }
  #ir004 .l_dltbl .l_dltbl_full dt{
    flex: 1;
    min-width: auto;
  }

}
@media screen and (max-width: 768px) {
  #ir004 .slider ul.slick_thumb li{
    margin-right: 12px;
  }
#ir004 .slick_thumb .slick-track li:first-child{
    margin-left: 0;
  }
}


/*
 fund_info alterna_criteria
=====================================================================================*/
#ir004 .l_alterna_logo{
  width: min(100%, 762px);
  margin: auto;
}
#ir004 .l_alterna_map{
  width: min(100%, 937px);
  margin: auto;
}
#ir004 .l_alternaTable{
  margin-bottom: 40px;/*tableがふたつ並ぶのでmargin調整*/
}
#ir004 .l_alternaTable .el_hd th{
  background: #000;
  color: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  border-right: 2px solid #fff;
}

#ir004 .l_alternaTable .el_area th,#ir004 .l_alternaTable .el_area td{
  background: none;
  color: #222;
  border-right: none;
}

#ir004 .l_pageContents .l_alternaTable table tr {
  border-bottom: 2px solid #eee;
}
#ir004 .l_pageContents .l_alternaTable table th{
  width: auto;
}
#ir004 .l_pageContents .l_alternaTable table th:nth-of-type(1){
  width: 45%;
}
#ir004 .l_alternaTable .el_area th{
  line-height: 1.4;
  position: relative;
  padding: 13px 16px 13px 24px;
}
#ir004 .l_alternaTable .el_area th::before{
  content: "";
  position: absolute;
  top: 0.63vw; 
  left: 0;
  width: 100%; 
  height: calc(100% - 1.26vw);
  display: block;
  border-left: 4px solid currentColor;
}
#ir004 .l_alternaTable .el_area th span{
  color: #222;
  font-size: 12px;
}
#ir004 .l_alternaTable .el_area.el_blue th{
  color: #33519E;
}
#ir004 .l_alternaTable .el_area.el_yellow th{
  color: #D3C43D;
}
#ir004 .l_alternaTable .el_area.el_gray th{
  color: #aaa;
}


#ir004 .el_attention{
  font-size: 12px;
  text-indent: -3em;
  margin-left: 3em;
  
  margin-top: 16px;
  margin-bottom: 0;
}


/*
 fund_info property_description tab追加=====================================================================================*/
/*タブ切り替え全体のスタイル*/
.tabs {
  width: 100%;
}

/*タブのスタイル*/
.tab_item {
  width: calc((100% / 2) - 28px);/*ir004は2つになったので変更*/
  margin-right: 41px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 17px 0;
  font-size: clamp(14px, 3.7vw ,20px);
  min-height: 0vw;
  letter-spacing: 0.3px;
  text-align: center;
  background: #fff;
  color: #4889C5;
  border: 1px solid currentColor;
  display: block;
  float: left;
  font-weight: 700;
  transition: all 0.2s ease;
}
.tab_item:nth-of-type(2){/*ir004は2つになったので変更*/
  margin-right: 0;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  /*display: none;*/
  opacity: 0;
  height: 0;
  
  padding: 0;
  clear: both;
  overflow: hidden;

}


/*選択されているタブのコンテンツのみを表示*/
#ginza:checked ~ #ginza_content,
#daikanyama:checked ~ #daikanyama_content{
  /*display: block;*/
  opacity: 1;
  height: auto;
  width: 100%;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #4889C5;
  color: #fff;
  border: 1px solid #4889C5;
}

@media screen and (max-width: 768px) {
  .tab_item {
    width: calc((100% / 2) - 15px);/*ir004は2つになったので変更*/
    margin-right: 22px;
    padding: 4vw 0;
  }
  /*.tab_item:nth-of-type(1) {
    padding: 2vw 0;
    line-height: 1.4;
  }*//*２行用*/
}
@media screen and (max-width: 450px) {
  /*.tab_item:nth-of-type(1) {
    padding: 1.8vw 0;
  }*//*２行用*/
}
@media screen and (max-width: 320px) {
  /*.tab_item:nth-of-type(1) {
    padding: 1.6vw 0;
  }*//*２行用*/
}

/*
 fund_ir common
=====================================================================================*/
#ir004 .l_fundIrList dt {
  background: #4889C5;
}
#ir004 .l_fundIrList dd {
  background: #F4F4F4;
}

/*
 fund_ir ir_library
=====================================================================================*/
#ir004 .el_pdfArea dt{
  background: #4889C5;
}
#ir004 .el_pdfArea dd{
  background: #F4F4F4;
}

/*
 l_topNewsArea
=====================================================================================*/
#ir004 .l_newslist .el_category {
  background: #4889C5;
}
#ir004 .l_pageContents .l_newslist a {
  color: #000;
  text-decoration: none;
}
#ir004 .l_pageContents .l_newslist a:hover {
  text-decoration: none;
}


/*
 l_footer
=====================================================================================*/

#ir004 .l_footer {
  background: #4889C5;
}
#ir004 .el_footerTitle span {
  color: #414141;
  padding: 2px 2px 2px 4px;
}
#ir004 .el_footerTitle i.pc {
    display: inline;
}
@media screen and (max-width: 768px) {
  #ir004 .el_footerTitle span {
    padding: 2px 2px 1px 4px;
  }
}

/*
 underlayer_wrapper
=====================================================================================*/
#ir004 .l_cntsubTitle .el_date {
  color: #000;
}


/*
 l_topWrap
=====================================================================================*/
#ir004 .l_topWrap {
  height: 640px;
  background-color: #4889C5;
  /*background-position: center;
	background-size: cover;
  background-attachment: fixed;*/
}
#ir004 .l_topWrap01 {
  background-image: none;
  background-color: #4889C5;
  /*background-position: center;
  background-size: cover;*/
  z-index: -1;
}
#ir004 .l_topWrap02 {
  background-image: none;
  background-position: center;
  background-size: cover;
  background-color: #4889C5;
  position: relative;
}
#ir004 .l_topWrap02Bg {
  background-image: url(/images/ir004/top-image02.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 640px;
  position: absolute;
  top: 0;
  right: 0;
}
#ir004 .l_topWrap03 {
  background-image: none;
  background-position: center;
  background-size: cover;
  background-color: #4889C5;
  position: relative;
}
#ir004 .l_topWrap03Bg {
  background-image: url(/images/ir004/top-image03.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 480px;
  position: absolute;
  top: 0;
  right: 0;
}
#ir004 .l_topWrap.l_topWrap03 {
  height: 480px;
}

@media screen and (max-width: 768px) {
  #ir004 .l_topWrap01 {
    background-image: none;
    /*background-position: center;
    background-size: cover;*/
    margin-top: -1px;/*隙間調整*/
  }
  #ir004 .l_topWrap02 {
    background-image: none;
    background-position: center;
    background-size: cover;
    margin-top: -1px;/*隙間調整*/
  }
  #ir004 .l_topWrap02Bg {
    background-image: url(/images/ir004/top-image02_sp.png);
  }
  #ir004 .l_topWrap03 {
    background-image: none;
    background-position: center;
    background-size: cover;
    margin-top: -1px;/*隙間調整*/
  }
  #ir004 .l_topWrap03Bg {
    background-image: url(/images/ir004/top-image03_sp.png);
  }
}
@media screen and (max-width: 375px) {
  #ir004 .l_topWrap01 {
    background-image: none;
   /* background-position: center;
    background-size: cover;*/
  }
  #ir004 .l_topWrap02 {
    background-image: none;
   /* background-position: center;
    background-size: cover;*/
  }
  #ir004 .l_topWrap03 {
    background-image: none;
   /* background-position: center;
    background-size: cover;*/
  }
}


/*
 l_hero
=====================================================================================*/
/* l_topContainer */
#ir004 .top_wrapper .l_logo {
  opacity: 1;
  background: none;
}
#ir004 .top_wrapper .l_header .l_logo img {
  position: relative;
  z-index: 100;
  opacity: 1;
}

/* header　動作 */
#ir004 .top_wrapper .l_header .l_logo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #4889C5;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  /*transition-delay: 0.3s;*/
  transition-delay: 0.15s;
}
#ir004 .top_wrapper .l_headerOn.l_header .l_logo:before {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;

  /*animation-name: fadeNavIn;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  background: #fff;*/
}
@media screen and (max-width: 768px) {
  #ir004 .top_wrapper .l_header{
    background: rgba(38,59,46,0.15);
  }
}

#ir004 .l_topContainer{
  position: relative;
  
  width: 78.66%;
  max-width: 1120px;/*ir004で追加*/
}
#ir004 .l_topWrap01 .l_topContainer{
  width: 100%;
  max-width: 100%;
  /*max-width: 1280px;*/
}
@media screen and (min-width: 1441px) {
  #ir004 .l_topWrap01 .l_topContainer{
    width: 88.8888%;
    min-width: 1360px;
    max-width: 1360px;
  }
}

#ir004 .l_subTitleArea {
  display: inline-block;
  
  justify-items: left;
  justify-content: center;
  text-align: left;

  height: auto;

  position: absolute;
  right: 0;
  bottom: 0;
  
  z-index: 2;/*アニメーションによる順番*/
}
/*#ir004 .l_subTitleArea::before {//今回使わない
  content: "";
  position: absolute;
  bottom: 0;
  right: -30vw;
  width: calc(100% + 30vw);
  height: 100%;

  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}*/
#ir004 .l_subTitleArea.reverse {
  justify-items: left;
  justify-content: center;
  text-align: left;
  
  position: absolute;
  left: 0;
  bottom: 40px;
  z-index: 0;

}
#ir004 .l_subTitleArea.reverse::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -35vw;
  width: calc(400px + 35vw);
  height: 100%;

  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}

#ir004 .l_subTitleArea .el_title {
  margin-bottom: 0.6em;
  padding: 1.4em 1.5em 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
}
#ir004 .l_subTitleArea.reverse .el_title {
  padding: 1.4em 1.5em 0 0;
}

#ir004 .l_subTitleArea p {
  padding: 0;
  font-weight: 400;
  line-height: 1.8;
  font-size:clamp(14px, 3.7vw, 16px);
}
.l_subTitleArea p:last-of-type {
    margin-bottom: 2.2em;
}
#ir004 .l_subTitleArea.reverse p {
  padding: 0 2.6em 0 0;
}
#ir004 .l_subTitleArea.reverse p {
  text-align: left;
}
#ir004 .l_subTitleArea.reverse p:last-of-type {
  margin-bottom: 1.8em;
}

@media screen and (max-width: 768px) {
  .l_topWrap01 .l_topContainer{
    margin-right: 0;
  }
  
  .open #ir004 .top_wrapper .l_logo{/*TOP logo 透過用*/
    background: #4889C5;
    
  }
  #ir004 .l_topContainer{
    width: 100%;
    max-width: 100%;/*ir004で追加*/
  }
  #ir004 .l_subTitleArea {
    right: auto;
    left: 10.6vw;
    bottom: 0;
  }

  #ir004 .l_subTitleArea .el_title {
    margin-bottom: 2.6vw;
    padding: 0;
    font-size: clamp(22px, 2.3vw, 30px);
    font-weight: 700;
    min-height: 0vw;
  }
  #ir004 .l_subTitleArea p {
    padding: 0 0 0 0;
  }
  #ir004 .l_subTitleArea p:last-of-type {
      margin-bottom: 1.1em;
  }
  #ir004 .l_subTitleArea.reverse{
    margin-left: 10.6vw;
  }
  #ir004 .l_subTitleArea.reverse p {
    padding: 0 4.6em 0 0;
  }
  #ir004 .l_subTitleArea.reverse p:last-of-type {
    margin-bottom: 1.1em;
  }
  #ir004 .l_subTitleArea::before {
    right: 0vw;
    width: calc(100% + 0vw);
  }
  #ir004 .l_subTitleArea.reverse::before {
    left: -10.6vw;
    width: calc(100% + 10.6vw);
  }
}

@media  (min-width: 375px) and (max-width: 413px) {
  #ir004 .l_subTitleArea.reverse::before {
    left: -10.6vw;
    width: calc(100% + 10.6vw + 4vw);/*ir004追加*/
  }
}

/*
 l_topWrap01 imgArea
=====================================================================================*/
 #ir004 .l_topWrap01 .l_imgArea{
   display: flex;
   max-width: 840px;
   width: 58.33vw;
   margin-left: 40px;/*ir004追加*/
   padding-top: 40px;

 }
 #ir004 .l_topWrap01 .l_imgArea div{
   margin-right: 24px;
 }
 
 #ir004 .l_topWrap01 .l_imgArea div:last-of-type{
   margin-right: 0;
 }
 
 @media screen and (max-width: 1280px) {
   #ir004 .l_topWrap01 .l_imgArea{
     margin-left: 0px;
   }

 }
 
 @media screen and (max-width: 768px) {
   #ir004 .l_topWrap01 .l_imgArea{
     max-width: 840px;
     width: 89.33vw;
     padding-top: 24px;
     margin-left: auto;
   }
 }
 
 



/*
 el_btn
=====================================================================================*/
/*#ir004 .el_btnAnm span {
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.45, 0.12, 0.04, 0.96), transform 1s cubic-bezier(0.45, 0.12, 0.04, 0.96);
}
#ir004 .el_btnAnm:hover span {
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.45, 0.12, 0.04, 0.96), transform 1s cubic-bezier(0.45, 0.12, 0.04, 0.96);
}

#ir004 .el_btnAnm:before {
  border: none;
  background: #DEB938;
  color: #fff;
  
  transform: translateX(-100%);
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.45, 0.12, 0.04, 0.96), transform 1s cubic-bezier(0.45, 0.12, 0.04, 0.96);
}
#ir004 .bgleft:hover:before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  
  transform: translateX(0);
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.45, 0.12, 0.04, 0.96), transform 1s cubic-bezier(0.45, 0.12, 0.04, 0.96);
}
*/
/* el_btn */
#ir004 .el_btn {
  width: 60vw;
  max-width: 320px;
  margin-bottom: 7.6em;
  padding: 1em 0 1em 1.7em;
  border: 1px solid currentColor;
  background: none;
  color: #fff;
  box-sizing: border-box;
  font-weight: 500;
  
  transition: 1.5s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
  transition-timing-function: ease;
}

#ir004 .el_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 23px;
  background-image: url(/images/ir004/icon_arrow.png);
  background-position: center;
  background-size: cover;
  z-index: 4;
  width: 24px;
  height: 24px;
}

#ir004 .reverse .el_btn {
  margin-bottom: 2.6em;
  margin-left: 0;
}

#ir004 .el_btn::after {
  color: #fff;
}
#ir004 .el_btn:hover::after {
  color: #fff;


}
#ir004 .el_btn:hover {
  border: 1px solid #fff;
  transition: .6s;
  transition-timing-function: ease;
  background: #83C1FA;
}

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

  #ir004 .el_btn {
    max-width: 280px;
    width: 74.6vw; 
    margin-bottom: 12.2vw;
    }
    #ir004 .reverse .el_btn {
      margin-bottom: 6.4vw;
      margin-left: 0;
    }
  #ir004 .el_btn::after {
    background-size: cover;
    width: 16px;
    height: 16px;
    right: 20px;
  }

}



/* el_moreBtn */
#ir004 .l_topNewsArea .el_moreBtn {
  /* opacity: 0; */
  width: 240px;
  padding-left: 0;
  border: 1px solid currentColor;
  background: #fff;
  color: #000;
  text-align: center;
  box-sizing: border-box;
  /* pointer-events: none; */
}
#ir004 .l_topNewsArea .el_moreBtn::after {

  content: "";
  position: absolute;
  top: 50%;
  right: 16.5px;
  background-image: url(/images/ir004/icon_arrow_black.png);
  background-position: center;
  background-size: cover;
  z-index: 4;
  width: 5px;
  height: 11px;


  transition: opacity 1.5s cubic-bezier(0.45, 0.12, 0.04, 0.96), transform 1s cubic-bezier(0.45, 0.12, 0.04, 0.96);
  transition: .3s;
  transition-delay: 30ms;
}
#ir004 .l_topNewsArea .el_moreBtn:hover::after {
  background-image: url(/images/ir004/icon_arrow_white.png);
  transition: .3s;
}
#ir004 .l_topNewsArea .el_moreBtn:hover {
  border: 1px solid #4889C5;
  transition: .3s;
  background: #4889C5;
  color: #fff;
}
#ir004 .l_topNewsArea .el_btn:before {
  border: none;
  background: #000;
  color: #fff;
}

/* l_topWrap03 l_topDisplayList */
#ir004 .l_topDisplayList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
  

/*  position: relative;
  border: solid 1px rgba(#fff,.1);
  box-sizing: border-box;
  overflow: hidden;
  
  background-size: cover;*/
  
}

/*#ir004 .l_topDisplayList:before  {
  content: "";
  z-index: -1;
  -webkit-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  position: absolute;
  width: 130%;
  height: 130%;
  margin: 0;
  padding: 0;
  top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
  background-image: url(/images/ir004/top-image03.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}*/

#ir004 .l_topDisplayList .l_topDisplayList__inner{
  background-color:rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  -ms-backdrop-filter: blur(2.5px);
  width: max(401px);
}

#ir004 .l_topDisplayList dl {
  width: max(401px);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
}
#ir004 .l_topDisplayList .l_topDisplayList__inner:nth-of-type(1) {
  margin-right: 4px;
}
@media screen and (max-width: 767px) {
  #ir004 .l_topDisplayList .l_topDisplayList__inner:nth-of-type(1)  {
    margin-right: 0;
    margin-bottom: 4px;
  }
}
#ir004 .l_topDisplayList dt {
  padding: 5.6em 0 1.2em 0;
  background: none;

  letter-spacing: 0.3px;
  color: #fff;
  ine-height: 1;
}
#ir004 .l_topDisplayList dt {
  font-size: 16px;
}
@media screen and (min-width: 375px) {
  #ir004 .l_topDisplayList dt {
    font-size: calc(1.02vw + 10.173px);
  }
}
@media screen and (min-width: 767px) {
  #ir004 .l_topDisplayList dt {
    font-size: 20px;
  }
}
#ir004 .l_topDisplayList dd {
  padding: 0 1em 4.24em;
  background: none;
  max-width: 401px;
  text-align: center;
  line-height: 1;
}

#ir004 .l_topDisplayList .l_topDisplayList__inner:nth-of-type(2) dt{
  padding: 5.6em 0 0.75em 0;
}

#ir004 .l_topDisplayList dd span.small{
  font-size: clamp(14px, 1.8vw, 18px);
  min-height: 0vw;
}

/* smp */
@media screen and (max-width: 767px) {
  #ir004 .l_topDisplayList {
    gap: 0;
  }
  #ir004 .l_topDisplayList .l_topDisplayList__inner{
    width: max(295px);
  }
  #ir004 .l_topDisplayList dl {
    width: max(295px);
  }
  #ir004 .l_topDisplayList dt {
    padding: 2.6em 0 1em 0;
  }
  #ir004 .l_topDisplayList dd {
    padding: 0 1em 2.7em;
  }
  #ir004 .l_topDisplayList .l_topDisplayList__inner:nth-of-type(2) dt {
    padding: 2.6em 0 0.4em 0;
  }
  
}
