@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 270px;
	height: 80px;
	padding: 15px;
	box-sizing: border-box;
	background: #fff;
	font-family: var(--font-sans);
	text-align: left;
	z-index: 999;
}
/* タイトル */
#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 .contact a {
		display: none
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: #f06a43; }
	#header .contact .tel a { background: #f06a43; }
	#header .contact .btn a { background: #06c755; }

	/* ヘッダ */
	#header {
		width: auto;
		height: 80px;
		padding: 15px;
		display: block;
	}
	#header h1.title {
		justify-content: center;
	}
	#header h1.title img {
		width: auto;
		height: 40px;
	}
	/* お問い合わせ */
	#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 .txt,
	#header .contact .tel span,
	#header .contact .btn span {
		display: none;
	}
}

@media only screen and (max-width: 640px){ /* スマホ */
	#header {
		height: 40px;
		padding: 8px;
	}
	#header h1.title img {
		height: 20px;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	margin-left: auto;
}
#menu ul {
	display: flex;
	column-gap: 30px;
}
#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-primary);
	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 img {
	width: 100%;
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#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;
}
#container h3.sub::before {
	position: absolute;
	content: "";
	background: #f18200;
	width: 100%;
	height: 3px;
	top: calc(50% - 1.5px);
	left: 0;
}
#container h3.sub span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size : 63px;
	color : #000;
	font-family: var(--font-sans);
	font-weight: 900;
	text-align: center;
	background: #fff;
	width: 1100px;
	height: 100px;
	border: 5px solid #f18200;
	margin: 0 auto 70px;
	padding-bottom: 6px;
}
#container h3.sub span::before {
	content: "";
	background: #37bef0;
	clip-path: polygon(100% 0, 0 0, 0 100%);
	width: 50px;
	height: 50px;
	position: absolute;
	top: -1px;
	left: -1px;
}
#container h3.sub span::after {
	content: "";
	background: #37bef0;
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: -1px;
	right: -1px;
}
#container h3.sub02 {
	background: #f18200;
	width: 600px;
	border-radius: 30px 30px 0 0;
	font-size : 63px;
	line-height : 80px;
	color : #fff;
	margin: 0 auto;
	text-align: center;
	font-weight: 900;
	padding: 15px 0;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#wrap {
		min-width: 1150px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#container h3.sub span {
		font-size: 5vw;
		width: 80%;
		height: 80px;
	}
	#container h3.sub02 {
		font-size: 5vw;
		width: 80%;
		line-height: 50px;
	}
	#main, #navi {
		clear: both;
		padding-bottom: 30px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#wrap, #footer {
		min-width: 320px;
	}
	#container h3.sub span {
		font-size: 6vw;
		margin: 0 auto 30px;
	}
	#container h3.sub span::before,#container h3.sub span::after {
		width: 30px;
		height: 30px;
	}
	#container h3.sub02 {
		line-height: 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: #faede4;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 80px;
}
#footer p {
	text-align: center;
}
#footer p.ttl {
	margin-bottom: 30px;
}
#footer .ttl img {
	width: 333px;
}
/* お問い合わせ */
#footer .contact {
	width: 800px;
	max-width: 100%;
	margin: 30px auto 0;
}
#footer .main {
	padding-top: 50px;
	padding-bottom: 50px;
}
/* リンク */
#footer .link {
	background: #333;
}
#footer .link ul {
	padding: 30px 0;
	border-bottom: 1px solid #FFF;
}
#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;
}
#footer .follow {
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 9999;
}
#footer .follow .box {
	width: calc(100% / 2);
	background: #f06a43;
}
#footer .follow .box a {
	height: 80px;
	color: #fff;
	font-size : 46px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
}
#footer .follow .box:nth-of-type(2) a {
	background: #06c755;
}
#footer .follow .box a .ttl {
	text-align: center;
}
#footer .follow .box a .tel,#footer .follow .box a .line {
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer .follow .box a .tel .maru {
	position: relative;
	width: 50px;
	height: 50px;
	margin-right: 10px;
	background: #fff;
	border-radius: 50%;
}
#footer .follow .box a .tel .maru img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 24px;
}
#footer .follow .box a .line img {
	width: 50px;
	vertical-align: middle;
	margin-right: 10px;
}
#footer .follow .box a .txt {
	position: relative;
	top: -3px;
}
/* コピーライト */
#copyright {
	padding: 15px 0;
	color: #FFF;
	font-size: 12px;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#footer .follow {
		min-width: 1150px;
	}
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#footer .contact li {
		width: 48%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer {
		margin-bottom: 60px;
	}
	#footer .ttl {
		margin-bottom: 20px;
	}
	#footer .ttl img {
		width: 220px;
	}
	#footer .follow .box a {
		font-size: 3.5vw;
		height: 60px;
	}
	#footer .follow .box a .tel .maru {
		width: 35px;
		height: 35px;
	}
	#footer .follow .box a .tel .maru img {
		width: 19px;
	}
	#footer .follow .box a .line img {
		width: 35px;
	}
	#footer .follow .box a .txt{
		top: -1px;
	}
	#copyright {
		padding: 10px 0;
		font-size: 10px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer .contact li+li {
		margin-top: 15px;
	}
	#footer .contact li.tel a {
		font-size: 25px;
	}
	#footer .follow .box a {
		font-size: 4vw;
	}
	#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){ /* スマホ */
	.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; }
}
