@charset 'UTF-8';
body {
	font-family:"Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	color: #000000;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8em;
	letter-spacing: .04em;
}

*{ box-sizing: border-box}
img{height: auto;}

a{ color: #000000; transition: all .3s ease;}
a:hover{ opacity: 0.6;}

.main {
	margin: 0 auto;
	width: 100%;
}
/*-----------------------------------------------
	簡易ヘッダー
------------------------------------------------*/
header{
	padding: 10px;
	text-align: center;
	border-top: 5px solid #fc391f;
}


/*-----------------------------------------------
	パンくず
------------------------------------------------*/

/*----ぱんくず----*/
.main nav{
	background-color: #f6f6f6;
}
.main .pnkz {
	max-width: 1000px;
	margin: 5px auto 0 auto;
	font-size: 12px;
	line-height: 1.5em;
}
.main .pnkz li {
	display: inline-block;
	margin-right: 10px;
}
.main .pnkz li:after {
	content: url(../../_images/common/pnkz_arrow.gif);
	display: inline-block;
	margin-left: 8px;
}
.main .pnkz li:last-child {
	color: #fc391f;
	margin-right: 0;
	font-weight: 700;
}
.main .pnkz li:last-child:after {
	content: none;
}

@media screen and (max-width: 768px) {
	.main .pnkz {
		width: 95%;
	}
}

/*-----------------------------------------------
	メイン
------------------------------------------------*/

main > section{
	max-width: 950px;
	margin: auto;
	padding: 20px 0;
}

main > section .main-box{
	display: block;
	margin: 0 auto 80px;
}
main > section .main-box h1{
	background-color: #ffeded;
	padding: 15px 50px;
	border-radius: 15px;
	position: relative;
}
main > section .main-box h1:after{
	content: "";
	display: block;
	width: 420px;
	height: 360px;
	background-image: url(../../_images/error/found-illust.webp);
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	right: 20px;
	top: 40px;
}
main > section .main-box > p{
	margin: 30px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.8em;
}

@media screen and (max-width: 768px) {
	main > section .main-box{
		display: block;
		margin: 0 auto 50px;
	}
	main > section .main-box h1{
		width: 95%;
		margin: auto;
		padding: 15px 3%;
	}
	main > section .main-box h1:after{
		width: 45%;
		height: 100%;
		background-size: contain;
		position: absolute;
		right: 20px;
		top: 10px;
	}
	main > section .main-box h1 img{
		width: 53%;
	}
}

@media screen and (max-width: 480px) {
	main > section .main-box h1:after{
		width: 40%;
		right: 10px;
		top: 10px;
	}
	main > section .main-box h1 img{
		width: 58%;
	}

	
	main > section .main-box > p{
		width: 90%;
		margin: 30px auto;
		font-size: 14px;
	}
}


/*---------検索--------*/
main > section .search-box {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 900px;
	margin: auto;
	padding: 15px 8px;
	background-color: #f6f6f6;
	border-radius: 10px;
}
main > section .search-box dt {
	flex-shrink: 0;
	color: #f0270c;
	margin-right: 10px;
	padding-left: 35px;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 30px;
	position: relative;
}
main > section .search-box dt:before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background-image: url(../../_images/common/search_icon.gif);
	background-repeat: no-repeat;
	background-size: auto;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

main > section .search-box dd{
	width: 70%;
}
main > section .search-box ul{
	display: flex;
	align-items: center;
	gap: 5px;
}
main > section .search-box ul > li:nth-of-type(1){
	width: calc(100% - 170px);
}
main > section .search-box input[type="text"] {
	width: 100%;
	margin-right: 10px;
	padding: 10px 10px;
	font-size: 16px;
	letter-spacing: 0.05em;
	border-radius: 5px;
	border: 1px solid #ACAAA7;
}
main > section .search-box ul > li:nth-of-type(2){
	width: 160px;
}
main > section .search-box input[type="submit"] {
	width: 160px;
	padding: 4px;
	background: #1f1a24;
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	letter-spacing: .15em;
	border: none;
	border-bottom: 3px solid #535154;
	border-radius: 3px;
	cursor: pointer;
}
.head_cont .side_search input[type="submit"]:hover {
	background: #F37508;
	border-bottom: 3px solid #B53E00;
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all  0.2s ease;
}


@media screen and (max-width: 768px) {
	main > section .search-box {
		width: 95%;
	}
	main > section .search-box dt {
		font-size: 20px;
	}
}
@media screen and (max-width: 600px) {
	main > section .search-box {
		flex-direction: column;
		gap: 10px;
	}
	main > section .search-box dd{
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	main > section .search-box dt {
		font-size: 20px;
	}

	main > section .search-box ul{
		flex-direction: column;
		gap: 10px;
	}
	main > section .search-box ul > li:nth-of-type(1){
		width: 100%;
	}
	main > section .search-box ul > li:nth-of-type(2){
		width: 160px;
	}
	main > section .search-box input[type="submit"] {
		font-size: 16px;
	}
}


/*---------カテゴリー検索--------*/
main > section .category-box{
	max-width: 900px;
	margin: 50px auto;
}
main > section .category-box > dt{
	display: block;
	width: fit-content;
	background-color: #fc391f;
	color: #fff;
	margin: auto;
	padding: 10px 30px 5px;
	font-size: 20px;
	font-weight: 700;
	border-radius: 10px 10px 0 0;
}
main > section .category-box > dd{
	border: 4px solid #fc391f;
	border-radius: 10px;
	overflow: hidden;
}
main > section .category-box > dd > ul{
	display: flex;
	flex-wrap: wrap;
}
main > section .category-box > dd > ul > li{
	width: calc(100% / 6);
	text-align: center;
	border-right: 1px solid #f0eeea;
	border-bottom: 1px solid #f0eeea;
}
main > section .category-box > dd > ul > li:nth-of-type(6n){
	border-right: none;
}
main > section .category-box > dd > ul > li > a{
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	padding: 15px 10px 10px;
	text-align: center;
}
main > section .category-box > dd > ul > li > a img{
	width: 65px;
	height: 65px;
	background-color: #fff;
	margin-bottom: 10px;
	object-fit: cover;
	object-position: center;
	box-shadow: 0 0 0 5px #f0eeea;
	border-radius: 50%;
}
main > section .category-box > dd > ul > li > a p{
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3em;
}

main > section .category-box > dd > ul > li > a:hover{
	background-color: #efede9;
}

@media screen and (max-width: 768px) {
		
	main > section .category-box{
		width: 95%;
	}
	main > section .category-box > dt{
		font-size: 20px;
	}
	main > section .category-box > dd > ul > li{
		width: calc(100% / 5);
	}
	main > section .category-box > dd > ul > li:nth-of-type(6n){
		border-right: 1px solid #f0eeea;
	}
	main > section .category-box > dd > ul > li:nth-of-type(5n){
		border-right: none;
	}
}

@media screen and (max-width: 550px) {
	main > section .category-box > dd > ul > li{
		width: calc(100% / 4);
	}
	main > section .category-box > dd > ul > li:nth-of-type(5n){
		border-right: 1px solid #f0eeea;
	}
	main > section .category-box > dd > ul > li:nth-of-type(4n){
		border-right: none;
	}
}

@media screen and (max-width: 480px) {
	main > section .category-box > dt{
		font-size: 18px;
	}
	main > section .category-box > dd > ul > li > a{
		padding: 12px 8px 8px;
	}
	main > section .category-box > dd > ul > li > a img{
		width: 50px;
		height: 50px;
		box-shadow: 0 0 0 4px #f0eeea;
	}
	main > section .category-box > dd > ul > li > a p{
		font-size: 11px;
		letter-spacing: -0.03em;
	}
}

/*---------リンクボタン--------*/
.blue_btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 900px;
	min-height: 100px;
	background-color: #53c3de;
	background-image: linear-gradient(to bottom, #65cae1 0%, #3dafd4 100%);
	color: #FFF;
	margin: auto;
	padding: 0 95px 0 25px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4em;
	text-align: center;
	letter-spacing: .07em;
	border-radius: 10px;
	box-shadow: 0 10px 0 #297b95;
	transition: all 0.3s ease;
	position: relative;
}
.blue_btn.next a:after{
	content: "";
	display: block;
	width: 55px;
	height: 55px;
	background-image: url(../../_images/type/_common/blue-arrow-next.gif);
	background-repeat: no-repeat;
	position: absolute;
	right: 30px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.blue_btn.next a br{
	display: none;
}

@media screen and (max-width: 768px) {
	.blue_btn a{
		width: 95%;
		min-height: 80px;
		padding: 0 95px 0 25px;
		font-size: 24px;
		box-shadow: 0 10px 0 #297b95;
	}
	.blue_btn.next a:after{
		width: 45px;
		height: 45px;
		background-size: 100% auto;
		right: 20px;
	}
	
}

@media screen and (max-width: 480px) {
	.blue_btn a{
		min-height: 70px;
		padding: 0 60px 0 15px;
		font-size: 20px;
		box-shadow: 0 8px 0 #297b95;
	}
	.blue_btn.next a:after{
		width: 35px;
		height: 35px;
		right: 15px;
	}
	.blue_btn.next a br{
		display: inline-block;
	}
}

/*--------コンタクトボタン--------*/
.contact{
	max-width: 800px;
	margin: 80px auto 30px;
	position: relative;
}
.contact .btn{
	width: calc(100% - 230px);
	text-align: center;
	position: absolute;
	bottom: 20px;
	left: 40px;
}

@media screen and (max-width: 768px) {
	.contact{
		width: 95%;
		margin: 60px auto 0;
	}
	.contact p img{
		width: 100%;
		height: auto;
	}
	.contact .btn{
		width: calc(100% - 28%);
		text-align: center;
		position: absolute;
		bottom: 4.5%;
		left: 4.5%;
	}
	
	.contact .btn img{
		width: 85%;
		max-width: 439px;
		max-height: 49px;
	}
}



/*-----------------------------------------------
	簡易フッター
------------------------------------------------*/
footer{
	background-color: #f6f1ef;
	margin-top: 50px;
	border-top: 5px solid #111;
	position: relative;
}
footer:before{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: #111;
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	margin: auto;
}
footer > p{
	max-width: 1000px;
	margin: auto;
	padding: 20px 0 15px;
}

/**/
footer .copy{
	background-color: #f0270c;
	color: #fff;
	padding: 5px 0;
}
footer .copy small{
	display: block;
	max-width: 1000px;
	margin: auto;
	line-height: 1.4em;
	text-align: right;
}

@media screen and (max-width: 768px) {
	footer > p{
		width: 95%;
		padding: 20px 0 15px;
	}
	footer > p img{
		width: auto;
		height: 80px;
	}

	/**/
	footer .copy{
		background-color: #f0270c;
		color: #fff;
	}
	footer .copy small{
		width: 95%;
	}
}

@media screen and (max-width: 480px) {
	footer > p{
		text-align: center;
	}
	footer > p img{
		height: 70px;
	}

	/**/
	footer .copy small{
		text-align: center;
	}
}



