@charset "UTF-8";
/* CSS Document */

span.marker{
  background: linear-gradient(transparent 50%, #94c3e7 50%);
  font-weight: bold;
  
}

h2.h-border{
  position: relative;
  text-align: center; /* 文字の中央寄せ */
  margin-top:20px;
  margin-bottom:50px;
  font-weight: bold;
}

h2.h-border:before{
  background-color: #4eb564; /* 線の色 */
  bottom: -30px; /* 線の位置 */
  content: "";
  height: 5px; /* 線の高さ */
  left: 50%; /* 線の中央寄せ */
  position: absolute;
  transform: translateX(-50%); /* 線の中央寄せ */
  width: 50px; /* 線の長さ */
}

h4.solution  {
  padding-left: 55px;
  text-align:left;
  line-height: 1.3em; 
  padding-bottom:10px;
  border-bottom: 2px solid #4eb564;
}

h4.sol-1{
  background: url(../img/2-1-1.png) no-repeat left top;
  background-size: 40px;
}
h4.sol-2{
  background: url(../img/2-2-1.png) no-repeat left top;
  background-size: 40px;
}
h4.sol-3{
  background: url(../img/2-3-1.png) no-repeat left top;
  background-size: 40px;
}
h4.sol-4{
  background: url(../img/2-4-1.png) no-repeat left top;
  background-size: 40px;
}

/*緑色*/
p.green{
  color:#4eb564;
}
div.lightblue{
  background-color: #65aadd;
  padding: 10px;
  font-weight: bold;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

h2.fukidashi {
    position: relative;
    padding: 1rem 1rem 1rem 1.5rem;
    border: 3px solid #4eb564;
    font-weight: bold;
    font-size: 26px;
    color:#4eb564;
}

h2.fukidashi:before,
h2.fukidashi:after {
    position: absolute;
    top: 100%;
    left: 30px;
    height: 0;
    width: 0;
    border: solid transparent;
    content: "";
}

h2.fukidashi:before {
    margin-left: -12px;
    border-color: transparent;
    border-top-color: #4eb564;
    border-width: 12px;
}

h2.fukidashi:after {
    margin-left: -8px;
    border-color: transparent;
    border-top-color: white;
    border-width: 8px;
}
.left{text-align: left;}
.left{text-align: center;}
.right{text-align: right;}


.fukidashi-maru {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  padding: 24px 16px;
  border-radius: 9999px;
  background-color: #d1e5f5;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
}

.fukidashi-maru::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #d1e5f5 transparent transparent;
  translate: calc(-50% - 0.4px) 100%;
}

/*角丸見出し色*/
.box-green{
background-color:#4eb564;
color:#ffffff;
border-radius: 30px;
    padding:10px 20px 10px 20px;
    width:fit-content;
    margin:0 auto;
}


/*ボタン色*/
.btn {
    padding: 14px 24px;
    border: 0 none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ボタン */
.btn-green {
  color: #fff;
  background-color: #4eb564;
  border-color: #4eb564;
}

.btn-green:hover {
  color: #fff;
  background-color: #4eb564;
  border-color: #4eb564;
}

.btn-green:focus, .btn-green.focus {
  box-shadow: 0 0 0 0.2rem rgba(167, 218, 178, 1);
}

.btn-green.disabled, .btn-green:disabled {
  color: #fff;
  background-color: #4eb564;
  border-color: #4eb564;
}

.btn-green:not(:disabled):not(.disabled):active, .btn-green:not(:disabled):not(.disabled).active,
.show > .btn-green.dropdown-toggle {
  color: #fff;
  background-color: #4e9764;
  border-color: #4e9764;
}

.btn-green:not(:disabled):not(.disabled):active:focus, .btn-green:not(:disabled):not(.disabled).active:focus,
.show > .btn-green.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(167, 218, 178, 1);
}