@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	height: 80px;
	padding: 15px;
	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 a {
	width: 180px;
	height: 180px;
	background: url("../img/title-bg.jpg") repeat top left/cover;
	border-radius: 0 0 50px 0;
	padding: 20px;
	box-sizing: border-box;
	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: 20px;
		margin-left: 40px;
		line-height: 1.2;
	}
	#header .contact a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 241px;
		height: 50px;
		background: #ffef8f;
		border-radius: 25px;
		position: relative;
		font-size: 22px;
		color : #9E5B00;
		font-weight: 500;
		padding-bottom: 3px;
	}
	#header .contact a::before {
		content: "";
		width: 230px;
		height: 40px;
		border: 1px solid #e39c35;
		border-radius: 23px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	#header .contact a img {
		width: 25px;
		margin-right: 10px;
		vertical-align: baseline;
	}
	#header .contact .btn a {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		padding-bottom: 0;
	}
	#header .contact .btn a::before {
		width: 40px;
		height: 40px;
		border-radius: 50%;
	}
	#header .contact .btn a img {
		width: 21px;
		margin-right: 0;
	}
	#header .contact .txt {
		display: block;
		font-size: 12px;
		text-align: right;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: var(--color-primary); }
	#header .contact .tel a { background: #ffef8f; }
	#header .contact .btn a { background: #ffef8f; }

	/* ヘッダ */
	#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: calc(100% - 138px);
		height: 100%;
		padding: 10px;
	}
	#header h1.title a {
		width: 130px;
		height: 130px;
		border-radius: 0 0 30px 0;
		padding: 15px;
	}
	/* お問い合わせ */
	#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 .txt,
	#header .contact .tel span,
	#header .contact .btn span {
		display: none;
	}
}
	@media only screen and (max-width: 640px) {
		#header h1.title a {
			width: 70px;
			height: 70px;
			padding: 5px;
			border-radius: 0 0 15px 0;
		}
	}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	margin-left: auto;
}
#menu ul {
	display: flex;
	column-gap: 30px;
}
#menu li a {
	display: block;
	color: var(--color-font);
	font-size : 19px;
	letter-spacing : 1.9px;
	font-weight: 500;
	text-decoration: none;
	position: relative;
}
#menu li.on a,
#menu li a:hover {
	color: var(--color-primary);
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#menu li.on a::before,
#menu li a:hover::before {
	content: "";
	width: 4px;
	height: 4px;
	background: var(--color-primary);
	border-radius: 50%;
	position: absolute;
	top: -8px;
	left: calc(50% - 2px);
}
#menu ul li.dsp_tbs {
	display: none;
}
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
#page_title {
	overflow: hidden;
	position: relative;
	text-align: center;
}
#page_title p {
	text-align: center;
}
#sub_ttl {
	position: relative;
	padding-bottom: 35%;
}
#sub_ttl img {
	width: 90%;
}
#sub_ttl::before {
	content: "";
	background: url("../img/sub-bg.png") no-repeat bottom left/contain;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#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;
	margin-bottom: 50px;
	font-family: var(--font-sans);
	font-weight: 500;
}
#container h3.sub .waku {
	font-size : 43px;
	letter-spacing : 4.3px;
	color : #9E5B00;
	width: 283px;
	height: 70px;
	position: absolute;
	top: -35px;
	left: 0;
	background: #fffbf3;
	border-radius: 20px;
	box-shadow: 3px 3px 0 #b79564;
	text-align: center;
	box-sizing:border-box;
	padding-top: 3px;
}
#container h3.sub .en {
	font-size: 115%;
	letter-spacing : 1.6px;
	color : #E39C35;
	display: block;
	margin-left: 300px;
	position: relative;
	top: 20px;
}
#container h3.sub .en::first-letter {
	color : #9e5b00;
}
#container h3.sub02 {
	position: relative;
	font-size : 30px;
	letter-spacing : 3px;
	color : #9E5B00;
	font-family: var(--font-sans);
	font-weight: 500;
	margin-bottom: 30px;
}
#container h4.sub {
	font-size : 30px;
	letter-spacing : 3px;
	color : #9E5B00;
	font-weight: 500;
	margin-bottom: 30px;
}
#container h4.sub02 {
	font-size : 30px;
	letter-spacing : 3px;
	color : #E39C35;
	font-weight: 500;
	text-align: center;
}
#container h4.sub02::first-letter {
	color: #9e5b00;
}
@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;
	}
	#container h3.sub .waku {
		font-size: 26px;
		width: 200px;
		height: 50px;
		top: -25px;
		padding-top: 5px;
		border-radius: 15px;
	}
	#container h3.sub .en {
		font-size: 100%;
		margin-left: 215px;
		top: 10px;
	}
	#container h3.sub02 {
		font-size: 125%;
		text-align: center;
		margin-bottom: 15px;
	}
	#container h4.sub {
		font-size: 25px;
	}
	#container h4.sub02 {
		font-size: 25px;
	}
	#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;
	}
	#container h3.sub .waku {
		font-size: 20px;
		width: 150px;
		height: 40px;
		top: -20px;
		letter-spacing: 2.5px;
		border-radius: 10px;
		padding-top: 6px;
	}
	#container h3.sub .en {
		font-size: 90%;
		margin-left: 165px;
		top: 8px;
		letter-spacing: normal;
	}
	#container h4.sub,#container h4.sub02 {
		font-size: 130%;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.main {
	width: 1150px;
	max-width: 100%;
	margin: auto;
	padding: 0 25px;
}
.sub_bg_top {
	margin-top: -35%;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.main {
		padding-left: 20px;
		padding-right: 20px;
	}
}
/*--------------------------------------------------
  フッタ
--------------------------------------------------*/
#footer {
	clear: both;
	width: 100%;
	margin-top: auto;
	background: #cfe6f6 url("../img/bg-f.jpg") repeat top center/cover;
	font-size: 14px;
	line-height: 1.6;
	position: relative;
	z-index: 0;
}
#footer .footer_box {
	padding: 90px 0 50px;
}
#footer p {
	text-align: center;
}
#footer p.ttl {
	margin-bottom: 30px;
}
#footer p.ttl img {
	width: 150px;
}
/* リンク */
#footer .link {
	background: #ffef8f;
}
#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: #e39c35;
	text-decoration: none;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	padding: 15px 0;
	color: #e39c35;
	font-size: 12px;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#footer .contact li {
		width: 48%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer .footer_box {
		padding: 50px 0 30px;
	}
	#footer .ttl {
		margin-bottom: 20px;
	}
	#footer p.ttl img {
		width: 110px;
	}
	#copyright {
		padding: 10px 0;
		font-size: 10px;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer .footer_box {
		padding: 50px 30px 30px;
	}
	#footer p.ttl img {
		width: 90px;
	}
	#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);
}
/* テーブル（角丸） */
.radius_tbl {
	width: 100%;
	background: #fff;
	border-radius: 30px;
	border-collapse: separate !important;
    border: none;
    border-left: 1px solid var(--color-tbl-border);
    border-top: 1px solid var(--color-tbl-border);
}
.radius_tbl tr>*{
    border: none;
    border-right: 1px solid var(--color-tbl-border);
    border-bottom: 1px solid var(--color-tbl-border);
}
.radius_tbl tr:first-child>*:first-child {
	border-radius: 30px 0 0 0;
}
.radius_tbl tr:first-child>*:last-child {
	border-radius: 0 30px 0 0;
}
.radius_tbl tr:last-child>*:first-child {
	border-radius: 0 0 0 30px;
}
.radius_tbl tr:last-child>*:last-child {
	border-radius: 0 0 30px 0;
}
.radius_tbl th,
.radius_tbl td {
	padding: 14px;
	vertical-align: top;
}
.radius_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; }
}
