/* デザインA(SP共通) */

/* 全体にZenKakuGothiを適用 */
p, h3 ,h4 ,h5, h6, dl , li{
  font-family: 'Noto Sans JP', 'Zen Kaku Gothic New', "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
    letter-spacing: 0.08em;
    line-height: 1.8em;
}

#Page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(-45deg, #dc0032 0%, #e3325a 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 6px 0 6px 0;
    opacity: 0; /* 初期状態は非表示 */
    visibility: hidden; /* 初期状態で非表示 */
    transition: opacity 0.5s ease, visibility 0.5s ease; /* アニメーションの設定 */
}

#Page-top.show {
    opacity: 1; /* 表示時 */
    visibility: visible; /* 表示時 */
}

.sp_none {
    display: none;
}

.LinkUnder li:nth-child(2) {
    border: none!important;
}


li {
    list-style: none;
}

footer {
    margin: -120px 0 0 0;
    position: relative;
    z-index: 3;
}

#Home .footer_home {
    margin: 0!important;
}


.companyUnder a {
    color: #fff!important;
}

.companyUnder a:hover{
    opacity: 0.8;
}

.LinkUnder a {
    color: #fff!important;
}

.LinkUnder a:hover{
    opacity: 0.8;
}



.fa-chevron-right:before {
    font-size: 8px;
}


.investor_inner {
    background: url(../images/footer_sp.jpg) no-repeat center center;
    background-size: cover;
    height: auto;
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 220px;
    margin: 120px 0 0 0;
}

.investor_inner_inner {
    position: relative;
    z-index: 8;
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    margin: 40px 0 0;
    justify-content: space-evenly;    
}

.investor_inner_inner .logoCath {
    max-width: 240px;
    margin: 0 auto ;
}

.investor_inner_inner .footerCath {
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    padding: 0 6%;
    margin: 20px auto;
}

.investor_inner img {
  display: block;
  width: 100%; /* 画像がコンテナの幅に合わせてリサイズされる */
  height: auto; /* 画像のアスペクト比を保つ */
}

.investor_inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    #005396, /* グラデーションの色と透明度 */
    #00a0dc   /* グラデーションの色と透明度 */
  );
  pointer-events: none; /* クリックなどのイベントを通過させる */
  opacity: 0.8;
}

.investor_inner .investor_inner_text {
    position: relative;
    z-index: 2;
    color: #fff;
    margin: 40px 0 0 0;
}

.investor_inner h4{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    display: none;
}

.investor_inner ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin: 30px 0 40px 0;
    padding: 0 2%;
    display: none;
}

.investor_inner ul li{
    font-size: 12px;
    font-weight: 500;
    margin: 0 4px;
}

.aic_inner_boxB {
    background: #212a37;
    padding: 15px 0 0 0;
    margin: -6px 0 0 0;
}

.aic_inner_boxB h1 {
    width: 40%;
    display: block;
    margin: -8px auto 0;
    padding: 20px 0;
}

.aic_inner_boxB h1 img {
    transform: translateX(-50%);
    position: relative;
    left: 50%;
    width: 100%;
}

.company_Box .company_Box_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 40px 40px;
}

.company_Box .company_Box_inner p {
    width: 50%;
}

.company_Box .company_Box_inner img {
    border-radius: 4px;
}

.company_Box .LinkUnder {
    display: flex;
    color: #fff;
    flex-wrap: wrap;
    font-size: 12px;
    justify-content: center;
}


.company_Box .LinkUnder li{
    border-right :1px dotted #fff;
    padding: 0 16px;
}

.company_Box .LinkUnder li:nth-child(3) {
    border: none;
}

.companyUnder {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.companyUnder dl {
    width: 34%;
    line-height: 1.8em!important;
    margin: 0 0 20px 0;
}

.companyUnder dl:nth-child(5){
    width: 84%;
}

.companyUnder dl:nth-child(6){
    width: 84%;
}


.companyUnder dl dt {
    font-weight: bold;
    font-family: 'Poppins' sans-serif;
    font-size: 16px;
    border: none;
}

.companyUnder dl dd {
    opacity: 0.8;
    font-size: 12px;
    border: none;
}

.copyRight {
    color: #fff;
    font-size: 10px;
    margin: 15px;
}


/* デザインB(タブレット) */
@media only screen and (min-width: 600px) {
/* タブレット用レイアウト 600px以上の範囲に収めるデザインはこの中に記述 */

    .investor_inner_inner .footerCath {
        padding: 0 4%;
    }


    .company_Box .LinkUnder {
        justify-content: center;
        align-items: center;
    }

    .company_Box .LinkUnder li {
        padding: 0 60px;
    }

    .copyRight {
        color: #fff;
        font-size: 10px;
    }

}

/* デザイン微調整(タブレット) */
@media only screen and (min-width: 869px) {
/* タブレット用レイアウト 869px以上の範囲に収めるデザインはこの中に記述 */

    .aic_inner_boxB {
        padding: 0;
    }


}



/* デザインC(PC) */
@media only screen and (min-width: 1024px) {
/* PC用レイアウト 1024px以上の範囲に収めるデザインはこの中に記述 */

    .sp_none {
        display: block;
    }

    .investor_inner .investor_inner_inner{
        max-width: 1167px;
        margin: 40px auto;
    }

    .investor_inner_inner .footerCath {
        padding: 0;
        font-size: 2.4rem;
    }

    .investor_inner h4 {
        text-align: left;
        font-size: 24px;
    }

    .investor_inner ul {
        margin: -30px 0 40px 0;
        justify-content: flex-end;
    }

    .investor_inner ul li {
       font-size: 14px;
    }

    .investor_inner {
        background: url(../images/footer_pc.jpg) no-repeat center center!important;
        height: auto;
        padding: 0 2%;
    }

    .aic_inner_boxB h1 {
        width: 17%;
        padding: 40px 0 20px;
    }

    .company_Box .company_Box_inner img {
        border-radius: 4px;
    }

    .company_Box .LinkUnder {
        margin: 0 auto;
        justify-content: flex-end;
        padding: 8px 0;         
    }

    .company_Box .company_Box_inner {
        margin: 0 auto;
        max-width: 1400px;
    }

    .company_Box .LinkUnder li {
        padding: 0 30px;
        font-size: 12px;
    }

    .copyRight {
        color: #fff;
        font-size: 12px;
        text-align: right;
        margin: 0 ;
    }

    .companyUnder {
        max-width: 1200px;
        margin: 0 auto;
    }



    /* ホバーしたら下からスライドで黒くなる */

    .image-container {
        width: 18%!important;
    }

    .image-container img {
        width: 100%;
        height: auto;
        display: block;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7); /* 黒のオーバーレイ */
        opacity: 0;
        transition: opacity 0.3s ease; /* フェードイン/アウトのアニメーション */
        display: flex;
        align-items: center;
        justify-content: center;
        color: white; /* テキストの色 */
        text-align: center;
        border-radius: 4px;
        padding: 8% 4%;
        display: block!important;
    }


    .image-container:hover .overlay {
        opacity: 1; /* ホバー時にオーバーレイを表示 */
    }

}


/* さらに大きいデザインD(PC) */
@media only screen and (min-width: 1076px) {
/* PC用レイアウト 1076px以上の範囲に収めるデザインはこの中に記述 */


    .investor_inner .investor_inner_inner {
        margin: 80px auto;
    }

    .company_Box .LinkUnder li {
            font-size: 12px;
        }

}

