@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color: #333;
	font-size: 14px;
	background: #fff;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
}
a {
	text-decoration: none;
	transition: .4s;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 80px 0 110px;
	position: relative;
}
main section.stb {
	padding: 110px 0;
}
@media (max-width: 550px) {
	main section {
		padding: 50px 0 60px;
	}
	main section.stb {
		padding: 55px 0;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
/* テキスト */
p {
	margin-bottom: 10px;
}
.marker {
	text-decoration: underline;
	text-decoration-thickness: 0.45em;
	text-decoration-color: rgba(42, 184, 245, 0.15);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
/*見出し01*/
.maintitle {
	margin-bottom: 60px;
	display: block;
	text-align: center;
	line-height: 0.65;
	position: relative;
	font-size: clamp(2.4rem, 1.275rem + 3.6vw, 3.3rem);
}
.maintitle .mf {
	color: #b31b0c;
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
	white-space: nowrap;
}
.maintitle .sf {
	text-align: center;
	margin-bottom: 10px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 33%;
}
.maintitle.mtleft {
	text-align: left;
}
.maintitle.mtleft .sf {
	position: relative;
	padding-left: 40px;
}
.maintitle.mtleft .sf::before {
	background-color: #333;
	position: absolute;
	content: "";
	top: 0.75em;
	left: 0;
	width: 31px;
	height: 1px;
}
.txtmgb {
	margin-bottom: 50px !important;
}
@media (max-width: 750px) {
	.maintitle.mtleft.spcenter .sf {
		padding-left: 0;
	}
	.maintitle.mtleft.spcenter .sf::before {
		content: none;
	}
}
@media (max-width: 550px) {
	.txtmgb {
		margin-bottom: 35px !important;
	}
	.maintitle {
		margin-bottom: 43px;
	}
	.maintitle .sf {
		font-size: 37%;
	}
}
/*見出し02*/
.mtitle {
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	position: relative;
	margin-bottom: 60px;
	letter-spacing: 0.1em;
	font-size: clamp(1.3rem, 0.675rem + 2vw, 1.8rem);
	line-height: 1.7;
}
.mtitle::after {
	content: '';
	display: block;
	width: 80px;
	height: 2px;
	border-bottom: 2px solid #b31b0c;
	margin: 15px auto 0;
}
@media (max-width: 550px) {
	.mtitle {
		margin-bottom: 25px;
	}
	.mtitle::after {
		margin: 10px auto 0;
	}
}
/*見出し03*/
.stitle {
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	position: relative;
	font-size: clamp(1.03rem, 0.755rem + 0.88vw, 1.25rem);
	border-bottom: 1px solid #ddd;
	margin-bottom: 15px;
	padding-bottom: 8px;
	padding-left: 2px;
	color: #333;
	line-height: 1.75;
}
.stitle span {
	font-size: 72%;
	color: #b31b0c;
	display: block;
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
}
.stitle::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 95px;
	height: 1px;
	background: #b31b0c;
}
@media (max-width: 750px) {
	.stitle {
		margin-bottom: 10px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 12px;
	transition: .4s;
	display: inline-block;
	width: 270px;
	text-align: center;
	color: #fff;
	background: #b31b0c;
	border: 1px solid #b31b0c;
	z-index: 1;
	overflow: hidden;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
section .mainbtn a::before {
	position: absolute;
	top: 50%;
	right: 15px;
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	line-height: 1;
	transform: translate(0, -50%);
	font-size: .75em;
}
.mainbtn a:hover {
	color: #b31b0c;
	background: #fff;
	transition: .4s;
}
@media (max-width: 550px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 210px;
		padding: 9px;
		font-size: 95%;
	}
}
/*flex要素*/
.flexbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (max-width: 750px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
		margin-bottom: 7px;
	}
	.flexbox div {
		width: 100%;
	}
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.w70 {
	width: 70%;
}
.w65 {
	width: 65%;
}
.w50 {
	width: 50%;
}
.w48 {
	width: 48%;
}
.w32 {
	width: 32%;
}
.w26 {
	width: 26%;
}
/* 背景 */
.bg_gray, .thalf, .thalf02 {
	position: relative;
}
.bg_gray::before {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #f7f7f7;
	z-index: -15;
}
.thalf:before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 30%;
	height: 100%;
	background-color: #ddd;
	z-index: -1;
	opacity: 0.2;
}
.thalf02:before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 25%;
	height: 100%;
	background-color: #ddd;
	z-index: -1;
	opacity: 0.2;
}
@media (max-width: 750px) {
	.thalf:before, .thalf02:before {
		width: 35%;
	}
	.thalf02:before {
		left: auto;
		right: 0;
	}
}
/*=== 共通部分ここまで ===*/
/* header */
.header_sticky {
	background: rgba(255, 255, 255, 0.6);
	transition: .5s;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
.change_color {
	background: #fff;
	box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.4);
}
.header {
	padding: 9px 5px 12px;
	transition: all .5s;
	width: 100%;
	z-index: 100;
	position: relative;
}
.header_inner {
	width: 96%;
	max-width: 1700px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_logo {
	width: 335px;
}
.header h1 {
	transition: .3s;
	z-index: 110;
}
.header_title:hover h1 {
	opacity: 0.6;
	transition: .3s;
}
.header ul {
	display: flex;
	text-align: center;
}
.header ul li {
	margin-right: 32px;
	position: relative;
	line-height: 1.6;
}
.header ul li:last-child {
	margin-right: 0;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 3px 0 0;
	line-height: 1.65;
	font-size: 0.93rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	color: #333;
}
.header ul li a:hover {
	opacity: 0.6;
}
.header ul li a span {
	display: block;
	font-size: 80%;
	color: #b31b0c;
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
}
.hnav {
	margin-left: auto;
	width: fit-content;
	margin-right: 15px;
}
.header_item {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 17px;
}
.header_item > div {
	margin: 0 8.5px;
}
.header_item .mainbtn a {
	width: 165px;
	line-height: 1;
	padding: 8.5px;
	font-size: 0.77rem;
	border: 1px solid #fff;
	color: #fff;
	background: #b31b0c;
}
.header_item .mainbtn a:hover {
	color: #b31b0c;
	background: #fff;
	border: 1px solid #b31b0c !important;
}
.fax a {
	pointer-events: none;
	border: 1px solid transparent !important;
	background: #8a150a !important;
}
.telbtn a {
	color: #b31b0c !important;
	background: #fff !important;
	border: 1px solid #b31b0c !important;
}
.telbtn a:hover {
	color: #fff !important;
	background: #b31b0c !important;
}
.tel.fax a {
	background: transparent !important;
}
.tel a {
	color: #b31b0c;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
.tel {
	font-size: 1.35rem;
	line-height: 1.3;
	transition: .3s;
}
.tel a:hover {
	opacity: 0.6;
	transition: .3s;
}
.tel i {
	font-size: 80%;
}
.header_item .mainbtn a:after {
	content: none;
}
.hamburger_menu {
	display: none;
}
.menu_btn {
	position: fixed;
	top: 19px;
	right: 16px;
	cursor: pointer;
	display: flex;
	height: 55px;
	width: 23px;
	justify-content: center;
	align-items: center;
	z-index: 110;
	opacity: 1;
	transition: .3s;
}
.menu_btn span, .menu_btn span:before, .menu_btn span:after {
	content: '';
	display: block;
	height: 2px;
	width: 33px;
	background: #b31b0c;
	position: absolute;
	transition: all 0.4s;
}
.menu_btn span:before {
	bottom: 7px;
}
.menu_btn span:after {
	top: 7px;
}
#menu_btn_check:checked ~ .menu_btn {
	filter: none;
}
#menu_btn_check:checked ~ .menu_btn span {
	background-color: rgba(255, 255, 255, 0) !important;
	transition: all 0.4s;
}
#menu_btn_check:checked ~ .menu_btn span::before {
	bottom: 0;
	transform: rotate(45deg) !important;
	transition: all 0.4s;
	background: #333;
}
#menu_btn_check:checked ~ .menu_btn span::after {
	top: 0;
	transform: rotate(-45deg) !important;
	transition: all 0.4s;
	background: #333;
}
#menu_btn_check {
	display: none;
}
.menu_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 80;
	overflow: auto;
}
.menu_content .menu_padding {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	max-width: 600px;
	width: 95%;
}
.menu_content nav {
	padding: 0 23px 23px;
}
.menu_content ul {
	text-align: center;
}
.menu_content ul li {
	padding: 3px 0;
	margin: 3px 0;
	list-style: none;
	text-align: center;
}
.menu_content ul li a {
	display: block;
	width: 100%;
	font-size: 0.95rem;
	box-sizing: border-box;
	text-decoration: none;
	padding: 6px;
	color: #333;
	position: relative;
	line-height: 1.85;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
.menu_padding ul li a span {
	font-size: 85%;
	color: #b31b0c;
	display: block;
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
}
.menu_content ul li a:hover {
	opacity: 0.6;
}
.menu_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	transition: all 0.6s;
	pointer-events: none;
	opacity: 0;
	background: #fff;
	background-size: cover;
	background-position: 30% 50%;
}
.menu_content .mainbtn {
	text-align: center;
	margin-bottom: 5px;
}
.menu_content .mainbtn:last-child {
	margin-bottom: 0;
}
.menu_content .mainbtn a:after {
	content: none;
}
.menu_content .mainbtn a {
	padding: 10px;
	background: #b31b0c;
	border: 1px solid #b31b0c;
}
.menu_content .mainbtn a:hover {
	background: #fff;
	color: #b31b0c;
}
#menu_btn_check:checked ~ .menu_content {
	opacity: 1;
	pointer-events: auto;
}
@media (max-width: 1080px) {
	.header_sticky {
		position: sticky;
		background: #fff;
	}
	.header {
		padding: 13px 17px;
	}
	.header_logo {
		width: 270px;
	}
	.menu_btn_mgt, .hamburger_menu, .header_inner label {
		display: block;
	}
	.header_nav {
		display: none;
	}
	.header .inner {
		display: none;
	}
	.header_inner {
		margin: 0;
	}
	.menu_btn {
		top: 6px;
		right: 25px;
	}
}
@media (max-width: 550px) {
	.header_logo {
		width: 220px;
	}
	.header {
		padding: 10px;
	}
	.menu_btn {
		top: 0;
		right: 18px;
	}
	.menu_content .mainbtn a {
		padding: 7.5px !important;
		font-size: 0.8rem;
	}
	.menu_content ul li a {
		font-size: 0.87rem;
	}
}
@media (max-width: 315px) {
	.header_title {
		width: 44vw;
	}
	.menu_btn {
		top: -11px;
		right: 15px;
	}
	.menut {
		display: none;
	}
}
/* footer */
/* フッターお問い合わせリンク */
.footer_bg {
	overflow: hidden;
	position: relative;
	z-index: 1;
	background: url(../img/footer.jpg);
	background-size: cover;
	background-position: 50% 55%;
	background-attachment: fixed;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .footer_bg {
	background-attachment: scroll;
	background-position: 50% 60%;
}
.footer_bg::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.45;
	z-index: -1;
}
.footer_contact {
	padding: 50px 0 85px;
	color: #fff;
	position: relative;
	z-index: 2;
}
.footer_contact .maintitle {
	color: #fff;
	margin-bottom: 40px;
}
.footer_contact .maintitle .mf {
	color: #fff;
}
.footer_contact .flexbox {
	max-width: 970px;
	margin: auto;
}
/*btn*/
.footer_contact .btn {
	text-align: center;
	width: 32%;
}
.footer_contact .btn a {
	display: block;
	width: 100%;
	color: #fff;
	padding: 17px 5px 15px;
	font-size: 1.05rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	white-space: nowrap;
	background-color: rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.5);
}
.footer_contact .btn a:hover {
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, 0.1);
}
.footer_contact .btn.fax a {
	background-color: rgba(0, 0, 0, 0.1) !important;
	border: 1px solid rgba(255, 255, 255, 0.5) !important;
}
@media (max-width: 750px) {
	.footer_bg {
		background-attachment: scroll;
	}
	.footer_contact .maintitle {
		margin-bottom: 35px;
	}
	.footer_contact {
		padding: 40px 0 50px;
	}
	.footer_contact .flexbox {
		max-width: 400px;
	}
	.footer_contact .btn {
		margin-bottom: 8px;
		width: 100%;
	}
	.footer_contact .btn:last-child {
		margin-bottom: 0 !important;
	}
	.footer_contact .btn a {
		font-size: 1.05rem;
	}
}
/*address*/
.footer_address {
	position: relative;
	text-align: center;
	padding: 25px 0;
	background: #fff;
}
.flogo {
	width: 90%;
	max-width: 375px;
	margin-bottom: 7px;
}
.ress {
	margin-bottom: 0;
}
.ress br {
	display: none;
}
@media (max-width: 550px) {
	.footer_address {
		padding: 20px 0;
	}
	.flogo {
		max-width: 270px;
		margin-bottom: 2px;
	}
	.ress br {
		display: block;
	}
	.footer_address p {
		font-size: 90% !important;
	}
}
.copyright {
	color: #fff;
	margin: 0;
	text-align: center;
	padding: 7px 0 12px;
	background: #b31b0c;
}
@media (max-width:550px) {
	.copyright {
		padding: 4px 0 8px;
		font-size: 84%;
	}
}
/*ページ上に戻るボタン*/
.go_top {
	display: block;
	width: 57px;
	height: 57px;
	box-sizing: border-box;
	background: #8a150a;
	padding-top: 30px;
	text-align: center;
	letter-spacing: -1px;
	font-size: 85%;
	text-decoration: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 9;
	border-radius: 50px;
}
.go_top::before {
	font-family: "Font Awesome 6 Free";
	content: "\f077";
	font-weight: bold;
	color: #fff;
	font-size: 1.25rem;
	position: absolute;
	top: 47%;
	left: 49.5%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.go_top:hover {
	opacity: 0.6;
}
.tfade {
	position: relative;
	z-index: 9;
}
@media(max-width:550px) {
	.go_top {
		width: 50px;
		height: 50px;
		right: 15px;
		opacity: 1;
	}
	.go_top::before {
		font-size: 1.05rem;
	}
}
/* スライド */
.topslide {
	overflow: hidden;
	position: relative;
}
.topslide::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #111;
	z-index: -1;
}
.slide_items {
	position: relative;
	z-index: 1;
	width: 100%;
	overflow: hidden;
}
.slide_items img {
	width: 100%;
	height: 100vh;
	min-height: 700px;
	object-fit: cover;
	opacity: 0.87;
}
/*
.slide_text {
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	white-space: nowrap;
	position: absolute;
	font-size: 3.3rem;
	letter-spacing: 0.12em;
	text-shadow: 0px 0.3px 1px rgb(0 0 0 / 50%), 0px -0.3px 2px rgb(0 0 0 / 50%);
	color: #fff;
	z-index: 2;
	line-height: 1.6;
	bottom: 5%;
	left: 4%;
}
.slide_text p {
	animation: fadeIn 1s ease 0.3s 1 normal backwards;
	margin-bottom: 0;
}
*/
.slide_text {
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	white-space: nowrap;
	position: absolute;
	font-size: 3.6rem;
	letter-spacing: 0.12em;
	z-index: 2;
	line-height: 1.6;
	bottom: 6%;
	left: 4%;
}
.slide_text p {
	margin-bottom: 0;
	padding: 0 10px 3px 13px;
	background: #fff;
	color: #b31b0c;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (max-width: 1350px) {
	.slide_items img {
		min-height: auto;
		height: 700px;
	}
	.slide_text {
		font-size: 2.9rem;
	}
}
@media (max-width: 750px) {
	.slide_items img {
		height: 480px;
	}
	.slide_text {
		font-size: 1.7rem;
	}
	.slide_text p {
		padding: 0 7px 2px 10px;
	}
}
.pdb {
	padding-bottom: 70px !important;
}
.pdb0 {
	padding-bottom: 1px !important;
}
@media (max-width: 750px) {
	.pdb {
		padding-bottom: 5px !important;
	}
}
.center {
	text-align: center;
}
@media (max-width: 750px) {
	.spcenter {
		text-align: center !important;
	}
}
.fitc {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.tbtn {
	margin-top: 35px;
}
@media (max-width: 750px) {
	.tbtn {
		margin-top: 25px;
	}
}
.aic {
	align-items: center;
}
/*アニメーション*/
/*flowup*/
.flowup {
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 1.6s, transform 1.3s, filter 1.1s;
	transition-delay: 0.3s;
	filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
.flowup.inview {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
	-webkit-backdrop-filter: blur(0);
}
/*Safari*/
::-webkit-full-page-media, :future, :root .flowup {
	filter: blur(0) !important;
	-webkit-backdrop-filter: blur(0) !important;
}
/*delay*/
.delay01 {
	transition-delay: 0.45s !important;
}
.delay02 {
	transition-delay: 0.65s !important;
}
@media (max-width: 750px) {
	.delay01, .delay02 {
		transition-delay: 0.3s !important;
	}
}
/*新着情報*/
.news {
	padding: 65px 0;
}
@media (max-width: 750px) {
	.news {
		padding: 45px 0;
	}
}
/*ご挨拶*/
@media (max-width: 970px) {
	.aboutus {
		padding: 55px 0 !important;
	}
	.aboutus .flexbox {
		display: block;
	}
	.aboutus .flexbox div {
		width: 100%;
	}
}
/*画像*/
.aboutflex {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.aboutflex .obj img {
	object-fit: cover;
	height: 370px;
	width: 100%;
}
@media (max-width: 1475px) {
	.aboutflex .obj img {
		height: 25vw;
	}
}
@media (max-width: 1225px) {
	.aboutflex .obj img {
		height: 28vw;
	}
}
@media (max-width: 750px) {
	.aboutflex .obj img {
		height: 175px;
	}
}
@media (max-width: 550px) {
	.aboutflex .obj img {
		height: 125px;
	}
}
/*強み*/
.reasonflex {
	justify-content: center;
}
.reason {
	text-align: center;
	width: 32%;
	padding: 20px 0;
}
.reaimgback {
	position: relative;
	margin-bottom: 30px;
}
.reaimgback::before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 190px;
	height: 140px;
	background: #f7f7f7;
	z-index: -15;
	border-radius: 45% 35% 40% 35%/43%;
}
.num {
	font-size: 3.2rem;
	margin-bottom: 50px;
	line-height: 0.85;
	color: #b31b0c;
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
}
.num span {
	display: block;
	font-size: 40%;
	color: #333;
}
.point {
	font-size: 110%;
}
.reaimg img {
	width: auto !important;
	height: 100px !important;
}
@media (max-width: 1080px) {
	.point {
		font-size: 90%;
	}
}
@media (max-width: 750px) {
	.reaimgback {
		margin-bottom: 35px;
	}
	.reason {
		padding: 17px 0;
	}
	.reason:nth-child(1) {
		padding-top: 15px;
	}
	.num {
		font-size: 2.4rem;
	}
	.point {
		font-size: 110%;
	}
	.reasonup .reason:last-child(3) {
		padding-bottom: 0;
	}
	.reaimg img {
		height: 85px !important;
	}
	.reaimg::before {
		top: 77%;
	}
}
/*コンテンツ*/
.contents .inner {
	max-width: 1400px;
}
.imgcard:nth-child(2) {
	transition-delay: 0.45s;
}
.imgcard:nth-child(3) {
	transition-delay: 0.65s;
}
.imgcard:nth-child(4) {
	transition-delay: 0.85s;
}
.imgcard {
	width: calc(100% / 4 - 2px);
	position: relative;
	overflow: hidden;
}
.imgcard .icardimg {
	object-fit: cover;
	transition: .3s;
}
.imgcard a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
	padding: 240px 0;
	color: #fff;
}
.imgcard a::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.5;
	pointer-events: none;
	z-index: -1;
	transition: .3s;
}
.imgcard a:hover::after {
	opacity: 0.35;
}
.imgcard a .icardimg {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.6s ease;
	z-index: -2;
	margin-bottom: 0 !important;
	filter: grayscale(40%);
}
.imgcard a:hover .icardimg {
	transform: scale(1.07, 1.07);
	transition: .9s;
	filter: grayscale(0);
}
.icontents {
	position: absolute;
	top: 110px;
	left: 50%;
	transform: translateX(-50%);
	width: 85%;
	text-shadow: 0px 2.5px 3px rgb(0 0 0 / 20%), 0px -2.5px 3px rgb(0 0 0 / 45%);
}
.imgcard h3 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.7);
	padding-bottom: 10px;
	font-size: 1.4rem;
	color: #fff;
	white-space: nowrap;
	line-height: 1.45;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	margin-bottom: 15px;
	position: relative;
	text-shadow: 0px 2.5px 3px rgb(0 0 0 / 10%), 0px -2.5px 3px rgb(0 0 0 / 15%) !important;
}
.imgcard h3::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 40px;
	height: 1px;
	background: #b31b0c;
	transition: .8s;
}
.imgcard a:hover h3::after {
	width: 100%;
	transition: .6s;
}
.imgcard h3 span {
	display: block;
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
	font-size: 70%;
}
.icontents p {
	font-size: 110%;
}
.readmore {
	position: absolute;
	bottom: 5%;
	right: 4%;
	padding-left: 33px;
	transition: .6s;
}
.readmore::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -25px;
	width: 40px;
	height: 1px;
	background: #fff;
	transition: .3s;
}
.readmore::after {
	content: '';
	position: absolute;
	top: 36%;
	left: 5px;
	width: 11px;
	height: 1px;
	background: #fff;
	transform: translateY(-50%) rotate(35deg);
	transition: .3s;
}
.imgcard a:hover .readmore {
	padding-left: 25px;
	transition: .6s;
}
/*
.imgcard a:hover .readmore::before, .imgcard a:hover .readmore::after {
	background: #b31b0c;
	transition: .6s;
}
*/
@media (max-width: 1170px) {
	.imgcard {
		width: 49.8%;
		margin-bottom: 0.4%;
	}
	.imgcard a {
		padding: 170px 0;
	}
	.icontents {
		top: 45%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 90% !important;
	}
	.imgcard h3 {
		margin-bottom: 10px;
	}
}
@media (max-width: 550px) {
	.imgcard {
		transition-delay: 0.15s;
	}
	.imgcard h3 {
		font-size: 1.23rem;
	}
	.imgcard a {
		padding: 47vw 0;
	}
	.icontents p {
		font-size: 105%;
	}
	.imgcard a::after {
		opacity: 0.6;
	}
	.readmore {
		bottom: 3px;
		padding-left: 29px;
	}
}
@media (max-width: 325px) {
	.imgcard a {
		padding: 180px 0;
	}
}
/* 下層ページ ======================================================================================================================*/
/*header*/
.subheader {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.2);
	background-color: #fff;
}
.subheader .header_sticky {
	position: relative;
}
/*下層ページトップ*/
.fv {
	height: 290px;
	width: 100%;
	display: flex;
	align-items: center;
	background: url(../img/fv.jpg);
	background-size: cover !important;
	background-repeat: no-repeat;
	background-position: 50% 45%;
	position: relative;
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #333;
	opacity: 0.55;
}
.fv h2 {
	margin-bottom: 0 !important;
	z-index: 1;
	position: relative;
	line-height: 0.55;
}
.fv h2 span {
	color: #fff !important;
}
.fv .maintitle .sf {
	font-size: 38%;
}
@media(max-width:1285px) {
	.fv {
		height: 245px;
	}
}
@media(max-width:755px) {
	.fv {
		height: 210px;
	}
}
@media(max-width:450px) {
	.fv {
		height: 140px;
	}
	.fv .maintitle .mf {
		margin-bottom: 0;
		font-size: 1.8rem;
	}
}
.aic {
	align-items: center;
}
/* breadcrumb */
.binner {
	width: 95%;
	font-size: 0.8rem;
	position: relative;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	position: relative;
	top: -0.1em;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #b31b0c;
}
.breadcrumb li:first-child a::before {
	font-family: "Font Awesome 6 Free";
	content: '\f015';
	font-weight: bold;
	font-size: 90%;
	position: relative;
	top: -0.05em;
}
@media(max-width:550px) {
	.breadcrumb {
		font-size: 0.63rem;
	}
}
@media(max-width:750px) {
	.spmgb {
		margin-bottom: 20px;
	}
}
/**/
.fv.fvservice {
	background: url(../img/fvservice.jpg);
	background-position: 50% 47%;
}
.fv.fvflow {
	background: url(../img/fvflow.jpg);
	background-position: 50% 52%;
}
@media(max-width:450px) {
	.fv.fvflow {
		background-position: 50% 75%;
	}
}
.fv.fvworks {
	background: url(../img/fvworks.jpg);
	background-position: 50% 47%;
}
.fv.fvinfo {
	background: url(../img/fvinfo.jpg);
	background-position: 50% 50%;
}
@media(max-width:450px) {
	.fv.fvinfo {
		background-position: 50% 80%;
	}
}
.fv.fvcontact {
	background: url(../img/fvcontact.jpg);
	background-position: 50% 62%;
}
/*事業紹介ページ ======================================================================================================================*/
.sertxtmgb {
	margin-bottom: 35px;
}
@media(max-width:550px) {
	.sertxtmgb {
		margin-bottom: 26px;
	}
}
/*建築測量*/
.imgflex {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}
.imgflex img {
	width: 49%;
	height: 100%;
	object-fit: cover;
}
@media(max-width:550px) {
	.imgflex img {
		width: 48.5%;
	}
	.imgflex {
		margin-bottom: 10px;
	}
}
/*お見積りフォーム*/
.mnote a {
	color: #b31b0c;
}
.mnote a:hover {
	opacity: 0.6;
}
/*仕事の流れページ ======================================================================================================================*/
.flows {
	position: relative;
}
.flows::before {
	content: "";
	width: 2px;
	height: 100%;
	background-color: #b31b0c;
	opacity: 0.45;
	display: block;
	position: absolute;
	top: 0;
	left: 9.5%;
}
.step {
	position: relative;
	text-transform: uppercase;
	font-size: 1.2rem;
	width: 12%;
	padding-top: 1.3%;
	white-space: nowrap;
	color: #b31b0c;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
.step::after {
	position: absolute;
	top: 1.8em;
	right: 15.5%;
	transform: translateY(-50%);
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	background-color: #b31b0c;
	border-radius: 50%;
}
.flowbox .stitle {
	margin-bottom: 13px;
}
.flowbox {
	width: calc(100% - 12% - 20px);
	background-color: #fff;
	padding: 20px;
	margin-left: 1em;
	border-left: solid 8px #b31b0c;
	position: relative;
	margin-bottom: 30px;
	box-shadow: rgba(0, 0, 0, 0.02) 0px 6px 24px 0px, rgba(0, 0, 0, 0.04) 0px 0px 0px 1px;
}
.flowbox::before {
	content: "";
	position: absolute;
	top: 1.5em;
	left: -30px;
	display: inline-block;
	border-style: solid;
	border-width: 15px;
	border-color: rgba(0, 0, 0, 0) #b31b0c rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
.flowbox:last-child {
	margin-bottom: 0 !important;
}
@media (max-width: 1305px) {
	.flows::before {
		left: 12%;
	}
	.step {
		width: 15%;
	}
	.step::after {
		right: 13.5%;
	}
	.flowbox {
		width: calc(100% - 15% - 20px);
	}
}
@media (max-width: 975px) {
	.flowbox::before {
		top: 0.97em;
	}
	.step {
		font-size: 1rem;
	}
}
@media (max-width: 895px) {
	.step::after {
		width: 12px;
		height: 12px;
	}
}
@media (max-width:750px) {
	.flows {
		padding-left: 10px;
	}
	.flows::before {
		left: 0;
	}
	.step {
		padding-top: 0;
		font-size: 1.03rem;
		padding-left: 15px;
	}
	.step p {
		margin-bottom: 6px;
	}
	.step::after {
		top: 62px;
		right: auto;
		left: -14px;
		width: 10px;
		height: 10px;
	}
	.flowbox {
		padding: 13px;
		margin-bottom: 20px;
	}
	.flowbox::before {
		top: 0.8em;
	}
	.flowbox .stitle {
		margin-bottom: 10px;
	}
}
@media (max-width:550px) {
	.flowbox {
		width: 96% !important;
	}
}
/**/
.flowtext {
	position: relative;
	max-width: 440px;
	width: 80% !important;
	text-align: center;
	margin: auto;
	margin-top: 65px;
	font-size: 1rem;
}
.flowtext br {
	display: none;
}
.flowtext::before, .flowtext::after {
	content: '';
	display: block;
	width: 1px;
	height: 1.5em;
	background: #333;
	position: absolute;
	bottom: 0;
}
.flowtext::before {
	left: -1em;
	transform: rotate(-30deg);
}
.flowtext::after {
	right: -1em;
	transform: rotate(30deg);
}
@media(max-width: 645px) {
	.flowtext {
		max-width: 260px;
	}
	.flowtext::before, .flowtext::after {
		height: 2.5em;
	}
	.flowtext br {
		display: block;
	}
}
@media(max-width: 550px) {
	.flowtext {
		margin-top: 37px;
	}
}
@media(max-width: 380px) {
	.flowtext {
		font-size: 0.85rem;
	}
	.flowtext::before {
		transform: rotate(-20deg);
	}
	.flowtext::after {
		transform: rotate(20deg);
	}
}
/*実績ページ =============================================================================================================================*/
/*フィルター*/
.disabled_wrap {
	position: relative;
}
.disabled_wrap::after {
	content: '';
	width: 101.5%;
	height: 102%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	pointer-events: none;
	z-index: 1;
	background: rgba(255, 255, 255, 0.05);
}
.disabled_wrap .disabled_text {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	z-index: 2;
	font-size: 1.2rem;
	white-space: nowrap;
}
@media (max-width: 750px) {
	.disabled_wrap .disabled_text {
		font-size: 1rem;
	}
}
.workstable.c_table th {
	border-right: none;
}
.workstable.c_table td {
	border: none;
}
.workstable.c_table tr {
	border-right: none;
	border-left: none;
}
/* table sp*/
.spsctext {
	display: none;
	font-size: 0.8rem;
}
@media (max-width:790px) {
	.spsctext {
		display: block;
	}
	.fee_wrap .c_table {
		width: 840px;
	}
	.fee_wrap {
		padding-bottom: 5px;
		overflow-x: scroll;
	}
	.spnone {
		display: none;
	}
}
@media (max-width:550px) {
	.spblock {
		display: block;
	}
	.c_table th, .c_table td {
		font-size: 90%;
	}
	.fee_wrap .c_table {
		width: 620px;
	}
}
/*会社概要ページ ======================================================================================================================*/
/*経営理念*/
.phtext {
	margin: auto;
	max-width: 1000px;
	flex-wrap: nowrap;
}
.phtext p {
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
	flex: 1 0 auto;
	text-align: center;
	font-size: 1.75rem;
	color: #b31b0c;
}
.phtext p:first-letter {
	color: #f21902;
}
.phtext p::after {
	content: "・";
	margin-left: 8px;
}
.phtext p:last-child::after {
	content: none;
}
.phb {
	margin-top: 20px;
	text-align: center;
}
@media (max-width:1055px) {
	.phtext {
		max-width: 835px;
	}
	.phtext p {
		font-size: 1.45rem;
	}
}
@media (max-width:895px) {
	.phtext p {
		font-size: 2.4vw;
	}
}
@media (max-width:750px) {
	.phtext p::after {
		content: none;
	}
	.phtext p {
		font-size: 1.65rem;
		margin-bottom: 0;
	}
	.phb {
		text-align: left;
	}
	.phb br {
		display: none;
	}
}
/*経営ビジョン*/
.vnum {
	color: #b31b0c;
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
	font-size: 1.4rem;
	padding-bottom: 4px;
	margin-bottom: 13px;
	border-bottom: 1px solid #ddd;
}
.vision div {
	padding: 23px;
	background: #fff;
	width: 24%;
	box-shadow: rgba(0, 0, 0, 0.02) 0px 6px 24px 0px, rgba(0, 0, 0, 0.01) 0px 0px 0px 1px;
}
@media (max-width:1260px) {
	.vision div {
		padding: 13px;
	}
}
@media (max-width:750px) {
	.vision div {
		padding: 2px 15px 10px;
		width: 100%;
		margin-bottom: 13px;
	}
}
/*代表挨拶*/
.greeting .inner {
	max-width: 1220px;
}
.greeting .maintitle {
	margin-bottom: 33.5px;
}
@media (max-width:550px) {
	.greeting .maintitle {
		margin-bottom: 25px;
	}
}
/*会社概要*/
.information .inner {
	max-width: 1100px;
}
.information .imgflex {
	margin-bottom: 35px;
}
@media (max-width:550px) {
	.information .imgflex {
		margin-bottom: 22px;
	}
}
/*table*/
.c_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.c_table tr {
	border: 1px solid #ccc;
}
.c_table th, .c_table td {
	padding: 15px 5px;
	font-size: 95%;
}
.c_table th {
	font-weight: 400;
	background: #f2f2f2;
	width: 30%;
	border-right: 1px solid #ccc;
}
.c_table td {
	padding-left: 10px;
	background: #fff;
	width: 70%;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
/*map*/
@media(max-width: 550px) {
	.map iframe {
		height: 280px;
	}
}
/*お問い合わせページ ======================================================================================================================*/
.contop {
	margin-bottom: 50px;
}
.conbox {
	width: 49%;
	padding: 10px 20px 20px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid #fff;
	position: relative;
}
.conbox .stitle {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.conbox .stitle::before {
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	color: #b31b0c;
	display: inline-block;
	margin-right: 7px;
	font-size: 0.8em;
}
.conbox a {
	display: block;
	font-size: 1.9rem;
	color: #b31b0c;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
	line-height: 1.8;
}
.conbox a:hover {
	opacity: 0.4;
}
.clink {
	margin-bottom: 13px;
}
@media (max-width: 1060px) {
	.conbox {
		width: 49.5%;
		margin-bottom: 10px;
	}
}
@media (max-width: 790px) {
	.contop {
		text-align: left;
	}
	.contop br {
		display: none;
	}
}
@media (max-width: 750px) {
	.spnone {
		display: none;
	}
	.conbox:last-child {
		margin-bottom: 0 !important;
	}
	.acheck.flexbox li {
		margin-right: 0 !important;
	}
}
@media (max-width: 550px) {
	.contop {
		margin-bottom: 30px;
	}
	.conbox {
		padding: 10px 15px;
		margin-bottom: 15px;
	}
	.conbox .stitle {
		font-size: 1.05rem;
	}
	.conbox a {
		font-size: 1.5rem;
	}
	.conbox .acheck {
		margin-bottom: 5px;
	}
}
/*checklist*/
.acheck li {
	padding-left: 18px;
	position: relative;
	border-bottom: 1px dashed #b31b0c;
	padding-bottom: 3px;
	margin-bottom: 3px;
}
.acheck li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
	color: #b31b0c;
}
.acheck.flexbox {
	justify-content: flex-start;
}
.acheck.flexbox li {
	margin-right: 25px;
	padding-bottom: 0;
	margin-bottom: 0;
}
.acheck.flexbox li:last-child {
	margin-right: 0;
}
.acheck.flexbox li {
	border-bottom: none;
}
/* メール */
.mails {
	padding-bottom: 50px;
}
.mails .maintitle, .quomgb {
	margin-bottom: 50px;
}
@media(max-width:800px) {
	.mails .maintitle, .quomgb {
		margin-bottom: 30px;
	}
}
@media(max-width:550px) {
	.mails {
		padding-bottom: 37px;
	}
	.mails .maintitle, .quomgb {
		margin-bottom: 20px;
	}
}
.note {
	font-size: 88%;
}
.mnote {
	max-width: 915px;
	margin: auto;
	margin-top: 50px;
}
.mpdb {
	padding-bottom: 55px !important;
	margin-bottom: 0 !important;
}
@media(max-width:550px) {
	.mnote {
		font-size: 90%;
		margin-top: 45px;
	}
	.mpdb {
		padding-bottom: 25px !important;
	}
}
.formsel p:last-child {
	margin-bottom: 0;
}
.mailform {
	max-width: 1100px;
	margin: 0 auto;
}
@media (max-width: 550px) {
	.mailform {
		margin-top: 5px;
	}
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #333;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-size: 100%;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #b31b0c;
	padding: 5px;
	margin-right: 5px;
	font-size: 12px;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #b31b0c;
	color: #b31b0c !important;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #333;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
	color: #333;
}
.mailform button {
	display: block;
	text-align: center;
	margin: 0 auto;
	white-space: nowrap;
	border: 1px solid transparent;
	color: #fff;
	background: #b31b0c;
	padding: 12px 0;
	width: 70%;
	max-width: 220px;
	transition: .4s;
}
.mailform button:hover {
	background-color: #fff;
	color: #b31b0c;
	border: 1px solid #b31b0c;
	opacity: 1;
}
.mailform button::before {
	font-family: "Font Awesome 6 Free";
	content: "\f0e0";
	font-weight: bold;
	margin-right: 10px;
}
/*チェックボックス*/
.mailform input[type=checkbox] {
	display: none;
}
.mailform input[type=checkbox] + label {
	display: inline-block;
	padding-left: 20px;
	position: relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
	background: #fff;
	border: 1px solid #b5b5b5;
	content: '';
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0, -50%);
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
	border-right: 3px solid #b31b0c;
	border-bottom: 3px solid #b31b0c;
	content: '';
	display: block;
	height: 13px;
	width: 7px;
	opacity: 0;
	position: absolute;
	top: 25%;
	left: 4px;
	transform: rotate(45deg);
	transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
	opacity: 1;
}
@media (max-width: 450px) {
	.mailform button {
		padding: 8px;
		max-width: 180px;
	}
	.formsel label {
		font-size: 0.95rem;
	}
	.mailform input[type=checkbox] + label {
		display: block;
	}
}
@media (max-width: 800px) {
	.mailform .row {
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1) {
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2) {
		width: 100%;
	}
}
/*個人情報の取り扱いについて*/
@media(max-width:550px) {
	#privacy {
		position: relative;
		top: -150px;
	}
}
.privacy {
	padding-top: 0 !important;
}
.privacy_wrap {
	font-size: clamp(1rem, 0.625rem + 1.2vw, 1.3rem);
	color: #333;
	margin: 0 auto;
	max-width: 1100px;
	border-bottom: 1px solid #333;
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
}
.privacy_header i {
	color: #b31b0c !important;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 14px;
}
.privacy_text span {
	position: relative;
}
.privacy_text span::before {
	content: "■";
	display: inline-block;
	font-size: 0.7rem;
	margin-right: 0.35em;
	transform: translateY(-3px);
	color: #b31b0c;
}
@media(max-width:750px) {
	.privacy_text {
		padding: 20px 15px 30px;
	}
}
.privacy_text p {
	margin-bottom: 17px;
}
.arrow {
	transition: ease-in-out 300ms;
}
.rotate-fa {
	transform: rotate(180deg);
}
.privacy_header span {
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.privacy_gold {
	color: #b31b0c;
}