@media (min-width: 751px){
    body{max-width: 740px;
        margin: auto;
      background-color: #ffffff;}}

      @media only screen and (max-width: 740px) {
        body{max-width: 100%;
            margin: auto;
          background-color: #ffffff;}}

          img{width: 100%;
          max-width: 100%;}

p,h1{font-family: Arial, Helvetica, sans-serif;}



h1{font-size: 24px;
    line-height: 1.3em;
    margin-left: 8px;
    margin-right: 8px;

     background: linear-gradient(transparent 70%, #a7d6ff 70%);
}

h2 {
  padding: 1rem 2rem;
  border-left: 5px solid #000;
  background: #f4f4f4;
}

h3 {
  position: relative;
  padding: 1.5em;
  background: #e0edff;
}

.p1{
   margin: 4px 0;
   font-size: 18px;
}

h3:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #e0edff;
  width: 0;
  height: 0;
}

p{font-size: 16px;
    line-height: 1.8em;
    margin-left: 8px;
    margin-right: 8px;
}

h4 {
 border-color: #8badd0;
 background-color: #edf2f8;
 border-width: 0 0 0 6px;
 font-weight: 600;
 padding: 12px 20px;
 margin:1em 0;
 overflow-wrap: break-word;
 border-style: solid;
 border-radius: 4px;
 letter-spacing: 0.04em;
 box-sizing: border-box;
}

.red{color: red;
font-weight: 600;
}

.blue{color: rgb(0, 26, 255);
  font-weight: 600;}

  .time{text-align: right;}
  .time2{text-align: left;}

  .heading-1 {
    padding: .5em .7em;
    border-left: 5px solid #ff0000;
    color: #333333;
}

.sb-box {
    position: relative;
    overflow: hidden;
  }

  .icon-img {
    position: absolute;
    overflow: hidden;
    top: 0; 
    width: 105px; 
    height: 105px; 
  }

  .icon-img-left {
    left: 0; 
  }

  .icon-img-right {
    right: 0; 
  }

  .icon-img img {
    border-radius: 50%; 
    border: 2px solid rgb(255, 255, 255); 
    width: 80px;
  }

  .icon-name {
    position: absolute;
    width: 105px; 
    text-align: center; 
    top: 105px; 
    color: rgb(0, 0, 0); 
    font-size: 14px;
    font-weight: 600;
  }

  .icon-name-left {
    left: 0; 
  }

  .icon-name-right {
    right: 0; 
  }

  .sb-side {
    position: relative;
    float: left;
    margin: 0 105px 40px 105px;
  }
  .sb-side-right {
    float: right;
  }

  .sb-txt-right {
    position: relative;
    border: 2px solid #63ff97; 
    border-radius: 6px; 
    background: #63ff97;
    color: rgb(0, 0, 0); 
    font-size: 15px; 
    line-height: 1.7; 
    padding: 18px; 
  }

  .sb-txt-left {
    position: relative;
    border: 2px solid #272727; 
    border-radius: 6px; 
    background: #272727;
    color: rgb(255, 255, 255); 
    font-size: 15px; 
    line-height: 1.7; 
    padding: 18px; 
  }

  .sb-txt > p:last-of-type {
    padding-bottom: 0; 
    margin-bottom: 0; 
  }

  .sb-txt:before {
    content: "";
    position: absolute;
    border-style: solid;
    top: 16px; 
    z-index: 3;
  }
  .sb-txt:after {
    content: "";
    position: absolute;
    border-style: solid;
    top: 15px; 
    z-index: 2;
  }

  .sb-txt-left:before {
    left: -7px;
    border-width: 7px 10px 7px 0;
    border-color: transparent #272727 transparent transparent;
  }
  .sb-txt-left:after {
    left: -10px; 
    border-width: 8px 10px 8px 0; 
    border-color: transparent #272727 transparent transparent; 
  }

  .sb-txt-right:before {
    right: -7px;
    border-width: 7px 0 7px 10px;
    border-color: transparent transparent transparent #63ff97; 
  }
  .sb-txt-right:after {
    right: -10px;
    border-width: 8px 0 8px 10px; 
    border-color: transparent transparent transparent #63ff97; 
  }

  @media (max-width: 767px) {
    .icon-img {
      width: 90px; 
      height: 105px; 
    }

    .icon-name {
      width: 90px; 
      top: 90px;
      font-size: 14px; 
    }

    .sb-side-left {
      margin: 0 0 50px 100px; 
    }

    .sb-side-right {
      margin: 0 100px 50px 0;
    }

    .sb-txt {
      padding: 14px;
    }
  }

  .flash{
    animation: flash 1.5s linear infinite;
    color: red;
  }

  @keyframes flash {
    0%,100% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }
  }

  .center{ text-align: center;
  font-size: 0.7rem;
  margin-top: 8%;}

    @keyframes shiny {
      0% { left: -20%; }
      10% { left: 120%; }
      100% { left: 120%; }
  }

  .shiny-btn {
    position: relative;
    display: block;
    width: auto;
    overflow: hidden;
}

.shiny-btn::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 40px;
    height: 100%;
    transform: scale(2) rotate(20deg);
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);

    animation-name: shiny;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/*口コミ左*/
.balloon-009 {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 0 22px;
}

.balloon-009 img {
  max-width: 70px;
  height: 100%;
  border: 3px solid #f2f2f2;
  border-radius: 50%;
}

.balloon-009 p {
  position: relative;
  margin: 3px 0 0;
  padding: .8em 1em;
  border-radius: 5px;
  background-color: #f2f2f2;
  color: #333333;
}

.balloon-009 p::before {
  position: absolute;
  left: -15px;
  width: 15px;
  height: 30px;
  background-color: #f2f2f2;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  content: '';
}

/*口コミ右*/
.balloon-010 {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 0 22px;
}

.balloon-010 img {
  max-width: 70px;
  height: 100%;
  border: 3px solid #f2f2f2;
  border-radius: 50%;
}

.balloon-010 p {
  position: relative;
  margin: 3px 0 0;
  padding: .8em 1em;
  border-radius: 5px;
  background-color: #f2f2f2;
  color: #333333;
}

.balloon-010 p::before {
  position: absolute;
  right: -15px;
  width: 15px;
  height: 30px;
  background-color: #f2f2f2;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: '';
}
        /*ポップアップ*/
        .popup {
          position: fixed;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          z-index: 9999;
          opacity: 0;
          visibility: hidden;
          transition: .6s;
        }
        .popup.is-show {
          opacity: 1;
          visibility: visible;
        }
        .popup-inner {
          position: relative;
          width: 100%;
          margin:0 auto;
          padding: 0px;
          max-width: 600px;
          top:10%;
          background-color: #61616100;
          border-radius: 10px;
          text-align:center;
          z-index: 2;
        }
        .popup-inner img {
          width: 80%;
        }
        .close-area {
          display:inline-block;
          cursor: pointer;
          text-align:center;
        }
        .black-background {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0,0,0,.8);
          z-index: 1;
          cursor: pointer;
        }