/* 
///////////////////
COMMON
/////////////////// 
*/

@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
}
*:focus {
    outline: none;
}
html {
    font-size: 62.5%;
    font-weight: 300;
    scroll-behavior: smooth;
}
body{
    font-size: 1.4rem;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
a {
    text-decoration: none;
    color: #000;
}
p{
    font-size: 1.6rem;
    line-height: 2;
}
ul,li{
    list-style: none;
}
img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
.pc{
    display: block;
}
.smp{
    display: none;
}
@media screen and (max-width: 979px) {
    .pc{
        display: none;
    }
    .smp{
        display: block;
    }
}
article{
    padding: 75px 0 120px;
    background-color: #F0F0F0;
}
@media screen and (max-width: 979px) {
    article{
        padding: 60px 0 80px;
    }
}
.width-90{
    width: 90%;
    margin: 0 auto;
}
.flex-space-between-center{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
:target {
    scroll-margin-top: 100px;
}
@media screen and (max-width: 979px) {
    :target {
        scroll-margin-top: 80px;
    }
}
@media screen and (max-width: 767px) {
    :target {
        scroll-margin-top: 60px;
    }
}
/* 
///////////////////
下層
/////////////////// 
*/
.under-head{
    border-bottom: 1px solid #000;
    padding: 120px 0 30px;
    margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
    .under-head{
        padding: 60px 0 30px;
    }   
}
.under-head-title{
    display: flex;
    align-items: flex-end;
}
.under-head-title h1{
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0 0 3px;
}
.under-head-title .under-head-title-en{
    font-size: 6rem;
    font-family: "Libre Caslon Display", serif;
    font-weight: 300;
    line-height: 1;
    margin: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
    .under-head-title .under-head-title-en{
        font-size: 4.6rem;
        margin: 0 0 20px
    }
    .under-head-title{
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
}

/* 
///////////////////
TOP
  ∟ ABOUT一覧 
    ∟ HISTORY
/////////////////// 
*/
.pagination{
    padding: 60px 0 0;
}
.page-numbers{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.page-numbers li a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border: 1px solid #ddd;
    border-radius: 3px;
}
.page-numbers.current{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border: 1px solid #ddd;
    background-color: #1B4B5A;
    color: #fff;
    border-radius: 3px;
}

/* 
///////////////////
NEWS
  ∟ NEWS一覧 
/////////////////// 
*/
.news-item-img {
    margin: 0 0 20px 0;
    position: relative;
    width: 100%;
    padding-top: 60%;  /* 4:3のアスペクト比（3/4 = 0.75 = 75%） */
}
.news-item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}
.news-item-text h3{
    font-size: 1.6rem;
    font-weight: 300;
}
.news-item-date-cat{
    display: flex;
    align-items: center;
    margin: 0 0 15px;
}
@media screen and (max-width: 979px) {
    .news-item-date-cat{
        margin: 0 0 10px;
    }
}
.news-item-date-cat span.news-item-date{
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1;
    margin: 0 10px 0 0;
}
.news-item-date-cat span.news-item-cat{
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    display: block;
    padding: 5px 10px;
    background-color: #005D72;
    color: #fff;
    border-radius: 3px;
}
@media screen and (max-width: 979px) {
    .news-item-date-cat span.news-item-cat{
        margin: 0;
    }
}
.news-all-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px 20px;
}

.news-all-list > a {
    margin-bottom: 0;
}
@media screen and (max-width: 979px) {
    .news-all-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .news-all-list {
        grid-template-columns: 1fr;
    }
}
.news-all-cat{
    margin: 0 0 60px;
}
.news-all-cat ul{
    display: flex;
    gap: 40px;
}
@media screen and (max-width: 979px) {
    .news-all-list a .news-item .news-item-img{
        margin: 0 0 10px;
    }
}

/* 
///////////////////
下層
/////////////////// 
*/
.page-contents-wrap{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 80px;
}
@media screen and (max-width: 979px) {
    .page-contents-wrap{
        flex-direction: column;
        margin: 0 0 60px;
    }
}
.page-contents-right h3{
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2;
    margin: 0 0 20px;
}
.page-contents-left{
    width: 30%;
}
@media screen and (max-width: 979px) {
    .page-contents-left{
        width: 100%;
    }
}
.page-contents-left .section-title h2{
    font-size: 1.3rem;
    font-weight: 300;
}
.page-contents-left .section-title .section-title-en{
    font-size: 4rem;
    font-weight: 300;
    font-family: "Libre Caslon Display", serif;
    margin: 0 0 30px;
}
@media screen and (max-width: 979px) {
    .page-contents-left .section-title .section-title-en{
        font-size: 3rem;
    }
}
.page-contents-right{
    width: 70%;
}
@media screen and (max-width: 979px) {
    .page-contents-right{
        width: 100%;
    }
}

#clinics-right.page-contents-right{
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* justify-content: space-between; */
}
@media screen and (max-width: 979px) {
    #clinics-right.page-contents-right{
        width: 100%;
    }
}

/* 
///////////////////
ABOUT
/////////////////// 
*/
.about-right-img-box {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 20px;
    width: 100%;
    margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
    .about-right-img-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "main main"
            "sub1 sub2";
        gap: 10px;
        margin: 0 0 30px;
    }
}
.about-right-img-box .main-img {
    grid-row: span 2;
    position: relative;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .about-right-img-box .main-img {
        grid-area: main;
        padding-top: 60%; /* 5:3 */
    }
}
.about-right-img-box .main-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.about-right-img-box .sub-img {
    position: relative;
    width: 100%;
    padding-top: 60%; /* 4:3の比率 */
}
@media screen and (max-width: 767px) {
    .about-right-img-box .sub-img {
        padding-top: 60%; /* 5:3 */
    }
}
.about-right-img-box .sub-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
@media screen and (max-width: 767px) {
    .about-right-img-box .sub-img:nth-child(2) {
        grid-area: sub1;
    }
    .about-right-img-box .sub-img:nth-child(3) {
        grid-area: sub2;
    }
}

/* 
///////////////////
会社概要
/////////////////// 
*/
.overview-contents{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 30px 0;
    margin: 0 0 -1px;
}
.overview-contents-left{
    width: 30%;
}
.overview-contents-right{
    width: 70%;
}
.overview-contents-left h4{
    font-weight: 300;
}
.overview-contents-right h4{
    font-weight: 300;
}


/* 
///////////////////
NUMBER
/////////////////// 
*/
.number-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}
@media screen and (max-width: 979px) {
    .number-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
.number-contents {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .number-contents {
        padding: 40px 0 0;
    }   
}
.number-contents:not(:last-child):not(:nth-child(4n)) {
    border-right: 1px solid #000;
}
.number-contents:not(:nth-last-child(-n+4)) {
    border-bottom: 1px solid #000;
}
.number-contents-img {
    width: 100px;
    height: 100px;
    margin: 0 0 20px;
}
.number-contents-img img{
    object-fit: cover;
    
    border-radius: 100%;
    width: 100%;
}


.number-contents-text {
    text-align: center;
}
@media screen and (max-width: 767px) {
    .number-contents-text {
        padding: 0 0 40px;
    }
}
.number-contents-text h3 {
    font-size: 1.6rem;
    font-weight: 300;
    margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
    .number-contents-text h3 {
        margin:0;
    }
}
.number span:first-child {
    margin: 0 5px 0 0;
    font-family: "Libre Caslon Display", serif;
    font-size: 5vw;
}
.number span:last-child {
    margin: 0 5px 0 -10px;
    font-size: 1.6rem;
}
@media screen and (max-width: 979px) {
    .number-contents:not(:last-child):not(:nth-child(4n)) {
        border-right: none;
    }
    .number-contents:nth-child(odd):not(:last-child) {
        border-right: 1px solid #000;
    }
    .number-contents:not(:nth-last-child(-n+2)) {
        border-bottom: 1px solid #000;
    }
}
@media screen and (max-width: 767px) {
    .number-contents-text .number{
        display: flex;
        flex-direction: column;
    }
    .number span:last-child{
        margin: 0;
    }
    .number span:first-child {
        font-size: 5rem;
        margin: 0;
    }
}

/* 
///////////////////
NEWS詳細
/////////////////// 
*/
.news-single-wrap{
    width: 40%;
    margin: 0 auto;
}
@media screen and (max-width: 979px) {
    .news-single-wrap{
        width: 100%;
    }
}
.news-single-title{
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 20px;
}
.news-single-date{
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0 0 20px;
}
.news-single-contents{
    font-size: 1.6rem;
    font-weight: 300;
    margin: 0 0 20px;
}
.news-single-thumb{
    margin: 0 0 30px;
}
.news-single-thumb img{
    border-radius: 5px;
}
.news-single-wrap a{
    color: rgb(70, 167, 232);
    text-decoration: underline;
    font-weight: 500;
}

/* 
///////////////////
CLINICS
/////////////////// 
*/
.clinics-right-contents-wrap{
    display: flex;
    align-items: flex-start;
    gap: 30px;
    border-bottom: 1px solid #ddd;
    flex-direction: column;
    width: 30%;
    padding:0 0 60px;
    margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
    .clinics-right-contents-wrap{
        gap: 30px;
        width: 47%;
    }
}


@media screen and (max-width: 767px) {
    .clinics-right-contents-wrap.single-item{
        gap: 30px;
        width: 100% !important;
    }
}


.clinics-right-contents-wrap .clinics-right-text-boxs{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.clinics-right-contents-wrap .clinics-right-img-boxs{
    width: 100%;
}
.clinics-right-contents-wrap .clinics-right-img-boxs .main-img{
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3のアスペクト比（width × 0.75） */
}
.clinics-right-contents-wrap .clinics-right-img-boxs .main-img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.clinics-right-contents-wrap .clinics-right-text-boxs h3{
    margin: 0 0 -10px;
    line-height: 1.5;
    font-weight:900;
    font-size: 1.6rem;
}
.clinics-right-contents-wrap .clinics-right-text-boxs  p{
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
}
.clinics-right-contents-wrap .clinics-right-btn-wrap{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
}


/* 
///////////////////
FOOTER
/////////////////// 
*/
footer{
    background-color: #03054C;
}
footer .copy{
    color: #fff;
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
    background-color: #1B4B5A;
    padding: 20px 0;
}
.footer-section{
    padding: 10% 0;
}
@media screen and (max-width: 979px) {
    .footer-section{
        padding: 15% 0;
    }   
}
.footer-section-left{
    width: 45%;
}
.footer-section-right{
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-section-right-contact{
    display: block;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    height: 20vw;
}
@media screen and (max-width: 979px) {
    .footer-section-right-contact{
        height: 30vw;
    }
}
@media screen and (max-width: 767px) {
    .footer-section-right-contact{
        height: 35vw;
    }
}
.footer-section-right-contact::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.footer-section-right-contact::before {
    background-image: url('../../assets/img/footer/contact.png');
}
.footer-section-right-contact:hover::before{
    transform: scale(1.1);
}

.footer-section-right-contents{
    display: block;
    position: relative;
    overflow: hidden;
    background-size: contain;
    background-position: center;
    border-radius: 5px;
    padding-top: 17.58%; /* 455px × 80pxの比率 (80/455 × 100) */
    background-repeat: no-repeat;
    background-color: #f8f8f8; /* 背景色を追加してborder-radiusを見えるようにする */
}

.footer-section-right-contents::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* .footer-section-right-contents::before {
    background-image: url('../../assets/img/footer/contact.png');
} */
.footer-section-right-contents:hover::before{
    transform: scale(1.1);
}

@media screen and (max-width: 979px) {
    .footer-section > div {
        flex-direction: column-reverse;
    }
    
    .footer-section-left,
    .footer-section-right {
        width: 100%;
    }
    .footer-section-right{
        margin: 0 0 60px;
    }
}
.footer-section-left{
    display: flex;
    flex-direction: column;
}
.footer-section-left-logo{
    width: 300px;
    margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
    .footer-section-left-logo{
        width: 200px;
        margin: 0 auto 30px;
    }
}
.footer-section-left-link ul li{
    margin: 0 0 10px;
}
.footer-section-left-link ul li a{
    color: #fff;
}
@media screen and (max-width: 979px) {
    .footer-section-left-link ul{
        border-top: 1px solid #333;
    }
.footer-section-left-link ul li{
    margin: 0;
    border-bottom: 1px solid #333;
    padding: 20px 10px;   
}
}

/* 
///////////////////
MEMBER
/////////////////// 
*/
.member-contents-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    width: 100%;
}
.member-contents {
    width: 100%;
}
.member-contents-img {
    width: 100%;
    margin: 0 0 20px;
    position: relative;
    padding-top: 100%;
}

.member-contents-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.member-contents-text h3 {
    font-size: 1.8rem;
    margin: 0 0 5px;
    font-weight: bold;
}
.member-contents-text h4{
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.15em;
    font-size: 1.6rem;
    font-weight: 300;
    margin: 0 0 5px;
}
@media screen and (max-width: 767px) {
    .member-contents-text h4{
        font-size: 1.3rem;
    }
}
.member-contents-text p{
    font-size: 1.6rem;
    font-weight: 300;
    margin: 0 0 10px;
    color: #999;
}
@media screen and (max-width: 767px) {
    .member-contents-text p{
        font-size: 1.3rem;
    }
}
@media screen and (max-width: 767px) {
    .member-contents-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }
    .member-contents-text h3 {
        font-size: 1.6rem;
    }
}

/* ///////////////////
HISTORY
/////////////////// */
.about-history-wrap {
    max-width: 650px;
    margin: auto;
    width: 90%;
  }
  .timeline-list {
    padding: 80px 0 0;
  }
  @media (max-width: 979px) {
      .timeline-list {
          padding: 0;
        }   
  }
  .timeline-list-item {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .timeline-list-item .date-wrap{
    position: relative;
    width: 30%;
  }
  @media (max-width: 979px) {
    .timeline-list-item .date-wrap {
        width: 20%;
    }
}
  .timeline-list-item .date {
    text-align: right;
  }
  .timeline-list-item .bg-year{
    position: absolute;
    font-size: 8rem;
    top: -50px;
    color: #e6e6e6;
    font-family: "Libre Caslon Display", serif;
    top:0;
    left: 85px;
}
@media (max-width: 979px) {
    .timeline-list-item .bg-year{
        left: -44px;
    }
}
  .timeline-list-item .content {
    position: relative;
    width: 67%;
    border-left: 1px solid #000;
    padding: 0 0 60px 20px;
    z-index: 2;
  }
  @media (max-width: 979px) {
      .timeline-list-item .content {
          width: 75%;
      }
  }
  .timeline-list-item .content .img {
    width: 60%;
    margin: 0 0 20px;
    position: relative;
    padding-top: 45%;
  }
  .timeline-list-item .content .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }
  @media (max-width: 979px) {
    .timeline-list-item .content .img {
        width: 100%;
        padding-top: 75%;
    }
  }
  .timeline-list-item .content::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -5px;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 10px;
  }

  .timeline-list-item .content .text{
    width: 100%;
    word-break: break-all;
}



.entry-resistration-detail{
    padding:40px 30px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 60px;
}

.entry-form-wrap .wrap{
    display: flex;
    justify-content: space-between;
    margin: 0 0 30px;
}
@media (max-width: 979px) {
    .entry-form-wrap .wrap{
        flex-direction: column;
    }
}
.entry-form-wrap .wrap .left span{
    font-size: 1.2rem;
    color: #a78f1a;
    display: inline-block;
    margin: 0 0 0 4px;
    line-height: 1;
}
.entry-form-wrap .wrap .left{
    width: 25%;
}
@media (max-width: 979px) {
    .entry-form-wrap .wrap .left{
        width: 100%;
        margin: 0 0 10px;
    }
}

.entry-form-wrap.input-form .wrap{
    align-items: center;
}
.entry-form-wrap-conf.input-form .wrap{
    align-items: unset;
}


.entry-form-wrap .wrap .right{
    width: 75%;
}
@media (max-width: 979px) {
    .entry-form-wrap .wrap .right{
        width: 100%;
    }
}
.entry-form-wrap .wrap .right input,
.entry-form-wrap .wrap .right select,
.entry-form-wrap .wrap .right textarea
{
    width: 100%;
    padding: 15px;
    border: none;
    font-size: 1.6rem;
}


.entry-form-wrap .wpcf7-not-valid-tip{
    font-size: 1.2rem;
}
.entry-form-wrap .box_check{
    padding: 40px;
    background: #ddd;
    text-align: center;
}
@media (max-width: 979px) {
    .entry-form-wrap .box_check{
        text-align: left;
        padding: 40px 30px;
    }
}
.entry-form-wrap .box_check a{
    display: inline-block;
    text-decoration: underline;
}
.entry-form-wrap input[type="checkbox"] {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    background-color: #fff;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  .entry-form-wrap input[type="checkbox"]:checked:before {
    position: absolute;
    top: 4px;
    left: 13px;
    transform: rotate(50deg);
    width: 10px;
    height: 20px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    content: '';
  }
  .entry-form-wrap .wpcf7-acceptance{
    display: block;
    margin: 10px 0 0;
  }
  .entry-form-wrap .wpcf7-submit{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: #000;
    width: 100%;
    text-align: center;
    padding: 20px;
    color: #fff;
    font-size: 1.8rem;
    margin: 40px 0 0; 
  }

  .entry-form-wrap .wpcf7-submit:disabled {
    background-color: #888888;
}

#submitButton{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: #000;
    width: 100%;
    text-align: center;
    padding: 20px;
    color: #fff;
    font-size: 1.8rem;
    margin: 40px 0 0; 
}
#submitButton:disabled{
    background-color: #888888;
}

  .entry-form-wrap .wpcf7-previous{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border: 1px solid #000;
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 1.8rem;
    margin: 40px 0 0; 
  }
  #previousButton{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: #fff;
    width: 100%;
    text-align: center;
    padding: 20px;
    color: #000;
    font-size: 1.8rem;
    margin: 40px 0 0; 
    border: 1px solid #000;
}


  .entry-form-wrap .wpcf7-spinner{
    display: none;
  }
  .entry-form-wrap .select-wrap{
    position: relative; 
  }
  .entry-form-wrap .select-wrap::after{
    content: "";
    position: absolute;
    display: inline-block;
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
    height: 8px;
    width: 8px;
    top: 18px;
    right: 20px;
    transform: rotate(135deg);
    pointer-events: none;
  }
  .entry-form-wrap .wpcf7-form-control {
    appearance: none; 
  }
  .entry-form-wrap .wrap .right select {
    font-size: 1.6rem !important; /* スマホ時にも適用 */
    background-color: #fff;
    color: #000;
  }
.entry-form-wrap .wpcf7-form-control-wrap{
    text-align: center;
}
/* box-shadow:水平方向の距離 垂直方向の距離 ぼかし距離 広がり距離 影の色 inset;*/
input:-webkit-autofill{
	box-shadow: 0 0 0px 1000px #fff inset;
}

#conf .entry-form-wrap .wrap .right,
#conf .entry-form-wrap .wrap .left{
    border-bottom: 1px solid #ddd;
    padding: 0 0 30px;
}
@media (max-width: 979px) {
    #conf .entry-form-wrap .wrap .right,
    #conf .entry-form-wrap .wrap .left{
        border-bottom: none;
        padding: 0;
    }   
}
@media (max-width: 979px) {
    #conf .entry-form-wrap .wrap{
        flex-direction: column;
        border-bottom: 1px solid #ddd;
        padding: 0 0 10px;
    }
}
@media (max-width: 979px) {
    #conf .entry-form-wrap .wrap .left{
        width: 100%;
        margin: 0 0 10px;
        border-bottom: 1px solid #ddd;
        padding: 10px 0;
    }
}
.entry-form-wrap input::placeholder {
     color: #ddd; 
}
.entry-form-wrap textarea::placeholder {
    color: #ddd; 
}


.wrap-404{
    margin: 0 0 20px;
}
.wrap-404 a{
    text-decoration: none;
}