@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: absolute;
	height: 116px;
	padding: 15px;
	background: linear-gradient(180deg,rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	font-family: var(--font-zen);
	text-align: left;
	z-index: 999;
	width: 100%;
}
/* タイトル */
#header h1.title a {
	background: #fff;
	width: 150px;
	height: 150px;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
}
#header h1.title img {
	object-fit: contain;
	width: 120px;
	height: 100%;
	max-width: none;
}
/* お問い合わせ */
#header .contact a {
	display: block;
}
#header .contact a img {
	vertical-align: middle;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#header .contact {
		position: fixed;
		top: 35%;
		right: 0;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
	}
	#header .contact a img {
		vertical-align: baseline;
	}
	#header .contact .tel a {
		font-weight: 500;
		background: #fff;
		width: 50px;
		height: 202px;
		font-size : 16px;
		letter-spacing : 3.2px;
		color : #000000;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#header .contact .tel a img {
		width: 17px;
		position: relative;
		top: -8px;
	}
	#header .contact .btn a {
		background: #b6b8a1;
		width: 50px;
		height: 50px;
		/* 縦方向中央揃え */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#header .contact .btn a img {
		width: 20px;
	}
	#header .contact .txt {
		display: block;
		font-size: 12px;
		text-align: right;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: #b6b8a1; }
	#header .contact .tel a { background: #b6b8a1; }
	#header .contact .btn a { background: #b6b8a1; }

	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
		background: #fff;
		z-index: 9997;
	}
	#header h1.title a {
		width: 100px;
		height: 100px;
	}
	#header h1.title img {
		width: 80px;
	}
	/* お問い合わせ */
	#header .contact .tel a,
	#header .contact .btn a {
		width: 46px;
		height: 50px;
		padding: 0 10px;
		/* 縦方向中央揃え */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#header .contact .tel a {
		padding: 0 12px;
	}
	#header .contact .txt,
	#header .contact .tel span,
	#header .contact .btn span {
		display: none;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	margin-right: 15px;
	margin-left: auto;
}
#menu ul {
	display: flex;
	column-gap: 50px;
	position: relative;
	top: -20px;
}
#menu li a {
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	position: relative;
}
#menu li.on a,
#menu li a:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#menu li.on a::before,
#menu li a:hover::before {
	content: "";
	background: #fff;
	width: 20px;
	height: 1px;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}
#menu li.sns a img {
	width: 22px;
}
#menu ul li.dsp_tbs {
	display: none;
}
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
#page_title {
	overflow: hidden;
	position: relative;
	text-align: center;
}
#page_title p {
	text-align: center;
}
#sub_ttl img {
	width: 100%;
}
#sub_ttl {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 350px;
	color: #fff;
	font-size: 50px;
	font-family: var(--font-zen);
	font-weight: normal;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#sub_ttl span {
		display: block;
		padding-top: 45px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#sub_ttl {
		height: 150px;
		font-size: 35px;
	}
}
@media only screen and (max-width: 640px) {
	#sub_ttl {
		font-size: 28px;
	}
}
#sub_ttl.works{
	background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)),url(../img/works/bg-title.jpg) no-repeat center / cover;
}
#sub_ttl.company{
	background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)),url(../img/company/bg-title.jpg) no-repeat center / cover;
}
#sub_ttl.contact{
	background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)),url(../img/contact/bg-title.jpg) no-repeat center / cover;
}
#sub_ttl.news {
	background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)),url(../img/info/bg-title.jpg) no-repeat center / cover;
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#wrap {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
#container {
	text-align: left;
	line-height: 1.8;
}
#container p {
	margin-bottom: 1em;
}
#container h3.sub {
	position: relative;
	margin-bottom: 40px;
	font-size : 42px;
	font-family: var(--font-zen);
	font-weight: 500;
	text-align: center;
	color: #000;
}
#container h3.sub span {
	font-size : 18px;
	color : #333333;
	font-family: var(--font-josefin);
	display: block;
	padding-bottom: 30px;
	font-weight: 400;
}
#container h3.sub::after {
	display: block;
	width: 1px;
	height: 30px;
	background: var(--color-font);
	content: "";
	position: absolute;
	top: -50px;
	left: calc(50% - 1px);
}
#container h3.sub02 {
	margin-bottom: 40px;
	font-size : 42px;
	font-family: var(--font-zen);
	font-weight: 500;
	color: #000;
}
#container h3.sub02 span {
	font-size : 18px;
	color : #333333;
	font-family: var(--font-josefin);
	display: inline-block;
	padding-bottom: 20px;
	font-weight: 400;
	position: relative;
}
#container h3.sub02 span::after {
	width: 30px;
	height: 1px;
	background: var(--color-font);
	content: "";
	position: absolute;
	top: 10px;
	right: -50px;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#wrap {
		min-width: 1150px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#container {
		padding-top: 50px;
	}
	#container h3.sub {
		margin-bottom: 30px;
		font-size: 23px;
	}
	#container h3.sub span {
		font-size: 14px;
	padding-bottom: 15px;
	}
	#container h3.sub02 {
		font-size: 23px;
		margin-bottom: 15px;
	}
	#container h3.sub02 span {
		font-size: 14px;
		padding-bottom: 15px;
	}
	#main, #navi {
		clear: both;
		padding-bottom: 30px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#wrap, #footer {
		min-width: 320px;
	}
	#container h3.sub {
		margin-bottom: 20px;
		font-size: 20px;
	}
	#container h3.sub02 {
		font-size: 18px;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.main {
	width: 1150px;
	max-width: 100%;
	margin: auto;
	padding: 0 25px;
}
.btn01 a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	width: 236px;
	line-height: 50px;
	border: 1px solid #000;
	box-sizing: border-box;
	vertical-align: middle;
	position: relative;
	box-shadow: 3px 3px 0 rgba(218,208,200,0.5);
	font-size : 14px;
	color : #000;
	font-weight:400;
}
.btn01 a::before {
	content: "";
	background: rgba(218,208,200,0.3);
	width: 14px;
	height: 14px;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
	position: absolute;
	top: 0;
	left: 0;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.main {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */ 
	.btn01 a {
		width: 200px;
	}
}
/*--------------------------------------------------
  フッタ
--------------------------------------------------*/
#footer {
	clear: both;
	width: 100%;
	margin-top: auto;
	background: #fff;
	font-size : 14px;
	line-height : 30px;
	letter-spacing : 1.4px;
}
#footer p {
	text-align: center;
}
#footer p.ttl {
	margin-bottom: 30px;
}
#footer p.ttl img {
	width: 250px;
}
/* リンク */
#footer .link {
	background: #b6b8a1;
}
#footer .link ul {
	padding: 20px 0;
}
#footer .link ul li {
	display: inline;
	margin-right: 20px;
	padding-left: 20px;
	list-style: none;
}
#footer .link ul li a {
	color: #FFF;
	text-decoration: none;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	padding: 20px 0;
	color: #FFF;
	font-size: 12px;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#footer .contact li {
		width: 48%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer .ttl {
		margin-bottom: 20px;
	}
	#footer p.ttl img {
		width: 180px;
	}
	#copyright {
		padding: 10px 0;
		font-size: 10px;
		width: 100%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer p.ttl img {
		width: 150px;
	}
	#footer .link .main {
		padding: 0;
	}
	#copyright {
		padding: 5px 0;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
/* 枠のマージン・パディング */
.mt { margin-top: 100px; }
.mb { margin-bottom: 100px; }
.pt { padding-top: 100px; }
.pb { padding-bottom: 100px; }
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.mb { margin-bottom: 50px; }
	.pt { padding-top: 50px; }
	.pb { padding-bottom: 50px; }
}
@media only screen and (max-width: 640px){ /* スマホ */
	.mb { margin-bottom: 40px; }
	.pt { padding-top: 40px; }
	.pb { padding-bottom: 40px; }
}
/*------------------------------------------------*/
/* パンくずリスト */
#page_navi {
	margin-bottom: 50px;
	padding-top: 30px;
	color: var(--color-thin);
	font-size: 12px;
	line-height: 1;
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}
#page_navi li+li:before {
	content: ">";
	margin-right: 0.5em;
}
#page_navi a {
	color: var(--color-thin);
	text-decoration: none;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#page_navi {
		margin-bottom: 30px;
		padding-top: 15px;
		font-size: 11px;
	}
}
/*------------------------------------------------*/
/* テーブル */
.tbl {
	width: 100%;
	background: #fff;
}
.tbl th,
.tbl td {
	padding: 14px;
	border: 1px solid var(--color-tbl-border);
}
.tbl th {
	white-space: nowrap;
	background: var(--color-tbl-th);
}
/*@media only screen and (max-width: 640px){*/ /* スマホ */
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.tbl {
		border-bottom: 1px solid var(--color-tbl-border);
	}
	.tbl th,
	.tbl td {
		display: block;
		width: auto;
		padding: 10px;
		border-bottom: none;
	}
}
/*------------------------------------------------*/
/* 注意書き */
p.attention {
	margin-left: 1em;
	text-indent: -1em;
}
/*------------------------------------------------*/
/* 横100％ */
.w100 {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
}
/*------------------------------------------------*/
/* 横100％背景 */
.bg_wide {
	position: relative;
}
.bg_wide::before,
.bg_wide.bg_after::after {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100vw;
	height: 100%;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	content: "";
	z-index: -1;
}
@media only screen and (max-width: 1150px) {
	.w100,
	.bg_wide::before,
	.bg_wide.bg_after::after {
		width: calc(100% + 50px);
		margin-left: -25px;
		margin-right: 0;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	.w100,
	.bg_wide::before,
	.bg_wide.bg_after::after {
		width: calc(100% + 40px);
		margin-left: -20px;
		margin-right: 0;
	}
}
/*------------------------------------------------*/
/* フレックスボックス */
.box_flex_sp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box_flex_sp.rev { flex-direction: row-reverse; }
.box_flex_sp.vcen { align-items: center; }
.box_flex_sp.vtop { align-items: flex-start; }
.box_flex_sp.htop { justify-content: flex-start; }
.box_flex_sp.hcen { justify-content: center; }
@media print, screen and (min-width: 641px){ /* PC用 */
	.box_flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.box_flex.rev { flex-direction: row-reverse; }
	.box_flex.vcen { align-items: center; }
	.box_flex.vtop { align-items: flex-start; }
	.box_flex.htop { justify-content: flex-start; }
	.box_flex.hcen { justify-content: center; }
}
/*------------------------------------------------*/
/* 箱のパディング */
.box_pad {
	padding: 20px;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	.box_pad { padding: 30px; }
}
