@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: relative;
	height: 90px;
	padding: 5px 15px;
	font-family: var(--font-mp2);
	text-align: left;
	z-index: 999;
}
/* タイトル */
#header h1.title {
	height: 100%;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
}
#header h1.title a {
	width: 220px;
	height: 220px;
	background: #fff;
	border-radius: 0 0 40px 0;
	box-shadow: 0 0 25px rgba(232,194,110,0.7);
	padding: 20px;
	position: absolute;
	top: 0;
	left: 0;
}
#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 {
		column-gap: 10px;
		margin-left: 40px;
		line-height: 1.2;
	}
	#header .contact a {
		background: #e58c6b;
		border-radius: 0 0 20px 20px;
		padding: 10px;
		box-shadow: 2px 2px 0 rgba(132,103,55,0.2);
		box-sizing: border-box;
		margin-top: -20px;
	}
	#header .contact a .txt {
		text-align: left;
		display: block;
		font-size : 95%;
		color : #fff;
	}
	#header .contact a .maru {
		width: 31px;
		height: 31px;
		background: #fff;
		border-radius: 50%;
		margin-right: 10px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-top: 5px;
	}
	#header .contact .btn a .maru {
		margin-right: 0;
		margin-left: 5px;
	}
	#header .contact a .txt_b {
		font-size : 20px;
		color : #fff;
	}
	#header .contact a img {
		width: 14px;
		vertical-align: baseline;
	}
	#header .contact .btn a img {
		width: 17px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: #e58c6b; }
	#header .contact .tel a { background: var(--color-primary);}
	#header .contact .btn a { background: var(--color-primary); }

	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
		background: #fff url("../img/bg-main.jpg") repeat top left/100%;		z-index: 9997;
	}
	#header h1.title {
		height: 100%;
	}
	#header h1.title a {
		width: 90px;
		height: 90px;
		padding: 10px;
		border-radius: 0 0 20px 0;
	}
	/* お問い合わせ */
	#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 .btn a {
		margin: 0 2px;
	}
	#header .contact .btn a img {
		position: relative;
		top: -2px;
	}
	#header .contact .txt,#header .contact .txt_b {
		display: none;
	}
}
	@media only screen and (max-width: 640px) {
		#header h1.title a {
			width: 70px;
			height: 70px;
		}
	}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	margin-left: auto;
	margin-top: 30px;
}
#menu ul {
	display: flex;
	column-gap: 30px;
}
#menu li a {
	display: block;
	color: var(--color-font);
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	position: relative;
}
#menu li a::before {
	content: "";
	background: url("../img/menuico01.png") no-repeat top center/100%;
	width: 43px;
	height: 38px;
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translateX(-50%);
}
#menu li:nth-of-type(2) a::before {
	background: url("../img/menuico02.png") no-repeat top center/100%;
}
#menu li:nth-of-type(3) a::before {
	background: url("../img/menuico03.png") no-repeat top center/100%;
}
#menu li:nth-of-type(4) a::before {
	background: url("../img/menuico04.png") no-repeat top center/100%;
}
#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 {
	position: relative;
	text-align: center;
}
#page_title p {
	text-align: center;
}
#sub_ttl {
	position: relative;
}
#sub_ttl::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: url("../img/title-bg.png") repeat-x top left / auto 100%;
}
#sub_ttl.about span {
	background-image: url("../img/about/bg-title.jpg");
}
#sub_ttl span {
	max-width: 1100px;
	margin: 0 auto;
	display: block;
	background: url("../img/recruit/bg-title.jpg") no-repeat center /cover;
	border-radius: 50px;
	position: relative;
}
#sub_ttl.recruit-enji span {
	background-image: url("../img/recruit-enji/bg-title.jpg");
}
#sub_ttl.news span {
	background-image: url("../img/info/bg-title.jpg");
}
#sub_ttl.blog span {
	background-image: url("../img/info/bg-title-blog.jpg");
}
#sub_ttl span::before {
	content: "";
	position: absolute;
	right: -120px;
	bottom: -50px;
	width: 312px;
	height: 293px;
	background: url("../img/sub-ico.png") no-repeat center / 100% auto;
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#wrap {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	background: #fff url("../img/bg-main.jpg") repeat top left/100%;
	position: relative;
	z-index: -2;
}
#container {
	text-align: left;
	line-height: 1.8;
}
#container p {
	margin-bottom: 1em;
}
#container h3.sub {
	position: relative;
	font-weight : bold;
	font-size : 36px;
	color : #846737;
}
@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: 15px;
		font-size: 20px;
	}
	#main, #navi {
		clear: both;
		padding-bottom: 30px;
	}
	#sub_ttl span {
		width: 95%;
	}
	#sub_ttl span::before {
		width: 156px;
		height: 186px;
		right: -20px;
		bottom: -40px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#wrap, #footer {
		min-width: 320px;
	}
	#container h3.sub {
		margin-bottom: 20px;
		font-size: 20px;
	}
	#sub_ttl span::before {
		width: 100px;
		height: 120px;
		right: -20px;
		bottom: -40px;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.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;
	line-height: 1.6;
	position: relative;
}
#footer .footer_box {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
}
#footer .footer_box.bg_wide::before {
	background: url("../img/bg-f.png") no-repeat top center/cover;
}
#footer p {
	text-align: center;
}
#footer p.ttl {
	margin-bottom: 30px;
}
#footer p.ttl img {
	width: 200px;
}
/* リンク */
#footer .link {
	background: #e1c588;
}
#footer .link ul {
	padding: 15px 0;
}
#footer .link ul li {
	display: inline;
	margin-right: 15px;
	padding-left: 15px;
	list-style: none;
}
#footer .link ul li a {
	color: #FFF;
	text-decoration: none;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	padding: 15px 0;
	color: #FFF;
	font-size: 12px;
	position: relative;
	bottom: -4px;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#footer .contact li {
		width: 48%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer .footer_box {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	#footer .ttl {
		margin-bottom: 20px;
	}
	#footer p.ttl img {
		width: 150px;
	}
	#copyright {
		padding: 10px 0;
		font-size: 10px;
		margin: 0 auto;
		bottom: 0;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer .footer_box.bg_wide::before {
		background-size: contain;
		background-position: bottom center;
	}
	#footer .contact li+li {
		margin-top: 15px;
	}
	#footer .contact li.tel a {
		font-size: 25px;
	}
	#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;
	font-family: var(--font-mei);
}
#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; }
}
