@charset "UTF-8";
/*----------------------------------------

	- content
		- breadcrumb
		+ article
			+ decoration
			- pagetitle
			- lead
			+ main
				+ box01
					+ box01_01
						- box01_01_01
						- box01_01_02
					- box01_02
					- box01_03

-----------------------------------------*/

/*----------------------------------------
	decoration　右肩　花菱
-----------------------------------------*/
p.decoration::before {
	background: url(/img/c_icon_hanabishi07.png) no-repeat right top;
	background-size: 47px 36px;
}

@media screen and (max-width: 1023px) {
	p.decoration::before {
		background: url(/img/c_icon_hanabishi07.png) no-repeat right top;
		background-size: 24px 18px;
	}
}

/*----------------------------------------
	pagetitle
-----------------------------------------*/
h1.pagetitle {
	padding-top: 133px;
}

h1.pagetitle span {
	display: block;
}

h1.pagetitle span+span {
	margin: 9px 0 0 -2px;
	letter-spacing: 0.06em;
}

@media screen and (max-width: 1023px) {
	h1.pagetitle {
		padding-top: 40px;
	}
}

/*----------------------------------------
	lead
-----------------------------------------*/
#lead {
	padding-top: 100px;
}

#lead>ul:first-of-type {
	padding-top: 52px;
}

#lead>ul:first-of-type>li:nth-child(n+2) {
	margin-top: 6px;
}

#lead>p:nth-of-type(2) {
	padding: 52px 0 96px;
}

@media screen and (max-width: 1023px) {
	#lead {
		padding-top: 26px;
	}

	#lead>ul:first-of-type {
		padding-top: 42px;
	}

	#lead>p:nth-of-type(2) {
		padding: 42px 0 46px;
	}
}

/*----------------------------------------
	main
-----------------------------------------*/
#main>ul {
	display: flex;
	justify-content: space-between;
}

#main>ul>li {
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
	position: relative;
	width: calc(33.33% - 4px);
	height: 80px;
	background: #f2f2f2;
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

#main>ul>li:nth-child(n+2)::before {
	content: "";
	position: absolute;
	top: calc(50% - 10px);
	left: -30px;
	border-right: 40px solid transparent;
	border-bottom: 20px solid #fff;
	border-left: 40px solid transparent;
	transform: rotate(90deg);
	z-index: 1;
}

#main>ul>li:nth-child(-n+2)::after {
	content: "";
	position: absolute;
	top: calc(50% - 10px);
	right: -50px;
	border-right: 40px solid transparent;
	border-bottom: 20px solid #f2f2f2;
	border-left: 40px solid transparent;
	transform: rotate(90deg);
	z-index: 2;
}

#main>ul>li.current {
	background: #383c45;
	color: #fff;
}

#main>ul>li:nth-child(-n+2).current::after {
	border-bottom: 20px solid #383c45;
}

@media screen and (max-width: 1023px) {
	#main>ul>li {
		width: calc(33.33% - 2px);
		height: 40px;
	}

	#main>ul>li:nth-child(n+2)::before {
		content: "";
		position: absolute;
		top: calc(50% - 5px);
		left: -15px;
		border-right: 20px solid transparent;
		border-bottom: 10px solid #fff;
		border-left: 20px solid transparent;
		transform: rotate(90deg);
		z-index: 1;
	}

	#main>ul>li:nth-child(-n+2)::after {
		content: "";
		position: absolute;
		top: calc(50% - 5px);
		right: -25px;
		border-right: 20px solid transparent;
		border-bottom: 10px solid #f2f2f2;
		border-left: 20px solid transparent;
		transform: rotate(90deg);
		z-index: 2;
	}

	#main>ul>li:nth-child(-n+2).current::after {
		border-bottom: 10px solid #383c45;
	}
}

/*----------------------------------------
	box01
-----------------------------------------*/
#box01>h1 {
	margin-top: 60px;
	padding: 56px 0;
	border-top: 1px solid #373d44;
}

#box01 #pc_tab {
	display: flex;
	justify-content: space-between;
}

#box01 #pc_tab>li {
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
	position: relative;
	width: calc(50% - 5px);
	height: 160px;
	background: #f2f2f1;
	color: #373d44;
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	transition: all .1s ease-in-out .0s;
}

.pc #box01 #pc_tab>li:hover {
	background-color: #373d44;
	color: #fff;
}

#box01 #pc_tab>li.current {
	background: #373d44;
	color: #fff;
}

#box01 #pc_tab>li:not(.current) {
	cursor: pointer;
}

#box01 #pc_tab>li::before {
	content: "";
	position: absolute;
	bottom: 28px;
	left: calc(50% - 20px);
	width: 28px;
	height: 28px;
	border-left: 2px solid #a7a7a4;
	border-bottom: 2px solid #a7a7a4;
	transform: rotate(-45deg) skew(-3deg, -3deg);
	transition: all .1s ease-in-out .0s;
}

.pc #box01 #pc_tab>li:hover::before {
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

#box01 #pc_tab>li.current::before {
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

#box01 #sp_switch>li>dl>dt {
	display: none;
}

@media screen and (max-width: 1023px) {
	#box01>h1 {
		margin-top: 50px;
		padding: 46px 0 26px;
	}

	#box01 #pc_tab {
		display: none;
	}

	#box01 #sp_switch>li:nth-child(n+2) {
		margin-top: 20px;
	}

	#box01 #sp_switch>li>dl>dt {
		display: inherit;
		position: relative;
		width: 100% !important;
		padding: 26px 0 31px;
		background: #f2f2f1;
		color: #373d44;
		text-align: center;
		-ms-user-select: none;
		-moz-user-select: -moz-none;
		-khtml-user-select: none;
		-webkit-user-select: none;
		user-select: none;
	}

	#box01 #sp_switch>li.current>dl>dt {
		background: #373d44;
		color: #fff;
	}

	#box01 #sp_switch>li>dl>dt::before {
		content: "";
		position: absolute;
		bottom: 14px;
		left: calc(50% - 10px);
		width: 14px;
		height: 14px;
		border-left: 1px solid #a7a7a4;
		border-bottom: 1px solid #a7a7a4;
		transform: rotate(-45deg) skew(-3deg, -3deg);
	}

	#box01 #sp_switch>li.current>dl>dt::before {
		border-left: 1px solid #fff;
		border-bottom: 1px solid #fff;
	}
}

/*----------------------------------------
	box01_01
-----------------------------------------*/
#box01_01>ul:first-of-type {
	padding: 36px 0 56px;
}

#box01_01>ul:first-of-type>li:nth-child(n+2) {
	margin-top: 12px;
}

#box01_01>section>h1 {
	padding-bottom: 52px;
}

#box01_01>section>#photo_tab {
	display: flex;
}

#box01_01>section>#photo_tab>li {
	display: flex;
	justify-content: center;
	width: 25%;
	padding-bottom: 36px;
	border-bottom: 3px solid #f2f2f1;
	color: #ec4414;
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

#box01_01>section>#photo_tab>li:hover {
	color: #a7a7a4;
}

#box01_01>section>#photo_tab>li.current {
	border-bottom: 3px solid #373d44;
	font-size: 2.4rem;
	color: #373d44;
}

.pc #box01_01>section>#photo_tab>li:not(.current) {
	cursor: pointer;
}

@media screen and (max-width: 1023px) {
	#box01_01>ul:first-of-type {
		padding: 26px 0 42px;
	}

	#box01_01>section>h1 {
		padding-bottom: 42px;
	}

	#box01_01>section>#photo_tab>li {
		padding-bottom: 19px;
	}

	#box01_01>section>#photo_tab>li.current {
		font-size: 1.6rem;
	}
}

/*----------------------------------------
	box01_01_01
-----------------------------------------*/
#box01_01_01 {
	margin-top: 40px;
}

#box01_01_01>div {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 28px);
	margin-left: -14px;
}

#box01_01_01>div::after {
	content: '';
	display: block;
	width: 177px;
	margin: 0 14px;
}

#box01_01_01>div>div {
	position: relative;
	width: 177px;
	margin: 0 14px 30px;
}

#box01_01_01>div>div>figure {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	margin: auto;
	cursor: pointer;
	transition: opacity .1s ease-in-out .0s;
}

.pc #box01_01_01>div>div>figure:hover {
	opacity: .5;
}

#box01_01_01>div>div>figure.vertical {
	width: 118px;
	height: auto;
}

#box01_01_01>div>div>figure img {
	width: 100%;
	height: auto;
}

#box01_01_01>div>div>figure.on img {
	opacity: .3;
}

#box01_01_01>div>div>figure div.onCover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	padding-top: 0;
	box-sizing: border-box;
	border: 4px solid #fd6333;
	cursor: pointer;
}

#box01_01_01>div>div>div {
	position: relative;
}

#box01_01_01>div>div>div>dl {
	margin-top: 7px;
}

#box01_01_01>div>div>div dd {
	width: calc(100% - 40px);
}

#box01_01_01>div>div>div>span {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 30px;
	height: 30px;
	cursor: pointer;
	transition: opacity .1s ease-in-out .0s;
}

.pc #box01_01_01>div>div>div>span:hover {
	opacity: .5;
}

#box01_01_01>ul {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}

#box01_01_01>ul>li>a {
	display: flex;
	align-items: center;
	position: relative;
	color: #a7a7a4;
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	cursor: default;
}

#box01_01_01>ul>li.on>a {
	cursor: default;
	transition: opacity .1s ease-in-out .0s;
}

.pc #box01_01_01>ul>li.on>a:hover {
	opacity: .5;
}

#box01_01_01>ul>li:first-child>a::before {
	content: "";
	display: block;
	width: 70px;
	height: 70px;
	margin-right: 20px;
	background: #f2f2f1;
}

#box01_01_01>ul>li.on>a {
	cursor: pointer;
	color: #373d44;
}

#box01_01_01>ul>li:first-child.on>a::before {
	background: #373d44;
}

#box01_01_01>ul>li:first-child>a>span::before {
	content: "";
	position: absolute;
	top: calc(50% - 8px);
	left: 21px;
	width: 14px;
	height: 14px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(-45deg);
}

#box01_01_01>ul>li:first-child>a>span::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 20px;
	width: 30px;
	height: 2px;
	background: #fff;
}

#box01_01_01>ul>li:nth-child(2)>a::after {
	content: "";
	display: block;
	width: 70px;
	height: 70px;
	margin-left: 20px;
	background: #f2f2f1;
}

#box01_01_01>ul>li:nth-child(2).on>a::after {
	background: #373d44;
}

#box01_01_01>ul>li:nth-child(2)>a>span::before {
	content: "";
	position: absolute;
	top: calc(50% - 8px);
	right: 21px;
	width: 14px;
	height: 14px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

#box01_01_01>ul>li:nth-child(2)>a>span::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 20px;
	width: 30px;
	height: 2px;
	background: #fff;
}

@media screen and (max-width: 1023px) {
	#box01_01_01 {
		margin-top: 30px;
	}

	#box01_01_01>div {
		width: calc(100% + 15px);
		margin-left: -7.5px;
	}

	#box01_01_01>div::after {
		content: '';
		display: block;
		max-width: 150px;
		min-width: 120px;
		width: calc(50% - 15px);
		margin: 0 7.5px;
	}

	#box01_01_01>div>div {
		max-width: 150px;
		min-width: 120px;
		width: calc(50% - 15px);
		margin: 0 7.5px 26px;
	}

	#box01_01_01>div>div>figure {
		width: 100%;
	}

	#box01_01_01>div>div>figure.vertical {
		width: 100px;
		height: auto;
	}

	#box01_01_01>div>div>div.onCover {
		border: 2px solid #fd6333;
	}

	#box01_01_01>div>div>div>dl {
		margin-top: 11px;
	}

	#box01_01_01>ul {
		margin-top: 30px;
	}

	#box01_01_01>ul>li:first-child>a::before {
		width: 44px;
		height: 44px;
		margin-right: 7px;
	}

	#box01_01_01>ul>li:first-child>a>span::before {
		top: calc(50% - 5px);
		left: 14px;
		width: 8px;
		height: 8px;
		border-top: 1px solid #fff;
		border-left: 1px solid #fff;
	}

	#box01_01_01>ul>li:first-child>a>span::after {
		top: calc(50% - 0.5px);
		left: 14px;
		width: 15px;
		height: 1px;
	}

	#box01_01_01>ul>li:nth-child(2)>a::after {
		width: 44px;
		height: 44px;
		margin-left: 7px;
	}

	#box01_01_01>ul>li:nth-child(2)>a>span::before {
		top: calc(50% - 5px);
		right: 14px;
		width: 8px;
		height: 8px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
	}

	#box01_01_01>ul>li:nth-child(2)>a>span::after {
		top: calc(50% - 0.5px);
		right: 14px;
		width: 15px;
		height: 1px;
	}
}

/*----------------------------------------
	box01_01_02
-----------------------------------------*/
#box01_01_02 {
	margin-top: 40px;
	padding-bottom: 26px;
	background: #373d44;
}

#box01_01_02>div>div:first-child {
	display: flex;
	justify-content: space-between;
	padding: 26px 0;
}

#box01_01_02>div>div:nth-child(2) {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 28px);
	margin-left: -14px;
}

#box01_01_02>div>div:nth-child(2)::after {
	content: '';
	display: block;
	width: 177px;
	margin: 0 14px;
}

#box01_01_02>div>div:nth-child(2)>div {
	position: relative;
	width: 177px;
	margin: 0 14px;
}

#box01_01_02>div>div:nth-child(2)>div>dl {
	margin-top: 7px;
}

#box01_01_02>div>div:nth-child(2)>div>figure {
	width: 100%;
	height: auto;
	margin: auto;
}

#box01_01_02>div>div:nth-child(2)>div>figure.vertical {
	width: 118px;
	height: auto;
}

#box01_01_02>div>div:nth-child(2)>div>figure img {
	width: 100%;
	height: auto;
}

#box01_01_02>div>div:nth-child(2)>div>span {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	background-color: #fff;
	cursor: pointer;
}

#box01_01_02 figure.vertical~span {
	right: 29px !important;
}

#box01_01_02>div>div:nth-child(2)>div>span img {
	transition: opacity .1s ease-in-out .0s;
}

.pc #box01_01_02>div>div:nth-child(2)>div>span img:hover {
	opacity: .5;
}

@media screen and (max-width: 1023px) {
	#box01_01_02 {
		margin-top: 30px;
		padding-bottom: 16px;
	}

	#box01_01_02>div>div:first-child {
		padding: 16px 0;
	}

	#box01_01_02>div>div:nth-child(2) {
		width: calc(100% + 15px);
		margin-left: -7.5px;
	}

	#box01_01_02>div>div:nth-child(2)::after {
		content: '';
		display: block;
		width: 95px;
		margin: 0 7.5px;
	}

	#box01_01_02>div>div:nth-child(2)>div {
		width: 95px;
		margin-bottom: 26px;
	}

	#box01_01_02>div>div:nth-child(2)>div>figure {
		width: 95px;
		height: auto;
	}

	#box01_01_02>div>div:nth-child(2)>div>figure.vertical {
		width: 74px;
		height: auto;
	}

	#box01_01_02>div>div:nth-child(2)>div>span {
		width: 20px;
		height: 20px;
	}

	#box01_01_02 figure.vertical~span {
		right: 10px !important;
	}
}

/*----------------------------------------
	box01_02
-----------------------------------------*/
#box01_02 {
	margin-top: 56px;
}

#box01_02>div>dl:first-child>dt {
	padding-bottom: 36px;
}

#box01_02>div>dl:first-child>dd>textarea {
	width: 100%;
	height: 200px;
	padding: 10px;
	box-sizing: border-box;
	border: none;
	background: #f2f2f2;
	outline: none;
	resize: none;
}

#box01_02>div>dl:nth-child(2) {
	margin-top: 60px;
	padding-top: 56px;
	border-top: 1px solid #373d44;
}

#box01_02>div>dl:nth-child(2)>dt {
	padding-bottom: 36px;
}
#box01_02>div>dl:nth-child(2)>dd>p:first-child input {
	outline: none;
}
#box01_02>div>dl:nth-child(2)>dd>p:nth-child(2) {
	margin-top: 26px;
}

@media screen and (max-width: 1023px) {
	#box01_02 {
		margin-top: 26px;
	}

	#box01_02>div>dl:first-child>dt {
		padding-bottom: 16px;
	}

	#box01_02>div>dl:nth-child(2) {
		margin-top: 30px;
		padding-top: 26px;
	}

	#box01_02>div>dl:nth-child(2)>dt {
		padding-bottom: 16px;
	}
	#box01_02>div>dl:nth-child(2)>dd>p:nth-child(2) {
		margin-top: 16px;
	}
}

/*----------------------------------------
	box01_03
-----------------------------------------*/
#box01_03 {
	margin-top: 56px;
	padding-top: 56px;
	border-top: 1px solid #373d44;
}

#box01_03>p:nth-child(2) {
	margin-top: 32px;
}

#box01_03>p>input[type="button"] {
	margin-top: 96px;
	border: 2px solid #373d44;
	background: #fff;
	color: #373d44;
	outline: none;
	cursor: pointer;
}

#box01_03>p>input[type="button"]:hover {
	border: 2px solid #525461;
	background: #525461;
}

@media screen and (max-width: 1023px) {
	#box01_03 {
		margin-top: 46px;
		padding-top: 46px;
	}

	#box01_03>p:nth-child(2) {
		margin-top: 22px;
	}

	#box01_03>p>input[type="button"] {
		margin-top: 46px;
	}
}