@charset "utf-8";
/* CSS Document */

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

	matsuri　祭り提灯

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

:root {
	--color-orange: #ff7200;
	--color-blue: #003cc9;
}

.main-tit {
	max-width: var(--main-width);
	margin: .5rem auto 1.5rem;
	font-weight: bold;
	font-size: 3.6rem;
}

@media screen and (max-width: 786px) {
    .main-tit {
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
	.main-tit {
		font-size: 2.8rem;
	}
}


/*----------------------------------------------------------------
  main-img
------*/
.main-img {
	width: var(--main-width);
	margin: 0 auto 6rem;
}

.main-img picture {
	margin-bottom: 2rem;
	display: block;
}

.main-img picture + p {
	width: 900px;
	margin: 0 auto;
}

@media screen and (max-width: 786px) {
	.main-img picture + p {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	.main-img {
		margin-bottom: 4rem;
	}
}



/*----------------------------------------------------------------
  case-cont
------*/
.case-cont {
	text-align: center;
	margin-bottom: 6rem;
}
.case-cont:before {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	margin: 0 auto 4rem;
	background: var(--color-blue);
}

.case-cont .h-case {
	font-size: 3.6rem;
	font-weight: bold;
	letter-spacing: .05em;
	margin-bottom: 1.5rem;
}
.case-cont .h-case span {
	color: var(--color-orange);
}

@media screen and (max-width: 786px) {
	.case-cont:before {
		width: calc(100% + 40px);
		margin: 0 -20px 3rem;
	}
}

@media screen and (max-width: 480px) {
	.case-cont .h-case {
		font-size: 2.6rem;
		margin-bottom: 1.5rem;
	}
}


/*--text-box--*/
.case-cont .text-box {
	width: var(--main-width);
	margin: 0 auto 3rem;
	position: relative;
}

.case-cont .text-box .lead {
	width: fit-content;
	font-size: 2rem;
	position: relative;
	padding: 0 6.5rem;
	margin: 0 auto;
}
.case-cont .text-box .lead:before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #191919;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	z-index: -1;
}

.case-cont .text-box .lead span {
	background: #FFF;
	padding: 0 1.5rem;
	display: block;
	width: fit-content;
	line-height: 1.4;
}

.case-cont .text-box .day {
	width: fit-content;
	font-size: 1.7rem;
	color: #6e7181;
	background: #eff4ff;
	padding: 5px 1.5rem;
	line-height: 1.3;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

@media screen and (max-width: 786px) {
	.case-cont .text-box .day {
		position: static;
		right: auto;
		top: auto;
		transform: none;
		margin: 5px auto;
		width: 100%;
		box-sizing: border-box;
		font-size: 11px;
	}
}

@media screen and (max-width: 480px) {
	.case-cont .text-box {
		margin-bottom: 2rem;
	}
	.case-cont .text-box .lead {
		padding: 0 10%;
	}

	.case-cont .text-box .lead span {
		font-size: 14px;
	}
}

/*--swiper--*/
.case-cont .swiper-slide {
	width: 280px !important;
}
.case-cont .swiper-slide .img {
	width: 280px;
	aspect-ratio: 280 / 210;
	overflow: hidden;
	position: relative;
	margin-bottom: 5px;
}

.case-cont .swiper-slide .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.case-cont .swiper-slide .use {
	font-size: 2.1rem;
	font-weight: bold;
}
.case-cont .swiper-slide .use:after {
	content: "";
	display: block;
	max-width: 200px;
	height: 1px;
	background: #9fa3b5;
	margin: 2px auto;
}

.case-cont .swiper-slide .size {
	font-size: 1.6rem;
	color: #6a6a6a;
}


/*swiper-parent*/
.case-cont .swiper-parent {
	position: relative;
	overflow: hidden;
}
.case-cont .swiper-parent .swiper-button-prev,
.case-cont .swiper-parent .swiper-button-next {
	width: 9.5rem;
	height: 9.5rem;
	background: var(--color-orange);
	border-radius: 50%;
	transition: var(--transition);
}
.case-cont .swiper-parent .swiper-button-prev {
	left: -3rem;
}

.case-cont .swiper-parent .swiper-button-next {
	right: -3rem;
}

.case-cont .swiper-parent .swiper-button-prev:hover,
.case-cont .swiper-parent .swiper-button-next:hover {
	transform: scale(1.1);
}

.case-cont .swiper-parent .swiper-button-prev:before,
.case-cont .swiper-parent .swiper-button-next:before {
	content: "";
	display: block;
	background: url(../../../_images/common/icon-arrow.svg);
	width: 17%;
	height: 31%;
}
.case-cont .swiper-parent .swiper-button-prev:before {
	margin: 35% 35% 35% auto;
	transform: scaleX(-1);
}
.case-cont .swiper-parent .swiper-button-next:before {
	margin: 35% auto 35% 35%;
}

@media screen and (max-width: 480px) {
	.case-cont .swiper-parent .swiper-button-prev,
	.case-cont .swiper-parent .swiper-button-next {
		width: 6.5rem;
		height: 6.5rem;
	}
	.case-cont .swiper-parent .swiper-button-prev {
		left: -1.5rem;
	}

	.case-cont .swiper-parent .swiper-button-next {
		right: -1.5rem;
	}
}

/*----------------------------------------------------------------
  design-cont
------*/
.design-cont {
	padding: 5rem 0;
	background: url(../../../_images/use/matsuri/design-back.webp) no-repeat center bottom;
	background-size: cover;
	margin-bottom: 7rem;
}

.design-cont .h-design {
	text-align: center;
	font-weight: bold;
	font-size: 3.6rem;
	-webkit-text-stroke: 4px #fff;
	text-stroke: 4px #fff;
	paint-order: stroke;
	position: relative;
	margin-bottom: 5rem;
	z-index: 1;
}
.design-cont .h-design:after {
	content: "";
	display: block;
	background: url(../../../_images/use/matsuri/design-tit-back.webp);
	width: 435px;
	height: 55px;
	position: absolute;
	top: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	z-index: -1;
}

@media screen and (max-width: 786px) {
	.design-cont {
		margin-bottom: 0;
	}
	.design-cont .h-design {
		padding: 0 20px;
	}
}

@media screen and (max-width: 480px) {
	.design-cont .h-design {
		font-size: 2.7rem;
		margin-bottom: 3rem;
	}
	.design-cont .h-design:after {
		width: 80%;
    	height: 80%;
		background-size: cover;
		top: auto;
		bottom: -1.5rem;
	}
}

/*--design-list--*/
.design-cont .design-list {
	width: calc(100% - 40px);
	margin: 0 auto;
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
	gap: 20px 3rem;

}

.design-cont .design-list li {
	width: calc((100% - 9rem) / 4);
}

.design-cont .design-list li .h-type {
	text-align: center;
	font-weight: bold;
	font-size: 2.5rem;
	color: #002a8c;
	display:flex;
	justify-content: center;
	align-items: center;
}

.design-cont .design-list li img {
	width: 100%;
	height: auto;
	margin: 2rem 0;
}

.design-cont .design-list li a {
	display: block;
	background: #212121;
	text-align: center;
	color: #FFF;
	font-weight: bold;
	font-size: 1.5rem;
	padding: 10px 20px;
	border: 2px solid #FFF;
	margin-top: 15px;
}

@media screen and (min-width: 1410px) {
	.design-cont .design-list {
		width: 1410px;
	}

	.design-cont .design-list li {
		width: 330px;
	}
}

@media screen and (max-width: 700px) {
	.design-cont .design-list {
		gap: 20px 2rem;
	}

	.design-cont .design-list li {
		width: calc((100% - 2rem) / 2);
	}

	.design-cont .design-list li .h-type {
		font-size: 2.2rem;
	}

	.design-cont .design-list li img {
		margin: 1rem 0;
	}
}



/*----------------------------------------------------------------
  use-cont
------*/

.use-cont .use-btn-list {
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
	gap: 15px calc(8% / 3);
	margin-bottom: 5rem;
}

.use-cont .use-btn-list li {
	width: 23%;
}

.use-cont .use-btn-list li a {
	padding: 1.7rem 2rem 3.2rem;
	position: relative;
	background: var(--color-orange);
	border-radius: 1.5rem;
	border: 3px solid #FFF;
	font-size: 2.1rem;
	letter-spacing: .075em;
	font-weight: bold;
	color: #FFF;
	box-shadow: 0px 3px 7px 0.5px rgba(0, 0, 0, 0.3);
	height: 100%;
	box-sizing: border-box;
	display:flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.use-cont .use-btn-list li a:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 1.1rem solid transparent;
	border-left: 1.1rem solid transparent;
	border-top: 1rem solid #ffffff;
	border-bottom: 0;
	display: block;
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transition: var(--transition);
}

.use-cont .use-btn-list li a:hover {
	opacity: 1;
	box-shadow: 0px 8px 15px 0.8px rgba(0, 0, 0, 0.3);
	background: #ff6000;
}
.use-cont .use-btn-list li a:hover:after {
	bottom: 12px;
}

@media screen and (max-width: 480px) {
	.use-cont .use-btn-list {
		gap: 15px 4%;
	}

	.use-cont .use-btn-list li {
		width: 48%;
	}

	.use-cont .use-btn-list li a {
		font-size: 1.8rem;
	}
}


.use-cont .use-box section {
	margin-bottom: 6rem;
}

/*--use-type--*/
.use-cont .h-use-type {
	color: #FFF;
	font-weight: bold;
	font-size: 3.7rem;
	padding: 4rem;
	min-height: 18.5rem;
	position: relative;
	display: flex;
	align-items: center;
	text-shadow: 0px 1px 6.65px rgba(5, 0, 73, 0.6);
	box-sizing: border-box;
	margin-bottom: 3rem;
}
.use-cont .h-use-type:before {
	content: "";
	display: block;
	background-size: auto 100%;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.use-cont .h-use-type:after {
	content: "";
	display: block;
	background: linear-gradient(
		to right,
		rgba(5, 0, 73, 1) 0%,
		rgba(5, 0, 73, 1) 30%,
		rgba(5, 0, 73, 0.1) 50%,
		rgba(5, 0, 73, 0.1) 100%
	);
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.use-cont #deco .h-use-type:before { background: url(../../../_images/use/matsuri/deco-tit-back.webp) no-repeat right; }
.use-cont #mikoshi .h-use-type:before { background: url(../../../_images/use/matsuri/mikoshi-tit-back.webp) no-repeat right; }
.use-cont #hand .h-use-type:before { background: url(../../../_images/use/matsuri/hand-tit-back.webp) no-repeat right; }
.use-cont #takahari .h-use-type:before { background: url(../../../_images/use/matsuri/takahari-tit-back.webp) no-repeat right; }


/*--select-cont--*/
.use-cont .select-cont {
	background: #eff4ff;
	padding: 2.5rem 4rem;
}

.use-cont .select-cont .h-select {
	text-align: center;
	width: fit-content;
	background: #003cc9;
	color: #FFF;
	font-weight: bold;
	font-size: 2.7rem;
	padding: .8rem 5rem;
	border-radius: 100px;
	margin: 0 auto 2.5rem;
}

.use-cont .select-cont ol li {
	background: #FFF;
	margin-left: 20px;
	position: relative;
	color: #212121;
	font-size: 1.9rem;
	font-weight: bold;
	padding: 1.3rem 3.5rem;
	line-height: 1.4;
}

.use-cont .select-cont ol li:before {
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.use-cont .select-cont ol li:nth-child(1):before { background: url(../../../_images/use/matsuri/select-number1.webp); }
.use-cont .select-cont ol li:nth-child(2):before { background: url(../../../_images/use/matsuri/select-number2.webp); }
.use-cont .select-cont ol li:nth-child(3):before { background: url(../../../_images/use/matsuri/select-number3.webp); }

.use-cont .select-cont ol li mark {
	color: var(--color-orange);
	background: none;
}

.use-cont .select-cont ol li small {
	display: block;
	color: #627ec0;
	font-size: 1.5rem;
	font-weight: normal;
	margin-top: 5px;
}

.use-cont .select-cont ol li:not(:last-child) {
	margin-bottom: 1rem;
}

@media screen and (max-width: 786px) {

}

@media screen and (max-width: 480px) {
	.use-cont .select-cont {
		padding: 2rem 2.5rem;
	}

	.use-cont .select-cont .h-select {
		font-size: 2rem;
		padding: .8rem 3rem;
	}

	.use-cont .select-cont ol li {
		font-size: 15px;
	}

	.use-cont .select-cont ol li:before {
		left: -30px;
	}
}


/*--size-img--*/
.use-cont .size-img {
	margin-bottom: 4rem;
}

.use-cont .size-img .tab {
	display: flex;
}

.use-cont .size-img .tab-panels {
	flex: 1;
	display: grid;
	border: 1px solid #4869b7;
}

.use-cont .size-img .tab-panel {
	grid-area: 1 / 1;
	opacity: 0;
	transition: opacity .35s ease;
}

.use-cont .size-img .tab-panel.active {
	opacity: 1;
}

/**/
.use-cont .size-img .tab-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-left: -1px;
}

.use-cont .size-img .tab-button {
	padding: 1.2rem 1rem;
	border: 1px solid #4869b7;
	border-left: none;
	background: #627ec0;
	cursor: pointer;
	font-size: 2rem;
	border-radius: 0 5px 5px 0;
	text-align: center;
	width: 150px;
	color: #FFF;
	box-sizing: border-box;
	line-height: 1.3;
}

.use-cont .size-img .tab-button.active {
	background: #ffffff;
	color: #4869b7;
	position: relative;
}


@media screen and (max-width: 786px) {
	.use-cont .size-img .tab {
		flex-direction: column;
	}

	.use-cont .size-img .tab-buttons {
		flex-direction: row;
		margin: -1px 0 0;
	}

	.use-cont .size-img .tab-button {
		width: auto;
		flex: 1;
		border-radius: 0 0px 5px 5px;
		border-top: none;
		border-left: 1px solid #4869b7;
	}
}

@media screen and (max-width: 480px) {
	.use-cont .size-img .tab-buttons {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.use-cont .size-img .tab-button {
		font-size: 14px;
	}
}


/*--use-case--*/
.use-case .use-case-list {
	display: flex;
	gap: 0 2rem;
	padding-bottom: 2rem;
	overflow-x: auto;

	scrollbar-color: var(--color-orange) #f2f2f2;
}

.use-case .use-case-list li {
	width: 440px;
	padding: 2.5rem 3rem;
	box-sizing: border-box;
	border-radius: 1rem;
	border: .3rem solid #f2f2f2;
	flex-shrink: 0;
}

.use-case .use-case-list section {
	margin: 0;
}

.use-case .use-case-list .case-name {
	text-align: center;
	font-weight: bold;
	font-size: 2.3rem;
	margin-bottom: 1.5rem;
}

@media screen and (max-width: 786px) {
	.use-case .use-case-list {
		padding: 0 20px 15px;
  		box-sizing: border-box;
	}
}

@media screen and (max-width: 480px) {

	.use-case .use-case-list li {
		width: 300px;
		padding: 1.5rem 2rem;
	}
}


/*slider*/
.use-case .slider-wrap {
	margin-bottom: 2rem;
}
.use-case .slider {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-bottom: 8px;
}
.use-case .slides {
	display: flex;
	transition: transform .3s ease;
}
.use-case .slides img {
	width: 100%;
	flex-shrink: 0;
	user-select: none;
	pointer-events: none;
}
.use-case .dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	background: #fff;
}
.use-case .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #6a6a6a;
	cursor: pointer;
}
.use-case .dot.active {
	background: var(--color-orange);
}

@media screen and (max-width: 786px) {

}

@media screen and (max-width: 480px) {

}

/**/
.use-case .use-case-list dl {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	font-size: 1.5rem;
	row-gap: 8px;
	margin-bottom: 1.5rem;
}

.use-case .use-case-list dl dt {
	width: 90px;
	color: #6a6a6a;
	font-weight: bold;
}

.use-case .use-case-list dl dd {
	width: calc(100% - 100px);
	line-height: 1.3;
}

.use-case .use-case-list a {
	display: block;
	width: 90%;
	margin: 0 auto;
	background: #ff0036;
	font-size: 1.7rem;
	font-weight: bold;
	text-align: center;
	color: #FFF;
	padding: 1rem 2.5rem;
	border-radius: 100px;
	box-sizing: border-box;
}

@media screen and (max-width: 480px) {
	.use-case .use-case-list dl dd {
		font-size: 13px;
	}
}


/*--★--*/

@media screen and (max-width: 786px) {

}

@media screen and (max-width: 480px) {

}

/*--★--*/

@media screen and (max-width: 786px) {

}

@media screen and (max-width: 480px) {

}



/*----------------------------------------------------------------
  faq-cont
------*/
.faq-cont .faq-list {
	display: flex;
	flex-flow: column;
	gap: 1.5rem 0;
	width: 95%;
	margin: 0 auto;
	box-sizing: border-box;
}

.faq-cont .faq-item {
	background: #f6f8fa;
	border-radius: 1.5rem;
}

.faq-cont .faq-item dt .faq-q {
	width: 100%;
	background: none;
	border: none;
	cursor: text;
	text-align: left;
	font-family: inherit;
	padding: 2rem 4rem 1rem;
	position: relative;
}

@media (max-width: 786px) {
	.faq-cont .faq-item dt .faq-q {
		padding-right: 45px;
		padding: 2rem 45px 2rem 20px;
	}

	.faq-cont .faq-item dt .faq-q:before,
	.faq-cont .faq-item dt .faq-q:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 15px;
		background: #191919;
		transform: translate(-50%, -50%);
		transition: transform .28s ease, opacity .28s ease;
		width: 15px;
		height: 2px;
	}

	.faq-cont .faq-item dt .faq-q:after {
		transform: translate(-50%, -50%) rotate(90deg);
	}

	.faq-cont .faq-item.is-open dt .faq-q:after {
		transform: translate(-50%, -50%) rotate(0deg);
	}
}

@media screen and (max-width: 480px) {
	.faq-cont .faq-list {
		width: 100%;
	}
}



/**/
.faq-cont .faq-item dt .faq-q span {
	font-size: 1.6rem;
	color: #212121;
	font-weight: bold;
	position: relative;
	display: block;
	padding-left: 50px;
}

.faq-cont .faq-item dt .faq-q span:before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url(../../../_images/common/qa-icon-q.gif);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

@media (max-width: 786px) {
	.faq-cont .faq-item dt .faq-q span {
		padding-left: 45px;
	}
}


/**/
.faq-cont .faq-a {
	overflow: hidden;
	height: auto;
	transition: height .28s ease;
}

.faq-cont .faq-a-inner {
	padding: 0 4rem 2rem 90px;
	position: relative;
}
.faq-cont .faq-a-inner:before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url(../../../_images/common/qa-icon-a.gif);
	position: absolute;
	left: 40px;
	top: 0;
}

@media (max-width: 786px) {
	.faq-cont .faq-a {
		height: 0;
	}

	.faq-cont .faq-a-inner {
		padding-left: 65px;
		font-size: 13px;
	}

	.faq-cont .faq-a-inner:before {
		left: 20px;
	}
}

@media (min-width: 787px) {
	.faq-cont .faq-a {
		height: auto !important;
	}
}



/*----------------------------------------------------------------
  parts-list
------*/
.parts-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 30px 25px;
}

.parts-list dl {
	width: 280px;
	border: 3px solid #f2f2f2;
	border-radius: 1rem;
	box-sizing: border-box;
}

.parts-list dt {
	background: #dee8ff;
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
	padding: 1rem 1rem;
}

.parts-list dd {
	padding: 2rem 2.5rem 1rem;
}

.parts-list dd img {
	display: block;
	margin: 0 auto 1rem;
}

.parts-list dd table {
	width: 100%;
}

.parts-list dd table tr {
	border-top: 1px solid #c4c9e0;
}

.parts-list dd table th {
	font-weight: bold;
	font-size: 1.5rem;
	color: #9497a4;
	padding: 7px;
	line-height: 1.5;
	width: 35px;
}
.parts-list dd table td {
	font-size: 1.4rem;
	color: #4a4a4a;
	padding: 7px 0;
	line-height: 1.5;
	word-break: break-all;
}

@media screen and (max-width: 786px) {
	.parts-list {
		gap: 20px 15px;
	}

	.parts-list dl {
		width: calc((100% - 30px) / 3);
	}

	.parts-list dd table th,
	.parts-list dd table td {
		display: block;
		width: 100%;
	}


	.parts-list dd table th {
		padding: 5px 0px 0;
	}

	.parts-list dd table td {
		padding: 0 0 5px;
	}
}

@media screen and (max-width: 480px) {
	.parts-list {
		gap: 20px 10px;
	}
	.parts-list dl {
		width: calc((100% - 10px) / 2);
	}

	.parts-list dd {
		padding: 1rem 1.5rem;
	}
}



/*----------------------------------------------------------------
  link-grouping
------*/
.link-grouping ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 2rem 15px;
}

.link-grouping ul li {
	width: calc((100% - 45px) / 4);
}

.link-grouping ul li img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 786px) {
	.link-grouping ul li {
		width: calc((100% - 30px) / 3);
	}
}

@media screen and (max-width: 480px) {
	.link-grouping ul {
		gap: 15px;
	}
	.link-grouping ul li {
		width: calc((100% - 15px) / 2);
	}
}

