@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 500;
	line-height: 1.7;
	color: #333;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
}
a {
	text-decoration: none;
	color: #cc006d;
	transition: .4s;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 80px 0 100px;
	position: relative;
}
main section:first-child {
	padding-top: 50px;
}
main section:last-child {
	padding-bottom: 120px;
}
@media (max-width: 1045px) {
	main section {
		padding: 90px 0;
	}
}
@media (max-width: 550px) {
	main section:first-child {
		padding-top: 35px;
	}
	main section {
		padding: 40px 0 60px;
	}
	main section:last-child {
		padding-bottom: 55px;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
/* テキスト */
p {
	margin-bottom: 10px;
}
.marker {
	text-decoration: underline;
	text-decoration-thickness: 0.45em;
	text-decoration-color: rgba(255, 239, 135, 0.75);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
.fbold {
	font-weight: 700;
}
/*見出し01*/
.maintitle {
	margin-bottom: 40px;
	display: block;
	text-align: center;
	line-height: 1.23;
	font-weight: 500;
}
.maintitle .mf {
	text-align: center;
	color: #cc006d;
	font-size: clamp(2.1rem, 1.44rem + 2.3467vw, 3.2rem);
	margin-bottom: 10px;
}
.maintitle .sf {
	/*color: #cc006d;*/
	font-size: clamp(1.05rem, 0.96rem + 0.32vw, 1.2rem);
}
.maintitle.mtleft {
	text-align: left;
}
.maintitle.mtleft .sf {
	position: relative;
	padding-left: 40px;
}
.maintitle.mtleft .sf::before {
	background-color: #333;
	position: absolute;
	content: "";
	top: 0.75em;
	left: 0;
	width: 29px;
	height: 1px;
}
@media (max-width: 750px) {
	.maintitle {
		margin-bottom: 45px;
	}
}
@media (max-width: 450px) {
	.maintitle {
		margin-bottom: 30px;
	}
}
/*見出し02*/
.mtitle {
	font-weight: 500;
	position: relative;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
	font-size: clamp(1.3rem, 1.21rem + 0.32vw, 1.45rem);
	line-height: 1.5;
}
.mtitle span {
	font-size: 75%;
	color: #cc006d;
}
@media (max-width: 750px) {
	.mtitle {
		margin-bottom: 15px;
	}
}
@media (max-width: 450px) {
	.mtitle {
		margin-bottom: 7px;
	}
}
/*見出し03*/
.stitle {
	position: relative;
	font-size: clamp(1.1rem, 0.98rem + 0.4267vw, 1.3rem);
	border-bottom: 1px solid #cc006d;
	margin-bottom: 15px;
	padding-bottom: 2px;
	padding-left: 2px;
	font-weight: 500;
	color: #333;
}
/*
.stitle::before {
    content: '';
    position: absolute;
    bottom: -1px;
	left: 0;
    width: 100px;
    height: 1px;
    background: #cc006d;
}
*/
@media (max-width: 750px) {
	.stitle {
		margin-bottom: 10px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 10px;
	border: 1px solid #cc006d;
	transition: .4s;
	display: inline-block;
	width: 16.5rem;
	text-align: center;
	color: #cc006d;
	background: #fff;
	z-index: 1;
	overflow: hidden;
	font-size: 1rem;
}
.mainbtn a:hover {
	color: #fff;
	background: #cc006d;
	transition: .4s;
}
.mainbtn a::after {
	position: absolute;
	top: 50%;
	right: 10px;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	line-height: 1;
	transform: translate(0, -50%);
	font-size: .7em;
	transition: .1s;
}
@media (max-width: 450px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 63%;
		padding: 7px;
	}
}
/*flex要素*/
.flexbox {
	display: flex;
	justify-content: space-between;
}
.fwrap {
	flex-wrap: wrap;
}
@media (max-width: 750px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
		margin-bottom: 7px;
	}
	.flexbox div {
		width: 100%;
	}
	.fwrap div {
		width: 100% !important;
	}
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 92%;
	max-width: 1200px;
	margin: 0 auto;
}
.w65 {
	width: 65%;
}
.w58 {
	width: 58%;
}
.w50 {
	width: 50%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 48%;
}
.w38 {
	width: 38%;
}
.w32 {
	width: 32%;
}
.w24 {
	width: 24%;
}
/* 背景 */
.bg_grey::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #f7f7f7;
	z-index: -2;
}
.bg_grey02::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: url(../img/bg_grey.jpg);
	height: 100%;
	width: 100%;
	background-size: 40px;
	background-repeat: repeat;
	z-index: -35;
	opacity: 0.35;
}
.half::before {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: #ededed;
	z-index: -1;
}
/*フェードイン　アニメーション*/
.flowup {
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 1.7s, transform 1.7s;
}
.flowup.inview {
	opacity: 1;
	transform: translateY(0);
}
/*=== 共通部分ここまで ===*/
/* header */
.header_wrap {
	width: 245px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	height: 100vh;
	background: #fff;
	overflow-y: auto;
	box-shadow: 4px 0px 3px -5px rgb(0 0 0 / 15%);
}
.header {
	width: 90%;
	margin: auto;
	padding: 25px 10px 0;
	max-height: 650px;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_title {
	width: 95%;
	margin: auto;
}
.header_title a img {
	width: 100%;
}
.header h1 {
	transition: .3s;
	z-index: 110;
}
.header_title:hover h1 {
	opacity: 0.7;
	transition: .3s;
}
.header_nav {
	margin: 15% 0;
}
.header ul {
	text-align: center;
	width: 100%;
}
.header ul li {
	width: 95%;
	display: inline-block;
	border-bottom: 1px solid #ddd;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 3px 5px;
	color: #333;
	text-align: left;
	margin: 7px 0;
}
.header ul li a:hover {
	color: #333;
	opacity: 0.6;
}
.header .mainbtn {
	text-align: center;
}
.header .mainbtn a {
	width: 100%;
}
.header .mainbtn a::after {
	content: none;
}
.header_item > div {
	margin-bottom: 10px;
}
.header_item > div:last-child {
	margin-bottom: 0;
}

p.attention{
	font-weight: bold;
	color: #3044a6;
	text-align: center;
	margin-bottom: 15px;
}


.btnright a {
	background: #fff;
	color: #3044a6;
	border: 1px solid #3044a6;
}
.btnright a:hover {
	border: 1px solid #3044a6;
	color: #fff;
	background: #3044a6;
}
.tel {
	color: #333;
	font-size: 1.7rem;
}
.menu_btn_mgt, .hamburger_menu, .header_inner label {
	display: none;
}
/* ハンバーガーメニュー */
/* 電話番号 */
.hum_tel {
	text-align: center;
	margin-bottom: 13px;
	font-size: 1.3rem;
	font-weight: 500;
}
.hum_tel a {
	color: #cc006d;
}
.hum_tel a:hover {
	opacity: 0.6;
}
/* ボタン */
.menu_btn {
	position: fixed;
	top: 19px;
	right: 21px;
	cursor: pointer;
	display: flex;
	height: 32px;
	width: 39px;
	justify-content: center;
	align-items: center;
	z-index: 110;
}
.menut {
	color: #cc006d;
	font-weight: 700;
	font-size: 0.7rem;
	position: absolute;
	bottom: -13px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.menu_btn span, .menu_btn span:before, .menu_btn span:after {
	content: '';
	display: block;
	height: 2.5px;
	width: 39px;
	background: #cc006d;
	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;
	background: #cc006d;
}
#menu_btn_check:checked ~ .menu_btn span::after {
	top: 0;
	transform: rotate(-45deg) !important;
	transition: all 0.4s;
	background: #cc006d;
}
#menu_btn_check:checked ~ .menu_btn .menut {
	opacity: 0;
	transition: .3s;
}
#menu_btn_check {
	display: none;
}
/* ハンバーガー内メニュー */
.menu_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 80;
	background-size: cover;
	background-position: center;
	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 5px;
}
.menu_content ul {
	text-align: center;
}
.menu_content ul li {
	padding: 3px 0;
	margin: 5px 0;
	list-style: none;
}
.menu_content ul li a {
	display: block;
	width: 100%;
	font-size: 1rem;
	box-sizing: border-box;
	text-decoration: none;
	padding: 9px 0;
	color: #333;
	position: relative;
}
.menu_content ul li a:hover {
	opacity: 0.6;
}
.hum_info {
	max-width: 500px;
	margin: auto;
	margin-top: 25px;
}
.menu_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	background: #fff;
	transition: all 0.6s;
	pointer-events: none;
	opacity: 0;
}
.menu_content .mainbtn {
	text-align: center;
	margin-bottom: 7px;
}
.menu_content .mainbtn a::after {
	content: none;
}
#menu_btn_check:checked ~ .menu_content {
	opacity: 1;
	pointer-events: auto;
}
.site_wrap {
	margin-left: auto;
	width: calc(100% - 245px);
}
@media (max-height: 755px) {
	.header ul li a {
		padding: 5px;
	}
	.h_note {
		font-size: 0.78rem;
	}
	.header {
		padding: 0 10px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	}
	.header_nav {
		margin: 9% 0 10%;
	}
}
@media (max-height: 670px) {
	.h_sticky {
		position: sticky;
		top: 0;
		left: 0;
		right: 0;
		z-index: 100;
	}
	.header_wrap {
		width: 100%;
		height: 80px;
		position: relative;
		top: 0;
		left: 0;
		z-index: 100;
		background: #fff;
		overflow-y: hidden;
		box-shadow: 0px 4px 4px -5px rgb(0 0 0 / 18%);
	}
	.header_nav {
		display: none;
	}
	.header {
		padding: 0;
		padding-left: 0;
		top: 50%;
		margin: 0;
	}
	.menu_btn_mgt, .hamburger_menu, .header_inner label {
		display: block;
		position: relative;
		z-index: 9999;
	}
	.header {
		justify-content: flex-start;
		width: 95%;
	}
	.header_title {
		visibility: visible;
		align-self: flex-start;
		z-index: 110;
		width: 122px;
		margin: 0;
	}
	.header .inner {
		display: none;
	}
	.header_item {
		display: none;
	}
	.header_inner {
		margin: 0 auto;
		padding: 0;
	}
	.site_wrap {
		margin: auto;
		width: 100%;
	}
	.humflex {
		display: flex;
		justify-content: space-around;
	}
	.menu_content {
		font-size: 0.9rem;
	}
	.menu_content nav {
		padding: 30px 30px 15px;
		max-width: 400px;
		margin: auto;
	}
	.menu_content ul li {
		margin: 10px 0;
	}
	.humflex ul {
		width: 48%;
	}
	.hum_info {
		margin-top: 35px;
	}
}
@media (max-width: 1175px) {
	.h_sticky {
		position: sticky;
		top: 0;
		left: 0;
		right: 0;
		z-index: 100;
	}
	.header_wrap {
		width: 100%;
		height: 80px;
		position: relative;
		top: 0;
		left: 0;
		z-index: 100;
		background: #fff;
		overflow-y: hidden;
		box-shadow: 0px 4px 4px -5px rgb(0 0 0 / 18%);
	}
	.header_nav {
		display: none;
	}
	.header {
		padding: 0;
		padding-left: 0;
		top: 50%;
		margin: 0;
	}
	.menu_btn_mgt, .hamburger_menu, .header_inner label {
		display: block;
		position: relative;
		z-index: 9999;
	}
	.header {
		justify-content: flex-start;
		width: 95%;
	}
	.header_title {
		visibility: visible;
		align-self: flex-start;
		z-index: 110;
		width: 122px;
		margin: 0;
	}
	.header .inner {
		display: none;
	}
	.header_item {
		display: none;
	}
	.header_inner {
		margin: 0 auto;
		padding: 0;
	}
	.site_wrap {
		margin: auto;
		width: 100%;
	}
	.humflex {
		display: flex;
		justify-content: space-around;
	}
	.menu_content {
		font-size: 0.9rem;
	}
	.menu_content nav {
		padding: 30px 30px 15px;
		max-width: 400px;
		margin: auto;
	}
	.menu_content ul li {
		margin: 10px 0;
	}
	.humflex ul {
		width: 48%;
	}
	.hum_info {
		margin-top: 35px;
	}
}
@media (max-width: 450px) {
	.header_title {
		width: 120px;
	}
	.header_wrap {
		height: 83px;
	}
	.menu_btn {
		top: 22px;
		right: 16px;
	}
	.hum_info {
		max-width: 90%;
	}
	.menu_content {
		font-size: 0.85rem;
	}
	.menu_content ul li a {
		font-size: 1rem;
	}
}
/* footer */
.fax {
	pointer-events: none;
}
/* フッターお問い合わせリンク */
.footer_contact {
	position: relative;
	z-index: 1;
	background: url(../img/footer.jpg);
	background-size: cover;
	background-position: 50% 10%;
	padding: 60px 0 85px;
	text-align: center;
	color: #fff;
	background-attachment: fixed;
}
/*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.67;
	z-index: -1;
}
.footer_contact .maintitle {
	color: #fff;
	margin-bottom: 30px;
}
.footer_contact .maintitle .mf {
	color: #fff;
}
.footer_contact .btn_wrap {
	display: flex;
	justify-content: space-around;
	margin: 40px auto 0;
	max-width: 850px;
}
.footer_contact .btn_wrap .btn {
	width: 335px;
	margin: 0 auto;
}
.footer_contact .btn_wrap .btn a {
	display: block;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	padding: 20px 5px;
	font-size: 1.25rem;
}
.footer_contact .btn_wrap .btn a:hover {
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, 0.1);
}
.footer_contact p {
	font-size: 1.15rem;
	margin-right: -20px;
}
@media (max-width: 750px) {
	.footer_contact .btn_wrap {
		display: block;
	}
	.footer_contact .btn_wrap .btn {
		width: 80%;
		margin-bottom: 15px;
	}
}
@media (max-width: 535px) {
	.footer_contact p {
		font-size: 1rem;
		text-align: left;
		margin-right: 0;
	}
}
@media (max-width: 450px) {
	.footer_contact .btn_wrap .btn a {
		font-size: 1.05rem;
	}
	.footer_contact .btn_wrap {
		margin-top: 30px;
	}
	.footer_contact .maintitle {
		margin-bottom: 25px !important;
	}
	.footer_contact {
		padding: 45px 0;
	}
	.footer_contact {
		background-attachment: scroll;
	}
}
@media (max-width: 325px) {
	.footer_contact .btn_wrap .btn a {
		font-size: 1rem;
	}
}
/* links */
.fnavwrap {
	padding: 20px 0 0;
}
.fnavwrap .inner {
	max-width: 1000px;
}
.fnav {
	display: flex;
}
.fnav li {
	font-size: 0.95rem;
	width: calc(100% / 6);
	text-align: center;
	border-right: 1px solid #ddd;
}
.fnav li:last-child {
	border-right: none;
}
.fnav li a {
	text-align: center;
	color: #333;
	transition: .3s;
}
.fnav li a:hover {
	opacity: 0.6;
}
@media (max-width: 850px) {
	.fnavwrap {
		display: none;
	}
}
/* ロゴとアドレス */
.footer_address {
	text-align: center;
	padding: 20px 0;
	background: #fff;
}
.footer_address .maintitle {
	margin: 1% auto 2%;
}
.footer_address a {
	display: inline-block;
}
.flogo {
	color: #fff;
	width: 210px;
	margin-bottom: 10px;
}
@media (max-width: 750px) {
	.flogo {
		max-width: 375px;
	}
}
@media (max-width: 450px) {
	.flogo {
		max-width: 78%;
		margin-bottom: 10px;
	}
}
.footer_address p {
	font-size: 0.95rem;
	margin-bottom: 0;
}
.address br {
	display: none;
}
@media (max-width: 500px) {
	.address br {
		display: block !important;
	}
	.footer_address p {
		margin-bottom: 7px;
	}
}
.telfax br {
	display: none;
}
@media (max-width: 500px) {
	.telfax br {
		display: block;
	}
	.telfax span {
		display: none;
	}
	.footer_address {
		padding: 20px 0;
	}
}
/* コピーライト */
.copyright {
	text-align: center;
	padding: 7px 0 10px;
	background: #cc006d;
	color: #fff;
}
@media (max-width: 500px) {
	.copyright {
		padding: 5px 3px;
	}
}
/*ページ上に戻るボタン*/
.tfade {
	position: relative;
	z-index: 79;
}
.go_top {
	display: block;
	width: 65px;
	height: 65px;
	box-sizing: border-box;
	border: 2px solid #fff;
	background: #3044a6;
	padding-top: 30px;
	text-align: center;
	letter-spacing: -1px;
	font-size: 85%;
	text-decoration: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	border-radius: 50px;
	transition: 0.3s;
	z-index: 79;
}
.go_top::before {
	content: "";
	display: block;
	border-top: 3.5px solid #fff;
	border-right: 3.5px solid #fff;
	width: 37%;
	height: 37%;
	top: 22px;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	transform: rotate(-45deg);
}
.go_top:hover {
	background: #fff;
	border: 2px solid #3044a6;
}
.go_top:hover::before {
	border-top: 3.5px solid #3044a6;
	border-right: 3.5px solid #3044a6;
}
@media(max-width:450px) {
	.go_top {
		width: 55px;
		height: 55px;
		text-indent: -9999px;
		bottom: 10px;
		right: 10px;
		opacity: 1;
	}
	.go_top::before {
		bottom: 18px;
	}
}
/* スライド キャッチコピーなし
.slide_text_opacity {
	animation-name: txtopacity;
	animation-duration: 46s; スライドの枚数によって変える
	animation-iteration-count: infinite;
}
 */
/* テキストの透明度 スライドの枚数によって変える */
@keyframes txtopacity {
	0% {
		opacity: 0;
	}
	27% {
		opacity: 0;
	}
	28% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}
/* スライド */
.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::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(#333 20%, transparent 20%), radial-gradient(#333 20%, transparent 20%);
	background-size: 3px 3px;
	background-position: 0 0, 1.5px 1.5px;
	z-index: 1;
}
.slide_items {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.slide_items img {
	width: 100%;
	height: 100vh;
	min-height: 600px;
	object-fit: cover;
	opacity: 0.55;
}
.slide_text {
	white-space: nowrap;
	position: absolute;
	font-size: 2.5rem;
	letter-spacing: 0.12em;
	text-shadow: 0px 0.3px 1px rgb(0 0 0 / 50%), 0px -0.3px 2px rgb(0 0 0 / 50%);
	color: #fff;
	font-weight: 400;
	font-family: 'Kosugi Maru', sans-serif;
	z-index: 2;
	line-height: 1.6;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}
.slide_text p {
	margin-bottom: 0;
}
.slideback {
	font-style: italic;
	font-weight: 700;
	font-family: 'Charm', cursive;
	opacity: 0.1;
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
	z-index: -1;
	font-size: 12vw;
}
.slideback p {
	transform: rotate(-10deg);
	margin-bottom: 0;
}
@media (max-width: 1600px) {
	.slide_text {
		font-size: 2.4rem;
	}
}
@media (max-width: 1480px) {
	.slide_text {
		font-size: 2.4vw;
	}
}
@media (max-width: 1280px) {
	.slide_items img {
		min-height: auto;
		height: 650px;
	}
}
@media (max-width: 1205px) {
	.slide_text {
		font-size: 2.9vw;
	}
}
@media (max-width: 1015px) {
	.slide_items img {
		min-height: auto;
		height: 550px;
	}
}
@media (max-width: 780px) {
	.slide_text {
		font-size: 3vw;
	}
}
@media (max-width: 750px) {
	.slide_items img {
		height: 350px;
	}
}
@media (max-width: 530px) {
	.slide_items img {
		height: 270px;
	}
	.slideback {
		opacity: 0.2;
		font-size: 22vw;
	}
	.slide_text {
		white-space: normal;
		font-size: 4.8vw;
		width: 88%;
	}
}
.pdb0 {
	padding-bottom: 0;
}
.pdb20 {
	padding-bottom: 23px;
}
.center {
	text-align: center;
}
.fitc {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.tbtn {
	margin-top: 40px;
}
@media (max-width: 450px) {
	.tbtn {
		margin-top: 30px;
	}
}
.aic {
	align-items: center;
}
/* news */
/* 新型コロナウイルス感染症対策について */
.contr {
	padding: 75px 0 80px;
}
.contr .maintitle {
	margin-bottom: 20px;
}
.contr p {
	margin-bottom: 0;
}
.conbox p::before {
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #3044a6;
	margin-right: 0.4em;
	font-size: .9em;
}
.contrflex {
	display: flex;
	justify-content: space-between;
}
.contrflex:last-child {
	margin-bottom: 0 !important;
}
.conbox {
	text-align: center;
	width: calc(100% / 3);
}
.conbox .icon {
	border: 1px solid #cc006d;
	background-color: #fff;
	width: 80%;
	max-width: 130px;
	aspect-ratio: 1 / 1;
	margin: 0 auto 10px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.conbox .icon img {
	display: block;
	width: 70%;
}
@media (max-width: 750px) {
	.contr {
		padding: 50px 0;
	}
	.contr p.fitc {
		margin-bottom: 30px;
	}
	.conbox .icon img {
		margin-bottom: 0;
	}
}
@media (max-width: 450px) {
	.contr {
		padding: 30px 0 45px;
	}
	.contr p.fitc {
		margin-bottom: 20px;
	}
	.conbox p {
		font-size: 0.85rem;
	}
	.conbox .icon {
		margin-bottom: 5px;
	}
}
@media (max-width: 320px) {
	.conbox p {
		font-size: 4.2vw
	}
	/*
	.contrflex {
		display: block;
	}
	.contrflex div {
		width: 100%;
	}
	*/
}
/*挨拶*/
.welcome .mainbtn a:hover {
	background: #cc006d;
}
.welcome:before {
	content: "";
	background: url(../img/welcome.jpg);
	background-color: rgba(255, 255, 255, 0.55);
	background-blend-mode: lighten;
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	filter: grayscale(80%);
	z-index: -1;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .welcome:before {
	background-attachment: scroll;
}
.wbox {
	background: rgba(255, 255, 255, 0.85);
	padding: 50px 30px 80px;
}
.welcome p {
	max-width: 965px;
	margin: auto;
	margin-bottom: 15px;
}
@media (max-width: 960px) {
	.welcome p {
		text-align: left;
	}
	.welcome p br {
		display: none;
	}
	.welcome:before {
		background-position: 30% 50%;
	}
}
@media (max-width: 450px) {
	.welcome:before {
		background-attachment: scroll;
	}
	.welcome .maintitle {
		margin-bottom: 20px;
	}
	.welcome p {
		margin-bottom: 10px;
	}
	.wbox {
		padding: 30px 20px 45px;
		background: rgba(255, 255, 255, 0.9);
	}
}
/* 事業内容・採用情報 */
.recruit {
	margin-bottom: 60px;
}
@media (max-width:750px) {
	.recruit {
		margin-bottom: 0;
	}
}
.recruit.business {
	margin-bottom: 0 !important;
}
/* 採用情報 */
@media (min-width: 1950px) {
	.recruit .flexbox {
		width: 100%;
		margin: auto;
	}
	.inner02 {
		margin: 0 auto;
		width: 92%;
	}
}
@media (max-width: 1949px) {
	.recruit .flexbox {
		width: 95%;
		margin-right: auto;
	}
	.inner02 {
		width: 100%;
	}
}
@media (max-width: 750px) {
	.inner02 {
		margin: 0 auto;
		width: 92%;
	}
	.recruit .flexbox {
		width: 100%;
	}
}
.recruit .tcheck {
	margin: 17px 0 15px;
}
/* 文字 */
.recruit .maintitle {
	margin-bottom: 30px;
}
.ctext {
	position: relative;
	top: 50px;
}
.half::before {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: #ededed;
	z-index: -1;
}
.recruit.half::before {
	height: 65%;
	top: 0;
	bottom: auto;
	width: 70%;
	right: 0;
}
.recruit .flexbox::before {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 60%;
	height: 76%;
	background: #e4e4f4;
	z-index: -1;
}
@media (max-width: 1830px) {
	.recruit .maintitle {
		margin-bottom: 20px;
	}
	.recruit .flexbox::before {
		height: 77%;
	}
}
@media (max-width: 1055px) {
	.recruit .flexbox::before {
		height: 76%;
	}
}
@media (max-width: 750px) {
	.ctext {
		top: 0;
	}
	.recruit.half::before {
		height: 390px;
	}
	.recruit .flexbox::before {
		width: 100%;
		height: calc(100% - 390px) !important;
	}
}
@media (max-width: 550px) {
	.recruit.half::before {
		height: 350.5px;
	}
	.recruit .flexbox::before {
		height: calc(100% - 339px) !important;
	}
}
@media (max-width: 455px) {
	.recruit.half::before {
		height: 251.5px;
	}
	.recruit .flexbox::before {
		height: calc(100% - 240px) !important;
	}
}
.tcheck li {
	margin-bottom: 10px;
	border-bottom: 1px dotted #3044a6;
	padding-bottom: 7px;
}
.tcheck li::before {
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #3044a6;
	margin-right: 0.5em;
	font-size: .9em;
}
/* 画像 */
.cbox {
	position: relative;
	height: 470px;
}
.cback {
	background-image: url(../img/trecruit.jpg);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	padding: 15px;
	z-index: 2;
}
.cback::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.5);
	pointer-events: none;
	z-index: -1;
}
.cfront {
	width: 100%;
	height: 100%;
	background: inherit;
}
@media (max-width: 1420px) {
	.cbox {
		height: 365px;
	}
}
@media (max-width:905px) {
	.cbox {
		height: 285px;
	}
}
@media (max-width: 750px) {
	.cbox {
		width: 100%;
		height: 300px !important;
		margin-bottom: 10px;
	}
}
@media (max-width: 455px) {
	.cbox {
		height: 200px !important;
	}
	.cback {
		padding: 10px;
	}
}
@media (max-width: 300px) {
	.cbox {
		height: 62vw;
	}
}
/* banner */
a.bwrap {
	pointer-events: none;
}
.banner {
	width: 300px !important;
	height: 100%;
	position: relative;
	margin: auto;
	margin-top: 30px;
	border: 2px solid #fff;
	pointer-events: auto;
	transition: .3s;
}
.banner img {
	margin-bottom: 0 !important;
}
.banner:hover {
	opacity: 0.6;
}
.banner::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
	background: radial-gradient(#333 20%, transparent 20%), radial-gradient(#333 20%, transparent 20%);
	background-size: 3px 3px;
	background-position: 0 0, 1.5px 1.5px;
}
.banner::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #111;
	opacity: 0.55;
}
.banner .bntext {
	margin-bottom: 0;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 90%;
	text-align: center;
	z-index: 2;
	top: 45%;
	line-height: 1.3;
	font-size: 1.45rem;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 25%), 0px -0.3px 3px rgb(0 0 0 / 25%);
	color: #fff;
}
.banner .bntext span {
	font-size: 60%;
}
@media(max-width:1020px) {
	.banner {
		width: 80% !important;
	}
	.banner .bntext {
		font-size: 1.3rem;
	}
}
@media(max-width:750px) {
	.banner {
		margin-top: 25px;
		width: 320px !important;
	}
	.banner p {
		font-size: 1.2rem;
	}
}
@media(max-width:450px) {
	.banner {
		width: 65% !important;
	}
	.banner .bntext {
		line-height: 1.35;
		font-size: 4.8vw;
	}
}
/* 事業内容 */
.business.half::before {
	left: auto;
	right: 0;
}
.business .flexbox::before {
	left: 0;
	right: auto;
	height: 66%;
}
@media (max-width: 1949px) {
	.business .flexbox {
		margin-right: 0;
		margin-left: auto;
	}
}
@media (max-width: 2005px) {
	.business .flexbox::before {
		height: 69%;
	}
}
@media (max-width: 1895px) {
	.business .flexbox::before {
		height: 72%;
	}
}
@media (max-width: 1745px) {
	.business .flexbox::before {
		height: 74%;
	}
}
@media (max-width:865px) {
	.business .flexbox::before {
		height: 73%;
	}
}
@media (max-width:835px) {
	.business .flexbox::before {
		height: 75%;
	}
}
.business .cback {
	background-image: url(../img/tbusiness.jpg);
}
/* 施工実績 */
.s_works .maintitle {
	margin-bottom: 50px;
}
@media (max-width: 750px) {
	.s_works .maintitle {
		margin-bottom: 37px;
	}
}
.s_works .mainbtn {
	margin-top: 40px;
}
.lightbox_hov:hover img {
	opacity: 0.6;
}
.s_works .slider li {
	position: relative;
}
.s_works .slider li::before {
	content: '';
	display: block;
	padding-top: 80%; /*高さの比率*/
}
.s_works .slider li img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.slider .slick-prev:before, .slider .slick-next:before {
	color: #fff;
	opacity: 1;
	font-size: 3.5rem;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 15%), 0px -0.3px 3px rgb(0 0 0 / 15%);
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
}
.slider .slick-prev:before {
	content: "\f104";
}
.slick-prev, .slick-next {
	width: auto;
	height: 100%;
}
.slider .slick-prev {
	left: 14.5px;
	z-index: 3 !important;
}
.slider .slick-next {
	right: 14.5px;
	z-index: 3 !important;
}
.slider .slick-slide {
	margin: 0 15px !important;
	transition: .3s ease;
}
@media (max-width: 865px) {
	.slider .slick-prev {
		left: 16px;
	}
	.slider .slick-next {
		right: 16px;
	}
	.slider .slick-prev:before, .slider .slick-next:before {
		font-size: 2.9rem;
	}
}
@media (max-width: 450px) {
	.s_works .mainbtn {
		margin-top: 30px;
	}
	.slider .slick-slide {
		margin: 0 5px !important;
	}
	.slider .slick-prev:before, .slider .slick-next:before {
		font-size: 2.2rem;
	}
	.slider .slick-prev {
		left: 5px;
	}
	.slider .slick-next {
		right: 5px;
	}
}
/* 下層ページトップ =============================================================*/
.fv {
	height: 325px;
	width: 100%;
	display: flex;
	align-items: center;
	background: url(../img/fv.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 85.5%;
	position: relative;
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #111;
	opacity: 0.67;
}
.fv .inner {
	max-width: 80%;
}
.fv h2 {
	text-shadow: none;
	margin-bottom: 0 !important;
	z-index: 1;
	position: relative;
	color: #fff;
}
.fv .mf {
	text-shadow: none;
	color: #fff;
}
@media (max-width: 1505px) {
	.fv {
		height: 270px;
	}
}
@media(max-width:1000px) {
	.fv {
		height: 235px;
	}
	.fv .inner {
		max-width: 90%;
	}
}
@media(max-width:650px) {
	.fv {
		height: 210px;
	}
}
@media(max-width:550px) {
	.fv h2 {
		line-height: 1.05;
	}
	.fv h2 .mf {
		font-size: 1.75rem;
	}
	.fv h2 .sf {
		font-size: 65%;
	}
	.fv {
		height: 155px;
	}
}
/* breadcrumb */
.binner {
	width: 95%;
	font-size: 0.8rem;
	position: relative;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	position: relative;
	top: -0.1em;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #3044a6;
}
.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.63rem;
	}
	.nd {
		margin-bottom: 20px;
	}
}
/* 事業内容ページ =================================================================*/
.stbox {
	background: #fff;
	padding: 25px 65px 45px;
	box-shadow: rgb(0 0 0 / 2%) 0px 6px 24px 0px, rgb(0 0 0 / 2.5%) 0px 0px 0px 1px;
}
.stbox .maintitle {
	margin-bottom: 27px;
}
.stbox .fitc {
	font-size: 1.1rem;
	margin-bottom: 25px;
}
@media(max-width:960px) {
	.stbox {
		padding: 25px 35px 40px;
	}
	.stbox .maintitle {
		margin-bottom: 27px;
	}
	.stbox .fitc {
		font-size: 100%;
		margin-bottom: 10px;
	}
}
@media(max-width:450px) {
	.stbox {
		padding: 23px 15px 25px;
	}
	.stbox .maintitle {
		margin-bottom: 23px;
	}
}
/* 大事なお家・マンション・店舗のなんでもメンテナンス*/
.mgt {
	margin-top: 13px;
}
.smaintenance .maintitle {
	margin-bottom: 50px;
}
.maintenance {
	margin-bottom: 60px;
}
.maintenance:last-child {
	margin-bottom: 0 !important;
}
.maintenance img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}
@media (max-width:750px) {
	.maintenance img {
		height: auto;
	}
}
@media (max-width:550px) {
	.smaintenance .maintitle {
		margin-bottom: 30px;
	}
	.maintenance {
		margin-bottom: 45px;
	}
	.smaintenance .maintitle {
		text-align: left;
	}
	.smaintenance .maintitle .sf {
		position: relative;
		padding-left: 40px;
	}
	.smaintenance .maintitle .sf::before {
		background-color: #333;
		position: absolute;
		content: "";
		top: 0.75em;
		left: 0;
		width: 29px;
		height: 1px;
	}
}
/* その他（要相談）*/
.checkflex {
	margin-top: 17px;
}
.checkflex ul {
	display: flex;
	flex-wrap: wrap;
}
.checkflex ul li {
	position: relative;
	width: 23.5%;
	margin: 0 0.7% 7px;
}
@media (max-width: 1345px) {
	.checkflex ul li {
		width: 32%;
		margin: 0 0.5% 7px;
	}
}
@media (max-width: 805px) {
	.checkflex ul li {
		width: 48%;
		margin: 0 1% 7px;
	}
}
@media (max-width: 535px) {
	.checkflex ul li {
		width: 100%;
		margin: 0 0 7px;
	}
}
/* 施工実績ページ =================================================================*/
.works .flexbox .wflex {
	margin-bottom: 1.7%;
	padding: 20px 20px 10px;
	background: #f7f7f7;
	position: relative;
}
.works .flexbox .wflex::after {
	font-family: "Font Awesome 5 Free";
	content: "\f0da";
	font-weight: bold;
	font-size: 2rem;
	color: #3044a6;
	line-height: 1;
	position: absolute;
	top: 47%;
	left: 50.5%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	pointer-events: none;
}
.works .flexbox .wflex p {
	margin-bottom: 0;
	font-size: 0.9rem;
}
.wflex {
	display: flex;
	justify-content: space-between;
}
.works .stitle {
	padding-bottom: 8px;
	margin-bottom: 55px;
	font-size: clamp(1.1rem, 0.86rem + 0.8533vw, 1.5rem);
}
.mgb40 {
	margin-bottom: 40px;
}
@media(max-width:910px) {
	.works .flexbox .wflex::after {
		font-size: 1.7rem;
		top: 45%;
		left: 50.5%;
	}
}
@media(max-width:750px) {
	.works .flexbox .wflex {
		padding: 13px 10px 5px;
	}
	.works .flexbox .wflex div {
		width: 47% !important;
	}
	.works .flexbox .wflex img {
		margin-bottom: 0;
	}
	.works .flexbox .wflex p {
		font-size: 0.8rem;
	}
	.works .flexbox .wflex {
		margin-bottom: 10px;
	}
	.works .flexbox .wflex:last-child {
		margin-bottom: 0;
	}
}
@media(max-width:550px) {
	.works .stitle {
		margin-bottom: 30px;
	}
}
@media(max-width:400px) {
	.works .flexbox .wflex::after {
		font-size: 5.5vw;
		top: 44%;
	}
}
/* 採用情報ページ =================================================================*/
.retop {
	padding-top: 85px !important;
}
.recruitp .cback {
	background-image: url(../img/recruit01.jpg);
}
.requirement .cback {
	background-image: url(../img/requirement01.jpg);
}
.recruitp .ctext {
	position: relative;
	top: 0;
}
.recruitp .ctext .maintitle {
	margin-bottom: 23px;
}
.recruitp .cbox {
	position: relative;
	height: 340px;
}
@media(max-width:750px) {
	.retop {
		padding-top: 50px !important;
	}
}
@media(max-width:550px) {
	.recruitp .ctext .maintitle {
		margin-bottom: 17px;
	}
}
@media(max-width:1555px) {
	.cboxip .cbox {
		width: 56%;
	}
	.cboxip .ctextip {
		width: 40%;
	}
}
@media(max-width:1355px) {
	.cboxip .cbox {
		width: 60%;
	}
	.cboxip .ctextip {
		width: 36%;
	}
}
@media(max-width:1270px) {
	.cboxip {
		display: block;
	}
	.cboxip div, .cboxip img {
		width: 100%;
	}
	.cboxip .cbox {
		width: 100%;
		height: 520px;
		margin-bottom: 10px;
	}
	.cboxip .ctextip {
		width: 100%;
	}
}
@media(max-width:925px) {
	.cboxip .cbox {
		height: 46vw !important;
	}
}
@media(max-width:455px) {
	.cboxip .cbox {
		height: 56vw !important;
	}
}
/*従業員インタビュー*/
.interview .flexbox {
	background: #fff;
	padding: 17px 30px;
	margin-bottom: 40px;
	box-shadow: rgb(0 0 0 / 2%) 0px 6px 24px 0px, rgb(0 0 0 / 2.5%) 0px 0px 0px 1px;
}
.interview .flexbox:last-child {
	margin-bottom: 0 !important;
}
.interview .stitle {
	border-bottom: 1px solid #3044a6;
}
.ititle:first-child {
	margin-top: 0 !important;
}
.ititle {
	margin-top: 20px;
	font-weight: 500;
	font-size: 1rem;
	padding: 1px 10px 3px;
	background: #fff;
	border: 1px solid #3044a6;
	color: #3044a6;
	width: fit-content;
	margin-bottom: 3px;
}
@media(max-width:1520px) {
	.interview .flexbox img {
		width: 100%;
		height: 300px;
		object-fit: cover;
	}
}
@media(max-width:750px) {
	.interview .flexbox img {
		height: auto;
	}
	.interview .flexbox {
		padding: 25px 30px 20px;
	}
}
@media(max-width:550px) {
	.ititle {
		font-size: 0.97rem;
	}
	.interview .flexbox {
		padding: 15px;
	}
}
/*募集要項*/
.info_table a {
	color: #3044a6;
}
.info_table a:hover {
	opacity: 0.5;
}
.info_table td .tcheck li {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.application .fa-envelope {
	font-size: 90%;
}
.application .info_table th br {
	display: none;
}
.spbr {
	display: none;
}
.info_table p {
	margin-bottom: 5px;
}
.info_table p:last-child {
	margin-bottom: 0 !important;
}
@media(max-width:770px) {
	.spspan span {
		display: none;
	}
	.spbr {
		display: block;
	}
}
@media(max-width:550px) {
	.application .maintitle {
		margin-bottom: 15px;
	}
	.application .info_table th br {
		display: block;
	}
	.application .info_table {
		font-size: 0.9rem;
	}
	.application .info_table td {
		width: 60%;
	}
	.application .info_table th {
		width: 40%;
	}
}
@media(max-width:230px) {
	.application .info_table th br {
		display: none;
	}
}
/* 会社概要ページ =================================================================*/
.philosophy {
	padding: 100px 0 90px !important;
}
.phbox .maintitle {
	margin-bottom: 23px;
}
.phimg {
	margin-left: 60px;
}
.phbox {
	padding: 40px 40px;
	margin-left: -50px;
	background-color: #f7f7f7;
	max-width: 815px;
	box-shadow: rgb(0 0 0 / 4%) 0px 6px 24px 0px, rgb(0 0 0 / 3%) 0px 0px 0px 1px;
}
@media(max-width:1840px) {
	.phbox {
		margin-bottom: -190px;
	}
	.phimg {
		margin-left: 0;
	}
}
@media(max-width:1630px) {
	.philosophy {
		padding: 70px 0 100px !important;
	}
	.phbox {
		margin-left: -70px;
		margin-bottom: -140px;
	}
}
@media(max-width:1605px) {
	.philosophy {
		padding: 70px 0 130px !important;
	}
	.phbox {
		padding: 20px 40px 25px;
		margin-left: -50px;
		margin-bottom: -170px;
	}
}
@media(max-width:750px) {
	.philosophy {
		padding: 50px 0 5px !important;
	}
	.phbox {
		padding: 15px 20px 20px;
		max-width: 95%;
		margin: auto;
		margin-top: -40px;
	}
	.phimg {
		position: relative;
		z-index: -1;
	}
}
@media(max-width:550px) {
	.phbox .maintitle {
		margin-bottom: 15px;
	}
}
/* table */
.info_table {
	width: 100%;
	max-width: 1070px;
	margin: auto;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table tr {
	border-bottom: 1px solid #ddd;
}
.info_table th {
	width: 25%;
	border-bottom: 1px solid #cc006d;
}
.info_table th, .info_table td {
	padding: 15px 0;
	font-weight: 500;
}
.info_table td {
	padding-left: 15px;
}
.info_table td {
	width: 75%;
}
@media (max-width: 450px) {
	.info_table td {
		width: 70%;
		padding-left: 5px;
	}
	.info_table th {
		width: 30%;
	}
}
/* map */
@media (max-width: 550px) {
	.about .wbox {
		padding: 25px 17px 40px;
	}
	.map iframe {
		height: 280px;
	}
}
/* お問い合わせページ ==========================================================*/
.contactp .rtext {
	margin-bottom: 45px;
}
@media (max-width: 750px) {
	.contactp .rtext {
		margin-bottom: 30px;
	}
}
.contact_wrap {
	position: relative;
	background-color: #f7f7f7;
	margin: auto;
	padding: 30px;
}
.tel_contact i {
	color: #3044a6;
}
.tel_contact {
	font-size: clamp(1.5rem, 1.08rem + 1.4933vw, 2.2rem);
	margin-bottom: 3px;
	white-space: nowrap;
	color: #333;
	z-index: 1;
	position: relative;
	letter-spacing: 0.1em;
	line-height: 1;
}
.tel_contact:hover {
	color: #333;
	opacity: 0.6;
}
.telflex {
	max-width: 1055px;
	margin: auto;
	align-items: flex-start;
}
.telflex .contact_wrap {
	margin: 0;
}
.tel_text {
	font-size: 0.85rem;
	margin-top: 7px;
	margin-bottom: 5px;
}
.faxlist {
	display: flex;
	justify-content: center;
}
.faxlist li {
	margin-right: 25px;
	font-size: 0.87rem;
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}
.faxlist li:last-child {
	margin-right: 0 !important;
}
@media (max-width: 760px) {
	.faxlist li {
		margin-right: 20px;
	}
}
.telmini {
	font-size: 1.15rem;
	margin-bottom: 7px;
	font-weight: 500;
}
.spb {
	margin-bottom: 35px;
}
.telff {
	font-size: 0.93rem;
	margin-top: 1.5px;
}
@media (max-width: 1210px) {
	.tel_text {
		text-align: left;
	}
}
@media (max-width: 750px) {
	.faxlist p {
		margin-right: 30px;
	}
	.tel_text {
		text-align: center;
	}
	.telflex .contact_wrap {
		margin-left: auto;
		margin-right: auto;
	}
	.telff {
		margin-bottom: 30px !important;
	}
	.contact_wrap.fax {
		margin-bottom: 0;
	}
}
@media (max-width: 570px) {
	.tel_text {
		margin-bottom: 2.5px;
		text-align: left;
	}
}
@media (max-width: 490px) {
	.spb {
		font-size: 1.05rem;
	}
	.telmini {
		font-size: 1.03rem;
	}
}
@media (max-width: 365px) {
	.tel_text {
		margin-bottom: 7px;
	}
	.faxlist {
		display: block;
		width: fit-content !important;
		margin: auto;
	}
	.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: 85%;
		padding: 20px 0;
	}
	.tl_text {
		margin-top: 7px;
	}
}
@media (max-width: 325px) {
	.contact_wrap {
		max-width: 100%;
	}
}
/* メール */
.mnote {
	max-width: 920px;
	margin: auto;
	margin-top: 50px;
}
.mpdb {
	padding-bottom: 45px !important;
	margin-bottom: 0 !important;
}
@media(max-width:450px) {
	.mnote {
		margin-top: 30px;
	}
	.mpdb {
		padding-bottom: 35px !important;
	}
}
.formsel p:last-child {
	margin-bottom: 0;
}
.mailform {
	max-width: 1100px;
	margin: 40px auto 0;
}
@media (max-width: 850px) {
	.mailform {
		margin: 50px auto 0;
	}
}
@media (max-width: 450px) {
	.mailform {
		margin-top: 0;
	}
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #333;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-weight: 500;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #cc006d;
	padding: 5px;
	margin-right: 5px;
	font-size: 11px;
	font-weight: 500;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #cc006d;
	color: #cc006d !important;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #333;
	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: #fff;
}
.mailform button {
	display: block;
	text-align: center;
	font-size: 1rem;
	margin: 0 auto;
	white-space: nowrap;
	border: 1px solid transparent;
	color: #fff;
	background: #cc006d;
	font-weight: 500;
	padding: 1% 7%;
	transition: .4s;
}
.mailform button:hover {
	background-color: #fff;
	color: #cc006d;
	border: 1px solid #cc006d;
	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;
	}
	.formsel label, .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%;
	}
}
/*個人情報の取り扱いについて*/
.privacy {
	padding-top: 0 !important;
}
.privacy_wrap {
	font-size: clamp(1rem, 0.862rem + 0.4907vw, 1.23rem);
	color: #333;
	margin: 0 auto;
	max-width: 1100px;
	border-bottom: 1px solid #333;
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
	font-weight: 500;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 0.95rem;
}
.privacy_text span {
	font-weight: 500;
	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;
}
.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: #cc006d;
}
/* ヘッダー バナー */
.hbanner {
	width: 100%;
	margin-top: 20px;
}
.hbanner:hover {
	transition: .4s;
	opacity: 0.6;
}
/*注意書き*/
.red{
	color: red;
	text-align: center;
}

.gray_out{
	width: 100%;
	position: relative;
}
.gray_out::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background:#7E7C7C;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	pointer-events: none;
	z-index: 1;
	opacity: 0.9;
}
p.out_text{
	position: absolute;
	top: 20%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 2rem;
	color:#0F0F0F;
}