@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: relative;
	height: 80px;
	padding: 15px;
	background: #fff;
	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 {
		position: absolute;
		width: 100%;
		height: auto;
		padding: 0;
		background: none;
		z-index: 10;
	}
	#header h1.title {
		width: 150px;
	}
	#header .contact {
		position: fixed;
		right: 0;
		bottom: 70px;
		display: block;
	}
	#header .contact p {
		width: 170px;
		height: 80px;
		margin-bottom: 15px;
	}
	#header .contact p.line {
		margin-bottom: 0;
	}
	#header .contact p a {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding-bottom: 5px;
		background : linear-gradient(90deg, rgba(227, 184, 61, 1) 0%, rgba(205, 158, 46, 1) 100%);
		color: #fff;
		text-align: center;
		font-size: 18px;
		box-shadow: 0 0 10px rgba(205, 158, 46, 0.75);
	}
	#header .contact p a::before {
		content: "";
		height: calc(100% - 8px);
		width: 100%;
		border: 1px solid #fff;
		position: absolute;
		top: 3px;
		left: 3px;
	}
	#header .contact p.line a {
		background: #fff;
		padding-bottom: 0;
	}
	#header .contact p.line a::before {
		border-color: #e3b83d;
	}
	#header .contact p.line a img {
		width: 145px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background:var(--color-pri); }
	#header .contact .tel a, #header .contact .btn a { background: linear-gradient(90deg, rgba(227, 184, 61, 1) 0%, rgba(205, 158, 46, 1) 100%); }

	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
		background: var(--color-pri);
		z-index: 9997;
	}
	#header h1.title {
		width: 50px;
		height: 100%;
	}
	/* お問い合わせ */
	#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;
	}
	#header .contact .line {
		background: #06C755;
	}
	#header .contact .line img {
		width: 50px;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	position: absolute;
	right: 30px;
	top: 15px;
	margin-left: auto;
}
#menu ul {
	display: flex;
	column-gap: 30px;
}
#menu li a {
	display: block;
	color: #013130;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}
#menu li.on a,
#menu li a:hover {
	color: #9f711b;
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#menu ul li.dsp_tbs {
	display: none;
}
#menu li a span {
	display: block;
}
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
#page_title {
	overflow: hidden;
	position: relative;
	text-align: center;
}
#page_title p {
	text-align: center;
}
#sub_ttl {
	background: url("../img/bg-sub.jpg") no-repeat center / cover;
	height: 350px;
	padding-top: 110px;
}
#sub_ttl .waku {
	border: 1px solid #013130;
	padding: 1px;
	position: relative;
	display: inline-block;
	color: #e3b83d;
	font-size: 45px;
	font-weight: normal;
}
#sub_ttl .waku::before, #sub_ttl .waku::after {
	content: "";
	background: url("../img/bg-sub-ico01.png") no-repeat center / 100% auto;
	width: 30px;
	height: 16px;
	position: absolute;
	top: -16px;;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
#sub_ttl .waku::after {
	top: auto;
	bottom: -16px;
	background-image: url("../img/bg-sub-ico02.png")
}
#sub_ttl .waku .in {
	display: block;
	background: rgba(1, 49, 48, 0.9);
	padding: 38px 80px;
}
#sub_ttl .waku .in .jp {
	display: block;
	color: #c69c6d;
	font-size: 24px;
}
#sub_ttl img {
	width: 100%;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#sub_ttl {
		height: 270px;
		padding-top: 60px;
	}
	#sub_ttl .waku {
		font-size: 40px;
	}
	#sub_ttl .waku .in {
		padding: 20px 50px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#sub_ttl {
		height: 200px;
		padding-top: 40px;
	}
	#sub_ttl .waku {
		font-size: 30px;
	}
	#sub_ttl .waku .in {
		padding: 20px 50px;
	}
	#sub_ttl .waku .in .jp {
		font-size: 20px;
	}
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#wrap {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
#container {
	padding-top: 3px;
	text-align: left;
	line-height: 1.8;
}
#container p {
	margin-bottom: 1em;
}
#container h3.sub {
	position: relative;
	margin-bottom: 40px;
	font-size: 40px;
	font-family: var(--font-sans);
	color: var(--color-sec);
	font-weight: normal;
}
#container h3.sub .en {
	display: block;
	margin-top: 15px;
	font-size: 20px;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#wrap, #header {
		min-width: 1150px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#container {
		padding-top: 50px;
	}
	#container h3.sub {
		margin-bottom: 30px;
		font-size: 30px;
	}
	#container h3.sub .en {
		font-size: 18px;
		margin-top: 5px;
	}
	#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;
	}
	#container h3.sub .en {
		font-size: 16px;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.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;
}
#footer .bg {
	background: url("../img/bg-footer.jpg") no-repeat center /cover;
	
}
#footer p.ttl {
	margin-bottom: 30px;
	text-align: center;
}
/* リンク */
#footer .link {
	padding: 20px 0;
}
#footer .link ul li {
	display: inline;
	margin-right: 50px;
}
#footer .link ul li a {
	color: #998675;
	text-decoration: none;
	font-size: 14px;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	color: #998675;
	font-size: 12px;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#footer .contact li {
		width: 48%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer .ttl {
		margin-bottom: 20px;
	}
	#footer .link {
		padding: 5px 0;
	}
	#copyright {
		width: 100%;
		text-align: center;
		font-size: 10px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer p.ttl img {
		width: 150px;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
.btn01 a {
	position: relative;
	z-index: 1;
	display: inline-block;
	text-align: left;
	width: 250px;
	line-height: 48px;
	border: 1px solid #e3b83d;
	color: var(--color-sec);
	background: url("../img/arrow.png") no-repeat center right 10px, #013130 url("../img/btn-ico.png") no-repeat center left 10px;
	padding-left: 65px;
	font-size: 20px;
	box-shadow: 0 0 10px rgba(205, 158, 46, 0.75);
}
.btn01 a:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	color: #fff;
	background-color: #e3b83d;
	background-image: url("../img/arrow-w.png"), url("../img/btn-ico-w.png");
	box-shadow: none;
}
.cmn_contact {
	position: relative;
	background: rgba(1, 49, 48, 0.5);
}
.cmn_contact::before {
	content: "CONTACT";
	position: absolute;
	left: 0;
	bottom: 20px;
	z-index: 1;
	font-size: 150px;
	font-weight: normal;
	color: #000;
	line-height: 0.65;
	opacity: 0.2;
}
.cmn_contact .main::before {
	background: url(../img/top/bg-blog01.png) no-repeat left top, url(../img/top/bg-blog02.png) no-repeat right bottom;
	z-index: 1;
	pointer-events: none;
}
.cmn_contact .txt {
	font-size: 25px;
	color: var(--color-sec);
}
.cmn_contact .txt02 {
	font-size: 110%;
}
.cmn_contact .btn {
	margin-top: 50px;
}
.cmn_contact .tel {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 50px;
	margin: 50px 0;
}
.cmn_contact .tel li a {
	font-size: 110%;
	color: #eee;
	text-decoration: underline;
}
.cmn_contact .btn a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 320px;
	line-height: 60px;
	padding-bottom: 5px;
	background : linear-gradient(90deg, rgba(227, 184, 61, 1) 0%, rgba(205, 158, 46, 1) 100%);
	color: #fff;
	text-align: center;
	font-size: 18px;
	box-shadow: 0 0 10px rgba(205, 158, 46, 0.75);
	margin: 0 auto;
}
.cmn_contact .btn a::before {
	content: "";
	height: calc(100% - 10px);
	width: calc(100% - 10px);
	border: 1px solid #fff;
	position: absolute;
	top: 3px;
	left: 3px;
}
.cmn_contact .txt03 {
	font-size: 120%;
}
/* 枠のマージン・パディング */
.mt { margin-top: 100px; }
.mb { margin-bottom: 100px; }
.pt { padding-top: 150px; }
.pb { padding-bottom: 150px; }
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.cmn_contact::before {
		font-size: 80px;
		bottom: 9px;
	}
	.cmn_contact .txt {
		font-size: 20px;
	}
	.cmn_contact .txt02 {
		font-size: 105%;
	}
	.mb { margin-bottom: 50px; }
	.pt { padding-top: 50px; }
	.pb { padding-bottom: 50px; }
}
@media only screen and (max-width: 640px){ /* スマホ */
	.cmn_contact::before {
		font-size: 40px;
		bottom: 4px;
	}
	.cmn_contact .main::before {
		background-size: 150px auto;
	}
	.cmn_contact .txt {
		font-size: 18px;
		text-align: left;
	}
	.cmn_contact .btn a {
		width: 280px;
		font-size: 16px;
	}
	.cmn_contact .txt02 {
		font-size: 100%;
	}
	.cmn_contact .tel {
		display: block;
	}
	.btn01 a {
		width: 220px;
		line-height: 40px;
		font-size: 18px;
	}
	.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; }
}
