@charset "utf-8";
/* ===================================================================
CSS
 file name  :  common.css
=================================================================== */
/* web font */
body, button, input, select, textarea {
	font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Avenir','Helvetica Neue','Helvetica','メイリオ',Meiryo,sans-serif;
	font-weight: 300;
	letter-spacing: 0.1em;
	line-height: 2;
    color: #606060;
}
.font_serif{
    font-family: "Noto Serif JP",'Times New Roman',YuMincho,"Yu Mincho","Hiragino Mincho ProN","serif";
}
html{
    font-size: 62.5%;/* 10px*/
}
body{
    font-size:1.6rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	body{
		font-size:1.2rem;
	}
}
img{
	max-width: 100%;
	height: auto;
	width: auto;
}
a{
	color: #455974;
}
a:hover{
	color: #455974;
    text-decoration: underline;
}
/* ボタン共通 */
a.btn{
	position: relative;
	display: block;
	padding: 1.5em 1em;
	background: #000000;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	transition: all .3s;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
}
@media print, screen and (min-width: 769px) {
    a.btn:hover{
        background: #7E7462;
    }
}
a.btn span{
	position: relative;
    padding-right: 1em;
}
a.btn span::before{
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1em;
    width: 12px;
    height: 12px;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    transform: rotate(45deg);
	transition: all .3s;
}
a.btn span::after{
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1em;
    width: 14px;
    height: 1px;
    background: #FFFFFF;
	transition: all .3s;
}
a.btn.back span{
	position: relative;
    padding-right: 0;
    padding-left: 1em;
}
a.btn.back span::before{
    top: 0;
    bottom: 0;
    right: inherit;
    left: -1em;
    transform: rotate(-135deg);
}
a.btn.back span::after{
    top: 0;
    bottom: 0;
    right: inherit;
    left: -1em;
}
@media screen and (max-width: 768px) {
    a.btn{
        font-size: 1.4rem;
    }
    a.btn span::before{
        width: 9px;
        height: 9px;
    }
    a.btn span::after{
        width: 11px;
    }
}
.bg_gray{
	background: #EFEFEF;
}
.t_red{
    color: #BE2D1B;
}
@media print, screen and (min-width: 769px) {
/* PC用のスタイル記述 */
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	.pc_none{
		display:none;
	}
}
@media screen and (max-width: 768px) {
	.sp_none{
		display:none;
	}
}
@media screen and (min-width: 481px) {
	.tb_none{
		display:none;
	}
}
@media screen and (max-width: 480px) {
	.sp_only_none{
		display:none;
	}
}
/* =====================================
ヘッダー
======================================== */
header{
    background: #000000;
    position: fixed;
}
.header{
    margin: 0;
    width: 100%;
    z-index: 1000;
}
@media print, screen and (min-width: 769px) {
    .header_wrap{
        width:100%;
        height: 80px;
        margin:0 auto;
        padding: 0 70px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header_wrap .h_logo a{
        display: block;
        width: 176px;
        height: 50px;
        background: url("../images/common/logo.png") no-repeat;
        background-size: contain;
        text-indent: -9999px;
    }
    .global_nav > ul{
        margin-right: 0;
        display: flex;
        align-items: center;
    }
    .global_nav > ul > li{
        padding: 0 0 0 50px;
        position: relative;
    }
	.global_nav > ul > li > a{
		position: relative;
		display: block;
		color: #FFFFFF;
		text-decoration: none;
		cursor: pointer;
        line-height: 1;
	}
	.global_nav > ul > li > a span{
		display: block;
		color: #777777;
		font-size: 1.2rem;
		margin-top: 10px;
        font-weight: 400;
	}
	.global_nav > ul > li > a:hover,
	.global_nav > ul > li > a:hover span{
        color: #9A8B5C;
    }
    .nav-toggle{
        display: none;
    }
}
@media screen and (max-width: 768px) {
	.header_wrap{
		margin:0;
		height: 60px;
	}
	.header_wrap .h_logo{
        padding: 12px 0 0 20px;
	}
	.header_wrap .h_logo a{
		display: block;
		width: 180px;
		height: 36px;
		background:url("../images/common/logo.png") no-repeat;
		background-size: contain;
		text-indent: -9999px;
	}
	/* Toggle Button */
	.nav-toggle {
		position: fixed;
		right: 20px;
		top: 10px;
		width: 40px;
		height: 40px;
		cursor: pointer;
		z-index: 1200;
	}
	.nav-toggle div {
		position: relative;
	}
	.nav-toggle span {
		display: block;
		position: absolute;
		right: 0px;
		height: 1px;
		background: #FFFFFF;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	.top_header .nav-toggle span {
		background: #FFF;
	}
	.nav-toggle span:nth-child(1) {
		top: 10px;
		width: 40px;
	}
	.nav-toggle span:nth-child(2) {
		top: 20px;
		width: 30px;
	}
	.nav-toggle span:nth-child(3) {
		top: 30px;
		width: 20px;
	}
	/* #nav-toggle 切り替えアニメーション */
	.nav-toggle.active span {
		background: #FFF;
	}
	.nav-toggle.active span:nth-child(1) {
		top: 20px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.nav-toggle.active span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.nav-toggle.active span:nth-child(3) {
		top: 20px;
		width: 40px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}

	/* .global_nav スライドアニメーション */
	.open .global_nav {
		-moz-transform: translateX(-100vw);
		-webkit-transform: translateX(-100vw);
		transform: translateX(-100vw);
	}
	/* 開いてないときは画面外に配置 */
	.global_nav{
		position: fixed;
		top: 0;
		right: -100vw;
        width: 100%;
		height: 100%;
		overflow: scroll;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
		z-index: 1100;
        background: #262626;
		padding-top: 60px;
	}
	.global_nav ul li a{
		display: block;
		color: #FFF;
		text-decoration: none;
		font-size: 1.6rem;
		padding: 0.7em 4em;
		cursor: pointer;
	}
	.global_nav ul li a span{
        display: block;
		font-size: 1.0rem;
        color: #777777
	}
}
/* =====================================
コンテンツ共通
======================================== */
.main_wrap{
    padding-top: 80px;
}
.wrap_wide_top{
	max-width: 1180px;
	margin: auto;
	padding: 150px 50px;
}
.wrap_wide_nomal{
	max-width: 1180px;
	margin: auto;
	padding: 100px 50px 200px 50px;
}
.page_head{
    background: #EFEFEF;
    padding: 60px 50px 45px 50px;
}
h1.page_title{
    max-width: 1080px;
    margin: auto;
}
h1.page_title,
h2.sub_title{
    color: #606060;
}
h1.page_title span,
h2.sub_title span{
    font-size: 4.2rem;
    line-height: 1.2;
    color: #000000;
    margin-right: 20px;
}
@media screen and (max-width: 768px) {
    .main_wrap{
        padding-top: 60px;
    }
    .wrap_wide_top{
		padding: 70px 20px;
    }
	.wrap_wide_nomal{
		padding: 40px 20px 70px 20px;
	}
    .page_head{
        background: #EFEFEF;
        padding: 30px 20px 23px 20px;
    }
    h1.page_title span,
    h2.sub_title span{
        font-size: 2.2rem;
        margin-right: 15px;
    }
}

/* =====================================
モーダル(Architect)
======================================== */
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 60px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 760px;
	height: 85vh;
	overflow-y: scroll;
}
.modal__content a.btn_modal_close{
    position: absolute;
    top: 24px;
    right: 40px;
    width: 36px;
}
@media print, screen and (min-width: 769px) {
    .architect_detail_head{
        display: flex;
        align-items: flex-start
    }
    .architect_detail_head .photo{
        width: 56%;
    }
    .architect_detail_head .name_info{
        width: 44%;
        padding-left: 40px;
        font-size: 1.4rem;
    }
    .architect_detail_head .name_info .name span{
        font-size: 2.6rem;
        color: #000000;
        display: block;
    }
}
.modal__content p{
    margin-top: 2em;
}
@media screen and (max-width: 768px) {
    .modal__content{
        padding: 60px 30px;
        max-width: 480px;
    }
    .modal__content a.btn_modal_close{
        top: 20px;
        right: 30px;
        width: 25px;
    }
    .architect_detail_head .name_info{
        margin-top: 20px;
    }
    .architect_detail_head .name_info .name span{
        font-size: 2.0rem;
        color: #000000;
        margin-right: 10px;
    }
}

/* =====================================
お問い合わせ
======================================== */
.bg_contact{
    background: #CCCCCC;
}
@media print, screen and (min-width: 769px) {
    .contact_wrap{
        max-width: 1180px;
        margin: auto;
        padding: 150px 50px;
        display: flex;
        align-items: center;
    }
    .contact_wrap .contact_text{
        width: 50%;
        padding-right: 30px;
    }
    .contact_wrap .btn_contact{
        width: 50%;
    }
}
.contact_wrap .contact_text .contact_lead{
    margin-top: 20px;
}
.contact_wrap .btn_contact a.btn{
    background: #7E7462;
    padding: 2em 1em;
}
@media print, screen and (min-width: 769px) {
    .contact_wrap .btn_contact a.btn:hover{
        background: #9A8B5C;
    }
}
@media screen and (max-width: 768px) {
    .contact_wrap{
        width: 100%;
        margin: auto;
		padding: 70px 20px 100px 20px;
    }
    .contact_wrap .btn_contact a.btn{
        margin-top: 30px;
    }
}
/* =====================================
ページトップ
======================================== */
#page-top{
	position: fixed;
	right: 20px;
	width: 60px;
	z-index: 100;
}
@media screen and (max-width: 1080px) {
	#page-top{
		width: 50px;
	}
}
@media screen and (max-width: 768px) {
	#page-top{
		width: 40px;
	}
}
/* =====================================
フッター
======================================== */
.footer{
	position: relative;
	background: #262626;
    color: #FFFFFF;
}
.footer .footer_wrap{
    width:100%;
    max-width: 1180px;
    margin:0 auto;
    padding: 150px 50px;
}
.footer_nav > ul{
    margin-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer_nav > ul > li{
    padding: 0 0 0 10px;
    position: relative;
}
@media print, screen and (min-width: 769px) {
    .footer_nav > ul > li:first-child{
        padding: 0;
    }
}
.footer_nav > ul > li > a{
    position: relative;
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
}
.footer_nav > ul > li > a span{
    display: block;
    color: #777777;
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 400;
}
@media print, screen and (min-width: 769px) {
	.footer_nav > ul > li > a:hover,
	.footer_nav > ul > li > a:hover span{
        color: #9A8B5C;
    }
    .f_company_info{
        width: 100%;
        border-top: 1px solid #383838;
        margin-top: 70px;
        padding: 70px 0 0;
        display: flex;
        justify-content: center;
    }
}
.f_company_info .f_logo a{
    display: block;
    width: 176px;
    height: 50px;
}
@media print, screen and (min-width: 769px) {
    .f_company_info .f_company{
        padding-left: 70px;
        font-size: 1.2rem;
    }
}
.f_company_info .f_company strong{
    font-weight: 500;
    font-size: 1.4rem;
    display: block;
}
@media print, screen and (min-width: 769px) {
    .f_p_link{
        display: flex;
        justify-content: center;
        margin-top: 60px;
    }
}
.f_p_link a{
    font-size: 1.4rem;
    color: #FFF;
    text-decoration: none;
    margin: auto 2em;
}
@media print, screen and (min-width: 769px) {
    .f_p_link a:hover{
        color: #9A8B5C;
    }
}
.footer .copy{
    width: 100%;
    border-top: 1px solid #383838;
    margin-top: 70px;
    padding: 70px 0 0;
    font-size: 1.2rem;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .footer .footer_wrap{
        padding: 40px 20px;
    }
    .footer_nav > ul{
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .footer_nav > ul > li{
        width: 50%;
        padding: 15px 5px;
    }
    .footer_nav > ul > li > a span{
        font-size: 1.0rem;
    }
    .f_company_info{
        margin-top: 50px;
        padding: 50px 0 0;
        border-top: 1px solid #383838;
    }
    .f_company_info .f_logo{
        width: 176px;
        margin: auto;
    }
    .f_company_info .f_company{
        text-align: center;
        margin-top: 30px;
    }
    .f_company_info .f_company strong{
        font-size: 1.2rem;
    }
    .footer .copy{
        margin-top: 50px;
        padding: 50px 0 70px 0;
        font-size: 1.0rem;
    }
}