@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: 15px;
	background: #fff;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
}
a {
	text-decoration: none;
	color: #005897;
	transition: .4s;
}
a:hover {
	color: #4BAB93;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 80px 0;
	position: relative;
}
@media (max-width: 1045px) {
	main section {
		padding: 80px 0 100px;
	}
}
@media (max-width: 550px) {
	main section {
		padding: 50px 0 60px;
	}
	main section:first-child {
		padding-top: 40px;
	}
}
/* 画像 */
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(196, 255, 254, 0.75);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
.fbold {
	font-weight: 700;
}
/*見出し01*/
.maintitle {
	margin-bottom: 55px;
	display: block;
	text-align: center;
	line-height: 1.3;
	color: #005897;
	position: relative;
}
.maintitle:before {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 125px;
	height: 3.5px;
	content: '';
	background: linear-gradient(to right, #008bc8 33.3%, #005897 0, #005897 66.6%, #1d2087 0);
}
.maintitle br {
	display: none;
}
.maintitle .mf {
	text-align: center;
	font-size: clamp(1.4rem, 1.04rem + 1.28vw, 2rem);
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
	margin-bottom: 10px;
}
.maintitle .sf {
	margin-left: 10px;
	font-size: 80%;
	font-weight: 400;
}
@media (max-width: 750px) {
	.maintitle {
		margin-bottom: 45px !important;
	}
	.maintitle br {
		display: block;
	}
	.maintitle .sf {
		margin-left: 3px;
	}
	.maintitle:before {
		width: 85px;
		bottom: -14px;
	}
}
@media (max-width: 450px) {
	.maintitle {
		line-height: 1.2;
	}
	.maintitle .sf {
		font-size: 0.95rem;
	}
}
/*見出し02*/
.mtitle {
	position: relative;
	font-weight: 500;
	margin-bottom: 15px;
	letter-spacing: 0.1em;
	font-size: 1.27rem;
	line-height: 1.5;
}
.mtitle span {
	font-size: 70%;
	color: #005897;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 500;
}
@media (max-width: 810px) {
	.mtitle {
		font-size: 1.15rem;
	}
}
@media (max-width: 450px) {
	.mtitle {
		font-size: 1.1rem;
		margin-bottom: 10px;
	}
}
/*見出し03*/
.stitle {
	position: relative;
	font-size: clamp(1rem, 0.982rem + 0.064vw, 1.03rem);
	font-weight: 500;
	border-top: 1px solid #1d2087;
	border-bottom: 1px solid #1d2087;
	margin-bottom: 15px;
	padding: 5px 0;
	color: #333;
}
@media (max-width: 750px) {
	.stitle {
		margin-bottom: 10px;
	}
}
.b_none {
	border-bottom: none;
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 10px;
	border: 1px solid #005897;
	transition: .4s;
	display: inline-block;
	width: 16rem;
	text-align: center;
	color: #fff;
	background: #005897;
	z-index: 1;
	overflow: hidden;
	font-size: 0.9rem;
}
.mainbtn a:hover {
	color: #005897;
	background: #fff;
	transition: .4s;
}
.mainbtn a::before {
	content: "";
	margin-right: 7px;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	line-height: 1;
	font-size: 0.8em;
	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: 10px;
	}
	.flexbox div {
		width: 100%;
	}
	.fwrap div {
		width: 100% !important;
	}
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 88%;
	max-width: 1200px;
	margin: 0 auto;
}
.top .inner {
	max-width: 1445px;
}
@media (max-width: 450px) {
	.inner {
		width: 86%;
	}
}
.w63 {
	width: 63.5%;
}
.w58 {
	width: 58%;
}
.w55 {
	width: 55%;
}
.w48 {
	width: 48%;
}
.w42 {
	width: 42%;
}
.w40 {
	width: 39.5%;
}
.w33 {
	width: 33%;
}
.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;
}
/*=== 共通部分ここまで ===*/
/* header */
.header_sticky {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: #fff;
}
.change_color {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0px 4px 4px -6px rgba(0, 0, 0, 0.3);
}
.header {
	padding: 15px 5px;
	transition: all .5s;
	width: 100%;
	z-index: 100;
	position: relative;
}
.header_inner {
	width: 93%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_logo {
	width: 280px;
}
.header h1 {
	transition: .3s;
	z-index: 110;
}
.header_title:hover h1 {
	opacity: 0.6;
	transition: .3s;
}
.header ul {
	display: flex;
	text-align: center;
	align-items: center;
}
.header ul li {
	margin-right: 30px;
	position: relative;
	line-height: 1.5;
}
.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: #333;
	font-size: 0.87rem;
}
.header ul li a:hover {
	opacity: 0.6;
}
.header ul li a span {
	display: block;
	font-size: 95%;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
	color: #333;
}
.hnav {
	margin-left: auto;
	width: fit-content;
}
.header_item {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	margin-bottom: 12px;
}
.header_item > div {
	margin: 0 11px;
}
.header_nav .mainbtn a {
	width: 10rem;
	line-height: 1.55;
	padding: 7px 7px 5px;
	font-size: 0.9rem;
	color: #fff;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 500;
}
.header_nav .mainbtn a:hover {
	color: #005897;
	background: #fff;
	opacity: 1;
}
.header_nav .mainbtn a:before {
	content: none;
}
/* 
.tel a {
	color: #333;
}
.tel {
	font-size: 1.35rem;
	line-height: 1.3;
	transition: .3s;
}
.tel:hover {
	opacity: 0.6;
	transition: .3s;
}
 */
/* ハンバーガーメニュー */
.hamburger_menu {
	display: none;
}
/* ボタン */
.menu_btn {
	position: fixed;
	top: 19px;
	right: 16px;
	cursor: pointer;
	display: flex;
	height: 23px;
	width: 23px;
	justify-content: center;
	align-items: center;
	z-index: 110;
}
.menu_btn span, .menu_btn span:before, .menu_btn span:after {
	content: '';
	display: block;
	height: 2px;
	width: 30px;
	background: #1d2087;
	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: #1d2087;
}
#menu_btn_check:checked ~ .menu_btn span::after {
	top: 0;
	transform: rotate(-45deg) !important;
	transition: all 0.4s;
	background: #1d2087;
}
#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: 52%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 90%;
}
.menu_content nav {
	padding: 0 30px 15px;
}
.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: 1.1rem;
	box-sizing: border-box;
	text-decoration: none;
	padding: 9px 0;
	color: #333;
	position: relative;
}
.menu_content ul li a:hover {
	opacity: 0.6;
}
.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;
}
/* 電話番号 */
.hum_tel {
	font-size: 1.15rem;
	text-align: center;
	margin-bottom: 15px;
}
.hum_tel:last-child {
	margin-bottom: 0;
}
.hum_tel a {
	color: #1d2087;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 500;
}
.hum_tel a:hover {
	opacity: 0.6;
}
.menu_content .mainbtn {
	text-align: center;
	margin-bottom: 7px;
}
.menu_content .mainbtn:last-child {
	margin-bottom: 0;
}
.menu_content .mainbtn a:before {
	content: none;
}
.menu_content .mainbtn a {
	padding: 10px 10px 7px;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 500;
}
#menu_btn_check:checked ~ .menu_content {
	opacity: 1;
	pointer-events: auto;
}
@media (max-width: 1260px) {
	.header {
		padding: 10px 20px;
	}
	.header_logo {
		width: 215px;
	}
	.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: 21px;
		right: 34px;
	}
}
@media (max-width: 500px) {
	.header_title {
		width: 160px;
	}
	.header {
		padding: 10px;
	}
	.menu_btn {
		top: 16px;
		right: 21px;
	}
	.menu_content .mainbtn a {
		width: 60%;
		padding: 7px 7px 5px;
		font-size: 0.97rem;
	}
	.menu_content ul li a {
		font-size: 0.97rem;
	}
}
@media (max-width: 315px) {
	.header_title {
		width: 64vw;
	}
	.menu_btn {
		top: 8px;
		right: 15px;
	}
}
/* footer */
.gfini {
	background: #f7f7f7;
}
.gfini .footer_address {
	position: relative;
}
.gfini .footer_address:before {
	display: block;
	content: '';
	position: absolute;
	top: -35%;
	left: 0;
	width: 100%;
	height: 36%;
	background-color: #fff;
}
/* フッターお問い合わせリンク */
.fax {
	pointer-events: none;
}
.footer_contact {
	position: relative;
	z-index: 1;
	background: url(../img/footer.jpg);
	background-size: cover;
	background-position: 50% 10%;
	padding: 70px 0 105px;
	text-align: center;
	color: #fff;
	background-attachment: fixed;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .footer_contact {
	background-attachment: scroll;
	background-position: 50% 47%;
}
.footer_contact::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.65;
	z-index: -1;
}
.footer_contact .inner {
	max-width: 1000px;
}
.footer_contact .maintitle {
	color: #fff;
	margin-bottom: 30px;
}
.footer_contact .maintitle:before {
	content: none;
}
.footer_contact .maintitle .mf {
	color: #fff;
}
.footer_contact .maintitle:before {
	background: #fff;
}
.footer_contact .btn_wrap .btn a {
	display: block;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	padding: 15px 5px 12px;
	font-size: 1.2rem;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
}
.footer_contact .btn_wrap .btn a:hover {
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, 0.1);
}
.footer_contact .btn_wrap .btn {
	width: 285px;
}
@media (max-width: 1020px) {
	.footer_contact .btn_wrap .btn {
		width: 260px;
	}
}
@media (max-width: 960px) {
	.footer_contact .flexbox {
		justify-content: space-around;
	}
	.footer_contact .btn_wrap .btn {
		width: 220px;
	}
	.footer_contact .btn_wrap .btn a {
		font-size: 0.9rem;
	}
}
@media (max-width: 800px) {
	.footer_contact .btn_wrap .btn {
		width: 200px;
	}
}
.cwrap {
	margin-top: 45px;
}
.ctext {
	font-size: 1.05rem;
	margin-right: -5px;
	margin-bottom: 45px;
}
.ctitle {
	font-size: 1.15rem;
	position: relative;
	margin-bottom: 15px;
	margin-left: 3px;
}
.fcon {
	text-align: center;
}
@media (max-width: 750px) {
	.cwrap {
		margin-top: 55px;
	}
	.fcon {
		margin-bottom: 35px;
	}
	.fcon:last-child {
		margin-bottom: 25px;
	}
	.footer_contact .maintitle {
		margin-bottom: 17px !important;
	}
	.footer_contact .btn_wrap {
		display: block;
	}
	.footer_contact .btn_wrap .btn {
		width: 65%;
		margin: auto;
		margin-bottom: 15px;
	}
	.footer_contact .btn_wrap .btn a {
		font-size: 1rem;
	}
	.ctext {
		font-size: 1rem;
	}
}
@media (max-width: 575px) {
	.ctext {
		margin-bottom: 20px;
		text-align: left !important;
	}
	/*
	.cts {
		display: inline-block;
		text-align: center;
		width: 100%;
	}
	*/
}
@media (max-width: 450px) {
	.fcon {
		margin-bottom: 25px;
	}
	.footer_contact .btn_wrap .btn {
		width: 83%;
		margin-bottom: 10px;
	}
	.ctext {
		font-size: 0.9rem;
	}
	.ctitle {
		font-size: 1rem;
		margin-bottom: 10px;
	}
	.footer_contact {
		padding: 45px 0;
	}
	.footer_contact {
		background-attachment: scroll;
	}
}
@media (max-width: 325px) {
	.footer_contact .btn_wrap .btn a {
		font-size: 1rem;
	}
}
/* ロゴとアドレス */
.footer_address {
	padding: 20px 0 35px;
	background: #fff;
}
.flogo {
	width: 310px;
	margin-bottom: 15px;
}
.flogo:hover {
	opacity: 0.6;
	transition: .3s;
}
.address {
	text-align: center;
	font-size: 0.9rem;
	margin-bottom: 25px;
}
.address br {
	display: none;
}
.taddress {
	font-size: 1rem;
	margin-bottom: 0;
}
@media (max-width: 560px) {
	.footer_address {
		padding: 15px 0 30px;
	}
	.address {
		font-size: 0.95rem;
		line-height: 2;
		margin-bottom: 15px;
	}
	.address br {
		display: block;
	}
	.flogo {
		max-width: 285px;
		margin-bottom: 17px;
	}
}
@media (max-width: 450px) {
	.flogo {
		max-width: 75%;
	}
}
/* コピーライト */
.copyright {
	text-align: center;
	padding: 12px 0 15px;
	background: #1d2087;
	color: #fff;
}
@media (max-width: 500px) {
	.copyright {
		padding: 5px 0 7px;
	}
}
/*ページ上に戻るボタン*/
.tfade {
	position: relative;
	z-index: 79;
}
.go_top {
	position: fixed;
	bottom: 20px;
	right: 15px;
	z-index: 79;
	color: #333;
	padding-top: 25px;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 500;
	font-size: 1.25rem;
	text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
.go_top::before {
	position: absolute;
	content: "ー";
	top: 0;
}
.go_top:hover {
	color: #333;
	opacity: 0.6;
}
@media(max-width:1250px) {
	.go_top {
		right: 5px;
	}
}
@media (max-width: 1080px) {
	.go_top {
		font-size: 1rem;
	}
}
@media(max-width:830px) {
	.go_top {
		right: 3px;
	}
}
@media(max-width:750px) {
	.go_top {
		padding-top: 18px;
		font-size: 0.9rem;
	}
}
@media(max-width:450px) {
	.go_top {
		right: 0;
	}
	.go_top::before {
		font-weight: 400;
	}
}
/* スライド */
/*
.bgs01::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/bg02.svg), url(../img/bg01.svg);
	background-repeat: no-repeat;
	background-position: bottom -2px right, top -2px left;
	background-size: 23%, 18%;
	z-index: 1;
	transform: scaleX(-1);
}
*/
.bgstop::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: -5px;
	transform: scaleY(-1);
	width: 100%;
	height: 40%;
	background-color: #fff;
	z-index: 1;
	clip-path: polygon(29% 80%, 64% 38%, 100% 79%, 100% 100%, 0 100%, 0 39%);
}
.bgsbottom::after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: -5px;
	transform: scaleX(-1);
	width: 100%;
	height: 40%;
	background-color: #fff;
	z-index: 1;
	clip-path: polygon(29% 80%, 64% 38%, 100% 79%, 100% 100%, 0 100%, 0 39%);
}
.topslide {
	overflow: hidden;
	position: relative;
}
.topslide: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;
}
.topslide::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #111;
	opacity: 0.15;
	z-index: 1;
}
.slide_items {
	width: 100%;
	overflow: hidden;
}
.slide_items img {
	width: 100%;
	height: 670px;
	object-fit: cover;
	z-index: -2;
}
.slide_text {
	white-space: nowrap;
	position: absolute;
	bottom: 10%;
	left: 3%;
	font-size: 2.4rem;
	line-height: 2;
	letter-spacing: 0.2em;
	color: #fff;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
	z-index: 2;
}
.textback {
	background: rgba(0, 0, 0, 0.85);
	padding: 5px 10px 0 18px;
	box-shadow: 0px 4px 4px -5px rgb(0 0 0 / 40%);
}
.slide_text p {
	margin-bottom: 0;
}
@media (max-width: 1005px) {
	.slide_items img {
		height: 550px;
	}
	.slide_text {
		font-size: 1.9rem;
	}
}
@media (max-width: 750px) {
	.slide_items img {
		height: 450px;
	}
	.slide_text {
		font-size: 4.2vw;
	}
	.bgs01::before {
		background-size: 30%;
	}
}
@media (max-width: 570px) {
	.slide_items img {
		height: 300px;
	}
	.slide_text {
		bottom: 8%;
		left: 2%;
		font-size: 4.5vw;
	}
	.textback {
		padding: 5px 5px 0 8px;
	}
	.bgs01::before {
		background-size: 40%;
	}
}
.center {
	text-align: center;
}
.wide_img {
	object-fit: cover;
	width: 70%;
	height: 320px;
}
.tbtn {
	margin-top: 35px;
}
@media (max-width: 450px) {
	.tbtn {
		margin-top: 20px;
	}
}
/* 菱形画像 */
.rhombus {
	clip-path: polygon(5% 0%, 100% 0, 95% 100%, 0 100%);
}
.rhombus02 {
	clip-path: polygon(5% 100%, 100% 100%, 95% 0%, 0% 0%);
}
/* 背景 */
.spath {
	clip-path: polygon(0 0, 100% 30px, 100% 100%, 0 calc(100% - 30px));
}
@media (max-width: 450px) {
	.spath {
		clip-path: polygon(0 0, 100% 13px, 100% 100%, 0 calc(100% - 13px));
	}
}
/* 文字背景 */
.pback {
	background: #005897;
	padding: 5px 10px;
	color: #fff;
}
.pback02 {
	background: #fff;
	padding: 5px 10px;
	box-shadow: 1px 4px 4px -5px rgb(0 0 0 / 30%);
}
/*
.bgs01::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/bg02.svg), url(../img/bg01.svg);
	background-repeat: no-repeat;
	background-position: bottom -2px right, top -2px left;
	background-size: 23%, 18%;
	z-index: 1;
	transform: scaleX(-1);
}

.bgs01::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/bg02.svg);
	background-repeat: no-repeat;
	background-position: bottom -2px right;
	background-size: 23%;
	z-index: 1;
	transform: scaleX(-1);
}
*/
/* お断りいたします */
.red {
	padding: 40px 0 0;
}
.rtext {
	margin: auto;
	color: #f53518;
	/*padding: 0 5px 13px 15px;*/
	border-bottom: 1px solid #333;
	margin-bottom: 0;
	font-size: 0.9rem;
	width: fit-content;
	border-top: 1px solid #333;
	padding: 10px 30px;
}
@media (max-width: 750px) {
	.red {
		padding-top: 35px !important;
	}
	.rtext {
		padding: 7px 5px 10px 7px;
	}
}
@media (max-width: 450px) {
	.red {
		padding-top: 25px !important;
		font-size: 0.85rem;
	}
}
/* ごあいさつ */
.wtext {
	font-size: 1.2rem;
	margin-bottom: 20px;
}
.welcome .flexbox {
	justify-content: space-around;
	align-items: center;
}
@media (max-width: 970px) {
	.welcome .flexbox {
		justify-content: space-between;
	}
	.welcome .flexbox .w58 {
		width: 48%;
	}
	.welcome .flexbox .w33 {
		width: 48%;
	}
}
.welcome .rhombus img {
	object-fit: cover;
	width: 100%;
	height: 470px;
}
@media (max-width: 750px) {
	.welcome .rhombus img {
		height: auto;
	}
	.wtext {
		font-size: 1rem;
		margin-bottom: 10px;
	}
	.welcome .flexbox .w58 {
		width: 100%;
	}
	.welcome .flexbox .w33 {
		width: 100%;
	}
}
/*対応エリア*/
.area:before {
	content: "";
	position: absolute;
	top: 0;
	background-image: url(../img/area.jpg);
	background-color: rgba(255, 255, 255, 0.87);
	background-blend-mode: lighten;
	background-size: cover;
	background-position: 90% 10%;
	background-attachment: fixed;
	width: 100%;
	height: 100%;
	filter: grayscale(60%);
	z-index: -1;
}
::-webkit-full-page-media, :future, :root .area:before {
	background-attachment: scroll;
}
.area .maintitle {
	margin-bottom: 40px;
}
.area .flexbox {
	align-items: center;
	max-width: 950px;
	margin: auto;
}
.atext {
	font-size: 1.08rem;
}
.p_area {
	margin-bottom: 80px;
}
.atext i {
	color: #005897;
}
.map {
	width: 100%;
	max-width: 340px;
}
@media (max-width: 750px) {
	.p_area {
		margin-bottom: 60px;
	}
	.map {
		margin: auto !important;
	}
	.map img {
		margin: auto;
	}
	.atext {
		max-width: 350px;
		margin: auto;
	}
}
@media (max-width: 600px) {
	.area .maintitle {
		margin-bottom: 37px !important;
	}
	.p_area {
		margin-bottom: 35px;
	}
	.map {
		max-width: 75%;
	}
	.atext {
		max-width: 265px;
		font-size: 1rem;
	}
}
@media (max-width: 450px) {
	.map {
		max-width: 80%;
	}
}
/* CONTENTS */
.imgcard img {
	object-fit: cover;
}
.imgcard {
	position: relative;
	overflow: hidden;
	width: calc(100% / 3 - 10px);
	margin: 0 5px;
}
.imgcard a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
	padding: 26% 0 35%;
	clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0 100%);
}
.imgcard a::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.45);
	pointer-events: none;
	z-index: -1;
	transition: .3s;
}
.imgcard a img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s ease;
	z-index: -2;
	transform: scale(1);
}
.text {
	width: 100%;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 35%), 0px -0.3px 3px rgb(0 0 0 / 20%);
	font-weight: 700;
	padding: 0 10px 0 20px;
}
.imgcard p {
	color: #fff;
}
.imgcard h3 {
	font-size: 1.2rem;
	margin-bottom: 15px;
	color: #fff;
	line-height: 1.45;
}
.imgcard h3 span {
	font-size: 65%;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 500;
	margin-left: 2.5px;
}
.imgcard .text p {
	font-size: 1rem;
	transition: .3s;
	margin-bottom: 0;
}
.cnote {
	border: 1px solid #fff;
	padding: 3px 20px;
	position: absolute;
	bottom: 20px;
	right: 20px;
	font-size: 0.85rem;
	transition: .3s;
}
.cnote::before {
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	display: inline-block;
	margin-right: 0.4em;
	font-size: 0.93em;
}
.imgcard a:hover .cnote {
	background: #fff;
	color: #005897;
}
.imgcard a:hover img {
	transform: scale(1.05, 1.05);
	transition: .6s;
}
.imgcard a:hover::after {
	background: rgba(0, 0, 0, 0.25);
	transition: .3s;
}
.imgcard a:hover {
	transition: .3s;
	clip-path: polygon(2% 0%, 100% 0, 98% 100%, 0 100%);
}
@media (max-width: 1250px) {
	.imgcard a {
		padding: 20% 0 43%;
	}
}
@media (max-width: 750px) {
	.imgcard {
		margin: 0;
		margin-bottom: 10px;
	}
	.imgcard a {
		padding: 3% 0 17%;
	}
	.imgcard a:hover {
		clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0 100%);
	}
	.imgcard:last-child {
		margin-bottom: 0;
	}
	.imgcard a::after {
		background: rgba(0, 0, 0, 0.5);
	}
	.imgcard .text p {
		font-size: 0.95rem;
	}
	.text {
		padding: 0 10px 0 15px;
	}
}
@media (max-width: 450px) {
	.imgcard a {
		padding: 3.3% 0 22.5%;
		min-height: 280px;
	}
	.imgcard h3 {
		font-size: 1.05rem;
		margin-bottom: 8px;
	}
	.imgcard .text p {
		font-size: 0.9rem;
	}
	.cnote {
		padding: 3px 17px;
		bottom: 10px;
		right: 20px;
		font-size: 0.75rem;
	}
}
@media (max-width: 305px) {
	.imgcard a {
		padding: 5% 0 10%;
		min-height: auto;
	}
	.cnote {
		display: none;
	}
}
/* 下層ページトップ ====================================================*/
.fv {
	overflow: hidden;
	position: relative;
	z-index: 1;
	background: url(../img/slide03.jpg);
	background-size: cover;
	background-position: 50% 55%;
	height: 320px;
	width: 100%;
	display: flex;
	align-items: center;
}
.fv::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;
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #111;
	opacity: 0.55;
	z-index: 1;
}
.fv h2 {
	text-align: left;
	position: relative;
	z-index: 3;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 35%), 0px -0.3px 3px rgb(0 0 0 / 45%);
	color: #fff;
	font-size: clamp(1.2rem, 0.72rem + 1.7067vw, 2rem);
	line-height: 1.2;
	letter-spacing: 0.19em;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
	text-align: center;
	/*margin-top: -40px;*/
}
.fv h2 .ja {
	color: #fff;
	font-size: 67%;
	font-weight: 400;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	letter-spacing: 0.14em;
}
/*
.fv .inner:after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: -5px;
	transform: scaleX(-1);
	width: 100%;
	height: 40%;
	background-color: #fff;
	z-index: 1;
	clip-path: polygon(29% 80%, 64% 38%, 100% 79%, 100% 100%, 0 100%, 0 39%);
}
.fv .inner {
	max-width: 1500px;
}
.fv .textback {
	padding: 8px 10px 3px 15px;
	background: rgba(0, 0, 0, 0.8);
	box-shadow: 0px 4px 4px -5px rgb(0 0 0 / 40%);
}
.fv .textback.ja {
	padding: 0 15px 3px 15px;
}
*/
@media (max-width: 1015px) {
	.fv {
		height: 260px;
	}
	.fv h2 .ja {
		font-size: 70%;
	}
}
@media (max-width: 750px) {
	.fv {
		height: 200px;
	}
	.fv h2 {
		/*margin-top: -20px;*/
	}
}
@media (max-width: 450px) {
	.fv {
		height: 140px;
	}
	.fv h2 {
		/*margin-top: -11px;*/
		line-height: 1.25;
		letter-spacing: 0.15em;
		text-shadow: 0px 0.3px 3px rgb(0 0 0 / 25%), 0px -0.3px 3px rgb(0 0 0 / 25%);
	}
	.fv h2 .ja {
		font-size: 76%;
	}
}
/* 不動産買取ページ・不動産仲介ページ ================================*/
/* DETAIL */
.detail .maintitle {
	margin-bottom: 37px !important;
}
.dtext {
	font-size: 0.98rem;
	margin-bottom: 50px;
}
@media (max-width:1270px) {
	.detail .flexbox .rhombus img, .detail .flexbox .rhombus02 img {
		object-fit: cover;
		width: 100%;
		height: 450px;
	}
}
@media (max-width: 800px) {
	.dtext {
		margin-bottom: 35px;
	}
}
@media (max-width: 775px) {
	.dtext.center {
		text-align: left;
	}
}
@media (max-width: 750px) {
	.dtext {
		font-size: 100%;
		margin-bottom: 20px;
	}
	.detail .flexbox .rhombus img, .detail .flexbox .rhombus02 img {
		height: auto;
	}
}
.detail .flexbox {
	align-items: center;
}
/* こんな方におすすめ */
.recom .mtitle {
	margin-bottom: 20px;
}
.recom .rcheck {
	margin-top: 25px;
}
@media (max-width: 1040px) {
	.recom .flexbox {
		align-items: center;
	}
}
@media (max-width: 750px) {
	.recom .rcheck {
		font-size: 0.9rem;
		margin-bottom: 30px;
	}
}
/* メリット */
.merit .mtitle {
	margin-bottom: 40px;
}
.merit .flexbox {
	margin-bottom: 40px;
}
.merit .flexbox:last-child {
	margin-bottom: 0 !important;
}
.merit .stitle span {
	margin-right: 7px;
	font-size: 90%;
	color: #1d2087;
}
.dlong {
	max-width: 940px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 1365px) {
	.bmerit.flexbox {
		align-items: center;
	}
}
@media (max-width:1155px) {
	.merit .flexbox img {
		object-fit: cover;
		width: 100%;
		height: 330px;
	}
}
@media (max-width: 750px) {
	.merit .mtitle {
		margin-bottom: 23px;
	}
	.merit .flexbox img {
		height: auto;
	}
}
/* 土地活用及び企画開発ページ ================================*/
/* DETAIL */
.ddev .rhombus img {
	height: auto !important;
}
@media (max-width: 1260px) {
	.detail.mpdb {
		padding-bottom: 0 !important;
	}
}
/* おすすめの土地活用方法 5選 */
.rdevs.mpdb {
	padding-bottom: 0 !important;
}
.rdevs .mtitle {
	margin-bottom: 40px;
}
.rdevs .flexbox {
	justify-content: center;
}
@media (max-width: 750px) {
	.rdevs .mtitle {
		margin-bottom: 23px;
	}
}
.rdev {
	width: 32%;
	background: #f7f7f7;
	padding: 20px;
	box-shadow: rgb(0 0 0 / 5%) 0px 2px 8px 0px, rgb(0 0 0 / 2.5%) 0px 0px 0px 1px;
	position: relative;
	margin: 0 7px 15px;
}
@media (max-width:1200px) {
	.rdev {
		width: 30%;
	}
}
@media (max-width:1100px) {
	.rdev {
		width: 48.8%;
		margin-right: auto;
	}
	.rdev:nth-child(2n) {
		margin-right: 0;
	}
	.rdevs .flexbox::after {
		content: "";
		display: block;
		width: 48%;
	}
}
@media (max-width:750px) {
	.rdev {
		margin-right: 0;
		margin-left: 0;
	}
}
@media (max-width:550px) {
	.rdev {
		padding: 20px 15px;
	}
}
.rdev p:last-child {
	margin-bottom: 0;
}
.rdev img {
	margin-bottom: 5px;
}
.rdev h4 {
	font-weight: 500;
	font-size: 1rem;
	border-bottom: 1px solid #d1d1d1;
	padding-bottom: 3px;
	margin-bottom: 5px;
}
.rdev h4::before {
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #005897;
	margin-right: 0.4em;
	font-size: 0.93em;
	text-decoration: none;
}
/* その他にも… */
.flex {
	display: flex;
	justify-content: space-between;
	max-width: 1100px;
	margin: auto;
	margin-bottom: 25px;
}
.flex div {
	width: 32.5%;
}
.others .rdev {
	padding: 10px;
	width: 22%;
}
.others h4 {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
/*
.others .flexbox {
	justify-content: flex-start;
}
*/
@media (max-width:1100px) {
	.others .rdev {
		width: 48.5%;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}
.devlast {
	margin-top: 15px;
}
@media (max-width:1180px) {
	.devlast {
		max-width: 870px;
		margin: auto;
		margin-top: 10px;
	}
	.devlast p {
		text-align: left;
	}
}
@media (max-width:550px) {
	.flex {
		margin-bottom: 10px;
	}
	.others .rdev {
		padding: 5px;
		margin-bottom: 10px;
	}
}
/* 会社概要ページ ================================*/
/*代表挨拶*/
.greeting p {
	margin-bottom: 15px;
}
.glast {
	text-align: right;
}
@media (max-width:1225px) {
	.greeting .flexbox img {
		object-fit: cover;
		width: 100%;
		height: 450px;
	}
}
@media (max-width: 750px) {
	.greeting .flexbox img {
		height: auto;
	}
	.greeting .flexbox .rhombus02 {
		clip-path: polygon(5% 0%, 100% 0, 95% 100%, 0 100%);
	}
}
@media (max-width: 450px) {
	.greeting p {
		margin-bottom: 10px;
	}
	.glast {
		margin-right: 5px;
		margin-top: 17px;
	}
}
/*リスト*/
.rlist li::before {
	color: #005897;
	font-family: "Font Awesome 5 Free";
	content: "\f111";
	font-weight: bold;
	opacity: 0.75;
	font-size: .3em;
	position: relative;
	top: -0.9em;
	margin-right: 8px;
}
_:lang(x)::-internal-media-controls-overlay-cast-button, .rlist li::before {
	top: -0.4em;
}
.rcheck p::before {
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #005897;
	margin-right: 0.4em;
	font-size: 0.93em;
	text-decoration: none;
}
/*テーブル*/
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
	max-width: 1100px;
	margin: auto;
}
.info_table tr {
	border-bottom: 1px solid #d1d1d1;
}
.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;
}
.info_table .mn {
	font-size: 0.9rem;
}
.mgl {
	margin-left: -8px;
}
.group li {
	margin-bottom: 5px;
}
@media(max-width: 550px) {
	.info_table {
		border-collapse: collapse;
	}
	.info_table tr {
		border-bottom: none;
	}
	.info_table td {
		border-bottom: 1px solid #d1d1d1;
		margin-bottom: 0;
	}
	.info_table td, .info_table th {
		width: 100%;
		padding: 8px 8px 13px;
		display: block;
	}
	.info_table th {
		font-weight: 700;
		text-align: left;
		padding-bottom: 0;
	}
}
/*マップ*/
@media (max-width: 550px) {
	.addmap 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: 20px;
	border: 1px solid #ededed;
}
.contact_wrap::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/bgi01.svg), url(../img/bgi02.svg);
	background-repeat: no-repeat;
	background-position: top left, bottom right;
	background-size: 7%;
	opacity: 0.5;
}
@media(max-width: 450px) {
	.contact_wrap::before {
		background-size: 8%;
		opacity: 0.7;
	}
}
.tel_contact i {
	color: #005897;
}
.tel_contact {
	font-size: clamp(1.4rem, 1.16rem + 0.8533vw, 1.8rem);
	margin-bottom: 3px;
	white-space: nowrap;
	color: #333;
	z-index: 1;
	position: relative;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
}
.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 p {
	margin-right: 25px;
	font-size: 0.87rem;
	margin-bottom: 0;
}
.faxlist p:last-child {
	margin-right: 0 !important;
}
@media (max-width: 760px) {
	.faxlist p {
		margin-right: 20px;
	}
}
.telmini {
	font-size: 1.15rem;
	margin-bottom: 7px;
	font-weight: 500;
}
.spb {
	margin-bottom: 35px;
}
@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;
		margin-bottom: 20px;
	}
	.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: 13px 0 10px;
	}
	.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 {
		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: #005897;
	padding: 5px;
	margin-right: 5px;
	font-size: 11px;
	font-weight: 500;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #005897;
	color: #005897 !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: #005897;
	font-weight: 500;
	padding: 1% 7%;
	transition: .4s;
}
.mailform button:hover {
	background-color: #fff;
	color: #005897;
	border: 1px solid #005897;
	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: #005897;
}