@charset "utf-8";

body {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
}

body.loaded {
    position: relative;
    top: auto;
}

header {
	opacity: 0;
	transition: 0.5s ,delay 1.5s;
}

.loaded header {
	opacity: 1;
}

/* -------------------------------
   ロゴの基本スタイル
---------------------------------*/
.mv-logo-wrapper {
    position: absolute; /* 画面全体をカバー */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* 背景に干渉しない */
    z-index: 99999;
	transition: opacity 1.5s ease-in-out;
}

.mv-logo-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    transition: opacity 1.5s ease-in-out;
}

.mv-logo {
    text-align: center;
    position: absolute;
    bottom: 50%;
    left: 50%;
    max-width: 30rem; /* 画面サイズに応じて調整 */
    width: 100%;
    transform: translate(-50%, 50%);
    opacity: 0;
    z-index: 1;
    transition: 
        opacity 1.5s ease-in-out, 
        transform 2s ease-in-out 1.5s; /* フェードイン後に移動 */
}

/* -------------------------------
   アニメーション開始
---------------------------------*/

.splash-active .mv-logo-wrapper:before {
    opacity: 1; /* 背景フェードイン */
}

.splash-active .mv-logo {
    opacity: 1; /* ロゴフェードイン */
    transform: translate(-50%, 50%); /* 画面中央 */
}

/* -------------------------------
   アニメーション終了 → 左下へ移動
---------------------------------*/

.loaded .mv-logo-wrapper {
    z-index: 9;
}

.loaded .mv-logo-wrapper:before {
     opacity: 0;
}


.loaded .mv-logo {
     /* 左下へ移動 */
     bottom: 5.2%;
     left: 2.6%;
     transform: none;
     transition: 3s;
}

.after-loaded .mv-logo {
     transition: unset;
}

/* ==========================================
ヘッダー
========================================== */

.header-inner {
    justify-content: flex-end;
}

.header-logo-link {
    display: none;
}

/* ==========================================
固定ヘッダー
========================================== */

header.is-animation .header-inner {
    justify-content: space-between;
}

header.is-animation .header-logo-link {
    display: block;
}

/* ==========================================
カバー
========================================== */

.mv-wrapper {
    height: 100vh;
    position: relative;
    transition: 0.5s delay 2s;
}

.mv-img-sp {
    display: none;
    height: 100vh;
}

.mv-img-sp > img {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
}

.mv-title {
    font-size: 7.5rem;
    font-weight: 400;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.466em;
    color: var(--white);
    text-shadow: 0.2rem 0.2rem 1rem rgb(32 31 29 / 50%);
    position: absolute;
    margin: auto;
    z-index: 9;
}

.mv-title strong {
    font-size: 1.13em;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.294em;
}

.mv-title-top {
    top: 12.39%;
    left: 5.72%;
}

.mv-title-bottom {
    right: 1.56%;
    bottom: 5.2%;
}

.mv-slider {
    height: 100%;
}

.mv-img-pc, .mv-img-sp {
    height: 100%;
}

.mv-img-pc > img, .mv-img-sp > img {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
}

/* ==========================================
お知らせ
========================================== */

.news-wrapper {
    padding: 16rem 0 0;
}

.news-inner {
    max-width: 125rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: auto;
}

.news-area {
    display: flex;
    justify-content: space-between;
}

.news-left-block {
    max-width: 20rem;
    width: 100%;
}

.news-btn-sp {
    display: none;
}

.news-btn {
    margin: 8.6rem 0 0;
}

.news-right-block {
    max-width: 85rem;
    width: 100%;
}

/*--------------------------------------------
記事
--------------------------------------------*/

.news-item:first-child .news-link {
	padding: 0 5% 1.5rem 0;
}

.news-link {
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
	flex-direction: column;
    padding: 2rem 5% 1.8rem 0;
    border-bottom: 1px solid;
	position: relative;
}

.news-link:hover .news-title {
	text-decoration: underline;
}

.news-link::after {
	content: "";
	display: block;
	width: 2.5rem;
	height: 0.4rem;
	background: url(../../../../uploads/icon_arrow01_black.svg)center center / contain no-repeat;
	position: absolute;
	right: 0;
	bottom: 36%;
	margin: auto;
}

.news-flex {
	display: flex;
	align-items: center;
    width: 100%;
}

.news-date {
    flex: 0 0 auto;
    flex-shrink: 0;
    white-space: nowrap;
    margin: 0 2rem 0 0;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--gray-dark);
}

.news-cate {
    display: block; 
    max-width: 100%;
    min-width: 0;   
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    background: var(--tertiary);
    color: var(--black);
    padding: 0.3rem 2% 0.5rem;
}

.news-title {
	margin: 2rem 0 0;
    font-size: 1.8rem;
	font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--black);
}

.resultZero {
    text-align: center;
}

/* ==========================================
サムズについて
========================================== */

.about-wrapper {
    padding: 16rem 0 0;
}

.about-title-box {
    max-width: 145rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: auto;
}

.about-area {
    max-width: 178.5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0 0 1.5rem;
    margin: 4rem 0 0 auto;
}

.about-left-block {
    max-width: 68rem;
    width: 38.41%;
}

.about-img01 {
    max-width: 63rem;
    width: 92.64%;
}

.about-img02 {
    max-width: 36rem;
    width: 52.94%;
    margin: 6rem 0 0 auto;
}

.about-img02-sp {
    display: none;
}

.about-center-block {
    max-width: 64.8rem;
    width: 36.61%;
    margin: 8rem 0 0 7.34%;
}

.about-text-box {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin: 5rem 0 0;
}

.about-right-block {
    max-width: 25rem;
    width: 14.12%;
    margin: 20rem 0 0 3.5%;
}

/* ==========================================
サムズの想い
========================================== */

.vision-wrapper {
    padding: 16rem 0 0;
}

.vision-inner {
    max-width: 165rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 1.5rem;
    margin: auto;
}

.vition-title-box {
    writing-mode: vertical-lr;
}

.vision-area {
    max-width: 144.3rem;
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    margin: 6rem 0 0 4%;
}

.vision-text-block {
    max-width: 79.3rem;
    width: 54.95%;
}

.vision-text-box {
    margin: 5rem 0 0;
}

.vision-btn {
    margin: 2.6rem 0 0 auto;
}

.vision-img-block {
    max-width: 52rem;
    width: 36.03%;
}

/* ==========================================
不動産事業
========================================== */

.estate-wrapper {
    padding: 16rem 0 0;
}

.estate-inner {
    max-width: 165rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: auto;
}

.estate-area {
    margin: 6rem 0 0;
}

.estate-title {
    writing-mode: vertical-rl;
    margin: auto;
}

.estate-text-box {
    max-width: 56.7rem;
    width: 100%;
    margin: 4rem auto 0;
}

/* ==========================================
選ばれる理由
========================================== */

.reason-wrapper {
    padding: 10rem 0 0;
}

.reason-inner {
    max-width: 145rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: auto;
}

.reason-area {
    display: flex;
    justify-content: space-between;
}

.reason-left-block {
    max-width: 33rem;
    width: 23.23%;
}

.reason-speech-bubble {
    max-width: 33.1rem;
    width: 75%;
}

.reason-title {
    margin: 4rem 0 0;
}

.reason-btn {
    margin: 6.6rem 0 0;
}

.reason-right-block {
    max-width: 100rem;
    width: 70.42%;
}

.reason-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 5rem;
}

.reason-card {
    padding: 0.7rem;
    border-radius: 50%;
    position: relative;
}

.reason-card-inner {
    border: solid 0.1rem var(--tertiary);
    border-radius: 50%;
    aspect-ratio: 1/1;
    padding: 4.5rem 1rem;
}

.reason-card-number {
    font-size: 3rem;
    font-weight: normal;
    line-height: 1em;
    padding: 0 0 0.8rem;
    position: relative;
}

.reason-card-number:before {
    content: "";
    max-width: 3.4rem;
    width: 100%;
    border-bottom: solid 0.1rem var(--tertiary);
    opacity: 0.5;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.reason-card-title-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reseon-card-title {
    font-size: 2.3rem;
    letter-spacing: 0.05em;
    line-height: 1.73em;
    margin: 2rem 0 0;
}

.reseon-card-title > strong {
    font-size: 1.3em;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.33em;
}

.reason-text-box {
    margin: 2.4rem 0 0;
}

.reason-item:nth-child(2) {
    margin: 10rem 0 0;
    position: relative;
}

.reason-item:nth-child(2) > .reason-card:before, .reason-item:nth-child(2) > .reason-card:after {
    content: "";
    display: block;
    width: 100%;
    height: 0.2rem;
    background: var(--primary);
    margin: auto;
    position: absolute;
    top: 50%;
    z-index: -9;
}

.reason-item:nth-child(2) > .reason-card:before {
    left: -50%;
    transform: rotate(15deg) translateY(-50%);
}

.reason-item:nth-child(2) > .reason-card:after {
    right: -50%;
    transform: rotate(-15deg) translateY(-50%);
}

.reason-btn-sp {
    display: none;
}

/* ==========================================
リノベーション事業
========================================== */

.renovation-wrapper {
    padding: 16rem 0 0;
}

.renovation-inner {
    padding: 0 1.5rem;
}

.renovation-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 6rem -1.5rem 0;
}

.renovation-img-block-left {
    max-width: 66rem;
    width: 34.37%;
    margin: 2.5rem 1.458% 0 0;
}

.renovation-img-block-right {
    max-width: 46rem;
    width: 23.95%;
    margin: 17rem 0 0 11.82%;
}

.renovation-text-block {
    max-width: 56.7rem;
    width: 80%;
}

.renovation-title {
    writing-mode: vertical-rl;
    margin: auto;
}

.renovation-text-box {
    margin: 4rem 0 0;
}

/* ==========================================
中古物件リノベーション
========================================= */

.point-wrapper {
    padding: 16rem 0 0;
}

.point-inner {
    max-width: 145rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: auto;
}

.point-title-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.point-btn {
    margin: 0 0 0 4%;
}

.point-btn-sp {
    display: none;
}

.point-area {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 5rem;
    margin: 4rem 0 0;
}

.point-card {
    font-size: 0.9em;
    letter-spacing: 0.05em;
    line-height: 1em;
    padding: 6.2rem 1.5rem 2.5rem;
}

.point-card-number {
    font-size: 3rem;
    line-height: 1em;
    margin: 1.1rem 0 0;
}

.point-card-title {
    margin: 2.8rem 0 0;
}

.point-card-img {
    max-width: 22rem;
    width: 100%;
    margin: 3.2rem auto 0;
}

/* ==========================================
リノベーション施工事例
========================================= */

.works-wrapper {
    padding: 16rem 0 0;
}

.works-inner {
    max-width: 125rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: auto;
}

.works-area {
    margin: 4rem auto 0;
}

.works-btn {
    margin: 4.6rem auto 0;
}

.sekoujirei {
    width: 100%;
    margin: 13rem auto 0;
}

.sekoujireiBlock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10rem 5rem;
}

.sekoujireiItem {
    max-width: 44rem;
    width: 100%;
}

.sekoujireiLink {
    display: block;
    max-width: 44rem;
    width: 100%;
    height: 100%;
	cursor: pointer;
}

.sekoujireiImgArea {
    max-width: 44rem;
    position: relative;
    margin: 0 auto 1.5rem;
    padding-bottom: 72.73%;
    overflow: hidden;
    width: 100%;
	border: 0.1rem solid var(--gray-light);
}

.sekoujireiImgArea img {
    position: absolute;
	width: 100%;
	height: 100%;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
	transition: all .3s;
}

.sekoujireiLink:hover .sekoujireiImgArea img {
	transform: scale(1.1);
}

.tit {
    font-size: 2rem;
    font-weight: 400;
	font-family:var(--font-family01);
    letter-spacing: 0;
    line-height: 1.35em;
    position: relative;
}

/*-----------------------------------------------------------
モーダル
-----------------------------------------------------------*/

html {
    scrollbar-gutter: stable;
}

body.scroll-lock {
    overflow: hidden !important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(45 21 11 / 85%);
}

.modal-content {
    margin: auto;
	padding: 8rem 2rem;
    max-width: 125rem;
    width: 95vw;
    border: 0.3rem solid var(--secondary);
    background: rgba(0, 0, 0, 0.68);
    background-size: auto;
    background-repeat: repeat;
    overflow-y: scroll;
    height: 80vh;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.modal-content::-webkit-scrollbar{
    display:none;
}

.close {
    position: sticky;
    margin: -4rem 0 4rem auto;
    top: -3rem;
    right: 2.25rem;
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    text-indent: -999.9rem;
    overflow: hidden;
	transition: all .3s;
}

.close:hover {
	transform: scale(1.2);
}

/* 2本の棒（×のパーツ） */
.close::before,
.close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;     /* 親要素(2.5rem)いっぱいの長さ */
    height: 0.125rem; /* 2px 相当の太さ */
    background-color: var(--white);
    transition: transform 0.3s;
}

/* 45度傾けて×にする */
.close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.sekoujireiModalContainer {
    max-width: 106rem;
    width: 100%;
    margin: 0 auto;
	position: relative;
}

.sekoujireiModalContainer .wp-block-image {
    width: 100% !important;
    padding-top: 64.15%;
    margin: auto;
    position: relative;
}

.sekoujireiModalContainer .wp-block-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
    transition: all .3s;
}

.sekoujireiModalContainer .wp-block-columns {
    margin: 6rem 0 0;
	align-items: flex-start;
	justify-content: space-between;
	gap: 4rem 10rem;
}

.sekoujireiModalContainer h2.wp-block-heading,
.sekoujireiModalContainer h3.wp-block-heading {
	margin: 0 0 4rem;
	min-width: 20rem;
    width: max-content;
    text-align: center;
    padding: 0.3rem 1.5rem 0.7rem;
    background: var(--primary);
    font-size: 2.2rem;
    color: var(--tertiary);
}

.sekoujireiModalContainer .wp-block-column {
	width: 100%;
}

.sekoujireiModalContainer .wp-block-column .wp-block-table tr {
    padding: 1.6rem 0 1.8rem;
    display: flex;
    align-items: center;
    border-bottom: 0.1rem solid var(--gray);
}

.sekoujireiModalContainer .wp-block-column .wp-block-table tr:first-child {
    padding: 0 0 1.8rem;
}

.sekoujireiModalContainer .wp-block-column .wp-block-table tr td {
	flex: 1;
	border: unset;
}

.sekoujireiModalContainer .wp-block-column .wp-block-table tr td:first-child {
    padding: 0 1rem 0 0;
    max-width: 15rem;
    width: 100%;
	flex: unset;
}

.sekoujireiModalContainer .wp-block-gallery{
	margin: 5rem 0 0;
}

.sekoujireiModalContainer .wp-block-gallery ~ .wp-block-gallery {
	margin: 2rem 0 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.sekoujireiModalContainer .wp-block-gallery ~ .wp-block-gallery .wp-block-image {
    width: 100% !important;
    padding-top: 69.23%;
    margin: auto;
    position: relative;
}

.sekoujireiModalContainer .wp-block-gallery ~ .wp-block-gallery .wp-block-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
    transition: all .3s;
}

/* ==========================================
オンラインショップ・里山農園テロワール
========================================== */

.banner-wrapper {
    padding: 16rem 0;
}

.banner-inner {
    max-width: 145rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: auto;
}

.banner-area {
    display: flex;
    justify-content: space-between;
}

.banner-area:not(:first-child) {
    margin: 10rem 0 0;
}

.banner-area-reverse {
    flex-direction: row-reverse;
}

.banner-img-block {
    max-width: 79rem;
    width: 55.63%;
}

.banner-img {
    height: 100%;
}

.banner-img > img {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
}

.banner-text-block {
    max-width: 63rem;
    width: 44.36%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5.7rem 1.5rem;
    outline: 0.15rem solid var(--gray);
    outline-offset: -1rem;
}

.banner-text-box {
    margin: 3rem 0 0;
}

.banner-text {
    margin: 3rem 0 0;
}

.banner-btn {
    margin: 2.1rem auto 0;
}

.banner-notice {
    font-size: 0.75em;
    letter-spacing: 0.05em;
    line-height: 1em;
    margin: 1.5rem 0 0;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1920px) {



}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1550px) {



}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1400px) {

	.loaded .mv-logo {
	    bottom: 10%;
	}

	.mv-title-bottom {
	    bottom: 10%;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1024px) {

    /* ==========================================
    ヘッダー
    ========================================== */
    
    .header-inner {
        justify-content: space-between;
    }
    
    .header-logo-link {
        display: block;
    }
    
    /* ==========================================
    カバー
    ========================================== */
    
    .mv-title {
        font-size: 5rem;
    }
    
    .mv-title strong {
        font-size: 5.5rem;
    }
    
    .mv-title-top {
        top: 20%;
        left: 3%;
    }
    
    .mv-title-bottom {
        bottom: 15%;
    }

	.loaded .mv-wrapper {
	    height: calc(100vh - 7rem);
	}
	
    .loaded .mv-logo {
	     /* 左下へ移動 */
	     bottom: 50%;
	     left: 50%;
	     transform: translate(-50%, 50%);
	     opacity: 0;
	     /* transition: 3s; */
	}
    
    /* ==========================================
    選ばれる理由
    ========================================== */

    .reason-area {
        display: block;
    }
    
    .reason-left-block {
        max-width: 100%;
        width: 100%;
    }
    
    .reason-speech-bubble {
        margin: auto;
    }
    
    .reason-btn-pc {
        display: none;
    }
    
    .reason-btn-sp {
        display: block;
    }
    
    .reason-btn {
        margin: 6rem auto 0;
    }
    
    .reason-right-block {
        width: 100%;
        margin: 6rem 0 0;
    }
    
    .reason-item:nth-child(2) {
        margin: 6rem 0 0;
    }

    .reason-card-number {
        font-size: 2.6rem;
    }
    
    .reseon-card-title {
        font-size: 2rem;
    }

    /* ==========================================
    リノベーション施工事例
    ========================================= */

    /*-------------------------------------------
    モーダル
    --------------------------------------------*/

    .close {
        top: -6rem;
        right: 0.25rem;
    }
	
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 768px) {

    /* ==========================================
    カバー
    ========================================== */
    
    .mv-wrapper {
        position: relative;
    }
    
    .mv-img-pc {
        display: none;
    }
    
    .mv-img-sp {
        display: block;
    }
    
    .mv-title-top {
        top: 16rem;
        left: 2rem;
    }

    /* ==========================================
    お知らせ
    ========================================== */

    .news-wrapper {
        padding: 10rem 0 0;
    }
    
    .news-area {
        display: block;
    }
    
    .news-left-block {
        max-width: 100%;
        width: 100%;
    }
    
    .news-btn-pc {
        display: none;
    }
    
    .news-btn-sp {
        display: block;
    }
    
    .news-btn {
        margin: 3rem 0 0 auto;
    }
    
    .news-right-block {
        margin: 3rem 0 0;
    }

    /*--------------------------------------------
    記事
    --------------------------------------------*/

    .news-date {
		font-size: 1.4rem;
	}

	.news-cate {
		font-size: 1.4rem;
	}

	.news-title {
		font-size: 1.6rem;
	}

    /* ==========================================
    サムズについて
    ========================================== */

    .about-wrapper {
        padding: 10rem 0 0;
    }
    
    .about-area {
        display: block;
        padding: 0 1.5rem;
        margin: 4rem 0 0;
    }
    
    .about-left-block {
        max-width: 100%;
        width: 100%;
    }
    
    .about-img01 {
        max-width: 100%;
        width: 100%;
    }
    
    .about-img02-pc {
        display: none;
    }
    
    .about-img02-sp {
        display: block;
    }
    
    .about-center-block {
        max-width: 100%;
        width: 100%;
        margin: 4rem 0 0;
    }
    
    .about-text-box {
        margin: 3rem 0 0;
    }
    
    .about-right-block {
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 4rem 0 0;
    }
    
    .about-img02 {
        width: 49.25%;
        margin: 0;
    }
    
    .about-img03 {
        width: 38.3%;
    }

    /* ==========================================
    サムズの想い
    ========================================== */

    .vision-wrapper {
        padding: 10rem 0 0;
    }
    
    .vision-inner {
        display: block;
    }
    
    .vition-title-box {
        margin: auto;
    }
    
    .vision-area {
        display: block;
        margin: 4rem 0 0;
    }
    
    .vision-img-block {
        max-width: 100%;
        width: 100%;
    }
    
    .vision-text-block {
        max-width: 100%;
        width: 100%;
        margin: 4rem 0 0;
    }
    
    .vision-text-box {
        margin: 3rem 0 0;
    }
    
    .vision-btn {
        margin: 1.6rem 0 0 auto;
    }

    /* ==========================================
    不動産事業
    ========================================== */

    .estate-wrapper {
        padding: 10rem 0 0;
    }
    
    .estate-area {
        margin: 4rem 0 0;
    }
    
    .estate-text-box {
        max-width: 100%;
        margin: 2rem auto 0;
    }
    
    /* ==========================================
    選ばれる理由
    ========================================== */

    .reason-wrapper {
        padding: 6rem 0 0;
    }
    
    .reason-right-block {
        margin: 3rem 0 0;
    }
    
    .reason-list {
        max-width: 25.5rem;
        width: 100%;
        grid-template-columns: repeat(1,1fr);
        gap: 4rem;
        margin: auto;
    }
    
    .reason-item:nth-child(2) {
        margin: auto;
    }
    
    .reason-item:nth-child(2) > .reason-card:before, .reason-item:nth-child(2) > .reason-card:after {
        display: none;
    }
    
    .reason-card-number {
        font-size: 2rem;
    }
    
    .reseon-card-title {
        font-size: 1.8rem;
    }
    
    .reason-text-box {
        margin: 2rem 0 0;
    }
    
    .reason-btn {
        margin: 4rem auto 0;
    }

	.reason-btn-pc {
	    display: none;
	}

	.reason-btn-sp {
	    display: block;
	}
    
    /* ==========================================
    リノベーション事業
    ========================================== */

    .renovation-wrapper {
        padding: 10rem 0 0;
    }
    
    .renovation-area {
        flex-wrap: wrap;
        margin: 4rem 0 0;
    }
    
    .renovation-text-block {
        max-width: 100%;
        width: 100%;
        order: 1;
    }
    
    .renovation-text-box {
        margin: 3rem 0 0;
    }
    
    .renovation-img-block-left {
        width: 50.7%;
        order: 2;
        margin: 7rem 0 0;
    }
    
    .renovation-img-block-right {
        width: 38.02%;
        order: 3;
        margin: 4rem 0 0;
    }
    
    /* ==========================================
    中古物件リノベーション
    ========================================= */
    
    .point-wrapper {
        padding: 6rem 0 0;
    }
    
    .point-title-area {
        display: block;
    }
    
    .point-btn-pc {
        display: none;
    }
    
    .point-btn-sp {
        display: block;
    }
    
    .point-btn {
        margin: 2.6rem auto 0;
    }
    
    .point-area {
        grid-template-columns: repeat(1,1fr);
        gap: 4rem;
    }

    /* ==========================================
    リノベーション施工事例
    ========================================= */

    .sekoujireiBlock {
        grid-template-columns: repeat(2, 1fr);
        gap: 10rem 5rem;
    }

    /*--------------------------------------------
    モーダル
    --------------------------------------------*/

    .close {
        top: -6rem;
        right: 0.25rem;
    }

    .sekoujireiModalContainer .wp-block-columns {
        flex-direction: column-reverse;
    } 

    .sekoujireiModalBeforContainer {
        max-width: 100%;
    }

    .sekoujireiModalContainer .wp-block-column .wp-block-table tr td:first-child {
        max-width: 12rem;
    }
        
    /* ==========================================
    オンラインショップ・里山農園テロワール
    ========================================== */
    
    .banner-wrapper {
        padding: 10rem 0;
    }
    
    .banner-area {
        display: block;
    }

    .banner-area:not(:first-child) {
        margin: 4rem 0 0;
    }
    
    .banner-img-block {
        max-width: 100%;
        width: 100%;
    }
    
    .banner-text-block {
        max-width: 100%;
        width: 100%;
        padding: 4rem 1.5rem;
        outline-offset: -0.6rem;
    }
	
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 576px) {

    /* ==========================================
    カバー
    ========================================== */
    
    .mv-title {
        font-size: 3.5rem;
    }
    
    .mv-title strong {
        font-size: 4rem;
    }

	.mv-title-bottom {
        left: 2rem;
        right: auto;
        bottom: 10rem;
    }

    /* ==========================================
    リノベーション施工事例
    ========================================= */

    /*-------------------------------------------
    モーダル
    -------------------------------------------*/

    .sekoujireiModalContainer .wp-block-gallery ~ .wp-block-gallery {
        margin: 1rem 0 0;
        gap: 1rem;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 414px) {



}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */