@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: fixed;
	top: 0;
	height: 90px;
	padding: 0;
	padding-left: 25px;
	background: #f2f2ec;
	text-align: left;
		z-index: 9997;
}
/* タイトル */
#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 {
		left: 50%;
		width: 1000px;
		border-radius: 0 0 20px 20px;
		box-shadow: 0 0 2px rgba(0,0,0,0.2);
		transform: translateX(-50%);
	}
	#header h1.title {
		width: 162px;
	}
	#header .contact {
		display: none;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: var(--color-primary); }
	#header .contact .btn a { background: var(--color-primary); }

	/* ヘッダ */
	#header {
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
	}
	#header h1.title {
		width: 200px;
		height: 100%;
		padding: 10px;
	}
	/* お問い合わせ */
	#header .contact .btn {
		margin-right: 1px;
	}
	#header .contact .btn a {
		height: 50px;
		padding: 0 10px 2px;
		/* 縦方向中央揃え */
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-weight: 500;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#header h1.title img {
		width: 80%;
		height: 100%;
		max-width: none;
	}
}
@media only screen and (max-width: 320px){
	#header h1.title {
		width: 180px;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	margin-left: auto;
	padding-right: 90px;
}
#menu ul {
	display: flex;
	column-gap: 30px;
}
#menu li a {
	display: block;
	color: var(--color-font);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	letter-spacing : 2.8px;
	position: relative;
}
#menu li.product a {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	height: 90px;
	width: 90px;
	background: #9f9787;
	border-bottom-right-radius: 20px;
	font-size: 18px;
	color: #fff;
	letter-spacing : 0;
}
#menu li.on a,
#menu li:not(.product) a:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#menu li.on a::before,
#menu li:not(.product) a:hover::before {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: -1px;
	display: inline-block;
	background: rgba(0, 146, 69, 0.5);
	width: 100%;
	height: 8px;
}
#menu ul li.dsp_tbs {
	display: none;
}
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
#page_title {
	overflow: hidden;
	position: relative;
	text-align: center;
}
#page_title p {
	text-align: center;
}
#sub_ttl {
	width: 1100px;
	text-align: left;
	font-size: 25px;
	letter-spacing: 0.2em;
	padding: 170px 0 70px;
	margin: 0 auto;
}
#sub_ttl::after {
	position: absolute;
	top: 0;
	right: 0;
	content: "";
	z-index: -1;
	background: no-repeat left bottom / 110% auto;
	width: 55%;
	height: 100%;
}
#sub_ttl span {
	display: block;
	font-size: 60px;
	font-weight: 800;
	letter-spacing: 0;
}
#sub_ttl.reason::after {
	background-image: url("../img/reason/bg-title.png");
}
#sub_ttl.product::after {
	background-image: url("../img/product/bg-title.png");
}
#sub_ttl.contact::after {
	background-image: url("../img/contact/bg-title.png");
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#sub_ttl {
		width: 100%;
		font-size: 20px;
		padding: 35px 20px 50px;
		margin: 0 auto;
	}
	#sub_ttl span {
		font-size: 50px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#sub_ttl {
		width: 100%;
		font-size: 14px;
		padding: 20px 20px 25px;
		margin: 0 auto;
	}
	#sub_ttl span {
		font-size: 29px;
	}
}
@media only screen and (max-width: 350px){ /* スマホ */
	#sub_ttl::after {
		width: 50%;
		background-size: 120% auto;
	}
	#sub_ttl {
		padding: 15px 20px 20px;
	}
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#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: 40px;
	font-size: 23px;
	font-weight: 500;
	color: #666;
	letter-spacing : 5px;
}
#container h3.sub .en {
	font-weight: 900;
	font-size: 48px;
	color: #17181c;
	letter-spacing : 0;
}
@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;
		font-size: 18px;
	}
	#container h3.sub .en {
		font-size: 28px;
	}
	#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: 17px;
	}
	#container h3.sub .en {
		font-size: 24px;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.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%;
	max-width: 1100px;
	margin: 0 auto;
	margin-top: auto;
	font-size: 14px;
}
/* お問い合わせ */
#footer .main {
	padding-left: 0;
	padding-right: 0;
}
#footer .contact {
	width: 900px;
	background: #6e8b96;
	margin: 0 auto;
	border-radius: 50px;
	padding: 50px;
}
#footer .contact .ttl {
	font-size: 60px;
	font-weight: 900;
	color: #fff;
	text-align: center;
	line-height: 1;
	margin-bottom: 50px;
}
#footer .contact ul {
	width: 800px;
	margin: 0 auto;
}
#footer .contact li a {
	color: #FFF;
	font-size: 27px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	border: 1px solid #fff;
	width: 380px;
	border-radius: 45px;
	line-height: 78px;
}
#footer .contact li a img {
	width: 35px;
	margin-right: 20px;
	vertical-align: middle;
}
#footer .contact  li.btn a {
	font-size: 23px;
	font-weight: 600;
}
#footer .contact  li.btn img {
	width: 33px;
}
#footer p.ttl {
	margin-bottom: 30px;
}
#footer p.ttl img {
	width: 250px;
}
#footer .info {
	justify-content: flex-start;
}
#footer .info .in:first-of-type {
	margin-right: 50px;
}
#footer .info .in dl {
	display: flex;
	margin-bottom: 5px;
	text-align: left;
}
#footer .info .in dl.no_flex {
	display: block;
}
#footer .info .in dl dt::after {
	content: "/";
	color: #666;
	margin: 0 4px;
}
#footer .info .in dl.no_flex dt {
	margin-bottom: 5px;
}
#footer .info .in dl dd {
	color: #666;
}
#footer .info .in dl dd ul li {
	padding-left: 14px;
	position: relative;
	line-height: 1.85;
}
#footer .info .in dl dd ul li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
/* リンク */
#footer .link {
	border-top: 1px solid #c9caca;
	padding: 30px 0;
}
#footer .link ul li {
	display: inline;
	margin-right: 45px;
	list-style: none;
}
#footer .link ul li:last-of-type {
	margin-right: 0;
}
#footer .link ul li a {
	color: #17181c;
	text-decoration: none;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	color: #ccc;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#footer .contact li {
		width: 48%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer .contact {
		width: calc(100% - 40px);
		padding: 25px;
		border-radius: 30px;
	}
	#footer .contact .ttl {
		font-size: 40px;
		margin-bottom: 20px;
	}
	#footer .contact ul {
		width: 100%;
	}
	#footer .contact li {
		width: 49%;
	}
	#footer .contact li a {
		width: 100%;
		border-radius: 30px;
		line-height: 60px;
		font-size: 25px;
		padding-bottom: 2px;
	}
	#footer .contact li.btn a {
		font-size: 21px;
	}
	#footer .main {
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 30px;
	}
	#footer .ttl {
		margin-bottom: 20px;
	}
	#footer .info {
		display: block;
	}
	#footer .link {
		padding: 10px 0;
		display: block;
	}
	#copyright {
		font-size: 10px;
		text-align: center;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer .contact .ttl {
		font-size: 30px;
	}
	#footer .contact li {
		width: 100%;
	}
	#footer .contact li:first-of-type {
		margin-bottom: 10px;
	}
	#footer .contact li a {
		font-size: 22px;
		line-height: 50px;
	}
	#footer .contact li.btn a {
		font-size: 18px;
	}
	#footer .contact li a img {
		width: 28px;
		margin-right: 15px;
	}
	#footer .contact li.btn img {
		width: 28px;
		position: relative;
		top: 2px;
	}
	#footer .info .in:first-of-type {
		margin-right: 0;
	}
	#footer .info .in dl:not(.smt_flex) {
		display: block;
	}
	#copyright {
		padding: 5px 0;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
.btn01 a {
	font-size : 16px;
	letter-spacing : 3.2px;
	color : #fff;
	padding-bottom: 8px;
	padding-right: 50px;
	position: relative;
}
.btn01 a::after {
	content: "";
	position: absolute;
	top: -7px;
	vertical-align: middle;
	margin-left: 10px;
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff url("../img/arrow.png") no-repeat center;
}
.btn01 a:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
.btn01 a:hover::after {
	background: #6e8b96 url("../img/arrow-w.png") no-repeat center;
}
.btn01 a span {
	border-bottom: 1px solid rgba(0,0,0,0);
	padding-bottom: 5px;
}
.btn01 a:hover span {
	border-bottom: 1px solid #fff;
}
/**/
.bg_green::before {
	background: #b2b49c;
}
.bg_green_a::after {
	background: #b2b49c;
}
.bg_ivory::before {
	background: #f2f2ec;
}
/* 枠のマージン・パディング */
.mt { margin-top: 100px; }
.mb { margin-bottom: 100px; }
.pt { padding-top: 100px; }
.pb { padding-bottom: 100px; }
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.mt { margin-top: 50px; }
	.mb { margin-bottom: 50px; }
	.pt { padding-top: 50px; }
	.pb { padding-bottom: 50px; }
}
@media only screen and (max-width: 640px){ /* スマホ */
	.mt { margin-top: 40px; }
	.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;
	}
	/* tableにスクロールバーを追加 */
	.tbl_scroll {
		overflow: auto;
		margin-bottom: 15px;
		white-space: nowrap;
	}
	.tbl_scroll table {
		margin-bottom: 0;
	}
	.tbl_scroll::-webkit-scrollbar{
		height: 5px;
	}
	.tbl_scroll::-webkit-scrollbar-track{
		background: #F1F1F1;
	}
	.tbl_scroll::-webkit-scrollbar-thumb {
		background: #BCBCBC;
	}
}
/*------------------------------------------------*/
/* 注意書き */
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; }
}
