@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: 'Noto Sans JP', 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: #3fbf53;
	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 100px;
	position: relative;
}
@media (max-width: 550px) {
	main section {
		padding: 43px 0 50px;
	}
}
/* 画像 */
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;
}
.fbold {
	font-weight: 500;
	letter-spacing: 0.14em;
	margin-left: 2px;
	margin-right: 2px;
}
/*見出し01*/
.maintitle {
	margin-bottom: 43px;
	display: block;
	text-align: center;
	line-height: 1.3;
	color: #242424;
}
.maintitle .mf {
	font-weight: 700;
	text-align: center;
	font-size: clamp(1.15rem, 0.76rem + 1.3867vw, 1.8rem);
}
.maintitle .sf {
	font-weight: 700;
	font-size: 65%;
	position: relative;
	color: #3fbf53;
}
.maintitle .sf:before {
	position: absolute;
	bottom: -7px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 100px;
	height: 2px;
	content: '';
	background: #3fbf53;
}
.maintitle .sf.sfehite {
	color: #fff;
}
.maintitle .sf.sfehite:before {
	background: #fff;
}
@media (max-width: 750px) {
	.maintitle {
		margin-bottom: 25px;
	}
}
@media (max-width: 450px) {
	.maintitle {
		margin-bottom: 30px;
		line-height: 1.15;
	}
	.maintitle .sf {
		font-size: 57%;
	}
	.maintitle .sf:before {
		width: 80px;
	}
}
/*見出し02*/
.mtitle {
	font-weight: 500;
	position: relative;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
	font-size: clamp(1.15rem, 0.97rem + 0.64vw, 1.45rem);
	line-height: 1.5;
}
.mtitle span {
	font-size: 75%;
	color: #3fbf53;
}
@media (max-width: 750px) {
	.mtitle {
		margin-bottom: 15px;
	}
}
@media (max-width: 450px) {
	.mtitle {
		margin-bottom: 7px;
	}
}
/*見出し03*/
.stitle {
	position: relative;
	font-size: clamp(1.05rem, 0.9rem + 0.5333vw, 1.3rem);
	border-bottom: 1px solid #3fbf53;
	margin-bottom: 15px;
	padding-bottom: 4px;
	padding-left: 2px;
	color: #333;
	font-weight: 500;
}
@media (max-width: 750px) {
	.stitle {
		margin-bottom: 10px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 10px;
	border: 1px solid transparent;
	transition: .4s;
	display: inline-block;
	width: 16.5rem;
	text-align: center;
	color: #fff;
	background: #3fbf53;
	z-index: 1;
	overflow: hidden;
	font-size: 1rem;
}
.mainbtn a:hover {
	color: #3fbf53;
	border: 1px solid #3fbf53;
	background: #fff;
	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: 60%;
		padding: 5px;
	}
}
/*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%;
	}
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 91%;
	max-width: 1225px;
	margin: 0 auto;
}
.w66 {
	width: 66%;
}
.w63 {
	width: 63%;
}
.w60 {
	width: 60%;
}
.w50 {
	width: 50%;
}
.w48 {
	width: 48%;
}
.w33 {
	width: 33%;
}
.w34 {
	width: 34%;
}
.w31 {
	width: 31%;
}
/* 背景 */
.bg_grey::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: cover;
	background-repeat: no-repeat;
	z-index: -35;
	opacity: 0.6;
}
.bg_grey02::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: url(../img/bg_grey02.jpg);
	height: 100%;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -35;
	opacity: 0.2;
}
.bg_green::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #f8fff2;
	z-index: -2;
}
/*=== 共通部分ここまで ===*/
/* header */
.header_tel {
	display: flex;
	align-items: center;
}
.header_sticky {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: #fff;
	box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.4);
}
.header {
	padding: 13px 5px 13px;
	transition: all .5s;
	z-index: 100;
	position: relative;
	font-weight: 500;
	width: calc(100% - 240px);
}
.tel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	background: #3fbf53;
	height: 100%;
	width: 240px;
	transition: .3s;
}
.tel a {
	height: 100%;
	width: 240px;
	text-align: center;
	background: #3fbf53;
	color: #fff;
	font-weight: 700;
	font-size: 1.35rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tel:hover {
	opacity: 0.6;
	transition: .3s;
}
.tel i {
	margin-right: 5px;
	font-size: 85%;
}
.header_inner {
	width: 99%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_logo {
	margin-left: 15px;
	width: 370px;
}
.header h1 {
	transition: .3s;
	z-index: 110;
}
.header_title:hover h1 {
	opacity: 0.6;
	transition: .3s;
}
.header ul {
	display: flex;
	text-align: center;
}
.header ul li {
	position: relative;
	line-height: 1.7;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 0 20px;
	color: #333;
	font-size: 1rem;
	font-weight: 700;
}
.header ul li a:hover {
	opacity: 0.6;
}
.header ul li a span {
	display: block;
	font-size: 70%;
	color: #3fbf53;
}
.hnav {
	margin-left: auto;
	width: fit-content;
}
.header_item {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	margin-bottom: 12px;
}
.header_item > div {
	margin: 0 8.5px;
}
.header_item .mainbtn a {
	width: 11rem;
	line-height: 1.55;
	padding: 5px;
	font-size: 0.9rem;
}
.header_item .mainbtn a:after {
	content: none;
}
.hamburger_menu {
	display: none;
}
.hum_tel {
	text-align: center;
	margin-bottom: 15px;
}
.hum_tel:last-child {
	margin-bottom: 0;
}
.hum_tel a {
	pointer-events: none;
	color: #ffd638;
}
.htm {
	font-size: 87%;
	pointer-events: none;
}
.hts {
	font-size: 1.35rem;
	pointer-events: auto;
	transition: .3s;
	padding-bottom: 3px;
	border-bottom: 1px solid #ffd638;
}
.hts:hover {
	opacity: 0.6;
	transition: .3s;
}
@media (max-width: 450px) {
	.hts {
		font-size: 1.15rem !important;
	}
}
.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: #3fbf53;
	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: #333;
}
#menu_btn_check:checked ~ .menu_btn span::after {
	top: 0;
	transform: rotate(-45deg) !important;
	transition: all 0.4s;
	background: #333;
}
#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: 0.95rem;
	box-sizing: border-box;
	text-decoration: none;
	padding: 9px 0;
	color: #333;
	position: relative;
	line-height: 1.65;
}
.menu_padding ul li a span {
	font-size: 75%;
	color: #3fbf53;
}
.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;
}
.menu_content .mainbtn a {
	padding: 7px !important;
}
.menu_content .mainbtn {
	text-align: center;
	margin-bottom: 7px;
}
.menu_content .mainbtn:last-child {
	margin-bottom: 0;
}
.menu_content .mainbtn a:after {
	content: none;
}
.menu_content .mainbtn a {
	padding: 10px;
}
#menu_btn_check:checked ~ .menu_content {
	opacity: 1;
	pointer-events: auto;
}
@media (max-width: 1485px) {
	.header {
		width: calc(100% - 195px);
	}
	.tel {
		width: 195px;
	}
	.tel a {
		width: 195px;
		font-size: 1.1rem;
	}
	.header_logo {
		width: 295px;
		margin-left: 0;
	}
	.header ul li a {
		padding: 0 15px;
	}
}
@media (max-width: 1225px) {
	.header {
		background: transparent;
		padding: 10px 20px;
	}
	.header_logo {
		width: 275px;
	}
	.menu_btn_mgt, .hamburger_menu, .header_inner label {
		display: block;
	}
	.header_nav {
		display: none;
	}
	.header .inner {
		display: none;
	}
	.tel {
		display: none;
	}
	.header_inner {
		margin: 0;
	}
	.menu_btn {
		top: 17px;
		right: 30px;
	}
}
@media (max-width: 500px) {
	.header {
		padding: 8px 7px;
		width: 245px;
	}
	.menu_btn {
		top: 13px;
		right: 21px;
	}
	.menu_content .mainbtn a {
		width: 65%;
		padding: 7px;
		font-size: 0.97rem;
	}
	.menu_content ul li a {
		font-size: 0.97rem;
	}
	.menu_content .mainbtn a {
		padding: 5px !important;
	}
}
@media (max-width: 305px) {
	.header_title {
		width: 64vw;
	}
	.menu_btn {
		top: 0.5%;
		right: 15px;
	}
}
/* footer */
.fax {
	pointer-events: none;
}
/* フッターお問い合わせリンク */
@media (max-width: 500px) {
	.fcbr {
		display: none;
	}
}
.footer_contact {
	position: relative;
	padding: 60px 0 85px;
	z-index: 1;
	background: #f8fff2;
	/*
	background: url(../img/footer.jpg);
	background-size: cover;
	background-position: 50% 10%;
	background-attachment: fixed;
	color: #fff;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 25%), 0px -0.3px 3px rgb(0 0 0 / 25%);
	*/
}
.footer_contact::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/logo02.svg);
	background-repeat: no-repeat;
	background-position: center right 1%;
	background-size: 300px;
	z-index: -1;
	opacity: 0.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: #157a24;
	opacity: 0.78;
	z-index: -1;
}
*/
.contact_left .maintitle {
	margin-bottom: 25px;
	text-align: left;
}
.contact_left .maintitle .sf::before {
	content: none;
}
.ctext {
	font-size: 1.05rem;
	font-weight: 500;
}
.cnum {
	margin-top: 20px;
}
.cnum a {
	font-size: 1.7rem;
	color: #333;
	transition: .3s;
	font-weight: 700;
}
.cnum a:hover {
	opacity: 0.6;
}
.footer_contact a i {
	color: #3fbf53;
}
.footer_contact .btn_wrap {
	margin: 20px auto 0;
}
.footer_contact .btn_wrap .btn {
	width: 335px;
	margin: 0 auto;
}
.footer_contact .btn_wrap .btn a {
	display: block;
	width: 100%;
	border-bottom: 1px solid #333;
	color: #333;
	padding: 0 10px 10px;
	font-size: 1.2rem;
	text-align: left;
	font-weight: 700;
}
.footer_contact .btn_wrap .btn a i {
	font-size: 106%;
}
.footer_contact .btn_wrap .btn a:hover {
	opacity: 0.6;
}
@media (max-width: 1215px) {
	.cnum a {
		font-size: 2.1vw;
		color: #333;
		transition: .3s;
		font-weight: 700;
	}
	.footer_contact .btn_wrap .btn a {
		font-size: 1.15rem;
	}
}
@media (max-width: 750px) {
	.footer_contact .btn_wrap {
		margin-top: 25px;
	}
	.footer_contact .btn_wrap:last-child {
		margin-top: 0 !important;
	}
	.footer_contact .maintitle {
		margin-bottom: 20px !important;
	}
	.footer_contact .btn_wrap .btn a {
		padding: 15px 5px;
	}
	.footer_contact .btn_wrap {
		display: block;
	}
	.footer_contact .btn_wrap .btn {
		width: 100%;
	}
	.cnum {
		margin-top: 10px;
	}
	.cnum a {
		text-align: left;
		display: inline-block;
		font-size: 1.17rem;
		padding: 15px 5px;
		width: 100%;
		border-bottom: 1px solid #333;
	}
}
@media (max-width: 450px) {
	.ctext {
		font-size: 1rem;
		margin-bottom: 0;
	}
	.cnum a, .footer_contact .btn_wrap .btn a {
		font-size: 1rem;
	}
	.cnum {
		margin-top: 0;
	}
	.footer_contact {
		padding: 45px 0;
	}
	.footer_contact {
		background-attachment: scroll;
	}
	.footer_contact::before {
		opacity: 0.17;
		background-position: center;
		background-size: 94%;
	}
}
/* footer links */
.fnav ul {
	display: flex;
	justify-content: center;
}
.fnav ul li {
	width: fit-content;
	margin-right: 6%;
}
.fnav ul li:last-child {
	margin-right: 0;
}
.fnav ul li a {
	font-weight: 700;
	color: #fff;
	transition: .3s;
}
.fnav ul li a:hover {
	opacity: 0.6;
}
/* アドレス */
.footer_address {
	padding: 50px 0 40px;
	background: #3fbf53;
	color: #fff;
}
.footer_address .inner {
	max-width: 1225px;
	margin: auto;
}
.flogo {
	width: 100%;
	margin: auto;
	margin-bottom: 10px;
	filter: brightness(0) invert(1);
}
.flogo:hover {
	opacity: 0.6;
	transition: .3s;
}
.address {
	text-align: center;
	font-size: 0.9rem;
	margin-bottom: 25px;
}
.taddress {
	font-size: 1rem;
	margin-bottom: 3px;
}
.adbr, .faxbr {
	display: none;
}
@media (max-width: 1355px) {
	.fnav ul li {
		margin-right: 3.5%;
	}
	.adspan {
		display: none;
	}
	.faxbr {
		display: block;
	}
}
@media (max-width: 1150px) {
	.fnav ul li {
		margin-right: 3.5%;
		font-size: 0.95rem;
	}
}
@media (max-width: 1095px) {
	.flogo {
		max-width: 385px;
	}
	.footer_address {
		padding: 35px 0;
	}
	.fnav {
		display: none;
	}
	.footer_address .flexbox div {
		width: 100%;
		text-align: center;
	}
	.taddress {
		font-size: 1rem;
		margin-bottom: 10px;
	}
}
@media (max-width: 560px) {
	.address {
		font-size: 0.95rem;
		line-height: 2;
		margin-bottom: 15px;
	}
	.flogo {
		max-width: 70%;
		margin-bottom: 10px;
	}
	.adbr {
		display: block;
	}
}
@media (max-width: 450px) {
	.footer_address {
		padding: 25px 7px 27px;
	}
	.flogo {
		max-width: 89%;
	}
}
@media (max-width: 310px) {
	.flogo {
		max-width: 87%;
	}
}
/* copyright */
.copyright {
	text-align: center;
	font-weight: 500;
	margin-top: 50px;
	color: #fff;
}
@media (max-width: 1095px) {
	.copyright {
		margin-top: 25px;
	}
}
@media (max-width: 560px) {
	.copyright {
		margin-top: 17px;
	}
}
/*ページ上に戻るボタン*/
.tfade {
	position: relative;
	z-index: 79;
}
.go_top {
	position: fixed;
	bottom: 20px;
	right: 15px;
	z-index: 79;
	color: #333;
	padding-top: 25px;
	font-size: 1.2rem;
	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: 1300px) {
	.go_top {
		right: 0;
		font-size: 1.05rem;
	}
}
@media(max-width:450px) {
	.go_top {
		line-height: 1.3;
		font-size: 0.95rem;
	}
	.go_top::before {
		font-weight: 400;
	}
}
/*アニメーション*/
/*フェードイン*/
.flowup {
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 1.2s, transform 1.2s;
}
.flowup.inview {
	opacity: 1;
	transform: translateY(0);
}
/*imgアニメーション*/
.img_up {
	position: relative;
	overflow: hidden;
	height: fit-content !important;
}
.img_up::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent;
	background-image: linear-gradient(120deg, #3fbf53 0%, #50eb6a 100%);
	z-index: 1;
	transition: .7s;
	transition-delay: 0.2s;
}
.img_up.inview::after {
	transform: translateX(100%);
}
/* スライド */
.topslide {
	overflow: hidden;
	position: relative;
}
.slide_items {
	width: 84%;
	overflow: hidden;
	margin-left: auto;
}
.slide_items img {
	width: 100%;
	height: 785px;
	object-fit: cover;
	z-index: -2;
}
.slide_text {
	white-space: nowrap;
	position: absolute;
	font-size: 3.2rem;
	letter-spacing: 0.2em;
	font-family: 'BIZ UDPMincho', serif;
	font-weight: 700;
	z-index: 2;
	line-height: 1.4;
	text-shadow: #fff 0px 0px 2px, #fff 0px 0px 2px, #fff 0px 0px 6px, #fff 0px 0px 9px, 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;
	color: #3fbf53;
	top: 50%;
	left: 65px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.slide_text p {
	animation: fadeIn 1s ease 0.3s 1 normal backwards;
	margin-bottom: 0;
}
.slide_text span {
	font-size: 140%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}
.slide_left {
	position: absolute;
	top: 20px;
	left: 0;
	font-size: 4.12rem;
	font-weight: 700;
	color: #f5f5f5;
	/* text-transform: uppercase; */
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	line-height: 1.4;
	white-space: nowrap;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (max-width: 985px) {
	.slide_left {
		display: none;
	}
	.slide_items {
		width: 100%;
	}
	.slide_items img {
		height: 550px;
	}
	.slide_text {
		top: 38%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		text-align: center;
		font-size: 2.5rem;
	}
}
@media (max-width: 750px) {
	.slide_items img {
		height: 360px;
	}
	.slide_text {
		top: 33%;
		font-size: 2rem;
	}
}
@media (max-width: 500px) {
	.slide_items img {
		height: 270px;
	}
	.slide_text {
		text-shadow: #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 5px;
		font-size: 6.1vw;
		top: 29%;
	}
}
.pdb0 {
	padding-bottom: 0;
}
.center {
	text-align: center;
}
.tbtn {
	margin-top: 35px;
}
@media (max-width: 450px) {
	.tbtn {
		margin-top: 30px;
	}
}
.fitc {
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}
/* news 
.news {
	padding: 60px 0;
}
.news .inner{
	max-width: 1225px;
}
*/
/* news スライド上 */
.newsab {
	position: absolute;
	bottom: 0;
	right: 0;
	min-width: 750px;
	background: transparent;
	background-image: linear-gradient(120deg, #3fbf53 0%, #50eb6a 100%);
	box-shadow: rgba(0, 0, 0, 0.02) 0px 2px 24px 0px, rgba(0, 0, 0, 0.04) 0px 0px 0px 1px;
	padding: 20px 30px;
}
.newsab .flex {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}
.newsin {
	width: 645px;
	max-height: 100px;
}
.newsab .maintitle {
	color: #fff;
	margin-bottom: 0;
	line-height: 1.1;
}
.newsab .maintitle .mf {
	font-size: 1.15rem;
}
.newsab .maintitle .sf {
	font-size: 63%;
}
.newsab .maintitle .sf:before {
	content: none;
}
@media (max-width: 985px) {
	.newsab .flex {
		display: block;
	}
	.newsab {
		min-width: auto;
		width: 100%;
		position: initial;
		padding: 30px 30px;
	}
	.newsin {
		width: 100%;
	}
	.newsab .maintitle {
		margin-left: 0;
		line-height: 1.35;
		margin-bottom: 15px;
	}
	.newsab .maintitle .mf {
		font-size: clamp(1.15rem, 0.76rem + 1.3867vw, 1.8rem) !important;
	}
	.newsab .maintitle .sf {
		font-size: 65% !important;
	}
	/* 
	.newsab .maintitle .sf:before {
		content: "";
	}
	*/
}
@media (max-width: 550px) {
	.newsab {
		padding: 20px 10px 47px;
	}
	.newsab .maintitle {
		margin-bottom: 5px;
	}
}
@media (max-width: 450px) {
	.newsab .maintitle {
		line-height: 1.1;
	}
	.newsab .maintitle .sf {
		font-size: 57% !important;
	}
}
/* ご挨拶 */
.welcome p {
	margin-bottom: 15px;
}
.welcome p:last-child {
	margin-bottom: 0 !important;
}
.wtext {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 130%;
	margin-bottom: 20px !important;
}
@media (max-width: 1340px) {
	.wtext {
		font-size: 115%;
		margin-bottom: 15px !important;
	}
}
@media (max-width: 935px) {
	.wtext br {
		display: none;
	}
}
@media (max-width: 750px) {
	.welcome p {
		margin-bottom: 10px;
	}
	.wtext {
		font-size: 104%;
		margin-bottom: 7px !important;
	}
}
.aic {
	align-items: center;
}
@media(min-width:1250px) {
	.inner02 {
		width: 91%;
		max-width: 1300px;
		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;
	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;
	}
	.reverse .img2col div:nth-child(2) {
		margin: 0;
	}
	.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: 8px !important;
	}
	.inner02 {
		width: 92%;
		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;
	}
}
/* 私達と一緒に働きましょう！・協力会社様の募集もしております！ */
.welimg img {
	object-fit: cover;
	height: 440px;
	width: 100%;
}
@media (max-width: 1340px) {
	.welimg img {
		height: 480px;
	}
}
@media (max-width: 750px) {
	.welimg img {
		height: auto;
		margin-bottom: 0;
	}
	.welimg {
		margin-bottom: 15px;
	}
}
/* banner */
a.bwrap {
	pointer-events: none;
}
.banner {
	width: 340px !important;
	height: 100%;
	position: relative;
	margin: auto;
	margin-top: 40px;
	border: 0.9px solid #79b883;
	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(#fff 20%, transparent 20%), radial-gradient(#fff 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: #3fbf53;
	opacity: 0.7;
}
.banner p {
	margin-bottom: 0;
	position: absolute;
	top: 49%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 90%;
	text-align: center;
	z-index: 2;
	font-size: 1.6rem;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 25%), 0px -0.3px 3px rgb(0 0 0 / 25%);
	color: #fff;
}
.rbanner p {
	top: 45%;
	line-height: 1.35;
	font-size: 1.45rem;
}
.banner p span {
	font-size: 65%;
}
@media(max-width:1020px) {
	.banner {
		width: 80% !important;
	}
	.banner p {
		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 p {
		font-size: 4.8vw;
	}
	.rbanner p {
		font-size: 4.5vw;
	}
	.banner p span {
		font-size: 67%;
	}
}
/* check list */
.tcheck li {
	margin-bottom: 10px;
	background: #fff;
	padding: 7px 10px;
	box-shadow: rgb(0 0 0 / 4%) 0px 6px 24px 0px, rgb(0 0 0 / 3%) 0px 0px 0px 1px;
}
.tcheck li::before {
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #3fbf53;
	margin-right: 0.5em;
	font-size: .9em;
}
/* 私達と一緒に働きましょう！ */
.rttext {
	margin-bottom: 25px;
}
/* 協力会社様の募集もしております！ */
.pabr {
	display: none !important;
}
@media(max-width:1020px) {
	.rttext {
		margin-bottom: 15px;
	}
	.pabr {
		display: block !important;
	}
}
@media(max-width:750px) {
	.pabr {
		display: none !important;
	}
}
@media(max-width:360px) {
	.pabr {
		display: block !important;
	}
}
/* 事業紹介 */
.business .inner02 {
	max-width: 1225px;
}
/* 施工実績 */
.s_works .maintitle {
	margin-bottom: 47px;
}
.s_works {
	margin: 20px 0 75px;
}
.s_works::after {
	content: '';
	width: 90%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	display: block;
	background-image: url(../img/bg_grey02.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -35;
	opacity: 0.2;
}
@media (max-width: 750px) {
	.s_works .maintitle {
		margin-bottom: 37px;
	}
	.s_works {
		margin: 0 0 40px;
	}
}
@media (max-width: 650px) {
	.s_works::after {
		content: '';
		width: 85%;
	}
}
.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;
	transition: all 0.3s ease;
}
.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: 310px;
	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.65;
}
.fv .inner {
	max-width: 80%;
}
.fv h2 {
	margin-bottom: 0 !important;
	z-index: 1;
	position: relative;
	color: #fff;
}
.fv .mf {
	font-size: clamp(1.35rem, 0.72rem + 2.24vw, 2.4rem);
	color: #fff;
}
.fv .sf {
	font-size: 70%;
	color: #fff;
}
.fv .maintitle .sf::before {
	content: none;
}
@media (max-width: 1505px) {
	.fv {
		height: 270px;
	}
}
@media(max-width:1000px) {
	.fv {
		height: 235px;
	}
	.fv .inner {
		max-width: 90%;
	}
	.fv .sf {
		font-size: 60%;
	}
}
@media(max-width:650px) {
	.fv h2 {
		line-height: 1;
	}
	.fv {
		height: 210px;
	}
	.fv .sf {
		font-size: 50%;
	}
}
@media(max-width:550px) {
	.fv {
		height: 135px;
	}
}
/* 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: #3fbf53;
}
.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;
	}
}
/* 事業紹介ページ ============================================================*/
/* 山口ウォールワークスの強み */
.bp .flexbox {
	margin-bottom: 35px;
}
.bp .flexbox .wtext {
	font-size: 142% !important;
	letter-spacing: 0.13em;
}
.bp .flexbox:last-child {
	margin-bottom: 0;
}
.bp .img2col {
	margin-bottom: 0 !important;
}
/* 新築・リフォームサイディング施工・シーリング施工 */
.sign {
	font-size: 105%;
	font-weight: 700;
	margin-bottom: 5px;
}
.rcmg0 {
	margin: 0 !important;
}
.bp02 .maintitle {
	margin-bottom: 60px;
}
.bp02 .flexbox {
	margin-bottom: 65px;
}
.bp02 .flexbox img {
	margin-bottom: 10px;
	height: 100% !important;
}
.bp02 .rcheck {
	margin: 15px 0;
}
.bp02 .rcheck p {
	border-bottom: 1px dotted #3fbf53;
	padding-bottom: 4px;
	margin-bottom: 4px;
}
@media(max-width:1165px) {
	.bp .flexbox .wtext {
		font-size: 130% !important;
	}
	.bp02 .flexbox {
		display: block;
		margin-bottom: 50px;
	}
	.bp02 .flexbox img {
		width: 100%;
	}
	.bp02 .flexbox div {
		width: 100%;
	}
	.ipflex {
		display: flex;
		justify-content: space-between;
	}
	.ipflex img {
		width: 49% !important;
	}
}
@media(max-width:910px) {
	.sign {
		font-size: 100%;
	}
	.bp02 .maintitle {
		margin-bottom: 50px;
	}
}
@media(max-width:750px) {
	.bp02 .maintitle {
		margin-bottom: 40px;
	}
	.bp02 .flexbox {
		margin-bottom: 35px;
	}
}
@media(max-width:550px) {
	.bp .flexbox .wtext {
		font-size: 1.15rem !important;
	}
}
/* ご対応可能地域 */
.regions .phbox i {
	color: #3fbf53;
}
.regions .phbox p {
	font-size: 1.25rem;
}
.regions .phbox p span {
	font-size: 80%;
}
@media(max-width:650px) {
	.regions .phbox .mtitle {
		margin-bottom: 20px;
	}
	.regions .phbox p {
		font-size: 1.1rem;
	}
}
@media(max-width:550px) {
	.regions .phbox {
		padding: 20px 7px 25px;
	}
	.regions .phbox p {
		line-height: 1.6;
	}
	.regions .phbox p span {
		font-size: 70%;
	}
}
/* ご依頼の流れ */
.flow {
	position: relative;
}
.flow::before {
	content: "";
	width: 16px;
	height: 100%;
	background-color: #f5f5f5;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.ftitle {
	font-weight: 500;
	margin-bottom: 13px;
	ont-size: clamp(1.1rem, 0.98rem + 0.4267vw, 1.3rem);
	position: relative;
	z-index: 2;
	padding-bottom: 3px;
	border-bottom: 1px solid #ddd;
}
.ftitle span {
	font-weight: 700;
	color: #3fbf53;
	margin-right: 13px;
	font-size: 89%;
	position: relative;
}
.flow .fwrap {
	padding: 35px;
	background: #fff;
	box-shadow: rgb(0 0 0 / 2.5%) 0px 6px 24px 0px, rgb(0 0 0 / 3%) 0px 0px 0px 1px;
}
.flow .flowd {
	margin-bottom: 45px;
}
.flow .flowd:last-child {
	margin-bottom: 0 !important;
}
.flow .fwrap .mainbtn a {
	width: 100%;
	border: 1px solid #3fbf53;
	padding: 8px 0;
	color: #fff;
	background: #3fbf53;
}
.flow .fwrap .mainbtn a::after {
	content: none;
}
.flow .fwrap .mainbtn a:hover {
	color: #3fbf53;
	background: #fff;
}
.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: #3fbf53;
	border-radius: 50%;
	left: 3px;
}
.flow .flowd::after {
	width: 63px;
	border-bottom: 1px dashed #333;
	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) {
	.btns .mainbtn a {
		font-size: 100%;
	}
	.flow .fwrap .btns .mainbtn {
		margin-bottom: 5px;
	}
	.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: 450px) {
	.flows .maintitle {
		margin-bottom: 40px;
	}
	.flow .fwrap {
		padding: 25px 15px;
	}
	.ftitle {
		margin-bottom: 10px;
	}
	.btns {
		margin-top: 13px;
	}
}
/* 求人情報ページ ============================================================*/
.requirement {
	margin-bottom: 50px;
}
@media(max-width:750px) {
	.requirement {
		margin-bottom: 0;
	}
}
.recruitp .maintitle {
	margin-bottom: 50px;
}
@media(max-width:885px) {
	.recruitp .maintitle {
		margin-bottom: 40px;
	}
}
@media(max-width:550px) {
	.recruitp .maintitle {
		margin-bottom: 33px;
	}
	.recruitp .tcheck li {
		font-size: 0.95rem;
	}
}
/*選考について*/
.application .fa-envelope {
	font-size: 90%;
}
.application .info_table th br {
	display: none;
}
.spbr {
	display: none;
}
@media(max-width:770px) {
	.spspan span {
		display: none;
	}
	.spbr {
		display: block;
	}
}
@media(max-width:550px) {
	.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:280px) {
	.application .info_table th br {
		display: none;
	}
}
/* 事務所概要ページ ============================================================*/
/* 理念 */
.phbox {
	max-width: 1000px;
	margin: auto;
	background: #fff;
	padding: 30px 20px 50px;
	box-shadow: rgb(0 0 0 / 4%) 0px 6px 24px 0px, rgb(0 0 0 / 3%) 0px 0px 0px 1px;
	position: relative;
}
.phbox p {
	font-size: clamp(1.1rem, 0.86rem + 0.8533vw, 1.5rem);
	letter-spacing: 0.12em;
}
@media(max-width:550px) {
	.phbox {
		padding: 15px 20px 35px;
	}
	.phbox p {
		letter-spacing: 0.1em;
	}
}
/* 事務所概要 */
.about .maintitle {
	margin-bottom: 60px;
}
@media(max-width:910px) {
	.about .maintitle {
		margin-bottom: 45px;
	}
}
@media(max-width:550px) {
	.about .maintitle {
		margin-bottom: 38px;
	}
}
/* table */
.tds {
	font-weight: 700;
	margin-bottom: 3px;
	font-size: 102%;
}
@media(max-width:550px) {
	.tds {
		font-size: 100%;
	}
}
.info_table td .rcheck p {
	margin-bottom: 0;
}
.info_table td .rcheck {
	margin-bottom: 13px;
}
.info_table td .rcheck:last-child {
	margin-bottom: 0;
}
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: 500;
}
.info_table tr {
	border: 2px solid #f5f5f5;
}
.info_table th, .info_table td {
	padding: 15px 0;
}
.info_table th {
	background: #3fbf53;
	color: #fff;
	width: 30%;
	border-right: 2px solid #f5f5f5;
}
.info_table td {
	padding-left: 10px;
	background: #fff;
	width: 70%;
	border-right: 2px solid #f5f5f5;
	border-left: 2px solid #f5f5f5;
}
/* お問い合わせページ ============================================================*/
.rcheck p {
	position: relative;
	padding-left: 20px;
}
.rcheck p::before {
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #3fbf53;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
.contact_wrap {
	position: relative;
	background-color: #f8fff2;
	margin: auto;
	padding: 20px;
}
.tel_contact i {
	color: #3fbf53;
}
.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;
}
.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.35rem;
	margin-bottom: 10px;
	font-weight: 500;
}
.spb {
	margin-bottom: 45px;
}
@media (max-width: 1210px) {
	.tel_text {
		text-align: left;
	}
}
@media (max-width: 935px) {
	.telmini {
		font-size: 1.2rem;
	}
}
@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 {
		margin-bottom: 5px;
	}
	.telmini {
		font-size: 1.03rem;
	}
}
@media (max-width: 375px) {
	.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: #3fbf53;
	padding: 5px;
	margin-right: 5px;
	font-size: 11px;
	font-weight: 500;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #3fbf53;
	color: #3fbf53 !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: #3fbf53;
	font-weight: 500;
	padding: 1% 7%;
	transition: .4s;
}
.mailform button:hover {
	background-color: #fff;
	color: #3fbf53;
	border: 1px solid #3fbf53;
	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: #3fbf53;
}






/*YouTube*/
.youtube_movie{
	padding-top: 0 !important;
}
.youtube_wrapper{
	position: relative;
	aspect-ratio: 16 / 9;
	margin: 0 auto;
	max-width: 750px;
}
.youtube_wrapper iframe{
	width: 100%;
	height: 100%;
}