@charset "utf-8";
/* CSS Document */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


img{
	max-width: 100%;
}

        body {
            font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
            color: #333;
            line-height: 1.7;
        }

/*        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
*/
        /* ヘッダー */
        header {
            /*background: #fff;*/
            /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
            /*position: sticky;*/
			/*position: fixed;*/
            top: 0;
            z-index: 1000;
			background: none;
        }

        .header-content {
			max-width: 1200px;
			margin: 0 auto;
							display: flex;
			justify-content: space-between;
               /* flex-direction: column;*/
                gap: 15px;
			background-color:transparent;

        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 20px;
            font-weight: bold;
            color: #8B4513;
			padding-top: 10px;
        }

        .logo img {
            width: 80px;
            margin-right: 10px;
        }


@media print, screen and (min-width: 768px){
	
	
	.logo{
		padding-top: 0;
	}
	
        .logo img {
            width: 110px;
            margin-right: 10px;
        }
	
	
	
}


/*        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #8B4513;
        }*/








/*デスクトップ用右上電話番号*/

        .header-contact {
            display: none;
        }

@media print, screen and (min-width: 768px){
	
	
        .header-contact {
            display: flex;
            align-items: center;
            gap: 15px;
			margin-right: 30px;
        }


        .header-contact img{
            width:24px;
		position: relative;
			top:-3px;
        }


        .phone-number {
            font-size: 28px;
            font-weight: bold;
            color: #8B4513;
        }

        .phone-hours {
            font-size: 12px;
            color: #111;
        }
	
	
	
}







/*デスクトップ用右固定ボタン*/


        .contact-buttons {
            display: none;
        }


@media print, screen and (min-width: 768px){
	
	

        .contact-buttons {
            position: fixed;
            right: 0px;
            top: 120px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 999;
        }

        .contact-btn {
            width: 70px;
            height: 70px;
			border-top-left-radius: 20%;
			border-bottom-left-radius: 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-top: 1px solid #653B15;
			border-bottom: 1px solid #653B15;
			border-left: 1px solid #653B15;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .contact-btn:hover {
            transform: scale(1.1);
            background: #F9EDE4;
            color: white;
        }

.contact-btn img{
	width: 30px;
}
}







.header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header__inner {
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 40px);
  height: 64px;
/*  display: flex;
  align-items: center;
  justify-content: space-between;*/
}













        /* ヒーローセクション */
        .hero {
            /*position: relative;*/
            /*height: 500px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;*/
        }

.hero .container{
	max-width: 1200px;
	margin: 0 auto;
	height: 80vh;
	background-image: url("../img/risumu/main.png");
	background-position: center top;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

        .hero-overlay {
            text-align: center;
            background: rgba(255, 255, 255, 0.9);
			
            padding: 40px 60px;
            border-radius: 10px;
        }


.hero img{
	margin-bottom: 20px;
	padding-top: 40px;
	width: 150px;
}

        .hero h1 {
            font-size: 30px;
            color: #333;
            margin-bottom: 20px;
            letter-spacing: 2px;
			font-family: "Zen Maru Gothic", sans-serif;
			font-weight: 500;
			text-shadow: 5px 5px 5px #fff, -5px -5px 5px #fff;
        }

        /* メイン紹介セクション */
        .intro-section {
            background: #fef9f3;
			background:#F9EDE4;
            padding: 20px;
            text-align: center;
        }

        .intro-section h2 {
            font-size: 20px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 0;
			font-family: "Zen Maru Gothic", sans-serif;
			/*text-shadow: 0px 0px 10px #fff;*/
			text-shadow: 3px 3px 3px #fff, -3px -3px 3px #fff;
			font-weight: 500;
        }

        .intro-section p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
        }


@media print, screen and (min-width: 768px){
	
.hero img{
	width: auto;
}
	
        .hero h1 {
            font-size: 36px;
        }	
	
	
	
        .intro-section {
            padding: 60px 20px 10px;
        }
	
        .intro-section h2 {
            font-size: 24px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 15px;
			font-family: "Zen Maru Gothic", sans-serif;
			/*text-shadow: 0px 0px 10px #fff;*/
			text-shadow: 3px 3px 3px #fff, -3px -3px 3px #fff;
			font-weight: 500;
        }	
	
	
}










        /* サービスカード */
        .services {
            padding: 20px 20px;
            background:#F9EDE4;
        }

        .service-cards {
            display: grid;
            grid-template-columns: 1fr;
            max-width: 1100px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border: 2px solid #e0d5c7;
            border-radius: 15px;
            padding:20px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
			box-sizing: border-box;
			box-shadow: 3px 5px 0px #653B15;
			margin-bottom: 30px;
			
        }



        .service-card h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 15px;
			font-family: "Zen Maru Gothic", sans-serif;
			font-weight: 500;
			line-height: 1.4em;
        }

        .service-card p {
            font-size: 14px;
            color: #161616;
            line-height: 1.6;
			text-align: left;
        }

.service-card img{
	margin-bottom: 20px;
	width: 70%;
	

	
}



@media print, screen and (min-width: 768px){
	        .services {
            padding: 40px 20px;
            background:#F9EDE4;
        }
	
	
	            .service-cards {
                
				grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            }
	
	.service-card{
		margin-bottom: 0;
		padding: 40px 30px;
	}

	.service-card h3{
		font-size: 30px;
	}	
	
	
	.service-card p{
		font-size: 18px;
	}
}






        /* 説明テキスト */
        .description-text {
            text-align: left;
            max-width: 800px;
            margin: 0px auto 0;
            padding:10px 30px 30px;
            /*background: #fef9f3;*/
            border-radius: 10px;
        }

        .description-text p {
            font-size: 15px;
            line-height: 1.9;
            color: #333;
			font-family: "Zen Kaku Gothic New", sans-serif;
			font-weight: bold;
        }


@media print, screen and (min-width: 768px){
	
        .description-text {
            margin: 40px auto 0;
			text-align: center;
			padding: 30px;
        }	
}



        /* リフォーム事例 */
        .reform-section {
            background: url("../img/risumu/back01.jpg");
            
        }


.reform-section .container{
	padding: 30px 20px;
}

        .reform-section h2 {
            text-align: center;
            font-size: 16px;
            margin-bottom: 0.2em;
            color: #653B15;
			font-family: "Zen Maru Gothic", sans-serif;
			font-weight: 500;
        }

        .reform-section .subtitle {
            text-align: center;
            font-size: 20px;
            color: #2B2B2B;
            margin-bottom: 30px;
			font-family: "Zen Maru Gothic", sans-serif;
			font-weight: 500;
        }

        .reform-examples {
            display: grid;
			grid-template-columns: 1fr;
            
            gap: 40px;
            max-width: 1050px;
            margin: 0 auto;
        }

        .reform-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
			width: 100%;
        }

        .reform-image {
            width: 100%;
            /*height: 200px;*/
            /*background: #e0d5c7;*/
			padding-top: 10px;
			padding-left: 10px;
			padding-right: 10px;
			box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }

        .reform-desc {
            padding: 20px;
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        .more-link {
            text-align: center;
            margin-top: 40px;
        }

        .more-link a {
            display: inline-block;
            padding: 12px 40px;
            background: white;
            border: 2px solid #653B15;
            color: #653B15;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
        }

        .more-link a:hover {
            background: #653B15;
            color: white;
        }

.allow{
	display: none;
}

@media print, screen and (min-width: 768px){
	
	
.reform-section .container{
	padding: 80px 20px;
}

        .reform-item {
            display: flex;
			align-items: center;
        }
	
	.reform-examples{
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
	
	
	.reform-image{
		margin-right:20px;
		height: 200px;
		padding: 0;
	}
	
	
        .reform-section .subtitle {
            margin-bottom: 50px;
        }	
	
	
	
	.allow{
		display: block;
	}
}



        /* 最新物件一覧 */
        .properties-section {
            background: #e8f5e0;
            padding: 30px 20px;
        }

        .properties-section h2 {
            text-align: center;
            font-size: 20px;
            margin-bottom:1em;
            color: #333;
			font-family: "Zen Maru Gothic", sans-serif;
			font-weight: 500;
        }

        .property-grid {
            display: grid;
			grid-template-columns: 1fr;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .property-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .property-card:hover {
            transform: translateY(-5px);
        }

        .property-image {
            width: auto;
            /*height:200px;*/
            background: #d0d0d0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }
.property-image img{
	object-fit: cover;
	height: auto;
}

       

        .property-info {
            padding: 20px;
        }

        .property-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .property-details {
            font-size: 13px;
            color: #666;
            line-height: 1.8;
        }


@media print, screen and (min-width: 768px){
	
	
        .property-grid {
            /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
			
			grid-template-columns: repeat(3, 1fr);
			
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }	
	
        .properties-section {
            background: #e8f5e0;
            padding: 80px 20px;
        }	
	
	.properties-section h2{
		font-size: 30px;
		margin-bottom: 2em;
	}
}





        /* お知らせ */
        .news-section {
            /*background: #fef9f3;*/
            padding: 20px 20px 60px;
        }


        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .news-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .news-image {
            width: 100%;
            height: 150px;
            background: #d0d0d0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 12px;
        }


.ig h2{
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-size: 20px;
}



@media print, screen and (min-width: 768px){
	
	
	.ig h2{
	font-family: "Zen Maru Gothic", sans-serif;
		font-size: 30px;
}
	
	
}




        /* バナー */
        .banner {
            max-width: 800px;
            margin: 0 auto;
           
            /*border-radius: 15px;*/
            overflow: hidden;
            
            display: flex;

			text-align: center;
			justify-content: center;
			align-items: center;
        }

        .banner-left {
            flex: 1;
            background: #1a1a1a;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .banner-left h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .banner-left p {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .banner-left a {
            color: white;
            border: 2px solid white;
            padding: 10px 30px;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s;
        }

        .banner-left a:hover {
            background: white;
            color: #1a1a1a;
        }

        .banner-right {
            flex: 1;
            background: #f5f0e8;
            display: flex;
            align-items: center;
            justify-content: center;
        }



        /* レスポンシブ */

@media print, screen and (min-width: 768px){
			

			
            .header-content {
				
				
				            
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1200px;
            margin: 0 auto;
				

            }

/*            nav ul {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }*/

            .hero h1 {
                font-size: 40px;
            }
	
	
	.intro-section h2{
		font-size: 34px;
	}


	
	
	        .description-text p {
            font-size: 22px;
        }
	
	
	
	
.reform-section h2 {
            font-size: 22px;
	
        }

        .reform-section .subtitle {
            font-size: 34px;
        }	
	

	
	
        }



/*フッター*/

        footer {
            background: #F9EDE4;
            padding: 30px 20px;
            /*border-top: 1px solid #e0d5c7;*/
        }

        footer .container{
            max-width: 1200px;
            margin: 0 auto;
			padding: 0;
        }


	.footer-logo{
		width: 50%;
		margin: 0 auto;
		padding:20px;
		box-sizing: border-box;
	}



        .footer-left h3 {
            margin-bottom: 20px;
            color: #8B4513;
        }

        .footer-info {
            color: #666;
            font-size: 14px;
			margin-bottom: 30px;
			
        }


.footer-info table{
	margin-bottom: 20px;
}


        .footer-phone {
            font-size: 22px;
            font-weight: bold;
            color: #8B4513;
            margin: 0;
			text-align: center;
        }

        .footer-hours {
            font-size: 13px;
            color: #333;
			text-align: center;
        }

.footer-nav{
	display: none;
}

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #e0d5c7;
            color: #999;
            font-size: 13px;
        }

        .footer-illust{
            width: 70%;
			
		box-sizing: border-box;
			margin: 0 auto;
        }

footer{
	margin-bottom: 50px;
}

@media print, screen and (min-width: 768px){
	
	
	
       footer .container {
		   max-width: 1200px;
		   margin: 0 auto;
		   display: flex;
		   justify-content:space-around;
		   align-items: center;
        }
	
	.footer-logo{
		width: 15%;
		padding:20px;
		box-sizing: border-box;
	}
	
		.footer-info{
		width: 40%;
			padding:20px 40px;
		box-sizing: border-box;
	}
	.footer-info table{
	margin-bottom: 0px;
}
	
		.footer-nav{
			display: block;
		width: 20%;
			padding:20px;
		box-sizing: border-box;
	}

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav li {
            margin-bottom: 12px;
        }

        .footer-nav a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-nav a:hover {
            color: #8B4513;
        }

        .footer-nav a::before {
            content: "▶ ";
            color: #8B4513;
            font-size: 10px;
            margin-right: 8px;
        }

		.footer-illust{
		width: 20%;
			padding:20px;
		box-sizing: border-box;
	}
	
	
        .footer-phone {
           text-align: left;
        }

        .footer-hours {
           text-align: left;
        }	
	
	
	
	
}






.foot-btn{

	width: 100%;
	position: fixed;
	bottom: 0;
	margin: 0 auto;
	padding: 0;
	background:#653B15;
	z-index: 4000;
}


.btn2{
	display: block;
	border:1px solid #fff;
	padding:0.5em 1em;
	width: 50%;
	height: 50px;
	box-sizing: border-box;
	margin: 0 auto;
	color: #fff;
	text-decoration: none;
	text-align: center;
	font-size: 14px;
	display: flex;
	justify-content:center;
	align-items: center;
	
}

.btn2 img{
	margin-right: 10px;
	width: 20px;
}

.btn2 a{
	line-height: 1.2em;
}




	.yoyaku{
		display: flex;
		justify-content:center;
	}


@media print, screen and (min-width: 768px){
	
	.foot-btn{
		display: none;
	}	
	
}







/*ナビ*/


.global-nav {
	position: fixed;
	right: -320px;
	top: 0;
	width: 300px;
	height: 100vh;
	padding-top: 40px;
	background-color: #fff;
	transition: all .6s;
	z-index: 200;
	overflow-y: auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.hamburger {
	position: fixed;
	right: 0;
	top: 0;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 2000;
	background: #fff;
}
.ham-line {
	position: absolute;
	left: 12px;
	width: 22px;
	height: 2px;
	background-color: #333;
	transition: all .6s;
}
.line01 {
	top: 16px;
}
.line02 {
	top: 24px;
}
.line03 {
	top: 32px;
}
.nav-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100;
	background-color: #000;
	opacity: 0;
	visibility: hidden;
	transition: all .6s;
	cursor: pointer;
}
.nav-open .global-nav {
	right: 0;
}
.nav-open .nav-bg {
	opacity: .8;
	visibility: visible;
}
.nav-open .line01 {
	transform: rotate(45deg);
	top: 24px;
	background-color: #333;
}
.nav-open .line02 {
	width: 0;
	left: 50%;
}
.nav-open .line03 {
	transform: rotate(-45deg);
	top: 24px;
	background-color: #333;
}
.global-nav ul {
	padding-top: 60px;
}
.global-nav ul li {
	display: block;
	position: relative;
}
.global-nav ul li a {
	padding: 15px 20px;
	color: #000;
	display: block;
	text-decoration: none;
	border-bottom: 1px dashed #999;
	position: relative;
	vertical-align: middle;
}


@media print, screen and (min-width: 768px){
	
	
.global-nav {
	right: -420px;
	width: 400px;
	height: 100vh;
}	
	
	
.hamburger {
	width: 80px;
	height: 80px;
}
.ham-line {
	left: 24px;
	width: 34px;
	height: 2px;
}	
	
.line01 {
	top: 26px;
}
.line02 {
	top: 38px;
}
.line03 {
	top: 50px;
}	
	
.nav-open .line01 {
	top: 38px;
}
.nav-open .line02 {
	width: 0;
	left: 50%;
}
.nav-open .line03 {
	top: 38px;
}
}






.bukken{
	padding-top: 40px;
	margin-bottom: 50px;
}

.bukken h2{
	margin-bottom: 0.3em;
	padding: 0 10px;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 24px;
	max-width: 800px;
	margin: 0 auto 0.3em;
}


.bukken .container{
	max-width: 1100px;
	margin: 0 auto;
}



.bukken table{
	width: 96%;
	max-width: 780px;
	margin: 0 auto;
	border-collapse: collapse;
	/*border: 1px solid #2D2C2C; */

	
}

.bukken th, .bukken td{
	padding: 0.5em;
	box-sizing: border-box;
	border: 1px solid #2D2C2C;
}

.main{
	padding: 10px;
	box-sizing: border-box;
	max-width: 800px;
	margin: 0 auto;
}


.main img{
	height: auto;
}


.image{
	padding: 10px;
	box-sizing: border-box;
	max-width: 800px;
	margin: 0 auto 20px;
}


@media print, screen and (min-width: 768px){
	
	.bukken{
	padding-top: 80px;
}
	.bukken h2{
		font-size: 30px;
	}	
	

.bukken th, .bukken td{
	padding: 0.5em 1em;
}
	
	.bukken th{
		width: 25%;
	}
	.bukken td{
		width: auto;
	}
	
	
	.image{
		margin-bottom: 20px;
	}
	
	
}




.k-head{
	height:50vh;
	background:#C9D3B7;
	padding-top: 80px;
	
}

.k-head .container{
	display: flex;
	justify-content: center;
	align-items: center;
}


@media print, screen and (min-width: 768px){
	
.k-head{
	height:300px;
	
}	
	
	
}



.point{
	max-width: 800px;
	margin: 0 auto 1em; 
}

.point p{
	color: #683c1a;
}


@media print, screen and (min-width: 768px){
	
.point p{
	font-size: 20px;
}	
	
	
}




/*物件一覧*/

.bukken-i .container{
	padding: 50px 10px;
	box-sizing: border-box;
	max-width: 1000px;
	margin: 0 auto;
}


.bukken-i img{
	height: auto;
	margin-bottom: 10px;
}


.bukken-i h3{
	line-height: 1.4em;
	margin-bottom: 0.3em;
}


@media print, screen and (min-width: 768px){
	
.bukken-i .container{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
	/*padding-top: 80px;
	padding-bottom: 80px;*/
}
	
.bukken-i h3{
	font-size: 20px;
}
	
	.bukken-i img{
	/*margin-bottom: 20px;*/
}
	
	.bukken-i .text{
		width: 30%;
	}	
	
	
}












.pc{display:none;} 
.pc_inline{display:none;}

@media print, screen and (min-width: 768px){
.pc{ display:block; } 
.pc_inline{ display:inline-block; } 
.sm{ display:none; }
 }
