@charset "utf-8";

p.tdiv {
    display: block;
}

.tdiv {
    display: flex;
    /* width: 10px; */
}

/*  */
.fc-wrapper .inner {
    width: 100%;
    margin: 0 auto;
}

/* キービジュアル下マージン */
.fc-wrapper .inner > img {
    margin-bottom: 36px;
    width: 100%;
}

.fc-wrapper h2 {
    margin-bottom: 15px;
    margin-top: 40px;
    font-size: 2.4rem;
    letter-spacing: 0.2rem;
    font-weight: bold;
    border-bottom: dotted 3px;
}

.fc-wrapper h3 {
    font-weight: bold;
    margin-bottom: 10px;
}

.fc-wrapper h2::before {
    position: relative;
    top: 5px;
    margin: 0 10px 0 0;
    vertical-align: top;
    content: url(/img/leaf-icon.png)
}

.fc-wrapper p {
    font-size: 1.8rem;
    line-height: 3.6rem;
    padding: 3px 0 5px 5px;
}

/* flexbox 2column */

.flex_2col .section__link__flex__img {
    width: 48%;
    margin: 3px 5px;
}

.flex_2col {
    display: flex;
    flex-wrap: wrap;
}


/*================
2カラム画像リンク flexbox
=================*/

/* css button */
.button_raduis a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 120px; /* 100 -> 120px */
    padding: 8px 18px;
    color: #FFF;
    transition: 0.1s ease-in-out;
    font-weight: bold;
    background: #197502fd;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 3px;
    border-radius: 40px;
    font-size: 1.3rem;
    display: none;
}

.button_raduis a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 46%;
    right: 12px; /* 15 -> 12px */
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}

.button_raduis a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.button_raduis {
    margin-top: auto;
}

.fc-wrapper .cts__3col__card {
    margin: 10;
    display: flex;
    flex-direction: column;
    max-width: 200px; /* 追加 */
}

/* 追加 */
.fc-wrapper .cts__3col__card p {
    padding: 0 4px;
}

.fc-wrapper .cts__3col__card .button_raduis {
    margin-top: auto;
}

/* ───────────────────────────────────────────────── */

@media (min-width: 360px) {

    .fc-wrapper .inner {
        width: 630px;
        margin: 0 auto;
    }

    .fc-wrapper .cts__3col {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }




    .fc-wrapper .cts__3col__card p {
        font-size: 1.6rem;
        line-height: 3rem;
        margin: 10px 0 10px 0;
      
    }

    .fc-wrapper .flex_2col {
        display: flex;

    }

    .fc-wrapper .flex_2col img {
        width: 100%;
        margin: 5 10 10 10;
    }

}