@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: relative;
	height: 80px;
	padding: 15px;
	font-family: var(--font-sans);
	text-align: left;
}
/* タイトル */
#header h1.title {
	height: 100%;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
}
#header h1.title img {
	width: 146px;;
	height: auto;
	max-width: none;
}
/* お問合せ */
#header .contact a {
	display: block;
}
#header .contact a img {
	vertical-align: middle;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#header {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1;
		padding: 15px 20px 0;
		height: auto;
	}
	#header::before {
		content: "";
		width: 100%;
		height: 92px;
		background : linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
		opacity: 0.5;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	#header .contact {
		column-gap: 20px;
		margin-left: 40px;
		line-height: 1.2;
	}
	#header .contact a img {
		width: 16px;
		vertical-align: baseline;
	}
	#header .contact .btn a {
		width: 35px;
		height: 35px;
		background: var(--color-primary);
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid #fff;
		border-radius: 50%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: var(--color-primary); }
	#header .contact .btn a { background: var(--color-primary); }

	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
		background: rgba(0,0,0,0.2);
		z-index: 9997;
	}
	#header h1.title {
		width: calc(100% - 138px);
		height: 100%;
		padding: 10px;
	}
	/* お問合せ */
	#header .contact .btn {
		border-right: 1px solid #fff;
	}
	#header .contact .btn a {
		width: 46px;
		height: 50px;
		padding: 0 10px;
		/* 縦方向中央揃え */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#header .contact .txt,
	#header .contact .tel span,
	#header .contact .btn span {
		display: none;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	margin-left: auto;
}
#menu ul {
	display: flex;
	column-gap: 40px;
}
#menu li a {
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	letter-spacing : 2.8px;
}
#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: "";
	width: 24px;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
#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 {
	height: 280px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#sub_ttl span {
	font-size: 60px;
	font-family: var(--font-kaisei);
	font-weight: normal;
	color: var(--color-primary);
	text-shadow: 1px 1px 4px #fff, 1px 1px 4px #fff;
	letter-spacing: 7.4px;
}
#sub_ttl span.ja {
	display: block;
	font-family: var(--font-hina);
	color: var(--color-primary);
	font-size: 40%;
	letter-spacing: 6px;
}
#sub_ttl.service {
	background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../img/service/bg-title.jpg") no-repeat center / cover;
}
#sub_ttl.about {
	background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../img/about/bg-title.jpg") no-repeat center / cover;
}
#sub_ttl.contact {
	background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../img/contact/bg-title.jpg") no-repeat center / cover;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#sub_ttl {
		height: 200px;
	}
	#page_title h2 {
		padding-top: 25px;
	}
	#sub_ttl span {
		font-size: 45px;
	}
	#sub_ttl.service {
		background-position: -77px 0;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#sub_ttl {
		height: 180px;
	}
	#sub_ttl span {
		font-size: 35px;
	}
	#sub_ttl span.ja {
		font-size: 50%;
	}
	#sub_ttl.service {
		background-position: -175px 0;
	}
	#sub_ttl.about {
		background-position: -100px 0;
	}
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#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 {
	font-weight: normal;
	position: relative;
	margin-bottom: 40px;
	font-size: 74px;
	color: var(--color-primary);
	letter-spacing : 7.4px;
	font-family: var(--font-kaisei);
}
#container h3.sub::first-letter {
	color: var(--color-font);
}
#container h3.sub.cen {
	font-size: 44px;
	letter-spacing : 4.4px;
	font-family: var(--font-kaisei);
}
#container h3.sub span {
	display: block;
	font-size: 20px;
	letter-spacing : 6px;
	font-family: var(--font-hina);
}
#container h3.sub.cen span {
	font-size: 16px;
	letter-spacing : 4.8px;
	font-family: var(--font-hina);
}
#container h3.sub02 {
	position: relative;
	font-size: 30px;
	letter-spacing: 4.8px;
	margin: 70px 0 50px;
}
#container h3.sub02::after {
	position: absolute;
	content: '';
	width: 40px;
	height: 2px;
	left: calc(50% - 20px);
	top: 55px;
	background-color: var(--color-primary);
	border-radius: 10px;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#header, #wrap {
		min-width: 1150px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#container h3.sub {
		margin-bottom: 20px;
		font-size: 35px;
		letter-spacing: 3px;
	}
	#container h3.sub span {
		font-size: 18px;
		letter-spacing: 3px;
	}
	#container h3.sub.cen {
		font-size: 30px;
	}
	#container h3.sub.cen span {
		font-size: 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: 25px;
	}
	#container h3.sub span {
		font-size: 16px;
	}
	#container h3.sub.cen {
		font-size: 23px;
		margin-bottom: 20px;
	}
	#container h3.sub.cen span {
		font-size: 14px;
	}
	#container h3.sub02 {
		margin: 50px 0 40px;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.main {
	width: 1150px;
	max-width: 100%;
	margin: auto;
	padding: 0 25px;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.main {
		padding-left: 20px;
		padding-right: 20px;
	}
}
/*--------------------------------------------------
  フッタ
--------------------------------------------------*/
#footer {
	clear: both;
	width: 100%;
	margin-top: auto;
	background: url("../img/bg-footer.png") no-repeat center /cover;
	font-size: 16px;
	line-height: 1.6;
}
#footer > .main {
	padding: 30px 0 47px;
}
#footer p {
	text-align: center;
	color: #fff;
	letter-spacing : 1.6px;
}
#footer p.ttl {
	margin-bottom: 10px;
}
#footer p.ttl a {
	color: #fff;
	font-size: 45px;
}
/* リンク */
#footer .link {
	border-top: 1px solid #FFF;
	padding: 12px 0 10px;
}
#footer .link ul li {
	display: inline;
	margin-right: 20px;
	padding-left: 20px;
	list-style: none;
}
#footer .link ul li a {
	color: #c9c5eb;
	text-decoration: none;
	font-size: 14px;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	color: #c9c5eb !important;
	font-size: 14px;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer > .main {
		padding: 0 0 20px;
	}
	#footer .ttl {
		margin-bottom: 20px;
	}
	#footer .link .main {
		display: block;
	}
	#copyright {
		font-size: 10px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer {
		font-size: 14px;
	}
	#footer p.ttl a {
		font-size: 40px;
	}
	#footer .contact li+li {
		margin-top: 15px;
	}
	#footer .contact li.tel a {
		font-size: 25px;
	}
	#footer .link {
		padding: 5px 0;
	}
	@media only screen and (max-width: 320px){
		#footer p {
			letter-spacing: 0;
		}
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
.btn01 a {
	display: inline-block;
	width: 300px;
	line-height: 60px;
	background: #fff;
	border: 2px solid var(--color-primary);
	position: relative;
	padding-left: 30px;
	font-size: 16px;
	color: var(--color-primary);
	box-shadow: 3px 3px 5px rgba(171,145,0,0.5);
}
.btn01 a::before{
	content: '';
	width: 6px;
	height: 6px;
	border: 0px;
	border-top: solid 2px var(--color-primary);
	border-right: solid 2px var(--color-primary);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -4px;
}
.btn01 a:hover {
	border: 2px solid #fff;
	background: var(--color-primary);
	color: #fff;
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	box-shadow: none;
}
.btn01 a:hover::before{
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
}
/* 枠のマージン・パディング */
.mt { margin-top: 100px; }
.mb { margin-bottom: 100px; }
.pt { padding-top: 100px; }
.pb { padding-bottom: 100px; }
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.btn01 a {
		line-height: 50px;
		width: 250px;
	}
	.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: 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; }
}
