@charset "UTF-8";

/*共通部分
-------------------------------*/
html {
	font-size: 100%;
}
body {
	font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","BIZ UDPGothic",sans-serif;
	line-height: 1.7;
	color: #432;
}
a {
	text-decoration: none;
}
img {
	max-width: 100%;
}

/* レイアウト */
.wrapper {
    max-width: 1120px;
    margin: auto;
    padding: 0 1.5rem;
}

.align-center {
    text-align: center;
}

/* 見出し */
.font-english {
    font-family: 'Philosopher', sans-serif;
    font-weight: normal;
}

.page-title,
.heading-large,
.heading-medium {
    font-size: 3rem;
    text-align: center;
}
.page-title {
    margin-top: 2rem;
    line-height: 1.4;
}
.heading-large {
    margin-bottom: 1rem;
}






/* iframe */
iframe {
    width: 100%;
}


/* ヘッダー
------------------------------- */
.page-header {
    padding-top: .5rem;
}
.logo {
    width: 400px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1.5rem;
    list-style: none;
}
.main-nav a {
    color: #432;
}
.main-nav a:hover {
    color: #0bd;
}

/* ヘッダーカバー画像
------------------------------- */

.cover {
    background-size: cover;
    background-position: center bottom;
    height: 400px;
}



/* HOME
------------------------------- */
.cover-home {
    background-image: url(../images/cover-home-s.jpg);
}

.about {
    max-width: 736px;
    padding: 0 1.5rem;
    margin: 3rem auto 4rem;
}
.about p {
    margin-bottom: 3rem;
}

/* 記事部分 */
.konnag{ 
    border-radius: 16px;
    margin-bottom: 1.5rem;
}



/* サイドバー */
.side-menu1{
    list-style: none;
    text-align: center;
    margin-bottom: 4rem;
}

.side-menu2 {
    list-style: none;
    text-align: left;
    margin-bottom: 4rem;
}
.side-menu1 li {
    border-bottom: 1px solid #c9c2bc;
}

.side-menu2 li {
    border-bottom: 1px solid #c9c2bc;
}
.side-menu1 a {
    color: #432;
    display: block;
    padding: 1rem;
}
.side-menu2 a {
    color: #432;
    display: block;
    padding: 1rem;
}
.side-menu1 a:hover {
    color: #0bd;
}

.side-menu2 a:hover {
    color: #0bd;
}


/* CONTACT
------------------------------- */


/* 会社概要 */

.info {
    width: 100%;
    max-width: 544px;
    margin: auto;
    padding: 0 1.5rem;
    border-spacing: 0;
}
.info th,
.info td {
    border-bottom: 1px solid #c9c2bc;
}
.info th {
    text-align: left;
    font-weight: normal;
    padding: 1rem;
}
.info td {
    padding: 1rem 0;
}


.location {
	margin-bottom: 3.5rem;
}
.location-info {
	margin-bottom: 2rem;
}
.location-info .info{
	padding: 0;
}


/* 施工事例
------------------------------- */
.grid {
    display: grid;
    gap: 2rem 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}
.item img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px;
}
.item p {
    font-size: .875rem;
}


/* 賃貸物件
------------------------------- */

.bukkensyousai {

    table-layout: auto;
    border-collapse: collapse;
    margin: 0px 5px 20px 5px;
    line-height: 2em;


}

.bukkensyousai th,td {
    padding:5px 10px;
}






/* ボタン */

.btn {
    display: block;
    font-size: 1rem;
	text-align: center;
    background-color: #0bd;
    color: #fff;
    border-radius: 8px;
    padding: .75rem 1.5rem;
    transition: .5s;
}
.btn:hover {
    background-color: #0090aa;
}












/* フッター
------------------------------- */
.page-footer {
	margin-top: 3rem;
    background-image: url(../images/footer-s.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 3rem;
}
.footer-p {
    max-width: 736px;
    padding: 0 1.5rem;
    margin: 3rem auto 0;
}

.qr {
	border-radius: 16px;
}

.copyright {
    background-color: #796792;
    text-align: center;
    padding: 2rem 0;
    margin-top: 6rem;
    color: #fff;
}


/* デスクトップ版
------------------------------- */
@media (min-width: 800px) {
   	/* 見出し */
   	.page-title {
		font-size: 5rem;
	}
	.heading-large {
	font-size: 4rem;
	}


	/* ヘッダー */
   	.page-header {
       		display: flex;
       		justify-content: space-between;
        	padding-top: 1.5rem;
	}
	.main-nav {
	font-size: 2rem;
	}


.cover {
    background-size: cover;
    background-position: center bottom;
    height: 400px;
}


	/* HOME */
	.cover-home {
		background-image: url(../images/cover-home-l.jpg);
	}
	.about {
		margin: 4rem auto 0;
	}


	.top {
		display: flex;
		justify-content: space-between;
		order: 2;
	}

	.post{
		width: 70%;
	}

	.sidebar {
		width: 22%;
		order: 1;
	}
	.sidebar .heading-medium {
		line-height: 1;
		margin-top: 2rem;
		margin-bottom: 1rem;
	}

	/* 会社概要 */
	.location {
		display: flex;
		gap: 2rem;
	}
	.location-info {
		width: 64%;
	}
	.location-info .info th {
		padding-left: 2rem;
	}
	.location-map {
		width: 60%;
		padding-top: 5rem;
		padding-right: 3rem;
	}

	/* 施工事例 */

	.grid {
		gap: 3rem 2rem;
		grid-template-columns: repeat(3, 1fr);




	/* フッター */
	.page-footer {
		margin-top: 3rem;
		background-image: url(../images/footer-l.jpg);
		background-size: cover;
		background-position: center;
		padding-top: 3rem;
	}
	.footer-p {
	max-width: 736px;
	padding: 0 1.5rem;
	margin: 3rem auto 0;
	}

	.qr {
		border-radius: 16px;
	}
	.info th {
		padding-left: 2.5rem;
	}
}


