@charset "utf-8";
/* CSS Document */
header {
	margin-top: 20px;
}

.record_cont{
	margin: 30px auto;
}
.record_cont *{
	box-sizing: border-box;
}

/*--見出し--*/
.record_cont .h_record{
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.04em;
	margin: 20px 0;
	border-bottom: 2px solid #be0000;
    padding-bottom: 10px;
	font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}
.record_cont .h_center{
	font-size: 24px;
	letter-spacing: 0.04em;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

/*--ボタン--*/
.record_cont .record_btn a{
	display: block;
	width: 310px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	padding: 15px;
	background: #2d2d2d;
	border-radius: 5px;
	margin: 0 auto 30px;
}
.record_cont .record_btn a:hover{
	opacity: .7;
}
.record_cont .more_btn a{
	background: #ff512f;
}
.post_date {
	padding-left: 5px;
}

@media screen and (max-width: 768px) {
	.record_cont{
		width: 100%;
	}
	.record_cont .h_record{
		margin: 20px;
	}
	.record_cont .hRedRhombus + p{
		margin: 0 20px 20px;
	}
}


@media screen and (max-width: 480px) {
	.record_cont .h_record{
		font-size: 18px;
		margin-bottom: 15px;
	}
	.record_cont .h_center{
		font-size: 18px;
		margin-bottom: 20px;
	}
	.record_cont .hRedRhombus + p{
		font-size: 12.5px;
	}

	/*--ボタン--*/
	.record_cont .record_btn a{
		width: 90%;
		font-size: 15px;
	}
	.post_date {
		padding-left: 0px;
	}
}

/*--ソート--*/
.record_cont .sort_box{
	display: flex;
	justify-content: center;
	overflow-x: auto;
	position: relative;
}
.record_cont .record_sort{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1080px;
	margin-bottom: 60px;
}
.record_cont .record_sort li button {
    display: block;
    width: 200px;
	color: #BE0000;
    font-size: 15px;
    font-weight: normal;
    text-align: center;
    padding: 15px 5px;
    background: #fff;
    border: solid 2px #BE0000;
	border-radius: 5px;
}
.record_cont .record_sort li button.active {
    background: #BE0000;
    color: #fff;
	border: solid 2px #9f0505;
	font-weight: bold;
}

/*--実績一覧--*/
.record_cont .case_outer{
	position: relative;
}

.loader {
  width: 60px;
  height: 60px;
  border: 3px solid rgb(233, 230, 230,0.5);
  border-bottom-color: #505050;
  border-radius: 50%;
  animation: rotation 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  z-index: 1000;
  left: 0;
  right: 0;
  top: -30px;
  margin: auto;
}

@keyframes rotation {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.record_cont .case_box{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 15px;
	margin-bottom: 20px;
}
.record_cont .case_box li{
	width: 390px;
}
.record_cont .case_box li .new_record{
	position: relative;
}
.record_cont .case_box li .new_record::after {
    content: "NEW";
    display: block;
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.08em;
    padding: 3px 13px;
    background: #070700c4;
    border: solid 2px #000000;
    border-radius: 6px;
    top: -8px;
    left: -8px;
}
.record_cont .case_box li img{
	width: 100%;
	height: auto;
}
.record_cont .case_box a{
	display: block;
	color: #191919;
}
.record_cont .case_box a:hover{
	opacity: 1;
	cursor: pointer;
	background: #f8e2ea;
	color: #333;
}
.record_cont .case_box a:hover img{
	opacity: .7;
}
.record_cont .case_box li .new_record:hover::after{
	opacity: 0.8;
}
.record_cont .case_box li .h_case{
	font-size: 18px;
	font-weight: bold;
	padding: 0 5px;
	margin: 10px 0;
}

/* 一覧仕様表示調整 */
.record_cont .case_data > dl {
  display: flex;
  align-items: baseline;
}
.record_cont .case_data dt {
  flex: 0 0 70px;
}
.record_cont .case_data dd {
  flex: 1;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.record_cont .case_data dl {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: baseline !important;
    width: 100% !important;
}
.record_cont .case_data dt {
    flex: 0 0 3.5em !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}
.record_cont .case_data dt::after {
    content: "：";
    display: inline !important;
}
.record_cont .case_data dd {
    flex: 1 !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.record_cont .case_box li .case_data{
	padding: 0 5px 5px;
}

.record_cont > p {
	margin-bottom: 40px;
}

/*--モーダル--*/
.remodal{
	max-width: 1080px;
	padding: 60px 80px 50px;
	text-align: left;
}
.remodal .case_detail{
	display: flex;
	flex-wrap: wrap;
	gap: 25px 20px;
}
.remodal .case_detail > div{
	width: 450px;
}
.remodal .h_detail{
	font-size: 20px;
	font-weight: bold;
	text-align: left;
	margin: 0 45px 20px 0;
}
.remodal img{
	width: 100%;
	height: auto;
}
.remodal .design_box{
	padding: 20px 15px;
	background: #eed7d8;
	border-radius: 10px;
	margin-top: 15px;
}
.remodal .design_box .h_design{
	width: fit-content;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #69181e;
	padding: 0 15px;
	border-bottom: solid 1px #450c10;
	margin: 0 auto 15px;
}
.recordDetail {
	margin-bottom: 15px;
}
.recordDetail dl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 450px;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}
.recordDetail dl dt{
	width: 120px;
	background-color: #333;
	color: #fff;
	font-weight: bold;
	border-bottom: 1px dashed #9d9d9d;
	padding: 10px;
}
.recordDetail dl dd{
	width: 330px;
	background-color: #ededed;
	border-bottom: 1px dashed #9d9d9d;
	padding: 10px;
}
.recordDetail dl dt:last-of-type,
.recordDetail dl dd:last-of-type{
	border-bottom: none;
}
.remodal .h_link{
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom: solid 1px;
	margin: 15px 0 10px;
}
.remodal .link_box{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.remodal .link_box li a{
	display: block;
	color: #fff;
	padding: 2px 25px;
	background: #0ca03d;
	border-radius: 50px;
	border: solid 2px #119c40;
}
.remodal .link_box li a:hover{
	color: #119c40;
	background: #fff;
}
.remodal .remodal-close{
	width: 30px;
	height: 30px;
	left: auto;
	top: 35px;
	right: 30px;
}
.remodal .remodal-close::before,
.remodal .remodal-close::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #333;
}
.remodal .remodal-close::before{
	transform: rotate(-45deg);
}
.remodal .remodal-close::after{
	transform: rotate(45deg);
}


@media screen and (max-width: 1100px) {
	.record_cont .sort_box{
		width: 100%;
		justify-content: left;
	}
	.record_cont .record_sort {
		gap: 10px;
		margin: 0 20px 60px;
	}
	.record_cont .record_sort li button{
		width: fit-content;
		font-size: 15px;
		padding: 10px 15px;
	}
	.record_cont .record_sort .all {
		width: 100%;
	}
	.record_cont .record_sort .all button{
		width: 100%;
		margin: 0 auto 10px;
	}
	.remodal{
		padding: 30px 20px;
	}
	.remodal .case_detail {
		column-gap: 4%;
	}
	.remodal .case_detail > div{
		width: 48%;
	}
	.remodal .case_detail > div .recordDetail dl{
		width: 100%;
	}
	.remodal .case_detail > div .recordDetail dl dt{
		width: 30%;
	}
	.remodal .case_detail > div .recordDetail dl dd{
		width: 70%;
	}
}


@media screen and (max-width: 768px) {
	.record_cont .record_sort,
	.record_cont .case_box{
		margin: 0 20px 20px;
	}
	.record_cont .case_box{
		column-gap: 4%;
	}
	.record_cont .case_box li{
		width: 48%;
	}
	.record_cont .case_box li .new_record::after{
		width: 10%;
		display: flex;
		justify-content: center;
		font-size: 15px;
	}
	.record_cont .case_box li .h_case{
		font-size: 15px;
	}
	.record_cont .case_box li .case_size{
		font-size: 13px;
		line-height: 1.8em;
	}
	.record_cont .case_box li .case_data {
        font-size: 13px;
        padding: 0;
    }
	.remodal {
		width: 80%;
		padding: 30px 15px;
	}
	.remodal .case_detail > div{
		width: 100%;
	}
	.remodal .h_detail{
		margin-right: 0;
	}
	.remodal .remodal-close{
		top: 5px;
		right: 10px;
		width: 20px;
		height: 20px;
	}
}


@media screen and (max-width: 480px) {
	.record_cont .record_sort{
		gap: 5px;
	}
	.record_cont .record_sort li button{
		font-size: 12px;
		padding: 6px 10px;
		border-width: 1px;
	}
	.record_cont .record_sort .all button{
		width: 100%;
		margin-bottom: 5px;
	}
	.record_cont .loader {
		width: 30px;
		height: 30px;
		bottom: -30px;
	}
	.record_cont .case_box li .new_record::after{
		font-size: 13px;
		padding: 0 20px;
		border-radius: 4px;
	}
	.remodal {
		width: 90%;
	}
	.remodal .h_detail{
		font-size: 18px;
	}
	.remodal .h_link,
	.remodal .design_box .h_design{
		font-size: 15px;
	}
	.link_box {
		margin-bottom: 20px;
	}
	.remodal .link_box li a{
		font-size: 13px;
		padding: 2px 15px;
	}
	.remodal .case_detail > div .recordDetail dl dt,
	.remodal .case_detail > div .recordDetail dl dd{
		width: 100%;
	}
	.remodal .design_box{
		padding: 15px 10px 20px;
		margin-bottom: 15px;
	}
	.record_cont .case_data dl {
		display: flex !important;
		flex-wrap: nowrap !important;
		align-items: baseline !important;
		max-width: 100% !important;
	}
	.record_cont .case_data dt {
		flex: 0 0 1.5em !important;
		flex-shrink: 0 !important;
		white-space: nowrap !important;
	}
	.record_cont .case_outer {
		width: 100vw;
	}
}


/*--よくある質問--*/
.record_cont .qa_cont {
	width: 890px;
	margin: 0 auto;
}
.record_cont .qa_cont .h_qa_sub {
	display: flex;
	align-items: center;
	column-gap: 5px;
	position: relative;
	font-size: 21px;
	font-weight: bold;
	color: #fff;
	padding: 15px 20px;
	background: linear-gradient(to right, #c03232, #f3a9a9) top / 100% 4px no-repeat,    /* 上ボーダー */
    linear-gradient(to right, #c03232, #f3a9a9) bottom / 100% 4px no-repeat; /* 下ボーダー */
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 20px;
}
.record_cont .qa_cont .h_qa_sub::before{
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background: #fff;
	clip-path: polygon(50% 0,100% 50%,50% 100%,0 50%);
}
.record_cont .qa_cont .h_qa_sub::after{
	content: "";
	position: absolute;
	background: linear-gradient(to right,#dc3e3e, #ed7d7d);
	z-index: -1;
	inset: 0;
	margin: auto;
}
.record_cont .qa_cont dl {
	margin-bottom: 40px;
}
.record_cont .qa_cont dl .accordion-title{
	position: relative;
	display: flex;
	align-items: center;
	column-gap: 10px;
	font-size: 18px;
	font-weight: bold;
	color: #515151;
	padding: 10px 40px 10px 15px;
	background:#ebe6d2;
	border-bottom: solid 1px #333;
	margin-bottom: 10px;
}
.record_cont .qa_cont dl .accordion-title::before{
	content: "";
	display: block;
	flex-shrink: 0;
	width: 35px;
	height: 35px;
	background: url(../../_images/detail/qa_icon_q.gif) no-repeat center,#14a800;
	background-repeat: no-repeat;
}
.record_cont .qa_cont dl .accordion-title::after{
	content: "";
	display: block;
	position: absolute;
	width: 18px;
	height: 12px;
	background: #333;
	clip-path: polygon(0 0,100% 0,50% 100%);
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	transition: .3s;
}
.record_cont .qa_cont dl .accordion-title.is-open::after{
	transform: rotate(180deg);
}
.record_cont .qa_cont dl .accordion-title:hover{
	cursor: pointer;
}
.record_cont .qa_cont dl .accordion-content{
	position: relative;
	max-height: 0;
	overflow: hidden;
	transition: 0.5s;
	letter-spacing: 0.07em;
	padding-left: 60px;
	margin-bottom: 20px;
}
.record_cont .qa_cont dl .accordion-content::before{
	content: "";
	position: absolute;
	display: block;
	width: 35px;
	height: 35px;
	background: url(../../_images/detail/qa_icon_a.gif) no-repeat center,#ff2222;
	top: 5px;
	left: 15px;
}
.record_cont .qa_cont dl .accordion-title.is-open + .accordion-content{
	max-height: 1000px;
	padding: 0 0 10px 60px;
	border-bottom: solid 1px #333;
}

/*--お問合せボックス--*/
.contactBanner{
	background: url(../../_images/common/contact_bg.webp) repeat-x bottom;
	margin: 40px 0;
}
.contactBanner > div{
	background: url(../../_images/common/contact_staff.webp) no-repeat right bottom;
	background-size: auto 275px;
	min-height: 280px;
	margin: 0 30px;
	padding: 10px 0;
	box-sizing: border-box;
}
.contactBanner .fukidashi{
	margin-bottom: 10px;
}
.contactBanner ul{
	margin-right: 300px;
}
.contactBanner div p{
	font-size: 45px;
	line-height: 2.0em;
}
.contactBanner div p br{
	display: none;
}
.contactBanner ul.infoBox{
	display: table;
	margin-bottom: 10px;
	border-spacing: 5px;
}
.contactBanner ul.infoBox li{
	display: block;
}
.contactBanner ul.linkBtn{
	display: flex;
}
.contactBanner ul.linkBtn li{
	width: 49%;
	margin: 0 10px;
	text-align: center;
}
.contactBanner ul.linkBtn li a{
	display: block;
	padding: 5px;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.contactBanner ul.linkBtn li span{
	display: block;
}
.contactBanner ul.linkBtn li.estimateBtn span,
.contactBanner ul.linkBtn li.contactBtn span{
	padding: 5px;
}


@media screen and (max-width: 768px) {
	/*--よくある質問--*/
	.record_cont .qa_cont {
		width: 100%;
		padding: 0 20px;
	}

	/*--お問合せボックス--*/
	.contactBanner {
		margin: 40px 20px;
	}
	.contactBanner div{
		background-size: 30%;
		min-height: auto;
		margin: 0 10px;
	}
	.contactBanner .fukidashi{
		text-align: center;
	}
	.contactBanner ul{
		margin-right: 0;
	}
	.contactBanner div p{
		font-size: 30px;
		line-height: 1.1em;
	}
	.contactBanner div p br{
		display: inline-block;
	}
	.contactBanner ul.infoBox{
		display: block;
		margin: 0 20% 0 0;
		border-spacing: 5px;
	}
	.contactBanner ul.infoBox li{
		display: block;
		margin-bottom: 5px;
	}
	.contactBanner ul.infoBox li br{
		display: none;
	}
	.contactBanner ul.infoBox li img{
		width: 100%;
	}
	.contactBanner ul.infoBox li.address img{
		width: 50%;
	}
	.contactBanner ul.linkBtn li img{
		width: 80%;
	}
}

@media screen and (max-width: 480px) {
	/*--よくある質問--*/
	.record_cont .qa_cont .h_qa_sub{
		font-size: 17px;
		padding: 10px 15px;
	}
	.record_cont .qa_cont .h_qa_sub::before{
		width: 12px;
		height: 12px;
	}
	.record_cont .qa_cont dl .accordion-title{
		font-size: 16px;
		padding: 10px 40px 10px 10px;
	}
	.record_cont .qa_cont dl .accordion-title::before,
	.record_cont .qa_cont dl .accordion-content::before{
		width: 30px;
		height: 30px;
	}
	.record_cont .qa_cont dl .accordion-title::after{
		width: 12px;
		height: 10px;
		right: 10px;
	}

	/*--お問合せボックス--*/
	.contactBanner > div{
		background: none;
	}
	.contactBanner ul.infoBox{
		margin: 0;
	}
	.contactBanner ul.linkBtn li a{
		padding: 3px;
	}
}
/*--追従--*/
.foot_fixed{
	position: sticky;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 50px;
	background: #eaeaea;
	border-top: solid 3px #BE0000;
	bottom: 0;
	z-index: 100;
}

.foot_fixed p{
	width: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.5em;
	color: #fff;
	padding: 20px 25px;
	background: #BE0000;
	border-left: solid 3px #eaeaea;
	border-right: solid 3px #eaeaea;
	box-shadow: rgba(99, 99, 99, 0.6) 0px 2px 8px 0px;
}
.foot_fixed ul{
	display: flex;
	column-gap: 20px;
	
}
.foot_fixed ul li a{
	display: block;
	width: 400px;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	padding: 18px;
	background: #2D2D2D;
	border-radius: 10px;
}
.foot_fixed ul li.estimate a{
	background: linear-gradient(to bottom,#db2625,#f28960);
	border: solid 4px #ffbbb8;
}
.foot_fixed ul li.contact a{
	background: linear-gradient(to bottom,#6b911c,#97de0a);
	border: solid 4px #b2d16a;
}
.foot_fixed ul li a:hover{
	opacity: .7;
}

@media screen and (max-width: 768px) {
	.foot_fixed {
		display: none;
	}
}

