@charset "utf-8";

body {
    line-height: 1.5;
}

h3 {
    margin: 1.5rem 0 1rem;
}

p {
    margin-bottom: 1rem;
}

.bold {
    font-weight: bold;
}

.small {
    font-size: 8px;
}

.font_m {
    font-size: 1.2rem;
}

.font_l {
    font-size: 1.5rem;
}

.font_ll {
    font-size: 1.8rem;
}

.note {
    text-align: right;
    font-size: 0.7rem;
    margin-top: 0.5rem;
}

.small {
    font-size: 0.8rem;
}

sup {
    font-size: 0.7rem;
}

.red {
    color: #ff0000;
}

.red-light {
    color: #e06666;
}

.blue-light {
    color: #8ed1fc;
}

.blue {
    color: #6495ED;
}

.pink {
    color: #FF658C;
}

.yellowline {
    background: linear-gradient(transparent 80%, yellow 20%);
}

.blueline {
    background: linear-gradient(transparent 80%, #8ed1fc 30%);
}

.redline {
    background: linear-gradient(transparent 80%, #FED4D6 30%);
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.voice {
    margin-bottom: 0;
}

.voice img {
    filter: drop-shadow(0px 5px 5px #aaa);
    margin-bottom: 0;
}

.slide .slider .voice img {
    filter: none;
}

figure {
    margin: 1.5rem 0;
}

.img-small {
    width: 70%;
    margin: 0 auto;
}

video {
    width: 100%;
    margin: 0.5rem 0;
}


/* 吹き出し */

.balloon {
    margin-bottom: 40px;
}

.balloon figure img {
    width: 100%;
    height: auto;
    margin: 0;
}

p.comment {
    margin: 0 0 8px;
}

p.comment:last-child {
    margin-bottom: 0px;
}

/* 回り込み解除 */
.balloon:after,
.balloon:before {
    clear: both;
    content: "";
    display: block;
}

/* 画像 */
.icon {
    margin-left: 114px;
    margin-top: -1px;
    float: left;
    width: 60px;
    height: 60px;
}

/* 左からの吹き出しテキスト */
.balloon-comment {
    color: #444;
    position: relative;
    margin-left: 200px;
    padding: 1.2em;
    border: 3px solid #ddd;
    background-color: #fff;
    border-radius: 5px;
    width: fit-content;
}

/* 左の三角形を作る */
.balloon-comment:before {
    position: absolute;
    content: '';
    border: 10px solid transparent;
    border-right: 10px solid #ddd;
    top: 15px;
    left: -20px;
}

.balloon-comment:after {
    position: absolute;
    content: '';
    border: 10px solid transparent;
    border-right: 10px solid #fff;
    top: 15px;
    left: -16px;
}

/* 吹き出しここまで */


/* 文字の点滅 */
.blink {
    animation: blinking 1s ease-in-out infinite alternate;
}

@keyframes blinking {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 文字の点滅ここまで */


/*きらりと光るボタン*/

.shiny-btn {
    display: block;
    position: relative;
    width: 80%;
    /*ボタンの幅*/
    padding: 20px 0;
    margin: 30px auto;
    background-color: #3eb370;
    /*ボタンの色*/
    box-shadow: 0 3px 0 0 rgb(24, 146, 85, 1);
    border-radius: 40px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: 0.2s;
    letter-spacing: 0.1em;
}

.shiny-btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}

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

.shiny-btn::after {
    position: absolute;
    right: 20px;
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    font-weight: bold;
    margin-left: 0.5em;
}

@-webkit-keyframes shiny-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;
    }
}

/*きらりと光るボタンここまで*/


/*きらりと光るボタン（画像）*/

.cv-btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cv-btn:after {
    content: "";
    height: 100%;
    width: 30px;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
    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;
    }
}

/*きらりと光るボタン（画像）ここまで*/

.sp {
    display: none;
}

a.cta {
    display: block;
    text-align: center;
    margin: 1.5rem 0;
    filter: drop-shadow(0px 7px 7px #e9e9e9);
}

/* スマホ表示 */
@media screen and (max-width:750px) {
    video {
        margin: 0;
    }
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    /* 画像 */
.icon {
    margin-left: 4px;
}

/* 左からの吹き出しテキスト */
.balloon-comment {
    margin-left: 80px;
}


}

@media screen and (min-width:751px) {
    .pc {
        display: block;
    }


}