@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: "Zen Old Mincho", serif;
	font-weight: 600;
	color: #fff;
	font-size: 16px;
	background: #1f1f1f;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
	overflow: auto;
}
.hamopen {
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}
a {
	text-decoration: none;
	transition: .4s;
}
/*=====ウェブアクセシビリティ=====*/
a:focus-visible {
	outline: 4px solid blue !important;
	outline-offset: -1px;
	box-shadow: 0 0 0 4px white;
}
button:focus-visible {
	outline: 4px solid blue !important;
	outline-offset: -1px;
	box-shadow: 0 0 0 4px white;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 100px 0;
	position: relative;
}
@media (max-width: 550px) {
	main section {
		padding: 60px 0 55px;
	}
}
/* 画像 */
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(255, 239, 135, 0.55);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
/*見出し01*/
.maintitle {
	margin-bottom: 65px;
	display: block;
	text-align: center;
	line-height: 0.65;
	position: relative;
	font-weight: 600;
	font-size: clamp(2.3rem, 0.8rem + 4.8vw, 3.5rem);
	color: #fff;
}
.maintitle .mf {
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 0.12em;
	background: linear-gradient(to bottom right, #ce181c, #633d31);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.maintitle.mtleft {
	text-align: left;
}
.txtmgb {
	margin-bottom: 40px !important;
}
.maintitle .sf {
	font-size: 35%;
}
.maintitle.mtleft .sf {
	position: relative;
	padding-left: 47px;
}
.maintitle.mtleft .sf::before {
	background-color: #fff;
	position: absolute;
	content: "";
	top: 0.8em;
	left: 0;
	width: 35px;
	height: 1px;
}
@media (max-width: 750px) {
	.maintitle.mtleft.spcenter .sf {
		padding-left: 0;
	}
	.maintitle.mtleft.spcenter .sf::before {
		content: none;
	}
}
@media (max-width: 550px) {
	.maintitle {
		line-height: 0.75;
	}
	.maintitle .sf {
		font-size: 42%;
	}
	.txtmgb {
		margin-bottom: 33px !important;
	}
	.maintitle {
		margin-bottom: 45px;
	}
}
/*見出し02*/
.stitle {
	font-weight: 600;
	position: relative;
	font-size: clamp(1.15rem, 0.8375rem + 1vw, 1.4rem);
	margin-bottom: 20px;
	padding-bottom: 8px;
	padding-left: 2px;
	line-height: 1.8;
	border-bottom: 1px solid #808080;
}
.stitle::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 95px;
	height: 1px;
	background: linear-gradient(to bottom right, #ce181c, #633d31);
}
.stitle .en {
	font-size: 55%;
	background: linear-gradient(to bottom right, #ce181c, #633d31);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-right: 12px;
	text-transform: uppercase;
	display: block;
}
@media (max-width: 550px) {
	.stitle {
		margin-bottom: 15px;
	}
}
/*見出し03*/
.mtitle {
	font-weight: 600;
	font-size: clamp(1.2rem, 0.575rem + 2vw, 1.7rem);
	position: relative;
	padding-left: 60px;
	margin-bottom: 30px;
}
.mtitle::before {
	background: #fff;
	position: absolute;
	content: "";
	top: 0.95em;
	left: 0;
	width: 45px;
	height: 1px;
	opacity: 0.8;
}
@media (max-width: 550px) {
	.mtitle {
		margin-bottom: 15px;
		padding-left: 38px;
	}
	.mtitle::before {
		width: 25px;
	}
}
/*
.mtitle {
	background: linear-gradient(to right, #a11619, #381408);
	padding: 5px 12px;
	color: #fff;
	font-weight: 600;
	font-size: clamp(1.15rem, 0.7125rem + 1.4vw, 1.5rem);
	margin-bottom: 15px;
}
*/
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 22px;
	display: inline-block;
	width: 260px;
	z-index: 1;
	overflow: hidden;
	line-height: 1.6;
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
	text-transform: uppercase;
	text-align: center;
}
.mainbtn a::after {
	content: '';
	width: 100%;
	height: 102%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right, #4a2c23, #870000, #4a2c23);
	z-index: -1;
	transition: 0.45s;
	opacity: 0;
}
/* hover animation */
.mainbtn a:hover::after {
	opacity: 1;
}
@media (max-width:550px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 210px;
		padding: 15px;
		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%;
	}
	.flexbox div {
		width: 100%;
	}
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 89%;
	max-width: 1200px;
	margin: 0 auto;
}
@media (min-width: 2000px) {
	.inner02 {
		max-width: 1700px;
		width: 92%;
		margin: 0 auto;
	}
}
@media (max-width: 1999px) {
	.inner02 {
		max-width: 100%;
		width: 100%;
	}
	.mauto {
		margin-left: auto;
		margin-right: auto;
	}
	.mauto.w48 {
		width: 42%;
	}
	.mauto.w43 {
		width: 37%;
	}
}
@media (max-width: 750px) {
	.inner02 {
		width: 90%;
		margin: 0 auto;
	}
	.mauto.w48, .mauto.w43 {
		width: 100%;
	}
}
.w65 {
	width: 65%;
}
.w52 {
	width: 52%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 48%;
}
.w43 {
	width: 43%;
}
.w32 {
	width: 32%;
}
/*background*/
.bg_gray::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #333;
	z-index: -100;
}
/*=== 共通部分ここまで ===*/
/* header ================================*/
/* logo */
.header_title a:hover {
	opacity: 0.6;
}
.header_title {
	position: fixed;
	top: 9px;
	left: 12px;
	width: 285px;
	z-index: 100;
	transition: .6s;
}
.header_title img {
	width: 100%;
}
.change .header_title {
	width: 205px;
}
/* btn */
.header_btn {
	position: fixed;
	top: 14px;
	right: 100px;
	display: flex;
	z-index: 999;
	font-size: 1.6rem;
}
.header_btn a {
	color: #fff;
}
.header_btn a:hover {
	opacity: 0.6;
}
/* hamburger */
.hamburger {
	position: fixed;
	display: block;
	height: 33px;
	top: 18.5px;
	right: 24px;
	z-index: 9997;
	width: 60px;
	border: none;
	background-color: transparent;
}
.hamburger.-active .hamburger__line {
	background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
	top: 0;
	transform: rotate(45deg);
	background-color: #fff !important;
}
.hamburger.-active .hamburger__line::after {
	top: 0;
	transform: rotate(-45deg);
	background-color: #fff !important;
}
.hamburger__line {
	display: block;
	height: 2px;
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	transition: 0.4s;
}
.hamburger__line:before, .hamburger__line:after {
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	width: 100%;
	transition: inherit;
}
.hamburger__line, .hamburger__line:before, .hamburger__line:after {
	background-color: #fff;
}
.hamburger__line:before {
	top: -11.5px;
}
.hamburger__line:after {
	top: 11.5px;
}
.hamburger__text {
	position: absolute;
	bottom: -23px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
/**/
.hamburger__text::before {
	content: "menu";
	text-align: center;
	font-size: 0.9rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-left: 3px;
	color: #fff;
}
.hamburger.-active .hamburger__text::before {
	content: 'close';
	position: relative;
	bottom: -9px;
	margin-left: 0;
	color: #fff !important;
}
/**/
.header__nav-area {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	height: 100vh; /* fallback */
	height: calc(var(--vh, 1vh) * 100);
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: 0.4s;
	overflow-y: scroll;
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
}
.header__nav-area::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.65;
	z-index: -1;
}
.header__nav-area::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/hamburger.jpg);
	background-size: cover;
	background-position: center;
	z-index: -2;
	filter: grayscale(100%);
}
.header__nav-area.-active {
	opacity: 1;
	visibility: visible;
}
.global-navigation {
	margin: auto;
	height: fit-content;
	width: 85%;
}
.global-navigation__list {
	margin-bottom: 15px;
}
.global-navigation__list > li {
	margin: 3px 0;
	font-size: 1rem;
	transition: .35s;
	line-height: 1.75;
	display: block;
	padding: 12px 0;
}
.global-navigation__list a {
	color: #fff;
}
.global-navigation__list a:hover {
	opacity: 0.6;
}
.global-navigation__list > li a {
	display: inline-block;
	width: 100%;
	text-align: center;
}
.global-navigation__list > li a span {
	display: block;
	font-size: 120%;
	transition: all .3s;
	text-transform: uppercase;
	white-space: nowrap;
}
/*btn*/
.global-navigation .mainbtn {
	margin-bottom: 5px;
}
.global-navigation .mainbtn a {
	font-size: 0.95rem;
}
.global-navigation .mainbtn a::after {
	opacity: 1;
}
.global-navigation .mainbtn a:hover {
	opacity: 0.6;
}
/*icon*/
.global-navigation .ficons a {
	font-size: 1.55rem;
}
/*accordion menu*/
.accordion__list li {
	font-size: 1rem;
}
.accordion__list li + li {
	margin-top: 11px;
}
.accordion__list li a::before {
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 7px;
	font-size: 0.6rem;
	transform: translateY(-2px);
	color: #4c5434;
}
.accordion__link {
	opacity: 0.85;
}
.accordion {
	height: 0;
	overflow: hidden;
	visibility: hidden;
	transition: 0.4s;
}
.accordion.-active {
	height: auto;
	padding-top: 17px;
	visibility: visible;
}
.global-navigation__link.-accordion {
	position: relative;
	background: none;
	border: none;
	appearance: none;
	width: 100%;
	padding: 0;
	text-align: left;
	color: #fff;
}
.global-navigation__link.-accordion::after {
	content: '';
	display: block;
	height: 12px;
	position: absolute;
	top: 50%;
	right: 5px;
	width: 2px;
	background-color: #4c5434;
	transform: translateY(-50%);
	transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	background-color: #4c5434;
	transform: translateY(-50%);
}
.global-navigation__link.-active::after {
	transform: translateY(-50%) rotate(-90deg);
}
/* animation */
.header__nav-area {
	overflow-x: hidden;
}
.header__nav-area ul li {
	transform: translateX(200px);
	opacity: 0;
}
.header__nav-area .mainbtn {
	transform: translateX(200px);
	opacity: 0;
}
.header__nav-area.-active ul li {
	transform: translateX(0);
	transition: 1.6s ease, opacity 2.6s ease;
	opacity: 1;
}
.header__nav-area.-active .mainbtn {
	transform: translateX(0);
	transition: 1.6s ease, opacity 2.6s ease;
	opacity: 1;
}
.header__nav-area.-active ul li:nth-child(2) {
	transition-delay: 0.15s;
}
.header__nav-area.-active ul li:nth-child(3) {
	transition-delay: 0.3s;
}
.header__nav-area.-active ul li:nth-child(4) {
	transition-delay: 0.45s;
}
.header__nav-area.-active ul li:nth-child(5) {
	transition-delay: 0.6s;
}
.header__nav-area.-active ul li:nth-child(6) {
	transition-delay: 0.75s;
}
.header__nav-area.-active .mainbtn {
	transition-delay: 0.45s;
}
@media (max-width: 650px) {
	.header_btn {
		display: none;
	}
	.hamburger__text {
		bottom: -16px;
	}
	.hamburger__text::before {
		font-size: 0.75rem;
	}
	.hamburger__line {
		width: 50px;
	}
	.hamburger__line:before {
		top: -7.5px;
	}
	.hamburger__line:after {
		top: 7.5px;
	}
	.header_title {
		top: 8px;
		left: 12px;
		width: 150px !important;
	}
	.hamburger {
		top: 10px;
		right: 7px;
	}
	.global-navigation__list > li {
		font-size: 0.83rem;
		padding: 7px 0;
	}
	.global-navigation .mainbtn a {
		font-size: 0.75rem !important;
		width: 80%;
		max-width: 185px;
	}
}
/* footer =======================================*/
/* Rグループ */
.r_group {
	position: relative;
	padding: 80px 0 90px;
	overflow: hidden;
}
.r_group::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/group.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	z-index: -2;
	filter: grayscale(90%);
}
.r_group::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.75;
	z-index: -1;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .r_group::before {
	background-attachment: scroll;
}
.r_group .inner {
	max-width: 1000px;
}
/*title*/
/*
.r_group .maintitle {
	margin-bottom: 0;
}
*/
.r_group .maintitle {
	margin-bottom: 40px;
}
.r_group .maintitle .mf {
	background: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/*flex
.rgflex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.rgflex .maintitle {
	white-space: nowrap;
	margin-right: 50px;
}
*/
/*logo*/
.r_logo {
	/*max-width: 470px;*/
	text-align: center;
	padding: 30px;
	background-color: rgba(255, 255, 255, 0.25);
}
.r_logo img {
	width: 86%;
	/*width: 72%;*/
}
.r_group a {
	display: block;
	margin: auto;
	max-width: 440px;
	width: fit-content;
}
.r_group a:hover {
	opacity: 0.6;
}
@media (max-width: 750px) {
	.r_group::before {
		background-attachment: scroll;
	}
	.r_group .maintitle {
		margin-bottom: 30px;
	}
	.r_group {
		padding: 50px 0 60px;
	}
	.r_logo {
		padding: 15px;
	}
}
/* フッターお問い合わせリンク */
.fax {
	pointer-events: none;
}
.footer_contact {
	position: relative;
	padding: 75px 0 90px;
	background: linear-gradient(to right, #ce181c, #870000, #381408);
	background-size: 200% 200%;
	animation: bggradient 18s ease infinite;
}
@keyframes bggradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.footer_contact .maintitle {
	margin-bottom: 25px !important;
}
.footer_contact .maintitle .mf {
	background: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.footer_contact .btn_wrap {
	display: flex;
	justify-content: space-around;
	margin: 25px auto 0;
	max-width: 1000px;
}
.footer_contact .btn_wrap .btn {
	width: 32%;
	margin: 0 auto;
}
.footer_contact .btn_wrap .btn a {
	text-align: center;
	display: block;
	width: 100%;
	border: 2px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	padding: 20px 5px;
	font-size: 1.2rem;
	white-space: nowrap;
}
.footer_contact .btn_wrap .btn a:hover {
	border: 2px solid #fff;
	background-color: rgba(255, 255, 255, 0.1);
}
.footer_contact p {
	font-size: 1.15rem;
}
@media (max-width: 750px) {
	.footer_contact .btn_wrap {
		display: block;
	}
	.footer_contact .btn_wrap .btn {
		width: 90%;
		margin-bottom: 15px;
	}
}
@media (max-width: 550px) {
	.footer_contact .btn_wrap .btn {
		margin-bottom: 7px;
	}
	.footer_contact p {
		font-size: 100%;
	}
	.footer_contact .btn_wrap .btn a {
		padding: 15px 5px;
		font-size: 1.05rem;
	}
	.footer_contact .btn_wrap {
		margin-top: 27px;
	}
	.footer_contact {
		padding: 53px 0 47px;
	}
}
/* ロゴとアドレス */
.ib {
	display: inline-block;
}
.fwrap {
	padding: 35px 0 40px;
	background: #1f1f1f;
}
@media (max-width: 550px) {
	.fwrap {
		padding: 25px 0 30px;
	}
}
.fnavwrap .inner {
	max-width: 1050px;
}
.flogo {
	color: #fff;
	max-width: 240px;
	width: 80%;
	margin-bottom: 7px;
}
@media (max-width: 1020px) {
	.flogo {
		max-width: 220px;
	}
}
@media (max-width: 550px) {
	.flogo {
		max-width: 160px;
		margin-bottom: 10px;
	}
}
.footer_address {
	text-align: center;
	margin-bottom: 35px;
}
.footer_address p {
	margin-bottom: 0;
}
@media (max-width: 1020px) {
	.footer_address {
		margin-bottom: 0;
	}
	.footer_address p {
		font-size: 90%;
	}
}
/* links */
.fnav {
	display: flex;
}
.fnav li {
	width: calc(100% / 6);
	text-align: center;
	border-right: 1px solid #808080;
}
.fnav li:last-child {
	border-right: none;
}
.fnav li a {
	text-align: center;
	color: #fff;
	transition: .3s;
}
.fnav li a:hover {
	color: #ce181c;
}
.fnavwrap nav {
	margin-bottom: 17px;
}
@media (max-width: 1020px) {
	.fnavwrap nav {
		display: none;
	}
}
/* コピーライト */
.copyright {
	text-align: center;
	padding: 7px 0 13px;
	background: #1f1f1f;
	color: #fff;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 550px) {
	.copyright {
		padding: 5px 3px 8px;
	}
}
/*ページ上に戻るボタン*/
.go_top {
	display: block;
	width: 61px;
	height: 61px;
	box-sizing: border-box;
	background: linear-gradient(to top right, #bdc3c7, #3d4e5e);
	text-align: center;
	letter-spacing: -1px;
	font-size: 85%;
	text-decoration: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 999;
	border-radius: 50px;
}
.go_top::before {
	font-family: "Font Awesome 6 Free";
	content: "\f124";
	font-weight: bold;
	color: #fff;
	font-size: 0.9rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.go_top:hover {
	opacity: 0.6;
}
.tfade {
	position: relative;
	z-index: 9;
}
@media(max-width:550px) {
	.go_top {
		width: 50px;
		height: 50px;
		right: 12px;
	}
	.go_top::before {
		font-size: 0.7rem;
	}
}
/*最初にロゴを表示 ===========================*/
.start {
	background: linear-gradient(to right, #ce181c, #870000, #381408);
	background-size: 200% 200%;
	animation: bggradient 4s ease;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9998;
}
.start div {
	width: 330px;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	overflow: hidden;
}
.start div img {
	width: 100%;
	height: 100%;
	animation: fadeIn 1.15s ease 0.35s 1 normal backwards;
}
@media (max-width: 1090px) {
	.start div {
		width: 40vw;
	}
}
@media (max-width: 600px) {
	.start div {
		width: 55vw;
	}
}
/* メインビジュアル ===========================*/
.topbg::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #1f1f1f;
	z-index: -110;
}
.topfvwrap {
	overflow: hidden;
	position: relative;
	height: 100vh;
	min-height: 705px;
}
.topfvwrap::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #111;
	z-index: 1;
	opacity: 0.4;
}
.topfv {
	position: fixed;
	z-index: -9999;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
}
.fvvideo {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.slide_text {
	white-space: nowrap;
	position: absolute;
	font-size: 2.3rem;
	letter-spacing: 0.12em;
	z-index: 5;
	line-height: 1.65;
	color: #fff;
	bottom: 7%;
	left: 3.5%;
	overflow: hidden;
	text-transform: uppercase;
}
.slide_text span {
	font-size: 80%;
	display: block;
}
.slide_text p {
	animation: fadeIn 1.5s ease 4.1s 1 normal backwards;
	margin-bottom: 0;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(50%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (max-width: 1060px) {
	.slide_text {
		font-size: 3.5vw;
	}
}
@media (max-width: 550px) {
	.topfv {
		position: absolute;
	}
	.topfvwrap {
		height: calc(100vh - 55px);
		min-height: auto;
	}
	.slide_text {
		bottom: 5.5%;
		left: 5%;
	}
	.slide_text span {
		font-size: 150%;
		margin-bottom: 3px;
	}
}
/*============*/
.pdb {
	padding-bottom: 55px !important;
}
.pdb0 {
	padding-bottom: 1px !important;
}
@media (max-width: 550px) {
	.pdb {
		padding-bottom: 20px !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: 45px;
}
@media (max-width: 550px) {
	.tbtn {
		margin-top: 27px;
	}
}
.aic {
	align-items: center;
}
/*アニメーション*/
/* flowup */
.flowup {
	opacity: 0;
	transform: translate(7px, 7px);
	transition: opacity 1.15s, transform 1.15s;
}
.flowup.inview {
	opacity: 1;
	transform: translate(0);
}
/*見出しアニメ*/
.bdb, .bdb.stitle {
	position: relative;
	border-bottom: none;
}
.bdb.stitle::after {
	content: none;
}
.bdb::before {
	content: '';
	display: block;
	height: 1px;
	background: linear-gradient(to right, #ce181c, #870000, #521a07);
	position: absolute;
	bottom: 0;
	opacity: 0;
	width: 0;
	transition: 2s;
	transition-delay: 0.45s;
}
.inview.bdb::before {
	width: 100%;
	opacity: 1;
}
/* img */
.imgslide {
	position: relative;
	overflow: hidden;
	opacity: 0;
	transition: 0.35s;
}
.imgslide.inview {
	opacity: 1;
}
.imgslide img {
	opacity: 0;
	transition: 1.5s cubic-bezier(0.6, 0, 0.07, 1);
	transform: scale(2.2);
}
.imgslide.inview img {
	opacity: 1;
	transform: scale(1);
}
.imgslide::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right, #ce181c, #190a05);
	z-index: 1;
	opacity: 0;
}
.imgslide.inview.up::after {
	animation: slidein 1.1s ease 0.65s 1 normal backwards;
}
.imgslide.inview.down::after {
	transform: scaleX(-1) scaleY(-1);
	animation: slidein 1.1s ease 0.65s 1 normal backwards;
}
@keyframes slidein {
	0% {
		opacity: 1;
	}
	5% {
		clip-path: polygon(0% -100%, 100% -100%, 100% 100%, 0% 150%);
	}
	99% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		clip-path: polygon(0% -100%, 100% -100%, 100% -50%, 0% 0%);
	}
}
/*delay*/
.delay01 {
	transition-delay: 0.45s !important;
}
.delay02 {
	transition-delay: 0.65s !important;
}
@media (max-width: 750px) {
	.delay01, .delay02 {
		transition-delay: 0.3s !important;
	}
}
/**/
@media (max-width:750px) {
	.spimgmaint {
		margin-bottom: 35px;
	}
}
/* 新着情報　====================================*/
.news {
	padding: 60px 0;
}
.news .inner {
	max-width: 1300px;
}
.news .flexbox {
	flex-wrap: nowrap;
}
.newstitle {
	white-space: nowrap;
	height: fit-content;
	margin-right: 150px;
}
.newsl {
	width: 100%;
}
@media (max-width: 1100px) {
	.newstitle {
		margin-right: 50px;
	}
}
@media (max-width: 750px) {
	.newstitle {
		margin-right: 0;
	}
	.news {
		padding: 55px 0 45px !important;
	}
	.news .maintitle {
		margin-bottom: 3px !important;
	}
}
/* 事業内容 ====================================*/
.sertext {
	max-width: 920px;
	margin-bottom: 45px;
}
.sertext span {
	display: block;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	font-size: 130%;
	margin-bottom: 10px;
	line-height: 1.6;
}
@media (max-width: 750px) {
	.sertext span {
		font-size: 115%;
	}
}
.services {
	overflow: hidden;
	position: relative;
}
.services::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.75;
	z-index: -1;
}
.services::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/services.jpg);
	background-size: cover;
	background-position: center;
	z-index: -2;
	filter: grayscale(90%);
	background-attachment: fixed;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .services::after {
	background-attachment: scroll;
}
.servicesbg {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	counter-reset: num;
	border-top: 2px solid rgba(255, 255, 255, 0.3);
}
.servicesbg a {
	overflow: hidden;
	position: relative;
	width: calc(100%/5);
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	counter-increment: num;
	z-index: 5;
}
/*フィルター*/
.servicesbg a::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	z-index: 1;
	opacity: 0;
	pointer-events: none;
}
.servicesbg a:hover::after {
	opacity: 0.3;
	background: #000;
	transition: 0.4s;
}
/*線*/
.servicesbg a .slline::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	border-left: 2px solid rgba(255, 255, 255, 0.3);
	z-index: 5;
	pointer-events: none;
}
.servicesbg a:first-child .slline::after {
	border-left: none;
}
.servicesbg a:last-child .slline::after {
	border-right: 2px solid rgba(255, 255, 255, 0.3);
}
/*img*/
.servicesbg a img {
	opacity: 0;
	object-fit: cover;
	width: 100%;
	height: 600px;
}
.servicesbg img:hover {
	opacity: 1;
	transition: opacity 0.4s, transform 4s ease;
	transform: scale(1.1);
}
/*矢印*/
.servicesbg a::before {
	position: absolute;
	bottom: 8%;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	font-family: "Font Awesome 6 Free";
	content: "\f124";
	font-weight: bold;
	line-height: 1;
	font-size: 0.65rem;
	color: #fff;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .6s;
	z-index: 3;
	pointer-events: none;
}
.servicesbg a:hover::before {
	border: 1px solid transparent;
	background: linear-gradient(to bottom right, #ce181c, #633d31);
	transition: 1.4s;
	transform: translateX(-45%) rotate(45deg);
}
/*見出し*/
.servicesbg a h3 {
	color: #fff;
	position: relative;
	font-weight: 600;
	font-size: 1.45rem;
	white-space: nowrap;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
/*ナンバリング*/
.servicesbg a h3::before {
	color: #ce181c;
	content: "0"counter(num);
	position: absolute;
	top: -85%;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Cormorant Unicase', serif;
	font-size: 88%;
}
/* text */
.servicesbg a p {
	color: #fff;
	position: relative;
}
.servicesbg a .sltext {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: auto;
	pointer-events: none;
	z-index: 2;
}
@media(max-width:1475px) {
	.servicesbg a h3 {
		font-size: 1.5vw;
	}
	.servicesbg a img {
		height: 35vw;
	}
	.servicesbg a::before {
		width: 45px;
		height: 45px;
		font-size: 0.55rem;
	}
}
@media(max-width:935px) {
	.servicesbg a .slline::after {
		border-left: none;
	}
	.servicesbg a:last-child .slline::after {
		border-right: none;
		border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	}
	.servicesbg a img {
		opacity: 1;
	}
	.servicesbg a::after {
		opacity: 0.5;
	}
	.servicesbg a h3::before {
		color: #fff;
	}
	.servicesbg a h3 {
		font-size: 1.4rem;
	}
	.servicesbg a img {
		height: 450px;
	}
	.servicesbg {
		display: block;
	}
	.servicesbg a {
		width: 100%;
	}
	.servicesbg a::before {
		bottom: 20px;
	}
	.servicesbg a div::after {
		border-left: none;
	}
	.servicesbg a:last-child div::after {
		border-bottom: none;
		border-right: none;
	}
}
@media(max-width:550px) {
	.services::after {
		background-attachment: scroll;
	}
	.servicesbg a .sltext {
		top: 48%;
	}
	.servicesbg a h3 {
		font-size: 1.2rem;
	}
	.servicesbg a img {
		height: 240px;
	}
}
/* 工事対応可能エリア ====================================*/
.area {
	overflow: hidden;
	padding: 130px 0 150px;
}
.area .inner {
	max-width: 1020px;
}
.area::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: -1;
	background: url(../img/area.svg);
	background-size: contain;
	background-position: right 27% center;
	background-repeat: no-repeat;
	opacity: 0.7;
	clip-path: polygon(0% -100%, 100% -100%, 100% -50%, 0% 0%);
	transition: 2.6s cubic-bezier(0.86, 0, 0.07, 1);
	filter: brightness(0) invert(1);
}
.area.inview::after {
	opacity: 0.2;
	clip-path: polygon(0% -100%, 100% -100%, 100% 100%, 0% 150%);
}
.areabox {
	width: 50%;
	margin-right: 0;
}
.areatext {
	font-size: 130%;
}
@media(max-width:1460px) {
	.area::after {
		background-position: right 15% center;
	}
}
@media(max-width:750px) {
	.area {
		padding: 80px 0 100px;
	}
	.areabox {
		width: 100%;
	}
	.area::after {
		background-position: center;
		transition: 1.3s ease;
	}
	.area.inview::after {
		opacity: 0.07;
	}
	.areatext {
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
	}
}
/* スタッフブログ ====================================*/
.blog .longimg {
	display: flex;
	height: auto;
}
.blog .longimg img {
	object-fit: cover;
}
.btext {
	padding: 50px 0;
}
.btext {
	width: 35%;
}
.blog .longimg {
	width: 30%;
}
.blog .flexbox {
	align-items: center;
}
@media (max-width: 1580px) {
	.blog .flexbox {
		align-items: stretch;
	}
}
@media (max-width: 1285px) {
	.btext {
		width: 45%;
	}
	.blog .longimg {
		width: 24%;
	}
}
@media(max-width: 750px) {
	.blog {
		padding: 0;
	}
	.blog .longimg img {
		height: auto;
		margin-bottom: 0;
	}
	.btext {
		padding: 55px 0 65px;
		width: 90% !important;
		margin: auto;
	}
	.blog .longimg {
		width: 100%;
	}
}
/* 採用情報 ====================================*/
.recruit .inner {
	max-width: 1400px;
}
.abimgs {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.abimgs div {
	position: relative;
	width: 48%;
}
.abimgs div:nth-child(2) {
	top: 25px;
}
.reverse .abimgs div:nth-child(1) {
	top: 25px;
}
.reverse .abimgs div:nth-child(2) {
	top: 0;
}
@media (max-width:750px) {
	.abimgs {
		margin-bottom: 50px;
	}
}
/* 下層ページトップ ===================================================================================================================*/
.fv {
	padding: 130px 0 90px;
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}
.fv::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/fv.webp);
	background-repeat: repeat !important;
	background-size: cover !important;
	background-position: 50% 51%;
	z-index: -1;
	filter: grayscale(50%);
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #111;
	opacity: 0.7;
	z-index: 1;
}
.fv h2 {
	text-align: center;
	margin-bottom: 20px !important;
	font-size: clamp(1.45rem, 0.2625rem + 3.8vw, 2.4rem);
	font-weight: 600;
	line-height: 1;
	z-index: 1;
	position: relative;
	color: #fff;
	text-transform: capitalize;
}
@media(max-width:1020px) {
	.fv {
		padding: 110px 0 60px;
	}
}
@media(max-width:650px) {
	.fv {
		padding: 75px 0 30px;
	}
	.fv h2 {
		margin-bottom: 15px !important;
	}
}
/* breadcrumb */
.binner {
	line-height: 1.6;
	width: 97%;
	font-size: 1.05rem;
	position: relative;
	color: #fff;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: relative;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
}
.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: #fff;
}
.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:850px) {
	.binner {
		font-size: 0.9rem;
	}
}
@media(max-width:650px) {
	.binner {
		font-size: 0.75rem;
	}
}
/* 事業内容ページ ===================================================================================================================*/
.sectoptitle {
	font-size: clamp(1.15rem, 0.775rem + 1.2vw, 1.45rem);
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.8;
}
.sectbox {
	background: #333;
	padding: 30px;
	position: relative;
}
.sectbox::before, .sectbox::after {
	content: '';
	position: absolute;
	border: solid #ce181c;
	width: 30px;
	height: 30px;
	opacity: 0.4;
}
.sectbox::before {
	top: -5px;
	left: -5px;
	border-width: 1px 0 0 1px;
}
.sectbox::after {
	bottom: -5px;
	right: -5px;
	border-width: 0 1px 1px 0;
}
@media(max-width:550px) {
	.sectbox {
		padding: 25px 17px;
	}
}
/**/
.servicespage .stitle {
	font-size: clamp(1.3rem, 0.8rem + 1.6vw, 1.7rem);
}
/* 採用情報ページ ===================================================================================================================*/
/*当社では事業拡大に伴い、一緒に働く仲間を募集しています。*/
.rectop {
	font-size: clamp(1.1rem, 0.475rem + 2vw, 1.6rem);
	font-weight: 600;
	margin-bottom: 70px;
	padding-bottom: 5px;
}
.recimgWrap {
	width: 100%;
	position: relative;
}
.recimgWrap::before {
	content: '';
	width: 70%;
	height: 100%;
	position: absolute;
	top: 10%;
	right: 0;
	background: url(../img/recruitbg.webp);
	background-repeat: repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
	filter: grayscale(100%);
}
.recimg {
	width: 70%;
}
@media(max-width:850px) {
	.recimgWrap::before {
		top: 25%;
	}
}
@media(max-width:550px) {
	.rectop {
		margin-bottom: 40px;
		padding-bottom: 10px;
	}
}
/* list */
/*flex*/
.listflex {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.listflex li {
	width: 48%;
	margin: 0 0.7% 0;
}
@media(max-width:850px) {
	.listflex {
		display: block;
	}
	.listflex li {
		width: 100%;
		margin: 0;
	}
}
/*check list*/
.acheck li {
	padding-left: 20px;
	position: relative;
	border-bottom: 1px dotted #808080;
	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;
	background: linear-gradient(to bottom right, #ce181c, #633d31);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/*dots list*/
.dotslist li {
	padding-left: 20px;
	position: relative;
	border-bottom: 1px dotted #808080;
	padding-bottom: 3px;
	margin-bottom: 3px;
}
.dotslist li::before {
	content: "・";
	font-weight: bold;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to bottom right, #ce181c, #633d31);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/*table*/
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.info_table tr:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.info_table th {
	background: transparent;
	width: 35%;
}
.info_table th, .info_table td {
	font-weight: 600;
	padding: 24px 0;
}
.info_table td {
	padding-left: 10px;
	padding-right: 10px;
	width: 65%;
	background: transparent;
}
.info_table i{
	background: linear-gradient(to bottom right, #ce181c, #633d31);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/*map*/
.mapbox iframe {
	width: 100%;
	height: 400px;
}
@media(max-width: 550px) {
	.info_table {
		border-collapse: collapse;
	}
	.info_table tr {
		border-bottom: none;
	}
	.info_table td {
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
		margin-bottom: 0;
	}
	.info_table td, .info_table th {
		width: 100%;
		padding: 13px 13px 17px;
		display: block;
	}
	.info_table th {
		text-align: left;
		padding-bottom: 0;
	}
	.mapbox th {
		padding-bottom: 8px;
	}
	.mapbox iframe {
		height: 220px;
	}
}
/* 会社概要・お問い合わせページ ===================================================================================================================*/
/* 理念 */
.philosophy::before, .philosophy::after {
	position: absolute;
	content: "";
	width: 22%;
	height: 100%;
	top: 0;
	background: linear-gradient(to top right, #bdc3c7, #3d4e5e);
	z-index: -1;
	opacity: 0.1;
	transform: skew(20deg);
	animation: phanim 1.1s ease 0.01s 1 normal backwards;
}
.philosophy::before {
	left: -60px;
}
.philosophy::after {
	right: -350px;
}
@keyframes phanim {
	0% {
		opacity: 0;
	}
	5% {
		clip-path: polygon(0% -100%, 100% -100%, 100% -50%, 0% 0%);
		opacity: 0.1;
	}
	100% {
		clip-path: polygon(0% -100%, 100% -100%, 100% 100%, 0% 150%);
		opacity: 0.1;
	}
}
.phtext {
	font-size: clamp(1.3rem, 0.3rem + 3.2vw, 2.1rem);
}
.phtext span {
	display: block;
	font-size: 70%;
	background: linear-gradient(to bottom right, #ce181c, #633d31);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	line-height: 1.7;
}
@media(max-width: 750px) {
	.philosophy::before, .philosophy::after {
		width: 40%;
	}
	.philosophy::after {
		right: -40%;
	}
	.spmgb {
		margin-bottom: 20px;
	}
	.phtext span {
		margin-top: 5px;
		font-size: 55%;
		line-height: 1.8;
	}
}
/* 代表挨拶 */
p.glast {
	text-align: right;
	margin-top: 23px;
}
.greeting .inner {
	max-width: 1065px;
}
.greeting::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/greeting.webp);
	background-attachment: fixed;
	background-size: cover;
	background-position: 80% 50%;
	z-index: -2;
	filter: grayscale(90%);
}
.greeting::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.8;
	z-index: -1;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .greeting::before {
	background-attachment: scroll;
}
@media(max-width: 550px) {
	.greeting::before {
		background-attachment: scroll;
	}
}
/* 概要 */
/*img*/
.twflex {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	margin-bottom: 80px;
}
.twflex div {
	width: 48.5%;
	position: relative;
}
.twflex div:last-child {
	top: 20px;
}
@media(max-width: 550px) {
	.twflex {
		margin-bottom: 50px;
	}
	.twflex div {
		width: 48%;
	}
	.twflex div:first-child {
		top: -7px;
	}
	.twflex div:last-child {
		top: 7px;
	}
}
/*お問い合わせ ==========================================================*/
.contoptext {
	margin-bottom: 45px;
	max-width: 695px;
}
.contactpage .inner {
	max-width: 1168px;
}
.contop {
	margin-bottom: 50px;
}
.conbox {
	width: 49.3%;
	padding: 10px 20px 20px;
	background: #1f1f1f;
	position: relative;
}
.conbox .stitle {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.conbox a {
	display: block;
	font-size: clamp(1.55rem, 0.9875rem + 1.8vw, 2rem);
	color: #fff;
	line-height: 1.8;
}
.conbox a i {
	background: linear-gradient(to bottom right, #ce181c, #633d31);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.conbox a:hover {
	opacity: 0.6;
}
.clink {
	margin-bottom: 13px;
}
@media (max-width: 1060px) {
	.conbox {
		width: 49.5%;
		margin-bottom: 10px;
	}
}
@media (max-width: 750px) {
	.contoptext {
		margin-bottom: 37px;
	}
	.contop {
		text-align: left;
	}
	.spnone {
		display: none;
	}
	.conbox:last-child {
		margin-bottom: 0 !important;
	}
	.acheck.flexbox li {
		margin-bottom: 0;
		padding-bottom: 0;
		margin-right: 0 !important;
	}
	.bnote {
		font-size: 90%;
	}
	.clink {
		margin-bottom: 7px;
	}
}
@media (max-width: 550px) {
	.contop {
		margin-bottom: 30px;
	}
	.conbox {
		padding: 10px 15px;
		margin-bottom: 10px;
	}
	.conbox .stitle {
		font-size: 1.05rem;
	}
	.conbox .acheck {
		margin-bottom: 5px;
	}
}
/* check list */
.acheck.flexbox {
	justify-content: flex-start;
}
.acheck.flexbox li {
	margin-right: 25px;
	margin-bottom: 0;
	padding-bottom: 0;
}
.acheck.flexbox li:last-child {
	margin-right: 0;
}
.acheck.flexbox li {
	border-bottom: none;
}
.acheck.flexbox li, .faxtext {
	font-size: 90%;
}
/* メール */
.mails .stitle {
	margin-bottom: 0;
}
.mails .stitle::before {
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	color: #ce181c;
	display: inline-block;
	margin-right: 7px;
	font-size: 0.8em;
}
.mails {
	padding-bottom: 50px;
}
.mails .maintitle {
	margin-bottom: 50px;
}
@media(max-width:550px) {
	.mails {
		padding-bottom: 20px;
	}
	.mails .maintitle {
		margin-bottom: 20px;
	}
}
.mnote {
	max-width: 930px;
	margin: auto;
	margin-top: 45px;
}
.mpdb {
	padding-bottom: 55px !important;
	margin-bottom: 0 !important;
}
@media(max-width:550px) {
	.mnote {
		font-size: 90%;
		margin-top: 37px;
	}
	.mpdb {
		padding-bottom: 25px !important;
	}
}
.formsel p:last-child {
	margin-bottom: 0;
}
.mailform {
	margin: 30px auto 0;
}
@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 #fff;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-size: 0.95rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: linear-gradient(to bottom right, #ce181c, #633d31);
	padding: 5px;
	margin-right: 5px;
	font-size: 12px;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #ce181c;
	color: #ce181c !important;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #fff;
}
.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;
	padding: 22px 0;
	width: 280px;
	transition: .4s;
	border: 1px solid #fff;
	color: #fff;
	background: transparent;
	position: relative;
}
.mailform button:hover {
	color: #fff;
}
.mailform button::after {
	content: '';
	width: 100%;
	height: 102%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right, #4a2c23, #870000, #4a2c23);
	z-index: -1;
	transition: 0.45s;
	opacity: 0;
}
.mailform button:hover::after {
	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: 5px;
	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 #ce181c;
	border-bottom: 3px solid #ce181c;
	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: 550px) {
	.mailform button {
		width: 220px;
		padding: 13px 0;
	}
	.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%;
	}
}
/*個人情報の取り扱いについて*/
.privacy {
	padding-top: 0 !important;
}
.privacy_wrap {
	margin: 0 auto;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
	font-size: clamp(1rem, 0.6875rem + 1vw, 1.25rem);
	padding-bottom: 8px;
}
.privacy_header i {
	background: linear-gradient(to top right, #bdc3c7, #3d4e5e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 16px;
}
.privacy_text span {
	position: relative;
}
.privacy_text span::before {
	content: "■";
	display: inline-block;
	font-size: 0.7rem;
	margin-right: 0.35em;
	transform: translateY(-1.5px);
}
@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: 5px;
	transform: translate(-50%, -50%);
	font-size: 90%;
}
/*
.privacy_gold {
	color: #ce181c;
}
*/