@charset "utf-8";

/*==========
20240829 added by fujita
==========*/
.postid-1150 .image-text-type02 .image,
.postid-1150 .image-text-type02 .text {
    width: 50%;
}

.postid-1150 .image-text-type02 .box-h3 {
    display: flex;
    align-items: flex-start;
}

.postid-1150 .image-text-type02 .box-h3 .num {
    font-size: 6rem;
    opacity: 0.5;
    font-weight: bold;
    line-height: 1;
    margin-right: 0.3em;
    color: var(--main-color);
    font-family: "メイリオ", "Meiryo", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}



.row {
    gap: 0;
}

.box.image-text-type02 .box-h3,
.box.image-text-type03 .box-h3 {
    color: var(--main-color);

}

.num-list>div {
    margin-bottom: 50px !important;
}

.num-list-once {
    background: #fff;
    height: 100%;
    border-radius: 15px;
}

.num-list-text {
    padding: 1.5em;
}

.num-list-ttl {
    font-size: 22px;
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;

}

.num-list-image {
    position: relative;
}

.num-list-image img {
    position: relative;
    border-radius: 15px 15px 0 0;
}

.num-list-image .num {
    position: absolute;
    top: -25px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-size: 28px;
    line-height: 1;
    background: var(--main-color);
    color: #fff;
    z-index: 3;
    font-family: "Zen Maru Gothic", serif;
    font-weight: bold;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
}

.template-backpattern {
    background: var(--sub-color);
    border-radius: 15px;
    border: none;

}

.template-backpattern .template {
    margin-bottom: 0;

}


.box-wrap.bg .template-backpattern {
    background: #fff;
    border-radius: 15px;
    border: none;

}

/*==========
CONTENTS WORKS ID:1876
==========*/
/*config*/

.cw-check {
    margin-bottom: 0 !important;
}

.cw-check li {
    list-style-type: none !important;
    position: relative;
    padding: 0.5em 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.cw-check li::before {
    color: var(--main-color);
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    margin-right: 0.5em;
}

/*==========
CONTENTS WORKS ID:1801
==========*/
/*config*/
:root {
    --btn-font: 18px;
    /*文字サイズ*/
    --btn-round: 30px;
    /*ボタンの角丸*/
}

/*css*/
.cw-btn.full {
    width: 80%;
}

.cw-btn {
    background-color: var(--main-color);
    font-size: var(--btn-font);
    border-radius: var(--btn-round);
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.3);
    display: inline-block;
    position: relative;
    padding: 0.8em 1.2em;
    margin: 30px auto;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none !important;
    overflow: hidden;
}

.cw-btn:hover {
    text-decoration: none !important;
    color: #fff;
    box-shadow: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 0.8;
}

.cw-btn:visited {
    text-decoration: none !important;
    color: #fff;
}

.cw-btn::after {
    content: '\f0a9';
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    margin-left: 1em;
}

.cw-btn.shine::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    transition: 0.2s;
    animation: cw-btn 3s ease-in-out infinite;
}

@-webkit-keyframes cw-btn {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }

    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}