#sPoint.owner-voice {
  .pre-ov {
    margin: 30px auto;
    text-align: center;
    padding: 0 5%;
    max-width: 1000px;
    p {
      font-size: 14px;
      margin-bottom: 0;
      color: #727272;
      line-height: 170%;
    }
  }

  #ov-sec {
    padding: 50px 5%;

    h2 {
      margin: 0 auto;
      margin-bottom: 100px;
      padding: 10px;
      border-bottom: 3px solid #f39800;
    }

    .ov-wrap {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px 20px;

      .ov-box {
        border-radius: 10px;
        border: 2px solid #f39800;
        padding: 10px;
        width: 100%;
        max-width: 600px;
        display: flex;

        flex-wrap: nowrap;
        gap: 10px;
        transition: all 0.3s;
        position: relative;
        background-color: #fff8ea;
        .ov-thum {
          width: clamp(100px, 20%, 130px);
          height: auto;
          aspect-ratio: 1/1;
          transform: translate(-10px, 10px);
          display: flex;
          align-items: end;
          img {
            height: 100%;
            width: 100%;
            object-position: 100% 100%;
            object-fit: cover;
            border-radius: 0 0 0 10px;
          }
        }

        .ov-info {
          flex: 1;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          .ov-tag {
            padding-left: 0;
            li {
              display: inline-block;
              padding: 2px 5px;
              margin: 2px;
              background-color: #c4e0f1;
              border-radius: 5px;
              font-size: 10px;
            }
          }
          h3 {
            font-size: 1.3rem;
            span {
              display: inline;
            }
          }
          p {
            font-size: 1rem;
            color: #417392;
            margin-bottom: 0;
            text-align: right;
            padding-right: 20px;
          }
        }
      }

      .ov-box::after {
        content: "";
        position: absolute;
        bottom: calc(10px + 0.45rem);
        right: 10px;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 8px solid #f39800;
        display: block;
        transition: all 0.4s;
      }
      .ov-box:hover {
        border: 2px solid #f5c36c;
        background-color: white;
      }
      .ov-box:hover::after {
        right: 5px;
      }
    }
  }
}

.ov-br{
  margin-block: 20px;
  text-align: left;
  width: 90%;
  max-width: 1300px;
  margin: 10px auto;
  font-size: 12px;
  font-weight: 600;

  a{
    color: #f39800;
  }

  .aioseo-breadcrumb{
    color: #727272;
  }

  .aioseo-breadcrumb-separator{
    display: inline-block;
    margin:0 4px ;
  }

  .aioseo-breadcrumb:last-child,
.aioseo-breadcrumbs li:last-child,
.aioseo-breadcrumbs .aioseo-breadcrumb:last-child {
	display: inline-block;
	max-width: 28ch;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: bottom;
}
}

#sPoint.owner-single{
  .os-top{
    position: relative;
    width: 100%;
    /* height: 700px; */

    .ost-back{
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 50%;
      z-index: 1;
    }

  }

  .ost-flex{
    width: 95%;
    height: 100%;
    padding-top: 150px;
    max-width: 1300px;
    margin: 0 auto;
    flex-direction: column;
    position: relative;
    z-index: 2;
    justify-content: space-between;

    .ost-box{
      p{
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        overflow: hidden;
        span{
          display: block;
          background-color: #f39800;
          width: fit-content;
          max-width: 0;
          font-size: 1.6rem;
          font-weight: 600;
          line-height: 110%;
          padding:  10px 0;
          animation: os-title .7s ease-in forwards ;
          overflow: hidden;
          white-space: nowrap;
        }

        span:nth-child(1){
          animation-delay: .1s;
        }

        span:nth-child(2){
          animation-delay: .3s;
        }

        span:nth-child(3){
          animation-delay: .5s;
        }
      }

      h1{
        color: #f39800 ;
        font-size: 1.1rem;
        margin-bottom: 20px;
      }

      ul{
        padding-left: 0;
        li{
          display: inline-block;
              padding: 2px 5px;
              margin: 2px;
              background-color: #c4e0f1;
              border-radius: 5px;
              font-size: 12px;
              font-weight: 600;
        }
      }

      .ost-1{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;

        span{
          color: white;
          font-size: 1rem;
          font-weight: 600;
        }
      }

      .ost-n{
        color: white;
        font-weight: 600;
        font-size: 1.8rem;
        margin-top: 20px;
      }
    }

    .ost-o{
      width: clamp(200px, 55%, 300px);
      margin-inline: auto 0;
    }
  }

  @media screen and (min-width:1200px) {
    .os-top{
      height: auto;
      min-height: 500px;
    }

    .ost-flex{
      flex-direction: row;
      align-items: end;

      .ost-box{
        margin-bottom: 50px;
        p{
          span{
            font-size: 3rem;
          }
        }
      }

      .ost-o{
        width: 300px;
      }
    }
  }

  .os-content{
    width: 90%;
    max-width: 1300px;
    margin: 100px auto;

    .pre-osc{
      font-size: 50px;
      font-weight: 900;
      color: #f39800;
      display: block;
    }

    h2{
      display: block;
      width: fit-content;
      margin-top: 10px;
      margin-bottom: 50px;
      border-bottom: 5px solid #f39800;
      padding-bottom: 5px;
    }

    .osc-flex{
      width: 100%;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: start;
      gap: 50px;

      .osf-l{
        width: clamp(300px, 100%, 600px);
        p{
          font-size: 1.2rem;
          font-weight: 600;

          a{
            margin-top: 20px;
      display: block;
      font-size: 100%;
      margin-inline:5px;
      color: #f39800;
      transition: all .3s;
      border-bottom: 2px solid #f39800;
      padding-bottom: 3px;
      width: fit-content;
    }

    a:hover{
      color: #417392;
      border-bottom: 2px solid #417392;
    }
        }
      }

      .os-img{
        width: clamp(300px, 100%, 600px);
        border-radius: 15px;
      }
    }
  }

  .under-link{
    text-align: center;
    line-height: 170%;
    span{
      display: inline-block;
    }

    a{
      display: inline-block;
      font-size: 120%;
      margin-inline:5px;
      color: #f39800;
      transition: all .3s;
      border-bottom: 2px solid #f39800;
      padding-bottom: 3px;
    }

    a:hover{
      color: #417392;
      border-bottom: 2px solid #417392;
    }
  }

  .BT{
    display: block;
    margin: 50px auto;
    padding: 20px 30px;
    font-size: 24px;
    color: #16212d;
    background-color: #f39800;
    border: 2px solid #f39800;
    border-radius: 30px;
    width: fit-content;
    transition: all .3s;
  }

  .BT:hover{
    background-color: white;
  }
}



@keyframes os-title{
  0%{
    max-width: 0;
    padding: 10px 0;
  }100%{
    max-width: 1000px;
    padding:10px 15px;
  }
}