@charset "utf-8";
/* CSS Document */
/*Regular*/
/* @font-face {
	font-family: 'Noto Sans JP';
	src: url('../../font/Noto_Sans_JP/NotoSansJP-Regular.otf') format('opentype');
		font-weight: 400;
		font-style: normal;
} */

/*Bold*/
/* @font-face {
font-family: 'Noto Sans JP';
src: url('../../font/Noto_Sans_JP/NotoSansJP-Bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
} */

body {
	font-family: Noto Sans JP, sans-serif;
	color: #333333;
}

/**************************************************************************

  common style

**************************************************************************/
/* clearfix
--------------------------------*/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}


/* hover image
--------------------------------*/
a img {
	text-decoration: none;
}

a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

a.no_fade:hover img {
	opacity: inherit;
	filter: inherit;
	-ms-filter: inherit;
	text-decoration: inherit;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}


/* font
--------------------------------*/
.bold {
	font-weight: bold;
}

.red {
	color: #af0000;
}


/* HTML
--------------------------------*/
body {
	font-size: 13px;
	line-height: 1;
	/* font-family: YakuHanJP, 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif; */
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	font-weight: 400;
	color: #3d3734;
	background-color: #ffffff;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
	border: none;
	font-size: 0;
	line-height: 0;
	vertical-align: top;
}

.none {
	display: none;
}

a {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:link {
	color: #333333;
	text-decoration: none;
}

a:visited {
	color: #333333;
	text-decoration: none;
}

a:hover {
	color: #ee4142;
	text-decoration: underline;
}

a:active {
	color: #333333;
	text-decoration: underline;
}

/* iPhone対応 submit＆textboxデフォルト装飾解除 */
input[type="submit"],
input[type="text"] {
	-webkit-appearance: none;
	border-radius: 0;
}

input[type="text"],
input[type="password"],
textarea,
select {
	outline: none;
	border: none;
	border-radius: 0;
}

.pc_cont {
	display: block;
}

.sp_cont {
	display: none;
}


/**************************************************************************

  default style

**************************************************************************/
#wrapper {
	width: 100%;
}

#wrapper .inner {
	width: 100%;
	margin: auto;
}




/**************************************************************************

  contents style

**************************************************************************/
/*--------------------------------------------------------
  共通
--------------------------------------------------------*/
#contents_area {
	margin-bottom: 60px;
}

#contents_area .contents_ttl {
	display: flex;
	align-items: center;
	margin-bottom: 70px;
}

#contents_area .contents_ttl .en {
	margin-right: 20px;
	font-size: 36px;
	font-weight: bold;
	color: #3d3734;
}

#contents_area .contents_ttl .jp {
	font-size: 18px;
	font-weight: bold;
	color: #3d3734;
}


/**************************************************************************

	CATEGORY style

**************************************************************************/
#category_area .ctg_box {
	display: flex;
	flex-wrap: wrap;
}

#category_area .ctg_box .ctg_item {
	position: relative;
	width: calc((100% - 84px) / 4);
	margin-bottom: 25px;
	padding: 0 10px 35px;
	border-right: 1px solid #efefef;
}

#category_area .ctg_box .ctg_item:nth-of-type(4n) {
	border-right: none;
}

#category_area .ctg_box .ctg_item .ctg_list_img {
	margin-bottom: 20px;
}

#category_area .ctg_box .ctg_item .ctg_list_img img {
	width: 100%;
}

#category_area .ctg_box .ctg_item .ctg_ttl {
	margin-bottom: 18px;
	padding-left: 3px;
	font-size: 14px;
	font-weight: bold;
}

#category_area .ctg_box .ctg_item .ctg_small {
	padding-left: 3px;
}

#category_area .ctg_box .ctg_item .ctg_small>ul li {
	margin-bottom: 12px;
}

#category_area .ctg_box .ctg_item .ctg_small>ul li:last-of-type {
	margin-bottom: 20px;
}

#category_area .ctg_box .ctg_item .ctg_small>ul li a {
	font-size: 12px;
}

#category_area .ctg_box .ctg_item .ctg_small .ctg_more {
	position: absolute;
	left: 10px;
	bottom: 0;
	width: calc(100% - 20px);
	height: 32px;
}

#category_area .ctg_box .ctg_item .ctg_small .ctg_more a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 32px;
	font-size: 12px;
	text-decoration: none;
	background: url("../images/common/arrow_right.svg") 95% center/5px no-repeat #f5f5f5;
	border-radius: 5px;
	/*	box-shadow: 0px 5px 1px -3px rgba(0,0,0,0.2);*/
	border-bottom: solid 2px #b5a89f;
	transition: background-color .3s;
}

#category_area .ctg_box .ctg_item .ctg_small .ctg_more a:hover {
	background-color: #c7c1bd;
	border-radius: 5px;
	/*	box-shadow: 0px 5px 1px -3px rgba(0,0,0,0.2);*/
	border-bottom: solid 2px #b5a89f;
}



/************************************************************************************************************************************
*
*
*  モバイル
*
*
************************************************************************************************************************************/
@media screen and (max-width: 768px) {

	/**************************************************************************

		common style

	**************************************************************************/
	body {
		background-color: #ffffff;
	}

	body.fixed {
		position: fixed;
		width: 100%;
		height: 100%;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}

	.pc_cont {
		display: none;
	}

	.sp_cont {
		display: block;
	}

	#wrapper .inner {
		width: 100%;
		padding: 0 4%;
		box-sizing: border-box;
	}




	/**************************************************************************

		contents style

	**************************************************************************/
	/*--------------------------------------------------------
		共通
	--------------------------------------------------------*/
	#contents_area {
		margin-bottom: 0;
	}

	#contents_area .contents_ttl {
		margin-bottom: 35px;
	}

	#contents_area .contents_ttl .en {
		font-size: 20px;
	}

	#contents_area .contents_ttl .jp {
		font-size: 12px;
	}


	/**************************************************************************

		CATEGORY style

	**************************************************************************/
	#category_area .inner {
		padding: 0;
	}

	#category_area .contents_ttl {
		padding: 0 4%;
	}

	#category_area .ctg_box {
		width: 100%;
		background-color: #e5e5e5;
		border-bottom: 1px solid #e5e5e5;
	}

	#category_area .ctg_box .ctg_item {
		box-sizing: border-box;
		width: 50%;
		margin-bottom: 0;
		padding: 0;
		border-top: 1px solid #e5e5e5;
		border-right: 1px solid #e5e5e5;
		vertical-align: top;
		z-index: 10;
	}

	#category_area .ctg_box .ctg_item:nth-of-type(4n) {
		border-right: 1px solid #e5e5e5;
	}

	#category_area .ctg_box .ctg_item.active {
		background-color: #f5f5f5;
		z-index: 15;
	}

	#category_area .ctg_box .ctg_item .ctg_list_img {
		display: none;
	}

	#category_area .ctg_box .ctg_item .ctg_ttl {
		display: flex;
		align-items: center;
		height: 60px;
		margin-bottom: 0;
		padding: 0 30px 0 10px;
		font-size: 12px;
		line-height: 1.3;
		background: url("../images/common/arrow_down.svg") 94% center/10px no-repeat #ffffff;
	}

	#category_area .ctg_box .ctg_item.active .ctg_ttl {
		background: url("../images/common/arrow_up.svg") 94% center/10px no-repeat;
	}

	#category_area .ctg_box .ctg_item .ctg_ttl>img {
		width: 100%;
		max-width: 40px;
		margin-right: 10px;
	}

	#category_area .ctg_box .ctg_item .ctg_small {
		display: none;
		width: 201%;
		padding-left: 0;
		background-color: #f5f5f5;
		visibility: hidden;
		opacity: 0;
		transition: height .3s;
	}

	#category_area .ctg_box .ctg_item.active .ctg_small {
		display: block;
		visibility: visible;
		opacity: 1;
	}

	#category_area .ctg_box .ctg_item:nth-of-type(2n) .ctg_small {
		width: 200%;
		margin-left: -100%;
	}

	#category_area .ctg_box .ctg_item .ctg_small>ul {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}

	#category_area .ctg_box .ctg_item .ctg_small>ul li:nth-of-type(n) {
		box-sizing: border-box;
		width: 50%;
		margin-bottom: 0;
		border-bottom: 1px solid #e2e2e2;
		border-right: 1px solid #e2e2e2;
	}

	#category_area .ctg_box .ctg_item .ctg_small>ul li:nth-of-type(-n+2) {
		border-top: 1px solid #e2e2e2;
	}

	#category_area .ctg_box .ctg_item .ctg_small>ul li:nth-of-type(2n) {
		border-right: none;
	}

	#category_area .ctg_box .ctg_item .ctg_small>ul li:nth-of-type(n) a {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		height: 50px;
		padding: 0 20px 0 10px;
		font-size: 11px;
		line-height: 1.3;
		background: url("../images/common/arrow_right_grey.svg") right 10px center/5px no-repeat;
	}

	#category_area .ctg_box .ctg_item .ctg_small .ctg_more {
		position: relative;
		top: 0;
		left: 0;
		bottom: inherit;
		width: 100%;
		height: 50px;
		border-top: 1px solid #e2e2e2;
	}

	#category_area .ctg_box .ctg_item .ctg_small .ctg_more a {
		box-sizing: border-box;
		justify-content: flex-start;
		height: 100%;
		padding: 0 10px;
		font-weight: bold;
		background: url("../images/common/arrow_right_grey.svg") right 10px center/5px no-repeat;
		border-radius: 0;
		box-shadow: none;
	}
}

/* 210203 */
.sec_title {
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 2rem;
	line-height: 1.4;
}

.sec_title span {
	display: block;
	font-size: 0.6em;
	font-weight: normal;
}

.sec_title span::before {
	content: '-';
	margin-right: 0.5rem;
}

.sec_title span::after {
	content: '-';
	margin-left: 0.5rem;
}
