/*
Theme Name:株式会社トレス建築設計
Theme URI:https://tres-sar.com/
Author:A&R
Version:1.2.1
*/
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP');
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* common */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* @font-face { 
	font-family: "ipa-g";
	src: url("../fonts/ipaexg.ttf") format("truetype");
}
@font-face {
	font-family: "ipa-m";
	src: url("../fonts/ipaexm.ttf") format("truetype");
} */
/*リキャプチャ非表示*/
.grecaptcha-badge {
	visibility: hidden;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:hover {
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}
body {
	color: var(--text-color);
	font-family: 'Noto Serif JP', serif;
	font-size: 16px;
	letter-spacing: 1.2px;
	line-height: 1.5;
}
h1,h2,h3,h4,h5,h6 {
	width: 100%;
	margin: 0 auto 30px;
	padding: 0;
	line-height: 1.5;
	letter-spacing: 1.5px;
	font-size: 25px;
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
p {
	letter-spacing: 1.7;
	line-height: 1.7;
	margin-bottom: 15px;
}
a {
	color: var(--text-color);
	text-decoration: none;
}
ol,ul,li,dl,dt,dd {
	margin: 0;
	padding: 0;
	list-style: none;
}
img {
	width: 100%;
	vertical-align: bottom;
	object-fit: cover;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* root設定 */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
:root {
    /*カラー関係*/
	--main-color: #004a4c;
	--sub-color: #607378;
	--point-color: #faa41a;
    --text-color: #191919;
    --border-color: #ccc;
    --color-dgray: #aaa;
    --color-gray: #eee;
    --color-bk: #f7f8f9;
    --error-color: #dc143c;
	/*コンテンツ幅 - width*/
    --max-con: 1000px;
    --min-con: 800px;
    /*フォントファミリー*/
	--font-g: "ipa-g";
	--font-m: "ipa-m";
	--font-h:"sheila", sans-serif; /*筆記体*/
    --font-a: fontawesome;
	/* ナビの高さ */
	--navi-height:80px;
  }

/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* コンテンツ設定 */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* 表示幅 */
.conMax {
	width: var(--max-con);
	margin: 0 auto;
}
.conMin {
	width: var(--min-con);
	margin: 0 auto;
}
/* 余白 */
.conSm {
	margin: 100px 0;
}
.conSp {
	padding: 100px 0;
}
/* 見出し関係 */
/* - - - - - - - - - */
h2.secTitle {
	margin: 0 0 30px;
	font-size: 35px;
	font-weight: bold;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* header */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
header {
	position: relative;
	z-index: 999;
}
#pcHeader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}
/* ロゴ */
/* - - - - - - - - - */
.hdLogo {
	width: 180px;
	height: 150px;
	padding: 35px 15px 15px;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
	z-index: 998;
	text-align: center;
}
.hdLogo p {
	margin: 0;
	font-size: 10px;
}
.hdLogo span {
	display: block;
	font-size: 10px;
	text-align: right;
	padding-right: 15px;
	color: var(--sub-color);
	font-style: italic;
}
.hdLogo img {
	width: 80%;
	margin-bottom: 5px;
}

/* ナビ */
/* - - - - - - - - - */
.hdNavi {
	height: var(--navi-height);
    margin: 0 0 0 180px;
	background-color: #fff;
}
.gnaviNaviBox {
    display: flex;
	justify-content: flex-end;
	align-items: center;
}
.gnavi__list {
    height: var(--navi-height);
    position: relative;
    transition: all .3s;
	padding-right: 30px;
}
.gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    transition: all .3s;
}
.gnavi__list a:hover {
	font-weight: 600;
}
/* ドロップダウンメニュー */
/* - - - - - - - - - */
.dropdownBox {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
	height: var(--navi-height);
    left: 0;
}
.gnavi__list:hover .dropdownBox {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.ddBlist {
	width: 300px;
	padding: 10px 10px 10px 30px!important;
    transition: all .3s;
	background-color: #fff;
	box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
	position: relative;
}
.ddBlist::after {
	content: '\f105';
	position: absolute;
	top: 27%;
	left: 15px;
	font-family: var(--font-a);
	color: var(--main-color);
	font-size: 12px;
}
.ddBlist:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
}
.ddBlist a {
	font-size: 14px;
	justify-content: flex-start;
}
/* ボタン */
.hdNbk,
.hdNcont { 
	width: 100px;
	height: var(--navi-height);
	text-align: center;
	color: #fff;
}
.hdNbk a,
.hdNcont a {
	display: block;
	height: 100%;
	padding-top: 15px;
	color: #fff;
}
.hdNbk a {
	background-color: var(--text-color);
}
.hdNcont a {
	background-color: var(--main-color);
}
.hdNbk a span,
.hdNcont a span{ 
	display: block;
	font-size: 12px;
	margin-top: 5px;
}
.hdNbk a i,
.hdNcont a i {
	font-size: 30px;
	font-weight: bold;
}
/*フッターまでスクロールしたら消す*/
.is-hidden {
	visibility: hidden;
	opacity: 0;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* footer */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
footer {
	background-color: var(--color-bk);
}
.ftWrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
/* ロゴ */
.ftLogoBox {
	width: 300px;
	margin-right: 100px;
}
.ftLogo {
	width: 300px;
	text-align: center;
	margin-bottom: 10px;
}
.ftLogo img {
	width: 200px;
	margin: 0 auto 10px;
}
.ftLogo span {
	display: block;
	font-size: 12px;
}
a.ftContact {
	display: block;
	margin: 20px auto 0;
	padding: 20px 10px;
	background-color: #fff;
	border: solid 1px var(--border-color);
}
a.ftContact2 {
	display: none;
}
/*会社情報*/
.ftInfoBox {
	text-align: left;
	flex: 1;
}
.ftInfoBox div {
	display: flex;
	padding: 15px;
	border-bottom: solid 1px var(--border-color);
}
.ftInfoBox div:first-child {
	border-top: solid 1px var(--border-color);
}
.ftInfoBox div dt {
	width: 100px;
	font-weight: bold;
}
/* コピーライト */
footer small {
	display: block;
	width: 100%;
	padding: 5px 20px;
	background-color: #fff;
	text-align: right;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* パンくず */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
#pan {
    padding: 10px 5%;
	border-top: solid 1px var(--color-gray);
	border-bottom: solid 1px var(--color-gray);
}
#pan ol {/*長くなったらスクロール*/
    width: auto;
    font-size: 12px;
    display: flex;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#pan ol::-webkit-scrollbar {/*スクロールバー非表示*/
    display: none;
  }
#pan ol li {
    display: block;
    color: var(--text-color);
}
#pan ol li::after {
    content: '\f105';
    font-family: var(--font-a);
    margin: 0 10px;
    color: var(--main-color);;
}
#pan ol li:last-child::after {
    content: '';
}
#pan ol li a {
    color: var(--text-color);
}
.panCurrent {
    text-decoration: underline;
}




@media screen and (max-width:1400px) {
/* - - - - - - - - - - - - - - - - - - - - - - - - */
	:root {
		/*コンテンツ幅 - width*/
		--max-con: 900px;
		--min-con: 900px;
	}
}/* @media screen and (max-width:1400px)  */



@media screen and (max-width:960px) {
/* - - - - - - - - - - - - - - - - - - - - - - - - */
	:root {
		/*コンテンツ幅 - width*/
		--max-con: 95%;
		--min-con: 95%;
	}
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* コンテンツ設定 */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* 余白 */
	.conSm {
		margin: 50px 0;
	}
	.conSp {
		padding: 50px 0;
	}
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* header */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* ロゴ */
/* - - - - - - - - - */
	.hdLogo {
		width: 150px;
		height: 120px;
		padding: 20px 10px 0;
	}
	.hdLogo p {
		margin: 0;
		font-size: 10px;
	}
	.hdLogo img {
		width: 70%;
		margin-bottom: 10px;
	}

/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* footer */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
	.ftWrap {
		flex-direction: column;
	}
	/* ロゴ */
	.ftLogoBox {
		width: 100%;
		margin: 0 auto 30px;
		text-align: center;
	}
	.ftLogo {
		width: 100%;
		margin:0 auto;
	}
	.ftLogo img {
		width: 200px;
		margin: 0 auto 10px;
	}
	.ftLogo span {
		display: block;
		font-size: 12px;
	}
	a.ftContact {
		display: none;
	}
	a.ftContact2 {
		display: block;
		width: 300px;
		margin: 20px auto 0;
		padding: 20px 10px;
		color: #fff;
		background-color: var(--main-color);
		border: solid 1px var(--main-color);
		text-align: center;
	}
}/* @media screen and (max-width:960px)  */



@media screen and (max-width:600px) {
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* header */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* ロゴ */
	/* - - - - - - - - - */
	.hdLogo {
		width: 130px;
		height: 110px;
		padding: 10px auto 0;
	}
	.hdLogo p {
		margin: 0;
		font-size: 8px;
	}
	.hdLogo span {
		font-size: 8px;
		padding-right: 5px;
	}
	.hdLogo img {
		width: 80%;
		margin-bottom: 10px;
	}
		
}/* @media screen and (max-width:600px)  */



@media screen and (max-width:480px) {
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* header */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* ロゴ */
	/* - - - - - - - - - */
	.hdLogo {
		width: 90px;
		height: 70px;
		padding: 0 auto;
	}
	.hdLogo p,.hdLogo span {
		display: none;
	}
	.hdLogo img {
		width: 100%;
		margin-bottom: 0;
	}
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* パンくず */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
	#pan {
		padding: 5px 10px;
	}
	
}/* @media screen and (max-width:480px)  */
