:root {
    --light__base: #fdfdfe;
    --base__color: #f7f8f8;
    --base__color2: #faf8f5;
    --heavy__base: #dcdddd;
    --font__color: #1b2f44;
    --font__color2: #3e3a39;
    --visited: #9c9c9c;
    --red: #e83828;
    --yellow: #e8dc42;
    --yellow__translate: #e8dd42ad;
    --blue: #036eb8;
    --pink: #fe9c9c;
    --white: #ffffff;
    --trans__bg: rgba(255, 255, 255, 0.2);
    --box__shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    --button__gradient: linear-gradient(130deg, #e39f32 1%, #e83327 100%);
    --clump1remTo2rem: clamp(1rem, 0.545rem + 1.94vw, 2rem);
}

/* メインビジュアル */

.mv {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-top: 90px;
}

.mv img {
    width: 100%;
    cursor: pointer;
}

/* 物件情報＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

.property {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--clump1remTo2rem) 1rem;
    display: flex;
    flex-direction: column;
    gap: var(--clump1remTo2rem);
}

.property__items {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.property__item {
    width: 100%;
    max-width: 280px;
    padding: 1rem;
    background: var(--base__color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s;
    position: relative;
    border-radius: 1rem;
    box-shadow: var(--box__shadow), inset 0 0 0 0 rgba(0, 0, 0, 0);
}

.property__item:hover {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), inset var(--box__shadow);
}

.property__new {
    position: absolute;
    top: 0.5rem;
    right: 0;
    background: var(--yellow);
    padding: 0.2em 1em 0.2em 0;
    z-index: 10;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    font-weight: 700;
}

.property__new::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--yellow);
    transform: skewX(-35deg);
    position: absolute;
    top: 0;
    left: -1em;
    z-index: -1;
}

.property__new::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--yellow);
    transform: skewX(35deg);
    position: absolute;
    top: 0;
    left: -1em;
    z-index: -1;
}

.property__item a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.property__img__wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.property__img__wrap img {
    width: 100%;
    transition: all 0.3s;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.property__item:hover img {
    transform: scale(1.1);
}

.property__item ul {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    font-size: 1.1rem;
}

.property__price {
    font-size: 1.3em;
    color: var(--red);
    font-weight: 700;
    text-align: right;
}

.property__yield {
    font-size: clamp(1.2rem, 1.164rem + 0.18vw, 1.3rem);
    color: var(--blue);
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.property__yield .small{
    font-size: 0.9rem;
}

.property__hr {
    border: 1px solid var(--visited);
}

.property__place,
.property__space {
    padding-left: 1em;
    position: relative;
}

.property__place::after,
.property__space::after {
    content: "";
    width: 0.5em;
    height: 0.5em;
    aspect-ratio: 1/1;
    background: var(--yellow);
    border-radius: 1em;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.property__comment {
    line-height: 1.6em;
    font-size: 0.9em;
}

/* ガレクラのメリット ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/

.merit1 {
    display: flex;
    flex-direction: column;
    gap: var(--clump1remTo2rem);
    padding: var(--clump1remTo2rem) 0;
}

.merit__title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.merit__title img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.merit__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
}

.merit__decoration {
    width: calc(100% - 2rem);
    max-width: 500px;
    text-align: center;
    padding: 0.1em 2em;
    margin: 0 auto;
    font-size: clamp(1.6rem, 1.455rem + 0.73vw, 2rem);
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--white);
    position: relative;
}

.merit__decoration::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--font__color);
    transform: skewX(-35deg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.merit__decoration::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--font__color);
    transform: skewX(35deg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.merit__item1 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background:
        linear-gradient(45deg, transparent 20px, var(--white) 20px),
        linear-gradient(135deg, transparent 20px, var(--white) 20px),
        linear-gradient(225deg, transparent 20px, var(--white) 20px),
        linear-gradient(315deg, transparent 20px, var(--white) 20px);
    background-position: bottom left, top left, top right, bottom right;
    background-size: 51% 51%;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 1rem;
    align-items: center;
    position: relative;
}

.merit__item1::after {
    content: "";
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background:
        linear-gradient(45deg, transparent 21px, var(--font__color) 21px),
        linear-gradient(135deg, transparent 21px, var(--font__color) 21px),
        linear-gradient(225deg, transparent 21px, var(--font__color) 21px),
        linear-gradient(315deg, transparent 21px, var(--font__color) 21px);
    background-position: bottom left, top left, top right, bottom right;
    background-size: 51% 51%;
    background-repeat: no-repeat;
    position: absolute;
    top: -2px;
    left: -2px;
    z-index: -1;
}

.merit1__title {
    text-align: center;
    font-size: clamp(2rem, 1.709rem + 1.45vw, 2.8rem);
    line-height: 1.4em;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.merit1__title em {
    font-size: 1.2em;
}

.merit__item1__inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.merit__item1__inner h4 {
    text-align: center;
    padding: 0.1em 0.5em;
    background: var(--blue);
    color: var(--white);
}

.merit__item1__inner p {
    text-align: center;
    font-size: clamp(1.2rem, 1.127rem + 0.36vw, 1.4rem);
    letter-spacing: 0.1em;
}

.merit__item1__inner p .large {
    font-size: 1.5em;
    font-weight: 700;
}

.merit__price__wrap {
    display: flex;
    flex-direction: column;
}

.price__label {
    font-size: clamp(1rem, 0.855rem + 0.73vw, 1.4rem);
}

.merit__price {
    font-size: 2.5rem;
    line-height: 1em;
}

.merit__price .small {
    font-size: 1.5rem;
    font-weight: 700;
}

.merit__arrow {
    width: 100%;
    max-width: 3rem;
}

.merit__hr {
    width: 2px;
    background: var(--font__color);
    align-self: stretch;
}

.merit__item2 {
    width: 100%;
    max-width: 800px;
    background: var(--light__base);
    box-shadow: var(--box__shadow);
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.merit__item2 h3 {
    font-weight: 700;
}

.merit__item2 h3 img {
    width: 80%;
    max-width: 350px;
    padding-right: 0.5em;
}

.merit__item2 p {
    font-size: clamp(1.8rem, 1.436rem + 1.82vw, 2.8rem);
    font-weight: 700;
}

.merit__item2 p em {
    font-size: clamp(2.8rem, 2.364rem + 2.18vw, 4rem);
    padding-left: 0.1em;
    letter-spacing: 0.1em;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, var(--yellow__translate) 65%, var(--yellow__translate) 100%);
}

.merit2__item2 {
    width: 100%;
    max-width: 800px;
    background: var(--light__base);
    box-shadow: var(--box__shadow);
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.merit2__item2 h3 {
    font-weight: 700;
}

.merit2__item2 h3 img {
    width: 80%;
    max-width: 350px;
    padding-right: 0.5em;
}

.merit2__item2 p {
    font-size: clamp(1.2rem, 0.764rem + 2.18vw, 2.4rem);
    font-weight: 700;
}

.merit2__item2 p em {
    font-size: clamp(2.2rem, 1.909rem + 1.45vw, 3rem);
    padding-left: 0.1em;
    letter-spacing: 0.1em;
    line-height: 1.2em;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, var(--yellow__translate) 65%, var(--yellow__translate) 100%);
}

.merit2__title {
    text-align: center;
    font-size: clamp(1.6rem, 1.418rem + 0.91vw, 2.1rem);
    line-height: 1.4em;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.merit2__title em {
    font-size: 1.2em;
}

.merit2__item1__inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.merit2__item1__inner img {
    width: 50%;
    max-width: 150px;
    margin: 0 auto;
}

/* おすすめの理由 ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/

.reason {
    display: flex;
    flex-direction: column;
    gap: var(--clump1remTo2rem);
    padding: var(--clump1remTo2rem) 0;
}

.reason__contents {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
}

.reason__inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 1fr;
    justify-content: center;
    background: linear-gradient(90deg, var(--heavy__base), rgba(0, 0, 0, 0));
    position: relative;
    z-index: 0;
}

.reason__inner:nth-child(2) {
    grid-template-columns: 1fr 40%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), var(--heavy__base));
}

.reason__number {
    position: absolute;
    top: 0;
    left: 0.5rem;
    z-index: 3;
    font-family: "Roboto", sans-serif;
    font-size: clamp(4rem, 2.545rem + 7.27vw, 8rem);
    line-height: 1em;
    color: var(--base__color);
    text-shadow: var(--box__shadow);
}

.reason__inner:nth-child(2) .reason__number {
    right: 0.5rem;
    left: auto;
}

.reason__inner img {
    width: 100%;
    clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
}

.reason__inner:nth-child(2) img {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);
}

.reason__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

.reason__inner:nth-child(2) .reason__text {
    margin-left: auto;
}

.reason__text h3 {
    width: fit-content;
    background: var(--white);
    letter-spacing: 0.1em;
    padding: 0.1em 0.5em;
    font-weight: 700;
}

.reason__text p {
    font-size: clamp(1.1rem, 1.064rem + 0.18vw, 1.2rem);
}

/* Q&A　＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

.faq__wrap {
    margin-top: 4rem;
    background: var(--heavy__base);
    padding: clamp(3rem, 2.273rem + 3.64vw, 5rem) 1rem 2rem 1rem;
    position: relative
}

.section__decoration {
    font-size: clamp(5rem, 3.909rem + 5.45vw, 8rem);
    letter-spacing: 0.1em;
    font-weight: 700;
    position: absolute;
    top: -0.6em;
    left: 1rem;
    color: var(--base__color);
    text-shadow: var(--box__shadow);
}

.section__decoration .small {
    font-weight: 700;
    font-size: 0.7em;
}

.faq {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.faq__section--title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faq__section--title h2 {
    font-weight: 700;
}

.faq__items {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: end;
}

.faq__item {
    width: 100%;
    max-width: 900px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: var(--box__shadow);
    transition: all 0.3s;
}

.faq__item:hover {
    box-shadow: none;
}

.faq__item h3 {
    display: flex;
    justify-content: space-between;
    align-items: first baseline;
    padding: 1rem;
    background: var(--font__color);
    color: var(--white);
}

.faq__item h3 span {
    display: flex;
    align-items: first baseline;
    gap: 1rem;
}

.faq__item h3 i.fa-solid {
    transition: transform 0.8s ease;
}

.faq__answer__wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
}

.faq__answer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    padding-top: 1rem;
}

.faq__answer h4 {
    color: var(--blue);
    display: flex;
    gap: 1rem;
    align-items: first baseline;
}

.faq__answer img {
    width: 100%;
    max-width: 700px;
}

/* works　＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

.works {
    padding: 5rem 0 2rem 0;
}

.works__title__img__wrap {
    position: relative;
}

.works__title__img__wrap img {
    width: 80%;
}

.works .section__decoration {
    color: var(--blue);
    letter-spacing: 0;
    font-size: clamp(4rem, 2.545rem + 7.27vw, 8rem);
    z-index: 80;
}

.works__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.work {
    background: linear-gradient(90deg, var(--heavy__base), rgba(0, 0, 0, 0));
    padding: 2rem var(--clump1remTo2rem);
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 2rem;
    align-items: center;
}

.work:nth-child(2) {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), var(--heavy__base));
    grid-template-columns: 1fr 600px;
}


.work__text--wrap {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.work__text--wrap h3 {
    font-size: clamp(1.2rem, 1.018rem + 0.91vw, 1.7rem);
    font-weight: 700;
}

.works__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.works__list__item {
    width: 100%;
    max-width: 20rem;
    display: grid;
    grid-template-columns: calc(1.3rem * 6) 1fr;
    align-items: center;
}

.works__list__item dt {
    font-size: clamp(1.1rem, 1.027rem + 0.36vw, 1.3rem);
    padding: 0.2em 0.5em;
    text-align: center;
    letter-spacing: 0.1em;
    background: var(--font__color);
    color: var(--white);
}

.works__list__item dd {
    width: 100%;
    font-size: clamp(1.6rem, 1.564rem + 0.18vw, 1.7rem);
    font-weight: 700;
    text-align: center;
    padding: 0 1rem;
    color: var(--red);
    background: var(--white);
}

.works__list__item dd.works__yield {
    color: var(--blue);
}

.works__list__item dd .small {
    font-size: 0.7em;
}

/* 画像 */

.image-gallery {
    width: 100%;
    max-width: 600px;
}

.main-image img {
    width: 100%;
    display: block;
}

.thumbnail-list {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.thumb {
    width: 100%;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.thumb.active,
.thumb:hover {
    opacity: 1;
    box-shadow: var(--box__shadow);
}

/* review ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

.review {
    padding: var(--clump1remTo2rem) 0;
}

.review__items {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 1.273rem + 3.64vw, 4rem) 2rem;
    flex-wrap: wrap;
    padding: 2rem 1rem;
}

.review__item {
    width: 100%;
    max-width: 568px;
    height: auto;
    background: var(--base__color);
    display: flex;
    flex-direction: column;
    margin-top: 200px;
}

.review__item img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    background: var(--heavy__base);
    border-radius: 10rem 10rem 0 0;
    position: relative;
    padding: 1rem 0 0 0;
    margin-top: -200px;
}

.review__item h3 {
    font-weight: 700;
}

.star {
    color: var(--yellow);
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.1em;
}

.review__item .text__wrap {
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* contentsへのリンクバナー ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

.link__to__contents__wrap {
    padding: 0 1rem;
}

.link__to__contents {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: var(--box__shadow), inset 0px 0px 0px var(--white);
    border-radius: 200px 0 0 200px;
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s;
}

.link__to__contents:hover {
    box-shadow: 0px 0px 0px var(--white), inset var(--box__shadow);
}

.link__to__contents img {
    width: 100%;
    height: 100%;
    max-width: 200px;
    object-fit: cover;
}

.link__to__contents__inner {
    width: fit-content;
    padding: 1rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link__to__contents__inner h4 {
    width: fit-content;
    font-weight: 700;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)65%, var(--yellow__translate)65%, var(--yellow__translate));
    letter-spacing: 0.1em;
    padding: 0.1em 0.5em;
}

.link__to__contents__inner p {
    width: fit-content;
    padding-left: 1em;
}

.link__to__contents__arrow {
    width: fit-content;
    margin-left: auto;
    padding: 0.4em 1em;
    background: var(--blue);
    color: var(--white);
    text-align: right;
}

/* contact ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */

.contact {
    padding: 2rem 1rem;
    background: var(--heavy__base);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__tel {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: var(--base__color);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact__tel h3 {
    font-size: clamp(1.1rem, 0.882rem + 1.09vw, 1.7rem);
}

.contact__tel a {
    font-size: clamp(1.6rem, 1.455rem + 0.73vw, 2rem);
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--red);
    font-weight: 700;
}

.contact__tel a i {
    color: var(--blue);
}

.contact__inner form {
    width: 100%;
    max-width: 600px;
    background: var(--base__color);
    border-radius: 1rem;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact__form__label {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

/* 物件の掲載について */

.listing__request {
    width: 100%;
    max-width: 600px;
    background: var(--base__color);
    border-radius: 1rem;
    padding: 1rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.listing__request h4 {
    text-align: center;
}

/* お問い合わせ後のモーダル */

.contact__send__modal {
    display: none;
    /* display: grid; */
    width: 100vw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    place-items: center;
}

.contact__send__modal__display {
    display: grid;
}

.contact__send__modal__inner {
    width: 90%;
    max-height: 85%;
    padding: 2rem 1rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    overflow-y: scroll;
    box-shadow: var(--box__shadow);
}

.contact__send__modal__close {
    width: fit-content;
    background: var(--blue);
    border-radius: 2em;
    margin: 0 auto;
    padding: 0.2em 1em;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: var(--box__shadow);
    box-shadow: var(--box__shadow);
    border: none;
    cursor: pointer;
}

/* form */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--font__color2);
    border-radius: 0.2rem;
    padding: 0.2rem 0.5rem;
}

.submit__button {
    width: fit-content;
    background: var(--button__gradient);
    border-radius: 2em;
    margin: 0 auto;
    padding: 0.2em 1em;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: var(--box__shadow);
    box-shadow: var(--box__shadow);
}

.submit__button:disabled {
    background: var(--visited);
}

@media screen and (max-width: 1215px) {

    /* お客様の声 */

    .review__item.review__item:nth-child(1),
    .review__item.review__item:nth-child(2),
    .review__item.review__item:nth-child(3),
    .review__item.review__item:nth-child(4) {
        margin: 100px auto 0 auto;
        max-width: 700px;
    }

    .review__item img {
        max-width: 150px;
        margin: -100px auto 0 auto;
    }

}

@media screen and (max-width: 1115px) {
    /* works */

    .works {
        padding: 1rem 0;
    }

    .work {
        display: flex;
        flex-direction: column;
    }

    .works__title__img__wrap img {
        width: 100%;
    }

    .work:nth-child(2) {
        flex-direction: column-reverse;
    }

    .works .section__decoration {
        position: static;
        line-height: 1em;
        padding-left: 0.5rem;
    }

    .work__text--wrap h3 {
        text-align: center;
    }

    .works__list__item {
        margin: 0 auto;
    }
}

@media screen and (max-width: 1000px) {

    .property {
        padding: 1rem 0;
    }

    .property__items {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        /* 横方向にスナップ */
        -webkit-overflow-scrolling: touch;
        /* iOSでスムーズ */
        justify-content: start;
        padding: 1rem;
    }

    .property__item {
        width: 100%;
        flex: 0 0 75%;
        scroll-snap-align: center;
        box-shadow: var(--box__shadow);
        border-radius: 1rem;
    }

    /* メリット */

    .merit__item1 {
        width: 100%;
        max-width: 800px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .merit__hr {
        width: 100%;
        height: 2px;
    }

    .merit2__item1__inner img {
        width: 50%;
        max-width: 100px;
        margin: 0 auto;
    }

    /* おすすめの理由 */

    .reason__contents {
        padding: 0;
    }

    .reason__inner {
        display: flex;
        flex-direction: column;
    }

    .reason__inner:nth-child(2) {
        flex-direction: column-reverse;
    }

    .reason__inner img {
        width: 95%;
    }

    .reason__inner:nth-child(2) img {
        margin-left: auto;
    }

    .reason__inner:nth-child(2) .reason__text {
        width: 100%;
    }

    .reason__text h3 {
        width: 100%;
        text-align: center;
        line-height: 1.4em;
    }

    .reason__text p {
        width: fit-content;
        margin: 0 auto;
    }

    /* contentsへのリンクバナー */

    .link__to__contents {
        width: fit-content;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 70px;
        padding-top: -70px;
        overflow: visible;
    }

    .link__to__contents img {
        max-width: 150px;
        aspect-ratio: 1/1;
        border-radius: 100%;
        margin-top: -70px;
    }

    .link__to__contents__inner h4 {
        width: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)25%, var(--yellow__translate) 25%, var(--yellow__translate) 75%, rgba(0, 0, 0, 0)75%, rgba(0, 0, 0, 0));
        text-align: center;
    }

    .link__to__contents__inner p {
        width: fit-content;
        padding: 0;
    }

}

@media screen and (max-width: 850px) {

    .mv {
        padding: 85px 0 0 0;
    }

    .mv img {
        width: 100%;
        border-radius: 0px;
    }
}