.p-news_single__body {
    max-width: 780px;
}
.p-news_single__eyecatch {
    display: none;
}
@media only screen and (min-width: 769px) {
.pc-only {
    display: none;
}
}
.c-btn03 {
    display: none;
}

/* ===== LIFESTYLE + PROBLEM ===== */ 
.lifestyle-section {
    padding: 5rem 0;
    margin: 50px 0;
}
.lifestyle-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}
.section-heading {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
}
.lifestyle-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: space-between;
}
@media only screen and (max-width: 768px) {
.lifestyle-tags {
    margin-bottom: 0;
    display: block;
}
}
.lifestyle-tag {
    background: #fcf3d5;
    border-radius: 20px;
    padding: 60px 20px;
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
    width: 24%;
}
@media only screen and (max-width: 768px) {
.lifestyle-tag {
    width: 100%;
    margin-bottom: 10px;
    padding: 30px 50px;
    font-size: 1.5rem;
}
}

.problem-flex {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}
.problem-left {
    flex: 1.1;
    padding: 20px;
}
@media only screen and (max-width: 768px) {
.problem-left {
    padding: 0;
}
}
.problem-left-first {
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-width: 768px) {
.problem-left-first {
    display: block;
}
}
.problem-left-first-l {
    width: 40%;
}
.problem-left-first-r {
    width: 48%;
    margin-right: 4%;
}
@media only screen and (max-width: 768px) {
.problem-left-first-l {
    width: 100%;
}
.problem-left-first-r {
    width: 100%;
    margin-right: 0;
}
}
.problem-left-first-r {
    
}
.problem-left-first-r img {
    width: 100%;
}
.problem-left-first-r .secondimg {
    width: 70%;
    margin-top: 30px;
    margin-left: -35px;
}
@media only screen and (max-width: 768px) {
.problem-left-first-r .secondimg {
    width: 100%;
    margin: 0;
}
    
}

.toiaie-title {
    font-size: 1.5rem;
    font-weight: 200;
    color: var(--color-primary);
    margin-bottom: 0;
    margin-top: 30px;
}
.problem-list {
    list-style: none;
    margin-bottom: 1.8rem;
}
.problem-note {
    font-size: 1.5rem;
    color: #1A3C34;
    line-height: 2;
}
.problem-note strong {
    color: var(--color-primary);
}


/*=========
この相談会で解決できること
===========*/
.seminar-resolve {
    margin-bottom: 50px;
    background: #e3e3d8;
    padding: 50px 50px;
    border-radius: 30px;
}
@media only screen and (max-width: 768px) {
.seminar-resolve {
    padding: 50px 40px;
}
}
.seminar-resolve h2 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.seminar-resolve h2:before,.seminar-resolve h2:after {
    background-color: #333;
    content: "";
    height: 25px;
    width: 0.75px;
}
.seminar-resolve h2:before {
    margin-right: 30px;
    transform: rotate(-40deg);
}
.seminar-resolve h2:after {
    margin-left: 30px;
    transform: rotate(40deg);
}
.seminar-resolve-u {

}
.seminar-resolve-u li {
    background: #fff;
    border-radius: 30px;
    padding: 20px 40px;
    font-size: 1.5rem;
}
@media only screen and (max-width: 768px)  {
.seminar-resolve-u li {
    padding: 20px 20px;
}
}
.seminar-resolve-u li:first-child {
    margin-bottom: 30px;
}



/*=========
参加ボタン
===========*/
.lp-ctabtn {
    margin-bottom: 70px;
}
.lp-ctabtn div {
    text-align: center;
}
.lp-ctabtn a {
    border: none;
    background: #ffe164;
    color: #006450;
    border-radius: 30px;
    padding: 20px 40px;
    font-size: 1.2rem;
    cursor: pointer;
}


/*=========
green建築工房がつくる、中古+リノベーション
===========*/
.about-green {
    background: #dfedd6;
    width: 100vw; /* 画面の幅いっぱいにする */
    margin-left: calc(50% - 50vw); /* 要素の中央を画面の中央に合わせ、左に引き出す */
}
.about-greenInner {
    max-width: 780px;
    margin: 0 auto;
    padding: 50px 0;
}
@media only screen and (max-width: 768px) {
.about-greenInner {
    width: 100%;
    padding: 70px 6.6vw;
}
}

.about-greenInner h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}
@media only screen and (max-width: 768px) {
.about-greenInner h2 {
    font-size: 1.7rem;
    margin-bottom: 60px;
}
}
.about-greenInner h2:before {
    content: '';
    position: absolute;
    left: 50%;
    top: -15px;
    display: inline-block;
    width: min(500px, 90%);
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #b0aeb0;
    border-radius: 2px;
}
.about-greenInner h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    display: inline-block;
    width: min(500px, 90%);
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #b0aeb0;
    border-radius: 2px;
}
.about-greenInner h2 span {
    display: block;
}
.about-greenInner h2 span:first-child {
    font-weight: 600;
}
.about-green-content {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
@media only screen and (max-width: 768px) {
.about-green-content {
    display: block;
}
}
.about-green-content .agc-l {
    width: 50%;
}
@media only screen and (max-width: 768px) {
.about-green-content .agc-l {
    width: 100%;
}
}
.about-green-content .agc-l .pWrap {
    margin-top: 30px;
}
.about-green-content .agc-l p {
    font-size: 1.7rem;
    margin-bottom: 50px;
    font-weight: 200;
}
@media only screen and (max-width: 768px) {
.about-green-content .agc-l p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
}
.about-green-content .agc-l img {
    width: 90%;
    display: block;
    margin-left: 90px;
}
@media only screen and (max-width: 768px) {
.about-green-content .agc-l img {
    width: 100%;
    display: block;
    margin-left: 0;
    margin-bottom: 5px;
}
}
.about-green-content .agc-r {
    width: 45%;
}
@media only screen and (max-width: 768px)  {
.about-green-content .agc-r {
    width: 100%;
}
}
.about-green-content .agc-r .agc-r-img1 {
    display: block;
    margin-left: -10px;
}
@media only screen and (max-width: 768px) {
.about-green-content .agc-r .agc-r-img1 {
    margin-left: 0;
    margin-bottom: 5px;
}
}
.about-green-content .agc-r .agc-r-img2 {
    width: 60%;
    display: block;
    margin-top: 30px;
    margin-left: 70px;
}
@media only screen and (max-width: 768px) {
.about-green-content .agc-r .agc-r-img2 {
    width: 100%;
    display: block;
    margin-top: 0;
    margin-left: 0;
}
}


/*=========
BEFORE AFTER
===========*/
.renovated-ba {
    background: #e3e3d8;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}
.renovated-baInner {
    max-width: 780px;
    margin: 0 auto;
    padding: 50px 0;
}
@media only screen and (max-width: 768px) {
.renovated-baInner {
    width: 100%;
    padding: 70px 40px;
}
}
.renovated-baInner h2 {
    text-align: center;
    margin-bottom: 50px;
    
}
.renovated-baInner h2 div {
    display: inline-block;
    background: #fff;
    border-radius: 50px;
    padding: 7px 70px;
}
@media only screen and (max-width: 768px) {
.renovated-baInner h2 div {
    padding: 7px 80px;
}
}
.renovated-baInner h2 span {
    display: block;
}
.renovated-baInner h2 span:first-child {
    font-weight: bold;
}
.renovated-baInner h2 span:nth-child(2) {
    font-size: 1.1rem;
}
.renovated-ba .renovated-ba-li {
    margin-bottom: 70px;
}
.renovated-ba-li .heading-container {
    display: flex;
    align-items: center; /* 垂直方向の中央揃え */
    justify-content: center;
    gap: 24px;          /* ラベルとテキストの間隔 */
}

.renovated-ba-li .case-label {
    background-color: #ffcc00; /* 黄色 */
    color: #ffffff;            /* 白文字 */
    width: 100px;
    height: 100px;
    border-radius: 50%;        /* 正円にする */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.1;
    flex-shrink: 0;            /* 画面が狭まっても円が潰れないように */
}

.renovated-ba-li .case-label .text-en {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.renovated-ba-li .case-label .number {
    font-size: 32px;
    font-weight: bold;
}

.renovated-ba-li .heading-text {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    letter-spacing: 0.05em;
    margin: 0;
}

/* レスポンシブ対応：スマホで少し小さくする場合 */
@media (max-width: 780px) {
.renovated-ba-li .case-label {
    width: 70px;
    height: 70px;
}
.renovated-ba-li .case-label .text-en {
    font-size: 14px;
}
.renovated-ba-li .case-label .number {
    font-size: 24px;
}
.renovated-ba-li .heading-text {
    font-size: 18px;
}
}

/* スライダー全体のサイズ調整 */
.slider-wrapper {
    max-width: 800px;
    margin: 50px auto;
}

/* スライド全体の枠 */
.slide-item {
    background: #fff;
}

/* 画像の設定：重ならないよう absolute は使わない */
.slide-item img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* テキストエリアの設定：画像の下に配置 */
.slide-content {
    padding: 20px 10px;
    text-align: center;
    color: #333;
}

.slide-content p {
    font-size: 1.7rem;
    line-height: 1.6;
    margin: 0;
}
@media only screen and (max-width: 768px) {
.slide-content p {
    font-size: 1.5rem;
}
}


/* 矢印の色調整（背景が白の場合は黒系が見えやすい） */
.slick-prev:before, .slick-next:before {
    color: #333;
}
.renovated-ba-li-desc p {
    font-size: 1.7rem;
    line-height: 2.0;
}
@media only screen and (max-width: 768px) {
.renovated-ba-li-desc p {
    font-size: 1.5rem;
}
}

/*=========
開催概要
===========*/

.event-details {
    margin: 70px 0;
}
.event-details h2 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 50px;
    font-size: 1.3rem;
    
}
.event-details h2 p {
    border: 1px solid #000;
    border-radius: 30px;
    display: inline-block;
    padding: 8px 70px;
    line-height: 1.4;
    font-size: 1.5rem;
}
.event-details h2 span {
    display: block;
    font-weight: 200;
    font-size: 1rem;
}
.event-details table {
    
}
.event-details table th {
    width: 150px;
    border: none;
    border-bottom: 1px solid #8d8d8d;
    padding: 20px 0;
}

.event-details table td {
    border: none;
    border-bottom: 1px solid #8d8d8d;
    padding: 20px 0;
}
@media only screen and (max-width: 768px) {
.event-details table th,.event-details table td {
    font-size: 1.5rem;
    display: block;
    width: 100%;
}
.event-details table th {
    padding: 0;
}
.event-details table td {
    border: none;
}
}


/*========フォーム========*/
.event-form p {
    margin-bottom: 0;
}

.event-form {
    background: #e3e3d8;
    padding: 50px 80px;
}
@media only screen and (max-width: 768px) {
.event-form {
    padding: 50px 30px;
}
}
.event-form h2 {
    font-size: 1.7rem;
    font-weight: 600;
    text-align: center;
}
.event-form .form-desc {
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.2rem;
}
.event-form table th {
    width: 200px;
    border: none;
    font-weight: 200;
    font-size: 1.1rem;
    vertical-align: middle;
}
.event-form table td {
    border: none;
    font-weight: 200;
}
.event-form .req {
    color: #f4a261;
    margin-left: 4px;
    font-size: 0.9rem;
}
@media only screen and (max-width: 768px) {
.event-form table th {
    display: block;
    width: 100%;
    font-size: 1.5rem;
}
.event-form table td {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.event-form .req {
    font-size: 1rem;
}
}

.event-form table .form-group-select span {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.event-form table .form-group-select span::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.event-form table td select {
    appearance: none;
    min-width: 230px;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
}
@media only screen and (max-width: 768px) {
.event-form table td select {
    font-size: 1.5rem;
}
}

.event-form table td input,.event-form table td textarea {
    border: none;
    box-sizing: border-box;
    max-width: 100%;
    padding-left: 10px;
}
.event-form table td textarea {
    resize: vertical;
}
@media only screen and (max-width: 768px) {
.event-form table td textarea {
    width: 100%;
}
}
.event-form .form-group-ac .ac-ctrl {
    display: inline-block;
    margin-right: 10px;
}
.event-form .form-group-ac p {
    font-size: 1.1rem;
}
@media only screen and (max-width: 768px) {
.event-form .form-group-ac p {
    font-size: 1.5rem;
}
}
.event-form .form-group-ac input {
    width: 50px;
    padding: 0 10px;
}
.wpcf7-list-item-label {
    font-size: 1.1rem;
}
.form-group-check input {
    width: auto !important;
    max-width: auto !important;
}
.event-form .form-btns {
    display: flex;
    justify-content: center;
}
.event-form .form-btns input {
    border: none;
    background: #ffe164;
    color: #006450;
    border-radius: 30px;
    padding: 10px 40px;
    font-size: 1.2rem;
    margin-right: 30px;
    cursor: pointer;
}
.wpcf7-spinner {
    display: none !important;
}
.event-form .btn-tel-cta {
    text-align: center;
    background: #c17c5e;
    color: #fff;
    display: block;
    line-height: 1.1;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
}
.event-form .btn-tel-cta span {
    display: block;
    font-size: 0.9rem;
}
@media only screen and (max-width: 768px) {
.event-form .form-btns {
    display: block;
}
.event-form .form-btns input {
    width: 100%;
    text-align: center;
}
.event-form .form-btns div:first-child {
    margin-bottom: 30px;
}
}

/*========フォームのエラー文========*/
.wpcf7-not-valid-tip,.wpcf7-response-output {
    font-size: 1rem;
}
.wpcf7-response-output {
    color: red;
    border-color: red !important;
}

@media only screen and (max-width: 768px) {
/*.wpcf7-form-control-wrap {
  display: block;
  text-align: center;
}
.wpcf7-form p {
  text-align: center;
}
*/

}

/* リセットのtd,thはフォーム内に影響しないよう限定する */
@media only screen and (max-width: 768px) {
    td, th {
        padding: 0;
    }
    /* フォーム内は上書きして戻す */
    .event-form table th,
    .event-form table td {
        padding: 8px 0;
    }
}

/* inputのはみ出し対策 */
.event-form table td input,
.event-form table td textarea {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

