/*----------------------------------------------------------------------------共通CSS---------------------------------------------------------------------------------------------------------------------------------------------*/
.content_div {
	max-width: 1036px;
	margin: 0 auto;
}
.content_div2 {
	max-width: 1100px;
	margin: 0 auto;
}
.co_padding {
	padding-left: 15px;
	padding-right: 15px;
}

html,body {
	font-family: "M PLUS 1p", sans-serif;
	color: #000;
}
div {
	box-sizing: border-box;
}
h1, h2, h3, h4, h5 {
	line-height: 1.6;
	font-weight: 600;
}
h1 {
	margin: 0;
	font-size: 30px;
}
h2 {
	margin: 0;
	font-size: 25px;
}
h3 {
	margin: 0;
	font-size: 22px;
}
h4 {
	margin: 0;
	font-size: 20px;
}
h5 {
	margin: 0;
	font-size: 18px;
}
p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	padding: 0;
	margin: 0;
}
a {
	color: #000;
}
img {
	max-width: 100%;
	height: auto;
}
hr {
	height: 0;
	margin: 0;
	padding: 0;
}
/*WEBフォント*/
.Noto-Sans-JP {font-family: 'Noto Sans JP', sans-serif;}
.Noto-Serif-JP {font-family: 'Noto Serif JP', serif;}

/*色変更*/

/*flex*/
.wflexbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flexbox_center {
	justify-content: center!important;
	align-items: center;
}
/*レスポンシブtable*/
.re_table, .re_table tbody,	.re_table thead, .re_table tr, .re_table th, .re_table td {
	width: 100%;
	table-layout: fixed;
	box-sizing: border-box;
	display: block;
}
.re_table {
	table-layout: fixed!important;
	border-collapse: collapse;
}
/*div全体リンク*/
.divall_a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}
/*absoluteの位置*/
.absolute_center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.absolute_tate {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.absolute_yoko {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
/*青色下線文字リンク*/
.co_mojilink {
	color: #0676FF;
	text-decoration: underline;
}
/*PC,SP切り替え*/
.sphide {display: none;}

/*PCだけ改行*/
.br-pc {display: none;}

/*色を被せる overlay*/
.overlay {
	position: relative;
	z-index: 1;
}
.overlay::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}


/*共通cssレスポンシブ*/
/*--------タブレット--------*/
@media screen and (min-width: 768px) {
	.br-sp {
		display: none;
	}
	.br-pc {display: inline;}
	.flexbox {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.re_table tr {
		display: table-cell;
		width: auto;
	}
	.re_table, .re_table tr {
		display: table;
		width: 100%;
		box-sizing: border-box;
	}
	.re_table th {
		display: table-cell;
		width: auto;
	}
	.re_table td {
		display: table-cell;
		width: auto;
	}
	.pchide {display: none;}
	.sphide {display: block;}
}
/*--------PC--------*/
@media screen and (min-width: 1036px) {
}










/*----------------------------------------------------------------------------レスポンシブCSS-------------------------------------------------------------------------------------------------------------------------------------*/
/*--------スマホ--------*/
/*--------ヘッダー--------*/
.header_wrap {
	position: relative;
	background: #fff;
	width: 100%;
	z-index: 100;
	padding: 20px 15px;
}
.header_logo_wrap {
	width: 100px;
}
.header_logo {
	font-size: 0;
}
.header_right {
	position: relative;
	width: calc(100% - 100px);
}
.nav-ham span {
	display: block;
	width: 50%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	transition: transform 0.5s, opacity 0.5s, width 0.3s;
	left: 10px;
}
.nav-ham span:nth-child(1) {
	top: 12px;
}
.nav-ham span:nth-child(2) {
	top: 0;
	bottom: 0;
	margin: auto;
}
.nav-ham span:nth-child(3) {
	bottom: 12px;
}
.sp-nav-layout {
	position: fixed;
	background: rgba(230, 230, 230, 0.95);
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	color: #ffffff;
	display: flex;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transform: translateX(100%);
	transition: 0.5s ease-in-out;
	z-index: 50;
}
.sp-nav-layout ul {
	text-align: center;
	list-style: none;
	padding: 0;
	margin: 90px 0 0;
}
.sp-nav-layout ul li {
	position: relative;
	margin-bottom: 24px;
	transform: translateX(-200px);
	transition: transform 1.3s ease;
}
.sp-nav-layout ul li:nth-child(2) {
	transition-delay: 0.15s;
}
.sp-nav-layout ul li:nth-child(3) {
	transition-delay: 0.3s;
}
.sp-nav-layout ul li:nth-child(4) {
	transition-delay: 0.45s;
}
.sp-nav-layout ul li a {
	font-size: 14px;
	color: #193451;
	font-weight: 600;
}
/*sp nav*/
.nav-ham {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: 38px;
	height: 38px;
	cursor: pointer;
	z-index: 100;
	background: #193451;
	border-radius: 99px;
}
.open .nav-ham {
	/*position: fixed;*/
}
.open .nav-ham span {
	background-color: #fff;
}
.open .nav-ham span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}
.open .nav-ham span:nth-child(2) {
	top: 0;
	bottom: 0;
	margin: auto;
	width: 0px;
	opacity: 0;
}
.open .nav-ham span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}
.open .sp-nav-layout {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}
.open .sp-nav-layout ul li {
	transform: translateX(0);
}
.pcmenu_nav {
	display: none;
}
.fixed_btn_wrap {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 99;
	background: #fff;
}
.fixed_btn {
	width: 50%;
	text-align: center;
}
.fixed_btn a {
	display: inline-block;
	width: 100%;
	padding: 8px 2px;
	font-size: 14px;
	font-weight: 500;
}
.fixed_btn a img {
	vertical-align: middle;
	margin: 0 5px 5px 0;
}
.fixed_btn1 a {
	background: #193451;
	color: #fff;
	padding-top: 11px;
	padding-bottom: 11px;
}
.fixed_btn2 a {
	background: #FFFF00;
	color: #193451;
}


/*--------トップページ--------*/
.fv_content {
	color: #fff;
	position: relative;
	z-index: 5;
	padding: 60px 20px 20px;
}
.fv_tagline {
	text-shadow: 0px 0px 8px #00000029;
	font-size: 22px;
	margin-bottom: 28px;
}
.fv_slider .swiper-wrapper {
	transition-timing-function: linear;
}
.fv_txt1 {
	display: inline-block;
	border: 1px solid #fff;
	border-width: 1px 0;
	padding: 12px 0;
	text-shadow: 0px 0px 7px #00000040;
}
.fv_slider .swiper-slide {
	font-size: 0;
	width: 140px;
	text-align: center;
}
.fv_slider .swiper-slide img {
	border-radius: 12px;
	width: 92%;
}
.fv_slider_wrap {
	overflow: hidden;
	transform: translateY(30px);
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
}
.news_wrap {
	padding: 100px 0 80px;
}
.lv2 {
	text-align: center;
	color: #193451;
	letter-spacing: .04em;
	font-size: 26px;
	margin-bottom: 40px;
}
.news_scroll {
	/*height: 500px;*/
	/*overflow-y: scroll;*/
	padding: 8px;
}
.news_ac {
	box-shadow: 0px 0px 8px #00000029;
	margin: 13px 0;
	border-radius: 6px;
	padding: 30px 20px;
}
.news_ac_dt {
	position: relative;
	cursor: pointer;
}
.news_ac_toggle {
	display: inline-block;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	right: 0;
}
.news_ac_toggle::before, .news_ac_toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transition: .5s;
	width: 100%;
	height: 2px;
	background: #000;
}
.news_ac_toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	-ms-transform: translate(-50%, -50%) rotate(90deg);
}
.news_ac_clicked .news_ac_toggle::after {
	transform: translate(-50%, -50%) rotate(0deg);
	-webkit-transform: translate(-50%, -50%) rotate(0deg);
	-ms-transform: translate(-50%, -50%) rotate(0deg);
}
.news_card_date {
	margin-bottom: 6px;
}
.news_card_title {
	font-weight: 400;
	font-size: 16px;
}
.news_ac_dd {
	padding: 30px 0 0;
	display: none;
}
.news_ac_catch {
	margin-bottom: 20px;
}
.news_ac_catch img {
	width: 400px;
}
.news_ac_content {
	color: #626262;
}
.rinen_body {
	position: relative;
	text-align: center;
	padding: 60px 0;
}
.rinen_body::before, .rinen_body::after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 30px;
	left: 0;
}
.rinen_body::before {
	top: 0;
	background: linear-gradient(180deg, #fff 0%, transparent 100%);
}
.rinen_body::after {
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, #F7F7F7 80%, #F7F7F7 100%);
}
.rinen_figure {
	font-size: 0;
	position: relative;
	z-index: 5;
}
.rinen_figure img {
	width: 703px;
}
.bg_gray {
	background: #F7F7F7;
}
.about_wrap {
	padding: 60px 0 80px;
}
.about_txt1 {
	text-align: center;
	color: #193451;
	margin-bottom: 60px;
	line-height: 1.8;
}
.block1_wrap {
	margin: 0 0 60px;
}
.block1_wrap:last-child {
	margin-bottom: 0;
}
.block1 {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	padding: 110px 20px 12px;
	margin-bottom: 16px;
}
.block1_bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	z-index: 1;
}
.block1_content {
	position: relative;
	z-index: 5;
	color: #fff;
}
.block1_txt1 {
	font-weight: 600;
	text-shadow: 0px 0px 4px #00000040;
}
.block1_txt2 {
	font-weight: 600;
	text-shadow: 0px 0px 4px #00000040;
	font-size: 20px;
}
.block1_desc {
	color: #626262;
}
.pata_wrap {
	padding: 80px 0;
}
.pata_box {
	box-shadow: 0px 0px 8px #00000029;
	border-radius: 16px;
	padding: 22px;
	margin: 0 0 16px;
}
.pata_h {
	color: #193451;
	margin-bottom: 8px;
	font-size: 22px;
}
.pata_list1 {
	padding: 0 0 0 20px;
}
.pata_list1 li {
	font-size: 15px;
	margin: 0 0 .2em;
}
.pata_list1 > li > ul {
	padding: 0 0 0 20px;
	list-style-type: disc;
}
.pata_list1 > li > ul > li {
	margin: .2em 0 0;
}
.pata_txt1 {
	text-align: right;
	font-size: 15px;
	line-height: 1.4;
	margin: 24px 0 0;
}
.emergency_wrap {
	padding: 80px 0;
}
.emergency_left {
	margin-bottom: 40px;
}
.emergency_left p {
	color: #626262;
}
.emergency_img1 {
	font-size: 0;
}
.emergency_img1 img {
	border-radius: 8px;
}
.step_wrap {
	padding: 80px 0 40px;
}
.step_flexbox {
	width: 48%;
	text-align: center;
	margin: 0 0 40px;
}
.stepbox_num {
	font-weight: 900;
	margin-bottom: 16px;
}
.stepbox_icon {
	font-size: 0;
	margin-bottom: 18px;
}
.stepbox_h {
	font-size: 18px;
	margin-bottom: 4px;
}
.stepbox_txt {
	text-align: left;
	color: #626262;
	font-size: 15px;
}
.faq_wrap {
	padding: 80px 0;
}
.faq {
	border-bottom: 1px solid #E3E3E3;
}
.faq dt {
	position: relative;
	cursor: pointer;
	border-top: 1px solid #E3E3E3;
	padding: 17px 30px 17px 0;
}
.faq dt:first-child {
	border-top: none;
}
.faq dd {
	display: none;
	padding: 0 0 16px 10px;
	margin: 0;
	color: #626262;
}
.faq_toggle {
	display: inline-block;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 21px;
	right: 0;
}
.faq_toggle::before, .faq_toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transition: .5s;
	width: 100%;
	height: 2px;
	background: #000;
}
.faq_toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	-ms-transform: translate(-50%, -50%) rotate(90deg);
}
.faq_clicked .faq_toggle::after {
	transform: translate(-50%, -50%) rotate(0deg);
	-webkit-transform: translate(-50%, -50%) rotate(0deg);
	-ms-transform: translate(-50%, -50%) rotate(0deg);
}
.facilitylist_wrap {
	padding: 80px 0 20px;
}
.facilitycard {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0px 0px 8px #00000029;
	margin-bottom: 16px;
}
.facilitylist_flexbox {
	margin-bottom: 60px;
}
.facilitycard_bgwrap {
	position: relative;
	overflow: hidden;
	padding-top: 62.5%;
}
.facilitycard_bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.facilitycard_body {
	padding: 16px 24px;
}
.facilitycard_title {
	font-size: 18px;
	margin-bottom: 8px;
}
.facilitycard_txt1 {
	margin-bottom: 8px;
	font-size: 15px;
}
.facilitycard_tel {
	margin-bottom: 11px;
	font-size: 14px;
}
.facilitycard_tel a {
	color: #626262;
}
.facilitycard_tel a img {
	width: 20px;
	vertical-align: middle;
	margin: 0 0 5px;
}
.btn1 {
	text-align: center;
}
.btn1 a {
	display: inline-block;
	width: 100%;
	background: #193451;
	border-radius: 999px;
	color: #fff;
	font-weight: 500;
	padding: 12px 10px;
	position: relative;
}
.btn1 a::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 12px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(https://www.trinitypartners.co.jp/smile-base/wp/wp-content/themes/hello-elementor/img/arrow.svg);
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.ig_btn {
	text-align: center;
}
.ig_btn a {
	display: inline-block;
	width: 100%;
	border-radius: 999px;
	box-shadow: 0px 0px 8px #00000029;
	font-weight: 500;
	padding: 12px 5px 9px;
}
.ig_btn a img {
	width: 28px;
	vertical-align: middle;
	margin: 0 4px 4px 0;
}
.cta1_wrap {
	padding: 80px 0;
	text-align: center;
}
.cta1_box {
	background: #FFFFFFCC;
	backdrop-filter: blur(20px);
	border-radius: 16px;
	padding: 20px 20px;
}
.cta1_flexbox {
	margin: 30px 0;
}
.cta1_txt1 {
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 8px;
}
.cta1_btn {
	text-align: center;
}
.cta1_btn a {
	display: inline-block;
	width: 100%;
	border-radius: 999px;
	box-shadow: 0px 0px 6px #00000024;
	font-weight: 700;
	font-size: 18px;
	padding: 20px 10px 16px;
	max-width: 310px;
}
.cta1_btn a img {
	vertical-align: middle;
	margin: 0 3px 5px 0;
}
.cta1_btn.-color1 a {
	background: #193451;
	color: #fff;
}
.cta1_btn.-color2 a {
	background: #FFFF00;
	color: #193451;
}
.cta1_btn.-color3 a {
	background: #FC6B04;
	color: #fff;
}


/*--------フッター--------*/
.footer_menu_bg {
	background: #193451;
}
.footer_menu_wrap {
	padding: 22px 0;
	color: #fff;
}
.footer_menu_flexbox {
	margin: 30px 0;
}
.footer_menu_h {
	margin-bottom: 8px;
}
.footer_menu_h a {
	color: #fff;
	font-weight: 700;
	font-size: 18px;
}
.footermenu {
	padding: 0;
	list-style: none;
}
.footermenu li {
	position: relative;
	padding: 0 0 0 10px;
	font-size: 16px;
	margin: 5px 0 0;
}
.footermenu li::before {
	content: "-";
	position: absolute;
	left: 0;
	top: 0;
}
.footermenu li a {
	color: #fff;
}
.footer_wrap {
	padding: 20px 0 70px;
}
.footer_logo img {
	width: 201px;
}
.footer_flexbox {
	margin: 6px 0;
}
.footer_lv3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
}
.footer_txt1 {
	font-size: 14px;
	margin-bottom: 12px;
}
.copyright {
	font-size: 13px;
}


/*--------豊山--------*/
.pagetitle1_wrap {
	padding: 90px 15px;
	text-align: center;
}
.pagetitle1_box {
	background: #fff;
	margin: 0 auto;
	max-width: 378px;
	border-radius: 20px;
	padding: 24px 12px
}
.pagetitle1_logo {
	font-size: 0;
	margin-bottom: 20px;
}
.pagetitle1_logo img {
	width: 215px;
}
.pagetitle1_txt1 {
	font-weight: 700;
}
.gal1_flex {
	padding: 20px 10px 30px;
}
.gal1_img {
	font-size: 0;
	width: calc(50% - 5px);
	margin: 5px 0;
}
.gal1_img img {
	border-radius: 8px;
}
.snsbtnarea1_flexbox {
	margin: 0 0 30px;
}
.snsbtn {
	text-align: center;
}
.snsbtn a {
	display: inline-block;
	text-align: center;
	width: 100%;
	background: #F7F7F7;
	box-shadow: 0px 0px 8px #00000029;
	border-radius: 999px;
	font-size: 20px;
	font-weight: 500;
	padding: 17px 10px 12px;
}
.snsbtn a img {
	vertical-align: middle;
	margin: 0 10px 3px 0;
}
.snsbtn_ig a img {
	width: 30px;
}
.snsbtn_tiktok a img {
	width: 27px;
}
.service_wrap {
	padding: 40px 0 0;
}
.pata_list2 {
	padding: 0 0 0 20px;
}
.pata_list2 li {
	margin: 3px 0 0;
	font-size: 15px;
}
.pata_txt2 {
	font-size: 15px;
	margin: 6px 0 0;
}
.system_wrap {
	padding: 80px 0 64px;
}
.system_flexbox1 {
	margin-bottom: 30px;
}
.system_img1 {
	text-align: right;
}
.system_img1 img {
	width: 80%;
}
.system_img2 img {
	width: 50%;
}
.system_card {
	box-shadow: 0px 0px 8px #00000029;
	background: #fff;
	border-radius: 16px;
	margin: 0 0 16px;
	padding: 24px 32px;
}
.system_card_h {
	font-size: 24px;
	line-height: 1.4;
	margin-bottom: 8px;
}
.system_card_h > span {
	font-size: 18px;
}
.system_card_txt1 {
	margin-bottom: 12px;
}
.system_card_txt2 img {
	vertical-align: middle;
	margin: 0 5px 3px 0;
}
.system_card_txt2 {
	color: #626262;
}
.system_card_txt2 a {
	color: #626262;
}
.system_card_txt2 a.co_mojilink {
	color: #006AFF;
}
.price_wrap {
	padding: 80px 0;
}
.price_table {
	background: #F7F7F7;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 12px 15px;
	margin: 0 0 16px;
}
.price_table_th {
	width: 48%;
	text-align: center;
	color: #193451;
	font-weight: 500;
	letter-spacing: .44em;
}
.price_table_td {
	width: 49%;
	font-weight: 500;
	color: #193451;
	text-align: left;
	font-size: 22px;
}
.price_table_td > span {
	font-size: .666em;
}
.price_table2 {
	background: #F7F7F7;
	padding: 16px 15px;
	text-align: center;
}
.price_table2_th {
	color: #193451;
	font-weight: 500;
	font-size: 20px;
}
.price_table2_td {
	color: #193451;
}
.price_table_wrap {
	max-width: 642px;
	margin: 0 auto 40px;
}
.pdf_dl_wrap {
	text-align: center;
}
.pdf_dl_txt1 {
	color: #193451;
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 5px;
}
.pdf_dl_btn a {
	display: inline-block;
	width: 100%;
	max-width: 337px;
	background: #193451;
	border-radius: 999px;
	color: #fff;
	font-weight: 700;
	font-size: 24px;
	padding: 10px 5px 8px;
}
.pdf_dl_btn a img {
	vertical-align: middle;
	margin: 0 10px 5px 0;
}
.room_wrap {
	padding: 40px 0 80px;
}
.room_flex {
	padding: 0 15px;
	text-align: center;
}
.room_flexbox {
	font-size: 0;
	margin: 0 0 40px;
}
.office_wrap {
	padding: 80px 0;
}
.access_bg {
	padding: 80px 0;
}
.access_map {
	font-size: 0;
	margin-bottom: 16px;
}
.access_map iframe {
	width: 100%;
}
.access_txt1 {
	margin-bottom: 5px;
}
.access_txt3 {
	font-size: 14px;
	margin-bottom: 5px;
	color: #626262;
}
.access_txt2 {
	font-size: 14px;
}
.access_txt2 a {
	color: #626262;
}
.access_txt2 a img {
	vertical-align: middle;
	margin: 0 3px 3px 0;
}
.cta2_wrap {
	padding: 28px 0;
	text-align: center;
}
.cta2_box {
	background: #FFFFFFCC;
	backdrop-filter: blur(20px);
	border-radius: 16px;
	padding: 48px 20px;
	color: #193451;
}
.cta2_txt1 {
	font-weight: 500;
	line-height: 1.4;
}
.cta2_flexbox {
	padding: 34px 0;
	border-bottom: 1px solid #193451;
}
.cta2_flexbox:last-child {
	border: none;
}
.cta2_flexbox_icon {
	font-size: 0;
	margin-bottom: 6px;
}
.cta2_flexbox_txt1 {
	font-weight: 500;
	font-size: 15px;
}
.cta2_flexbox_tel1 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
}
.cta2_flexbox_txt2 {
	font-size: 15px;
	line-height: 1.4;
}
.cta2_flexbox_btn1 {
	margin-bottom: 6px;
}
.cta2_flexbox_btn1 a {
	display: inline-block;
	width: 100%;
	max-width: 165px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	border-radius: 999px;
	padding: 7px 3px;
	box-shadow: 0px 0px 6px #00000024;
}
.cta2_flexbox_btn1.-color1 a {
	background: #FFFF00;
	color: #193451;
}
.cta2_flexbox_btn1.-color2 a {
	background: #193451;
	color: #fff;
}
.cta2_btn1_txt1 {
	font-weight: 500;
	margin-bottom: 8px;
}
.cta2_btn1 a {
	display: inline-block;
	width: 100%;
	border-radius: 999px;
	box-shadow: 0px 0px 6px #00000024;
	font-weight: 700;
	font-size: 18px;
	padding: 20px 10px 16px;
	max-width: 310px;
	background: #FC6B04;
	color: #fff;
}
.cta2_btn1 a img {
	vertical-align: middle;
	margin: 0 3px 5px 0;
}


/*--------お問い合わせ--------*/
.pagetitle3_wrap {
	padding: 60px 15px 45px;
	color: #fff;
	margin: 0 auto;
	max-width: 1200px;
}
.pagetitle3_title {
	text-shadow: 0px 0px 8px #00000029;
	margin-bottom: 16px;
}
.pagetitle3_box1 {
	border: 1px solid #fff;
	border-width: 1px 0;
	padding: 12px 0;
	display: inline-block;
}
.pagetitle3_box1_txt1 {
	text-shadow: 0px 0px 7px #00000040;
}
.contact_box1_wrap {
	padding: 60px 0 40px;
	text-align: center;
}
.contact_box1 {
	margin: 0 auto;
	max-width: 704px;
	box-shadow: 0px 0px 8px #00000029;
	border-radius: 16px;
	padding: 30px 15px;
}
.contact_box1_h {
	margin-bottom: 12px;
}
.contact_box1_txt1 {
	background: linear-gradient(34.47deg, #3087FF 9.45%, #5AC4FF 95.99%);
	color: #fff;
	font-weight: 600;
	line-height: 1.2;
	padding: 8px;
	margin-bottom: 8px;
}
.contact_box1_txt2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}
.contact_box1_txt2 a {
	background: linear-gradient(34.47deg, #3087FF 9.45%, #5AC4FF 95.99%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.contact_box1_flexbox {
	margin: 12px 0;
}
.contact_box1_txt3 {
	color: #626262;
}
.contact_form_wrap {
	padding: 0 0 60px;
}
.contact_form_box {
	box-shadow: 0px 0px 8px #00000029;
	border-radius: 16px;
	overflow: hidden;
}
.contact_form_box_head {
	background: linear-gradient(34.47deg, #3087FF 9.45%, #5AC4FF 95.99%);
	color: #fff;
	text-align: center;
	padding: 20px 10px 14px;
}
.contact_form_box_head_txt1 {
	font-size: 15px;
}
.contact_form_box_body {
	padding: 40px 16px;
}
.formtable {
	width: 100%;
}
.formtable th, .formtable td {
	display: inline-block;
	width: 100%;
	position: relative;
	border: none;
	background: transparent!important;
	text-align: left;
	padding: 0;
}
.formtable th {
	margin-bottom: 12px;
}
.formtable th.hissu::after {
	content: "必須";
	display: inline-block;
	background: #FFFF00;
	padding: 5px 8px 5px;
	line-height: 1;
	margin: 0 0 0 6px;
	color: #193451;
}
.formtable th.nini::after {
	content: "任意";
	display: inline-block;
	background: #E3E3E3;
	padding: 5px 8px 5px;
	line-height: 1;
	margin: 0 0 0 6px;
	color: #193451;
}
.formtable td {
	margin-bottom: 30px;
}
.formtable td input[type="text"],
.formtable td input[type="tel"],
.formtable td input[type="email"] {
	border: none;
	box-shadow: 0px 0px 8px #00000029;
	height: 58px;
}
.formtable td textarea {
	border: none;
	box-shadow: 0px 0px 8px #00000029;
}
.formtable td ::placeholder {
	color: #626262;
}
.submitbtn {
	display: block;
	width: 100%;
	max-width: 351px;
	border-radius: 999px;
	border: 1px solid #FC6B04;
	background: #FC6B04;
	color: #fff;
	font-weight: 700;
	font-size: 22px;
	padding: 14px 5px;
	margin: 0 auto;
}
.submitbtn:hover {
	color: #FC6B04;
	background: #fff;
}


/*--------タブレット--------*/
@media screen and (min-width: 768px) {
	/*--------ヘッダー--------*/
	.header_wrap {
		padding: 33px 90px 33px 48px;
	}
	.header_flex {
		align-items: center;
	}
	.header_logo_wrap {
		width: 149px;
	}
	.header_right {
		width: calc(100% - 149px);
	}
	.nav-ham, .sp-nav-layout {
		display: none;
	}
	.pcmenu_nav {
		display: block;
		text-align: right;
	}
	.pcmenu {
		padding: 0;
		list-style: none;
	}
	.pcmenu li {
		display: inline-block;
		margin: 0 3em 0 0;
		font-weight: 600;
	}
	.pcmenu li a {
		color: #193451;
	}
	.fixed_btn_wrap {
		right: 0;
		left: auto;
		top: 0;
		z-index: 110;
		width: 90px;
		display: block;
		height: 180px;
	}
	.fixed_btn {
		width: 100%;
	}
	.fixed_btn a {
		height: 90px;
		font-size: 12px;
		padding: 23px 0 0;
	}
	.fixed_btn a > span {
		display: inline-block;
		width: 100%;
	}


	/*--------トップページ--------*/
	.fv_content {
		margin: 0 auto;
		max-width: 1200px;
		padding: 90px 20px 0px;
	}
	.fv_tagline {
		font-size: 32px;
		margin-bottom: 28px;
	}
	.fv_txt1 {
		font-size: 20px;
	}
	.fv_slider .swiper-slide {
		font-size: 0;
		width: 594px;
		text-align: center;
	}
	.fv_slider .swiper-slide img {
		border-radius: 12px;
		width: 92%;
	}
	.fv_slider_wrap {
		overflow: hidden;
		transform: translateY(82px);
		-webkit-transform: translateY(82px);
		-ms-transform: translateY(82px);
		margin: -40px 0 0;
	}
	.news_wrap {
		padding: 190px 0 120px;
	}
	.news_scroll {
		padding: 10px 30px;
	}
	.lv2 {
		font-size: 40px;
	}
	.news_ac {
		padding: 24px 60px 24px 20px;
	}
	.news_card_date {
		position: absolute;
		left: 0;
		top: 0;
	}
	.news_ac_dt {
		padding: 0 0 0 120px;
	}
	.news_ac_toggle {
		right: -40px;
		top: 4px;
	}
	.rinen_body {
		padding: 80px 0 49px;
	}
	.rinen_body::before, .rinen_body::after {
		height: 50px;
	}
	.about_wrap {
		padding: 120px 0;
	}
	.block1_wrap {
		margin-bottom: 80px;
	}
	.block1 {
		padding: 233px 40px 32px;
		border-radius: 16px;
	}
	.block1_txt1 {
		font-size: 22px;
	}
	.block1_txt2 {
		font-size: 32px;
	}
	.block1_desc {
		font-size: 18px;
	}
	.pata_wrap {
		padding: 120px 0;
	}
	.pata_flexbox1 {
		width: 58%;
	}
	.pata_flexbox2 {
		width: 38.3%;
	}
	.pata_box {
		padding: 20px 24px;
	}
	.pata_flex2box {
		width: 48%;
	}
	.emergency_wrap {
		padding: 120px 0;
	}
	.emergency_flex {
		align-items: center;
	}
	.emergency_left {
		width: 58%;
		margin: 0;
	}
	.emergency_right {
		width: 40%;
	}
	.step_wrap {
		padding: 120px 0;
	}
	.step_flexbox {
		margin: 0;
		width: 19%;
	}
	.stepbox_num {
		font-size: 20px;
		margin-bottom: 24px;
	}
	.stepbox_icon {
		margin-bottom: 22px;
	}
	.faq_wrap {
		padding: 120px 0;
	}
	.facilitylist_wrap {
		padding: 120px 0;
	}
	.facilitylist_flex {
		margin: 0 auto;
		max-width: 680px;
	}
	.facilitylist_flexbox {
		width: 49%;
		margin: 0;
		max-width: 320px;
	}
	.cta1_wrap {
		padding: 95px 0;
	}
	.cta1_box {
		padding: 48px 40px;
	}
	.cta1_flexbox {
		margin: 0;
		width: 33%;
	}


	/*--------フッター--------*/
	.footer_menu_wrap {
		padding: 42px 0;
	}
	.footer_menu_flexbox {
		margin: 0;
	}
	.footer_wrap {
		padding: 18px 0;
	}
	.footer_flex {
		justify-content: center;
		align-items: center;
	}
	.footer_flexbox {
		width: 50%;
		margin: 0;
		padding: 0;
		max-width: 280px;
	}


	/*--------豊山--------*/
	.pagetitle1_wrap {
		padding: 192px 20px 152px;
	}
	.gal1_flex {
		padding: 32px 0 48px;
	}
	.gal1_img {
		width: 23.4%;
	}
	.gal1_img img {
		border-radius: 14px;
	}
	.gal1_img:nth-child(1) img {
		border-radius: 0 14px 14px 0;
	}
	.gal1_img:nth-child(4) img {
		border-radius: 14px 0 0 14px;
	}
	.snsbtnarea1_flex_2 {
		justify-content: center;
	}
	.snsbtnarea1_flexbox {
		margin: 0;
		width: 48%;
	}
	.service_wrap {
		padding: 120px 0 0;
	}
	.pata_flexbox3 {
		width: 33.33%;
	}
	.pata_flexbox4 {
		width: 62.69%;
	}
	.pata_flexbox4 .pata_box {
		padding-bottom: 72px;
	}
	.system_wrap {
		padding: 120px 0 104px;
	}
	.system_flexbox1 {
		width: 21.86%;
		padding: 0;
		margin: 0;
	}
	.system_img2 img {
		width: auto;
	}
	.system_flexbox2 {
		width: 73.16%;
		padding: 0;
		margin: 0;
	}
	.system_img1 {
		text-align: left;
		margin: 0 0 30px -7%;
	}
	.system_img1 img {
		width: 388px;
	}
	.system_card {
		width: 49%;
		margin: 0 0 16px;
	}
	.price_table_th {
		font-size: 24px;
	}
	.price_table_td {
		font-size: 36px;
	}
	.price_wrap {
		padding: 120px 0;
	}
	.room_wrap {
		padding: 60px 20px 120px;
	}
	.room_flex {
		margin: 0 auto;
		padding: 0;
		max-width: 1206px;
	}
	.room_flexbox {
		width: 48.34%;
		margin: 0;
	}
	.room_flexbox2 {
		margin: 80px 0 0;
	}
	.office_wrap {
		padding: 120px 0;
	}
	.office_flex {
		margin: 0 auto;
		max-width: 752px;
	}
	.office_flex_long {
		max-width: 1006px;
	}
	.office_flexbox {
		width: 47.87%;
	}
	.office_flexbox .system_card {
		width: 100%;
	}
	.access_bg {
		padding: 120px 0;
	}
	.cta2_txt1 {
		margin-bottom: 24px;
	}
	.cta2_flexbox {
		margin: 0;
		padding: 0;
		border-right: 1px solid;
		border-bottom: none;
		width: 33%;
		max-width: 270px;
	}
	.cta2_flex {
		justify-content: center;
		margin: 0 0 36px;
	}


	/*--------お問い合わせ--------*/
	.pagetitle3_wrap {
		padding: 90px 20px 60px;
	}
	.pagetitle3_title {
		font-size: 32px;
		margin-bottom: 28px;
	}
	.pagetitle3_box1_txt1 {
		font-size: 20px;
	}
	.contact_box1 {
		padding: 24px 40px;
	}
	.contact_box1_flexbox {
		width: 48%;
		max-width: 280px;
	}
	.contact_form_box_h {
		font-size: 40px;
	}
	.contact_form_box_body {
		padding: 60px;
	}
	.formtable th, .formtable td {
		font-size: 16px;
	}
	.formtable td {
		margin-bottom: 48px;
	}

}





/*--------PC--------*/
@media screen and (min-width: 1036px) {
	/*--------トップページ--------*/
}






/*後から上書きしたい共通CSS*/
.bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}