@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: relative;
	height: 80px;
	padding: 15px;
	background: #fff;
	text-align: left;
}
/* タイトル */
#header h1.title {
	height: 100%;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	position: relative;
}
#header h1.title img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-width: none;
}
/* お問い合わせ */
#header .contact p {
	width: 33%;
}
#header .contact p.btn {
	width: 66%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header .contact p a {
	display: block;
	background: #fff;
	color: var(--color-red);
	text-align: center;
	font-size: 34px;
	font-weight: bold;
	line-height: 58px;
	padding-bottom: 2px;
	border-radius: 30px;
}
#header .contact p.btn a {
	width: 49%;
}
#header .contact p.tel a img {
	width: 37px;
	margin-right: 10px;
	vertical-align: middle;
	top: -5px;
	position: relative;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#header {
		position: absolute;
		z-index: 1;
		background: none;
		width: calc(100% - 10px);
	}
	#header h1.title {
		position: relative;
		top: 32px;
		left: 10px;
	}
	#header h1.title::before, #header h1.title::after {
		content: "";
		position: absolute;
		top: -47px;
		left: 40px;
		width: 12px;
		height: 23px;
		display: inline-block;
		background: #7c4c28
	}
	#header h1.title::after {
		left: auto;
		right: 40px;
	}
	#header h1.title a img {
		width: 300px;
	}
	#header .contact {
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		min-width: 1150px;
		height: 80px;
		background: #e61f22;
		z-index: 9999;
		padding: 0 1%;
	}
	@media only screen and (max-width: 1200px) {
		#header .contact p a {
			font-size: 22px;
		}
		#header .contact p.tel a img {
			width: 25px;
		}
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: linear-gradient(90deg, rgba(51, 200, 146, 1) 0%, rgba(13, 142, 255, 1) 100%); }
	#header .contact .tel a { background: var(--color-red); }
	#header .contact .btn a { background: #fff; }

	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
		background: rgba(255,255,255,0.8);
		z-index: 9997;
	}
	#header h1.title {
		width: calc(100% - 138px);
		height: 100%;
		padding-left: 5px;
	}
	#header h1.title img {
		height: 50px;
		width: auto;
	}
	#header .contact p {
		width: auto;
	}
	#header .contact p a {
		line-height: 1;
	}
	#header .contact .tel a {
		width: 46px;
		height: 50px;
		padding: 0 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 0;
		font-size: 0;
	}
	#header .contact p.tel a img {
		top: auto;
		margin-right: 0;
		width: auto;
	}
	#header .contact p.tel span {
		display: none;
	}
	#header .contact p.btn {
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		padding: 0 15px;
		height: 50px;
		background: #e61f22;
		z-index: 9999;
	}
	#header .contact p.btn a {
		font-size: 20px;
		padding: 4px 0 6px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#header .contact p.btn a {
		font-size: 15px;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	position: absolute;
	top: 21px;
	right: 40px;
	margin-left: auto;
	border: 2px solid #70351d;
	background: #fff;
	border-radius : 25px;
	padding: 12px 30px 14px;
	width: 700px;
}
#menu::before, #menu::after {
	content: "";
	position: absolute;
	top: -23px;
	left: 60px;
	width: 12px;
	height: 23px;
	display: inline-block;
	background: #7c4c28
}
#menu::after {
	left: auto;
	right: 60px;
}
#menu ul {
	display: flex;
	justify-content: space-between;
}
#menu li a {
	display: block;
	color: #70351D;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}
#menu li.on a,
#menu li a:hover {
	color: #0d8eff;
	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::before {
	position: absolute;
	top: 0;
	left: -1px;
	content: url(../img/top/title_l.png);
}
#sub_ttl::after {
	position: absolute;
	top: 0;
	right: 0;
	content: url(../img/top/title_r.png);
}
#sub_ttl img {
	width: 100%;
	border-radius: 30px 30px 0 0;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#page_title {
		padding-top: 5px;
	}
	#page_title::before {
		content: "";
		width: 100%;
		height: 5px;
		background: #c1ff72;
		position: absolute;
		top: 0;
		left: 0;
	}
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#wrap {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
#wrap_in {
	border: 5px solid #c1ff72;
	border-bottom: none;
}
#container {
	text-align: left;
	line-height: 1.8;
	overflow: hidden;
}
#container p {
	margin-bottom: 1em;
}
#container h3.sub {
	position: relative;
	margin-bottom: 40px;
	font-size: 36px;
	font-weight: 500;
	text-align: center;
	background: linear-gradient(90deg, #33c892, #0d8eff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#wrap, #header {
		min-width: 1150px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#wrap_in {
		border-top: none;
	}
	#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: 15px;
		padding-right: 15px;
	}
}
/*--------------------------------------------------
  フッタ
--------------------------------------------------*/
#footer {
	position: relative;
	clear: both;
	width: 100%;
	margin-top: auto;
	padding-top: 10px;
	padding-bottom: 80px;
}
#footer::before {
	content: "";
	width: 100%;
	height: 10px;
	position: absolute;
	top: 0;
	left: 0;
	background : linear-gradient(90deg, rgba(51, 200, 146, 1) 0%, rgba(13, 142, 255, 1) 100%);
}
#footer .box {
	width: 1100px;
	margin: 0 auto;
	height: 300px;
}
#footer .box .info {
	font-size: 16px;
	padding-top: 60px;
}
#footer .box .info .ttl {
	margin-bottom: 20px;
}
#footer .box .info .ttl img {
	width: 300px;
}
#footer .box .map {
	position: absolute;
	right: 0;
	top: 10px;
	width: 50.8%;
	height: 300px;
}
#footer .box .map iframe {
	width: 100%;
	height: 100%;
}
#footer .link {
	position: relative;
	border-top: 1px solid #FFF;
}
#footer .link::before {
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	top: -1px;
	left: 0;
	background : linear-gradient(90deg, rgba(51, 200, 146, 1) 0%, rgba(13, 142, 255, 1) 100%);
}
#footer .link ul {
	padding: 20px 0;
}
#footer .link ul li {
	display: inline;
	margin-right: 20px;
	padding-left: 20px;
	list-style: none;
}
#footer .link ul li a {
	color: #c9a063;
	text-decoration: none;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	text-align: center;
	padding: 6px 0;
	color: #FFF;
	font-size: 12px;
	background : linear-gradient(90deg, rgba(51, 200, 146, 1) 0%, rgba(13, 142, 255, 1) 100%);
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#footer .contact li {
		width: 48%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer {
		padding-bottom: 50px;
	}
	#footer .box {
		width: 100%;
		height: auto;
	}
	#footer .box .info {
		padding-top: 25px;
		margin-bottom: 15px;
	}
	#footer .box .info p {
		text-align: center;
	}
	#footer .box .info .ttl {
		margin-bottom: 20px;
	}
	#footer .box .map {
		position: relative;
		top: auto;
		width: 100%;
		height: 250px;
	}
	#copyright {
		padding: 10px 0;
		font-size: 10px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer .box .info {
		font-size: 14px;
	}
	#footer .box .info .ttl img {
		width: 250px;
	}
	#copyright {
		padding: 5px 0;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
.btn01 a {
	display: inline-block;
	background : linear-gradient(90deg, rgba(51, 200, 146, 1) 0%, rgba(13, 142, 255, 1) 100%);
	padding: 4px;
	width: 300px;
	box-shadow: 7px 7px 10px rgba(66,94,13,0.3);
	border-radius: 30px;
	line-height: 49px;
}
.btn01 a span {
	display: block;
	background: url("../img/arrow-w.png") no-repeat right 20px center / 20px auto;
	color: #fff;
	font-size: 18px;
	border-radius: 35px;
	padding-left: 45px;
	padding-bottom: 3px;
	position: relative;
}
.btn01 a span::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 15px;
	width: 16.5px;
	height: 16.5px;
	background: #fff;
	border-radius: 50%;
	z-index: 1;
}
.btn01 a:hover {
	box-shadow: none;
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
.btn01 a:hover span {
	background: #fff url("../img/arrow.png") no-repeat right 20px center / 20px auto;
	color: #33C892;
}
.btn01 a:hover span::before {
	background : #33C892;
}
/* 枠のマージン・パディング */
.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){ /* スマホ */
	.btn01 a {
		width: 200px;
		line-height: 39px;
	}
	.btn01 a span, .btn01 a:hover span {
		background-position: right 10px center;
	}
	.btn01 a span {
		padding-left: 35px;
		font-size: 16px;
	}
	.btn01 a span::before {
		width: 14px;
		height: 14px;
		left: 10px;
		top: 14px;
	}
	.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; }
}
