html { 
    font-family: zen-old-mincho, sans-serif;
    color: #707070;
}

body {
    min-width: 375px;
}

.of-hidden {
    overflow: hidden;
}

span {
    display: inline-block;
}

picture {
    display: block;
    overflow: hidden;
}

img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

a {
    display: inline-block;
}

@media screen and (min-width: 841px) {
    .hover-nomal {
        transition: opacity .6s 0s cubic-bezier(.44,.14,.09,1.02);
    }

    .hover-nomal:hover {
        opacity: .73;
    }

    .hover-color {
        transition: background-color 0.3s, color 0.3s, border-color 0.3s;
        color: #707070;
        border-color: #fff;
    }

    .hover-color:hover {
        background-color: #707070; /* ★ホバー時: 背景を濃いグレー */
        color: #FFF;           /* ★ホバー時: 文字を白 */
        border-color: #707070;
    }
}

/* layout */
.l-wrapper {
    padding-left: 40px;
    padding-right: 40px;
}

.l-inner {
    margin: 0 auto;
    max-width: 1240px;
}

@media screen and (max-width: 840px) {
    .l-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .l-inner {
        max-width: 500px;
    }
}

/* common */
.pc-only {
    display: block;
}

.br-pc-only {
    display: inline-block;
}

.sp-only {
    display: none;
}

.br-sp-only {
    display: none;
}

@media screen and (max-width: 900px) {
    .pc-only {
        display: none;
    }

    .br-pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .br-sp-only {
        display: inline-block;
    }
}

.c-mv {
    position: fixed;
    width: 50%;
    height: 100vh;
    left: 0;
    top: 0;
}

.c-mv__img {
    width: 100%;
    height: 100%;
}

.c-mv__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.c-mv__logo {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 133px;
}

.c-mv__arrow {
    display: none;
}

.c-mv__txt {
    display: none;
}

.c-contents {
    padding-left: 50%;
}

.c-contents__inner {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
}

.c-btn__link {
    margin-left: auto;
    margin-right: 0;
    width: 214px;
    padding: 16px 23px 19px 24px;
    border-radius: 100vh;
    border: 1px solid #707070;
    cursor: pointer;
}

.c-btn__link a {
    width: 100%;
    height: 100%;
}

.c-btn__link--txt {
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.87;
    white-space: nowrap;
}

@media screen and (max-width: 840px) {
    .c-mv {
        width: 100%;
        height: 100vh;
        left: 0;
        top: 0;
        overflow: hidden;
    }

    .c-mv__logo {
        display: none;
    }

    .c-mv__arrow {
        display: block;
        width: 12px;
        height: 20px;
        position: absolute;
        bottom: 180px;
        left: 50%;
        transform: translateX(-50%);
    }

    @keyframes arrow-bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px); 
    }
    100% {
        transform: translateY(0);
    }
}

    .c-mv__arrow img {
        animation-name: arrow-bounce;
        animation-duration: 2s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
    }

    .c-mv__txt {
        position: absolute;
        display: block;
        bottom: 145px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
    }

    .c-contents {
        padding-left: 0;
        margin-top: 100vh;
        background-color: #fff;
        position: relative;
        z-index: 2;
    }

    .c-contents__inner {
        max-width: 500px;
    }
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
.p-header {
    position: fixed;
    top: 0;
    left: 50%;
    width: 50vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 20px 0 20px;
    z-index: 3;
}

.p-header__logo {
    width: 173px;
    position: relative;
    transition: opacity 0.3s ease;
}

.p-header__logo img.--black {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}

.p-header__logo img.--white {
    top: 0;
    left: 0;
    opacity: 0;
}

.p-header__hamburger {
    position: relative;
    width: 100;
}

.p-header__hamburger--btn {
    width: 35px;
    height: 35px;
    gap: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}

.p-header__hamburger--btn span {
    background-color: #000;
    width: 100%;
    height: 2px;
    transition: 0.3s ease;
}

.p-header.active .p-header__hamburger--btn span:nth-child(1) {
    transform: translate(0, 3px) rotate(45deg);
}

.p-header.active .p-header__hamburger--btn span:nth-child(2) {
    transform: translate(0, -3px) rotate(-45deg);
}

.p-header.active a {
    opacity: 0;
}

.p-header__hamburger--list {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100vw;
    height: 100vh;
    padding: 100px 50px;
    background: url(../img/top-bg.webp) no-repeat center center/cover;
    content: '';
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
    text-align: center;
}

.p-header__hamburger.active .p-header__hamburger--list {
    opacity: 1;
    pointer-events: all;
}

@media screen and (max-width: 840px) {
    .p-header {
        padding: 20px 20px 0;
        left: 0;
        width: 100%;
    }

    .p-header__logo img.--black {
        opacity: 0;
    }

    .p-header__logo img.--white {
        position: relative;
        opacity: 1;
    }

    .p-header.scrol .p-header__logo img.--black {
        opacity: 1;
    }

    .p-header.scrol .p-header__logo img.--white {
        opacity: 0;
    }

    .p-header .p-header__hamburger--btn span {
        background-color: #fff;
        width: 100%;
        height: 2px;
        transition: 0.3s ease;
    }

    .p-header.scrol .p-header__hamburger--btn span {
        background-color: #000;
    }
}
/*===========================================================================*/
/*  sv  */
/*===========================================================================*/
.p-topSv {
    padding: 105px 20px 150px 20px;
    position: relative;
}

.p-topSv__inner {
    width: calc(100%*(270/380));
    margin: 0 auto;
}

.p-topSv__title--box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-bottom: 100px;
}

.p-topSv__title--box.--top::before {
    background-color: #c7c7c7;
    content: '';
    height: 173px;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 1.5px;
}

.p-topSv__title--01 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.43;
    margin-top: 6px;
}

.p-topSv__title--02 {
    display: flex;
    gap: 17px;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.55;
}

.p-topSV__txt--roted {
    transform: rotate(90deg);
}

.p-topSv__title--02 span.--01 {
    margin-top: 115px;
}

.p-topSv__img {
    margin-top: 80px;
}

.p-topSv__txt {
    margin-top: 60px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.87;
}

@media screen and (max-width: 840px) {
    .p-topSv {
        padding-left: 35px;
        padding-right: 35px;
    }
}

/*===========================================================================*/
/*  slider  */
/*===========================================================================*/
@keyframes slide-endless {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-700px);
    }
}

.p-topSlider {
    position: absolute;
    height: 195px;
    width: 50vw;
    bottom: -98px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.p-top__bg::before {
    background: url('../img/top-bg.webp') no-repeat center center/cover;
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    width: 50vw;
    transform: translate(-50%, 0);
    z-index: -1;
}

.p-topSlider__inner {
    display: flex;
    gap: 15px;
    width: fit-content;
    animation-name: slide-endless;
    animation-duration: 13s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.p-topSlider__img {
    flex-shrink: 0;
    width: 348px;
}

.p-topSlider__img img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 840px) {
    .p-topSlider {
        width: 100vw;
    }
}

/*===========================================================================*/
/*  bg  */
/*===========================================================================*/
.p-top__bg {
    position: relative;
}

.p-top__bg::before {
    background: url('../img/top-bg.webp') no-repeat center center/cover;
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    width: 50vw;
    transform: translate(-50%, 0);
    z-index: -1;
}

@media screen and (max-width: 840px) {
    .p-top__bg::before {
        width: 100vw;
    }
}

/*===========================================================================*/
/*  Service  */
/*===========================================================================*/
.p-topService {
    padding: 170px 20px 0 20px;
}

/* .p-topService.--top {
    margin-top: -100px;
} */

.p-topService__subtitle {
    font-size: 13px;
    line-height: 1.87;
}

.p-topService__title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.87;
    margin-top: 50px;
    padding-left: 17%;
}

.p-topService__txt {
    margin-top: 40px;
    padding-left: 17%;
    font-size: 15px;
    line-height: 1.87;
}

.p-topService__link {
    margin-top: 40px;
}

.p-topService__img {
    margin-top: 50px;
}

@media screen and (max-width: 840px) {
    .p-topService {
        padding-left: 35px;
        padding-right: 35px;
    }
}

/*===========================================================================*/
/*  Point  */
/*===========================================================================*/
.p-topPoint {
    padding: 100px 20px 0 20px;
}

.p-topPoint__subtitle {
    font-size: 13px;
    line-height: 1.87;
}

.p-topPoint__title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.87;
    margin-top: 50px;
    padding-left: 17%;
}

.p-topPoint__txt {
    margin-top: 40px;
    padding-left: 17%;
    font-size: 15px;
    line-height: 1.87;
}

.p-topPoint__link {
    margin-top: 40px;
}

.p-topPoint__img {
    margin-top: 50px;
}

@media screen and (max-width: 840px) {
    .p-topPoint {
        padding-left: 35px;
        padding-right: 35px;
    }
}

/*===========================================================================*/
/*  Achievements  */
/*===========================================================================*/
.p-topAchievements {
    padding: 100px 20px;
}

.p-topAchievements__subtitle {
    font-size: 13px;
    line-height: 1.87;
}

.p-topAchievements__title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.87;
    margin-top: 50px;
    padding-left: 17%;
}

.p-topAchievements__txt {
    margin-top: 40px;
    padding-left: 17%;
    font-size: 15px;
    line-height: 1.87;
}

.p-topAchievements__link {
    margin-top: 40px;
}

.p-topAchievements__img {
    margin-top: 50px;
}

.p-topReserve__link {
    margin: 65px auto 0;
}

@media screen and (max-width: 840px) {
    .p-topAchievements {
        padding-left: 35px;
        padding-right: 35px;
    }
}

/*===========================================================================*/
/*  Info  */
/*===========================================================================*/
.p-topInfo {
    padding: 45px 20px 0 20px;
}

.p-topInfo__title {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.87;
    text-align: center;
}

.p-topInfo__subtitle {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.87;
    text-align: center;
}

.p-topInfo__list {
    width: 100%;
    margin: 35px auto 0;
}

.p-topInfo__list li a {
    display: flex;
    justify-content: space-between;
}

.p-topInfo__list--date {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.87;
    width: 100px;
}

.p-topInfo__list--txt {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.87;
    width: calc(100% - 100px);
}

.p-topInfo__link {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
}

.p-topInfo__link p {
    margin-top: 28px;
    font-size: 13px;
    line-height: 1.87;
}

@media screen and (max-width: 840px) {
    .p-topInfo {
        padding-left: 35px;
        padding-right: 35px;
    }
}

/*===========================================================================*/
/*  Access  */
/*===========================================================================*/
.p-topAccess {
    padding: 40px 20px 45px 20px;
}
.p-topAccess.--top {
    padding: 90px 20px 45px 20px;
}

.p-topAccess__title {
    font-size: 16px;
    line-height: 1.87;
    font-weight: 900;
    text-align: center;
}

.p-topAccess__subtitle {
    font-size: 13px;
    line-height: 1.87;
    text-align: center;
    margin-top: 4px;
}

.p-topAccess__address {
    font-size: 13px;
    line-height: 1.87;
    text-align: center;
    margin-top: 15px;
}

.p-topAccess__map {
    width: 94%;
    height: 310px;
    margin: 30px auto 0;
}

.p-topAccess__map iframe {
    width: 100%;
    height: 100%;
}

/*===========================================================================*/
/*  footer  */
/*===========================================================================*/
.p-footer {
    background: #707070;
    color: #fff;
}

.p-footer__inner {
    padding: 25px 35px 85px 35px;
}

.p-footer__txt01 {
    text-align: center;
    font-size: 13px;
    line-height: 1.87;
}

.p-footer__tell {
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 1.87;
    font-weight: 900;
}

.p-footer__list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.p-footer__list li {
    font-size: 12px;
    line-height: 1.87;
}

.p-footer__txt02 {
    margin-top: 30px;
    font-size: 12px;
    line-height: 1.87;
}

.p-footer__snslink {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.p-footer__snslink li {
    width: 57px;
}

.p-footer__snslink--img img {
    border-radius: 15px;
}

.p-footer__txt03 {
    margin-top: 17px;
    font-size: 12px;
    line-height: 1.87;
}

.p-footer__copyright {
    background-color: #FFF;
    width: 100%;
    padding: 4px 0 25px 0;
}

.p-footer__copyright p {
    color: #707070;
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
}

/*===========================================================================*/
/*  service  */
/*===========================================================================*/
.p-serviceSv {
    padding: 105px 20px 70px 20px;
}

.p-serviceSv__inner {
    width: calc(100%*(295/380));
    margin: 0 auto;
}

.p-serviceSv__title--box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
}

.p-serviceSv__title--01 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.43;
    margin-top: 6px;
}

.p-serviceSv__title--02 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.5;
}

.p-serviceSv__img {
    margin-top: 80px;
}

.p-serviceSv__txt {
    margin-top: 60px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.87;
}

@media screen and (max-width: 840px) {
    .p-serviceSv {
        padding-left: 35px;
        padding-right: 35px;
    }
}


.p-service {
    padding: 58px 20px 124px 20px;
}

.p-service__subtitle {
    margin-top: 60px;
    font-size: 13px;
    line-height: 1.87;
}

.p-service__subtitle.--01 {
    margin-top: 0;
}

.p-service__title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.87;
    margin-top: 37px;
}

.p-service__img {
    margin-top: 42px;
}

.p-service__txt {
    margin-top: 42px;
    font-size: 15px;
    line-height: 1.87;
}

.p-service__link {
    margin: 54px auto 0;
}

@media screen and (max-width: 840px) {
    .p-service {
        padding-left: 35px;
        padding-right: 35px;
    }
}

/*===========================================================================*/
/*  about  */
/*===========================================================================*/
.p-aboutSv {
    padding: 105px 20px 70px 20px;
}

.p-aboutSv__inner {
    width: calc(100%*(295/380));
    margin: 0 auto;
}

.p-aboutSv__title--box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
}

.p-aboutSv__title--01 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.43;
    margin-top: 6px;
}

.p-aboutSv__title--02 {
    display: flex;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.5;
}

.p-aboutSv__img {
    margin-top: 80px;
}

.p-aboutSv__txt {
    margin-top: 60px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.87;
}

@media screen and (max-width: 840px) {
    .p-aboutSv {
        padding-left: 35px;
        padding-right: 35px;
    }
}

.p-outline {
    padding: 0 20px 55px 20px;
}

.p-outline__title {
    font-size: 13px;
    line-height: 1.85;
}

.p-outline__list {
    margin-top: 42px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.p-outline__list--txt {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px #c6c6c6;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.p-outline__list--txt dt {
    width: 150px;
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
}

.p-outline__list--txt dd {
    width: calc(100% - 150px);
    font-size: 15px;
    line-height: 1.3;
}

.p-outline__link {
    width: 100%;
    margin-top: 65px;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 900;
    text-align: center;
}

.p-message {
    padding: 40px 20px 50px;
}

.p-message__title {
    font-size: 22px;
    line-height: 1.85;
    font-weight: 900;
}

.p-message__txt {
    margin: 50px auto 0;
    font-size: 15px;
    line-height: 2;
    width: calc(100%*(295/380));
}

/*===========================================================================*/
/*  info  */
/*===========================================================================*/
.p-infoSv {
    padding: 105px 20px 70px 20px;
}

.p-infoSv__inner {
    width: calc(100%*(295/380));
    margin: 0 auto;
}

.p-infoSv__title--box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
}

.p-infoSv__title--01 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.43;
    margin-top: 6px;
}

.p-infoSv__title--02 {
    display: flex;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.5;
}

.p-infoSv__img {
    margin-top: 80px;
}

.p-infoSv__txt {
    margin-top: 60px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.87;
}

@media screen and (max-width: 840px) {
    .p-infoSv {
        padding-left: 35px;
        padding-right: 35px;
    }
}

.p-info {
    padding: 0 20px 50px 20px;
}

.p-info__tag {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.p-info__tag a {
    position: relative;
    width: 33.3%;
    text-align: center;
    padding-bottom: 6px;
}

.p-info__tag a::before {
    background-color: #8E8383;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: .5px;
}

.p-info__tag a:nth-of-type(1)::before {
    content: none;
}

.p-info__tag a span {
    position: relative;
}

.p-info__tag a.--active span {
    font-weight: 900;
}

.p-info__tag a.--active span::before {
    position: absolute;
    background-color: #8E8383;
    content: '';
    height: .5px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -7px;
    width: 52px;
}

.p-info__content {
    position: relative;
    margin-top: 42px;
}

.p-info__content .no-post {
    padding-top: 20px;
}

.p-info__content::before {
    background-color: #8E8383;
    content: '';
    height: .5px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.p-info__title {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.85;
}

.p-info__date {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.85;
}

.p-info__img {
    margin-top: 15px;
    aspect-ratio: 355/188;
}
.p-info__img img {
    height: 100%;
    object-fit: cover;
}

.p-info__txt {
    margin-top: 33px;
    font-size: 15px;
    line-height: 1.85;
}

.p-info__txtmore {
    width: 100%;
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.85;
    text-align: end;
}

.c-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.c-pagination__num {
    font-size: 16px;
    line-height: 1.1;
    position: relative;
}
.c-pagination__num.--active {
    text-decoration: underline;
}

/*===========================================================================*/
/*  contact  */
/*===========================================================================*/
.p-contactSv {
    padding: 105px 20px 70px 20px;
}

.p-contactSv__inner {
    width: calc(100%*(295/380));
    margin: 0 auto;
}

.p-contactSv__title--box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
}

.p-contactSv__title--01 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.43;
    margin-top: 6px;
}

.p-contactSv__title--02 {
    display: flex;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.5;
}

.p-contactSv__img {
    margin-top: 80px;
}

.p-contactSv__txt {
    margin-top: 60px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.87;
}

@media screen and (max-width: 840px) {
    .p-contactSv {
        padding-left: 35px;
        padding-right: 35px;
    }
}

.p-contact {
    padding: 0px 20px 0 20px;
}

.p-contact__content {
    position: relative;
    padding-top: 35px;
    padding-bottom: 30px;
}

.p-contact__content::before {
    background-color: #707070;
    content: '';
    height: .5px;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.p-contact__content--txt {
    text-align: center;
    font-size: 15px;
    line-height: 1.85;
}

.p-contact__content--btn {
    margin: 35px auto 0;
    width: 298px;
    height: 61px;
}

.p-contact__content--btn.--01{
    margin: 20px auto 0;
}

.p-contact__content--btn a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    border: solid 1px #707070;
    border-radius: 50vw;
    padding: 14px 18px 13px 28px;
}

.p-contact__btn--img {
    position: absolute;
    top: 14px;
    left: 29px;
    width: 33px;
    height: 33px;
}

.p-contact__btn--img img {
    border-radius: 50%;
}

.p-contact__btn--txt {
    padding-left: 40px;
    text-align: center;
    font-size: 21px;
    line-height: 1.85;
    font-weight: 900;
}

.p-contact__btn--txt.--01 {
    padding-left: 50px;
}

.p-contact__btn--txt.--01 {
    font-size: 25px;
}

/*===========================================================================*/
/*  single  */
/*===========================================================================*/
.p-singleSv {
    padding: 105px 20px 70px 20px;
}

.p-singleSv__inner {
    width: calc(100%*(295/380));
    margin: 0 auto;
}

.p-singleSv__title--box {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.p-singleSv__title--01 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.43;
    margin-top: 6px;
}

.p-singleSv__title--02 {
    display: flex;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.5;
}

.p-singleSv__img {
    margin-top: 80px;
}

.p-singleSv__txt {
    margin-top: 60px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.87;
}

@media screen and (max-width: 840px) {
    .p-singleSv {
        padding-left: 35px;
        padding-right: 35px;
    }
}

.p-post {
    padding: 70px 20px 20px;
}

.p-single__head {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.85;
}

.p-single__infos {
    margin-top: 5px;
    display: flex;
    gap: 10px;
}

.p-single__date {
    font-size: 13px;
    line-height: 1.85;
}

.p-single__tags {
    font-size: 13px;
    line-height: 1.85;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.p-single__thumb {
    margin-top: 15px;
}

.p-single__content {
    margin-top: 30px;
}

#post-content p {
    font-size: 15px;
    line-height: 1.85;
}

#post-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.4;
    position: relative;
}

#post-content h2::before {
    background-color: #707070;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

#post-content h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.4;
}
