@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap');

:root {
    --maincolor: #150f8b;
    --redcolor: #ff0b0b;
    --yellowcolor: #b79400;
    --textcolor: #3d3d3d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html body {
    font-family: "Shippori Mincho B1", serif !important;
    color: var(--textcolor);
}

body p,
body li,
body th,
body td
 {
    font-size: 18px;
}

/* reset */
.site-body {
    padding: 0 !important;
}

.wp-block-cover {
    padding: 0;
}

body .main-section {
    margin-bottom: 0;
}

body p,body h1,body h2,body h3,body h4,body h5,body h6 {
    margin-bottom: 0;
}

body li a, body a {
    text-decoration: none;
    transition: all 0.3s;
}

/* ページヘッダー非表示 */
body .page-header {
    /* min-height: 0; */
    background: linear-gradient(to right, #0a00c9 0%, var(--maincolor) 50%, #0a00c9 100%);
}

/* .page-header-inner {
    display: none;
} */

@media (min-width: 1200px) {
    body .container, body .container-lg, body .container-md, body .container-sm, body .container-xl {
        max-width: none;
    }
}

/* レスポンシブスペーサー */
.res-spacer-120 {
    margin-top: 120px;
}


/* ------ */
/* header */
/* ------ */

/* ヘッダーのmax-widthをリセット */
.site-header-container {
    max-width: none !important;
}


.header-upper-container {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-custom-logo-upper {
    font-size: 16px;
}

.header-custom-logo {
    display: flex;
    flex-direction: column;
}

.header-catchcopy p {
    font-size: 28px;
    font-weight: bold;
}

.header-contact__btn {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: var(--maincolor);
    padding: 10px 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.header-contact__btn::before {
    content: "";
    background-image: url("../images/mail_icon.svg");
    width: 30px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 1rem;
    transform: rotate(-2deg);
}

/* header-nav */
.header-custom-nav {
    justify-content: center !important;
    border-top: 1px solid #bebebe;
}

.header-custom-nav ul {
    justify-content: space-evenly;
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: auto !important;
}

/* スクロール時、ヘッダー上部を非表示 ナビゲーション部分ブラー */
.header_scrolled .header-upper-container {
    display: none;
}

.header_scrolled .site-header {
    background-color: transparent !important;
}

.header_scrolled .global-nav {
    background-color: #ffffffe3;
    backdrop-filter: blur(10px);
}


/* ----------- */
/* main-visual */
/* ----------- */
.main-visual__item {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

.main-visual__item-01 {
    background-image: url("../images/hero01_back.webp");
}

.main-visual__item-02 {
    background-image: url("../images/hero02_back.webp");
    background-position: right;
}

.main-visual__item-03 {
    background-image: url("../images/hero03_back.webp");
}

/* ------- */
/* 新着情報 */
/* ------- */
.project__container {
    width: calc(100% - 40px);
    max-width: 1110px;
    margin-inline: auto;
}

.project__group {
    margin-top: 20px;
}

.project__tab {
    display: flex;
    align-items: center;
    height: 35px;
    padding: 0px 20px;
    background-color: var(--maincolor);
    width: fit-content;
    color: #fff;
    font-weight: bold;
    border-radius: 5px 0 0 0;
    position: relative;
}

.project__tab::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 0px 0px 20px;
    border-color: transparent transparent transparent var(--maincolor);
    position: absolute;
    bottom: 0;
    left: 100%;
}

.project__body {
    background-color: #fff;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0 20px 20px 20px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
}

.project__table {
    display: flex;
}

.project__thumbnail {
    padding: 20px;
}

.project__thumbnail-img {
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.project__table-right {
    flex: 1;
    padding: 20px;
}

.project__table-row {
    display: flex;
    gap: 3%;
    flex-wrap: wrap;
}

.project__table-head {
    width: fit-content;
    background-color: var(--yellowcolor);
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 0 10px;
    border-radius: 3px;
}

.project__table-comment {
    border-top: 1px dotted #bebebe;
    margin-top: 10px;
    padding-top: 5px;
}


/* ------------- */
/* バナーメニュー */
/* ------------- */
.banner-menu__inner {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-menu__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background-size: 135%;
    background-repeat: no-repeat;
    background-position: 50%;
    transition: background-size 0.3s;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.banner-menu__link:hover {
    background-size: 150%;
}

.banner-menu__link::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.3;
    position: absolute;
}

.banner-menu__link_01 {
    background-image: url("../images/banner_top.webp");
}

.banner-menu__link_02 {
    background-image: url("../images/banner_sell.webp");
}

.banner-menu__link_03 {
    background-image: url("../images/banner_buy.webp");
}

.banner-menu__link_04 {
    background-image: url("../images/banner_office.webp");
}

.banner-menu__link_05 {
    background-image: url("../images/banner_case.webp");
}

.banner-menu__link_06 {
    background-image: url("../images/banner_merit.webp");
}

.banner-menu__link_07 {
    background-image: url("../images/banner_blog.webp");
}

.banner-menu__link_08 {
    background-image: url("../images/banner_contact.webp");
}

.banner-menu__text {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}


/* -------------- */
/* 売りたい方ページ */
/* -------------- */

/* hero */
.sell__hero-cover {
    min-height: auto !important;
}


/* 25day */
.sell__25day-cover {
    min-height: auto !important;
}


/* 3STEP */
.sell-3step {
    position: relative;
    top: -30px;
}

.sell-3step__column {
    margin-top: 20px !important;
}

.sell-3step__group {
    padding: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 2px solid var(--maincolor);
}

.sell-3step__free {
    margin-bottom: 0 !important;
    background-color: var(--redcolor);
    padding: 4px 16px;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
}

.sell-3step__inline {
    position: relative;
}

.sell-3step__inline::before {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    width: 90px;
    height: 104px;
    display: block;
}

.sell-3step__inline-01::before {
    background-image: url("../images/step01.svg");
}

.sell-3step__inline-02::before {
    background-image: url("../images/step02.svg");
}

.sell-3step__inline-03::before {
    background-image: url("../images/step03.svg");
}

.sell-3step__img {
    margin-top: 20px !important;
}

.sell-3step__img > img {
    max-height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.sell-3step__text {
    margin-top: 20px !important;
}


/* PR */
.sell-pr__cover {
    min-height: auto;
    padding-block: 60px;
}


/* 買収事例 */
.sell-case__group {
    padding: 20px;
    border-radius: 20px;
    border: 3px solid var(--maincolor);
}

.sell-case__head-column {
    margin-bottom: 40px !important;
}

.sell-case__head-left {
    flex: 1;
}

.sell-case__head-right {
    flex-basis: 700px !important;
}

.sell-case__head-location-container {
    gap: 4px;
}

.sell-case__head-location {
    font-size: 22px;
    font-weight: bold;
    color: var(--maincolor);
}

.sell-case__head-worries-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.sell-case__head-worries {
    background-color: var(--yellowcolor);
    padding: 4px 10px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0 !important;
    margin-inline: 0 !important;
}

.sell-case__head-img img {
    border-radius: 10px;
}


/* --------------- */
/* 買いたい方ページ */
/* --------------- */
/* ヘッダー画像 */
.buy__hero-cover {
    min-height: auto;
}

/* 宗教法人メリット */
body .buy__merit-heading {
    color: var(--maincolor);
    border-color: #e4ebff;
    border-width: medium;
}

body .buy__merit-heading-caution {
    border-color: var(--maincolor);
}


/* ---------------------- */
/* 運営会社情報スタッフ紹介 */
/* ---------------------- */
body .about__hero-cover {
    min-height: auto;
}

/* 活動紹介 */
body .about-job__heading {
    color: var(--maincolor);
    border-color: #e4ebff;
    border-width: medium;
}

.about-job__greeting-group {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.about-job__greeting-img {
    flex-basis: 300px;
}

.about-job__greeting-text {
    flex: 1;
}

.about-job__collabo-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.about-job__collabo-img {
    flex-basis: 300px;
}

.about-job__collabo-text {
    flex: 1;
}

.about-job__collabo-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px dashed #e2e2e2;
    padding-bottom: 20px;
}

.about-job__collabo-group:nth-of-type(3) {
    flex-direction: row-reverse;
}

.about-service__text {
    border: 3px inset var(--maincolor);
    padding: 30px;
    border-radius: 8px;
}


/* ------------- */
/* 宗教法人ブログ */
/* ------------- */
@media (min-width: 1200px) {
    body.archive .container, body.archive .container-lg, body.archive .container-md, body.archive .container-sm, body.archive .container-xl,
    body.single .container, body.single .container-lg, body.single .container-md, body.single .container-sm, body.single .container-xl {
        max-width: 1200px;
    }
}

/* 投稿者名を非表示 */
.entry-meta-item-author {
    display: none;
}

/* コメント非表示 */
.comments-area {
    display: none;
}

/* 目次 */
.blog-menu {
    width: calc(100% - 40px);
    max-width: fit-content;
    margin-inline: auto;
    border: 1px solid #dceaff;
    padding: 20px;
    border-radius: 20px;
}

.blog-menu__heading {
    text-align: center !important;
}

.blog-menu__list-item {
    padding-top: 10px;
}



/* ------------------ */
/* お問い合わせフォーム */
/*------------------- */
.contact input {
    margin: 0 !important;
}

.contact__form {
    max-width: 1200px;
    margin-inline: auto;
}

.contact__group {
    padding: 20px;
    border-radius: 10px;
}

.contact__group:nth-of-type(even) {
    background-color: #eaf0f3;
}

.contact__inline {
    display: flex;
    align-items: center;
}

.contact__left {
    width: 35%;
}

.contact__right {
    width: 65%;
}

.contact__head > p {
    display: flex;
}

.contact__any {
    background-color: #3f90c4;
    color: #fff;
    padding: 0 0.5rem;
    border-radius: 4px;
}

.contact__title {
    margin-left: 20px;
    font-weight: bold;
    flex: 1;
}

.contact__required {
    background-color: #c43f3f;
    color: #fff;
    padding: 0 0.5rem;
    border-radius: 4px;
    max-height: fit-content;
    align-self: center;
}

.contact__inline > p {
    display: flex;
    align-items: center;
}

input.contact__name-form {
    width: 120px !important;
    margin-right: 0.5rem !important;
}

.contact input::placeholder {
    opacity: 0.5;
}

.contact__link {
    font-weight: bold;
    color: #2e698e;
    text-decoration: none;
    transition: all 0.3s;
}

.contact__textarea {
    margin-top: 20px;
}

.wpcf7-not-valid-tip {
    font-weight: bold !important;
}

.contact__submit:disabled {
    background-color: gray;
    border: none;
}

/* contact privacypolicy */
.contact__policy-group {
    padding-bottom: 40px;
}

.contact__privacy {
    max-height: 400px;
    overflow: auto;
}

.contact__policy-table {
    border: none;
}

.contact__policy-table td,
.contact__policy-table th {
    border: none;
    padding: 0;
}

.contact__policy-table-item {
    width: 150px;
    font-weight: bold;
}

.contact__policy-table-colon {
    width: 1rem;
}

.contact__privacy a {
    text-decoration: none;
    color: #000;
    transition: all 0.3s;
}

.contact__policy-group ul {
    list-style: decimal;
}

/* ------------- */
/* パンくずリスト */
/* ------------- */
.breadcrumb-list span {
    font-size: 14px !important;
}


/* --------------- */
/* ソーシャルボタン */
/* --------------- */
.veu_socialSet {
    max-width: 1200px;
    width: calc(100% - 40px);
    margin-inline: auto;
}


/* ------ */
/* footer */
/* ------ */
.site-footer {
    background-color: var(--maincolor);
    border-top: none !important;
}

.footer__copyright-text {
    text-align: center;
    display: block;
    color: #fff;
}


/* --------------- */
/* 画面幅1199px以下 */
/* --------------- */
@media screen and (max-width: 1199px) {
    /* -------------- */
    /* 売りたい方ページ */
    /* -------------- */

    /* 3STEP */
    .sell-3step__inline::before {
        width: 60px;
        height: 70px;
    }
}


/* --------------- */
/* 画面幅1024px以下 */
/* --------------- */
@media screen and (max-width: 1024px) {
    /* レスポンシブスペーサー */
    .res-spacer-120 {
        margin-top: 90px;
    }


    .header-catchcopy {
        display: none;
    }
}


/* --------------- */
/* 画面幅991px以下 */
/* --------------- */
@media screen and (max-width: 991px) {
    /* -------------- */
    /* 売りたい方ページ */
    /* -------------- */

    /* 3STEP */
    .sell-3step__inline {
        justify-content: center;
    }

    .sell-3step__inline::before {
        position: absolute;
        top: -62px;
        left: -40px;
    }

    /* 買収事例 */
    .sell-case__head-column {
        flex-direction: column-reverse;
    }

    .sell-case__head-right {
        flex-basis: auto !important;
    }

    /* ------------------ */
    /* お問い合わせフォーム */
    /* ------------------ */
    .contact__left {
        width: 40%;
    }
    
    .contact__right {
        width: 60%;
    }
}


/* -------------- */
/* 画面幅767px以下 */
/* -------------- */

@media screen and (max-width: 767px) {
    /* レスポンシブスペーサー */
    .res-spacer-120 {
        margin-top: 60px;
    }


    /* ------ */
    /* header */
    /* ------ */
    .header-contact__btn {
        display: none;
    }


    /* ------- */
    /* 案件一覧 */
    /* ------- */
    .project__table {
        flex-direction: column;
    }

    .project__thumbnail-img {
        width: 100%;
    }


    /* -------------- */
    /* 売りたい方ページ */
    /* -------------- */

    /* 3STEP */
    .sell-3step__inline {
        justify-content: left;
    }

    .sell-3step__inline::before {
        position: static;
    }


    /* ---------------------- */
    /* 運営会社情報スタッフ紹介 */
    /* ---------------------- */

    /* 活動紹介 */
    .about-job__greeting-group {
        flex-direction: column;
    }

    .about-job__collabo-group {
        flex-direction: column;
    }

    .about-job__collabo-group:nth-of-type(3) {
        flex-direction: column;
    }

    .about-job__greeting-img {
        max-width: 300px !important;
        flex-basis: auto;
    }

    .about-job__collabo-img {
        max-width: 300px !important;
        flex-basis: auto;
    }

    /* ------------------ */
    /* お問い合わせフォーム */
    /* ------------------ */
    .contact__inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact__left, .contact__right {
        width: 100%;
    }

    input.contact__name-form {
        width: 99% !important;
    }
}


/* -------------- */
/* 画面幅575px以下 */
/* -------------- */
@media screen and (max-width: 575px) {
    /* -------------- */
    /* 売りたい方ページ */
    /* -------------- */

    /* 3STEP */
    .sell-3step__3step > img {
        width: 55vw;
    }


    /* ------------------ */
    /* お問い合わせフォーム */
    /* ------------------ */
    .contact__radio-form {
        display: flex;
        flex-direction: column;
    }
}


/* -------------- */
/* 画面幅480px以下 */
/* -------------- */

@media screen and (max-width: 767px) {
    /* ------ */
    /* header */
    /* ------ */
    .header-custom-logo-upper {
        font-size: 11px;
    }

    .header-custom-link img {
        width: 250px;
    }


    /* ------------- */
    /* バナーメニュー */
    /* ------------- */
    .banner-menu__link {
        width: 130px;
        height: 130px;
    }

    .banner-menu__text {
        font-size: 16px;
    }
}