@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: relative;
	height: 95px;
	padding: 15px;
	background : linear-gradient(0deg, rgba(255, 0, 0, 0) 0%, rgba(255, 0, 0, 1) 100%);
	text-align: left;
}
/* タイトル */
#header h1.title {
	height: 100%;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
}
#header h1.title img {
	object-fit: contain;
	width: 100%;
	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 {
		position: absolute;
		padding-top: 5px;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1;
	}
	#header h1.title img {
		width: 50%;
	}
	#header .contact {
		position: fixed;
		top: 0;
		right: 0;
		width: 60px;
		display: block;
	}
	#header .contact a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 60px;
	}
	#header .contact .tel a {
		writing-mode: vertical-rl; /* 縦書きにする */
		text-orientation: upright; /* 文字を縦方向に立てる */
		font-size: 20px;
		color: #fff;
		background : linear-gradient(180deg, rgba(195, 148, 59, 1) 0.56%, rgba(229, 209, 54, 1) 100%);
		padding: 10px 0;
		height: auto;
	}
	#header .contact .tel a .maru {
		width: 38px;
		height: 38px;
		background: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		margin: 0 auto 5px;
	}
	#header .contact .tel a .maru img {
		width: 20px;
	}
	#header .contact .tel a .no {
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 1;
	}
	#header .contact .tel a .no > span {
		writing-mode: sideways-rl;
		text-orientation: mixed;
		position: relative;
		left: 3px;
		margin: 5px 0;
	}
	#header .contact .btn {
		margin: 5px 0;
	}
	#header .contact .btn a {
		background : linear-gradient(180deg, rgba(195, 148, 59, 1) 0.56%, rgba(229, 209, 54, 1) 100%);
	}
	#header .contact .btn a img {
		width: 24px;
	}
	#header .contact .we a  {
		background: #2fc700;
	}
	#header .contact .we a img {
		width: 28px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: #0188d5;; }
	#header .contact .tel a {
		background: #fff;
	}
	#header .contact .btn a { background: linear-gradient(180deg, rgba(195, 148, 59, 1) 0.56%, rgba(229, 209, 54, 1) 100%); }
	#header .contact .we a { background: #2fc700; }

	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
		z-index: 9997;
		background: #f00;
	}
	#header h1.title {
		height: 100%;
		padding: 10px;
	}
	#header h1.title img {
		width: 180px;
	}
	/* お問い合わせ */
	#header .contact .tel a,
	#header .contact .btn a,
	#header .contact .we a {
		width: 46px;
		height: 50px;
		padding: 0 10px;
		/* 縦方向中央揃え */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#header .contact .tel .no {
		display: none;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#header h1.title img {
		width: 160px;
	}
}
@media only screen and (max-width: 320px){
	#header h1.title {
		padding-left: 5px;
	}
	#header h1.title img {
		width: 137px;
	}
	#header .contact .tel a, #header .contact .btn a, #header .contact .we a {
		width: 40px;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	margin-left: auto;
	margin-right: 100px;
}
#menu ul {
	display: flex;
	column-gap: 50px;
}
#menu li a {
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
}
#menu li a span {
	display: block;
	font-size: 14px;
}
#menu li.on a,
#menu li a:hover {
	color: #ccc;
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#menu ul li.dsp_tbs {
	display: none;
}
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
#page_title {
	overflow: hidden;
	position: relative;
	text-align: center;
}
#page_title p {
	text-align: center;
}
#sub_ttl.company {
	background: url("../img/company/bg_title.jpg") no-repeat center / cover;
}
#sub_ttl.contact {
	background: url("../img/contact/bg_title.jpg") no-repeat center / cover;
}
#sub_ttl.service {
	background: url("../img/service/bg_title.jpg") no-repeat center / cover;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#sub_ttl img {
		margin-top: -38px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#sub_ttl img {
		margin-top: -22px;
	}
	#page_title #slider img {
		object-fit: cover;
		height: 350px;
	}
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#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: 34px;
	color: var(--color-primary);
	font-weight: 500;
	text-align: center;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#wrap, #header {
		min-width: 1150px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#container {
		padding-top: 50px;
	}
	#container h3.sub {
		margin-bottom: 30px;
		font-size: 23px;
	}
	#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;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.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;
	font-size: 14px;
}
#footer .bg {
	background: url("../img/bg-footer.png") no-repeat center /cover;
	padding: 55px 0;
}
#footer .ttl {
	
}
#footer .ttl a {
	display: inline-block;
	margin-bottom: 20px;
}
/* お問い合わせ */
#footer .contact img {
	width: 170px;
	border: 3px solid #2fc700;
	background: #fff;
	border-radius: 10px;
	padding: 19px;
}
#footer .contact p {
	color: #2fc700;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
}
/* リンク */
#footer .link {
	background: var(--color-primary);
}
#footer .link ul {
	padding: 14px 0;
}
#footer .link ul li {
	display: inline;
	margin-right: 30px;
	list-style: none;
}
#footer .link ul li a {
	color: #FFF;
	text-decoration: none;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	color: #FFF;
	font-size: 12px;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#footer .contact li {
		width: 48%;
	}
	/* 電話リンクを無効に */
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
	}
	#footer .contact li {
		width: 48%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer .bg {
		padding: 30px 0;
	}
	#footer .ttl {
		text-align: left;
	}
	#footer .ttl a {
		margin-bottom: 20px;
	}
	#footer .ttl a img {
		width: 250px;
	}
	#footer .contact img {
		width: 150px;
	}
	#footer .contact p {
		font-size: 18px;
	}
	#footer .link .main {
		display: block;
	}
	#copyright {
		text-align: center;
		padding: 10px 0;
		font-size: 10px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer .contact {
		margin: 20px auto 0;
	}
	#copyright {
		padding: 5px 0;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
.btn01 a {
	display: inline-block;
	color: #fff;
	line-height: 60px;
	width: 250px;
	font-size: 16px;
	padding-left: 20px;
	background: url("../img/arrow-w.png") no-repeat right 20px center, linear-gradient(90deg, rgba(247, 41, 51, 1) 0%, rgba(1, 136, 213, 1) 100%);
}
.btn01 a:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	background: #f72933 url("../img/arrow-w.png") no-repeat right 20px center;
}
/* 枠のマージン・パディング */
.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: 45px;
		width: 200px;
	}
	.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; }
}
