@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	color: #fff;
	font-size: 16px;
	background: #000;
	-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: 60px 0 70px;
	}
	main section.stb {
		padding: 65px 0;
	}
}
.overwrap {
	overflow: hidden;
	position: relative;
}
/*背景 スマホ版*/
.bilogo {
	display: none;
}
img.bilogo {
	filter: none !important;
}
@media (max-width: 550px) {
	.bilogo {
		position: absolute;
		width: 1350px;
		display: block;
		pointer-events: none;
		opacity: 0.6;
		top: 91px;
		left: -536px;
		z-index: 5;
	}
}
/*最初にロゴを表示*/
.start {
	background: #111;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.start div {
	width: 18vw;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
}
.start div img {
	width: 100%;
	height: 100%;
	filter: none !important;
}
@media (max-width: 1435px) {
	.start div {
		width: 23vw;
	}
}
@media (max-width: 750px) {
	.start div {
		width: 33vw;
	}
}
@media (max-width: 500px) {
	.start div {
		width: 43vw;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
	filter: grayscale(60%) !important;
}
/* テキスト */
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.55;
	position: relative;
	font-size: clamp(2.4rem, 1.275rem + 3.6vw, 3.3rem);
}
.maintitle .mf {
	background: url(../img/gold.jpg) no-repeat center/cover;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
	white-space: nowrap;
}
.maintitle .sf {
	text-align: center;
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 33%;
}
.maintitle.mtleft {
	text-align: left;
}
.maintitle.mtleft .sf {
	position: relative;
	padding-left: 3px;
}
.txtmgb {
	margin-bottom: 50px !important;
}
@media (max-width: 750px) {
	.maintitle.mtleft.spcenter .sf {
		padding-left: 0;
	}
}
@media (max-width: 550px) {
	.txtmgb {
		margin-bottom: 35px !important;
	}
	.maintitle {
		margin-bottom: 43px;
	}
	.maintitle .sf {
		font-size: 37%;
	}
}
/*見出し02*/
.mtitle {
	font-weight: 600;
	position: relative;
	margin-bottom: 60px;
	letter-spacing: 0.1em;
	font-size: clamp(1.13rem, 0.855rem + 0.88vw, 1.35rem);
	line-height: 1.7;
}
@media (max-width: 550px) {
	.mtitle {
		margin-bottom: 25px;
	}
}
/*見出し03*/
.stitle {
	font-weight: 400;
	position: relative;
	font-size: clamp(1.13rem, 0.855rem + 0.88vw, 1.35rem);
	border-bottom: 1px solid rgba(242, 208, 36, 0.5);
	margin-bottom: 15px;
	padding-bottom: 8px;
	padding-left: 2px;
	color: #fff;
	line-height: 1.75;
}
.stitle .en {
	font-size: 72%;
	background: linear-gradient(to right, #c7a20e, #d09422, #f6d748);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: block;
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
}
@media (max-width: 750px) {
	.stitle {
		margin-bottom: 10px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 13px;
	transition: .4s;
	display: inline-block;
	width: 250px;
	color: #fff;
	border: 1px solid rgba(145, 121, 39, 0.45);
	background: transparent;
	z-index: 1;
	overflow: hidden;
	font-weight: 600;
	text-align: center !important;
}
.mainbtn a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 105%;
	height: 100%;
	background: linear-gradient(to right, #c7a20e, #d09422, #f6d748);
	z-index: -15;
	opacity: 1;
	transition: .6s;
}
.mainbtn a:hover::before {
	opacity: 0;
}
.mainbtn.right a {
	padding-right: 35px;
}
section .mainbtn a {
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
}
section .mainbtn a::after {
	position: absolute;
	top: 50%;
	right: 12px;
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	line-height: 1;
	font-size: .65em;
	transform: translate(0, -50%) scale(1, 0.7);
}
.mainbtn a:hover {
	transition: .4s;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(145, 121, 39, 0.45);
	color: #fff;
}
@media (max-width: 750px) {
	.mainbtn.right a {
		padding-right: 12px;
	}
}
@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%;
	}
	.flexbox div {
		width: 100%;
	}
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.w65 {
	width: 65%;
}
.w50 {
	width: 50%;
}
.w48 {
	width: 47.5%;
}
.w32 {
	width: 32%;
}
/* ロゴ背景 */
.bg_g_t, .bg_g_b {
	position: relative;
}
.bg_g_t::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/bg_t.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 100%;
	z-index: 5;
	opacity: 0.65;
	pointer-events: none;
}
.bg_g_b::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/bg_b.png);
	background-repeat: no-repeat;
	background-position: top;
	background-size: 100%;
	z-index: 5;
	opacity: 0.65;
	pointer-events: none;
}
/* 背景 */
.bg_gray::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #0f0f0f; /*#141414*/
	z-index: -18;
}
.bg_gray02::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #4a4a4a;
	z-index: -18;
}
.bg_gray {
	position: relative;
}
.bg_gray_in::before {
	content: '';
	position: absolute;
	top: 0;
	display: block;
	width: 100%;
	height: 101%;
	background: linear-gradient(180deg, rgba(16, 19, 21, 0) 15%, #010101);
	z-index: -1;
}
.bg_gray_in::after {
	content: '';
	position: absolute;
	bottom: 0;
	display: block;
	width: 100%;
	height: 101%;
	background: linear-gradient(0deg, rgba(16, 19, 21, 0) 15%, #010101);
	z-index: -1;
}
.bgs {
	position: relative;
}
/*=== 共通部分ここまで ===*/
/* header */
.header_tel {
	display: flex;
	align-items: center;
}
.header_sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
	padding: 13px 5px 15px;
	transition: .3s;
}
.change_color {
	background: rgba(0, 0, 0, 0.9);
}
.header {
	transition: all .5s;
	z-index: 100;
	position: relative;
	width: calc(100% - 166px);
}
.tel {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 166px;
	transition: .3s;
}
.tel a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50%;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 600;
	white-space: nowrap;
	background: linear-gradient(to right, #c7a20e, #d09422, #f6d748);
}
.tel a:last-child {
	font-size: 0.77rem;
	position: relative;
	bottom: 0;
	background: linear-gradient(to right, #ad8d0c, #bf8921, #e3c746);
}
.tel a:hover {
	opacity: 0.6;
	transition: .3s;
}
.tel a i {
	margin-right: 7px;
	font-size: 95%;
}
.header_inner {
	width: 99%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_logo {
	margin-left: 15px;
	width: 340px;
	transition: 1.1s ease;
}
img.header_logo {
	filter: none !important;
}
.change_color .header_logo {
	width: 285px;
}
.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 {
	position: relative;
	line-height: 1.65;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 0 17px;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	white-space: nowrap;
}
.header ul li a:hover {
	opacity: 0.6;
}
.header ul li a span {
	display: block;
	font-size: 80%;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07)), url(../img/gold.jpg) no-repeat center/cover;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
}
.hnav {
	margin-left: auto;
	width: fit-content;
}
.header_item {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	margin-bottom: 12px;
}
.header_item > div {
	margin: 0 8.5px;
}
.header_item .mainbtn a {
	width: 11rem;
	line-height: 1.55;
	padding: 5px;
	font-size: 0.9rem;
}
.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_check:checked ~ .menu_btn {
	filter: none;
}
.menu_btn span, .menu_btn span:before, .menu_btn span:after {
	content: '';
	display: block;
	height: 1px;
	width: 33px;
	position: absolute;
	transition: all 0.4s;
	background: #fff;
	top: 20px;
}
.menu_btn span:before {
	top: 14px;
}
.menu_btn span:after {
	top: 7px;
}
#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 {
	transform: rotate(45deg) !important;
	transition: 0.6s;
	top: 0;
}
#menu_btn_check:checked ~ .menu_btn span::after {
	top: 0;
	transform: rotate(-45deg) !important;
	transition: 0.6s;
}
#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%);
	width: 90%;
}
.menu_content nav {
	padding: 0 30px 17px;
}
.menu_content ul {
	text-align: center;
}
.menu_content ul li {
	padding: 3px 0;
	margin: 3px 0;
	list-style: none;
	transform: translateX(200px);
	opacity: 0;
}
.menu_content ul li a {
	display: block;
	width: 100%;
	font-size: 0.8rem;
	box-sizing: border-box;
	text-decoration: none;
	padding: 6.5px 0;
	position: relative;
	line-height: 1.75;
	color: #fff;
}
.menu_padding ul li a span {
	font-size: 120%;
	display: block;
	background: url(../img/gold.jpg) no-repeat center/cover;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	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;
	pointer-events: none;
	opacity: 0;
	background: rgba(0, 0, 0, 0.97);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	transition: all 0.6s;
	transition-delay: .2s;
}
.menu_content .mainbtn {
	text-align: center;
	margin-bottom: 5px;
	transform: translateX(200px);
	opacity: 0;
}
.menu_content .mainbtn:last-child {
	margin-bottom: 0;
}
.menu_content .mainbtn a:after {
	content: none;
}
.menu_content .mainbtn a {
	padding: 7px;
	width: 250px;
	border: 1px solid transparent !important;
	color: #fff;
	background: transparent;
}
.menu_content .mainbtn a:hover {
	color: #f2d024;
	background: #fff;
	font-weight: 600;
}
.menu_content .hicon {
	width: fit-content;
	margin: auto;
	margin-top: 20px;
}
.menu_content .hicon a {
	font-size: 1.4rem;
	margin: 0 3px;
	color: #f2d024;
}
#menu_btn_check:checked ~ .menu_content {
	opacity: 1;
	pointer-events: auto;
}
/*animation*/
.menu_content .menu_padding {
	overflow: hidden;
}
#menu_btn_check:checked ~ .menu_content ul li {
	transform: translateX(0);
	transition: 1.6s ease, opacity 2.6s ease;
	opacity: 1;
}
#menu_btn_check:checked ~ .menu_content .mainbtn {
	transform: translateX(0);
	transition: 1.6s ease, opacity 2.6s ease;
	opacity: 1;
}
#menu_btn_check:checked ~ .menu_content ul li:nth-child(2) {
	transition-delay: 0.15s;
}
#menu_btn_check:checked ~ .menu_content ul li:nth-child(3) {
	transition-delay: 0.3s;
}
#menu_btn_check:checked ~ .menu_content ul li:nth-child(4) {
	transition-delay: 0.45s;
}
#menu_btn_check:checked ~ .menu_content ul li:nth-child(5) {
	transition-delay: 0.6s;
}
#menu_btn_check:checked ~ .menu_content .mainbtn {
	transition-delay: 0.45s;
}
@media (max-width: 1065px) {
	.header_logo {
		width: 220px !important;
		margin-left: 0;
	}
	.header_sticky {
		padding: 13px 17px;
	}
	.header {
		padding: 0;
		width: 100%;
	}
	.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: 2.5px;
		right: 23px;
	}
	.tel {
		display: none;
	}
}
@media (max-width: 500px) {
	.header_logo {
		width: 190px !important;
	}
	.header_sticky {
		padding: 9px 14px 13px;
	}
	.menu_btn {
		top: -3px;
		right: 20px;
	}
	.menu_content ul li a {
		font-size: 0.7rem;
		padding: 4px 0;
	}
	.menu_content .mainbtn a {
		padding: 7px !important;
		width: 200px;
		font-size: 0.73rem;
	}
}
@media (max-width: 300px) {
	.header_title {
		width: 63vw;
	}
	.menu_btn {
		top: 0;
		right: 15px;
	}
	.menu_content .mainbtn a {
		width: 90%;
	}
}
/**/
.hamburger_menu input[type=checkbox] + label {
	display: block;
	padding-left: 0;
	position: fixed;
	margin-right: 0;
	margin-bottom: 0;
	cursor: pointer;
}
input[name="hamburger"] + label::before {
	content: none !important;
}
input[name="hamburger"] + label::after {
	content: none !important;
}
/* footer */
/*背景アニメ*/
/* -----------------------------------------------
/* Author : Chris Smith
/* MIT license: http://opensource.org/licenses/MIT
/* CodePen : https://codepen.io/chris22smith/pen/RZogMa
/* ----------------------------------------------- */
.bg {
	animation: slide 40s infinite alternate;
	background-image: linear-gradient(-60deg, #111 50%, #333 50%);
	bottom: 0;
	left: -50%;
	position: absolute;
	right: -50%;
	top: 0;
	z-index: -1;
	opacity: 0.17;
}
.bg2 {
	animation-direction: alternate-reverse;
	animation-duration: 20s;
}
.bg3 {
	animation-duration: 40s;
}
@keyframes slide {
	0% {
		transform: translateX(-25%);
	}
	100% {
		transform: translateX(25%);
	}
}
/* フッターお問い合わせリンク */
.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;
}
.footer_bg::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.65;
	z-index: -1;
}
.footer_bg::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #5e501d;
	opacity: 0.25;
	z-index: -1;
}
.footer_contact {
	padding: 50px 0 85px;
	color: #fff;
	position: relative;
	z-index: 2;
}
.footer_contact .maintitle {
	color: #fff;
	margin-bottom: 25px;
}
.footer_contact .maintitle .mf {
	color: #fff;
}
.footer_contact .flexbox {
	max-width: 970px;
	margin: auto;
}
.ctext {
	margin-bottom: 35px;
	font-size: 115%;
}
/*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-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);
}
.fax {
	pointer-events: none;
}
.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: 20px;
	}
	.ctext {
		margin-bottom: 25px;
		font-size: 100%;
	}
	.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: 100%;
	}
}
/*address*/
.footer_address {
	position: relative;
	text-align: center;
	padding: 27px 0;
	background: #111;
}
.flogo {
	width: 90%;
	max-width: 315px;
	margin-bottom: 13px;
}
img.flogo {
	filter: none !important;
}
.ress {
	margin-bottom: 0;
}
.ress br {
	display: none;
}
.footer_address p {
	font-size: 93% !important;
	margin-bottom: 0;
}
@media (max-width: 550px) {
	.footer_address {
		padding: 20px 0;
	}
	.flogo {
		max-width: 210px;
		margin-bottom: 10px;
	}
	.ress br {
		display: block;
	}
	.footer_address p {
		font-size: 0.75rem !important;
	}
}
.copyright {
	color: #fff;
	text-align: center;
	padding: 7px 0 12px;
	background: #111;
	border-top: 0.9px solid rgba(128, 110, 48, 0.4);
}
@media (max-width:550px) {
	.copyright {
		padding: 4px 0 9px;
		font-size: 0.7rem;
	}
}
/*ページ上に戻るボタン*/
.go_top {
	display: block;
	width: 57px;
	height: 57px;
	box-sizing: border-box;
	background: #111;
	border: 1px solid #f2d024;
	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: "\f062";
	font-weight: bold;
	color: #f2d024;
	font-size: 1.25rem;
	position: absolute;
	top: 47%;
	left: 49.5%;
	transform: translate(-50%, -50%) scale(0.5, 1.1);
}
.go_top:hover {
	opacity: 0.6;
}
.tfade {
	position: relative;
	z-index: 25;
}
@media(max-width:550px) {
	.go_top {
		width: 45px;
		height: 45px;
		right: 15px;
		opacity: 1;
	}
	.go_top::before {
		font-size: 0.85rem;
	}
}
/* スライド */
/*
.slideclip {
	position: relative;
}
.slideclip::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #5e501d;
	opacity: 0.15;
	clip-path: polygon(80% 100%, 100% 100%, 100% 30%);
	z-index: 4;
}
.slideclip::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #5e501d;
	opacity: 0.3;
	clip-path: polygon(85% 0, 100% 100%, 100% 0);
	z-index: 4;
}
*/
.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: calc(100vh - 115px);
	min-height: 700px;
	object-fit: cover;
	opacity: 0.77;
}
/*スライドアニメーション*/
@keyframes fadezoom {
	0% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
.slick-animation img {
	animation: fadezoom 10s linear 0s normal both;
}
.slide_text {
	font-weight: 600;
	white-space: nowrap;
	position: absolute;
	font-size: 2.3rem;
	letter-spacing: 0.12em;
	color: #fff;
	z-index: 15;
	line-height: 1.5;
	top: 51%;
	transform: translateY(-50%);
	left: 4%;
	text-shadow: 0px 2.5px 3px rgb(0 0 0 / 10%), 0px -2.5px 3px rgb(0 0 0 / 5%);
}
.slide_text p {
	margin-bottom: 0;
}
.slide_text span {
	display: block;
	font-size: 80%;
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
	padding-left: 1px;
}
/*スライド文字*/
.topslidetext {
	position: absolute;
	z-index: 25;
	top: 309px;
	left: 4%;
	width: 100%;
}
/*firefox*/
_:lang(x)::-moz-placeholder, .topslidetext {
	top: 482px;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .topslidetext {
	top: 370px;
}
.topslidetext .slide_text {
	position: initial;
	transform: translateY(0);
}
@media (max-width: 1350px) {
	.slide_items img {
		min-height: auto;
		height: 700px;
	}
	.slide_text {
		font-size: 1.9rem;
	}
	.topslidetext {
		top: 297px;
	}
}
@media (max-width: 660px) {
	.slide_items img {
		height: 480px;
		opacity: 0.7;
	}
	.slide_text {
		font-size: 1.2rem;
	}
	.topslidetext {
		top: 205px;
	}
}
@media (max-width: 450px) {
	.slide_text {
		font-size: 1.05rem;
		line-height: 1.65;
	}
	.slide_text span {
		font-size: 3.35vw;
	}
}
.pdb {
	padding-bottom: 70px !important;
}
.pdb0 {
	padding-bottom: 20px !important;
}
@media (max-width: 750px) {
	.pdb {
		padding-bottom: 5px !important;
	}
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
@media (max-width: 750px) {
	.spcenter {
		text-align: center !important;
	}
}
.fitc {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.tbtn {
	margin-top: 37px;
}
@media (max-width: 750px) {
	.tbtn {
		margin-top: 27px;
	}
}
.aic {
	align-items: center;
}
.aie {
	align-items: flex-end;
}
/*アニメーション*/
/*flowup*/
.flowup {
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 1.6s, transform 1.3s, filter 1.6s;
	transition-delay: 0.7s;
}
.flowup.inview {
	opacity: 1;
	transform: translateY(0);
}
.flowdown {
	opacity: 0;
	transform: translateY(-15px);
	transition: opacity 1.6s, transform 1.3s, filter 1.6s;
	transition-delay: 0.7s;
}
.flowdown.inview {
	opacity: 1;
	transform: translateY(0);
}
/*txtanim*/
.txtanim {
	transition: 1.8s;
	transition-delay: .6s;
	letter-spacing: 0.03em;
	opacity: 0;
}
.txtanim.inview {
	letter-spacing: 0.12em;
	opacity: 1;
}
/*imgアニメーション*/
.img_up .gfilter {
	transition: .2s;
	transition-delay: 1.65s;
	filter: grayscale(0);
}
.img_up.inview .gfilter {
	filter: grayscale(85%);
}
/*delay*/
.delay01 {
	transition-delay: 0.95s !important;
}
.delay02 {
	transition-delay: 1.15s !important;
}
@media (max-width: 750px) {
	.delay01, .delay02 {
		transition-delay: 0.7s !important;
	}
}
/* section 英語 */
.r_secbacktext, .l_secbacktext {
	line-height: 1;
	white-space: nowrap;
	color: #f2d024;
	position: absolute;
	bottom: 0;
	font-size: 8rem;
	pointer-events: none;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
	text-transform: uppercase;
	opacity: 0.15;
	margin-bottom: 0;
}
.l_secbacktext {
	left: 0;
}
.r_secbacktext {
	right: 0;
	text-align: right;
}
@media (max-width:1350px) {
	.r_secbacktext, .l_secbacktext {
		font-size: 12vw;
	}
}
@media (max-width:550px) {
	.r_secbacktext, .l_secbacktext {
		font-size: 33vw;
		opacity: 0.2;
	}
}
/*文字アニメーション*/
.glowAnime {
	overflow-y: hidden;
}
.glowAnime span {
	opacity: 0;
	display: inline-block;
	transform: rotateX(90deg);
}
.glowAnime.glow span {
	animation: glow_anime_on 0.8s ease-out forwards;
	animation-duration: 2s;
}
@keyframes glow_anime_on {
	0% {
		opacity: 0;
		transform: rotateX(90deg);
	}
	60% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
		transform: rotateX(0);
	}
}
@media (max-width:550px) {
	.glowAnime.glow span {
		animation: glow_anime_on 0.4s ease-out forwards;
		animation-duration: 1s;
	}
}
/*新着情報*/
.newstitle {
	border-right: 0.9px solid rgba(255, 255, 255, 0.3);
	padding-right: 40px;
	margin-right: 20px;
	white-space: nowrap;
	font-size: 1.2rem;
	margin-bottom: 0;
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
}
.news {
	padding: 30px 0 0;
}
.news .flexbox {
	flex-wrap: nowrap;
}
@media (max-width: 750px) {
	.news {
		padding: 20px 0 0;
	}
	.newstitle {
		font-size: 1.3rem;
		text-align: center;
		border-right: none;
		padding-right: 0;
		margin-left: auto;
		margin-right: auto;
	}
}
/*剛建株式会社について*/
.bggouken {
	position: relative;
	background: url(../img/bglogo.png) no-repeat;
	background-size: contain;
	background-position: top right;
	/*background-attachment: fixed;*/
	overflow: hidden;
	z-index: 15;
}
.about::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 .bggouken {
	background-attachment: scroll;
}
@media (max-width: 550px) {
	.bggouken {
		background: none;
	}
	.about::after {
		content: none;
	}
}
.about .inner {
	max-width: 1460px;
}
.abtxt {
	width: fit-content;
}
.limg img {
	object-fit: cover;
	width: 100%;
	height: 660px;
}
@media (max-width:1180px) {
	.limg img {
		height: 560px;
	}
}
@media (max-width:750px) {
	.limg {
		margin-bottom: 23px;
	}
	.limg img {
		height: auto;
	}
}
/*施工実績*/
.works .maintitle {
	margin-bottom: 70px;
}
.works .tbtn {
	margin-top: 60px;
}
@media (max-width: 550px) {
	.works .maintitle {
		margin-bottom: 40px;
	}
	.works .tbtn {
		margin-top: 35px;
	}
}
.p_slider ul .slick-slide {
	margin-left: 25px !important;
	transition: .3s ease;
}
.p_slider ul li {
	position: relative;
}
.p_slider ul li:nth-child(2n+1) {
	margin-top: 30px;
	margin-bottom: 30px;
}
.p_slider ul li::before {
	content: '';
	display: block;
	padding-top: 110%; /*高さの比率*/
}
.p_slider ul li img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s ease;
}
.p_slider ul li p {
	position: absolute;
	bottom: -40px;
	left: 0;
	z-index: 3;
}
@media (max-width: 750px) {
	.p_slider ul .slick-slide {
		margin-left: 15px !important;
	}
	.p_slider ul li:nth-child(2n+1) {
		margin-top: 15px;
	}
}
@media (max-width: 420px) {
	.p_slider ul li p {
		bottom: -35px;
		font-size: 0.77rem;
	}
}
/* 対応可能エリア */
.abi {
	font-size: 1.45rem;
	margin-bottom: 0;
}
.anote {
	font-size: 95%;
}
.areawrap {
	width: 80%;
	max-width: 470px;
	margin: auto;
	margin-bottom: 20px;
}
.areamask {
	mask-image: url(../img/areamask.png);
	-webkit-mask-image: url(../img/areamask.png);
	mask-size: 100%;
	-webkit-mask-size: 100%;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
}
.areamask::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111; /*#5e501d*/
	opacity: 0.2;
	z-index: 1;
	filter: grayscale(70%);
}
.areamask div {
	background-image: url(../img/area.jpg);
	background-size: cover;
	/*background-attachment: fixed;*/
	background-repeat: no-repeat;
	background-position: bottom;
	height: 100%;
	width: 100%;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .areamask div {
	background-attachment: scroll;
}
.areamask div img {
	position: relative;
	top: -0.2px;
	opacity: 0.4;
	filter: grayscale(0) !important;
}
@media (max-width: 550px) {
	.area .maintitle {
		margin-bottom: 30px;
	}
	.areawrap {
		margin-bottom: 15px;
	}
	.areamask div {
		background-attachment: scroll;
	}
	.areamask::after {
		opacity: 0.1;
	}
	.areamask div img {
		opacity: 0.3;
	}
	.abi {
		font-size: 1.2rem;
		margin-bottom: 3px;
	}
}
/*背景文字*/
.flowimg::before, .flowimg::after {
	content: "gouken company limited";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: auto;
	font-size: 14rem;
	line-height: 1.0;
	text-align: center;
	z-index: -10;
	white-space: nowrap;
	color: #f2d024;
	text-transform: uppercase;
	font-family: 'Cormorant Unicase', serif;
	font-weight: 500;
}
.flowimg::before {
	left: 0;
	animation: flowimg 80s linear infinite;
}
.flowimg::after {
	left: 3150px;
	animation: flowimg 80s linear infinite;
}
@keyframes flowimg {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-3150px);
	}
}
@media (max-width: 550px) {
	.flowimg::before, .flowimg::after {
		font-size: 8rem;
		bottom: 30px;
	}
	.flowimg::after {
		left: 1850px;
	}
	@keyframes flowimg {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(-1850px);
		}
	}
}
/* 採用情報 */
.recruit .inner {
	max-width: 1400px;
}
.recflex {
	display: flex;
	justify-content: space-between;
}
.recflex .recimg {
	width: 46%;
	position: relative;
}
.recflex .recimg:first-child {
	top: -30px;
}
.reverse .recflex .recimg:first-child {
	top: 30px;
}
@media (max-width: 750px) {
	.recflex {
		margin-bottom: 40px;
	}
	.reverse .recflex {
		margin-bottom: 60px;
	}
}
/* 下層ページ ======================================================================================================================*/
/*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: #000;
}
.subheader .header_sticky {
	position: relative;
}
/*下層ページトップ*/
.fv {
	height: 290px;
	width: 100%;
	display: flex;
	align-items: center;
	background: url(../img/fv.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	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;
	line-height: 0.5;
	position: relative;
}
.fv h2 .mf {
	background: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.fv h2 span {
	color: #fff !important;
}
@media(max-width:1285px) {
	.fv {
		height: 245px;
	}
}
@media(max-width:755px) {
	.fv {
		height: 210px;
	}
}
@media(max-width:450px) {
	.fv {
		height: 140px;
	}
}
/* breadcrumb */
.binner {
	width: 95%;
	font-size: 0.9rem;
	position: relative;
	z-index: 10;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: absolute;
	top: 3px;
	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: #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;
}
.whitecrd .breadcrumb li a, .whitecrd .breadcrumb li {
	color: #fff;
}
@media(max-width:550px) {
	.breadcrumb {
		font-size: 0.75rem;
	}
}
/* fv背景アニメ */
/* -----------------------------------------------
/* Author : Mohammad Abdul Mohaiman
/* MIT license: http://opensource.org/licenses/MIT
/* CodePen : https://codepen.io/mohaiman/pen/MQqMyo
/* ----------------------------------------------- */
.circles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0.2;
	pointer-events: none;
}
.circles li {
	position: absolute;
	display: block;
	list-style: none;
	width: 20px;
	height: 20px;
	background: linear-gradient(to right, #ad8d0c, #bf8921, #e3c746);
	animation: animate 25s linear infinite;
	bottom: -150px;
}
.circles li:nth-child(1) {
	left: 25%;
	width: 10px;
	height: 10px;
	animation-delay: 0s;
}
.circles li:nth-child(2) {
	left: 10%;
	width: 20px;
	height: 20px;
	animation-delay: 0s;
	animation-duration: 12s;
}
.circles li:nth-child(3) {
	left: 30%;
	width: 20px;
	height: 20px;
	animation-delay: 4s;
}
.circles li:nth-child(4) {
	left: 40%;
	width: 30px;
	height: 30px;
	animation-delay: 0s;
	animation-duration: 18s;
}
.circles li:nth-child(5) {
	left: 65%;
	width: 20px;
	height: 20px;
	animation-delay: 0s;
}
.circles li:nth-child(6) {
	left: 15%;
	width: 30px;
	height: 30px;
	animation-delay: 0s;
}
.circles li:nth-child(7) {
	left: 35%;
	width: 10px;
	height: 10px;
	animation-delay: 7s;
}
.circles li:nth-child(8) {
	left: 50%;
	width: 25px;
	height: 25px;
	animation-delay: 4s;
	animation-duration: 11s;
}
.circles li:nth-child(9) {
	left: 20%;
	width: 15px;
	height: 15px;
	animation-delay: 2s;
	animation-duration: 11s;
}
.circles li:nth-child(10) {
	left: 85%;
	width: 15px;
	height: 15px;
	animation-delay: 4s;
	animation-duration: 11s;
}
.circles li:nth-child(11) {
	left: 25%;
	width: 10px;
	height: 10px;
	animation-delay: 3s;
}
.circles li:nth-child(12) {
	left: 10%;
	width: 20px;
	height: 20px;
	animation-delay: 2s;
	animation-delay: 0s;
}
.circles li:nth-child(13) {
	left: 70%;
	width: 20px;
	height: 20px;
	animation-delay: 4s;
}
.circles li:nth-child(14) {
	left: 40%;
	width: 30px;
	height: 30px;
	animation-delay: 0s;
	animation-duration: 18s;
}
.circles li:nth-child(15) {
	left: 65%;
	width: 20px;
	height: 20px;
	animation-delay: 0s;
}
.circles li:nth-child(16) {
	left: 75%;
	width: 30px;
	height: 30px;
	animation-delay: 0s;
}
.circles li:nth-child(17) {
	left: 35%;
	width: 10px;
	height: 10px;
	animation-delay: 7s;
}
.circles li:nth-child(18) {
	left: 50%;
	width: 25px;
	height: 25px;
	animation-delay: 0s;
	animation-duration: 45s;
}
.circles li:nth-child(19) {
	left: 20%;
	width: 15px;
	height: 15px;
	animation-delay: 2s;
	animation-duration: 35s;
}
.circles li:nth-child(20) {
	left: 85%;
	width: 15px;
	height: 15px;
	animation-delay: 1s;
	animation-duration: 15s;
}
@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
	}
}
/* 事業内容ページ ======================================================================================================================*/
/*剛建の強み*/
.strengths {
	max-width: 1000px;
	margin: auto;
	margin-top: 35px;
}
.strbox {
	padding: 16px;
	border: 1px solid rgba(242, 208, 36, 0.3);
	background: rgba(0, 0, 0, 0.2);
}
.strbox p {
	margin-bottom: 0;
}
.strbox p span {
	padding-left: 23px;
	position: relative;
	display: inline-block;
}
.strbox p span::before {
	font-family: "Font Awesome 6 Free";
	content: "\f00c";
	font-weight: bold;
	display: inline-block;
	background: linear-gradient(to right, #c7a20e, #d09422, #f6d748);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
@media(max-width:750px) {
	.strbox {
		margin-bottom: 7px;
	}
}
@media(max-width:550px) {
	.strbox {
		padding: 12px;
	}
	.strengths {
		margin-top: 27px;
	}
}
/*事業内容*/
.services .inner {
	max-width: 1430px;
}
.services .service {
	margin-bottom: 50px;
}
.services .service:last-child {
	margin-bottom: 0 !important;
}
@media(max-width:750px) {
	.services .flexbox img {
		margin-bottom: 8px;
	}
}
/*背景 ロゴ*/
.bg_black {
	background: #000;
}
.bgfixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/bilogo.png);
	background-size: cover;
	background-position: top center;
	width: 100%;
	height: 100vh;
	z-index: -9999;
	transition: 1s;
	transition-delay: 0.8s;
}
.services::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #0f0f0f;
	opacity: 0.6;
	z-index: -18;
}
/**/
.gouken_slogo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	width: 190vw;
	opacity: 0.5;
}
.gouken_slogo img {
	width: 100%;
	filter: none !important;
}
@media(max-width:1630px) {
	.gouken_slogo {
		width: 250vw;
	}
}
@media(max-width:750px) {
	.gouken_slogo {
		display: none;
	}
}
/* 施工実績ページ ======================================================================================================================*/
.gallery .inner {
	max-width: 1400px;
}
/*table*/
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table tr {
	border-bottom: 1px solid rgba(242, 208, 36, 0.3);
}
.info_table tr:first-child {
	border-top: 1px solid rgba(242, 208, 36, 0.3);
}
.info_table th {
	background: transparent;
	width: 35%;
}
.info_table th, .info_table td {
	font-weight: 400;
	padding: 15px 0;
}
.info_table td {
	padding-left: 10px;
	padding-right: 10px;
	width: 65%;
	background: transparent;
}
/* table sp*/
.spsctext {
	display: none;
	font-size: 0.8rem;
}
.spblock {
	display: none;
}
@media (max-width:790px) {
	.spsctext {
		display: block;
	}
	.workslist_wrap .info_table {
		width: 840px;
	}
	.workslist_wrap {
		padding-bottom: 5px;
		overflow-x: scroll;
	}
	.spnone {
		display: none;
	}
}
@media (max-width:550px) {
	.spblock {
		display: block;
	}
	.info_table th, .info_table td {
		font-size: 90%;
	}
	.workslist_wrap .info_table {
		width: 620px;
	}
}
/* 採用情報ページ ======================================================================================================================*/
@media (max-width:750px) {
	.spimgmgb {
		margin-bottom: 10px;
	}
	.spimgmg_mtt {
		margin-bottom: 20px;
	}
	.spimgmgb_stt {
		margin-bottom: 8px;
	}
}
/*弊社では事業拡大のため、共に働く仲間を募集しています。*/
.phflex {
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
	margin: auto;
	margin-bottom: 50px;
}
.phflex .img_up {
	width: 48.5%;
	position: relative;
}
.phflex .img_up:last-child {
	top: 20px;
}
@media(max-width:660px) {
	.phflex {
		margin-bottom: 35px;
	}
	.phflex .img_up {
		width: 48%;
	}
	.phflex .img_up:last-child {
		top: 10px;
	}
}
/**/
.bggouken03 {
	position: relative;
	background: url(../img/bilogo.png) no-repeat;
	background-size: 1150px;
	background-position: center;
	overflow: hidden;
	z-index: 1;
}
.bggouken03::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.75;
	z-index: -1;
}
@media (max-width:550px) {
	.bggouken03 {
		background-size: 1800px;
	}
}
.rec_details .flexbox {
	margin-bottom: 45px;
}
.rec_details .flexbox:last-child {
	margin-bottom: 0;
}
/**/
.requirements li {
	padding: 10px;
	border: 1px solid rgba(242, 208, 36, 0.3);
	background: rgba(0, 0, 0, 0.2);
	margin-bottom: 8px;
}
.requirements li span {
	padding-left: 23px;
	position: relative;
	display: inline-block;
}
.requirements li span::before {
	font-family: "Font Awesome 6 Free";
	content: "\f00c";
	font-weight: bold;
	display: inline-block;
	background: linear-gradient(to right, #c7a20e, #d09422, #f6d748);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
/* 会社概要ページ ======================================================================================================================*/
/*理念*/
.phbox {
	padding: 35px;
	border: 1px solid rgba(242, 208, 36, 0.3);
	background: rgba(0, 0, 0, 0.8);
}
.phbox .maintitle {
	margin-bottom: 27px;
	font-size: clamp(2.2rem, 0.825rem + 4.4vw, 3.3rem);
}
.bggouken02 {
	position: relative;
	background: url(../img/bilogo.png) no-repeat;
	background-size: 950px;
	background-position: center;
	overflow: hidden;
	z-index: 1;
}
.bggouken02::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.35;
	z-index: -1;
}
.phtext {
	font-size: 1.45rem;
}
@media (max-width:1075px) {
	.phbox .flexbox {
		display: block;
	}
	.phbox .flexbox div, .phbox .flexbox img {
		width: 100%;
	}
	.phbox .maintitle {
		text-align: center;
	}
	.phbox img {
		object-fit: cover;
		height: 270px;
		margin-bottom: 27px;
	}
	.phtext {
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
	}
}
@media (max-width:750px) {
	.phbox img {
		height: auto;
		margin-bottom: 15px;
	}
	.phtext {
		line-height: 1.65;
		font-size: 1.05rem;
	}
}
@media (max-width:550px) {
	.bggouken02 {
		background-size: 750px;
	}
	.phbox .maintitle {
		margin-bottom: 20px;
	}
	.phbox {
		padding: 17px 15px;
	}
}
/*代表挨拶*/
.glast {
	margin-top: 23px;
	text-align: right;
}
/**/
.aboutp .inner {
	max-width: 1080px;
}
/*map*/
.map {
	margin-top: 80px;
}
@media(max-width:550px) {
	.map {
		margin-top: 60px;
	}
	.map iframe {
		height: 250px;
	}
}
/* お問い合わせページ ======================================================================================================================*/
.contact_top_text {
	margin-top: 10px;
	margin-bottom: 70px;
	max-width: 501px;
}
@media(max-width:550px) {
	.contact_top_text {
		font-size: 90%;
		margin-bottom: 35px;
	}
}
.conmgb {
	margin-bottom: 70px;
}
.contactp .rtext {
	margin-bottom: 45px;
}
@media (max-width: 750px) {
	.contactp .rtext {
		margin-bottom: 30px;
	}
}
.contact_wrap {
	position: relative;
	background-color: transparent;
	margin: auto;
	padding: 27px 10px;
	border-top: 3px double rgba(242, 208, 36, 0.3);
	border-bottom: 3px double rgba(242, 208, 36, 0.3);
}
.rcheck p::before {
	font-family: "Font Awesome 6 Free";
	content: "\f00c";
	font-weight: bold;
	display: inline-block;
	background: linear-gradient(to right, #c7a20e, #d09422, #f6d748);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-right: 0.4em;
	font-size: 0.93em;
	text-decoration: none;
}
.tel_contact {
	font-size: clamp(1.55rem, 0.9875rem + 1.8vw, 2rem);
	margin-bottom: 3px;
	white-space: nowrap;
	color: #fff;
	z-index: 1;
	position: relative;
}
.tel_contact:hover {
	opacity: 0.6;
}
.telflex {
	max-width: 1130px;
	margin: auto;
	align-items: flex-start;
}
.telflex .contact_wrap {
	margin: 0;
}
.tel_text {
	font-size: 90%;
	margin-top: 7px;
	margin-bottom: 5px;
}
.te.tel_text {
	margin-top: 5px !important;
}
@media (max-width: 750px) {
	.te.tel_text {
		margin-bottom: 45px;
	}
}
.faxlist {
	display: flex;
	justify-content: center;
}
.faxlist p {
	margin-right: 25px;
	font-size: 0.87rem;
	margin-bottom: 0;
}
.faxlist p:last-child {
	margin-right: 0 !important;
}
@media (max-width: 760px) {
	.faxlist p {
		margin-right: 20px;
	}
}
.telmini {
	position: relative;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
	font-size: clamp(1.15rem, 0.97rem + 0.64vw, 1.45rem);
	line-height: 1.5;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
}
.spb {
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
}
@media (max-width: 750px) {
	.faxlist p {
		margin-right: 30px;
	}
	.telflex .contact_wrap {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
	}
	.contact_wrap.fax {
		margin-bottom: 0;
	}
}
@media (max-width: 570px) {
	.tel_text {
		margin-bottom: 2.5px;
	}
}
@media (max-width: 490px) {
	.spb {
		margin-bottom: 20px;
	}
	.spb {
		font-size: 1.15rem;
	}
	.telmini {
		margin-bottom: 15px;
	}
}
@media (max-width: 365px) {
	.tel_text {
		margin-bottom: 10px;
	}
	.faxlist {
		display: block;
		width: 100% !important;
		margin: auto;
		margin-left: 0;
	}
	.faxlist p {
		margin-right: 0;
	}
}
.tmgb {
	margin-bottom: 25px;
}
.fpdt {
	padding-top: 60px;
}
@media (max-width: 950px) {
	.fpdt {
		padding-top: 20px;
	}
}
@media (max-width: 550px) {
	.fpdt {
		padding-top: 50px;
	}
}
.tl_text {
	margin-top: 13px;
	font-size: clamp(1rem, 0.94rem + 0.2133vw, 1.1rem);
}
@media (max-width: 450px) {
	.tmgb {
		margin-bottom: 15px;
	}
	.contact_wrap {
		max-width: 100%;
		padding: 17px 0;
	}
	.tl_text {
		margin-top: 7px;
	}
}
/* メール */
.mnote {
	max-width: 920px;
	margin: auto;
	margin-top: 50px;
}
.mpdb {
	padding-bottom: 45px !important;
	margin-bottom: 0 !important;
}
@media(max-width:450px) {
	.mnote {
		font-size: 0.9rem;
		margin-top: 30px;
	}
	.mpdb {
		padding-bottom: 35px !important;
	}
}
.formsel p {
	display: inline-block;
	margin-right: 3%;
}
.formsel p:last-child {
	margin-bottom: 0;
}
.mailform {
	max-width: 1100px;
	margin: 0 auto 0;
}
@media (max-width: 850px) {
	.mailform {
		margin: 50px auto 0;
	}
}
@media (max-width: 450px) {
	.formsel p {
		font-size: 0.9rem;
		margin-right: 5%;
	}
	.mailform {
		margin-top: 0;
	}
}
/*checkbox*/
input[type=checkbox] {
	display: none;
}
input[type=checkbox] + label {
	display: inline-block;
	padding-left: 20px;
	position: relative;
	cursor: pointer;
}
input[type=checkbox] + label::before {
	background: #fff;
	border: 1px solid #999;
	content: '';
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0, -50%);
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after {
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	content: '';
	display: block;
	height: 15px;
	left: 8px;
	margin-top: -7px;
	opacity: 0;
	position: absolute;
	top: 36%;
	width: 5px;
	transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(.7, .7, 1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after {
	opacity: 1;
	transform: rotate(45deg) scale3d(1, 1, 1);
}
input[type=checkbox]:checked + label::before {
	background: #e0b73f;
}
@media (max-width: 750px) {
	input[type=checkbox] + label {
		display: block;
	}
}
/**/
.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-weight: 400;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span.mailsp {
	padding: 5px;
	margin-right: 5px;
	font-size: 12px;
	font-weight: 400;
	color: #fff !important;
	border: 1px solid rgba(242, 208, 36, 0.4);
	background: rgba(0, 0, 0, 0.2);
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	font-weight: 400;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform button {
	overflow: hidden;
	position: relative;
	display: block;
	text-align: center;
	font-size: 1rem;
	margin: 0 auto;
	white-space: nowrap;
	padding: 1% 7%;
	transition: .4s;
	border: 1px solid rgba(145, 121, 39, 0.45);
	color: #fff;
	background: transparent;
}
.mailform button:hover {
	opacity: 1;
	background-color: transparent;
	color: linear-gradient(to right, #c7a20e, #d09422, #f6d748);
}
.mailform button::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 105%;
	height: 100%;
	background: linear-gradient(to right, #c7a20e, #d09422, #f6d748);
	z-index: -15;
	opacity: 1;
	transition: .6s;
}
.mailform button:hover::after {
	opacity: 0;
}
.mailform button::before {
	font-family: "Font Awesome 6 Free";
	content: "\f0e0";
	font-weight: bold;
	margin-right: 10px;
}
@media (max-width: 450px) {
	.mailform button {
		width: 65%;
		padding: 6px;
	}
	.selection small {
		font-size: 0.8rem;
	}
}
@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%;
	}
}
/* メール */
.mnote {
	max-width: 910px;
	margin: auto;
	margin-top: 50px;
}
.mpdb {
	padding-bottom: 55px !important;
	margin-bottom: 0 !important;
}
@media(max-width:450px) {
	.mnote {
		margin-top: 40px;
	}
	.mpdb {
		padding-bottom: 25px !important;
	}
}
/*個人情報の取り扱いについて*/
.privacy {
	padding-top: 0 !important;
}
.privacy_wrap {
	font-size: clamp(1rem, 0.862rem + 0.4907vw, 1.23rem);
	margin: 0 auto;
	max-width: 1100px;
	border-bottom: 1px solid rgba(242, 208, 36, 0.45);
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
	font-weight: 400;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 0.95rem;
}
.privacy_text span {
	font-size: 103%;
}
@media(max-width:750px) {
	.privacy_text {
		padding: 20px 15px 30px;
	}
}
.privacy_text p {
	margin-bottom: 17px;
}
.arrow {
	transition: ease-in-out 300ms;
}
.privacy_header i {
	background: linear-gradient(to right, #c7a20e, #d09422, #f6d748);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.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 {
	background: linear-gradient(to right, #c7a20e, #d09422, #f6d748);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/*-----------------工事実績 table--------------------*/
.work_table{
	margin: auto;
	width: 80%;
	padding: 40px 20px;
	border-collapse:  collapse; /* セルの線を重ねる */
}

.work_table tr:nth-child(even) {
    background-color:  #1E1E1E;    /* 背景色指定 */
}

.work_table th,.work_table td{
	padding: 10px;
}

.work_table th{

	position: relative;
}
.work_table th::after{
	content: "";
	position: absolute;
	width: 200px;
	height: 2px;
	background: url(../img/gold.jpg) no-repeat center/cover;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, -50%);
}

.work_table td{
	text-align: center;
/*	border-bottom: 1px solid #fff;*/
}
.h100{
	height: 100px;
}
@media(max-width:750px) {
	.work_table{
		font-size: 0.6rem;
	}
}