@charset "UTF-8";

/*
========================================

	cases.css
    
========================================
*/

/*----------------------------------------
   layout
----------------------------------------*/

body {background-image: linear-gradient(#73c9ff 0, #9cddff 20vh, #c4f0ff 40vh, #c4f0ff 100vh);}/*bg_sky_cloud.svg*/

.wrapper {
    /*background-color:#c4f0ff;*/
    background-image: url("/common/cmn_img/bg_sky.png");/*fallback*/
    background-image: url("/common/cmn_img/bg_sky_cloud.svg"), none;
    background-size: 200%;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
}

div.h2Box {
    display: block;
    width: 100%;
    background-color:rgba(31,153,71,0.75);
    /*background-image: url("/common/cmn_img/bg_title.png"); fallback
    background-image: url("/common/cmn_img/bg_title.svg"), none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position:bottom center;*/
    background-blend-mode: multiply;
}

div.h2Box h2 {
    color: #fff;
}

@media (min-width: 992px) {
    
    .wrapper {background-size: contain;} 
 
}/*@media end*/

/*----------------------------------------
   parts
----------------------------------------*/

.balloon {
    position: relative;
    padding: 32px 32px 48px 32px;
    border-radius: 16px;;
    background-color: #fff;
}

.balloon::before {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 36px;
    bottom: -12px; 
    left: 42%;
    margin-left: 0;
    background-color: #fff;
    border-radius: 0 50px 0 50px;
    z-index: -1;
}

.balloon::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 36px;
    bottom: -6px; 
    left: 45%;
    margin-left: 0;
    background-color: #c4f0ff;
    border-radius: 0 50px 0 50px;
    z-index: -1;
    transform: rotate(30deg);
}

.balloon_l {
    position: relative;
    padding: 32px;
    border-radius: 16px;;
    background-color: #fff;
}

.balloon_l::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 24px; 
    left: -24px;
    border: 12px solid transparent;
    border-right: 24px solid #fff;
    transform: rotate(30deg);
  }

.balloon_r {
    position: relative;
    padding: 32px;
    border-radius: 16px;;
    background-color: #fff;
}

.balloon_r::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 24px; 
    right: -24px;
    border: 12px solid transparent;
    border-left: 24px solid #fff;
    transform: rotate(-30deg);
  }

@media (min-width: 640px) {

.balloon_l_rev {
    position: relative;
    padding: 32px;
    border-radius: 16px;;
    background-color: #fff;
}

.balloon_l_rev::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 24px; 
    left: auto;
    right: -24px;
    border: 12px solid transparent;
    border-right: 24px solid #fff;
    transform: rotate(150deg);
    }
    
}/*@media end*/

.que .balloon_l {
    background-color: #BFDBFE;
    }

.que .balloon_l::before {
    border-right: 24px solid #BFDBFE;
}

div#talk {
    background:rgba(196,240,255,1);
}

