body {
    font-family: var(--fontNotoSansJP);
}



.is-sp {
    display: none;
}

@media (max-width: 767px) {
    .is-pc {
        display: none;
    }

    .is-sp {
        display: block;
    }
}

.banner__title {
    color: #fff;
    font-family: var(--fontRoboto);
    font-size: var(--fontSize62);
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.2;
    margin-top: 8px;
    padding-top: 145px;
    text-align: center;
}

.banner__subtitle {
    color: #fff;
    font-family: var(--fontNotoSansJP);
    font-size: var(--fontSize15);
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1.5;
    padding-bottom: 145px;
    text-align: center;
}

.company__service a .single__btn:first-child,
.company__service .single__btn:first-child {
    border: 3px solid #b6d9e9;
}

.company__service .single__btn2 {
    border: 3px solid #f1e8a7;
}

.company__service .single__btn:last-child {
    border: 3px solid #99f2be;
}

.event__returnButton {
    margin: 0 auto;
    margin-top: 128px;
    max-width: fit-content;
}

.event__returnButton a .outlineButton {
    padding: 23px 87px;
}

.openHouse__banner {
    background: url(../images/openHouseBg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* -------------------------------------------------------
    button
------------------------------------------------------- */
.button a {
    background: var(--colorBlack);
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    max-width: 180px;
    padding: 16px 0;
    text-align: center;
    transition: .4s;
    width: 100%;
}

.button a:hover {
    background: var(--colorYellow);
    color: #323232;
}

.is-white.button a {
    background: #fff;
    color: var(--colorBlack);
}

.rightArrow__white:hover::after {
    border-color: #333;
    transition: .4s;
}

.dark-link {
    color: #333;
}

/* General CSS */

body {
    font-family: var(--fontNotoSansJP);
}

.leftBanner .heading {
    margin: 0 auto;
    margin-top: 40px;
    max-width: 1080px;
    text-align: start;
}

.googleMap__outer {
    height: 320px;
    width: 100vw;
}

.googleMap__inner {
    height: 100%;
    margin: 0 auto;
    max-width: 1080px;
    position: relative;
    width: 100%;
}

.googleMap__inner iframe {
    border: none;
    height: 100%;
    width: 100%;
}

.googleMap__link {
    background: #e9d642;
    bottom: -20px;
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: 16px;
    font-weight: 700;
    left: 50%;
    letter-spacing: .16em;
    padding: 12px 24px;
    position: absolute;
    transform: translateX(-50%);
}

.pageMessage__inner {
    margin-top: 80px;
}

.pageMessage__text {
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: var(--fontSize18);
    font-weight: 500;
    letter-spacing: .16em;
    line-height: 2;
    text-align: center;
}

.wrapper {
    margin: 0 auto;
    max-width: 1080px;
    width: 100%;
}

.yellowText {
    color: var(--colorYellow);
}

@media screen and (max-width: 767px) {
    .googleMap__inner {
        width: 90vw;
    }
}

/* Form CSS */

.form__baseline {
    align-self: baseline;
}

.form__buttons {
    align-self: center;
    display: flex;
    gap: 48px;
    margin-top: 34px;
}

.form__center {
    align-content: center;
}

.form__container {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
    margin: 64px auto 96px;
    max-width: 1080px;
}

.form__gridInput {
    column-gap: 30px;
    display: grid;
    row-gap: 15px;
}

.form__gridInput .form__multiInputs {
    padding: 5px 0;
}

.form__label {
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: var(--fontSiz16);
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    width: fit-content;
}

.form__multiInputs {
    display: flex;
    height: 100%;
}

.form__multiInputs--date {
    align-items: center;
    display: flex;
    gap: 30px;
    height: 100%;
}

.form__multiInputs--people {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-around;
}

.form__multiInputs--people span,
.form__multiInputs--date span {
    width: 40%;
}

.form__multiInputs input {
    height: 100%;
    max-width: 160px;
}

.form__multiInputs .form__text {
    max-width: 100%;
}

.form__outlineBtn {
    background: transparent;
    border: 4px solid var(--colorYellow);
    border-radius: 32px;
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    padding: 18px 97px;
}

.form__multiInputs label {
    align-self: center;
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-weight: 400;
    line-height: 1.75;
    padding: 0 24px 0 8px;
}

.form__required::after {
    background: var(--colorYellow);
    border-radius: 4px;
    color: #fff;
    content: "必須";
    font-family: var(--fontNotoSansJP);
    font-size: 12px;
    font-weight: 400;
    padding: 2px 10px;
    position: absolute;
    right: -56px;
    top: 50%;
    transform: translateY(-50%);
}

.form__marginRight {
    margin-right: 75px;
}

.form__notRequired::after {
    background: #ddd;
    border-radius: 4px;
    color: #fff;
    content: "任意";
    font-family: var(--fontNotoSansJP);
    font-size: 12px;
    font-weight: 400;
    padding: 2px 10px;
    position: absolute;
    right: -56px;
    top: 50%;
    transform: translateY(-50%);
}

.form__reasonGroups {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 30px;
}

.form__reasonGroups--budget,
.form__reasonGroups--floors,
.form__reasonGroups--land,
.form__reasonGroups--type {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: fit-content;
}

.form__reasonGroups--budget,
.form__reasonGroups--floors {
    justify-self: center;
}

.form__reasonGroups--budget {
    display: flex;
    gap: 20px;
    grid-column: 2 / span 2;
    grid-row: 2;
}

.form__reasonGroups--budget input {
    width: 50px;
}

.form__reasonGroups--floors {
    grid-column: 2 / span 2;
    grid-row: 1;
}

.form__reasonGroups--land {
    grid-column: 1;
    grid-row: 2;
}

.form__reasonGroups--land .wpcf7-form-control-wrap {
    padding-top: 10px;
}

.form__reasonGroups--type {
    grid-column: 1;
    grid-row: 1;
}

.form__row {
    align-items: center;
    display: grid;
    grid-template-columns: 240px auto;
    height: 100%;
    min-height: 48px;
}

.form__title {
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: var(--fontSize32);
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.5;
    padding: 48px 0;
    text-align: center;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

input[type="number"] {
    -moz-appearance: textfield !important;
}

/* .wpcf7-form {
	max-width: 920px;
	margin: 0 auto;
	padding-bottom: 96px;
	display: flex;
	flex-direction: column;
	gap: 32px;
} */

.wpcf7-form-control,
.wpcf7-form-control-wrap {
    height: 100%;
}

.wpcf7-spinner {
    position: absolute;
}

.wpcf7-submit {
    background: var(--colorYellow);
    border: none;
    border-radius: 32px;
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    padding: 22px 121px;
}

.wpcf7-list-item-label {
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-weight: 400;
    line-height: 1.75;
    padding-left: 8px;
}

.wpcf7-text,
.wpcf7-number,
.wpcf7-textarea,
.wpcf7-date,
.wpcf7-select {
    border: 1px solid #999;
    border-radius: 4px;
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-weight: 400;
    line-height: 1.75;
    padding-left: 16px;
    width: 100%;
}

.wpcf7-date {
    padding-right: 16px;
}

.wpcf7-textarea {
    resize: vertical;
    width: calc(100% - 20px);
}

@media screen and (max-width: 767px) {
    .form__buttons {
        flex-direction: column;
    }
    .form__container {
        margin: 40px 10px 56px;
    }
    .form__label span {
        width: 100%;
    }
    .form__multiInputs .form__text {
        width: 100%;
    }
    .form__multiInputs--people {
        width: 100%;
    }
    .form__multiInputs--people label {
        padding: 0 10px;
        writing-mode: tb;
    }
    .form__reasonGroups {
        align-items: center;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .form__reasonGroups--budgetGroup {
        line-height: 4;
        text-align: center;
    }
    .form__reducedSize {
        height: 60%;
    }
    .form__row {
        align-items: baseline;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;
    }
    .form__topSpace {
        margin-top: 40px;
    }
    .heading {
        padding: 0 20px;
    }
    .wpcf7-text,
    .wpcf7-number,
    .wpcf7-date,
    .wpcf7-select {
        padding: 10px;
        width: 100%;
    }
    .wpcf7-textarea {
        padding: 10px;
    }
    .wpcf7-form-control-wrap {
        width: 100%;
    }
    .wpcf7-form-control-wrap textarea {
        max-width: 90vw;
    }
}

/* Single page the_content() styling */

.serviceButton--lightBlue {
    color: #b6d9e9;
    font-family: var(--fontRoboto);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1.7;
}

.serviceButton--lightYellow {
    color: #a39f7c;
    font-family: var(--fontRoboto);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1.7;
}

.serviceButton--lightGreen {
    color: #f19065;
    font-family: var(--fontNotoSansJP);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
}

.single__blogBanner {
    background: url(../images/blogBg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.single__btn2 .company__serviceButton--title {
    letter-spacing: .1em;
}

.singleContent {
    overflow: hidden;
}

.singleContent h2 {
    background: #eee;
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.3;
    padding: 0 5px;
    position: relative;
    width: fit-content;
}

.singleContent h2::after {
    border-bottom: 1px solid #333;
    bottom: 50%;
    content: "";
    position: absolute;
    transform: translateY(50%);
    width: 1080px;
    z-index: -1;
}

.singleContent h3 {
    background: #eee;
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.5;
    margin-top: 32px;
    padding: 0 5px;
    position: relative;
    width: fit-content;
}

.singleContent h3::after {
    border-top: 1px solid #333;
    bottom: -4px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}

.singleContent h3::before {
    border-top: 1px solid #333;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: -4px;
    width: 100%;
}

.singleContent h4 {
    background: #eee;
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.8;
    margin-left: 5px;
    margin-top: 32px;
    padding: 0 5px;
    position: relative;
    width: fit-content;
}

.singleContent h4::before {
    border-right: 2px solid #333;
    content: "";
    height: 100%;
    left: -5px;
    position: absolute;
    top: 0;
    width: 0;
}

.singleContent p {
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .1em;
    line-height: 1.8;
    margin-top: 8px;
}

.singleContent ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: 35px;
    margin-top: 32px;
}

.singleContent ul li {
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .1em;
    position: relative;
}

.singleContent ul li::before {
    background: url(../images/realEstate/listMarker.png);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 16px;
    left: -25px;
    position: absolute;
    top: 0;
    width: 16px;
}

.singleContent ol {
    counter-reset: olItem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.singleContent ol li {
    color: var(--colorBlack);
    counter-increment: olItem;
    font-family: var(--fontNotoSansJP);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .1em;
    margin-left: 10px;
    position: relative;
}

.singleContent ol li::before {
    color: #e9d642;
    content: counter(olItem) ".";
    font-family: var(--fontNotoSansJP);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.5;
    margin-right: 8px;
}

.single__btn .company__serviceButton--textArea {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-right: 60px;
    text-align: center;
}

.single__btn .company__serviceButton--textArea .company__serviceButton--title,
.single__btn2 .company__serviceButton--textArea .company__serviceButton--title {
    width: 100%;
}

.single__btn .company__serviceButton--textArea .company__serviceButton--title::after,
.single__btn2 .company__serviceButton--textArea .company__serviceButton--title::after {
    background-color: rgba(247, 227, 138, .44);
}

.single__btn2 .company__serviceButton--textArea {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-right: 35px;
    text-align: center;
}

.single__googleMap {
    margin-top: 24px;
}

.single__heading--text {
    border-bottom: 2px solid var(--colorBlack);
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.5;
    padding-bottom: 16px;
}

.single__icon1 {
    align-self: center;
    justify-self: center;
}

.single__icon1 img {
    height: auto;
    max-width: 48px;
    width: 100%;
}

.single__icon2 {
    align-self: center;
    justify-self: center;
}

.single__icon2 img {
    height: auto;
    max-width: 42px;
    width: 100%;
}

.single__icon3 {
    align-self: center;
    justify-self: center;
}

.single__icon3 img {
    height: auto;
    max-width: 48px;
    width: 100%;
}

.single__message {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
    margin-top: 48px;
    padding: 32px 48px;
}

.single__message--text {
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .16em;
    line-height: 2;
}

.single__newsBanner {
    background: url(../images/newsBG.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.single__openHouseBanner {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)),
    url(../images/eventBG.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.single__returnBtn {
    margin: 0 auto;
    margin-top: 128px;
    width: fit-content;
}

.single__returnBtn a .outlineButton {
    padding: 23px 95px;
}

.single__studyBanner {
    background: url(../images/studyBg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.single__subtitle {
    color: #fff;
    font-family: var(--fontNotoSansJP);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .21em;
    line-height: 1.4;
    margin-top: 8px;
    padding-bottom: 25px;
}

.single_tagGroup {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.single__tag {
    background: #d9d9d9;
    color: var(--colorBlack);
    font-family: var(--fontNotoSansJP);
    font-size: 11px;
    font-weight: 400;
    line-height: 2;
    padding: 8px 16px;
}

.single__title {
    color: #fff;
    font-family: var(--fontRoboto);
    font-size: 62px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.2;
    padding-top: 32px;
}

.single__update--date {
    color: #929292;
    font-family: var(--fontRoboto);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 61px;
}

.single__contact .voiceHead::before,
.single__contact .voiceHead::after {
    width: 30%;
}

.single__contactHead {
    font-family: var(--fontNotoSansJP);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: .1em;
    text-align: center;
}

.single__voiceBanner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.single__voiceCard {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
    margin: 0 auto;
    max-width: 960px;
    position: relative;
    top: -30px;
    z-index: 2;
}

.single__voiceCard--inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px;
}

.single__voiceCard--inner .single__voiceNumber {
    font-size: 24px;
}

.single__voiceCard--inner .single__voiceNumber::before {
    bottom: -15px;
}

.single__voiceCard--inner .worksPost__itemBox--title {
    margin-top: 30px;
}

.single__voiceName {
    color: var(--colorBlack);
    font-family: var(--fontRoboto);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .1em;
    line-height: 1.75;
    margin-top: 16px;
}

.single__voiceNumber {
    color: var(--colorBlack);
    font-family: var(--fontRoboto);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1;
    position: relative;
}

.single__voiceNumber::before {
    background-color: #d9d9d9;
    bottom: -10px;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 40px;
}

.single__worksBanner {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)),
    url(../images/worksBG.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.single__works--categories {
    align-items: center;
    display: flex;
    gap: 32px;
    margin: 0 auto;
    margin-top: 16px;
    width: fit-content;
}

.single__works--categories .single__tag {
    padding: 8px 32px;
}

.single__worksTitle {
    margin-top: 65px;
    position: relative;
}

.single__worksTitle .single__contactHead {
    background: #fff;
    margin: 0 auto;
    padding: 0 20px;
    width: fit-content;
}

.single__worksTitle::before {
    background-color: var(--colorBlack);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 27%;
    transform: translateY(-50%);
    width: 100%;
    z-index: -1;
}

.study__banner {
    background: url(../images/studyBg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.works__banner {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)),
    url(../images/worksBG.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* @media screen and (max-width: 1080px) {
	.singleContent {
		margin: 0 60px;
	}
} */

@media screen and (max-width: 767px) {
    .pageMessage {
        padding: 0 20px;
    }
    .pageMessage__inner {
        margin-top: 40px;
    }
    .pageMessage__text {
        font-size: 18px;
    }
    .single__heading {
        padding: 0 20px;
    }
    .single__heading--text {
        font-size: 24px;
        margin-top: 10px;
        padding-right: 30px;
    }
    .single__title {
        font-size: 40px;
    }
    .single__newsBanner,
    .single__openHouseBanner,
    .single__studyBanner,
    .single__blogBanner,
    .single__workBanner {
        padding: 0 20px;
    }
    .singleContent h2 {
        font-size: 24px;
        line-height: 1.5;
        padding: 16px;
    }
    .singleContent h3 {
        font-size: 22px;
    }
    .singleContent h4 {
        font-size: 20px;
    }
    .singleContent p,
    .singleContent ul li,
    .singleContent ol li {
        font-size: 15px;
    }
    .single__contact .voiceHead::before,
    .single__contact .voiceHead::after {
        width: 15vw;
    }
    .single__contactHead {
        font-size: 24px;
    }
    .single__message {
        margin: 48px 20px 0;
    }
    .single__update--date {
        margin-top: 30px;
    }
}

/* 20231206　追加分　*/
.company__specialNote {
    line-height: 1.5;
    margin-top: 16px;
}
