@charset "UTF-8";
html {
  width: 100%;
  font-size: 100%;
}
body {
  -webkit-text-size-adjust: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 14px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
}
* {
  max-width: 100%;
  max-height: 999999px;
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 14px;
  font-family: inherit;
  font-weight: 300;
  font-style: normal;
  letter-spacing: inherit;
  line-height: inherit;
  outline: none;
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}
* * {
  color: inherit;
  font-size: inherit;
}
a {
  color: #333;
  outline: none;
  text-decoration: none;
}
a:active, a:hover {
  text-decoration: underline;
}
a * {
  color: inherit;
}
input {
  border: none;
  vertical-align: bottom;
}
input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
}
input[type="checkbox"], input[type="radio"] {
  margin-right: 5px;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[disabled] {
  cursor: default;
}
button {
  border: none;
  cursor: pointer;
  vertical-align: bottom;
  -webkit-appearance: button;
  background-color: transparent;
}
button[disabled] {
  cursor: default;
}
select, textarea {
  vertical-align: bottom;
}
@media (min-width: 769px) {
  a:hover img, input[type="submit"]:hover, input[type="reset"]:hover, button:hover {
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    opacity: 0.6;
  }
}
b, strong {
  font-weight: 700;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}
img[src*=".svg"], img[src*=".svgz"] {
  width: 100%;
}
ul, ol {
  list-style-type: none;
  list-style-image: none;
  list-style-position: outside;
}
ul li, ol li {
  list-style: none;
}
audio, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary, progress, video {
  display: block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden], template {
  display: none;
}
svg {
  width: auto;
  height: auto;
  vertical-align: bottom;
}
svg:not(:root) {
  overflow: hidden;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
}
table {
  table-layout: fixed;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
table th, table td {
  text-align: left;
  font-weight: normal;
  vertical-align: top;
}
hr {
  display: block;
  width: 0;
  height: 0;
  border: 0;
}
.load a, .load img, .load input, .load svg, .load *:before, .load *:after {
  transition: opacity 0.7s;
}
.entry:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  clear: both;
}
.entry > * {
  margin-top: 1.5em;
}
.entry > *:first-child {
  margin-top: 0;
}
.entry ul, .entry ol {
  margin-top: 0.7em;
}
.entry .alignleft, .entry .alignright, .entry .aligncenter {
  margin-bottom: 5px;
}
.entry .alignleft {
  float: left;
  display: inline;
  margin-right: 10px;
  margin-top: 4px;
}
.entry .alignright {
  float: right;
  display: inline;
  margin-left: 10px;
  margin-top: 4px;
}
.entry .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 896px) {
  body {
    min-width: inherit;
  }
  a {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
  }
  .pc {
    display: none !important;
  }
}
/*
//margin(px)
$i : 0;
$j : 0;
@while ($i < 4) {
	//marginのクラス名
	$marginClass : "T";
	$direction   : "top";
	@if ($i == 1) {
		$marginClass : "B";
		$direction   : "bottom";
	} @else if ($i == 2) {
		$marginClass : "L";
		$direction   : "left";
	} @else if ($i == 3) {
		$marginClass : "R";
		$direction   : "right";
	}

	//各向きのmarginを作成
	@while ($j <= 100) {
		@if ($j == 0) {
			.ma#{$marginClass}#{$j} {
				margin-#{$direction}: 0 !important;
			}
		} @else {
			.ma#{$marginClass}#{$j} {
				margin-#{$direction}: $j + px;
			}
		}
		$j : $j + 5;
	}

	$i : $i + 1;
	$j : 0;
}


//margin(em)
$i : 0;
$j : 0;
@while ($i < 4) {
	//marginのクラス名
	$marginClass : "T";
	$direction   : "top";
	@if ($i == 1) {
		$marginClass : "B";
		$direction   : "bottom";
	} @else if ($i == 2) {
		$marginClass : "L";
		$direction   : "left";
	} @else if ($i == 3) {
		$marginClass : "R";
		$direction   : "right";
	}

	//各向きのmarginを作成
	@while ($j <= 10) {
		.ma#{$marginClass}#{$j}em {
			margin-#{$direction}: $j + em;
		}
		$j : $j + 1;
	}

	$i : $i + 1;
	$j : 0;
}


//padding(px)
$i : 0;
$j : 0;
@while ($i < 4) {
	//padding
	$paddingClass : "T";
	$direction    : "top";
	@if ($i == 1) {
		$paddingClass : "B";
		$direction    : "bottom";
	} @else if ($i == 2) {
		$paddingClass : "L";
		$direction    : "left";
	} @else if ($i == 3) {
		$paddingClass : "R";
		$direction    : "right";
	}

	//各向きのpaddingを作成
	@while ($j <= 100) {
		@if ($j == 0) {
			.pa#{$paddingClass}#{$j} {
				padding-#{$direction}: 0 !important;
			}
		} @else {
			.pa#{$paddingClass}#{$j} {
				padding-#{$direction}: $j + px;
			}
		}
		$j : $j + 5;
	}

	$i : $i + 1;
	$j : 0;
}


//padding(em)
$i : 0;
$j : 0;
@while ($i < 4) {
	//padding
	$paddingClass : "T";
	$direction    : "top";
	@if ($i == 1) {
		$paddingClass : "B";
		$direction    : "bottom";
	} @else if ($i == 2) {
		$paddingClass : "L";
		$direction    : "left";
	} @else if ($i == 3) {
		$paddingClass : "R";
		$direction    : "right";
	}

	//各向きのpaddingを作成
	@while ($j <= 10) {
		.pa#{$paddingClass}#{$j}em {
			padding-#{$direction}: $j + em;
		}
		$j : $j + 1;
	}

	$i : $i + 1;
	$j : 0;
}
*/
.bold {
  font-weight: bold;
}
.all {
  text-align: left;
}
.alr {
  text-align: right;
}
.alc {
  text-align: center;
}
.clearFix {
  display: block;
}
.clearFix:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  clear: both;
}
.innerL {
  width: 1230px;
}
.innerM {
  width: 1120px;
}
.innerS {
  width: 830px;
}
[class^="inner"] {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
[class^="inner"] [class^="inner"] {
  padding-left: 0;
  padding-right: 0;
}
.flex {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}
.js-fadein {
  position: relative;
  top: 50px;
  opacity: 0;
}
.js-fadein.in {
  top: 0;
  opacity: 1;
  transition: top 0.8s, left 0.8s, right 0.8s, opacity 0.8s;
}
.js-fadein.left-in {
  top: 0;
  left: -100px;
}
.js-fadein.left-in.in {
  left: 0;
}
.js-fadein.right-in {
  top: 0;
  right: -100px;
}
.js-fadein.right-in.in {
  right: 0;
}
#wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: #f7f7f7;
}
#wrapper.bgWhite {
  background-color: #fff;
}
#wrapper #content {
  margin-top: 20px;
}
header {
  position: relative;
  padding: 20px 0;
  min-height: 60px;
  background: linear-gradient(-180deg, #F53C2C, #FF6C3F);
  /*
	nav {
		margin-left: auto;
		@include mq(1350) {
			position: fixed;
			z-index: 1000;
			left: 50%;
			top: 0;
			@include flex;
			align-items: center;
			display: block;
			width: 100%;
			height: 100%;
			margin: 0;
			padding: 0;
			transition: all .6s;
			overflow-y: auto;
			-webkit-overflow-scrolling: touch;
			visibility: hidden;
			opacity: 0;
			transform: translateX(-50%);
			&.open {
				visibility: visible;
				opacity: 1;
				& + h1 img {
					@include whiteFilter;
				}
			}
		}
		& > ul {
			@include flex;
			@include mq(1350) {
				position: relative;
				display: block;
				width: 400px;
				margin: 0 auto;
				padding: 100px 15px;
			}
			& > li {
				position: relative;
				color: #333;
				@include mq(1350) {
					color: #fff;
					font-size: 30px;
				}
				@include mq {
					font-size: 18px;
				}
				& + li {
					position: relative;
					margin-left: 35px;
					font-size: 15px;
					@include mq(1350) {
						margin: 50px 0 0 !important;
						font-size: 30px;
					}
					@include mq {
						margin: 20px 0 0 !important;
						font-size: 18px;
					}
					&:before {
						content: "/";
						position: absolute;
						left: -35px;
						top: 0;
						display: block;
						width: 35px;
						text-align: center;
						@include mq(1350) {
							display: none;
						}
					}
				}
				&:last-child {
					margin-left: 30px;
					&:before {
						display: none;
					}
				}
				a {
					position: relative;
					color: #333;
					@include mq(1350) {
						color: #fff;
					}
					&:before{
						content: '';
						position: absolute;
						bottom: -5px;
						left: 0;
						width: 100%;
						height: 1px;
						background-color: #333;
						transform-origin: 100% 0;
						transform: scaleX(0);
						transition: transform 0.3s cubic-bezier(0.13, 0.78, 0.38, 0.98);
						opacity: 0.3;
						@include mq(1350) {
							display: none;
						}
					}
					&:hover,
					&.current{
						text-decoration: none;
						&:before{
							transform-origin: 0 0;
							transform: scaleX(1);
						}
					}
					img {
						width: 22px;
						@include mq(1350) {
							width: 28px;
							@include whiteFilter;
						}
					}
				}
				&:hover > div {
					padding-top: 30px;
					visibility: visible;
					opacity: 1;
				}
				& > div {
					position: absolute;
					left: 50%;
					top: 80%;
					width: auto;
					max-width: none;
					padding-top: 20px;
					transform: translateX(-50%);
					visibility: hidden;
					opacity: 0;
					transition: all .6s;
					@include mq(1000) {
						position: static;
						display: none;
						padding-top: 0;
						visibility: visible;
						opacity: 1;
						transform: translateX(0);
					}
					* {
						width: auto;
						max-width: none;	
					}
					ul {
						@include mq(1000, false) {
							position: relative;
							padding: 15px 15px;
							background-color: #fff;
							box-shadow: 0px 0px 12px rgba(34, 34, 34, 0.12);
							& > li {
								a {
									//@include flex;
									//flex-wrap: nowrap;
									//align-items: center;
									display: block;
									padding:  10px;
									font-size: 15px;
									font-weight: bold;
									line-height: 1;
									white-space: nowrap;
								}
							}
						}
						@include mq(1000) {
							padding: 0 10px 10px;
							& > li {
								font-size: 14px;
								a {
									display: block;
									padding: 10px;
									&:before {
										content: "- ";
									}
								}
							}
						}
					}
				}
			}
		}
	}
	#spMenu {
		display: none;
		@include mq(1350) {
			position: relative;
			z-index: 2000;
			display: block;
			width: 50px;
			height: 50px;
			margin-left: auto;
			padding-top: 14px;
			background-color: #333;
			overflow: hidden;
			&:hover {
				text-decoration: none;
			}
			span {
				position: relative;
				left: 0;
				display: block;
				width: 24px;
				height: 2px;
				margin: 0 auto;
				background-color: #fff;
				transition: .6s all;
				& + span {
					margin-top: 8px;
				}
				&.top {
					transform-origin: left top;
				}
				&.bottom {
					transform-origin: left bottom;
				}
			}
			&.open {
				span {
					&.top {
						left: 4px;
						top: 1.5px;
						transform: rotate(45deg);
					}
					&.middle {
						opacity: 0;
					}
					&.bottom {
						left: 4px;
						top: -1.5px;
						transform: rotate(-45deg);
					}
				}
			}
		}
	}
	*/
}
header #headerInner {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
header #headerInner a {
  color: #fff;
}
@media screen and (max-width: 896px) {
  header #headerInner #home i {
    display: none;
  }
}
header #headerInner #home img {
  display: none;
}
@media screen and (max-width: 896px) {
  header #headerInner #home img {
    display: block;
    width: 22px;
    height: 22px;
  }
}
header #headerInner ul {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}
header #headerInner ul li {
  border-right: #fff 1px solid;
}
header #headerInner ul li:last-child {
  border-right: none;
}
header #headerInner ul li a {
  display: block;
  padding: 0 10px;
}
@media screen and (max-width: 896px) {
  header #headerInner ul {
    display: none;
  }
}
header #headerInner #logo {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 897px) {
  header #headerInner #logo {
    width: 280px;
  }
}
@media screen and (max-width: 896px) {
  header #headerInner #logo {
    width: 250px;
  }
}
header #headerInner #logo a {
  display: block;
}
@media screen and (max-width: 896px) {
  header #headerInner #logo a img {
    width: auto;
    height: 20px;
  }
}
#gNavi {
  display: none;
}
footer {
  margin-top: 150px;
  padding: 50px 0;
  border-top: #F53C2C 5px solid;
  background-color: #fff;
}
@media screen and (max-width: 896px) {
  footer {
    margin-top: 120px;
    padding: 30px 0;
    border-top-width: 3px;
  }
}
footer #sitemap {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 896px) {
  footer #sitemap {
    display: none;
  }
}
footer #sitemap li {
  font-size: 12px;
  margin-right: 20px;
}
footer #sitemap li:last-child {
  margin-right: 0;
}
footer .flex {
  margin-top: 20px;
  font-size: 10px;
}
@media (min-width: 769px) {
  footer .flex > div {
    margin-left: 15px;
  }
}
@media screen and (max-width: 896px) {
  footer .flex > div {
    width: 100%;
    margin-top: 10px;
    text-align: right;
  }
}
footer .flex > div a {
  text-decoration: underline;
}
footer .flex > div a:hover {
  text-decoration: none;
}
main .col2 {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main .col2 > * {
  width: 48%;
}
@media screen and (max-width: 896px) {
  main .col2 > * {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 769px) {
  main .col2 > *:nth-child(n+3) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 896px) {
  main .col2 > *:nth-child(n+2) {
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  main .col3 {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
  }
  main .col3 > * {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }
  main .col3 > *:nth-child(3n) {
    margin-right: 0;
  }
  main .col3 > *:nth-child(n+4) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 896px) {
  main .sp_col2 {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
  }
  main .sp_col2 > * {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
  }
  main .sp_col2 > *:nth-child(2n) {
    margin-right: 0;
  }
  main .sp_col2 > *:nth-child(n+3) {
    margin-top: 15px;
  }
}
main .maT20 {
  margin-top: 20px;
}
main .pager {
  margin-top: 30px;
}
main .pager .page-numbers {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
main .pager .page-numbers > * {
  margin: 0 10px;
}
main .pager .page-numbers > * > * {
  position: relative;
  display: block;
  padding: 10px;
  font-size: 14px;
  line-height: 1;
}
main .pager .page-numbers > * > *:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: #F53C2C;
  transition: all 0.5s;
}
main .pager .page-numbers > * > *.current, main .pager .page-numbers > * > *:hover {
  text-decoration: none;
}
main .pager .page-numbers > * > *.current:after, main .pager .page-numbers > * > *:hover:after {
  width: 100%;
}
main .ttl01 {
  color: #FB5533;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  main .ttl01 {
    font-size: 16px;
  }
}
main .btn {
  margin-top: 40px;
}
main .btn a {
  display: block;
  padding: 15px;
  color: #fff;
  background-color: #FF333F;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: #FF333F 1px solid;
  border-radius: 5px;
}
@media screen and (max-width: 896px) {
  main .btn a {
    font-size: 16px;
  }
}
main .btn a:hover {
  background-color: #fff;
  color: #FF333F;
  text-decoration: none;
}
main .ttlWrap, main .cntWrap {
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 896px) {
  main .ttlWrap, main .cntWrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
main .ttlWrap {
  padding-bottom: 15px;
  border-bottom: #e1e1e1 1px solid;
}
main .pagettl {
  margin-bottom: 30px;
  padding: 30px;
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  text-align: center;
}
@media screen and (max-width: 896px) {
  main .pagettl {
    margin-bottom: 15px;
    padding: 15px 10px;
  }
}
main .dots li {
  padding-left: 1em;
  text-indent: -1em;
}
main .dots li:before {
  content: "・";
}
main .dots li:nth-child(n+2) {
  margin-top: 5px;
}
main .pdfBtn a {
  position: relative;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  color: #fff;
  background-color: #FF333F;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: #FF333F 1px solid;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 896px) {
  main .pdfBtn a {
    font-size: 16px;
  }
}
main .pdfBtn a:after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 25px;
  height: 30px;
  background: url(/assets/images/page/pdf01.png) center center no-repeat;
  background-size: cover;
}
main .pdfBtn a:hover {
  background-color: #fff;
  color: #FF333F;
  text-decoration: none;
}
main .pdfBtn a:hover:after {
  background-image: url(/assets/images/page/pdf02.png);
}
main .excelBtn a {
  position: relative;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  color: #fff;
  background-color: #0D6E38;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: #0D6E38 1px solid;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 896px) {
  main .excelBtn a {
    font-size: 15px;
  }
}
main .excelBtn a:before, main .excelBtn a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border: transparent 10px solid;
  border-left-color: #fff;
  transform: translateY(-50%);
}
main .excelBtn a:before {
  left: 20px;
}
@media screen and (max-width: 896px) {
  main .excelBtn a:before {
    left: 15px;
  }
}
main .excelBtn a:after {
  left: 30px;
}
@media screen and (max-width: 896px) {
  main .excelBtn a:after {
    left: 25px;
  }
}
main .excelBtn a:hover {
  background-color: #fff;
  color: #0D6E38;
  text-decoration: none;
}
main .excelBtn a:hover:before, main .excelBtn a:hover:after {
  border-left-color: #0D6E38;
}
main .excelBtn a:hover i {
  color: #fff;
  background-color: #0D6E38;
  background-image: url(/assets/images/common/auc_icon02.svg);
}
main .excelBtn a i {
  position: absolute;
  top: 50%;
  right: 15px;
  padding: 5px 8px 5px 30px;
  line-height: 1;
  font-size: 14px;
  color: #0D6E38;
  background-color: #fff;
  border-radius: 3px;
  font-weight: bold;
  transform: translateY(-50%);
  background: url(/assets/images/common/auc_icon01.svg) #fff 5px center no-repeat;
  background-size: 22px 20px;
}
@media screen and (max-width: 896px) {
  main .excelBtn a i {
    right: 12px;
    padding: 5px 15px;
    text-indent: -9999px;
  }
}
main #makerList {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  /*
		padding-left: 30px;
		padding-right: 30px;
		@include mq {
			padding-left: 15px;
			padding-right: 15px;
		}
		*/
}
main #makerList li {
  width: 15.78%;
  margin-right: 1.05%;
  text-align: center;
}
@media screen and (max-width: 896px) {
  main #makerList li {
    width: calc(calc(100% - 30px) / 4);
    margin-right: 10px;
  }
}
@media (min-width: 897px) {
  main #makerList li:nth-child(n+7) {
    margin-top: 12px;
  }
}
@media screen and (max-width: 896px) {
  main #makerList li:nth-child(n+5) {
    margin-top: 10px;
  }
}
@media (min-width: 897px) {
  main #makerList li:nth-child(6n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 896px) {
  main #makerList li:nth-child(4n) {
    margin-right: 0;
  }
}
main #makerList li a {
  display: block;
  padding: 15px 10px;
  color: #FB5533;
  font-size: 15px;
  font-weight: bold;
  border: #FB5533 1px solid;
  border-radius: 3px;
  background-color: #fff;
}
main #makerList li a:hover {
  background-color: #FB5533;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 896px) {
  main #makerList li a {
    font-size: 10px;
    padding: 10px 5px;
  }
}
@media screen and (max-width: 896px) {
  main #top .innerL {
    padding-left: 0;
    padding-right: 0;
  }
}
main #top .innerL > section {
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #fff;
  border-radius: 3px;
}
main #top #slider {
  position: relative;
  width: 100%;
}
main #top #slider figure, main #top #slider article {
  width: 100%;
  text-align: center;
}
main #top #slider figure img, main #top #slider article img {
  width: 100%;
}
main #top #slider > figure:nth-child(n+2), main #top #slider > article:nth-child(n+2) {
  display: none;
}
main #top #slider > figure img, main #top #slider > article img {
  width: 100%;
  max-width: none;
}
main #top #slider .pht {
  float: left;
  width: 100%;
  text-align: center;
}
main #top #slider .pht img {
  width: 100%;
  max-width: none;
}
main #top #slider > .pht:nth-child(n+2) {
  display: none;
}
main #top #slider .slick-list {
  overflow: hidden;
}
main #top #slider .slick-track {
  max-width: none;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}
main #top #slider .slick-dots {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  text-align: center;
}
main #top #slider .slick-dots li button {
  display: block;
  width: 5px;
  height: 5px;
  margin: 0 5px;
  padding: 0;
  border: none;
  border-radius: 50%;
  text-indent: -9999px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.5s;
}
main #top #slider .slick-dots li button:hover {
  background-color: #000;
}
main #top #slider .slick-dots li.slick-active button {
  background-color: #000;
}
main #top #slider .slick-arrow {
  position: absolute;
  z-index: 100;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  text-indent: -9999px;
  transform: translateY(-50%);
}
main #top #slider .slick-arrow.slick-prev {
  left: 10px;
}
main #top #slider .slick-arrow.slick-next {
  right: 10px;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 896px) {
  main #top #bn {
    padding-left: 10px;
    padding-right: 10px;
  }
}
main #top #bn #bnWrap {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main #top #bn #bnWrap #slider {
  width: 100%;
}
@media screen and (max-width: 896px) {
  main #top #bn #bnWrap #slider {
    width: 100%;
  }
}
main #top #bn #bnWrap #banners {
  width: 32.5%;
}
@media screen and (max-width: 896px) {
  main #top #bn #bnWrap #banners {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 15px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 896px) {
  main #top #bn #bnWrap #banners li {
    width: 48%;
  }
}
main #top #bn #bnWrap #banners li:nth-child(n+2) {
  margin-top: 10px;
}
@media screen and (max-width: 896px) {
  main #top #bn #bnWrap #banners li:nth-child(n+2) {
    margin-top: 0;
  }
}
main #top #maker {
  padding-bottom: 20px;
}
main #top #maker #makerList {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 896px) {
  main #top #maker #makerList {
    padding-left: 15px;
    padding-right: 15px;
  }
}
main #top #maker #makerList li {
  width: 15.78%;
  margin-right: 1.05%;
  text-align: center;
}
@media screen and (max-width: 896px) {
  main #top #maker #makerList li {
    width: calc(calc(100% - 30px) / 4);
    margin-right: 10px;
  }
}
@media screen and (max-width: 896px) {
  main #top #maker #makerList li:nth-child(n+5) {
    margin-top: 10px;
  }
}
@media (min-width: 897px) {
  main #top #maker #makerList li:nth-child(7n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 896px) {
  main #top #maker #makerList li:nth-child(4n) {
    margin-right: 0;
  }
}
main #top #maker #makerList li a {
  display: block;
}
main #top #maker #makerList li a figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 60%;
}
main #top #maker #makerList li a figure img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  max-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
main #top #maker #makerList li a p {
  margin-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 12px;
  font-weight: bold;
  border-right: #ccc 1px solid;
}
@media screen and (max-width: 896px) {
  main #top #maker #makerList li a p {
    font-size: 10px;
  }
}
main #top #maker #makerList li p {
  padding: 15px;
  color: #FB5533;
  font-size: 16px;
  font-weight: bold;
  border: #FB5533 1px solid;
  border-radius: 3px;
}
@media screen and (max-width: 896px) {
  main #top #maker #makerList li p {
    font-size: 10px;
    padding: 10px 5px;
  }
}
main #top #maker #makerList li:last-child a p {
  border-right: none;
}
main #top #category .cntWrap {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 896px) {
  main #top #category .cntWrap {
    padding-left: 5px;
    padding-right: 5px;
  }
}
main #top #category #categoryList {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
main #top #category #categoryList li {
  width: 33.3333333333%;
  padding-left: 10px;
  padding-right: 10px;
  border-right: #e1e1e1 1px solid;
  text-align: center;
}
@media screen and (max-width: 896px) {
  main #top #category #categoryList li {
    width: 48%;
  }
}
@media (min-width: 897px) {
  main #top #category #categoryList li:nth-child(3n) {
    border-right: none;
  }
}
@media screen and (max-width: 896px) {
  main #top #category #categoryList li:nth-child(2n) {
    border-right: none;
  }
}
@media (min-width: 897px) {
  main #top #category #categoryList li:nth-child(n+4) {
    margin-top: 50px;
  }
}
@media screen and (max-width: 896px) {
  main #top #category #categoryList li:nth-child(n+3) {
    margin-top: 25px;
  }
}
main #top #category #categoryList li p {
  margin-top: 10px;
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  main #top #category #categoryList li p {
    font-size: 12px;
  }
}
main #top #new .ttlWrap .moreBtn {
  position: absolute;
  top: 5px;
  right: 30px;
}
@media screen and (max-width: 896px) {
  main #top #new .ttlWrap .moreBtn {
    right: 15px;
    font-size: 11px;
  }
}
main #top #new .ttlWrap .moreBtn a {
  display: block;
  padding-right: 15px;
  color: #FB5533;
}
main #top #new .ttlWrap .moreBtn a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  width: 10px;
  height: 10px;
  border-top: #FB5533 1px solid;
  border-right: #FB5533 1px solid;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
main #top #new .archive {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
main #top #new .archive article {
  width: 18.42%;
  margin-right: 1.92%;
}
@media screen and (max-width: 896px) {
  main #top #new .archive article {
    width: 32%;
    font-size: 11px;
  }
}
@media (min-width: 897px) {
  main #top #new .archive article:nth-child(5n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 896px) {
  main #top #new .archive article:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 897px) {
  main #top #new .archive article:nth-child(n+6) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 896px) {
  main #top #new .archive article:nth-child(n+4) {
    margin-top: 20px;
  }
}
main #top #new .archive article h1 {
  margin-top: 10px;
  font-weight: bold;
}
main #item #archive #hh {
  margin-bottom: 40px;
}
@media screen and (max-width: 896px) {
  main #item #archive #hh {
    margin-bottom: 20px;
  }
}
main #item #archive .flex {
  margin-top: 20px;
  margin-bottom: 40px;
  justify-content: space-between;
}
main #item #archive .flex #main {
  width: 100%;
}
@media screen and (max-width: 896px) {
  main #item #archive .flex #main {
    width: 100%;
  }
}
main #item #archive .flex #main #filter {
  display: none;
  padding: 20px;
  background-color: #ECECEC;
}
main #item #archive .flex #main #makerList {
  margin-top: 30px;
}
main #item #archive .flex #main .catTtl {
  margin-bottom: 30px;
  padding: 30px;
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  main #item #archive .flex #main .catTtl {
    margin-bottom: 15px;
    padding: 15px 10px;
    font-size: 12px;
  }
}
main #item #archive .flex #main .catTtl em {
  color: #FB5533;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  main #item #archive .flex #main .catTtl em {
    font-size: 18px;
  }
}
@media (min-width: 897px) {
  main #item #archive .flex #side {
    width: 200px;
    order: 1;
  }
}
@media screen and (max-width: 896px) {
  main #item #archive .flex #side {
    width: 100%;
    margin-top: 50px;
  }
}
main #item #archive .flex #side aside:nth-child(n+2) {
  margin-top: 40px;
}
main #item #archive .flex #side aside h1 {
  margin-bottom: 5px;
  padding-bottom: 5px;
  font-size: 15px;
  font-weight: bold;
  border-bottom: #E1E1E1 1px solid;
}
main #item #archive .flex #side aside ul li {
  margin-top: 15px;
}
main #item #archive .flex #side aside ul li a {
  position: relative;
  display: block;
  padding-left: 10px;
}
main #item #archive .flex #side aside ul li a:before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: 6px;
  left: 0;
  border: transparent 4px solid;
  border-left: transparent 4px solid;
}
main #item #archive .flex #side aside ul li a:hover, main #item #archive .flex #side aside ul li a.current {
  color: #EE4D2D;
}
main #item #archive .flex #side aside ul li a:hover:before, main #item #archive .flex #side aside ul li a.current:before {
  border-left: #EE4D2D 4px solid;
}
main #item #archive #explanation {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  background-color: #ECECEC;
  align-items: center;
  margin-top: 30px;
}
main #item #archive #explanation .both {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  width: 240px;
}
@media screen and (max-width: 896px) {
  main #item #archive #explanation .both {
    width: 140px;
    padding: 10px;
  }
}
main #item #archive #explanation .both > div {
  padding: 15px;
  text-align: center;
  font-weight: bold;
}
main #item #archive #explanation .both .pcNo {
  width: 60px;
  border-right: #e1e1e1 1px solid;
  border-bottom: #e1e1e1 1px solid;
}
@media screen and (max-width: 896px) {
  main #item #archive #explanation .both .pcNo {
    display: none;
  }
}
main #item #archive #explanation .both .photoTtl {
  width: 170px;
}
@media (min-width: 897px) {
  main #item #archive #explanation .pc {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 240px);
    border-top: #e1e1e1 1px solid;
    border-left: #e1e1e1 1px solid;
  }
}
@media (min-width: 897px) and (min-width: 897px) {
  main #item #archive #explanation .pc > div {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    width: 20%;
    padding: 15px;
    border-right: #e1e1e1 1px solid;
    border-bottom: #e1e1e1 1px solid;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
}
@media screen and (max-width: 896px) {
  main #item #archive #explanation .sp {
    padding: 10px;
    width: calc(100% - 140px);
    text-align: center;
    font-weight: bold;
    border-left: #e1e1e1 1px solid;
  }
}
@media screen and (max-width: 896px) {
  main #item #archive #itemList article {
    border-top: #e1e1e1 1px solid;
    border-bottom: #e1e1e1 1px solid;
  }
}
main #item #archive #itemList article a {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
}
main #item #archive #itemList article a:hover {
  color: #FB5533;
  text-decoration: none;
}
main #item #archive #itemList article .no {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 60px;
  border-right: #e1e1e1 1px solid;
  border-bottom: #e1e1e1 1px solid;
}
@media screen and (max-width: 896px) {
  main #item #archive #itemList article .no {
    display: none;
  }
}
main #item #archive #itemList article figure {
  width: 180px;
  border-right: #e1e1e1 1px solid;
  border-bottom: #e1e1e1 1px solid;
}
@media screen and (max-width: 896px) {
  main #item #archive #itemList article figure {
    width: 140px;
  }
}
@media (min-width: 897px) {
  main #item #archive #itemList article .textWrap {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 240px);
    border-top: #e1e1e1 1px solid;
    border-left: #e1e1e1 1px solid;
  }
}
@media screen and (max-width: 896px) {
  main #item #archive #itemList article .textWrap {
    padding: 15px;
    width: calc(100% - 140px);
  }
}
@media (min-width: 897px) {
  main #item #archive #itemList article .textWrap > div {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    width: 20%;
    padding: 15px;
    border-right: #e1e1e1 1px solid;
    border-bottom: #e1e1e1 1px solid;
    align-items: center;
    justify-content: center;
  }
}
main #item #archive #itemList article .textWrap > div:first-child, main #item #archive #itemList article .textWrap > div:last-child {
  justify-content: flex-start;
}
@media screen and (max-width: 896px) {
  main #item #archive #itemList article .textWrap > div {
    font-size: 12px;
    letter-spacing: 0;
  }
  main #item #archive #itemList article .textWrap > div:nth-child(n+2) {
    margin-top: 5px;
  }
}
main #item #archive #itemList article .textWrap > div em {
  font-weight: bold;
}
@media (min-width: 897px) {
  main #item #archive #itemList article .textWrap > div em {
    display: none;
  }
}
main #item #single {
  padding-top: 50px;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 896px) {
  main #item #single {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
main #item #single #imgWrap {
  width: 65%;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 896px) {
  main #item #single #imgWrap {
    width: 100%;
  }
}
main #item #single #imgWrap #slide {
  width: 100%;
  background-color: #F4F4F4;
  overflow: hidden;
}
@media (min-width: 897px) {
  main #item #single #imgWrap #slide {
    width: calc(100% - 50px);
    order: 2;
  }
}
main #item #single #imgWrap #slide .slick-list {
  position: relative;
  height: 0;
  padding-top: 100%;
  background-color: #F4F4F4;
  border-radius: 5px;
}
main #item #single #imgWrap #slide .slick-list .slick-track {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  align-items: center;
}
main #item #single #imgWrap #slide article {
  height: 100%;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
main #item #single #imgWrap #slide article img {
  width: auto;
  max-height: 100%;
  object-fit: cover;
}
main #item #single #imgWrap #slide article video {
  width: 100%;
}
main #item #single #imgWrap #thumbnail {
  overflow: hidden;
}
@media (min-width: 897px) {
  main #item #single #imgWrap #thumbnail {
    width: 80px;
    order: 1;
  }
}
@media screen and (max-width: 896px) {
  main #item #single #imgWrap #thumbnail {
    display: none;
  }
}
main #item #single #imgWrap #thumbnail li {
  position: relative;
  background-color: #F4F4F4;
  border-radius: 5px;
  overflow: hidden;
  border: transparent 2px solid;
  cursor: pointer;
}
main #item #single #imgWrap #thumbnail li:nth-child(n+2) {
  margin-top: 10px;
}
main #item #single #imgWrap #thumbnail li.current {
  border-color: #FB5533;
}
main #item #single #imgWrap #thumbnail li#tmb:before, main #item #single #imgWrap #thumbnail li#tmb:after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
main #item #single #imgWrap #thumbnail li#tmb:before {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(51, 51, 51, 0.6);
}
main #item #single #imgWrap #thumbnail li#tmb:after {
  width: 0;
  height: 0;
  border: transparent 7px solid;
  border-left: #fff 14px solid;
  left: 10%;
}
main #item #single #imgWrap #thumbnail .slick_thumb .slick-track {
  transform: unset !important;
}
@media (min-width: 897px) {
  main #item #single #imgWrap .slick-dots {
    display: none !important;
  }
}
main #item #single #textWrap {
  width: 35%;
  padding: 30px 25px;
  border: #ddd 1px solid;
  border-radius: 10px;
}
@media screen and (max-width: 896px) {
  main #item #single #textWrap {
    width: calc(100% - 30px);
    margin-top: 20px;
    padding: 20px 15px;
    margin-left: 15px;
    margin-right: 15px;
  }
}
main #item #single #textWrap h1 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  main #item #single #textWrap h1 {
    font-size: 20px;
  }
}
main #item #single #textWrap h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: #ccc 1px solid;
}
@media screen and (max-width: 896px) {
  main #item #single #textWrap h2 {
    font-size: 16px;
  }
}
main #item #single #textWrap dl {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}
main #item #single #textWrap dl:nth-child(n+2) {
  margin-top: 15px;
}
main #item #single #textWrap dl dt {
  width: 100px;
  text-align: right;
  font-weight: bold;
}
main #item #single #textWrap dl dt:after {
  content: "：";
}
main #item #single #textWrap dl dd {
  width: calc(100% - 100px);
  padding-left: 5px;
}
main #item #single #textWrap .excelBtn {
  margin-top: 40px;
}
main #item #single #textWrap .pdfBtn {
  margin-top: 20px;
}
main #item #single #lboxWrap {
  margin-top: 60px;
}
@media screen and (max-width: 896px) {
  main #item #single #lboxWrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 897px) {
  main #item #single #lboxWrap > ul {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
  }
  main #item #single #lboxWrap > ul > * {
    width: calc((100% - (40px * (3 - 1))) / 3);
    margin-right: 40px !important;
  }
  main #item #single #lboxWrap > ul > *:nth-child(3n) {
    margin-right: 0 !important;
  }
  main #item #single #lboxWrap > ul > *:nth-child(n + 4) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 896px) {
  main #item #single #lboxWrap > ul {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
  }
  main #item #single #lboxWrap > ul > * {
    width: calc((100% - (10px * (2 - 1))) / 2);
    margin-right: 10px !important;
  }
  main #item #single #lboxWrap > ul > *:nth-child(2n) {
    margin-right: 0 !important;
  }
  main #item #single #lboxWrap > ul > *:nth-child(n + 3) {
    margin-top: 10px;
  }
}
main #item #single #lboxWrap > ul > li a {
  position: relative;
  display: block;
  transition: all 0.5s;
}
main #item #single #lboxWrap > ul > li a:after {
  content: "CLICK";
  position: absolute;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: auto;
  text-align: center;
  color: #fff;
  font-size: 20px;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
}
main #item #single #lboxWrap > ul > li a:hover:after {
  opacity: 1;
}
@media screen and (max-width: 896px) {
  main #item #single #lboxWrap > ul > li a:hover:after {
    font-size: 14px;
  }
}
main #item #single #lboxWrap > ul > li a:hover img {
  opacity: 1;
}
main #policy #policyList > li {
  padding-top: 30px;
}
main #policy #policyList > li strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  main #policy #policyList > li strong {
    font-size: 16px;
  }
}
main #policy .dots {
  margin-top: 10px;
}
main #contact .form {
  width: 700px;
  margin: 0 auto;
}
main #contact .form .announce {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  padding: 25px 30px;
  background-color: #F0F0F0;
}
@media screen and (max-width: 896px) {
  main #contact .form .announce {
    padding: 15px 20px;
  }
}
main #contact .form .announce > * {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 896px) {
  main #contact .form .announce > * {
    font-size: 14px;
  }
}
main #contact .form .announce > p {
  margin-right: auto;
}
main #contact .form .announce > a {
  margin-left: auto;
  text-decoration: underline;
}
main #contact .form .announce > a:hover {
  text-decoration: none;
}
main #contact .form dl {
  margin-top: 40px;
  border-top: 1px #E1E1E1 solid;
  padding-top: 50px;
}
main #contact .form dl dt {
  display: block;
  padding-bottom: 5px;
  font-weight: bold;
}
main #contact .form dl dt:not(:first-child) {
  margin-top: 30px;
}
main #contact .form dl dt.req:after {
  content: "*";
  color: #E73C16;
}
main #contact .form dl dd input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font-size: 20px;
  border: 1px #C1C1C1 solid;
}
@media screen and (max-width: 896px) {
  main #contact .form dl dd input {
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
  }
}
main #contact .form dl dd .mwform-tel-field {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 20px;
}
@media screen and (max-width: 896px) {
  main #contact .form dl dd .mwform-tel-field {
    font-size: 14px;
  }
}
main #contact .form dl dd .mwform-tel-field input {
  width: 130px;
  margin: 0 15px;
}
@media screen and (max-width: 896px) {
  main #contact .form dl dd .mwform-tel-field input {
    width: 90px;
  }
}
main #contact .form dl dd .mwform-tel-field input:first-child {
  margin-left: 0;
}
main #contact .form dl dd .mwform-tel-field input:last-child {
  margin-right: 0;
}
main #contact .form dl dd textarea {
  display: block;
  width: 100%;
  height: 300px;
  padding: 20px;
  border: 1px #C1C1C1 solid;
}
@media screen and (max-width: 896px) {
  main #contact .form dl dd textarea {
    height: 200px;
  }
}
main #contact .form .btn {
  margin-top: 50px;
}
main #contact .form .btn button {
  display: block;
  width: 100%;
  height: 80px;
  color: #fff;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background-color: #000;
}
@media screen and (max-width: 896px) {
  main #contact .form .btn button {
    height: 50px;
    font-size: 14px;
  }
}
main #contact .form .btn a {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 50px;
  margin: 0 auto;
  color: #fff;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: bold;
  background-color: #000;
  text-decoration: none;
  transition: opacity 0.7s;
}
main #contact .form .btn a:hover {
  text-decoration: none;
  opacity: 0.6;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 768px) {
  main #contact .form .btn a:hover {
    opacity: 1;
  }
}
main #contact .form .btn a:hover img {
  opacity: 1;
}
main #contact .form #finish {
  margin-top: 20px;
}
main #contact .form #finish p {
  margin-bottom: 50px;
  font-size: 18px;
  text-align: center;
}
.lum-lightbox.lum-open {
  z-index: 10000;
}
@media screen and (max-width: 896px) {
  .lum-lightbox-inner img {
    max-width: 100% !important;
    max-height: 100% !important;
  }
}
.lum-close-button {
  opacity: 1;
}
