@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Noto+Sans+JP:wght@400;700&display=swap');

@font-face {
	font-family: 'icon2';
	src: url('../fonts/icon.woff?=2024') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: block;
 }
.page [class^="icon-"], .page [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icon2' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
  
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.page .icon-arrow-down:before {
	content: "\e900";
}
.page .icon-arrow-next:before {
	content: "\e901";
}
.page .icon-arrow-prev:before {
	content: "\e902";
}
.page .icon-arrow-up:before {
	content: "\e903";
}
.page .icon-pdf:before {
	content: "\e904";
}
.page .icon-phone:before {
	content: "\e905";
}

/*============================================================
	PAGE
*/
.page {
	padding: 0 0 120px 0;
	font-family: 'Noto Sans JP', sans-serif;
}
.content-trade {
	margin: 0 auto;
	padding: 0 50px;
	max-width: 1100px;
}
.content-trade section {
	display: none;
}
.content-trade section.current {
	display: block;
}
/**/
@media screen and (max-width:820px) {
	.page {
		padding: 0 0 50px 0;
	}
	.content-trade {
		padding: 0 10px;
	}
}

/*============================================================
	MAIN
*/
.main {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 70px 0 0 0;
	height: 500px;
	background-position: 50% 50%;
	background-image: url('../img/kv-pc.jpg');
	background-size: cover;
	text-align: center;
	color: #fff;
}
.main h2 {
	font-size: 45px;
	line-height: 1.1;
	letter-spacing: 1px;
}
.main h3 {
	margin: 20px 0 15px 0;
	padding: 10px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 30px;
	line-height: 1.3;
	letter-spacing: 0.5px;
}
.main h4 {
	font-weight: 400;
	font-size: 17px;
	line-height: 1.5;
}
.main h4 br {
	display: none;
}
/**/
@media screen and (max-width:820px) {
	.main {
		padding: 50px 0 0 0;
		height: 400px;
		background-image: url('../img/kv-sp.jpg');
	}
	.main h2 {
		font-size: 26px;
		letter-spacing: 0;
	}
	.main h3 {
		margin: 20px 0 15px 0;
		padding: 10px 0;
		font-size: 18px;
		letter-spacing: 0;
	}
	.main h4 {
		font-size: 15px;
		line-height: 1.5;
	}
	.main h4 br {
		display: block;
	}
}

/*============================================================
	MENU
*/
.menu {
	margin: 0 0 60px 0;
	padding: 40px 0 0 0;
}
.menu ul {
	display: flex;
	padding: 0 0 0 1px;
}
.menu ul li {
	flex-basis: 25%;
	font-size: 16px;
}
.menu ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 0 -1px;
	height: 60px;
	border: 1px solid #000;
	transition: all 0.3s ease 0s;
}
.menu ul li a span {
	display: block;
}
.menu ul li a:hover {
	background-color: #000;
	color: #fff;
}
.menu ul li.current a,
.menu ul li.current a:hover {
	background-color: #000;
	font-weight: 700;
	color: #fff;
	cursor: default;
}
/**/
@media screen and (max-width:820px) {
	.menu {
		margin: 0 0 40px 0;
		padding: 20px 0 0 0;
	}
	.menu ul li {
		flex-basis: 33.333%;
		font-size: 12px;
	}
	.menu ul li.current {
		display: none;
	}
	.menu ul li a {
		height: 40px;
	}
}

/*============================================================
	CONTACT
*/
.contact {
	margin: 0 0 70px 0;
}
.contact .headline {
	margin: 0 0 50px 0;
	text-align: center;
	font-size: 48px;
	line-height: 1.1;
}
.contact ul {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #ccc;
}
.contact ul li {
	flex-basis: 25%;
	border: 1px solid #ccc;
	border-left: 0;
	border-top: 0;
}
.contact ul li:last-child {
	border-right: 0;
}
.contact ul li .block {
	position: relative;
	margin: 0 0 0 -1px;
	padding: 20px 20px 80px 20px;
	height: 100%;
}
.contact .block .thumb {
	position: relative;
}
.contact .block .thumb img:last-child {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.contact .block .detail {
	font-size: 12px;
}
.contact .block .detail h3 {
	margin: 15px 0 0 0;
	font-size: 18px;
}
.contact .block .detail h4 {
	margin: 8px 0 8px 0;
	font-size: 14px;
}
.contact .block .detail .tel {
	font-weight: 700;
	font-size: 26px;
}
.contact .block .detail p {
	line-height: 1.6;
}
.contact .block .btn {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	text-align: center;
	font-size: 14px;
}
.contact .block .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	border: 1px solid #c00;
	background-color: #c00;
	color: #fff;
	transition: all 0.3s ease 0s;
}
.contact .block .btn a span {
	display: block;
}
.contact .block .btn a span br {
	display: none;
}
.contact .block .btn a span i {
	position: relative;
	top: 1px;
	padding-left: 3px;
}
.contact .block .btn a:hover {
	background-color: #fff;
	color: #c00;
}
/**/
@media screen and (max-width:1080px) {
	.contact ul li {
		flex-basis: 50%;
	}
	.contact ul li:nth-child(even) {
		border-right: 0;
	}
	.contact .block .detail p .lg {
		display: none;
	}
}
/**/
@media screen and (max-width:820px) {
	.contact {
		margin: 0 0 40px 0;
	}
	.contact .headline {
		margin: 0 0 20px 0;
		font-size: 29px;
	}
	.contact ul li .block {
		padding: 10px 10px 70px 10px;
	}
	.contact ul li:nth-child(odd) .block {
		padding-left: 0;
	}
	.contact ul li:nth-child(even) .block {
		padding-right: 0;
	}
	.contact .block .detail {
		font-size: 12px;
	}
	.contact .block .detail h3 {
		margin: 15px 0 0 0;
		font-size: 15px;
	}
	.contact .block .detail h4 {
		margin: 5px 0 6px 0;
		font-size: 13px;
	}
	.contact .block .detail .tel {
		margin: 3px 0 4px 0;
		font-size: 20px;
	}
	.contact .block .detail p {
		line-height: 1.6;
	}
	.contact .block .btn {
		bottom: 15px;
		left: 10px;
		right: 10px;
		font-size: 12px;
	}
	.contact ul li:nth-child(odd) .block .btn {
		left: 0;
	}
	.contact ul li:nth-child(even) .block .btn {
		right: 0;
	}
	.contact .block .btn a {
		height: 45px;
	}
	.contact .block .btn a span br {
		display: block;
	}
}

/*============================================================
	EXPERIENCE
*/
.experience {
	margin: 0 0 70px 0;
}
.experience .heading {
	margin: 0 0 20px 0;
	text-align: center;
	font-size: 30px;
}
.experience .wrap {
	display: flex;
	margin: 0 -15px;
	padding: 20px 0;
}
.experience .list {
	position: relative;
	flex-basis: 50%;
	padding: 0 15px;
}
.experience .list ul li {
	padding: 20px 0;
}
.experience .list .block {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 10px 20px;
	min-height: 120px;
	border: 1px solid #ccc;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.7;
}
.experience .silhouette {
	position: absolute;
	z-index: 1;
	top: 50%;
	margin-top: -190px;
	width: 130px;
}
.experience .list:first-child .block {
	padding-right: 110px;
}
.experience .list:first-child .silhouette {
	right: -15px;
}
.experience .list:last-child .block {
	padding-left: 110px;
}
.experience .list:last-child .silhouette {
	left: -15px;
}
/**/
@media screen and (max-width:980px) {
	.experience .wrap {
		display: block;
		margin: 0;
	}
	.experience .list {
		padding: 0;
	}
}
/**/
@media screen and (max-width:820px) {
	.experience {
		margin: 0 0 20px 0;
	}
	.experience .heading {
		margin: 0 0 10px 0;
		font-size: 18px;
	}
	.experience .wrap {
		padding: 0 0 20px 0;
	}
	.experience .list ul li {
		padding: 5px 0;
	}
	.experience .list .block {
		padding: 10px 15px;
		min-height: 100px;
		font-size: 14px;
		line-height: 1.6;
	}
	.experience .silhouette {
		margin-top: -116px;
		width: 80px;
	}
	.experience .list:first-child .block {
		padding-right: 90px;
	}
	.experience .list:first-child .silhouette {
		right: 0px;
	}
	.experience .list:last-child .block {
		padding-left: 90px;
	}
	.experience .list:last-child .silhouette {
		left: 0px;
	}
}

/*============================================================
	SAFE
*/
.safe {

}
.safe .heading {
	margin: 0 0 40px 0;
	text-align: center;
	font-size: 30px;
}
.safe .heading span {
	display: inline-block;
}
.safe .list {
	position: relative;
}
.safe .list::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 1px;
	background-color: #fff;
}
.safe .list ul {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #ccc;
}
.safe .list ul li {
	flex-basis: 25%;
	border: 1px solid #ccc;
	border-left: 0;
	border-top: 0;
}
.safe .list ul li .block {
	padding: 30px 20px;
	height: 100%;
}
.safe .list ul li .detail {
	margin: 20px 0 0 0;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.7;
}
/**/
@media screen and (min-width:981px) {
	.safe .list ul li.half {
		flex-basis: 50%;
		border-top: 0;
	}
	.safe .list ul li.half .block {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	.safe .list ul li.half .block .icon {
		flex-basis: 50%;
		padding: 0 20px 0 0;
	}
	.safe .list ul li.half .block .detail {
		flex-basis: 50%;
		margin: 0;
		padding: 0 0 0 20px;
	}
}
@media screen and (max-width:980px) {
	.safe .list ul li {
		flex-basis: 33.333%;
	}
}
/**/
@media screen and (max-width:820px) {
	.safe .heading {
		margin: 0 0 20px 0;
		font-size: 18px;
	}
	.safe .list ul li {
		flex-basis: 50%;
	}
	.safe .list ul li .block {
		padding: 10px 10px;
	}
	.safe .list ul li:nth-child(odd) .block {
		padding-left: 0;
	}
	.safe .list ul li:nth-child(even) .block {
		padding-right: 0;
	}
	.safe .list ul li .block .icon {
		margin: 0 auto;
		width: 80%;
	}
	.safe .list ul li .detail {
		margin: 5px 0 0 0;
		font-size: 15px;
		line-height: 1.6;
	}
}

/*============================================================
	KEY
*/
.key {

}
.key .heading {
	margin: 0 0 40px 0;
	text-align: center;
	font-size: 48px;
	line-height: 1.1;
}
.key .key-menu {
	position: relative;
}
.key .key-menu ul {
	display: flex;
}
.key .key-menu ul li {
	flex-basis: 33.333%;
	border: 1px solid #ccc;
	border-left: 0;
}
.key .key-menu ul li:last-child {
	border-right: 0;
}
.key .key-menu ul li a {
	position: relative;
	display: block;
	padding: 20px 20px 25px 15px;
	transition: all 0.3s ease 0s;
}
.key .key-menu ul li span {
	display: block;
}
.key .key-menu ul li .block {
	display: flex;
}
.key .key-menu ul li .num {
	flex-basis: 60px;
	margin: 0 15px 0 0;
}
.key .key-menu ul li .text {
	flex: 1;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.6;
}
.key .key-menu ul li .link {
	margin: 15px 0 0 0;
	text-align: center;
	font-size: 14px;
	transition: color 0.3s ease 0s;
}
.key .key-menu ul li .link i {
	position: relative;
	top: 1px;
}
.key .key-menu ul li a:hover {
	z-index: 100;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
}
.key .key-menu ul li a:hover .link {
	color: #c00;
}
.key .section {
	margin: 0 auto;
	max-width: 800px;
}
.key .section .subhead {
	padding: 80px 0 0 0;
	text-align: center;
	font-size: 30px;
}
.key .section .subhead span {
	display: inline-block;
	padding-right: 1em;
	color: #c00;
}
.key .section .block {
	display: flex;
	padding: 35px 0;
	border-top: 1px solid #ccc;
}
.key .section .block-full {
	padding: 0 0 35px 0;
}
.key .section .block-last {
	margin: 0 0 60px 0;
	border-bottom: 1px solid #ccc;
}
.key .section .block-last:last-child {
	margin: 0;
}
.key .section .subhead + .block {
	border-top: 0;
}
.key .section .icon {
	flex-basis: 140px;
}
.key .section .detail {
	flex: 1;
	padding: 0 0 0 10px;
}
.key .section .detail .head .icon {
	display: none;
}
.key .section .detail h3 {
	margin: 0 0 5px 0;
	font-size: 24px;
}
.key .section .detail .text {
	margin: 0 0 1.5em 0;
	font-size: 13px;
	line-height: 2;
}
.key .section .detail .text:last-child {
	margin: 0;
}
.key .section .block-full .detail {
	padding: 0;
}
/**/
@media screen and (max-width:980px) {
	.key .key-menu ul li a {
		padding: 20px 20px 25px 20px;
	}
	.key .key-menu ul li .block {
		display: block;
		text-align: center;
	}
	.key .key-menu ul li .num {
		max-width: 60px;
		margin: 0 auto;
	}
	.key .section .subhead span {
		display: block;
		padding-right: 0;
	}
}
/**/
@media screen and (max-width:820px) {
	.key .heading {
		margin: 0 0 20px 0;
		font-size: 30px;
	}
	.key .key-menu {
		padding: 0 0 30px 0;
	}
	.key .key-menu ul li a {
		display: block;
		padding: 10px 10px 25px 10px;
	}
	.key .key-menu ul li .text {
		margin: 5px 0 0 0;
		font-size: 20px;
		line-height: 1.3;
	}
	.key .section .subhead {
		padding: 20px 0 0 0;
		text-align: center;
		font-size: 18px;
	}
	.key .section .block {
		display: block;
		padding: 10px 0 20px 0;
		border-top: 1px solid #ccc;
	}
	.key .section .block-full {
		padding: 0 0 30px 0;
	}
	.key .section .block-last {
		margin: 0 0 30px 0;
	}
	.key .section .icon {
		display: none;
	}
	.key .section .detail {
		padding: 0;
	}
	.key .section .detail .head {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	.key .section .detail .head .icon {
		display: block;
		margin: 0 0 0 -5px;
		flex-basis: 90px;
	}
	.key .section .detail h3 {
		flex: 1;
		margin: 0;
		font-size: 18px;
	}
	.key .section .detail .text {
		margin: 0 0 1.5em 0;
		font-size: 12px;
		line-height: 2;
	}
}

/*============================================================
	DOCUMENT
*/
.document {

}
.document .heading {
	text-align: center;
	font-size: 48px;
	line-height: 1.1;
}
.document .list {
	position: relative;
	margin: 50px 0 0 0;
	text-align: center;
}
.document .list::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 1px;
	background-color: #fff;
}
.document .list ul {
	display: flex;
}
.document .list ul li {
	flex-basis: 33.333%;
	border: 1px solid #ccc;
	border-left: 0;
}
.document .list .block {
	padding: 30px;
}
.document .list .block .image {
	margin: 0 auto;
	max-width: 142px;
}
.document .list .block h3 {
	margin: 20px 0 0 0;
	font-size: 18px;
}
.document .list .block h4 {
	margin: 5px 0 0 0;
	font-size: 14px;
}
.document .list .block .sample {
	margin: 15px 0 0 0;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-size: 14px;
}
.document .list .block .sample i {
	position: relative;
	top: 1px;
	padding-left: 2px;
}
.document .list .block .sample a {
	transition: all 0.3s ease 0s;
}
.document .list .block .sample a:hover {
	color: #c00;
}
/**/
@media screen and (max-width:820px) {
	.document .heading {
		font-size: 30px;
	}
	.document .list {
		margin: 20px 0 0 0;
		text-align: center;
	}
	.document .list ul li {
		flex-basis: 33.333%;
		border: 1px solid #ccc;
		border-left: 0;
	}
	.document .list .block {
		padding: 20px 5px;
	}
	.document .list .block .image {
		width: 86%;
	}
	.document .list .block h3 {
		margin: 15px 0 0 0;
		font-size: 15px;
	}
	.document .list .block h4 {
		margin: 0;
		font-size: 13px;
	}
	.document .list .block .sample {
		margin: 15px 0 0 0;
		font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
		font-size: 13px;
	}
	.document .list .block .sample i {
		position: relative;
		top: 1px;
		padding-left: 2px;
	}
	.document .list .block .sample a {
		transition: all 0.3s ease 0s;
	}
	.document .list .block .sample a:hover {
		color: #c00;
	}
}

/*============================================================
	SHOP
*/
.shop {

}
.shop .heading {
	text-align: center;
	font-size: 48px;
	line-height: 1.1;
}
.shop .catch {
	margin: 30px 0 0 0;
	text-align: center;
	font-size: 24px;
}
.shop .catch span {
	display: inline-block;
}
.shop .list {
	position: relative;
	margin: 70px 0 0 0;
}
.shop .list::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #ccc;
}
.shop .list ul {
	display: flex;
	flex-wrap: wrap;
}
.shop .list ul li {
	flex-basis: 50%;
	border: 1px solid #ccc;
	border-left: 0;
	border-top: 0;
}
.shop .list ul li:nth-child(2n) {
	border-right: 0;
}
.shop .list .block {
	position: relative;
	display: block;
	padding: 30px 20px 40px 20px;
	transition: box-shadow 0.3s ease 0s;
}
.shop .list .block:hover {
	z-index: 100;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
}
.shop .list .block h3 {
	text-align: center;
	font-size: 30px;
}
.shop .list .block h4 {
	margin: 12px 0 20px 0;
	text-align: center;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 16px;
}
.shop .list .block .detail {
	margin: 20px 0 0 0;
	font-size: 13px;
	line-height: 2;
}
.shop .list .block .link {
	margin: 30px 0 0 0;
	text-align: center;
	font-size: 14px;
}
.shop .list .block .link i {
	position: relative;
	top: 1px;
	padding-left: 3px;
}
.shop .list .block .link span {
	transition: all 0.3s ease 0s;
}
.shop .list .block:hover .link span {
	color: #c00;
}
/**/
@media screen and (max-width:820px) {
	.shop .heading {
		font-size: 30px;
	}
	.shop .catch {
		margin: 15px 0 0 0;
		font-size: 16px;
	}
	.shop .list {
		margin: 30px 0 0 0;
	}
	.shop .list ul {
		display: block;
	}
	.shop .list ul li {
		border-right: 0;
	}
	.shop .list .block {
		padding: 25px 10px 30px 10px;
	}
	.shop .list .block h3 {
		font-size: 20px;
	}
	.shop .list .block h4 {
		margin: 5px 0 20px 0;
		font-size: 12px;
	}
	.shop .list .block .detail {
		margin: 15px 0 0 0;
		font-size: 12px;
		line-height: 2;
	}
	.shop .list .block .link {
		margin: 10px 0 0 0;
		font-size: 13px;
	}
}
