@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: relative;
	height: 70px;
	padding: 15px;
	font-family: var(--font-sans);
	text-align: left;
}
/* タイトル */
#header h1.title {
	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 {
		padding: 0;
	}
	#header h1.title {
		width: 315px;
		margin-left: 20px;
	}
	#header .contact {
		margin-left: 60px;
		line-height: 1.2;
	}
	#header .contact a {
		background : linear-gradient(135deg, rgba(247, 180, 0, 1) 0%, rgba(244, 134, 18, 1) 100%);
		display: block;
		width: 70px;
		height: 70px;
		text-align: center;
		color: #fff;
		padding-top: 10px;
	}
	#header .contact a:hover {
		background : linear-gradient(135deg, rgba(244, 134, 18, 1) 0%, rgba(247, 180, 0, 1) 100%);
		filter:alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
	}
	#header .contact a .ico {
		width: 25px;
		height: 25px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 5px;
	}
	#header .contact a .ico img {
		width: 25px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn, #header .contact .tel a, #header .contact .btn a {
		background : linear-gradient(135deg, rgba(247, 180, 0, 1) 0%, rgba(244, 134, 18, 1) 100%);
	}
	/* ヘッダ */
	#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: 220px;
		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;
		font-size: 0;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#header h1.title {
		width: 182px;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	margin-left: auto;
}
#menu ul {
	display: flex;
	column-gap: 50px;
}
#menu li a {
	display: block;
	color: var(--color-font);
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}
#menu li.on a,
#menu li a:hover {
	color: var(--color-secondary);
	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 {
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#sub_ttl.service {
	background: url("../img/service/bg-title.jpg") no-repeat center / cover;
}
#sub_ttl.company {
	background: url("../img/company/bg-title.jpg") no-repeat center bottom / cover;
}
#sub_ttl.contact {
	background: url("../img/contact/bg-title.jpg") no-repeat center / cover;
}
#sub_ttl span {
	color: var(--color-primary);	
	background : rgba(255, 255, 255, 0.8);
	font-size : 38px;
	letter-spacing : 3.8px;
	padding: 19px 27px 24px;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#sub_ttl {
		height: 200px;
	}
	#sub_ttl span {
		letter-spacing : 3px;
		padding: 15px 20px 20px;
		font-size : 30px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#sub_ttl {
		height: 150px;
	}
	#sub_ttl span {
		letter-spacing : 2px;
		padding: 10px 15px 15px;
		font-size : 25px;
	}
	#sub_ttl.contact {
		background: url("../img/contact/bg-title.jpg") no-repeat center right -150px/ cover;
	}
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#wrap {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	background: url("../img/sun.png") no-repeat left -145px top -10px;
}
#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;
}
#container h3.sub .en {
	position: relative;
	font-size: 16px;
	color: #666;
	padding-left: 50px;
}
#container h3.sub .en::before, #container h3.sub .en::after {
	content: "";
	width: 30px;
	height: 2px;
	background: var(--color-primary);
	position: absolute;
	top: 13px;
	left: 0;
}
#container h3.sub .en::after {
	width: 15px;
	left: 15px;
	background: var(--color-secondary);
}
#container h3.sub .jp {
	position: relative;
	font-size: 35px;
	letter-spacing: 7px;
	color: var(--color-primary);
	margin-top: 20px;
	display: block;
	font-weight: normal;
}
/*サブページ見出し_h4*/
#container h4 {
	background: #ebf0f3;
	color: var(--color-primary);
	display: inline-block;
	font-size : 30px;
	letter-spacing : 6px;
	font-weight: normal;
	padding: 15px 23px 17px;
	margin-bottom: 40px;
}
/*サブページ_文字サイズtxt*/
#container .txt {
	font-size: 110%;
}
@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 .jp {
		font-size: 25px;
		margin-top: 10px;
		letter-spacing: 3px;
	}
	#main, #navi {
		clear: both;
		padding-bottom: 30px;
	}
	/*サブページ見出し_h4*/
	#container h4 {
		font-size: 25px;
		letter-spacing: 2px;
		font-weight: normal;
		padding: 5px 15px 7px;
		margin-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.sub .jp {
		font-size: 22px;
	}
	/*サブページ見出し_h4*/
	#container h4 {
		font-size: 22px;
	}
	/*サブページ_文字サイズtxt*/
	#container .txt {
		font-size: 100%;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.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: #ebf0f3;
	font-size: 14px;
	line-height: 1.6;
}
#footer > .main {
	background: url("../img/bg-fotter.png") no-repeat center bottom;
}
#footer p {
	text-align: center;
}
#footer p.ttl {
	margin-bottom: 50px;
}
#footer p.ttl a img {
	width: 360px;
}
/* お問い合わせ */
#footer .contact {
	width: 527px;
	max-width: 100%;
	margin: 0 auto 50px;
}
#footer .contact li {
	width: 250px;
}
#footer .contact li a {
	height: 100%;
	min-height: 60px;
	padding: 10px;
	background : linear-gradient(135deg, rgba(247, 180, 0, 1) 0%, rgba(244, 134, 18, 1) 100%);
	box-shadow : 2px 2px 5px rgba(0, 0, 0, 0.2);
	color: #FFF;
	font-size: 20px;
	line-height: 1.4;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
}
#footer .contact li a:hover {
	background : linear-gradient(135deg, rgba(244, 134, 18, 1) 0%, rgba(247, 180, 0, 1) 100%);
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#footer .contact li a img {
	width: 25px;
	margin-right: 10px;
	vertical-align: middle;
}
#footer .contact  li.btn img {
	width: 24px;
}
#footer p.txt {
	font-size: 110%;
}
/* リンク */
#footer .link {
	background: #666;
	padding: 15px 0;
}
#footer .link ul li {
	display: inline;
	margin-right: 50px;
	list-style: none;
}
#footer .link ul li a {
	color: #ccc;
	text-decoration: none;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	color: #ccc;
	font-size: 12px;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer p.ttl {
		margin-bottom: 30px;
	}
	#footer p.ttl a img {
		width: 300px;
	}
	#footer .contact {
		margin-bottom: 30px;
	}
	#footer p.txt {
		font-size: 100%;
	}
	#footer .link {
		padding: 10px 0;
	}
	#copyright {
		width: 100%;
		font-size: 10px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer .contact li {
		margin: 0 auto 15px;
	}
	#footer p.ttl a img {
		width: 250px;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
.btn01 a {
	display: inline-block;
	width: 200px;
	line-height: 54px;
	background : linear-gradient(0deg, rgba(247, 180, 0, 1) 0%, rgba(244, 134, 18, 1) 100%);
	padding: 3px;
	color: #fff;
	border-radius: 32px;
	font-size : 16px;
	letter-spacing : 3.2px;
	box-shadow : 2px 2px 5px rgba(247, 180, 0, 0.6);
}
.btn01 a:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	color: var(--color-secondary);
	background : linear-gradient(0deg, #81d4f8 0%, #0b88c5 100%);
	box-shadow: none;
}
.btn01 a span {
	display: block;
	height: 100%;
	background: url("../img/arrow-w.png") no-repeat right 20px center;
	padding-left: 30px;
	padding-bottom: 2px;
	border-radius: 30px;
}
.btn01 a:hover span {
	background-color: #fff;
	background-image: url("../img/arrow.png");
}
/* 枠のマージン・パディング */
.mt { margin-top: 100px; }
.mb { margin-bottom: 100px; }
.pt { padding-top: 120px; }
.pb { padding-bottom: 120px; }
@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){ /* スマホ */
	.btn01 a {
		line-height: 44px;
	}
	.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){ /* スマホ */
	.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; }
}
