@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	color: #595758;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
	overflow: auto;
}
.hamopen {
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}
a {
	text-decoration: none;
	transition: .4s;
}
/*=====ウェブアクセシビリティ=====*/
a:focus-visible {
	outline: 4px solid blue !important;
	outline-offset: -1px;
	box-shadow: 0 0 0 4px white;
}
button:focus-visible {
	outline: 4px solid blue !important;
	outline-offset: -1px;
	box-shadow: 0 0 0 4px white;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 100px 0;
	position: relative;
}
@media (max-width: 550px) {
	main section {
		padding: 65px 0;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
/* テキスト */
p {
	margin-bottom: 10px;
}
.marker {
	text-decoration: underline;
	text-decoration-thickness: 0.45em;
	text-decoration-color: rgba(46, 171, 129, 0.25);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
/*最初にロゴを表示*/
.start {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9999;
	background: #fff;
	background-size: cover;
	background-position: center;
}
.start div {
	width: 380px;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
}
.start div img {
	width: 100%;
	height: 100%;
}
@media (max-width: 1090px) {
	.start div {
		width: 40vw;
	}
}
@media (max-width: 500px) {
	.start div {
		width: 62vw;
	}
}
/*見出し01*/
.maintitle {
	margin-bottom: 70px;
	display: block;
	text-align: center;
	line-height: 0.8;
	position: relative;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: clamp(1.7rem, 1.34rem + 1.28vw, 2.3rem);
}
.maintitle .mf {
	text-transform: uppercase;
	position: relative;
	text-indent: 0.05em;
	white-space: nowrap;
	color: #1f6950;
}
.maintitle .sf {
	font-size: 45%;
	transition-delay: 0.55s;
}
.maintitle.mtleft {
	text-align: left;
}
.txtmgb {
	margin-bottom: 37px !important;
}
@media (max-width: 550px) {
	.maintitle {
		margin-bottom: 45px;
		line-height: 1;
	}
	.txtmgb {
		margin-bottom: 37px !important;
	}
	.maintitle .sf {
		font-size: 50%;
	}
}
/*見出し02*/
.ititle {
	font-weight: 500;
	font-size: clamp(1.15rem, 0.7125rem + 1.4vw, 1.5rem);
	margin-bottom: 15px;
	padding: 7px;
	padding-left: 13px;
	background: #f5f5f5;
	border-left: 6px solid #5a92ad;
	position: relative;
}
@media (max-width: 550px) {
	.ititle {
		padding-left: 10px;
		margin-bottom: 10px;
	}
}
/*見出し03*/
.stitle {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	position: relative;
	font-size: clamp(1.15rem, 0.8375rem + 1vw, 1.4rem);
	margin-bottom: 20px;
	padding-bottom: 8px;
	padding-left: 2px;
	color: #595758;
	line-height: 1.7;
	border-bottom: 1px solid #ddd;
}
.stitle::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 95px;
	height: 1px;
	background: #1f6950;
}
.stitle .en {
	font-size: 76%;
	color: #1f6950;
	margin-right: 12px;
	text-transform: uppercase;
	display: block;
}
@media (max-width: 1060px) {
	.stitle {
		line-height: 1.9;
	}
	.stitle span {
		font-size: 70%;
		display: block;
	}
}
@media (max-width: 750px) {
	.stitle {
		margin-bottom: 15px;
	}
}
/*見出し04*/
.mtitle {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	position: relative;
	background: #1f6950;
	color: #fff;
	font-size: clamp(1.15rem, 0.8375rem + 1vw, 1.4rem);
	padding: 7px 17px 10px;
	margin-bottom: 15px;
}
.mtitle::after {
	content: '';
	width: 20px;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: #fff;
	pointer-events: none;
}
@media (max-width: 750px) {
	.mtitle {
		padding: 7px 13px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 20px;
	transition: .4s;
	display: inline-block;
	width: 285px;
	text-align: center;
	color: #fff;
	background: #1f6950;
	border: 1px solid rgba(255, 255, 255, 0.8);
	z-index: 1;
	overflow: hidden;
	border-radius: 50px;
	white-space: nowrap;
}
.mainbtn a span {
	font-size: 70%;
}
.mainbtn a:hover {
	border: 1px solid #1f6950;
	color: #1f6950;
	background: #fff;
	transition: .4s;
}
@media (max-width: 550px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 220px;
		padding: 13px;
	}
}
/*flex要素*/
.flexbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (max-width: 750px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
	}
	.flexbox div {
		width: 100%;
	}
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 89%;
	max-width: 1200px;
	margin: 0 auto;
}
@media (min-width: 2000px) {
	.inner02 {
		max-width: 1500px;
		width: 92%;
		margin: 0 auto;
	}
}
@media (max-width: 1999px) {
	.inner02 {
		max-width: 100%;
		width: 100%;
	}
	.mauto {
		margin-left: auto;
		margin-right: auto;
	}
	.mauto.w48 {
		width: 42%;
	}
	.mauto.w43 {
		width: 37%;
	}
}
@media (max-width: 750px) {
	.inner02 {
		width: 90%;
		margin: 0 auto;
	}
	.mauto.w48, .mauto.w43 {
		width: 100%;
	}
}
.w75 {
	width: 75%;
}
.w65 {
	width: 65%;
}
.w52 {
	width: 52%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 48%;
}
.w43 {
	width: 43%;
}
.w32 {
	width: 32%;
}
.w22 {
	width: 22%;
}
/* background */
.bg_green::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #e3fff6;
	z-index: -100;
}
.bg_illust01::before, .bg_illust02::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.8;
	background-position: bottom right !important;
	background-repeat: repeat-x !important;
	background-size: 800px !important;
	z-index: -90;
}
.bg_illust01::before {
	background-image: url(../img/_bg/bg_illust01.svg);
}
.bg_illust02::before {
	background-image: url(../img/_bg/bg_illust02.svg);
}
.bg_green.bg_illust01::before, .bg_green.bg_illust02::before {
	opacity: 0.4;
}
@media (max-width: 550px) {
	.bg_illust01::before, .bg_illust02::before {
		background-size: 450px !important;
	}
}
/* half */
.thalf {
	position: relative;
}
.thalf::after {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 50%;
	background: #e3fff6;
	z-index: -1;
}
/* illust 画像の上 */
.psr {
	position: relative;
}
.br_illust {
	position: absolute;
	bottom: -4%;
	right: 0;
	z-index: 2;
	width: 70% !important;
}
@media (max-width: 550px) {
	.br_illust {
		bottom: -5.5%;
		width: 100% !important;
	}
}
/*=== 共通部分ここまで ===*/
/* header ================================*/
.header_wrap {
	width: 263px;
	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%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.header_logo {
	width: 100%;
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_title {
	width: 100%;
}
.header_title {
	width: 100%;
}
.header h1 {
	transition: .3s;
	z-index: 110;
}
.header_title:hover h1 {
	opacity: 0.7;
	transition: .3s;
}
.header_nav {
	margin: 10% 0 14%;
}
.header li a img {
	width: 30px;
	height: 100%;
	margin-right: 10px;
	margin-top: 2px;
}
.header ul {
	text-align: center;
	width: 100%;
}
.header ul li {
	width: 95%;
	position: relative;
	display: inline-block;
	border-bottom: 1px dashed #ddd;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	line-height: 1.9;
	padding: 3px;
}
.header ul li span {
	display: block;
	font-size: 80%;
	color: #1f6950;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 5px;
	color: #595758;
	text-align: left;
	margin: 2px 0;
	font-size: 1rem;
}
.header ul li a:hover {
	color: #595758;
	opacity: 0.6;
}
.header .mainbtn {
	text-align: center;
}
.header .mainbtn a {
	width: 100%;
	font-size: 90%;
	padding: 17px 0;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}
.header .mainbtn a::after {
	content: none;
}
.header_item > div {
	margin-bottom: 5px;
}
.header_item > div:last-child {
	margin-bottom: 0;
}
.tel {
	text-align: center;
	font-size: 1.3rem;
	white-space: nowrap;
	line-height: 1.55;
}
.tel a {
	color: #1f6950;
}
.tel a span {
	color: #595758;
	font-size: 60%;
}
/* icons link */
.link_icons {
	display: flex;
	width: fit-content;
	margin: auto;
	margin-top: 5px;
}
.link_icons a {
	color: #1f6950;
	font-size: 1.45rem;
}
.link_icons a:hover {
	opacity: 0.6;
}
.link_icons div {
	margin: 0 5px;
}
/* 高さ */
@media (max-height: 735px) {
	.header {
		margin-top: 40px;
		padding-bottom: 40px;
		top: 0;
		transform: translate(-50%, 0);
	}
}
/* hamburger ================================= */
.header__inner {
	display: none;
}
.hamburger {
	position: fixed;
	display: block;
	height: 33px;
	top: 12.5px;
	right: 12px;
	z-index: 9999;
	width: 60px;
	border: none;
	background-color: transparent;
}
.hamburger.-active .hamburger__line {
	background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
	top: 0;
	transform: rotate(45deg);
	background-color: #1f6950 !important;
}
.hamburger.-active .hamburger__line::after {
	top: 0;
	transform: rotate(-45deg);
	background-color: #1f6950 !important;
}
/*
.hamburger.-active .hamburger__text::before {
	content: 'close';
	position: relative;
	bottom: -9px;
	color: #1f6950 !important;
}
*/
.hamburger__line {
	display: block;
	height: 2px;
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	transition: 0.4s;
}
.hamburger__line:before, .hamburger__line:after {
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	width: 100%;
	transition: inherit;
}
.hamburger__line, .hamburger__line:before, .hamburger__line:after {
	background-color: #1f6950;
}
.hamburger__line:before {
	top: -7.5px;
}
.hamburger__line:after {
	top: 7.5px;
}
.hamburger__text {
	position: absolute;
	bottom: -3px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
/*
.hamburger__text::before {
	content: "menu";
	text-align: center;
	font-size: 0.6rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-left: 3px;
	color: #1f6950;
}
*/
.header__nav-area {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	height: 100vh;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: 0.4s;
	overflow-y: scroll;
	display: flex;
	justify-content: center;
	background: #fff;
}
.header__nav-area.-active {
	opacity: 1;
	visibility: visible;
}
.global-navigation {
	padding: 60px 0 30px;
	margin: auto;
	height: fit-content;
	width: 85%;
	max-width: 600px;
}
.global-navigation__list {
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.global-navigation__list > li {
	width: 48%;
	margin: 3px 0;
	font-size: 1rem;
	transition: .35s;
	line-height: 1.75;
	display: block;
	padding: 12px 0;
	border-bottom: 1px dashed #ddd;
}
.global-navigation__list a {
	color: #595758;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}
.global-navigation__list a:hover {
	opacity: 0.6;
}
.global-navigation__list > li a {
	display: inline-block;
	width: 100%;
}
.global-navigation__list > li a span {
	display: block;
	font-size: 62%;
	color: #1f6950;
	transition: all .3s;
	text-transform: uppercase;
	white-space: nowrap;
}
/*btn*/
.global-navigation .mainbtn {
	margin-bottom: 3px;
}
.global-navigation .mainbtn a {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 0.9rem;
}
.global-navigation .mainbtn.telbtn a {
	background: #1f6950;
	color: #fff;
	font-weight: 500;
}
.global-navigation .mainbtn.telbtn a:hover {
	background: #fff;
	color: #1f6950;
}
/*icon*/
.global-navigation .sp_icon a {
	font-size: 1.55rem;
}
/*accordion menu*/
.accordion__list li {
	font-size: 1rem;
}
.accordion__list li + li {
	margin-top: 11px;
}
.accordion__list li a::before {
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 7px;
	font-size: 0.6rem;
	transform: translateY(-2px);
	color: #4c5434;
}
.accordion__link {
	opacity: 0.85;
}
.accordion {
	height: 0;
	overflow: hidden;
	visibility: hidden;
	transition: 0.4s;
}
.accordion.-active {
	height: auto;
	padding-top: 17px;
	visibility: visible;
}
.global-navigation__link.-accordion {
	position: relative;
	background: none;
	border: none;
	appearance: none;
	width: 100%;
	padding: 0;
	text-align: left;
	color: #fff;
}
.global-navigation__link.-accordion::after {
	content: '';
	display: block;
	height: 12px;
	position: absolute;
	top: 50%;
	right: 5px;
	width: 2px;
	background-color: #4c5434;
	transform: translateY(-50%);
	transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	background-color: #4c5434;
	transform: translateY(-50%);
}
.global-navigation__link.-active::after {
	transform: translateY(-50%) rotate(-90deg);
}
/* アイコン =========*/
.sp_icon {
	display: none;
	position: fixed;
	top: 16.5px;
	right: 79px;
	z-index: 997;
}
.sp_icon a {
	font-size: 1.23rem;
	color: #fff;
	position: relative;
	background: #1f6950;
	border-radius: 50px;
	width: 45px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 2px;
}
.sp_icon a:hover {
	opacity: 0.6;
}
/*site_wrap*/
.site_wrap {
	margin-left: auto;
	width: calc(100% - 263px);
}
@media (max-width: 1235px) {
	.header {
		margin-top: 0;
	}
	.site_wrap {
		margin: auto;
		width: 100%;
	}
	.header_sticky {
		position: sticky;
		top: 0;
		left: 0;
		right: 0;
		z-index: 100;
	}
	.h_sticky {
		position: relative;
		top: 0;
		left: 0;
		right: 0;
		z-index: 100;
	}
	.header_wrap {
		width: 100%;
		height: fit-content;
		position: relative;
		top: 0;
		left: 0;
		z-index: 100;
		background: #fff;
		overflow-y: visible;
		box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.4);
	}
	.header {
		position: initial;
		width: 100%;
		padding: 10px 7px;
		transform: translate(0, 0);
	}
	.header_nav, .header_item, .header .link_icons {
		display: none;
	}
	.sp_icon {
		display: block;
	}
	.header__inner {
		display: block;
	}
	.header_title {
		width: 255px;
	}
}
@media (max-width: 550px) {
	.sp_icon {
		top: 9.5px;
		right: 68px;
	}
	.sp_icon a {
		width: 39px;
		height: 39px;
		font-size: 1.07rem;
	}
	.hamburger {
		top: 10px;
		right: 4.5px;
	}
	.header_title {
		width: 220px;
	}
	.global-navigation__list > li {
		font-size: 0.9rem;
		padding: 9px 5px;
	}
	.global-navigation .mainbtn a {
		font-size: 0.75rem !important;
		width: 80%;
		max-width: 205px;
		padding: 15px 0;
	}
	.global-navigation .sp_icon {
		margin-top: 5px;
	}
	.global-navigation .sp_icon a {
		font-size: 1.35rem;
	}
	.global-navigation .link_icons {
		margin-top: 0;
	}
	.global-navigation .link_icons a {
		font-size: 1.35rem;
	}
	.global-navigation .link_icons div {
		margin: 0 4px;
	}
}
@media (max-width: 319px) {
	.sp_icon {
		display: none;
	}
}
/* footer =======================================*/
.footer_contact .inner {
	max-width: 1000px;
}
.footer_contact {
	padding: 80px 0;
	color: #fff;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.footer_contact::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #1f6950;
	z-index: -2;
}
.footer_contact::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -3px;
	left: 0;
	opacity: 0.4;
	filter: brightness(0) invert(1);
	z-index: -1;
	background-image: url(../img/_bg/bg_illust01.svg);
	background-position: bottom center !important;
	background-repeat: repeat-x !important;
	background-size: 800px;
}
.footer_contact .maintitle {
	color: #fff;
	margin-bottom: 30px;
}
.footer_contact .maintitle .mf {
	color: #fff;
}
.ctext {
	margin-bottom: 30px;
	text-align: center;
}
/*btn*/
.footer_contact .flexbox {
	justify-content: center;
}
.footer_contact .btn {
	text-align: center;
	width: 31%;
	margin: 0 1.1% 17px;
}
.footer_contact .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	height: 100%;
	width: 100%;
	padding: 22px 5px;
	font-size: 1.05rem;
	white-space: nowrap;
	color: #fff;
	background-color: #1f6950;
	border: 2px solid rgba(255, 255, 255, 0.5);
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}
.footer_contact .btn a span {
	font-size: 70%;
	margin-right: 5px;
}
.footer_contact .btn a i {
	margin-right: 8px;
}
.footer_contact .btn a:hover {
	border: 2px solid #fff;
	background-color: rgba(255, 255, 255, 0.1);
}
.fax {
	pointer-events: none;
}
@media (max-width: 1005px) {
	.footer_contact .btn {
		width: 47%;
	}
}
@media (max-width: 750px) {
	.footer_contact .inner {
		width: 83%;
	}
	.footer_contact .maintitle {
		margin-bottom: 25px;
	}
	.ctext {
		text-align: left;
		margin-bottom: 27px;
		font-size: 95%;
	}
	.footer_contact {
		padding: 55px 0 65px;
	}
	.footer_contact .flexbox {
		max-width: 400px;
		margin: auto;
	}
	.footer_contact .btn {
		margin: 0 auto 8px;
		width: 100%;
		height: auto;
	}
	.footer_contact .btn:last-child {
		margin-bottom: 0 !important;
	}
	.footer_contact .btn a {
		font-size: 100%;
		padding: 15px 5px;
	}
}
@media (max-width: 550px) {
	.footer_contact::before {
		background-size: 450px;
	}
}
/*リンク・ロゴ・住所*/
.fbbg {
	background: #fff;
}
.footer_bottom {
	padding: 35px 0;
}
/* ロゴとアドレス */
.dhga {
	padding-top: 5px;
}
.flogo {
	width: 90%;
	max-width: 305px;
	margin-bottom: 13px;
}
.fadr p {
	line-height: 1.7;
}
.ib {
	display: inline-block;
}
.copyright {
	font-size: 0.9rem;
	text-align: center;
	border-top: 1px solid #ddd;
	padding: 7px 0 13px;
	margin: auto;
}
@media (max-width: 750px) {
	.flogo {
		max-width: 245px;
		margin-bottom: 7px;
	}
	.fadr p {
		font-size: 85%;
		line-height: 1.8;
	}
}
@media (max-width: 550px) {
	.footer_bottom {
		padding: 27px 0 23px;
	}
	.copyright {
		padding: 10px 0 13px;
		font-size: 0.75rem;
	}
}
/*ページ上に戻るボタン*/
.go_top {
	display: block;
	width: 61px;
	height: 61px;
	box-sizing: border-box;
	background: #1f6950;
	border: 2px solid rgba(255, 255, 255, 0.2);
	padding-top: 30px;
	text-align: center;
	letter-spacing: -1px;
	font-size: 85%;
	text-decoration: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 9;
	border-radius: 50px;
}
.go_top::before {
	font-family: "Font Awesome 6 Free";
	content: "\f077";
	font-weight: bold;
	color: #fff;
	font-size: 1.05rem;
	position: absolute;
	top: 47%;
	left: 49.5%;
	transform: translate(-50%, -50%);
}
.go_top:hover {
	opacity: 0.6;
}
.tfade {
	position: relative;
	z-index: 9;
}
@media(max-width:550px) {
	.go_top {
		width: 50px;
		height: 50px;
		right: 15px;
		opacity: 1;
	}
	.go_top::before {
		font-size: 0.95rem;
	}
}
/* スライド */
.topslide {
	overflow: hidden;
	position: relative;
}
.topslide::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #111;
	z-index: 1;
	opacity: 0.2;
}
/**/
.slide_items {
	position: relative;
	width: 100%;
}
.slide_items img {
	width: 100%;
	height: 100vh;
	min-height: 520px;
	object-fit: cover;
}
/*スライドアニメーション*/
@keyframes fadezoom {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.15);
	}
}
.slick-animation {
	animation: fadezoom 14s linear 0s normal both;
}
/* text */
.slide_text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	text-shadow: 0px 2.5px 3px rgb(0 0 0 / 15%), 0px -2.5px 3px rgb(0 0 0 / 15%);
}
.slide_text p {
	line-height: 1.6;
	margin-bottom: 0;
	white-space: nowrap;
	font-size: 3.2rem;
	letter-spacing: 0.18em;
}
@media (max-width: 750px) {
	.slide_text p {
		font-size: 2.15rem;
	}
}
@media (max-width: 550px) {
	.slide_items img {
		height: calc(100vh - 64px);
	}
	.slide_text {
		top: 47%;
	}
	.slide_text p {
		font-size: 7.7vw;
	}
}
/*============*/
.pdb {
	padding-bottom: 55px !important;
}
.pdb0 {
	padding-bottom: 1px !important;
}
@media (max-width: 550px) {
	.pdb {
		padding-bottom: 20px !important;
	}
}
.center {
	text-align: center;
}
@media (max-width:750px) {
	.spcenter {
		text-align: center !important;
	}
}
.fitc {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.tbtn {
	margin-top: 45px;
}
@media (max-width: 550px) {
	.tbtn {
		margin-top: 27px;
	}
}
.aic {
	align-items: center;
}
/* 新着情報　============*/
.news {
	padding: 85px 0 120px;
}
.news .flexbox {
	flex-wrap: nowrap;
}
.newstitle {
	white-space: nowrap;
	margin-right: 40px;
}
.nsw {
	width: 100%;
}
@media (max-width: 750px) {
	.news .maintitle {
		margin-bottom: 23px !important;
	}
	.news {
		padding: 55px 0 75px !important;
	}
}
/* ごあいさつ ===============*/
.wel_illust {
	width: 100%;
	max-width: 600px;
	margin: 40px auto 0;
}
@media (max-width: 750px) {
	.welcome .mauto {
		margin-bottom: 40px;
	}
}
@media (max-width: 550px) {
	.wel_illust {
		margin-top: 13px;
	}
}
/* 行政書士赤松事務所の強み ===============*/
.features {
	counter-reset: features_num;
}
.features .maintitle {
	margin-bottom: 25px;
}
.feabox {
	position: relative;
	counter-increment: features_num;
}
.feabox::before {
	color: #fff;
	content: "0"counter(features_num);
	background: #1f6950;
	width: 60px;
	height: 60px;
	clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	z-index: 1;
}
.feaimg {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-bottom: 15px;
	aspect-ratio: 1 / 1;
}
.feaimg img {
	object-fit: contain;
	height: auto;
	width: 70%;
}
.feaimg::before {
	content: '';
	width: 100%;
	height: 100%;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	position: absolute;
	bottom: -20%;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	z-index: -1;
}
.featext h3 {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: clamp(1.1rem, 0.9125rem + 0.6vw, 1.25rem);
	margin-bottom: 15px;
}
@media (max-width: 1410px) {
	.feabox::before {
		width: 45px;
		height: 45px;
		top: 5%;
	}
}
@media (max-width: 750px) {
	.features .maintitle {
		margin-bottom: 20px;
	}
	.feaimg {
		margin-bottom: 10px;
	}
	.feabox {
		margin-top: -20px;
	}
	.feabox::before {
		top: 13vw;
	}
}
/* サービス紹介 ===============*/
.serbox {
	background: #fff;
	margin-bottom: 40px;
	box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px, rgba(0, 0, 0, 0.02) 0px 0px 0px 1px;
}
.sertext {
	padding: 17px 25px 25px;
}
.serbox h3 {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	position: relative;
	background: #1f6950;
	color: #fff;
	font-size: clamp(1.2rem, 0.7625rem + 1.4vw, 1.55rem);
	padding: 7px 17px 10px;
}
.serbox h3::after {
	content: '';
	width: 20px;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: #fff;
	pointer-events: none;
}
.ser_mini {
	font-size: 1rem;
	font-weight: 500;
	border-bottom: 1px solid #ddd;
	margin-top: 15px;
	margin-bottom: 5px;
}
.ser_mini::before {
	font-family: "Font Awesome 6 Free";
	content: "\f111";
	font-weight: lighter;
	margin-right: 3px;
	color: #1f6950;
	font-size: 80%;
	position: relative;
	top: -1.3px;
}
/*serbox list*/
.acheck li a {
	color: #1f6950;
	border-bottom: 1px solid #1f6950;
}
.acheck li a:hover {
	opacity: 0.6;
}
.serbox .acheck li {
	padding-left: 0;
	border-bottom: none;
}
.serbox .acheck li::before {
	content: none;
}
.ac_flex {
	display: flex;
	flex-wrap: wrap;
}
.ac_flex li {
	margin-right: 13px;
}
/*list*/
.acheck li {
	padding-left: 20px;
	position: relative;
}
.acheck li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: lighter;
	display: inline-block;
	color: #1f6950;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
@media (max-width: 945px) {
	.serbox h3 {
		padding: 7px 13px;
	}
}
@media (max-width: 750px) {
	.serbox:last-child {
		margin-bottom: 0;
	}
}
/* コンテンツ =====================*/
.contents .inner {
	max-width: 1100px; /*max-width: 1600px;*/
}
.imgcard img {
	object-fit: cover;
}
.imgcardwrap {
	width: 48%; /*width: 32%;*/
}
.imgcard {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	transition: .8s;
}
.imgcard:hover {
	transition: .4s ease;
	border-radius: 50%;
}
.imgcard:hover img {
	transform: scale(1.5) rotate(-30deg);
}
.imgcard a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
}
.imgcard a::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #1f6950;
	pointer-events: none;
	z-index: -1;
	transition: .3s;
	opacity: 0.65;
}
.imgcard a:hover::before {
	opacity: 0;
	transition: .9s;
}
.imgcard a::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #1f6950;
	pointer-events: none;
	z-index: -1;
	transition: .3s;
	opacity: 0;
}
.imgcard a:hover::after {
	opacity: 1;
	transition: .9s;
}
.imgcard a img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 1.15s ease;
	z-index: -2;
}
.imgcard h3 {
	color: #fff;
}
.imgcard h3 {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	height: fit-content;
	font-size: 1.55rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 17px;
	white-space: nowrap;
	line-height: 1.6;
	transition: 1.15s ease;
}
.imgcard h3 span {
	font-size: 70%;
	display: block;
	text-transform: uppercase;
}
@media (max-width: 1450px) {
	.imgcard h3 {
		font-size: 1.6vw;
	}
}
@media (max-width: 1030px) {
	.imgcard h3 {
		font-size: 1.3rem;
	}
}
@media (max-width: 750px) {
	.imgcardwrap {
		margin-bottom: 10px;
	}
}
/* 下層ページトップ ===========================================================================================================*/
.fv {
	padding: 100px 0 80px;
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}
.fv::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/fv.jpg);
	background-repeat: repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #083324;
	opacity: 0.75;
	z-index: 1;
}
.fv h2 {
	text-align: center;
	margin-bottom: 20px !important;
	font-size: clamp(1.3rem, 0.425rem + 2.8vw, 2rem);
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	line-height: 1;
	z-index: 1;
	position: relative;
	color: #fff;
	text-transform: capitalize;
}
@media(max-width:1235px) {
	.fv {
		padding: 90px 0 70px;
	}
}
@media(max-width:770px) {
	.fv {
		padding: 50px 0 40px;
	}
}
@media(max-width:550px) {
	.fv {
		padding: 40px 0 30px;
	}
	.fv h2 {
		margin-bottom: 17px !important;
	}
}
/* breadcrumb */
.binner {
	line-height: 1.6;
	width: 97%;
	font-size: 1.05rem;
	font-weight: 500;
	position: relative;
	color: #fff;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: relative;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	position: relative;
	top: -0.1em;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #fff;
}
.breadcrumb li:first-child a::before {
	font-family: "Font Awesome 6 Free";
	content: '\f015';
	font-weight: bold;
	font-size: 90%;
	position: relative;
	top: -0.05em;
}
@media(max-width:850px) {
	.binner {
		font-size: 0.9rem;
	}
}
@media(max-width:650px) {
	.binner {
		font-size: 0.75rem;
	}
}
/* 成年後見・遺言・相続ページ ===========================================================================================================*/
.illust {
	width: 70%;
	max-width: 350px;
	margin: auto;
	margin-top: 40px;
}
@media(max-width:550px) {
	.illust {
		margin-top: 25px;
	}
}
/*成年後見サポート*/
.guardianship .fitc {
	max-width: 1005px;
}
/*基本報酬*/
.inhemgt {
	margin-top: 45px;
}
/*流れ*/
.flowsbox {
	position: relative;
	display: flex;
	padding: 20px;
	background: #fff;
	margin-bottom: 30px;
	border: 2px solid #32a880;
}
.flowsbox::before {
	content: "";
	position: absolute;
	bottom: -24px;
	left: 50%;
	margin-left: -15px;
	border: 12px solid transparent;
	border-top: 12px solid #FFF;
	z-index: 2;
}
.flowsbox::after {
	content: "";
	position: absolute;
	bottom: -29px;
	left: 50%;
	margin-left: -17px;
	border: 14px solid transparent;
	border-top: 14px solid #32a880;
	z-index: 1;
}
.flowsbox:last-child::before, .flowsbox:last-child::after {
	content: none;
}
.flowsbox:last-child {
	margin-bottom: 0 !important;
}
.flowsbox p {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
/*title*/
.flowsbox h3 {
	text-align: center;
	width: 500px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 1rem;
	margin-right: 30px;
	line-height: 1.65;
}
.flowsbox h3 span {
	padding: 5px;
	background: #1f6950;
	display: block;
	color: #fff;
	margin-bottom: 7px;
	font-size: 90%;
}
/*btn*/
.btnflex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}
.btnflex .mainbtn {
	width: calc(100% /3 - 3px);
}
.btnflex .mainbtn a {
	font-size: 85%;
	line-height: 1.6;
	width: 100%;
	height: 85px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.btnflex .mainbtn a i{
	margin-right: 3px;
}
.btnflex .mainbtn:last-child a{
	display: block;
}
@media (max-width:1455px) {
	.btnflex .mainbtn a {
		font-size:0.82vw;
	}
}
@media (max-width:1235px) {
.btnflex .mainbtn a {
		font-size:80%;
	}
	.flowsbox {
		display: block;
	}
	.flowsbox h3 {
		width: 100%;
		font-size: 1.15rem;
		margin: auto;
		margin-bottom: 13px;
	}
}
@media (max-width:920px) {
	
	.btnflex {
		display: block;
		margin: auto;
		max-width: 240px;
		margin-top: 20px;
	}
	.btnflex .mainbtn {
		width: 100%;
		margin-bottom: 7px;
	}
	.btnflex .mainbtn a {
		font-size: 90%;
		display: block;
		height: auto;
	}
	.btnflex .mainbtn a br{
		display:none;
	}
}
@media (max-width:750px) {
	.flowsbox h3 span {
		padding: 3px;
	}
	.flowsbox img {
		margin-top: 17px;
	}
}

/* 在留資格ページ ===========================================================================================================*/
.residentialstatus .fitc {
	max-width: 980px;
}
@media(max-width:400px) {
	.residentialstatus .maintitle .mf {
		font-size: 7vw;
	}
}
/*在留資格一覧*/
.statuslist {
	margin-bottom: 55px;
}
.statuslist .privacy_wrap {
	margin-bottom: 7px;
}
.statuslist .privacy_header::before {
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	display: inline-block;
	color: #1f6950;
}
/*table*/
.status_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.status_table th, .status_table td {
	padding: 15px 5px;
}
.status_table th {
	font-weight: 500;
	width: 30%;
}
.status_table td {
	padding-left: 10px;
	width: 70%;
}
.status_table tr:nth-child(even) {
	background: #f2fffb;
}
.status_table tr:nth-child(odd) {
	background: #e3fff6;
}
/* 各種申請ページ ===========================================================================================================*/
.listbox {
	margin-top: 23px;
}
.listbox .stitle {
	margin-bottom: 13px;
	font-size: clamp(1.1rem, 0.85rem + 0.8vw, 1.3rem);
}
.listbox .stitle:first-letter {
	font-size: 110%;
	color: #1f6950;
}
@media(max-width:750px) {
	.spmgb {
		margin-bottom: 15px;
	}
}
/*list*/
.acheck li {
	padding-left: 20px;
	position: relative;
	border-bottom: 1px dotted #1f6950;
	padding-bottom: 3px;
	margin-bottom: 3px;
}
.acheck li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #1f6950;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
/*table*/
.info_table.fee th, .info_table.fee td {
	font-size: 95%;
}
.info_table.fee th {
	width: 60%;
}
.info_table.fee td {
	width: 40%;
}
/* 事務所概要・お問い合わせページ ===========================================================================================================*/
/*企業理念*/
.phtext {
	font-size: 117%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}
@media(max-width:550px) {
	.phtext {
		font-size: 107%;
		margin-bottom: 35px;
	}
}
/*代表挨拶*/
.gbox {
	background: #fff;
	padding: 50px 90px;
	box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px, rgba(0, 0, 0, 0.02) 0px 0px 0px 1px;
}
.glast {
	margin-top: 23px;
	text-align: right;
}
.gimg {
	text-align: center;
	margin-bottom: 55px;
}
@media(max-width:750px) {
	.gbox {
		padding: 20px;
	}
	.gimg {
		margin-bottom: 35px;
	}
}
/*事務所概要*/
.about .illust {
	margin-bottom: 30px;
}
/*table*/
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.info_table tr {
	border: 1px solid #d1d1d1;
}
.info_table th, .info_table td {
	padding: 15px 5px;
}
.info_table th {
	font-weight: 500;
	background: #fafafa;
	width: 30%;
	border-right: 1px solid #d1d1d1;
}
.info_table td {
	padding-left: 10px;
	background: #fff;
	width: 70%;
	border-right: 1px solid #d1d1d1;
	border-left: 1px solid #d1d1d1;
}
.ib {
	display: inline-block;
}
/*map*/
.mapbox {
	margin-top: 40px;
}
.mapbox iframe {
	height: 450px;
	width: 100%;
}
@media (max-width:750px) {
	.info_table {
		border-collapse: collapse;
	}
	.info_table td, .info_table th {
		width: 100% !important;
		padding: 8px 10px;
		display: block;
		border: none;
		text-align: left;
	}
	.info_table th {
		border-bottom: 1px solid #d1d1d1;
	}
	.info_table td {
		padding-bottom: 10px !important;
	}
	.mapbox iframe {
		height: 220px;
	}
}
/* お問い合わせ =====================================*/
.contact_sec .inner {
	max-width: 1050px;
}
/*本ホームページに関する質問につきましては*/
.contop {
	max-width: 950px;
	margin-bottom: 50px;
}
@media (max-width: 550px) {
	.contop {
		margin-bottom: 40px;
	}
	.contop, .mailform label, .mnote p {
		font-size: 0.9rem;
	}
}
/* 電話・FAX */
/*title*/
.cotitle {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	position: relative;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
	font-size: clamp(1.07rem, 0.7825rem + 0.92vw, 1.3rem);
	line-height: 1.55;
	border-left: 4px solid #1f6950;
	padding-left: 12px;
}
.cotitle span {
	font-size: 70%;
	display: inline-block;
	margin-left: 3px;
}
@media (max-width: 550px) {
	.cotitle {
		margin-bottom: 17px;
	}
}
/*box*/
.telbox {
	background: #f2fffb;
	border: 2px solid #e3fff6;
	padding: 20px 30px;
}
.telbox h3 {
	font-size: 100%;
	padding-left: 39px;
	font-weight: 500;
	position: relative;
	margin-bottom: 3px;
}
.telbox h3::before {
	background-color: #595758;
	position: absolute;
	content: "";
	top: 0.95em;
	left: 0;
	width: 30px;
	height: 1px;
}
@media (max-width:750px) {
	.telbox {
		margin-bottom: 10px;
	}
	.telbox:last-child {
		margin-bottom: 0;
	}
}
@media (max-width:550px) {
	.telbox {
		padding: 17px;
	}
	.telbox h3 {
		font-size: 90%;
	}
}
/* 番号 */
.telbox a {
	font-size: 1.6rem;
	color: #1f6950;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	white-space: nowrap;
}
.telbox a:hover {
	opacity: 0.6;
}
.telwrap {
	margin-top: 0 !important;
}
.telwrap p {
	margin-top: 5px;
	margin-bottom: 0;
}
@media (max-width:550px) {
	.telbox a {
		font-size: 1.43rem;
	}
}
/*fax*/
.telboxwrap {
	margin-top: 50px;
}
.telboxwrap .telbox a {
	margin-right: 40px;
}
.telboxwrap .telbox p {
	margin-bottom: 4px;
}
.telboxwrap .telbox {
	display: flex;
	align-items: center;
}
.fcheck {
	display: flex;
}
.fcheck li {
	padding-left: 18px;
	margin-right: 20px;
	position: relative;
}
.fcheck li:last-child {
	margin-right: 0;
}
.fcheck li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #1f6950;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
@media (max-width: 965px) {
	.telboxwrap .telbox {
		display: block;
	}
	.telboxwrap .telbox a {
		margin-right: 0;
	}
	.telboxwrap .telbox p {
		margin-top: 7px;
	}
}
@media (max-width:550px) {
	.telboxwrap .telbox p, .fcheck li {
		font-size: 90%;
	}
}
@media (max-width: 500px) {
	.telboxwrap .telbox {
		display: block;
	}
	.telboxwrap .telbox p {
		margin-bottom: 7px;
	}
	.fcheck {
		display: block;
	}
	.fcheck li {
		margin-right: 0;
	}
}
/* メール */
.mnote {
	max-width: 837px;
	margin: auto;
	margin-top: 55px;
}
.mpdb {
	padding-bottom: 55px !important;
	margin-bottom: 0 !important;
}
@media(max-width:550px) {
	.mnote {
		margin-top: 45px;
	}
	.mpdb {
		padding-bottom: 27px !important;
	}
}
.formsel p:last-child {
	margin-bottom: 0;
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #595758;
}
.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: #1f6950;
	padding: 5px;
	margin-right: 5px;
	font-size: 11px;
	font-weight: 500;
}
.mailform .row span.mailsp {
	color: #1f6950;
	background: #fff;
	border: 1px solid #1f6950;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #595758;
	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;
	width: 270px;
	padding: 21px;
	text-align: center;
	margin: 0 auto;
	white-space: nowrap;
	border: 1px solid #1f6950;
	color: #fff;
	background: #1f6950;
	border-radius: 50px;
	font-weight: 500;
	transition: .4s;
	position: relative;
	overflow: hidden;
}
.mailform button:hover {
	color: #1f6950;
	background: #fff;
}
.mailform button::before {
	font-family: "Font Awesome 6 Free";
	content: "\f0e0";
	font-weight: bold;
	margin-right: 10px;
}
/*チェックボックス*/
.mailform input[type=checkbox] {
	display: none;
}
.mailform input[type=checkbox] + label {
	display: inline-block;
	padding-left: 20px;
	position: relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
	background: #fff;
	border: 1px solid #b5b5b5;
	content: '';
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0, -50%);
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
	border-right: 3px solid #1f6950;
	border-bottom: 3px solid #1f6950;
	content: '';
	display: block;
	height: 13px;
	width: 7px;
	opacity: 0;
	position: absolute;
	top: 25%;
	left: 4px;
	transform: rotate(45deg);
	transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
	opacity: 1;
}
/**/
.mails {
	padding-bottom: 60px;
}
@media (max-width: 550px) {
	.mails {
		padding-bottom: 30px;
	}
	.mailform button {
		width: 200px;
		padding: 10px;
	}
	.formsel label {
		font-size: 0.95rem;
	}
	.mailform input[type=checkbox] + label {
		display: block;
	}
}
@media (max-width: 800px) {
	.mailform .row:first-child {
		padding-top: 5px;
	}
	.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 {
	margin: 0 auto;
	border-bottom: 1px solid #1f6950;
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	transition: ease-in-out 100ms;
	font-size: clamp(0.95rem, 0.6375rem + 1vw, 1.2rem);
	padding-bottom: 7px;
}
.privacy_header i {
	color: #1f6950 !important;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 95%;
}
.privacy_text span {
	font-size: 110%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}
@media(max-width:750px) {
	.privacy_text {
		font-size: 0.9rem;
		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: 47%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 90%;
}
.privacy_gold {
	color: #1f6950;
}