@charset "UTF-8";

.c-headline__img{
    background: url(../img/strength/mv.jpg);
    background-repeat: no-repeat;
        background-size: cover;
}


.main_ttl{
    display: grid;
    grid-gap: 30rem;
}
.main_ttl h2{
    font-size: clamp(24px, 36rem, 36rem);
    font-weight: 600;
    display: flex;
    gap: 0 10rem;
}
.main_ttl h2 .icon{
    max-width: 38rem;
    width: 4.1%;
}
.strength_intro{
    font-size: 20rem;
    font-weight: 400;
    margin-bottom: 50rem;
    overflow: hidden;
    position: relative;
}
.strength_intro::before{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1;
    display: block;
    content: "";
    background: url(../img/strength/strength_intro_bg_pc.png) no-repeat;
    width: 80%;
    height: 100%;
    background-size: contain;
}
.main_ttl_txt{
    font-size: clamp(18px, 16rem, 20rem);
    font-weight: 400;
}
.strength_intro .main_ttl_txt{
    max-width: 800px;
}

.strength_intro_img {
    margin: 120rem auto 160rem;
    overflow: hidden; /* これで外側を隠す */
    width: 100%;      /* 画面幅いっぱいに指定（重要） */
    position: relative;
    z-index: 2;
}

.strength_intro_img ul {
    display: flex;
    gap: 80rem;
    width: max-content; /* 中身の合計幅を維持する（重要） */
    list-style: none;
    padding: 0;
    margin: 0;
    
    /* アニメーション（前回の内容） */
    animation: loop-scroll 40s linear infinite;
}

.strength_intro_img ul li {
    width: 300px;
    flex-shrink: 0; /* 画像が縮まないように固定する（重要） */
}
.strength_intro_img ul li:nth-of-type(even) {
    margin-top: 100rem;
}

.strength_intro_img ul li img {
    width: 100%;
    display: block;
}

@keyframes loop-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* リストを2倍に並べた場合 */
}


.strength_intro_about .orange{
    display: block;
    text-align: center;
    font-size: 24rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    background: #ff6600;
    border-radius: 9999px;
    padding: 14rem 32rem;
    width: fit-content;
    margin: auto;
}
.strength_intro_about .txt{
    text-align: center;
    font-size: 48rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 24rem;
}
.strength_intro_about span{
    color: #ff6600;
}

.main_txt_wrap{
    margin: 80rem auto;
}
.main_txt_wrap p{
    text-align: center;
    font-size: 8.6svw;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}


.strength_contents{
        position: relative;
        overflow: hidden;
        padding: 200rem 0;
        margin-bottom: 240rem;
}
.strength_contents:after, .strength_contents:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 200%;
    padding-bottom: 200%;
    border-radius: 50%;
    background: #ff6600;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.strength_contents:after {
    bottom: 0;
}
.strength_contents:before {
    top:0;
}
@media print, screen and (min-width: 960px) {
    .strength_contents:after, .strength_contents:before {
        width: 130%;
        padding-bottom: 1780rem;
    }
}
/* @media print, screen and (min-width: 960px) {
    .strength_contents:before {
        top: -260rem;
    }
    .business__body:after {
        bottom: -260rem;
    }
} */

.strength_contents_ttl{
    position: relative;
    z-index: 1;
    padding-bottom: 90rem;
}
.strength_contents_ttl small{
    text-align: center;
    display: block;
    color: #fff;
    font-size: 32rem;
    font-weight: 500;
    line-height: 1;
}
.strength_contents_ttl p{
    text-align: center;
    color: #fff;
    font-size: 56rem;
    line-height: 1;
    font-weight: 600;
}
.strength_contents_ttl p span{
    font-size: 200%;
    line-height: 1;
}


.strength_contents_wrap{
    position: relative;
    z-index: 1;
    padding-bottom: 200rem;
}
.strength_contents_wrap ul{
    display: flex;
    gap: 40rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
.strength_contents_wrap li{
    width: calc((100% - (40rem * 2)) / 3);
    perspective: 1000px;
    background: none;
    padding: 0;
    box-shadow: none;
    /* background: #fff;
    padding: 0 30rem 30rem;
    border-radius: 20rem;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 20rem 0; */
}
/* 回転する中身のベース */
.card-inner {
    position: relative;
    display: grid;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}
/* 画面外に出た時、スッと戻るように設定 */
.js-fade:not(.is-show) .card-inner {
    transform: rotateY(0deg);
}

/* スクロールで発火した時の回転（180度回す） */
.js-fade.is-show .card-inner {
    transform: rotateY(180deg);
}

/* 表・裏 共通設定 */
.card-front, .card-back {
    grid-area: 1 / 1; /* 同じグリッドセルに重ねる */
    width: 100%;
    height: 100%;     /* 親（一番高い方）に合わせる */
    backface-visibility: hidden;
    border-radius: 20rem;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
}

/* 表面（情報の詳細：最初は隠れている） */
.card-front {
    background: #fff;
    padding: 0 30rem 30rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotateY(180deg);
    /* overflow: hidden を書かないことで .num のはみ出しを許可 */
}

/* 裏面（オレンジ背景：最初に表示される） */
.card-back {
    background: linear-gradient(135deg, #ff6600, #ffc000);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(0deg);
}

.card-back .back-img {
    width: 50%;
}
.card-back .back-img img {
    width: 100%;
    filter: brightness(0) invert(1); /* 画像を白抜きにする場合（お好みで） */
}

/* 既存の内部要素のスタイル調整（マージンなど） */
.strength_contents_wrap li .num {
    margin: -30rem auto 10rem; /* 上に突き抜けさせる */
    flex-shrink: 0;           /* 潰れないように */

}

.strength_contents_wrap li .num{
    background: linear-gradient(90deg, rgba(255, 102, 0, 1) 0%, rgba(255, 192, 0, 1) 100%);
    color: #fff;
    font-size: 32rem;
    font-weight: 700;
    aspect-ratio: 1 / 1;
    width: 1.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    text-align: center;
    position: relative;
    z-index: 3;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
    margin: -30rem auto 30rem;
}
/* タイトルと画像の調整 */
.card-front .ttl, .card-front .img {
    flex-shrink: 0;
    margin-bottom: 15rem;
}
.strength_contents_wrap li .ttl{
    width: 60%;
    margin: 0 auto;
    
    /* ここがポイント：flex-growで余白を埋めつつ、高さを揃える */
    display: flex;
    align-items: center; /* 画像を上下中央に */
    justify-content: center;
    flex-basis: 80px; /* 目安の最小高さ（中身に応じて調整） */
    flex-grow: 1;
}
.strength_contents_wrap li .img{
    width: 54%;
    margin: 0 auto;
    
    /* タイトル同様に高さを揃える設定 */
    display: flex;
    align-items: center; /* 画像を下揃えにする場合 */
    justify-content: center;
    flex-basis: 165px; /* 目安の最小高さ */
    flex-grow: 1;
}
.strength_contents_wrap li .txt{
    font-size: 16rem;
    text-align: justify;
    margin-top: auto; /* 下に詰める */
}




@media (hover: hover) {
}


@media (max-width: 768px) {
    .c-headline__img{
   background-size: cover;
   background-position: left -363rem bottom ;
}


.main_ttl{
    display: grid;
    grid-gap: 30rem;
}
.main_ttl h2{
    font-size: 24rem;
    line-height: 1.8;
    font-weight: 600;
    display: flex;
    gap: 0 10rem;
}
.main_ttl h2 .icon{
    max-width: 38rem;
    width: 10%;
}


.strength_intro{
    font-size: 14rem;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 0;
}
.main_ttl_txt{
    font-size: 14rem;
    font-weight: 400;
}
.strength_intro .main_ttl_txt{
    max-width: 465px;
}


.main_txt_wrap{
    margin: 50rem auto 0;
}
.main_txt_wrap p{
    text-align: center;
    font-size: 12.5svw;
    line-height: 1;
    white-space: nowrap;
}



.strength_intro::before{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1;
    display: block;
    content: "";
    background: url(../img/strength/strength_intro_bg_sp.png) no-repeat;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.strength_intro_img {
    margin: 50rem auto 100rem;
    overflow: hidden; /* これで外側を隠す */
    width: 100%;      /* 画面幅いっぱいに指定（重要） */
    position: relative;
    z-index: 2;
}

.strength_intro_img ul {
    display: flex;
    gap: 20rem;
    width: max-content; /* 中身の合計幅を維持する（重要） */
    list-style: none;
    padding: 0;
    margin: 0;
    
    /* アニメーション（前回の内容） */
    animation: loop-scroll 30s linear infinite;
}

.strength_intro_img ul li {
    width: 150px;
    flex-shrink: 0; /* 画像が縮まないように固定する（重要） */
}
.strength_intro_img ul li:nth-of-type(even) {
    margin-top: 50rem;
}

.strength_intro_img ul li img {
    width: 100%;
    display: block;
}



.strength_intro_about .orange{
    display: block;
    text-align: center;
    font-size: 15rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    background: #ff6600;
    border-radius: 9999px;
    padding: 8rem 24rem;
    width: fit-content;
    margin: auto;
}
.strength_intro_about .txt{
    text-align: center;
    font-size: 24rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 16rem;
}
.strength_intro_about span{
    color: #ff6600;
}

.main_txt_wrap{
    margin: 30rem auto 0;
    position: relative;
    z-index: 3;
}
.main_txt_wrap p{
    text-align: center;
    font-size: 11.3svw;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}


.strength_contents{
        position: relative;
        overflow: hidden;
        padding: 200rem 0;
        margin-bottom: 80rem;
}
.strength_contents:after, .strength_contents:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 200%;
    padding-bottom: 200%;
    border-radius: 50%;
    background: #ff6600;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.strength_contents:after {
    bottom: 60rem;
}
.strength_contents:before {
    top:60rem;
}

.strength_contents_ttl{
    position: relative;
    z-index: 1;
    padding-bottom: 70rem;
}
.strength_contents_ttl small{
    text-align: center;
    display: block;
    color: #fff;
    font-size: 23rem;
    font-weight: 500;
    line-height: 1;
}
.strength_contents_ttl p{
    text-align: center;
    color: #fff;
    font-size: 33rem;
    line-height: 1;
    font-weight: 600;
}
.strength_contents_ttl p span{
    font-size: 200%;
    line-height: 1;
}


.strength_contents_wrap{
    position: relative;
    z-index: 1;
    padding-bottom: 0;
}
.strength_contents_wrap ul{
    display: flex;
    flex-direction: column;
    gap: 50rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
.strength_contents_wrap li{
    width: 100%;
    /* background: #fff; */
    /* padding: 0 30rem 30rem; */
    border-radius: 20rem;
    /* box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2); */
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 10rem 0;
}

.strength_contents_wrap li .num{
    background: linear-gradient(90deg, rgba(255, 102, 0, 1) 0%, rgba(255, 192, 0, 1) 100%);
    color: #fff;
    font-size: 32rem;
    font-weight: 700;
    aspect-ratio: 1 / 1;
    width: 1.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    text-align: center;
    position: relative;
    z-index: 3;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
    margin: -30rem auto 10rem;
}
.strength_contents_wrap li .ttl{
    width: 70%;
    margin: 0 auto;
    
    /* ここがポイント：flex-growで余白を埋めつつ、高さを揃える */
    display: flex;
    align-items: center; /* 画像を上下中央に */
    justify-content: center;
    flex-basis: 80px; /* 目安の最小高さ（中身に応じて調整） */
    flex-grow: 1;
}
.strength_contents_wrap li .img{
    width: 50%;
    margin: 0 auto;
    
    /* タイトル同様に高さを揃える設定 */
    display: flex;
    align-items: center; /* 画像を下揃えにする場合 */
    justify-content: center;
    flex-basis: 150px; /* 目安の最小高さ */
    flex-grow: 1;
}
.strength_contents_wrap li .txt{
    margin-top: auto;
    font-size: 14rem;
    text-align: justify;
}

.orange{
    background: #ff6600;
}


}


.l-footer {
    position: relative;
}
.l-content{
    position: relative;
    padding-bottom: 0;
}
.c-breadcrumb {
    position: absolute;
    right: 100rem;
    bottom: 120rem;
    z-index: 20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10rem;
    font-size: 15rem;
    font-weight: 500;
}
.c-breadcrumb a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #BDBDBD;
}
.c-breadcrumb a:after {
    display: block;
    margin-left: 10rem;
    content: "";
    width: 12rem;
    height: 1rem;
    background: #BDBDBD;
}

@media screen and (max-width: 959px) {
    .c-breadcrumb {
        right: auto;
        left: 20rem;
        bottom: 40rem;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 5rem;
        font-size: 13rem;
    }
    .c-breadcrumb a:after {
        margin-left: 5rem;
    }
}