@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	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;
	color: #fff;
	transition: .4s;
}
/*=====ウェブアクセシビリティ=====*/
a: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: 110px 0 120px;
	position: relative;
}
@media (max-width: 550px) {
	main section {
		padding: 55px 0;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
/* テキスト */
p {
	margin-bottom: 10px;
}
.marker {
	text-decoration: underline;
	text-decoration-thickness: 0.4em;
	text-decoration-color: rgba(255, 239, 135, 0.75);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
/*見出し01*/
.maintitle {
	margin-bottom: 75px;
	display: block;
	text-align: center;
	line-height: 1.3;
}
.maintitle .mf {
	text-align: center;
	color: #fff;
	font-size: clamp(2.1rem, 0.975rem + 3.6vw, 3rem);
	font-family: 'Cormorant Garamond', serif;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.maintitle .sf {
	font-size: 80%;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
}
.maintitle.mleft {
	text-align: left;
	margin-bottom: 45px;
}
.maintitle.mleft .sf {
	position: relative;
	padding-left: 50px;
}
.maintitle.mleft .sf:before {
	background-color: #fff;
	position: absolute;
	content: "";
	top: 0.7em;
	left: 0;
	width: 37px;
	height: 1px;
}
@media (max-width: 750px) {
	.maintitle {
		margin-bottom: 45px;
	}
	.spcenter {
		text-align: center;
	}
	.maintitle.spcenter {
		text-align: center;
	}
	.maintitle.spcenter .sf {
		padding-left: 0;
	}
	.maintitle.spcenter .sf:before {
		content: none;
	}
}
@media (max-width: 450px) {
	.maintitle .sf {
		font-size: 60%;
	}
	.maintitle {
		line-height: 1.05;
	}
	.txtmgb {
		margin-bottom: 30px !important;
	}
}
/*見出し02*/
.mtitle {
	position: relative;
	font-weight: 600;
	margin-bottom: 75px;
	letter-spacing: 0.1em;
	font-size: clamp(1.3rem, 0.425rem + 2.8vw, 2rem);
	font-family: 'Noto Serif JP', serif;
}
.mtitle::after {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	border-bottom: 1px solid #e0b73f;
	margin: 15px auto 0;
}
.mred::after {
	border-bottom: 1px solid #ED213A;
}
@media (max-width: 550px) {
	.mtitle {
		margin-bottom: 43px;
	}
	.mtitle::after {
		width: 45px;
		margin-top: 10px;
	}
}
/*見出し03*/
.stitle {
	position: relative;
	font-size: clamp(1.1rem, 0.725rem + 1.2vw, 1.4rem);
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	border-bottom: 1px solid rgba(224, 183, 63, 0.5);
	margin-bottom: 13px;
	padding-bottom: 7px;
	padding-left: 3px;
	line-height: 1.65;
}
.stitle:first-letter {
	font-size: 120%;
	color: #e0b73f;
	margin-right: 2px;
}
.sblue {
	border-bottom: 1px solid rgba(30, 144, 255, 0.5);
}
.sblue:first-letter {
	color: #1e90ff;
}
.sred {
	border-bottom: 1px solid rgba(237, 33, 58, 0.5);
}
.sred:first-letter {
	color: #ED213A;
}
.syellow {
	border-bottom: 1px solid rgba(245, 222, 12, 0.5);
}
.syellow:first-letter {
	color: #f5de0c;
}
@media (max-width: 750px) {
	.stitle {
		margin-bottom: 10px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 10px;
	transition: .4s;
	display: inline-block;
	width: 16.5rem;
	text-align: center;
	z-index: 1;
	overflow: hidden;
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
}
.mainbtn a:hover {
	border: 1px solid #fff;
	background: #fff;
	color: #111;
	transition: .4s;
}
@media (max-width: 450px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 63%;
		padding: 7px;
	}
}
/*flex要素*/
.flexbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media (max-width: 750px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
		margin-bottom: 20px;
	}
	.flexbox div {
		width: 100%;
	}
}
.aic {
	align-items: center;
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 92%;
	max-width: 1200px;
	margin: 0 auto;
}
.w65 {
	width: 65%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 48%;
}
.w32 {
	width: 32%;
}
.w25 {
	width: 25%;
}
/*==文字色==*/
/*青*/
.blue {
	color: #1e90ff !important;
}
/*赤*/
.red {
	color: #ED213A !important;
}
/*黄色*/
.yellow {
	color: #f5de0c !important;
}
/*アニメーション*/
/*フェードイン*/
.flowup {
	opacity: 0;
	transform: translateY(25px);
	transition: opacity 1.5s, transform 1.5s, filter 1.6s;
	filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
/*Safari*/
::-webkit-full-page-media, :future, :root .flowup {
	filter: blur(0);
	-webkit-backdrop-filter: blur(0);
}
.flowup.inview {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
	-webkit-backdrop-filter: blur(0);
}
/*imgアニメ*/
.swipe {
	position: relative;
	overflow: hidden;
}
.swipe::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to right top, #e0b73f, #b3b066);
	pointer-events: none;
	z-index: 1;
	transform: translateX(-100%);
	transition: 1.2s ease-in-out;
}
.swipe .swipe_in {
	opacity: 0;
	transition: 0.6s ease-in-out;
	transition-delay: 0.7s;
}
.swipe.inview .swipe_in {
	opacity: 1;
}
.swipe.inview::after {
	transform: translateX(101%);
}
.redswipe.swipe::after {
	background: linear-gradient(to right, #ed213a, #c23425, #93291e);
}
/*delay*/
.delay01 {
	transition-delay: 0.6s !important;
}
.delay02 {
	transition-delay: 0.8s !important;
}
/*背景*/
.bg_grey {
	position: relative;
}
.bg_grey::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #262626;
	z-index: -20;
}
/*=== 共通部分ここまで ===*/
/* header */
.change_color {
	background: #111;
	transition: all .5s;
	border-bottom: 0.9px solid rgba(255, 255, 255, 0.5);
}
.header_sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition: all .5s;
	background: transparent;
}
.header {
	padding: 13px 5px 12px;
	width: 100%;
	z-index: 100;
	position: relative;
	font-weight: 500;
}
.change_color .header {
	background: transparent;
}
.header_inner {
	width: 95%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_logo {
	width: 290px;
}
.header h1 {
	transition: .3s;
	z-index: 110;
}
.header_title:hover h1 {
	opacity: 0.6;
	transition: .3s;
}
.header ul {
	display: flex;
	text-align: center;
}
.header ul li {
	margin-right: 30px;
	position: relative;
	line-height: 1.6;
}
.header ul li:last-child {
	margin-right: 0;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 3px 0;
	color: #fff;
	line-height: 1.45;
	font-size: 1.03rem;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
}
.header ul li a:hover {
	opacity: 0.6;
}
.header ul li a span {
	display: block;
	font-size: 90%;
	color: #e0b73f;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 700;
}
.hnav {
	margin-left: auto;
	width: fit-content;
	margin-right: 15px;
}
.header_item {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 17px;
}
.header_item > div {
	margin: 0 8.5px;
}
.header_item .mainbtn a {
	width: 180px;
	line-height: 1.55;
	padding: 6.5px;
	font-size: 0.8rem;
}
.tel {
	font-size: 1.47rem;
	line-height: 1.3;
	transition: .3s;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
}
.tel:hover {
	opacity: 0.6;
	transition: .3s;
}
.tel i {
	font-size: 80%;
}
.header_item .mainbtn a:after {
	content: none;
}
.hamburger_menu {
	display: none;
}
.htm {
	font-size: 87%;
	pointer-events: none;
}
.hts {
	font-size: 1.35rem;
	pointer-events: auto;
	transition: .3s;
	padding-bottom: 3px;
	border-bottom: 1px solid #fff;
}
.hts:hover {
	opacity: 0.6;
	transition: .3s;
}
@media (max-width: 450px) {
	.hts {
		font-size: 1.15rem !important;
	}
}
.menut {
	font-size: 0.6rem;
	position: absolute;
	bottom: 1px;
	left: 50%;
	margin-left: 0.5px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	color: #e0b73f;
	font-weight: 600;
}
.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_check:checked ~ .menu_btn .menut {
	opacity: 0;
	transition: .3s;
}
.menu_btn span, .menu_btn span:before, .menu_btn span:after {
	content: '';
	display: block;
	height: 2px;
	width: 33px;
	background: #e0b73f;
	position: absolute;
	transition: all 0.4s;
}
.menu_btn span:before {
	bottom: 7px;
}
.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 {
	bottom: 0;
	transform: rotate(45deg) !important;
	transition: all 0.4s;
}
#menu_btn_check:checked ~ .menu_btn span::after {
	top: 0;
	transform: rotate(-45deg) !important;
	transition: all 0.4s;
}
#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 25px;
}
.menu_content ul {
	text-align: center;
}
.menu_content ul li {
	padding: 3px 0;
	margin: 3px 0;
	list-style: none;
}
.menu_content ul li a {
	display: block;
	width: 100%;
	font-size: 0.9rem;
	box-sizing: border-box;
	text-decoration: none;
	padding: 6.5px 0;
	position: relative;
	line-height: 1.75;
	color: #fff;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
}
.menu_padding ul li a span {
	font-size: 102%;
	color: #e0b73f;
	display: block;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 700;
}
.menu_content ul li a:hover {
	opacity: 0.6;
}
.menu_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	transition: all 0.6s;
	pointer-events: none;
	opacity: 0;
	background-size: cover;
	background-position: 30% 50%;
	background: rgba(0, 0, 0, 0.91);
}
.menu_content .mainbtn {
	text-align: center;
	margin-bottom: 7px;
}
#menu_btn_check:checked ~ .menu_content {
	opacity: 1;
	pointer-events: auto;
}
@media (max-width: 1225px) {
	.header {
		padding: 13px 20px;
	}
	.header_logo {
		width: 250px;
	}
	.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: 1.5px;
		right: 30px;
	}
}
@media (max-width: 500px) {
	.header_title {
		width: 170px;
	}
	.header {
		padding: 12px;
	}
	.menu_btn {
		top: -6px;
		right: 22px;
	}
	.menu_content nav {
		padding-bottom: 20px;
	}
	.menu_content .mainbtn a {
		padding: 7px !important;
		font-size: 0.77rem;
		width: 73%;
	}
	.menu_content ul li a {
		padding: 6.5px 0;
		font-size: 0.75rem;
	}
}
@media (max-width: 300px) {
	.header_title {
		width: 44vw;
	}
	.menu_btn {
		top: -8px;
		right: 15px;
	}
	.menut {
		display: none;
	}
}
/* footer */
.fax {
	pointer-events: none;
}
/* フッターお問い合わせリンク */
.fwrap {
	background: #000;
	padding: 40px 0 45px;
}
.fwrap p {
	color: #fff;
}
@media (max-width: 550px) {
	.fwrap {
		padding: 30px 0 20px;
	}
}
.footer_contact {
	position: relative;
	z-index: 1;
	background: url(../img/footer.jpg);
	background-size: cover;
	padding: 60px 0 85px;
	color: #fff;
	background-attachment: fixed;
	background-position: 25% 60%;
}
.footer_contact .inner {
	position: relative;
	z-index: 3;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .footer_contact {
	background-attachment: scroll;
}
.footer_contact::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.85;
	z-index: -1;
}
.footer_contact::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	pointer-events: none;
	z-index: -1;
}
.footer_contact .maintitle {
	color: #fff;
	margin-bottom: 30px;
}
.footer_contact .btn_wrap {
	display: flex;
	justify-content: space-around;
	margin: 40px auto 0;
	max-width: 1050px;
}
.footer_contact .btn_wrap .btn {
	width: 32%;
	margin: 0 auto;
}
.footer_contact .btn_wrap .btn a {
	text-align: center;
	display: block;
	width: 100%;
	color: #fff;
	padding: 20px 5px;
	font-size: 1.1rem;
	white-space: nowrap;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, 0.1);
}
.footer_contact .btn_wrap .btn a:hover {
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: transparent;
}
.btn_wrap .fax a {
	background: #111 !important;
}
.footer_contact p {
	font-size: 1.15rem;
}
@media (max-width: 950px) {
	.footer_contact .btn_wrap .btn a {
		font-size: 0.93rem;
	}
}
@media (max-width: 750px) {
	.footer_contact .btn_wrap {
		display: block;
	}
	.footer_contact .btn_wrap .btn {
		width: 100%;
		margin-bottom: 15px;
	}
	.footer_contact .btn_wrap .btn a {
		font-size: 1.05rem;
	}
}
@media (max-width: 535px) {
	.footer_contact p {
		font-size: 1rem;
	}
}
@media (max-width: 450px) {
	.footer_contact .btn_wrap .btn {
		margin-bottom: 13px;
	}
	.footer_contact .btn_wrap .btn a {
		padding: 15px 5px;
	}
	.footer_contact .btn_wrap {
		margin-top: 35px;
	}
	.footer_contact .maintitle {
		margin-bottom: 25px !important;
	}
	.footer_contact {
		padding: 40px 0 50px;
	}
	.footer_contact {
		background-attachment: scroll;
	}
	.footer_contact::before {
		-webkit-backdrop-filter: blur(1px);
		backdrop-filter: blur(1px);
	}
}
/* ロゴとアドレス */
.flogo {
	color: #fff;
	width: 295px;
	margin-bottom: 23px;
}
@media (max-width: 550px) {
	.flogo {
		width: 90%;
		max-width: 215px;
	}
}
.footer_address {
	text-align: center;
}
.footer_address .maintitle {
	margin: 1% auto 2%;
}
.footer_address a {
	display: inline-block;
}
.footer_address p {
	font-size: 0.9rem;
	margin-bottom: 0;
}
.address br {
	display: none;
}
@media (max-width: 550px) {
	.address br {
		display: block !important;
	}
	.footer_address p {
		font-size: 0.8rem;
		margin-bottom: 13px;
	}
}
.telfax br {
	display: none;
}
@media (max-width: 500px) {
	.telfax br {
		display: block;
	}
	.telfax span {
		display: none;
	}
}
/* コピーライト */
.copyright {
	text-align: center;
	padding: 7px 03px 25px;
	color: #fff;
	border-top: 0.9px solid rgba(0, 0, 0, 0.2); /*rgba(255, 255, 255, 0.15)*/
	background: #000;
	font-size: 0.85rem;
}
/*ページ上に戻るボタン*/
.tfade {
	position: relative;
	z-index: 79;
}
.go_top {
	display: block;
	width: 52px;
	height: 52px;
	box-sizing: border-box;
	background: #e0b73f;
	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;
	opacity: 0.7;
}
.go_top::before {
	font-family: "Font Awesome 5 Free";
	content: "\f077";
	font-weight: bold;
	color: #111;
	font-size: 1.4rem;
	position: absolute;
	top: 45%;
	left: 49.5%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.go_top:hover {
	opacity: 1;
}
.tfade {
	position: relative;
	z-index: 9;
}
@media(max-width:550px) {
	.go_top {
		width: 45px;
		height: 45px;
		right: 15px;
	}
	.go_top::before {
		font-size: 1.2rem;
	}
}
/* フッター背景アニメ */
/* -----------------------------------------------
/* 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.15;
	pointer-events: none;
}
.circles li {
	position: absolute;
	display: block;
	list-style: none;
	width: 20px;
	height: 20px;
	background: #ED213A;
	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: 2s;
	animation-duration: 12s;
}
.circles li:nth-child(3) {
	left: 70%;
	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: 75%;
	width: 30px;
	height: 30px;
	animation-delay: 3s;
}
.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: 15s;
	animation-duration: 45s;
}
.circles li:nth-child(9) {
	left: 20%;
	width: 15px;
	height: 15px;
	animation-delay: 2s;
	animation-duration: 35s;
}
.circles li:nth-child(10) {
	left: 85%;
	width: 15px;
	height: 15px;
	animation-delay: 0s;
	animation-duration: 11s;
}
.circles li:nth-child(11) {
	left: 25%;
	width: 10px;
	height: 10px;
	animation-delay: 0s;
}
.circles li:nth-child(12) {
	left: 10%;
	width: 20px;
	height: 20px;
	animation-delay: 2s;
	animation-duration: 12s;
}
.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: 3s;
}
.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: 15s;
	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: 0s;
	animation-duration: 11s;
}
@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
	}
}
/* スライド */
.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;
	opacity: 0.15;
}
.topslide::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #111;
	opacity: 0.15;
	clip-path: polygon(0 0, 0% 100%, 25% 100%);
}
.triangle::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #111;
	opacity: 0.25;
	clip-path: polygon(20% 0, 0 0, 0 65%);
}
.slide_items {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.slide_items img {
	width: 100%;
	height: 100vh;
	min-height: 700px;
	object-fit: cover;
}
.slide_text {
	white-space: nowrap;
	position: absolute;
	font-size: 4.2rem;
	letter-spacing: 0.1em;
	color: #fff;
	z-index: 2;
	line-height: 1.6;
	bottom: 3%;
	left: 3%;
	text-align: center;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 700;
}
.slide_text p {
	margin-bottom: 0;
	animation: fadeIn 1.3s ease 0.7s 1 normal backwards;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*========= 光りながら出現させるためのCSS ===============*/
.glowAnime span {
	opacity: 0;
}
/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span {
	animation: glow_anime_on 1.3s ease-out forwards;
}
@keyframes glow_anime_on {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
		text-shadow: 0 0 10px #fff, 0 0 15px #fff;
	}
	100% {
		opacity: 1;
		text-shadow: none;
	}
}
@media (max-width: 1160px) {
	.slide_items img {
		height: 570px;
		min-height: auto;
	}
	.slide_text {
		font-size: 2.6rem;
	}
}
@media (max-width: 750px) {
	.slide_items img {
		height: 410px;
	}
	.slide_text {
		font-size: 5.6vw;
	}
}
@media (max-width: 450px) {
	.topslide {
		width: 100%;
		height: 100%;
	}
	.slide_items img {
		height: 290px;
	}
	.slide_text {
		font-size: 6.3vw;
	}
}
.pdb {
	padding-bottom: 45px;
}
.pdb0 {
	padding-bottom: 0;
}
.center {
	text-align: center;
}
.fitc {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.tbtn {
	margin-top: 45px;
}
@media (max-width: 450px) {
	.tbtn {
		margin-top: 30px;
	}
}
/* 新着情報 */
.newstitle {
	height: fit-content;
	width: 210px;
	margin-top: 20px;
}
.newsl {
	width: calc(100% - 210px);
}
.news {
	padding: 110px 0;
}
.news .maintitle {
	margin-bottom: 0;
}
@media (max-width: 1120px) {
	.newstitle {
		width: 160px;
	}
	.newsl {
		width: calc(100% - 160px);
	}
}
@media (max-width: 750px) {
	.spc_main {
		text-align: center !important;
	}
	.spc_main .sf {
		padding-left: 0 !important;
	}
	.spc_main .sf::before {
		content: none !important;
	}
	.news .maintitle {
		margin-bottom: 30px !important;
	}
	.newstitle {
		margin-top: 0;
	}
}
@media (max-width: 550px) {
	.news {
		padding: 45px 0 30px !important;
	}
}
/* お見積り無料 */
.bannersec {
	padding: 20px 0;
}
.banner {
	position: relative;
}
.banner p {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5px;
}
.bannerimg {
	position: relative;
	opacity: 0.55;
}
.bannerimg::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: radial-gradient(transparent 0%, #000 70%);
	pointer-events: none;
	width: 100%;
	height: 101%;
}
.bnbox {
	width: 100%;
	font-size: 110%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.bntext {
	font-weight: 600;
	font-size: 2.1rem;
	width: fit-content;
	margin: auto;
	margin-bottom: 33px;
}
.quotation {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 700;
	line-height: 1.8;
	font-size: 1.3rem;
	color: #e0b73f;
}
.bntext span {
	background: linear-gradient(to right, #ed213a, #c23425, #93291e);
	margin: 0 4px;
	padding: 0 10px 3px;
}
@media (max-width: 750px) {
	.bannersec {
		padding: 40px 0 60px;
	}
	.bannerimg {
		opacity: 0.45;
	}
	.bannerimg::before {
		background: radial-gradient(transparent 0%, #000 75%);
	}
	.bannerimg img {
		object-fit: cover;
		width: 100%;
		height: 80vw;
	}
	.banner p {
		width: 100%;
		margin: 0;
		margin-bottom: 5px;
	}
	.bnbox {
		width: 90%;
		font-size: 100%;
	}
	.quotation {
		margin-bottom: 5px !important;
		text-align: center;
		font-size: 1.05rem;
	}
	.bntext {
		font-size: 1.15rem;
		margin-bottom: 33px;
	}
	.bntext span {
		margin: 0 2.5px;
		padding: 0 7px 3px;
	}
}
/* 社長挨拶 */
.greeting::before {
	content: "";
	background-image: url(../img/aboutbg.jpg);
	background-color: rgba(255, 255, 255, 0.25);
	background-size: cover;
	background-position: 20% 50%;
	background-attachment: fixed;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: -1;
	opacity: 0.5;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .greeting::before {
	background-attachment: scroll;
}
.greeting::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.75;
	z-index: -1;
}
@media (max-width: 550px) {
	.greeting::before {
		background-attachment: scroll;
	}
}
/*背景アニメ*/
/* -----------------------------------------------
/* 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, #FDC830 50%, #f28b5a 50%);
	bottom: 0;
	left: -50%;
	position: absolute;
	right: -50%;
	top: 0;
	z-index: -1;
	opacity: 0.25;
}
.bg2 {
	animation-direction: alternate-reverse;
	animation-duration: 22s;
}
.bg3 {
	animation-duration: 23s;
}
@keyframes slide {
	0% {
		transform: translateX(-25%);
	}
	100% {
		transform: translateX(25%);
	}
}
/*社長挨拶枠*/
.gbox {
	background: rgba(0, 0, 0, 0.3);
	padding: 60px 0;
	position: relative;
}
.gbox::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #111;
	opacity: 0.75;
	z-index: -1;
}
.gbox .maintitle {
	margin-bottom: 50px;
}
.gtext {
	line-height: 2.6;
}
.glast {
	margin-top: 30px;
}
@media (max-width: 1235px) {
	.gbox {
		padding: 60px 40px;
	}
	.gtext {
		text-align: left;
		line-height: 2.2;
	}
}
@media (max-width: 800px) {
	.gbox {
		padding: 40px 20px 35px;
	}
}
/*コンテンツ*/
.contents {
	padding-bottom: 150px;
}
.contents .inner {
	max-width: 1550px;
}
.imgboxup .imgbox:nth-child(2) {
	transition-delay: 0.2s;
}
.imgboxup .imgbox:nth-child(3) {
	transition-delay: 0.35s;
}
.imgboxup .imgbox:nth-child(4) {
	transition-delay: 0.4s;
}
.imgboxup .imgbox:nth-child(5) {
	transition-delay: 0.5s;
}
.imgbox img {
	object-fit: cover;
}
.imgbox {
	position: relative;
	overflow: hidden;
	width: calc(100% / 5);
}
.imgbox a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
	padding: 62% 0;
}
.imgbox a img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: .6s;
	z-index: -2;
	transform: scale(1);
}
.imgbox .text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 35%), 0px -0.3px 3px rgb(0 0 0 / 25%);
	z-index: 4;
}
.imgbox h3 {
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 1.1rem;
	line-height: 1.5;
	white-space: nowrap;
	transition: .3s;
	color: #fff;
}
.imgbox h3 span {
	font-size: 140%;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 700;
}
.imgbtn {
	text-align: center;
	width: 155px !important;
	margin: 0 auto;
	padding: 3px 0 5px;
	transition: .3s;
	border: 1px solid transparent;
	background: #e0b73f;
	color: #333;
	text-shadow: none;
	margin-top: 27px;
	font-size: 0.9rem;
}
.imgbox a:hover .imgbtn {
	border: 1px solid #e0b73f;
	background: transparent;
	color: #e0b73f;
	transition: .3s;
}
.hover_effect::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: '';
	z-index: 0;
	background: linear-gradient(to right, #3e3f40 0%, #111 100%);
	opacity: 0.8;
	transition: .6s;
}
.hover_effect::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: '';
	z-index: 0;
	background: linear-gradient(to right, #2c3e50, #3498db);
	opacity: 0.3;
	transition: .6s;
}
.imgbox a:hover .hover_effect::after {
	opacity: 0;
}
.imgbox a:hover .hover_effect::before {
	opacity: 0.5;
}
.imgbox a:hover img {
	transform: scale(1.15, 1.15);
	transition: .6s;
}
@media (max-width: 1340px) {
	.imgbox h3 {
		font-size: 1.3vw;
	}
}
@media (max-width: 750px) {
	.contents .flexbox .imgbox {
		width: 100%;
		margin-bottom: 7.5px;
	}
	.imgbox a {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 0;
		padding: 22% 0;
	}
	.imgbox {
		margin-bottom: 10px;
	}
	.imgbox:last-child {
		margin-bottom: 0 !important;
	}
	.imgbox .text {
		top: 50%;
	}
	.hover_effect::after {
		background: linear-gradient(to right, #3e3f40 10%, #111 90%);
		opacity: 0.7;
	}
	.hover_effect::before {
		opacity: 0;
	}
	.imgbox h3 {
		font-size: 1.2rem;
	}
}
@media (max-width: 550px) {
	.contents {
		padding-bottom: 85px;
	}
	.imgbox a {
		padding: 23% 0;
	}
	.imgbox .text {
		top: 48%;
	}
	.imgbtn {
		font-size: 0.8rem;
		width: 115px !important;
		padding: 1px 0 2px;
		margin-top: 17px;
		margin-bottom: 0;
	}
	.imgbox {
		margin-bottom: 7px;
	}
	.imgbox h3 span {
		font-size: 150%;
	}
	.imgbox h3 {
		font-size: 1.05rem;
		line-height: 1.4;
	}
}
/*会社概要*/
.about {
	position: relative;
}
.about::before {
	content: "";
	background-image: url(../img/aboutbg.jpg);
	background-color: rgba(255, 255, 255, 0.25);
	background-size: cover;
	background-position: 20% 50%;
	background-attachment: fixed;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: -1;
	opacity: 0.5;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .about::before {
	background-attachment: scroll;
}
.welbg::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;
}
.welbg::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;
}
@media (max-width: 550px) {
	.about::before {
		opacity: 0.45;
		background-attachment: scroll;
	}
}
/*画像*/
.abflex {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.abflex div {
	width: 49%;
}
@media(max-width:550px) {
	.abflex div {
		width: 48.5%;
	}
	.abflex {
		margin-bottom: 15px;
	}
}
/*table*/
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.info_table tr {
	border-bottom: 0.9px solid rgba(255, 255, 255, 0.5); /*1px solid rgba(224, 183, 63, 0.44)*/
}
.info_table th {
	background: transparent;
	width: 35%;
}
.info_table th, .info_table td {
	font-weight: 500;
	padding: 15px 0;
}
.info_table td {
	padding-left: 10px;
	padding-right: 10px;
	width: 65%;
	background: transparent;
}
@media(max-width: 550px) {
	.info_table {
		border-collapse: collapse;
	}
	.info_table tr {
		border-bottom: none;
	}
	.info_table td {
		border-bottom: 0.9px solid rgba(255, 255, 255, 0.5);
		margin-bottom: 0;
	}
	.info_table td, .info_table th {
		width: 100%;
		padding: 8px 8px 13px;
		display: block;
	}
	.info_table th {
		text-align: left;
		padding-bottom: 0;
	}
}
/* map */
.maps .inner {
	max-width: 1100px;
}
.mapbox .stitle {
	margin-bottom: 20px;
}
@media(max-width: 750px) {
	.mapbox {
		margin-bottom: 35px;
	}
	.mapbox:last-child {
		margin-bottom: 0;
	}
	.mapbox iframe {
		height: 280px;
	}
}
/* 下層で使用採用情報 */
.recruit::before {
	content: "";
	background-image: url(../img/recruitbg.jpg);
	background-color: rgba(255, 255, 255, 0.25);
	background-size: cover;
	background-position: 10% 90%;
	background-attachment: fixed;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: -1;
	opacity: 0.5;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .recruit::before {
	background-attachment: scroll;
}
@media (max-width: 550px) {
	.recruit::before {
		opacity: 0.7;
		background-attachment: scroll;
	}
}
.recbg::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;
}
.recbg::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;
}
@media(min-width:1250px) {
	.inner02 {
		width: 90%;
		max-width: 1350px;
		margin: 0 auto;
	}
	.img2col_text {
		padding: 0 0 0 4%;
	}
	.reverse .img2col_text {
		padding: 0 4% 0 0;
	}
}
@media(max-width:1249px) {
	.reverse .img2col_text, .img2col_text {
		padding: 0 4%;
	}
}
.img2col {
	max-width: 950px;
	flex-wrap: nowrap;
	justify-content: center;
}
.img2col div img {
	object-fit: cover;
	height: 500px;
	width: 100%;
}
.textimg {
	align-items: center;
}
.img2col {
	overflow: hidden;
}
.img2col div:nth-child(1) {
	margin: 30px 0 0 0;
}
.img2col div:nth-child(2) {
	margin: 0 0 0 15px;
}
.img_left div:nth-child(1) {
	margin: 0 15px 0 0;
}
.img_left div:nth-child(2) {
	margin: 30px 0 0 0;
}
.reverse .img2col div:nth-child(2) {
	margin: 30px 0 0 0;
}
.reverse .img2col div:nth-child(2) {
	margin: 0 0 0 15px;
}
.reverse .img_left div:nth-child(1) {
	margin: 0 15px 0 0;
}
.reverse .img_left div:nth-child(1) {
	margin: 30px 0 0 0;
}
@media(max-width:750px) {
	.img2col div:nth-child(1) {
		margin: 0;
	}
	.img2col div:nth-child(2) {
		margin: 0;
	}
	.img_left div:nth-child(2) {
		margin: 0;
		margin-bottom: 10px;
	}
	.reverse .img2col div:nth-child(2) {
		margin: 0;
		margin-bottom: 10px;
	}
	.reverse .img2col div:nth-child(1) {
		margin: 0;
	}
	.reverse .img_left div:nth-child(1) {
		margin: 0;
	}
	.img2col div img {
		object-fit: cover;
		height: 200px !important;
		margin-bottom: 10px !important;
	}
	.inner02 {
		width: 90%;
		margin: 0 auto;
	}
	.reverse .img2col_text, .img2col_text {
		padding: 0;
	}
}
@media(max-width:650px) {
	.img2col div img {
		object-fit: cover;
		height: 200px !important;
		width: 100%;
	}
}
@media(max-width:450px) {
	.img2col div img {
		height: 140px !important;
	}
}
/* 下層ページトップ ====================================================================================================================*/
.fv {
	height: 380px;
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #333;
	opacity: 0.55;
}
.fv .inner {
	max-width: 80%;
}
.fv h2 {
	text-shadow: 0 0 6.5px #333, 0px 0.3px 2.5px rgb(0 0 0 / 25%), 0px -0.3px 2px rgb(0 0 0 / 30%);
	margin-bottom: -55px !important;
	z-index: 1;
	position: relative;
	color: #fff;
}
.fv h2 .mf {
	color: #e0b73f;
}
.fv h2 .mf .glowAnime.glow span {
	animation: glow_anime_on_gold 1.3s ease-out forwards;
}
@keyframes glow_anime_on_gold {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
		text-shadow: 0 0 10px #e0b73f, 0 0 15px #e0b73f;
	}
	100% {
		opacity: 1;
		text-shadow: none;
	}
}
@media (max-width: 1225px) {
	.fv {
		height: 320px;
	}
	.fv h2 {
		margin-bottom: -15px !important;
	}
}
@media(max-width:650px) {
	.fv {
		height: 260px;
	}
}
@media(max-width:450px) {
	.fv {
		height: 180px;
	}
	.fv .maintitle .mf {
		margin-bottom: 0;
		font-size: 1.35rem;
	}
	.fv .maintitle .sf {
		font-size: 55%;
	}
	.fv h2 {
		text-shadow: 0 0 6.5px #333, 0px 0.3px 2.5px rgb(0 0 0 / 15%), 0px -0.3px 2px rgb(0 0 0 / 10%);
		margin-bottom: -20px !important;
	}
	.mlong {
		font-size: 7.5vw !important;
	}
}
.aic {
	align-items: center;
}
/* breadcrumb */
.binner {
	width: 95%;
	font-size: 0.9rem;
	position: relative;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	position: relative;
	top: -0.1em;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #e0b73f;
}
.breadcrumb li:first-child a::before {
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
	font-size: 90%;
	position: relative;
	top: -0.05em;
}
@media(max-width:550px) {
	.breadcrumb {
		font-size: 0.7rem;
	}
}
.mgb5 {
	margin-bottom: 5px !important;
}
/* 事業内容ページ ====================================================================================================================*/
/* check list absolute */
.acheck li {
	padding-left: 20px;
	position: relative;
}
.adb.acheck li {
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px solid rgba(225, 225, 225, 0.3);
}
.acheck li::before {
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #e0b73f;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
.cblue.acheck li::before {
	color: #1e90ff;
}
.fz {
	font-size: 120%;
}
.fz.acheck li {
	padding-left: 24px;
}
@media (max-width: 550px) {
	.fz {
		font-size: 100%;
	}
}
/*工事対応エリア*/
.areamgb {
	margin-bottom: 60px;
}
.areatext {
	font-size: 140%;
}
.map_illust {
	margin: 0 auto 30px;
	width: max-content;
}
.map_illust img {
	width: 380px !important;
}
.mtext {
	margin-bottom: 0;
}
@media (max-width: 550px) {
	.map_illust {
		width: 70%;
		margin-bottom: 20px;
		max-width: 300px;
	}
	.areatext {
		font-size: 115%;
	}
	.areamgb {
		margin-bottom: 35px;
	}
}
/* 塗装についてページ ====================================================================================================================*/
.pctext .mtitle {
	margin-bottom: 30px;
	font-size: 1.5rem;
}
.pctext .maintitle {
	margin-bottom: 30px;
}
@media (max-width: 840px) {
	.pctext p {
		text-align: left;
	}
}
.reco {
	margin-bottom: 35px;
}
@media (max-width: 750px) {
	.reco img {
		margin-bottom: 10px;
	}
	.reco {
		margin-bottom: 15px;
	}
}
/*お取扱いメーカー*/
.maker {
	width: 32.7%;
	margin-bottom: 10px;
}
.maker a {
	display: block;
	position: relative;
	width: 100%;
	background-color: #fff;
}
.maker a::before {
	content: '';
	display: block;
	padding-top: 20%;
}
.maker a img {
	display: block;
	object-fit: contain;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s ease;
	padding: 10px;
}
.maker a:hover img {
	opacity: 0.5;
}
/* 施工実績ページ ====================================================================================================================*/
.works .inner {
	max-width: 1400px;
}
.btnflex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.btnflex .mainbtn {
	width: 24%;
}
.btnflex .mainbtn a {
	width: 100%;
	white-space: nowrap;
}
@media(max-width:980px) {
	.btnflex .mainbtn {
		width: 49.5%;
		margin-bottom: 9px;
	}
}
@media (max-width: 550px) {
	.btnflex {
		display: block;
	}
	.btnflex .mainbtn {
		width: 100%;
	}
	.btnflex .mainbtn a {
		font-size: 90%;
	}
}
/* 採用情報ページ ====================================================================================================================*/
.rectop {
	margin-bottom: 80px;
	/*border-bottom: 1px solid rgba(224, 183, 63, 0.35);*/
	padding-bottom: 3px;
}
@media(max-width:650px) {
	.rectop {
		border-bottom: none;
		margin-bottom: 40px;
	}
}
/*1日の流れ*/
.dflow {
	border-left: 1px solid #dddddd;
	padding: 15px 0 10px;
}
.ditem {
	margin-bottom: 25px;
}
.ditem p {
	position: relative;
	padding-left: 100px;
	font-weight: 500;
}
.ditem p::before {
	content: '';
	background: #dddddd;
	display: block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: -7px;
}
.uni .ditem p::before {
	background: #fac204;
}
.ditem p .time {
	position: absolute;
	top: 0;
	left: 7px;
	padding-left: 14px;
}
.longtime {
	padding-left: 100px !important;
}
@media(max-width:750px) {
	.spdflow {
		margin-bottom: 45px;
	}
	.ditem {
		margin-bottom: 15px;
	}
}
/*従業員紹介*/
.membox {
	margin-bottom: 25px;
	padding: 17px;
	border: 1px solid rgba(224, 183, 63, 0.35);
	/*background: #262626;*/
}
.membox .stitle {
	font-size: 1.2rem;
}
.membox p span {
	font-weight: 600;
	color: #e0b73f;
	display: block;
}
.membox img {
	margin-bottom: 3px;
}
.members {
	position: relative;
}
.members::after {
	content: "";
	display: block;
	width: 32%;
}
.membr {
	display: none;
}
@media(max-width:1050px) {
	.membr {
		display: block;
	}
}
@media(max-width:750px) {
	.membox {
		margin-bottom: 20px;
	}
	.membox:last-child {
		margin-bottom: 0;
	}
	.membr {
		display: none;
	}
	.membox .stitle {
		font-size: 1.05rem;
	}
}
/*テーブル*/
.info_table02 {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.info_table02 tr {
	border: 1px solid rgba(255, 255, 255, 0.5);
}
.info_table02 th, .info_table02 td {
	padding: 15px 5px;
}
.info_table02 th {
	font-weight: 500;
	width: 31%;
	border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.info_table02 td {
	padding-left: 10px;
	width: 69%;
	border-right: 1px solid rgba(255, 255, 255, 0.5);
	border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.spbr {
	display: none;
}
@media(max-width:550px) {
	.info_table02 {
		font-size: 0.87rem;
	}
	.spbr {
		display: block;
	}
}
/*応募フロー*/
.mnflow {
	position: relative;
	width: 17%;
	padding: 10px;
	font-size: 120%;
	background: #111;
}
.mnflow::after {
	font-family: "Font Awesome 5 Free";
	content: "\f101";
	font-weight: bold;
	font-size: 1.2rem;
	color: #f5de0c;
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 107%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.mnflow:last-child::after {
	content: none;
}
.mnflow h3 {
	color: #f5de0c;
	text-align: center;
	margin-bottom: 0;
	font-size: 0.9rem;
	font-weight: 700;
}
@media(max-width:1085px) {
	.mnflow {
		padding: 10px 10px 5px;
		font-size: 100%;
	}
	.mnflow::after {
		font-size: 0.9rem;
	}
}
@media(max-width:750px) {
	.mnflow {
		margin-bottom: 30px;
	}
	.mnflow::after {
		content: none;
	}
	.mnflow::before {
		font-family: "Font Awesome 5 Free";
		content: "\f103";
		font-weight: bold;
		font-size: 0.9rem;
		color: #f5de0c;
		line-height: 1;
		position: absolute;
		bottom: -21px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}
	.mnflow:last-child::before {
		content: none;
	}
}
/*ご応募はこちら*/
.fbtm {
	margin-top: 95px;
}
.fbtm .stitle {
	border-bottom: none;
	margin-bottom: 30px;
	text-align: center;
	font-size: 1.6rem;
}
.rbtnflex {
	display: flex;
	justify-content: space-between;
	max-width: 700px;
	margin: auto;
}
.rbtnflex .mainbtn {
	width: 49%;
}
.rbtnflex .mainbtn a {
	width: 100%;
}
@media(max-width:750px) {
	.fbtm .stitle {
		font-size: 1.15rem;
	}
	.fbtm {
		margin-top: 40px;
	}
}
@media(max-width:450px) {
	.fbtm .stitle {
		margin-bottom: 20px;
	}
	.rbtnflex {
		display: block;
	}
	.rbtnflex .mainbtn {
		width: 100%;
		max-width: 240px;
		margin-bottom: 10px;
	}
}
/* 相談室・お問い合わせ ====================================================================================================================*/
/*ご依頼の流れ*/
.flowd .rcheck.flexbox {
	justify-content: flex-start;
}
.flowd .rcheck.flexbox p {
	width: fit-content;
	margin-right: 25px;
}
@media(max-width: 750px) {
	.flowd .rcheck.flexbox p {
		margin-bottom: 0;
		margin-right: 0;
	}
}
.flow {
	position: relative;
}
.flow::before {
	content: "";
	width: 16px;
	height: 100%;
	background-color: #3d3d3d;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.ftitle {
	font-weight: 600;
	margin-bottom: 13px;
	ont-size: clamp(1.1rem, 0.98rem + 0.4267vw, 1.3rem);
	position: relative;
	z-index: 2;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.ftitle::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 75px;
	height: 1px;
	background: #1e90ff;
	opacity: 0.6;
}
.ftitle span {
	margin-right: 13px;
	position: relative;
	color: #1e90ff;
}
.flow .fwrap {
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: transparent;
}
.flow .flowd {
	margin-bottom: 30px;
}
.flow .flowd:last-child {
	margin-bottom: 0 !important;
}
.flow .fwrap .mainbtn a {
	width: 100%;
	padding: 8px 0;
}
.flow .fwrap .mainbtn a::after {
	content: none;
}
.flow .flowd::after, .flow .flowd::before {
	content: "";
	display: block;
	position: absolute;
	top: 57px;
}
.flow .flowd {
	padding-left: 80px;
	position: relative;
}
.flow .flowd::before {
	z-index: 1;
	width: 11px;
	height: 11px;
	margin-top: -5px;
	background: #1e90ff;
	border-radius: 50%;
	left: 3px;
}
.flow .flowd::after {
	width: 63px;
	border-bottom: 1px dashed #1e90ff;
	position: absolute;
	left: 13px;
}
.btns {
	margin-top: 20px;
}
@media (max-width: 955px) {
	.fservices {
		padding-bottom: 0;
	}
	.flow .flowd {
		padding-left: 0;
	}
	.flow .flowd::before, .flow .flowd::after {
		content: none;
	}
	.flow::before {
		content: none;
	}
	.flow .fwrap .mainbtn a::after {
		content: none;
	}
	.flow .flowd {
		margin-bottom: 25px;
	}
	.ftitle span {
		margin-right: 8px;
	}
}
@media (max-width: 1100px) {
	.flow .flexbox {
		align-items: center;
	}
	.btns .mainbtn a {
		white-space: nowrap;
		font-size: 0.87rem;
	}
}
@media(max-width: 835px) {
	.btns .mainbtn a {
		font-size: 0.75rem;
	}
}
@media(max-width: 750px) {
	.flow .flowd {
		margin-bottom: 15px;
	}
	.btns .mainbtn a {
		font-size: 100%;
	}
	.flow .fwrap .btns .mainbtn {
		margin-bottom: 10px;
	}
	.flow .fwrap .btns .mainbtn:last-child {
		margin-bottom: 0 !important;
	}
	.flow .fwrap .btns .mainbtn a {
		padding: 5px 0;
	}
	.flow .flexbox {
		display: block;
	}
	.flow .flexbox img {
		width: 100%;
	}
	.flow .flexbox div {
		width: 100%;
	}
	.flow .flowd .flexbox img {
		margin-bottom: 10px;
	}
	.flow .flex div {
		margin: 0 5px 8px;
	}
	.flowd .flimg img {
		object-fit: cover;
		width: 100%;
		height: 240px;
	}
	.ftitle {
		font-size: 1rem;
	}
}
@media(max-width: 600px) {
	.flow .flex {
		display: block;
	}
	.flow .flex img {
		width: 100%;
	}
	.flow .flex div {
		width: 100%;
		margin: 0 0 8px;
	}
	.flowd .flimg img {
		height: 100%;
	}
}
@media(max-width: 550px) {
	.flows .maintitle {
		margin-bottom: 40px;
	}
	.flow .fwrap {
		padding: 10px 15px;
	}
	.ftitle {
		margin-bottom: 10px;
	}
	.ftitle span {
		display: block;
	}
	.btns {
		margin-top: 13px;
	}
}
/* お問い合わせ ========================================================================*/
.commgb {
	margin-bottom: 40px;
}
.contact_top_text {
	margin-bottom: 80px;
	max-width: 600px;
}
@media(max-width:550px) {
	.commgb {
		margin-bottom: 30px;
	}
	.contact_top_text {
		font-size: 90%;
		margin-bottom: 35px;
	}
}
.contactp .rtext {
	margin-bottom: 45px;
}
@media (max-width: 750px) {
	.contactp .rtext {
		margin-bottom: 30px;
	}
}
.contact_wrap {
	position: relative;
	background-color: transparent;
	margin: auto;
	padding: 20px;
	border: 1px solid rgba(224, 183, 63, 0.5);
}
.rcheck p::before {
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #e0b73f;
	opacity: 0.75;
	margin-right: 0.4em;
	font-size: 0.93em;
	text-decoration: none;
}
.tel_contact {
	font-size: clamp(1.6rem, 1.24rem + 1.28vw, 2.2rem);
	margin-bottom: 3px;
	white-space: nowrap;
	color: #fff;
	z-index: 1;
	position: relative;
}
.tel_contact:hover {
	opacity: 0.6;
}
.telflex {
	max-width: 1055px;
	margin: auto;
	align-items: flex-start;
}
.telflex .contact_wrap {
	margin: 0;
}
.tel_text {
	margin-top: 7px;
	margin-bottom: 5px;
}
.te.tel_text {
	margin-top: 5px !important;
}
@media (max-width: 750px) {
	.te.tel_text {
		margin-bottom: 30px;
	}
}
.faxlist {
	display: flex;
	justify-content: center;
}
.faxlist p {
	margin-right: 25px;
	margin-bottom: 0;
	white-space: nowrap;
}
.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.5875rem + 1.8vw, 1.6rem);
	line-height: 1.5;
}
.spb {
	margin-bottom: 60px;
	font-size: clamp(1.15rem, 0.5875rem + 1.8vw, 1.6rem);
}
@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;
		text-align: left;
		font-size: 87%;
	}
	.faxlist p {
		font-size: 87%;
	}
}
@media (max-width: 490px) {
	.spb {
		margin-bottom: 20px;
	}
	.telmini {
		margin-bottom: 15px;
	}
}
@media (max-width: 415px) {
	.tel_text {
		margin-bottom: 15px;
	}
	.faxlist {
		display: block;
		width: 100% !important;
		margin: auto;
		margin-left: 0;
	}
	.faxlist p {
		border-bottom: 1px dotted rgba(224, 183, 63, 0.5);
		margin-right: 0;
		padding-bottom: 3px;
	}
}
.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: 15px 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: 2.5%;
}
.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;
	}
	.mailform {
		margin-top: 0;
	}
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #e0b73f;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-weight: 500;
	font-size: 1rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #333;
	background: #e0b73f;
	padding: 5px;
	margin-right: 5px;
	font-size: 12.5px;
	font-weight: 500;
}
.mailsp {
	background: transparent !important;
	border: 1px solid #e0b73f;
	color: #e0b73f !important;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	font-weight: 500;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #f0f0f0;
}
.mailform button {
	display: block;
	text-align: center;
	font-size: 1rem;
	margin: 0 auto;
	white-space: nowrap;
	background-color: transparent;
	color: #e0b73f;
	border: 1px solid #e0b73f;
	font-weight: 500;
	padding: 1% 7%;
	transition: .4s;
}
.mailform button:hover {
	color: #111;
	background: #e0b73f;
	opacity: 1;
}
.mailform button::before {
	font-family: "Font Awesome 5 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(224, 183, 63, 0.5);
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
	font-weight: 500;
}
.privacy_header .fa-lock {
	color: #e0b73f;
}
.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 {
	color: #e0b73f;
	transition: ease-in-out 300ms;
}
.rotate-fa {
	transform: rotate(180deg);
}
.privacy_header span {
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.privacy_gold {
	color: #e0b73f;
}

/* 240508更新分 インスタグラムのアイコン追加 =============================*/
.iconbtn a p {
	margin: auto;
	width: fit-content;
	font-size: 0.8rem;
	line-height: 1.7;
	background: linear-gradient(95deg, #ffdb2c, #f13f79, #962bed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: "Satisfy", cursive;
	font-weight: 400;
}
.iconbtn a div {
	margin: auto;
	width: 45px;
	height: 45px;
	font-size: 2.35rem;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	overflow: hidden;
	border-radius: 7px;
}
.iconbtn a div:after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(195deg, #962bed 0%, #f13f79 75%) no-repeat;
	z-index: -20;
}
.iconbtn a div:before {
	content: '';
	position: absolute;
	top: 23px;
	left: -18px;
	width: 60px;
	height: 60px;
	z-index: -1;
	opacity: 0.75;
	filter: blur(7px);
	background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}
.iconbtn a:hover {
	opacity: 0.6;
}
@media(max-width:750px) {
	.privacy_text {
		padding: 20px 15px 30px;
	}
}
/* SPのみ表示 =========*/
.sp_icon {
	display: none;
	position: fixed;
	top: 10.5px;
	right: 70px;
	z-index: 100;
}
.sp_icon .iconbtn a p {
	font-size: 0.65rem;
}
.sp_icon .iconbtn a div {
	width: 35px;
	height: 35px;
	font-size: 1.9rem;
}
@media (max-width: 1225px) {
	.sp_icon {
		display: block;
	}
}
@media (max-width: 500px) {
	.sp_icon {
		top: 3.5px;
		right: 55px;
		transform: scale(0.8);
	}
}
@media (max-width: 310px) {
	.sp_icon {
		display: none;
	}
}