service@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: relative;
	height: 80px;
	padding: 15px;
	background: #fff;
	font-family: var(--font-sans);
	text-align: left;
}
/* タイトル */
#header h1.title {
	width: 478px;
	height: 100%;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
}
#header h1.title img {
	object-fit: contain;
	object-position: left;
	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 {
		background: none;
		padding: 0;
		padding-left: 20px;
		padding-top: 20px;
		width: 100%;
		position: absolute;
		z-index: 1;
	}
	#header .contact {
		position: fixed;
		top: 0;
		right: 0;
		width: 60px;
		display: block;
		z-index: 2;
	}
	#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: 19px;
		color: #fff;
		background : linear-gradient(180deg, rgba(3, 67, 145, 1) 0%, rgba(40, 172, 233, 1) 100%);
		padding: 20px 0;
		height: auto;
		border-bottom-left-radius: 10px;
	}
	#header .contact .tel a img {
		width: 20px;
		margin-bottom: 10px;
	}
	#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 : #28ace9;
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
	}
	#header .contact .btn a img {
		width: 26px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: linear-gradient(180deg, rgba(3, 67, 145, 1) 0%, rgba(40, 172, 233, 1) 100%); }
	#header .contact .tel a { background: var(--color-primary); }
	#header .contact .btn a { background: var(--color-secondary); }

	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
		background: #fff;
		z-index: 9997;
	}
	#header h1.title {
		width: 300px;
		height: 100%;
		padding: 10px;
	}
	/* お問い合わせ */
	#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;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#header h1.title {
		width: 225px;
	}
}
@media only screen and (max-width: 320px){ /* スマホ */
	#header h1.title {
		width: 178px;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	margin-left: auto;
	background: rgba(3, 67, 145, 0.8);
}
#menu ul {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	column-gap: 30px;
	width: 555px;
}
#menu li a {
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	line-height: 57px;
	padding-bottom: 3px;
}
#menu li.on a,
#menu li a:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	color: #28ace9;
}
#menu ul li.dsp_tbs {
	display: none;
}
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
#page_title {
	overflow: hidden;
	position: relative;
	text-align: center;
}
#page_title p {
	text-align: center;
}
#sub_ttl {
	background: no-repeat center center / cover;
}
#sub_ttl.service {
	background-image: url("../img/service/bg-title.jpg");
}
#sub_ttl.company {
	background-image: url("../img/company/bg-title.jpg");
}
#sub_ttl.contact {
	background-image: url("../img/contact/bg-title.jpg");
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#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: 23px;
	font-family: var(--font-sans);
	font-weight: 500;
	text-align: center;
}
#container h3.sub::after {
	display: block;
	width: 50px;
	height: 2px;
	margin: 15px auto 0;
	background: var(--color-primary);
	content: "";
}
#container h3.tate {
	font-family: var(--font-serif);
	text-align: center;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	margin: 0 auto;
	letter-spacing : 9.8px;
	font-size: 49px;
	font-weight: 500;
}
#container h3.tate .fs {
	font-size: 32px;
}
#container h3.sub02 {
	font-family: var(--font-serif);
	color: #034391;
	font-size: 51px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 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.tate {
		font-size: 35px;
	}
	#container h3.tate .fs {
		font-size: 25px;
	}
	#main, #navi {
		clear: both;
		padding-bottom: 30px;
	}
	#container h3.sub02 {
		font-size: 35px;
		margin-bottom: 40px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#wrap, #footer {
		min-width: 320px;
	}
	#container h3.sub {
		margin-bottom: 20px;
		font-size: 20px;
	}
	#container h3.tate {
		font-size: 30px;
		letter-spacing: 5px;
	}
	#container h3.tate .fs {
		font-size: 20px;
	}
	#container h3.sub02 {
		font-size: 30px;
		margin-bottom: 30px;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.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/base-bg.jpg");
	font-size: 14px;
	line-height: 1.6;
	position: relative;
}
#footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 200px;
	background: #fff no-repeat center /cover;
	clip-path: polygon(50% 200px, 0 0, 100% 0);
}
#footer p {
	text-align: center;
}
#footer > .main {
	padding: 150px 0 50px;
}
#footer p.ttl {
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
	font-size: 37px;
	color: var(--color-font);
}
#footer p.ttl img {
	margin-bottom: 20px;
	width: 100px;
}
#footer p.ttl span {
	font-size: 43px;
}
#footer p.txt {
	line-height: 2;
	letter-spacing : 2.8px;
}
/* リンク */
#footer .link {
	border-top: 2px solid #fff;
	padding: 20px 0;
}
#footer .link ul li {
	display: inline;
	margin-right: 20px;
	list-style: none;
}
#footer .link ul li a {
	color: #93a3b5;
	text-decoration: none;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	color: #93a3b5;
	font-size: 12px;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#footer .contact li {
		width: 48%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer::before {
		clip-path: polygon(50% 70px, 0 0, 100% 0);
	}
	#footer > .main {
		padding: 10px 0 30px;
	}
	#footer p.ttl {
		margin-bottom: 15px;
		font-size: 28px;
	}
	#footer p.ttl span {
		font-size: 35px;
	}
	#footer p.ttl img {
		margin-bottom: 10px;
	}
	#footer .link {
		padding: 15px 0;
	}
	#copyright {
		width: 100%;
		font-size: 10px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer p.ttl img {
		width: 80px;
	}
	#footer p.txt {
		letter-spacing: 2px;
	}
	#copyright {
		padding: 5px 0;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
.btn01 a {
	position: relative;
	display: inline-block;
	background : linear-gradient(90deg, rgba(3, 67, 145, 1) 0%, rgba(40, 172, 233, 1) 100%);
	color: #fff;
	font-size: 16px;
	letter-spacing : 3.2px;
	width: 250px;
	line-height: 60px;
	padding-left: 30px;
}
.btn01 a::before {
	content: "";
	width: 30px;
	height: 2px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto 0;
	background: #fff;
	display: inline-block;
}
/* 枠のマージン・パディング */
.mt { margin-top: 100px; }
.mb { margin-bottom: 100px; }
.pt { padding-top: 100px; }
.pb { padding-bottom: 100px; }
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.mt { margin-top: 50px; }
	.mb { margin-bottom: 50px; }
	.pt { padding-top: 50px; }
	.pb { padding-bottom: 50px; }
}
@media only screen and (max-width: 640px){ /* スマホ */
	.mt { margin-top: 40px; }
	.mb { margin-bottom: 40px; }
	.pt { padding-top: 40px; }
	.pb { padding-bottom: 40px; }
}
/*------------------------------------------------*/
/* パンくずリスト */
#page_navi {
	margin-bottom: 70px;
	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){ /* スマホ */
	.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; }
}
/*--------------------------------------------------
  背景（ページ上部の三角形）
--------------------------------------------------*/
.bg_wide.back::before, .bg_wide.back::after {
	width: 50vw;
	height: 200px;
	background: url("../img/base-bg.jpg") no-repeat center /cover;
	clip-path: polygon(100% 0, 0 0, 0 100%);
}
.bg_wide.back::after {
	left: auto;
	right: 0;
	clip-path: polygon(100% 0, 0 0, 100% 100%);
}
@media only screen and (max-width: 1150px) {
	 .bg_wide.back::before, .bg_wide.back::after {
		 width: calc(50% + 25px);
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	.bg_wide.back::before, .bg_wide.back::after {
		height: 100px;
	}
}