@charset "UTF-8";

/* 背景画像 */
/* .wrapper.message {
    background: url(../../img/bg.png) repeat 50% 100px;
    background-size: 2880px auto ;
} */

main {
    padding: 0 20px 20px;
}

/* ボタン群 */
.flex-columns.btns {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 80px;
}

.flex-columns.btns > * {
    padding: 14px 15px;
    width: 32%;
    background: #FFE1D6;
    color: #333333;
    text-decoration: none;
    margin-bottom: 15px;
    position: relative;
    font-size: 0.8em;
}

.flex-columns.btns > *:hover {
    background: #FF8800;
    color: #ffffff;
}

/* アイコン表示 */
.flex-columns.btns > *::after {
    font-family: 'Material Icons';
    content: "\e5e1";
    font-size: 1.5em;
    position: absolute;
    transform: rotate(90deg);
    top: calc(50% - 0.5em);
    right: 10px;
    color: #FF4400;
}

/* 疑似タイトル */
.m-title {
    color: #FF4400;
    margin-bottom: 25px;
}

/* 段組み設定 */
.flex-columns.business {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 90px;
}

.flex-columns.business > * {
    width: 300px;
    margin-bottom: 20px;
    flex-grow: 2;
    margin-right: 20px;
}

/* 段組み設定：最後 */
.flex-columns.business.ex {
    margin-bottom: 10px;
}

.flex-columns.business > *:nth-child(3),
.flex-columns.business > *:nth-child(5) {
    margin-right: 0;
}

/* カード内の設定 */
.card {
    background: #FFE1D6;
}
.ko-title {
    color: #ffffff;
    background: #FF4400;
    font-weight: bold;
    padding: 12px 15px;
}

.card p {
    padding: 15px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* 色が薄いカード */
.card.ex {
    background: #FFF0EB;
}

.card.ex .ko-title {
    background: #FF8559;
}

.margin-center {
    display: block;
    margin: auto;
}

/* 図・グラフ */
.graph-container {
    margin-bottom: 90px;
}

/* 円グラフのコンテナ */
.fig-ex img {
    width: 100%;
    height: inherit;
}

/* ビジネスリスト */
.business-list {
    margin: 20px;
}

.business-list > li {
    line-height: 1.5;
    padding-bottom: 10px;
    /* border: 1px solid green; */
    margin-left: 1em;
    position: relative;
}

.business-list > li:last-child {
    margin-bottom: 0;
}

.business-list > li::before {
    content: "●";
    position: absolute;
    left: -1.2em;
}

/* たよれーる */
.decal-tayo {
    background: url(../img/business-decal1.png) no-repeat right top;
}

/* たのめーる */
.decal-tano {
    background: url(../img/business-decal2.png) no-repeat right top;
}

/* リンク */
a[data-icn="w"] {
    display: inline-block;
    line-height: 1.3;
    margin-left: 1.3em;
    text-indent: -1.3em;
    padding-bottom: 15px;
}

/** --------------------------------
* タブレット
*/
.wrapper.tablet img {
    width: 100%;
    height: inherit;
}

/* 疑似タイトル */
.wrapper.tablet .m-title {
    margin-bottom: 25px;
}

/* 段組み設定 */
.wrapper.tablet .flex-columns.business > * {
    width: 100%;
    margin-right: 0;
}

.wrapper.tablet .flex-columns.business {
    margin-bottom: 50px;
}

/* 図・グラフ */
.wrapper.tablet .graph-container {
    margin-bottom: 50px;
}

.wrapper.tablet .flex-columns.business.tb, .wrapper.tablet .flex-columns.business.ex {
    flex-wrap: nowrap;
    gap: 20px;
}

.wrapper.tablet .flex-columns.business.tb > * , .wrapper.tablet .flex-columns.business.ex > * {
    flex-grow: 1;
    zoom: 0.8;
}

/** --------------------------------
* sp
*/
@media screen and (max-width: 767px) {

    /* 背景画像 */
    /* .wrapper.message {
        background: url(../../img/bg.png) repeat-y 50% 6em;
        background-size: 300% auto;
    } */

    /* ボタン群 */
    .flex-columns.btns {
        margin-bottom: 50px;
    }
    .flex-columns.btns > * {
        width: 100%;
        margin-bottom: 10px;
    }

    /* 段組み設定 */
    .flex-columns.business > * {
        width: 100%;
        margin-right: 0;
    }

    .flex-columns.business {
        margin-bottom: 50px;
    }

    /* 図・グラフ */
    .graph-container {
        margin-bottom: 50px;
    }

    main img {
        width: 100%;
        height: inherit;
    }
}