@charset "UTF-8";

:root {
	--basic: #2E2624;
	--red: #9B282D;
	--bg: #FCFCFC;
	--gray: rgba(46,38,36,0.15);
	--white: #FCFCFC;
}
body {
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-style: normal;
	letter-spacing: 0.04em;
	color: var(--basic);
	min-width: 320px;
}
a, a:hover {
	color: var(--basic);
	text-decoration: none;
	transition: 0.3s;
}
a:hover {
	text-decoration: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	line-height: 1.6;
	font-weight: 500;
	letter-spacing: 0.04em;
}
strong, .strong {
	font-weight: 700;
}
dl, dt, dd {
	font-weight: normal;
	margin: 0;
}
.relative {
	position: relative;
}
.en {
	font-family: "Josefin Sans", sans-serif;
	letter-spacing: 0;
}
.min {
	font-family: "Zen Old Mincho", serif;
}
.container {
	max-width: 1180px;
	padding-left: 40px;
	padding-right: 40px;
}
.container-wide {
	max-width: 1280px;
}

@media (min-width: 768px) {
	
}
@media (max-width: 767px) {
	.container {
		padding-left: 30px;
		padding-right: 30px;
	}
	.container-wide {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* ------------------------------ */
/* p, ul, ol, img */
/* ------------------------------ */

/* ------------------------------ */
/* .btn */
/* ------------------------------ */

.btn {
	position: relative;
	display: flex;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 75px;
	border: none;
	border-radius: 15px;
	background-color: var(--red);
	border: 1px solid var(--red);
	color: #ffffff;
	font-size: 19px;
	font-weight: 500;
	line-height: 1.4;
	padding: 10px 60px 10px 30px;
}
.btn:hover {
	color: #ffffff;
}
.btn::after {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	border: 1px solid #ffffff;
	background-color: #ffffff;
	border-radius: 4px;
	color: var(--red);
	font-family: "Material Symbols Sharp";
	content: "\e941";
	font-weight: 100;
	font-size: 28px;
	line-height: 1;
	text-align: center;
	transition: 0.3s;
}
.arrow {
	position: relative;
	padding-right: 55px;
}
.arrow::after {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid #ffffff;
	background-color: #ffffff;
	border-radius: 4px;
	color: var(--red);
	font-family: "Material Symbols Sharp";
	content: "\e941";
	font-weight: 100;
	font-size: 26px;
	line-height: 1;
	text-align: center;
	transition: 0.3s;
}
@media (min-width: 768px) {
	.btn:hover {
		background-color: #ffffff;
		border: 1px solid var(--red);
		color: var(--red);
	}
	.btn:hover::after {
		background-color: var(--red);
		border: 1px solid var(--red);
		color: #ffffff;
	}
	.arrow-wrap:hover .arrow::after {
		background-color: rgba(255,255,255,0);
		color: #ffffff;
	}
}
@media (max-width: 767px) {
	.btn {
		font-size: 18px;
	}
	.arrow {
		padding-right: 50px;
	}
	.arrow::after {
		width: 35px;
		height: 35px;
	}
}

/*----------------------------------------*/
/* .header */
/*----------------------------------------*/

.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: var(--white);
	z-index: 100;
	min-width: 320px;
}
.header .container {
	width: 100%;
	max-width: 100%;
	padding-right: 0;
}
.header > * > .inner {
	display: flex;
	align-items: center;
	width: 100%;
	height: 80px;
	transition: 0.3s;
}
@media (max-width: 991px) {
	.header .inner {
		justify-content: space-between;
		height: 55px;
	}
}
@media (max-width: 767px) {
	.header .container {
		padding-left: 20px;
	}
}

/* .site-logo */
.header .site-logo {
	display: block;
}
.header .site-logo dl {
	display: flex;
	align-items: center;
}
.header .site-logo dl dt {
	padding: 2px 15px 0 0;
}
.header .site-logo dl dd > * {
	font-size: 27px;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0;
}
@media (max-width: 1199px) {
	.header .site-logo dl dt {
		padding: 0 10px 0 0;
	}
	.header .site-logo dl dt img {
		width: 85px;
	}
	.header .site-logo dl dd > * {
		font-size: 18px;
	}
}
@media (max-width: 370px) {
	.header .site-logo dl dt {
		padding: 0 5px 0 0;
	}
	.header .site-logo dl dt img {
		width: 60px;
	}
	.header .site-logo dl dd > * {
		font-size: 16px;
	}
}

/* .pc-nav */
.header .pc-nav {
	height: 100%;
	letter-spacing: 0.06em;
	line-height: 1.4;
}
.header .pc-nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.header .pc-nav > ul {
	display: flex;
	align-items: center;
	height: 100%;
	font-size: 16px;
	padding-left: 120px;
}
.header .pc-nav > ul > li {
	display: flex;
	align-items: center;
	height: 100%;
	margin-right: 10px;
}
.header .pc-nav > ul > li > a {
	display: flex;
	align-items: center;
	height: 35px;
	border-radius: 30px;
	padding: 0 15px;
}
@media (min-width: 768px) {
	.header .pc-nav > ul > li:hover a {
		background-color: rgba(46,38,36,0.1);
	}
}
@media (max-width: 1299px) {
	.header .pc-nav > ul {
		font-size: 14px;
		padding-left: 40px;
	}
	.header .pc-nav > ul > li {
		margin-right: 5px;
	}
}
@media (max-width: 991px) {
	.header .pc-nav {
		display: none;
	}
}

/* ------------------------------ */
/* グローバルナビ｜メガメニュー  */
/* ------------------------------ */

.header .nav-ul-child {
	display: block;
	position: absolute;
	top: 100%;
	right: 0;
	width: calc(100% - 480px);
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
	pointer-events: none;
}
.header .pc-nav > ul > li:hover .nav-ul-child {
	visibility: visible;
	opacity: 1;
	z-index: 1;
	pointer-events: auto;
}
@media (max-width: 1299px) {
	.header .nav-ul-child {
		width: calc(100% - 100px);
	}
}

/* .mega-menu */
.header .mega-menu {
	background-image: url("../img/common/nav-bg-company.png");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto 100%;
	background-color: var(--basic);
	border-radius: 0 0 0 80px;
	color: #ffffff;
	padding: 45px 80px;
}
.header .mega-menu-works {
	background-image: url("../img/common/nav-bg-works.png");
}
.header .mega-menu a {
	color: #ffffff;
}
.header .mega-menu .inner {
	max-width: 410px;
}
.header .mega-menu-works .inner {
	max-width: 510px;
}
.header .mega-menu .title-wrap {
	border-bottom: 1px solid rgba(255,255,255,0.15);
	padding: 0 15px 25px 15px;
	margin-bottom: 15px;
}
.header .mega-menu .title-wrap dl dt {
	font-size: 15px;
}
.header .mega-menu .title-wrap dl dd {
	position: relative;
	font-size: 32px;
}
.header .mega-menu .title-wrap dl dd::after {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid #ffffff;
	background-color: #ffffff;
	border-radius: 4px;
	color: var(--basic);
	font-family: "Material Symbols Sharp";
	content: "\e941";
	font-weight: 100;
	font-size: 75%;
	line-height: 1;
	text-align: center;
	transition: 0.3s;
}
.header .mega-menu .list-wrap ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2.5px;
}
.header .mega-menu .list-wrap ul li {
	display: inline-block;
	margin-top: 5px;
	padding: 2.5px;
}
.header .mega-menu .list-wrap ul li a {
	display: flex;
	align-items: center;
	height: 35px;
	border-radius: 30px;
	font-size: 16px;
	padding: 0 15px;
}
@media (min-width: 768px) {
	.header .mega-menu .title-wrap a:hover dl dd::after {
		background-color: rgba(255,255,255,0);
		color: #ffffff;
	}
	.header .mega-menu .list-wrap ul li a:hover {
		background-color: rgba(255,255,255,0.08);
	}
}

/* ------------------------------ */
/* .hamburger */
/* ------------------------------ */

@media (min-width: 992px) {
	.hamburger {
		display: none !important;
	}
}
.hamburger {
	position: relative;
	display: block;
	padding: 0;
	border-radius: 0;
	border: 0;
	width: 55px;
	height: 55px;
	background-color: var(--red);
}
.hamburger .navbar-toggler-icon {
	display: block;
	width: 24px;
	height: 1px;
	border-radius: 0;
	background-color: #ffffff;
	position: absolute;
	transition: 0.3s;
	transform: translate(-50%,-50%) rotate(0);
	top: 50%;
	left: 50%;
}
.hamburger .navbar-toggler-icon::before,
.hamburger .navbar-toggler-icon::after {
	position: absolute;
	content: "";
	display: block;
	width: 24px;
	height: 1px;
	border-radius: 0;
	background-color: #ffffff;
	transform-origin: center;
	transition: 0.3s;
}
.hamburger .navbar-toggler-icon::before {
	transform: translate(0,-7px) rotate(0deg);
}
.hamburger .navbar-toggler-icon::after {
	transform: translate(0,7px) rotate(0deg);
}
/*オープン*/
.hamburger.open .navbar-toggler-icon {
	width: 0;
}
.hamburger.open .navbar-toggler-icon::before {
	transform: translate(-50%,-50%) rotate(30deg);
}
.hamburger.open .navbar-toggler-icon::after {
	transform: translate(-50%,-50%) rotate(-30deg);
}
@media (max-width: 991px) {
	body.fixed {
		position: relative;
		overflow: hidden;
		position: fixed;
		width: 100%;
		height: 100%;
	}
}

/* ------------------------------ */
/* SPメニュー */
/* ------------------------------ */

.sp-nav {
	display: none;
	background-color: var(--red);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	overflow: auto;
	padding: 55px 30px;
}
.sp-nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.sp-nav ul li + li {
	border-top: 1px solid rgba(255,255,255,0.15);
}
.sp-nav ul li a {
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: #ffffff;
	padding: 30px 0 30px 15px;
}
.sp-nav ul li a::after {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	border: 1px solid #ffffff;
	background-color: #ffffff;
	border-radius: 4px;
	color: var(--red);
	font-family: "Material Symbols Sharp";
	content: "\e941";
	font-weight: 100;
	font-size: 28px;
	line-height: 1;
	text-align: center;
	transition: 0.3s;
}
.sp-nav .btn {
	background-color: rgba(46,38,36,0.3);
	font-size: 18px;
}
@media (min-width: 992px) {
	.sp-nav {
		display: none !important;
	}
}
@media (min-width: 768px) {
	.sp-nav .btn:hover {
		background-color: #ffffff;
		color: var(--red;)
	}
}

.sp-nav .tel-wrap {
	font-size: 14px;
	text-align: center;
	color: #ffffff;
	margin-top: 20px;
}
.sp-nav .tel-wrap dl dt {
	background-image: url("../img/common/icon-tel.svg");
	background-repeat: no-repeat;
	background-position: left center;
	width: fit-content;
	font-weight: 500;
	padding-left: 30px;
	margin: 0 auto;
}
.sp-nav .tel-wrap dl dd:nth-child(2) a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
}
.sp-nav .tel-wrap dl dd:nth-child(2) .tel {
	display: flex;
	align-items: center;
	height: 25px;
	background-color: rgba(255,255,255,0.08);
	border-radius: 30px;
	font-size: 12px;
	padding: 0 15px;
	margin-right: 10px;
}
.sp-nav .tel-wrap dl dd:nth-child(2) .num {
	font-size: 32px;
	font-weight: 500;
}

/*----------------------------------------*/
/* .footer */
/*----------------------------------------*/

.footer {
	position: relative;
	background-color: #1F1F1F;
	color: #ffffff;
	font-size: 12px;
	line-height: 1.8;
	letter-spacing: 0.04em;
	padding-top: 100px;
}
.footer .inner {
	padding-bottom: 160px;
}
.footer .logo-wrap h2 {
	font-size: 18px;
	font-weight: 500; 
	margin: 0 0 10px 0;
}
.footer .nav-wrap a {
	color: #ffffff;
	line-height: 1.4;
}
.footer .nav-wrap ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.footer .nav-wrap > ul > li + li {
	margin-top: 15px;
}
.footer .nav-wrap > ul > li > a {
	display: flex;
	align-items: center;
	width: fit-content;
	height: 35px;
	border-radius: 30px;
	background-color: rgba(255,255,255,0.08);
	font-size: 16px;
	padding: 0 15px;
}
.footer .nav-wrap > ul > li > ul {
	font-size: 14px;
	padding-left: 15px;
	margin-top: 15px;
}
.footer .nav-wrap > ul > li > ul > li {
	margin-bottom: 0.5em;
}
.footer .en-wrap {
	position: absolute;
	left: 0;
	bottom: 30px;
	width: 100%;
	text-align: center;
	font-style: italic;
	font-size: 6.2vw;
	font-weight: 600;
	line-height: 1;
	color: #292929;
}
@media (min-width: 768px) {
	.footer .inner {
		display: flex;
		justify-content: space-between;
		flex-wrap: nowrap;
	}
	.footer .logo-wrap dl {
		display: flex;
	}
	.footer .logo-wrap dl dt {
		padding-right: 30px;
	}
	.footer .nav-wrap {
		display: flex;
		order: 1;
	}
	.footer .nav-wrap a:hover {
		opacity: 0.5;
	}
	.footer .nav-wrap > ul {
		margin: 0 0 0 30px;
	}
}
@media (max-width: 1199px) {
	.footer .container-wide {
		max-width: 900px
	}
	.footer .inner {
		flex-wrap: wrap;
	}
	.footer .logo-wrap {
		width: 100%;
		margin-bottom: 50px;
	}
	.footer .nav-wrap {
		justify-content: space-between;
		width: 100%;
	}
	.footer .nav-wrap > ul {
		margin: 0;
	}
}
@media (max-width: 767px) {
	.footer {
		padding-top: 40px;
	}
	.footer .inner {
		padding-bottom: 50px;
	}
	.footer .container,
	.footer .container-wide {
		padding: 0 30px;
	}
	.footer .nav-wrap > ul:last-child > li {
		display: inline-block;
		margin:0 10px 15px 0;
	}
	.footer .nav-wrap > ul > li > a {
		font-size: 14px;
	}
	.footer .nav-wrap > ul > li > ul {
		display: flex;
		flex-wrap: wrap;
		padding-left: 0;
		margin: 15px -10px 25px -10px;
	}
	.footer .nav-wrap > ul > li > ul > li {
		width: 50%;
		padding: 0 10px;
	}
	.footer .nav-wrap > ul:nth-child(2) > li > ul > li:nth-child(5),
	.footer .nav-wrap > ul:nth-child(2) > li > ul > li:nth-child(6) {
		width: 100%;
	}
	.footer .logo-wrap {
		margin: 50px 0 0 0;
	}
	.footer .logo-wrap dl dt {
		width: 100px;
		margin-bottom: 15px;
	}
	.footer .logo-wrap h2 {
		font-size: 16px;
	}
	.footer .en-wrap {
		display: none;
	}
}

/* .copyright */
.footer .copyright {
	background-color: #292929;
	text-align: center;
	padding: 20px 0;
}


/* ------------------------------ */
/* .to-top */
/* ------------------------------ */

.to-top {
	visibility: hidden;
	padding: 0;
	position: fixed;
	bottom: 40px;
	right: 40px;
	transition: 0.5s;
	transform: translateY(20px);
	filter: blur(10px);
	opacity: 0;
	z-index: 100;
}
.to-top.visible {
	visibility: visible;
	transform: translateY(0px);
	filter: blur(0);
	opacity: 1;
}
.to-top a {
	position: relative;
	display: block;
	width: 100px;
	width: 100px;
	border-radius: 50%;
}
@media (min-width: 768px) {
	.to-top a:hover {
		opacity: 0.5;
	}
}
@media (max-width: 767px) {
	.to-top {
		bottom: 15px;
		right: 15px;
	}
	.to-top a {
		width: 50px;
		width: 50px;
	}
}

/* ------------------------------ */
/* .page-footer */
/* ------------------------------ */

.page-footer {
	position: relative;
	padding-bottom: 80px;
}
.page-footer .img-wrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 650px;
	z-index: 0;
}
.page-footer .img-wrap img {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: 100%;
}
.page-footer .txt-wrap {
	position: relative;
	display: flex;
	align-items: center;
	height: 475px;
	z-index: 1;
}
.page-footer .txt-wrap .container {
	max-width: 100%;
}
.page-footer .txt-wrap .min {
	font-size: 62px;
	letter-spacing: 0.05em;
	text-align: center;
	color: #ffffff;
}
.page-footer .contact-wrap {
	position: relative;
	display: flex;
	background-color: var(--red);
	color: #ffffff;
	border-radius: 20px;
	height: 350px;
	z-index: 1;
}
.page-footer .contact-wrap > * {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
}
.page-footer .contact-wrap a {
	color: #ffffff;
}
.page-footer .contact-wrap .col-form dl dt {
	font-size: 15px;
}
.page-footer .contact-wrap .col-form dl dd {
	font-size: 32px;
	font-weight: 500;
}
.page-footer .contact-wrap .col-tel {
	font-size: 16px;
	text-align: center;
}
.page-footer .contact-wrap .col-tel dl dt {
	font-size: 18px;
	background-image: url("../img/common/icon-tel.svg");
	background-repeat: no-repeat;
	background-position: left center;
	width: fit-content;
	padding-left: 30px;
	margin: 0 auto;
}
.page-footer .contact-wrap .col-tel dl dd:nth-child(2) a {
	display: flex;
	align-items: center;
}
.page-footer .contact-wrap .col-tel dl dd:nth-child(2) .tel {
	display: flex;
	align-items: center;
	height: 35px;
	background-color: rgba(255,255,255,0.08);
	border-radius: 30px;
	padding: 0 15px;
	margin-right: 10px;
}
.page-footer .contact-wrap .col-tel dl dd:nth-child(2) .num {
	font-size: 60px;
	font-weight: 500;
}
@media (min-width: 768px) {
	.page-footer .contact-wrap > *:first-child {
		border-right: 1px solid rgba(255,255,255,0.15);
	}
}
@media (max-width: 1199px) {
	.page-footer .contact-wrap .col-tel dl dd:nth-child(2) .num {
		font-size: 48px;
	}
}
@media (max-width: 991px) {
	.page-footer .contact-wrap .col-form dl dt {
		font-size: 12px;
	}
	.page-footer .contact-wrap .col-form dl dd {
		font-size: 22px;
	}
	.page-footer .contact-wrap .col-tel {
		font-size: 14px;
	}
	.page-footer .contact-wrap .col-tel dl dt {
		font-size: 14px;
	}
	.page-footer .contact-wrap .col-tel dl dd:nth-child(2) .tel {
		height: 25px;
		font-size: 12px;
	}
	.page-footer .contact-wrap .col-tel dl dd:nth-child(2) .num {
		font-size: 32px;
	}
}
@media (max-width: 767px) {
	.page-footer .img-wrap {
		height: 600px;
	}
	.page-footer .txt-wrap {
		height: 160px;
	}
	.page-footer .txt-wrap .min {
		font-size: 32px;
	}
	.page-footer .contact-wrap {
		display: block;
		height: auto;
	}
	.page-footer .contact-wrap > * {
		width: 100%;
		height: 180px;
	}
	.page-footer .contact-wrap > *:first-child {
		border-bottom: 1px solid rgba(255,255,255,0.15);
	}
}

/*----------------------------------------*/
/* .border-table */
/*----------------------------------------*/

.border-table {
	width: 100%;
}
.border-table th,
.border-table td {
	border-bottom: 1px solid var(--gray);
	padding: 45px 0;
}
.border-table th {
	font-weight: 500;
	border-bottom: 1px solid var(--red);
	width: 250px;
	padding: 45px 15px;
}
.border-table td {
	padding-left: 25px;
}
@media (max-width: 767px) {
	.border-table th,
	.border-table td {
		display: block;
		width: 100%;
	}
	.border-table th {
		padding: 10px 0 10px 10px;
	}
	.border-table td {
		border: none;
		padding: 10px 0 10px 10px;
	}
}
