/*
------------------------
 共通パーツ 
------------------------
*/

main.personal {
    overflow: hidden;
    letter-spacing: .05em;
}

main.personal p {
    line-height: 1.5;
}

.view-btn{
    position: relative;
    background-color: #fff;
    color: #000;
    padding: 16px 65px 16px 35px;
    font-size: clamp(14px,2vw,24px);
    border: 1px solid;
    font-weight: bold;
    transition: all .3s;
}

.view-btn::after{
    position: absolute;
    content: '';
    background: no-repeat center/cover;
    background-image: url(../img/common/btn-arrow.svg);
    width: 23px;
    height: 9px;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    transition: all .3s;
}

.view-btn:hover::after{
    right:20px;
}

main.personal .wrap {
    width: 100%;
    max-width: 1200px;
}

.section-ttl {
    text-align: center;
    margin-bottom: 70px;
}

.section-ttl em{
    display: block;
    font-size: clamp(37px,7vw,74px);
    color: #000;
    font-weight: 500;
    font-family: "Oswald",sans-serif;
    letter-spacing: .05em;
}

.section-ttl span {
    display: block;
    font-size: clamp(15px,3vw,30px);
    color: #000;
    font-weight: 500;
}

main.personal section {
    padding: 80px 0 120px;
}

header.personal section.cont4{
    top: 88px;
}

@media (max-width:1200px) {

section.has-line.black::before{
    background:url(../img/personal/section_line_bk_sp.svg) no-repeat top/contain;
}

main.personal section{
    padding: 60px 0;
}

.section-ttl{
    margin-bottom: 50px;
}

}


/*
------------------------
 mv 
------------------------
*/

main.personal .mv{
    position: relative;
    background:url(../img/personal/mv.png) no-repeat center/cover;
    max-height: 90vh;
    height: 880px;
}

main.personal .mv .wrap {
    position: absolute;
    top: 50%;
    left: 1%;
    transform: translateY(-50%);
}

main.personal .mv-title {
    margin-bottom: 70px;
    overflow: hidden;
}

main.personal .mv-title em,
main.personal .mv-title span{
    animation: fadeIn 1s ease 1s 1 normal backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main.personal .mv-title em {
    display: block;
    font-size: clamp(48px,7vw,87px);
    font-weight: bold;
    font-style: italic;
    text-shadow: 0 0 20px rgba(0,0,0,0.15);
    line-height: 1.2;
    margin-top: 10px;
}

main.personal .mv-title span {
    display: block;
    font-size: clamp(16px,3vw,30px);
    text-shadow: 0 0 20px rgba(0,0,0,0.15);
    font-weight: bold;
    letter-spacing: 0.1em;
}

main.personal .personal-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #000;
    width: fit-content;
    padding: 10px 20px;
    font-size: clamp(11px,1.5vw,18px);
    font-weight: bold;
    margin-top: 20px;
}

main.personal .personal-logo img {
    width: 124px;
}

header.personal section.cont5 {
    bottom: 15px;
}

header.personal section.cont4 a{
    width: 46px;
}

@media (max-width:640px) {
    
main.personal .mv{
    background:url(../img/personal/mv_sp.png) no-repeat center/cover;
    height: calc(100vh - 148px);
    height: calc(100dvh - 148px);
}

main.personal .mv .wrap{
    top: initial;
    left: 0;
    transform: none;
    bottom: 20px;
}

main.personal .mv-title{
    margin-bottom: 30px;
}

.view-btn{
    padding: 15px 55px 15px 25px;
}

.view-btn::after{
    right: 20px;
}

main.personal .personal-logo img{
    width: 80px;
}

main.personal .personal-logo{
    padding: 10px 15px;
    margin-top: 10px;
}

main.personal .mv-title em{
    text-shadow:0 0 30px rgb(179 179 179 / 50%);
}

header.personal section.cont4{
    top: initial;
}

header.personal section.cont4 a{
    width: calc(100vw / 3);
}

header.personal section.cont3 nav a:last-of-type{
    border-bottom: none;
    margin-top: 20px;
}

}



/*
------------------------
 about
------------------------
*/

section.about {
    background: url(../img/personal/about_bg.png) no-repeat center / cover;
    padding-top: 66px;
    padding-bottom: 66px;
    text-align: center;
}

section.about .wrap {
    max-width: 900px;
}

section.has-line {
    position: relative;
}

section.has-line::before {
    position: absolute;
    content: '';
    background: url(../img/personal/section_line.svg) no-repeat top/contain;
    width: 370px;
    max-width: 30vw;
    height: 212px;
    left: 0;
    top: 0;
}

section.about .section-ttl span {
    display: block;
    color: #FFDB04;
    font-weight: 500;
    font-family: "Oswald",sans-serif;
    font-size: clamp(18px,3vw,36px);
}

section.about .section-ttl em {
    display: block;
    font-size: clamp(24px,4vw,48px);
    font-weight: bold;
    margin-top: 20px;
    color: #fff;
}

section.about h3 {
    color: #FFDB04;
    border-top: 2px solid;
    border-bottom: 4px solid;
    font-size: clamp(18px,3vw,36px);
    padding: 20px 0;
    margin: 30px auto 50px;
    font-weight: 500;
}

section.has-line.black::before {
    background: no-repeat center/cover;
    background-image: url(../img/common/diagonal.svg);
    content: '';
    transform: rotate(180deg);
}

@media (max-width: 640px){

section.has-line::before {
    background: url(../img/personal/section_line_sp.svg) no-repeat top/contain;
    
}

section.about h3{
    margin: 30px auto;
}

section.has-line::before{
    width: 117px;
}

section.has-line.black::before {
    background: url(../img/personal/section_line_bk_sp.svg) no-repeat top/contain;
    transform: none;
}

}


/*
------------------------
 feature
------------------------
*/

section.feature {
    background-color: #FFDB04;
    text-align: center;
}

.balloon {
    position: relative;
    display: inline-block;
    margin: 0 auto 1.5em;
    padding: 7px 15px;
    min-width: 120px;
    max-width: 100%;
    color: #fff;
    background: #000;
}

.balloon:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #000;
}

.balloon p {
    margin: 0;
    padding: 0;
    font-weight: bold;
    font-style: italic;
    font-size: clamp(16px,2.5vw,32px);
    letter-spacing: .1em;
}

.case {
    margin-top: 30px;
}

.case__item{
    display: flex;
    align-items: center;
    gap: 50px;
}

.case__item img {
    width: 450px;
}

.case__text {
    text-align: left;
}

.case__text h4 {
    color: #000;
    display: inline-block;
    padding: 5px 11px;
    font-size: clamp(18px,1.5vw,24px);
    font-weight: bold;
    font-family: "Oswald",sans-serif;
    letter-spacing: .05em;
    outline: 2px solid;
}

.case__text h5 {
    color: #000;
    font-size: clamp(22px,1.8vw,30px);
    font-weight: bold;
    padding: 20px 0;
    border-bottom: 1px solid #000;
}

.case__text p {
    color: #000;
    padding-top: 20px;
    line-height: 1.5;
}

.case__item:not(:last-of-type){
    margin-bottom: 50px;
}

@media (max-width:1200px) {

.case__item{
    flex-wrap: wrap;
    gap: 30px;
}

.case__item:nth-of-type(even){
    flex-wrap: wrap-reverse;
}

.case__item img{
    width: 100%;
}

.case{
    margin-top: 15px;
}

.case__item:not(:last-of-type){
    margin-bottom: 60px;
}


}


/*
------------------------
 contact
------------------------
*/

section.contact {
    background: url(../img/personal/contact_bg.png) no-repeat center/auto;
    background-attachment: fixed;
}

section.contact .wrap {
    display: flex;
    align-items: center;
    gap: 45px;
}

section.contact h2 {
    color: #FFDB04;
    font-weight: bold;
    font-size: clamp(26px,4vw,49px);
    letter-spacing: .05em;
}

section.contact .contact-link {
    background:  url(../img/personal/contact_img1.png) no-repeat center / cover #2FB1B0;
    background-blend-mode:overlay;
    border-radius: 16px;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 4%;
    margin-bottom: 20px;
}

section.contact .contact-link span {
    display: inline-block;
    background-color: #000;
    padding: 7px 30px;
    font-size: clamp(14px,1.5vw,22px);
    margin-bottom: 10px;
}

section.contact .contact-link p,
section.contact .contact-link2 p {
    font-size: clamp(21px,4vw,40px);
    font-weight: 500;
}

section.contact .contact-link2{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #32a748;
    border-radius: 16px;
    height: auto;
    padding: 3% 5%;
    gap: 20px;
}

section.contact .img-wrap {
    width: 100%;
}

section.contact .img-wrap img:first-of-type {
    margin-bottom: 30px;
}

section.contact .txt-wrap > p {
    margin: 30px 0;
}

section.contact .txt-wrap{
    max-width: 688px;
}

@media (max-width:1200px) {

section.contact .wrap{
    display: block;
    text-align: center;
}

section.contact .img-wrap{
    display: flex;
    align-items: center;
    margin: 30px auto;
}

section.contact .img-wrap img:first-of-type{
    margin-bottom: 0;
}

section.contact .img-wrap img{
    max-width: 50%;
}

section.contact h2{
    margin-bottom: 20px;
}

.contact-link2 img {
    max-width: 70px;
    height: auto;
}

section.contact{
    background-attachment: unset;
}


}



/*
------------------------
 before & after
------------------------
*/

section.beforeafter {
    background-color: #000;
}

section.beforeafter .section-ttl em,
section.beforeafter .section-ttl span{
    color: #fff;
}

section.beforeafter .balloon {
    background: #fff;
    color: #000;
    border-radius: 16px;
    max-width: 100%;
    width: 100%;
    margin: 2em auto 0;
    padding: 30px;
}

section.beforeafter .balloon:before{
    border-top: 15px solid #fff;
    top: -30px;
    transform: rotate(180deg);
}

section.beforeafter dt,
section.beforeafter dd {
    color: #000;
}

section.beforeafter dt{
    border-bottom: 1px solid;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: clamp(18px,1.8vw,24px);
    font-weight: bold;
}

section.beforeafter .ba__item {
    margin-bottom: 80px;
}

.more-btn {
    text-align: center;
    background-color: #fff;
    max-width: 400px;
    margin: auto;
    padding: 25px;
    border-radius: 100px;
}

.more-btn a {
    max-width: 400px;
    color: #000;
    font-size: 20px;
}

@media (max-width:640px) {

section.beforeafter .balloon{
    padding: 20px;
}

section.beforeafter .ba__item{
    margin-bottom: 50px;
}

.more-btn{
    padding: 18px;
}



}


/*
------------------------
 access
------------------------
*/


section.access {
    background: url(../img/personal/contact_bg.png) no-repeat center/auto;
    background-attachment: fixed;
}

section.access {
    background-color: #000;
}

section.access .section-ttl em,
section.access .section-ttl span{
    color: #fff;
}

section.access .container {
    display: flex;
    gap: 30px;
}

section.access .map,
section.access iframe,
section.access .txt-wrap {
    width: 100%;
}

section.access h3 {
    color: #FFDB04;
    font-size: clamp(20px,3vw,30px);
    border-bottom: 1px solid;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

section.access dl {
    display: flex;
    margin-bottom: 20px;
}

section.access dt {
    flex: 1;
}

section.access dd {
    flex: 2;
}

.view-btn.small {
    font-size: 18px;
    font-weight: normal;
    padding: 10px 50px 10px 25px;
    margin-top: 10px;
}

.view-btn.small::after{
    right: 20px;
}

.view-btn.small:hover::after{
    right: 15px;
}

@media (max-width:1200px) {

section.access .container{
    flex-wrap: wrap;
}

section.access iframe{
    height: 250px;
}


}

@media (max-width:640px){

.view-btn.small{
    font-size: 14px;
}

}


/*
------------------------
 price
------------------------
*/

section.price {
    background-color: #000;
    text-align: center;
}

section.price .wrap {
    max-width: 800px;
}

section.price .section-ttl em,
section.price .section-ttl span{
    color: #fff;
}

section.price h3 {
    font-size: clamp(18px,2vw,30px);
    color: #FFDB04;
    border: 5px solid;
    display: inline-block;
    padding: 12px 10%;
    margin-bottom: 30px;
}

section.price h3:last-of-type {
    margin-top: 80px;
}

section.price p{
    margin-bottom: 50px;
}

section.price img {
    margin: 0 auto 20px;
}

.tax-attention {
    font-size: 14px;
    text-align: left;
    padding-bottom: 10px;
}

span.yellow {
    color: #FFDB04;
    font-size: 18px;
}

section.price h4 {
    color: #FFDB04;
    border-bottom: 1px solid;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
}

@media (max-width:640px) {

section.price h3{
    padding: 12px;
    border: 3px solid;
}

section.price .yellow{
    font-size: 16px;
}

}


/*
------------------------
 staff
------------------------
*/

section.staff {
    background: url(../img/home/staff_bg.svg) no-repeat center/cover;
}

section.staff .loop-staff {
    margin: 100px auto 50px;
}

@media (max-width:1200px) {

section.staff .loop-staff{
    margin: 20% auto 50px;
}

}


/*
------------------------
 instagram
------------------------
*/

section.ig {
    background: url(../img/personal/contact_bg.png) no-repeat center/auto;
    background-attachment: fixed;
    background-color: #000;
}

section.ig .section-ttl em,
section.ig .section-ttl span{
    color: #fff;
}

@media (max-width:640px){

section.ig{
    background-attachment: unset;
    background: url(../img/personal/contact_bg.png) no-repeat center/cover;
    background-color: #000;
}

}

/*
------------------------
 gallery
------------------------
*/

section.gallery .slider {
    margin: 0 auto;
    width: 100%;
}

section.gallery .slider-img {
    margin: 0 5px;
}

section.gallery .slider-img img {
    height: auto;
    width: 100%;
}

section.gallery {
    background-color: #000;
}

section.gallery .section-ttl em,
section.gallery .section-ttl span{
    color: #fff;
}

section.gallery .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

section.gallery .slick-dots li {
    background-color: rgba(255,255,255,0.5);
    border-radius: 100px;
    width: 15px;
    height: 15px;
}

section.gallery .slick-dots li button {
    display: none;
}

section.gallery .slick-dots .slick-active {
    background-color: #fff;
}


/*
------------------------
 flow
------------------------
*/


section.flow {
    background-color: #FFDB04;
    text-align: center;
}

.flow_item{
    position: relative;
    text-align: left;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    border-radius: 16px;
    background-color: #FFDE1D;
    display: flex;
    padding: 50px;
    gap: 30px;
    margin: 30px auto 80px;
}

.flow_item::after {
    position: absolute;
    content: '01';
    font-size: clamp(50px,7vw,70px);
    -webkit-text-stroke: 2px #000;
    left: 50px;
    top: -60px;
    z-index: 1;
    font-family: "Oswald",sans-serif;
    color: transparent;
    font-weight: bold;
}

.flow_item h3 {
    color: #000;
    font-size: clamp(18px,2vw,30px);
    font-weight: bold;
    border-bottom: 2px solid;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.flow_item p {
    color: #000;
}

.flow_item .view-btn {
    margin-top: 20px;
}

.flow_item img {
    width: 50%;
}

.flow_item.second {
    background-color: #FFE236;
}

.flow_item.second::after {
    content: '02';
}

.flow_item.third {
    background-color: #FFE54F;
}

.flow_item.third::after {
    content: '03';
}

.flow_item.fourth {
    background-color: #FFE968;
}

.flow_item.fourth::after {
    content: '04';
}

.flow_item.fifth {
    background-color: #FFED81;
}

.flow_item.fifth::after {
    content: '05';
}

.flow_item.sixth {
    background-color: #FFF09A;
    margin-bottom: 0;
}

.flow_item.sixth::after {
    content: '06';
}

@media (max-width:1200px) {

.flow_item{
    flex-wrap: wrap-reverse;
    gap: 15px;
}

.flow_item img{
    width: 100%;
}

.flow_item .view-btn{
    margin-top: 5px;
}

.flow_item h3{
    padding-bottom: 15px;
    margin-bottom: 15px;
}

}

@media (max-width:640px){

.flow_item{
    padding: 50px 15px 30px;
    margin: 30px auto 60px;
}

.flow_item::after{
    left: 15px;
    top: -40px;
}

}


/*
------------------------
 Q&A
------------------------
*/

section.faq {
    background-color: #000;
}

section.faq .section-ttl em,
section.faq .section-ttl span{
    color: #fff;
}


.qa-list dl {
    position: relative;
    cursor: pointer;
    padding: 28px 0;
    max-width: 1112px;
    margin: auto;
}

.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0 0 0 70px;
    font-weight: bold;
    font-size: 24px;
    border-bottom: 1px solid #FFDB04;
    padding-bottom: 20px;
    padding-right: 4rem;
}
.qa-list dl dt::before {
    position: absolute;
    top: 3px;
    left: -70px;
    display: block;
    content: '';
    background: url(../img/personal/question_icon.svg) no-repeat;
    width: 50px;
    height: 50px;
}

.qa-list dl dt::after {
    content: "";
	display: inline-block;
	position: absolute;
	top: 35%;
	right: 30px;
	width: 10px;
	height: 10px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: translateY(-50%) rotate(45deg);
	transition: .3s;
}

.qa-list dl.open dt::after {
    transform: rotate(225deg);
}

.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 0 70px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}


@media (max-width:640px) {

.qa-list dl dt::before{
    width: 30px;
    height: 30px;
    background-size: contain;
}

.qa-list dl dt{
    margin: 0 0 0 40px;
    font-size: 18px;
    padding-bottom: 15px;
}

.qa-list dl dt::before{
    left: -40px;
}

.qa-list dl dt::after{
    right: 15px;
}

.qa-list dl{
    padding: 20px 0;
}

.qa-list dl:first-of-type{
    padding-top: 0;
}

.qa-list dl dd{
    padding: 0 0 0 40px;
    margin: 15px 0 0;
}

}


/*
------------------------
 footer
------------------------
*/

footer.personal section.cont1 div.wrap{
    justify-content: flex-start;
    flex-wrap: nowrap;
}

footer.personal nav dl {
    display: flex;
    gap: 5%;
    margin-bottom: 20px;
}

footer.personal nav{
    margin-left: 15%;
    white-space: nowrap;
}

.store_item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.store_item dd {
    font-size: 14px;
}

footer.personal nav dt {
    font-weight: bold;
}

@media (max-width:1200px){

footer.personal section.cont1 div.wrap{
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

footer.personal section.cont1 div.wrap a.logo{
    width: 100%;
}

footer.personal section.cont1 div.wrap a.logo img {
    margin: 30px auto 0;
}

}

@media (max-width:640px){

footer.personal {
    background-image: none;
}


footer.personal section.cont1 div.wrap{
    width: 100%;
}

footer.personal nav{
    margin-left: 0;
}

footer.personal nav dl{
    gap: 20px;
}

.store_item{
    gap: 10px;
}

footer.personal section.cont2 div.wrap{
    color: #fff;
    text-align: center;
    padding-bottom: 27vw;
    margin-top: 30px;
}

}

/*
===========================
 before & after 一覧ページ
===========================
*/

main.before-after{
    background-color: #000;
}

main.before-after .mv {
    background: url(../img/personal/beforeafter_mv.png) no-repeat center/cover;
    min-height: 450px;
    height: 60vh;
    position: relative;
}


main.before-after .mv-title em {
    font-size: clamp(40px,7vw,75px);
    color: #FFDB04;
    font-family: "Oswald",sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: block;
}

main.before-after .mv-title span {
    font-size: clamp(20px,4vw,40px);
    color: #FFDB04;
    font-weight: bold;
}

main.before-after .mv-title{
    position: absolute;
    top: 50%;
    left: 1%;
    transform: translateY(-50%);
}

.page-id-403 header.personal section.cont4{
    display: none;
}

main.before-after .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
}

main.before-after .breadcrumbs > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

main.before-after .wrap {
    padding: 80px 16px;
}

.ba-archive__link{
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.ba-archive__link .img-wrap {
    flex: 1;
    min-width: 380px;
    max-width: 100%;
}

.ba-archive__link .txt-wrap {
    flex: 2;
}

.ba-archive__img{
    display: flex;
}

.ba-archive__img img {
    width: 50%;
    height: auto;
    aspect-ratio: 68/80;
    object-fit: cover;
    max-width: 540px;
}

.ba-archive__title{
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.ba-archive__data{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
    background-color: #FFDB04;
    padding: 15px 10px;
    text-shadow: 0 5px 5px rgba(0,0,0,0.15);
}

.ba-archive__data > div {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.ba-archive__data > div span:first-of-type{
    font-size: 12px;
}

.ba-archive__data > div span:last-of-type{
    font-size: 22px;
    font-weight: bold;
}

.ba-archive__content{
    font-size: 18px;
    line-height: 1.8;
}

.single-before-after header.personal section.cont4{
    display: none;
}

@media (max-width:1200px) {

.ba-archive__link {
    flex-wrap: wrap;
}

.ba-archive__link .img-wrap,
.ba-archive__link .txt-wrap{
    flex: auto;
}

main.before-after .breadcrumbs{
    flex-wrap: wrap;
}

.ba-archive__link .img-wrap{
    min-width: auto;
}


}


main.before-after .pagination {
  margin-top: 64px;
  margin-bottom: 64px;
}

@media (max-width: 1200px) {
  main.before-after .pagination {
    margin-top: 32px;
  }
}

main.before-after .page-numbers {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 24px;
}

main.before-after .page-numbers span,
main.before-after .page-numbers a {
  font-size: 18px;
  color: #FFF;
}

main.before-after .page-numbers a.current,
main.before-after .page-numbers span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #000;
  background-color: #FFDB04;
}

@media (max-width: 1200px) {

    main.before-after .page-numbers a.current,
    main.before-after .page-numbers span.current {
    width: 24px;
    height: 24px;
  }

    main.before-after .page-numbers span,
    main.before-after .page-numbers a{
    font-size: 16px;
}

}


.ba__table {
 width: 100%;
 text-align: center;
 border-collapse: collapse;
 border-spacing: 0;
 background-color: #fff;
 margin: 60px auto;
}
.ba__table th {
 padding: 10px;
 background: #F0F0F0;
 border: solid 1px #bbb;
 color: #000;
}
.ba__table td {
 padding: 10px;
 border: solid 1px #bbb;
 color: #000;
}

.ba__table tr:last-of-type td {
    background-color: #FFDB04;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 10px;
}

.ba-single__content{
    margin: 60px auto;
}

.ba-single__content .profile {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
}

body.single .ba-archive__title{
    margin-bottom: 60px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

body.single .ba-archive__data > div span:first-of-type{
    font-size: 18px;
}

body.single .ba-archive__data > div span:last-of-type{
    font-size: 30px;
}

body.single .ba-archive__data{
    gap: 30px;
}

.trainer-comment h2 {
    color: #FFDB04;
    font-size: 30px;
    font-family: "Oswald",sans-serif;
    letter-spacing: 0.05em;
    border-bottom: 1px solid;
    padding-bottom: 20px;
    margin-bottom: 25px;
    font-weight: 500;
}

.trainer-comment .flex {
    display: flex;
    gap: 20px;
}

.trainer-img{
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
    background-color: #fff;
}

.trainer-name{
    margin-bottom: 20px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px auto;
}

.page-link a.archive {
    background-color: #FFDB04;
    color: #000;
    padding: 10px 20px;
    transition: 0.3s;
}

.page-link a:hover {
    opacity: 0.8;
}


@media (max-width:640px) {

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

.trainer-comment .flex{
    flex-wrap: wrap;
}

.ba-archive__title{
    font-size: 20px;
    margin-bottom: 15px;
}

body.single .ba-archive__title{
    font-size: 24px;
}

.ba-archive__content{
    font-size: 14px;
}

.ba-archive__link{
    gap: 20px;
}

}

main.personal #sbi_mod_error{
    display: none!important;
}



/*
------------------------
 campaign
------------------------
*/


main.personal section.campaign_bnr {
    background: url(../img/personal/campaign_bg.png) no-repeat center/cover;
    padding: 80px 0;
}

main.personal section.campaign_bnr img {
    margin: auto;
}

main.personal div.campaign_bnr{
    margin-top: 100px;
}

@media (max-width:640px) {

div.campaign_bnr{
    margin-top: 80px;
    padding-left: 16px;
    padding-right: 16px;
}

}