@charset "utf-8";

/* common
-------------------------------------------------------*/
* {
	box-sizing: border-box;
}

@media screen and (max-width:768px) {
#wrapper {
	overflow: hidden;
}
}
.sp {
	display: none!important;
}
.area {
	padding: 100px 40px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}
.inner.inner_s {
	max-width: 960px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.pc {
		display: none!important;
	}
	.sp {
		display: block!important;
	}
	.area {
		padding: 40px 15px;
	}
	.inner {
		max-width: 100%;
	}
	.txt {
		line-height: 2;
		text-align: left!important;
	}
}



/* header nav
-------------------------------------------------------*/
#header {
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease, height 0.3s ease;
}
#header .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	padding: 30px 40px;
	transition:.3s;
	max-width: 100%;
}
#header.scrolled {
    background-color: rgba(255,255,255,0.8);
	/*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
	backdrop-filter: blur(10px);
}
#header.scrolled .inner  {
    padding: 15px 40px;
}
#nav_pc>ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#nav_pc>ul li {
	margin-left: 25px;
	position: relative;
}
#nav_pc>ul li a:hover {
	opacity: 1;
	color: var(--color-blue);
}
.header_logo {
	width: 177px;
	height: 38px;
}
.btn_contact01 a {
	background: #2C475E;
	color: #fff;
	border-radius: 100px;
	text-align: center;
	padding: 12px 50px;
}
.btn_contact01 a:hover {
	opacity: .7 !important;
	color: #fff !important;
}

/* ドロップダウン全体のラップ */
.nav_hover_sub_wrap {
	position: absolute;
	top: 100%;
	left: 0;
	padding-top: 15px; /* ← ここがポイント！隙間を吸収 */
	padding-left: 15px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	pointer-events: none;
}
/* ホバー時に表示・マウスイベント有効 */
.nav_hover01:hover .nav_hover_sub_wrap,
.nav_hover02:hover .nav_hover_sub_wrap {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}
/* 中のul */
.nav_hover_sub_wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
	background: #fff;
	box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.4);
}
.nav_hover_sub_wrap ul li {
	margin-left: 0 !important;
}
/* メニュー項目 */
.nav_hover_sub_wrap ul li a {
	display: block;
	padding: 10px 25px;
	color: #333;
	text-decoration: none;
	white-space: nowrap;
}
.nav_hover_sub_wrap ul li a:hover {
	background: var(--color-blue);
	color: #fff !important;
}  
#nav_pc li.on a {
	color: var(--color-blue);
}
@media screen and (min-width:768px) and ( max-width:1130px) {
	
}
@media screen and (max-width:1140px) {
	#nav_pc > ul {
		font-size: 1.4rem;
	}
	.btn_contact01 a {
		padding: 12px 30px;
	}
}



@media screen and (max-width:1020px) {
	#nav_pc > ul {
		font-size: 1.3rem;
	}
	#nav_pc > ul li {
		margin-left: 10px;
	}
	.header_logo {
		width: 140px;
		height: auto;
	}
	.btn_contact01 a {
		padding: 12px 15px;
	}
}

@media screen and (max-width:820px) {
	#nav_pc > ul {
		font-size: 1.2rem;
	}
}
@media screen and (max-width:768px) {
	#header {
		position: fixed;
		top: inherit;
	}
	#header .inner {
		padding: 15px;
		justify-content: space-between;
	}
	#header.scrolled .inner  {
		padding: 15px;
	}
	#btn_nav {
		position: fixed;
		top: 14px;
		right: 15px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 20px;
	}
	#btn_nav::after {
		position: absolute;
		display: block;
		content: "menu";
		right: 50%;
		bottom: -20px;
		transform: translate(50%,0);
		font-size: 1.2rem;
	}
	#btn_nav.active::after {
		content: "close";
	}
	#btn_nav span {
		display: inline-block;
		background: #333;
		width: 30px;
		height: 2px;
		transition: .5s;
		position: relative;
	}
	#btn_nav.active span {
		transform: translateY(9px) rotate(45deg);
	}
	#btn_nav.active span:nth-child(2) {
		transform: scaleX(0);
	}
	#btn_nav.active span:last-child {
		transform: translateY(-8px) rotate(-45deg);
	}
	#nav_sp .nav_cont,
	#nav_sp .nav_cont::after {
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: hidden;
	}
	#nav_sp .nav_cont {
		overflow: auto;
		/*background: rgba(255,255,255,0.9);*/
		background: #fff;
		right: -100%;
		z-index: 900;
		transition: .5s;
		padding: 70px 20px 50px 20px;
		box-sizing: border-box;
		font-size: 2rem;
		height: 100vh;
	}
	#nav_sp .nav_cont.active {
		right: 0;
		/*height: auto;*/
		height: 100vh;
	}
	#nav_sp .nav_cont>ul {
	}
	#nav_sp .nav_cont li {
		border-bottom: 1px solid #E0DDDC;
		padding: 20px 0 40px;
		line-height: 1;
	}
	#nav_sp .nav_cont .bd_top {
		border-top: 1px solid #E0DDDC;
	}
	#nav_sp .nav_cont .size_s {
		font-size: 1.6rem;
		border-bottom: none;
		padding: 30px 0 0;
	}
	#nav_sp .nav_cont a {
		color: var(--color-blue);
	}
	#nav_sp .nav_cont>ul {
		padding: 0 10px;
	}
	.header_logo {
		width: 130px;
		height: 28px;
		position: relative;
		z-index: 999;
	}
	.btn_contact01 {
		margin-right: 40px;
		position: relative;
		z-index: 999;
	}
	.btn_contact01 a {
		padding: 10px 15px;
	}
}

/* footer
-------------------------------------------------------*/
#footer {
	background: #f3f6fb;
	position: relative;
}
#footer .logo img {
	max-width: 120px;
}
#footer.area {
	padding: 70px 40px 40px;
}
.footer_top {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 30px;
}
.list_footer {
	display: flex;
	line-height: 1;
	font-size: 2rem;
}
.list_footer li {
	margin-left: 25px;
	border-top: 1px solid #4b4b4b;
	padding-top: 20px;
}
.list_footer a {
	display: block;
	margin-bottom: 20px;
}
.list_footer a:hover {
	color: #7A7A7A;
}
.list_footer a.size_s {
	font-size: 1.6rem;
}
#footer .copy span {
	font-size: 1.4rem;
}
#footer .copy small {
	font-size: 1.4rem;
	margin-top: 10px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:1100px) {
	.list_footer {
		font-size: 1.6rem;
	}
	.list_footer li {
		margin-left: 20px;
	}
	.list_footer a.size_s {
		font-size: 1.4rem;
	}
}
@media screen and (max-width:920px) {
	#footer.area {
		padding: 70px 20px 40px;
	}
	#footer .logo img {
		max-width: 100px;
	}
	.list_footer {
		font-size: 1.4rem;
	}
	.list_footer li {
		margin-left: 15px;
	}
	.list_footer a.size_s {
		font-size: 1.2rem;
	}
}
@media screen and (max-width:768px) {
	#footer .logo {
		margin-bottom: 50px;
		height: auto;
	}
	#footer .logo img {
		max-width: 100px;
	}
	#footer.area {
		padding: 40px 15px;
	}
	.footer_top {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		margin-bottom: 0;
	}
	.list_footer {
		flex-flow: column;
		width: 100%;
		font-size: 2rem;
	}
	.list_footer li {
		margin-left: 0;
		padding: 20px 0 40px;
	}
	.list_footer a {
		margin-bottom: 0;
	}
	.list_footer a.size_s {
		margin-bottom: 0;
		margin-top: 30px;
		font-size: 1.6rem;
	}
	.list_footer .last_cat a {
		margin-bottom: 30px;
	}
	#footer .copy {
		font-size: 1.6rem;
	}
}
/* common parts
-------------------------------------------------------*/
:root {
	--color-blue: #009FB9;
}
.ttl01 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 4rem;
	line-height: 1;
}
.ttl01.size_l {
	font-size: 6.4rem;
}
.ttl01 .en {
	display: block;
	color: var(--color-blue);
	font-size: 2rem;
	margin-top: 15px;
}
.ttl02 {
	text-align: center;
	color: var(--color-blue);
	font-size: 5.6rem;
}
.ttl03 {
	text-align: center;
	font-size: 4rem;
	margin-bottom: 48px;
}
.ttl04 {
	text-align: center;
	color: var(--color-blue);
	font-size: 3.2rem;
	margin-bottom: 20px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	.ttl01 {
		font-size: 3.6rem;
	}
	.ttl01.size_l {
		font-size: 5.8rem;
	}
}
@media screen and (max-width:768px) {
	.ttl01 {
		font-size: 2.8rem;
	}
	.ttl01.size_l {
		font-size: 4rem;
	}
	.ttl01 .en {
		font-size: 1.6rem;
		margin-top: 10px;
		letter-spacing: 0.04em;
	}
	.ttl02 {
		font-size: 3rem;
		text-align: left;
	}
	.ttl03 {
		text-align: left;
		font-size: 2.2rem;
		margin-bottom: 20px;
	}
	.ttl04 {
		font-size: 2.2rem;
	}
}

.btn01 a {
	display: block;
	width: 300px;
	border: 2px solid #e1dddc;
	background: #fff url(../img/common/arrow_btn_on.png)no-repeat right 15px center/32px 32px;
	color: var(--color-blue);
	padding: 20px 0;
	line-height: 1;
	text-align: center;
	margin: 0 auto;
	border-radius: 100px;
	position: relative;
	font-size: 1.8rem;
}
.btn01 a::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/common/arrow_btn.png)no-repeat right center/32px 32px;
	width: 32px;
	height: 32px;
	right: 15px;
	top: 50%;
	transform: translate(0,-50%);
	transition: .3s;
}
.btn01.btn_open a {
	background: #fff url(../img/common/arrow_btn_on02.png)no-repeat right 15px center/32px 32px;
}
.btn01.btn_open a::after {
	background: url(../img/common/arrow_btn02.png)no-repeat right center/32px 32px;
}
.btn01 a:hover {
	border: 2px solid var(--color-blue);
}
.btn01 a:hover::after {
	opacity: 0;
}
.list_btn01 li:not(:last-child) {
	margin-bottom: 30px;
}
.btn02 a {
	display: block;
	width: 360px;
	background: #2d475e;
	color: #fff;
	padding: 20px 0;
	line-height: 1;
	text-align: center;
	margin: 0 auto;
	border-radius: 100px;
	font-size: 1.8rem;
	position: relative;
	background: #2d475e url(../img/common/arrow02.png)no-repeat right 15px center/32px 32px;
}
.btn02 a:hover {
	opacity: .7 !important;
	color: #fff !important;
}
.btn_more {
	background: url(../img/common/arrow_on.png)no-repeat center/56px 56px;
	width: 56px;
	height: 56px;
	min-width: 56px;
	position: relative;
}
.btn_more::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/common/arrow.png)no-repeat center/56px 56px;
	width: 56px;
	height: 56px;
	transition: .3s;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.btn01 a {
		width: 320px;
	}
	.btn01.btn_open a {
		width: 240px;
	}
	.list_btn01 {
		margin: 40px 0;
	}
	.btn02 a {
		width: 100%;
	}
}

.txt_link_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
.txt_link_box dt {
	margin-right: 40px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.txt_link_box {
		flex-flow: column;
	}
	.txt_link_box dt {
		margin-right: 0;
		margin-bottom: 30px;
		line-height: 2;
	}
}

.breadcrumb {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	margin: 20px auto 60px;
	font-size: 1.4rem;
	max-width: 1200px;
}
.breadcrumb li {
	position: relative;
}
.breadcrumb li:not(:last-child) {
	margin-right: 20px;
}
.breadcrumb a {
	color: var(--color-blue);
	text-decoration: underline;
}
.breadcrumb li:not(:last-child)::after {
	position: absolute;
	display: block;
	content: ">";
	right: -15px;
	top: -1px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.breadcrumb {
		margin: 20px 0 40px;
		flex-wrap: wrap;
	}
}

/* index
-------------------------------------------------------*/
#index_bg video,
body.index_bg video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.index_bg_sp {
	display: none;
}
@media screen and (max-width:768px) {
	.index_bg_pc {
		display: none;
	}
	.index_bg_sp {
		display: block;
	}
	.index_bg_sp img {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		object-fit: cover;
		z-index: -1;
	}
}


#index .txt {
	text-align: center;
}

/* index_visual */
#index_visual .inner {
	height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 80px;
	max-width: 100%;
}
#index_visual .visual_ttl {
	display: block;
	font-size: 7.2rem;
	line-height: 1.2;
	background: #fff;
	border-radius: 20px;
	padding: 10px 30px;
}
#index_visual .visual_ttl .size_s {
	display: block;
	font-size: 3.2rem;
}
#index_visual .visual_ttl span {
	display: block;
}
#index_visual .visual_txt a {
	text-align: center;
	position: absolute;
	bottom:60px;
	left: 50%;
	transform: translateX(-50%);
}
#index_visual .visual_txt a::after {
	position: absolute;
	content: "";
	background: url(../img/common/arrow_down.png) no-repeat;
	background-size: 100%;
	width: 16px;
	height: 26px;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	transition: .3s;
}
#index_visual .visual_txt a:hover::after {
	bottom: -30px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#index_visual .inner {
		padding: 0 20px;
		display: flex;
		align-content: center;
		justify-content: center;
	}
	#index_visual .visual_ttl {
		font-size: 4rem;
	}
	#index_visual .visual_ttl .size_s {
		font-size: 1.8rem;
		width: 290px;
	}
	#index_visual .visual_ttl span {
		background: #fff;
		display: inline-block;
		padding: 5px 0;
		text-align: center;
		width: 290px;
	}
	#index_visual .visual_txt a {
		font-size: 1.6rem;
		bottom:60px;
		left: 50%;
		transform: translateX(-50%);
	}
}

/* index_service */
.index_service {
	background: rgba(255,255,255,0.9);
	border-radius: 80px 80px 0 0;
	backdrop-filter: blur(10px);
}
.index_service .txt {
	margin-bottom: 50px;
}
.list_service {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: space-around;
	max-width: 820px;
	margin: 0 auto 25px;
}
.list_service li {
	width: 48%;
}
.list_service li:nth-child(-n+2) {
	margin-bottom: 2%;
}
.list_service li a {
	color: var(--color-blue);
	text-align: center;
	border-radius: 24px;
	border: 2px solid #e1dddc;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff url(../img/common/arrow_btn_on.png)no-repeat right 15px center/32px 32px;
	font-size: 2.4rem;
	position: relative;
}
.list_service li a:hover {
	border: 2px solid var(--color-blue);
}
.list_service li a::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/common/arrow_btn.png)no-repeat right center/32px 32px;
	width: 32px;
	height: 32px;
	right: 15px;
	transition: opacity 0.3s ease-in-out;
    opacity: 1;
}
.list_service li a:hover::after {
	opacity: 0;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.index_service {
		border-radius: 40px 40px 0 0;
	}
	.index_service.area {
		padding: 95px 15px 65px;
	}
	.index_service .txt {
		padding: 0 15px;
		margin-bottom: 40px;
	}
	.list_service {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		margin-bottom: 20px;
	}
	.list_service li {
		width: 100%;
		margin-bottom: 15px;
	}
	.list_service li:nth-child(-n+2) {
		margin-bottom: 15px;
	}
	.list_service li a {
		height: 100px;
		font-size: 2rem;
	}
}

/* index_process */
.index_process .inner {
	position: relative;
}
.index_process .inner::before,.index_process .inner::after {
	position: absolute;
	display: block;
	content: "";
}
.index_process .inner::before {
	background: url(../img/index/index_img01.png)no-repeat left bottom/222px 225px;
	width: 222px;
	height: 225px;
	left: 15%;
	bottom: -72px;
}
.index_process .inner::after {
	background: url(../img/index/index_img02.png)no-repeat right bottom/182px 231px;
	width: 182px;
	height: 231px;
	right: 15%;
	bottom: -80px;
}
.index_process.area {
	padding: 60px 40px;
}
.index_process .txt {
	margin-bottom: 40px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	.index_process .inner::before {
		left: 0;
		bottom: -72px;
	}
	.index_process .inner::after {
		right: 0;
		bottom: -80px;
	  }
}
@media screen and (max-width:1150px) {

}
@media screen and (max-width:768px) {
	.index_process .inner::before,.index_process .inner::after {
		z-index: 10;
	}
	.index_process .inner::before {
		background: url(../img/index/index_img01.png)no-repeat left bottom/134px 136px;
		width: 134px;
		height: 136px;
		left: 10px;
		bottom: -167px;
	}
	.index_process .inner::after {
		background: url(../img/index/index_img02.png)no-repeat right bottom/110px 140px;
		width: 110px;
		height: 140px;
		right: 10px;
		bottom: -170px;
	}
	.index_process.area {
		padding: 30px 15px 160px;
	}
	.index_process .txt {
		margin-bottom: 30px;
		padding: 0 25px;
	}
}

/* index_info */
.index_info {
	background: #fff;
}
.index_info a {
	border: 2px solid #e1dddc;
	border-radius: 24px;
	padding: 50px 40px;
	display: block;
	transition: .3s;
}
.index_info a:hover {
	border: 2px solid var(--color-blue);
}
.index_info a:hover .btn_more::after {
	opacity: 0;
}
.index_info_row {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	justify-content: space-between;
}
.index_info_row>div {
	width: 48%;
	box-sizing: border-box;
}
.index_info .btn_more {
	margin: 30px auto 0;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.index_info.area {
		padding: 60px 15px 30px;
	}
	.index_info a {
		padding: 30px 40px;
	}
	.index_info_row {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.index_info_row>div {
		width: 100%;
	}
	.index_info .btn_more {
		margin: 20px auto 0;
	}
}

/* index_reason */
.index_reason {
	margin-bottom: 40px;
}
.index_reason .box_in {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}
.index_reason .box_in .ttl01 {
	margin-bottom: 0;
}
.index_reason .box_in .img {
	margin-left: 50px;
}
.index_reason .box_in .img img {
	max-width: 296px;
}
.index_info .index_reason .btn_more {
	margin: 0;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.index_reason {
		margin-bottom: 15px;
	}
	.index_reason .box_in {
		flex-flow: column;
		margin-bottom: 0;
	}
	.index_reason .box_in .ttl01 {
		margin-bottom: 20px;
	}
	.index_reason .box_in .img {
		margin-left: 0;
		margin-bottom: 20px;
		text-align: center;
	}
	.index_reason .box_in .img img {
		max-width: 60%;
	}
}

/* index_track_record */
.index_track_record .img {
	text-align: center;
	margin-bottom: 30px;
}
.index_track_record .img img {
	max-width: 206px;
}
.index_track_record .txt {
	height: 105px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:1040px) {
	.index_track_record .txt {
		height: 130px;
	}
}
@media screen and (max-width:920px) {
	.index_track_record .txt {
		height: 155px;
	}
}
@media screen and (max-width:768px) {
	.index_track_record {
		margin-bottom: 15px;
	}
	.index_track_record .img {
		margin-bottom: 20px;
	}
	.index_track_record .img img {
		max-width: 60%;
	}
	.index_track_record .ttl01 {
		margin-bottom: 20px;
	}
	.index_track_record .txt {
		height: inherit;
	}
	
}

/* index_faq */
.index_faq .img {
	text-align: center;
	margin-bottom: 30px;
}
.index_faq .img img {
	max-width: 206px;
}
.index_faq .txt {
	height: 105px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:1040px) {
	.index_faq .txt {
		height: 130px;
	}
}
@media screen and (max-width:920px) {
	.index_faq .txt {
		height: 155px;
	}
}
@media screen and (max-width:768px) {
	.index_faq .img {
		margin-bottom: 20px;
	}
	.index_faq .img img {
		max-width: 60%;
	}
	.index_faq .ttl01 
	{margin-bottom: 20px;
	}
	.index_faq .txt {
		height: inherit;
	}
}

/* index_news */
.index_news {
	background: #fff;
}
.index_news.area {
	padding: 0 40px;
}
.index_news .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.index_news .ttl_box {
	margin-right: 80px;
}
.index_news .btn01 a {
	width: 240px;
}
.list_news {
	width: 100%;
}
.list_news li {
	border-bottom: 1px solid #D7E1E3;
	
}
.list_news li:not(:last-child) {
	margin-bottom: 20px;
}
.list_news li a {
	display: block;
	background: url(../img/common/arrow-right.png)no-repeat right center/28px 28px;
	padding-bottom: 10px;
}
.list_news li a:hover {
	background: url(../img/common/arrow-right.png)no-repeat right center/28px 28px #f9f8f8;
}
.list_news li a .ttl {
	transition: .3s;
}
.list_news li a:hover .ttl {
	color: var(--color-blue);
}
.list_news dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 10px;
	line-height: 1;
	font-size: 1.4rem;
}
.list_news dl dt {
	margin-right: 15px;
	color: #666666;
}
.list_news dl dd {
	background: #D7E1E3;
	width: 130px;
	border-radius: 100px;
	text-align: center;
	padding: 5px 0;
}

/* フェードインアニメーション */
@keyframes fadeIn {
	from {
	  opacity: 0;
	  transform: translateY(20px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  .fade-in {
	animation: fadeIn 0.5s ease both;
  }
  

@media screen and (min-width:768px) and ( max-width:1080px) {
	.index_news .ttl_box {
		margin-right: 50px;
	}
	.list_news li a {
		padding-right: 50px;
	}
	
}
@media screen and (max-width:768px) {
	.index_news.area {
		padding: 30px 15px;
	}
	.index_news .inner {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		max-width: 100%;
	}
	.index_news .ttl01 {
		font-size: 3.2rem;
	}
	.index_news .ttl_box {
		margin-right: 0;
		margin-bottom: 0;
	}
	.list_news {
		margin-bottom: 30px;
	}
	.list_news li a .ttl {
		padding-right: 45px;
	}
}

/* index_company */
.index_company {
	background: #fff;
}
.index_company a {
	border: 2px solid #E0DDDC;
	border-radius: 24px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	padding: 40px;
}
.index_company a:hover {
	border: 2px solid var(--color-blue);
}
.index_company .ttl01 {
	margin-bottom: 0;
	margin-right: 70px;
}
.index_company a:hover .btn_more::after {
	opacity: 0;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:890px) {
	.index_company .ttl01 {
		margin-right: 20px;
		width: 30%;
	  }
}
@media screen and (max-width:768px) {
	.index_company a {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		padding: 30px 40px;
	}
	.index_company a:hover {
		border: 2px solid var(--color-blue);
	}
	.index_company .ttl01 {
		margin-bottom: 20px;
		margin-right: 0;
		width: 100%;
	}
	.index_company a:hover .btn_more::after {
		opacity: 0;
	}
	.index_company dt {
		margin-bottom: 20px;
	}
	
}

/* contact_area */
.contact_area {
	text-align: center;
	background: #fff;
}
.contact_area.area {
	padding: 20px 40px 40px;
}
.contact_area_ttl {
	margin-bottom: 20px;
	position: relative;
}
.contact_area_ttl::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/common/contact_item.png)no-repeat center top/30px 12px;
	width: 30px;
	height: 12px;
	top: -20px;
	right: 50%;
	transform: translate(50%,0);
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.contact_area.area {
		padding: 40px 20px 40px;
	}
	.contact_area_ttl {
		margin-bottom: 15px;
	}
}



/* lower 
-------------------------------------------------------*/
.lower .visual {
	background: linear-gradient(to bottom,#fff 50%,#F3F6FA);
}
.lower .visual.area {
	padding: 100px 40px 70px;
}
.bg_blue {
	background: #F3F6FA;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.lower .visual.area {
		padding: 80px 15px 40px;
	}
}


/* reason
-------------------------------------------------------*/
/* reason01 */
.list_reason_st li {
	border: 2px solid #E0DDDC;
	border-radius: 24px;
	padding: 30px;
}
.list_reason_st li:not(:last-child) {
	margin-bottom: 30px;
}
.list_reason_st li .ttl {
	color: var(--color-blue);
	font-size: 2.4rem;
	margin-bottom: 15px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.list_reason_st li {
		border: none;
		border-radius: 0;
		padding: 0 15px;
	}
	.list_reason_st li:not(:last-child) {
		margin-bottom: 40px;
	}
	.list_reason_st li .ttl {
		font-size: 2.4rem;
		margin-bottom: 25px;
	}
	.list_reason_st li .txt {
		
	}
}

/* reason02 */
.list_advisor {
	margin-top: -30px;
}
.list_advisor li {
	box-shadow: 0px 3px 20px 0px rgba(0,0,0,0.07);
	margin: 30px;
	display: flex!important;
	flex-flow: row nowrap;
	align-items: stretch; /* ←ここで高さを揃える */
	justify-content: flex-start;
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
}

.list_advisor li .img {
	width: 40%;
	display: flex;
}

.list_advisor li .img img.pc {
	width: 100%;
	height: 100%; /* ←高さをテキストに合わせる */
	object-fit: cover; /* ←トリミングしながらフィット */
	display: block;
}

.list_advisor li .txt_box {
	padding: 40px 60px;
	width: 60%;
}

.list_advisor li .name_title {
	color: var(--color-blue);
	margin-bottom: 5px;
}
.list_advisor li .name {
	font-size: 3.2rem;
	margin-bottom: 5px;
}
.list_advisor li .name_en {
	font-size: 1.4rem;
	margin-bottom: 25px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.list_advisor {
		margin-top: 0px;
	}
	.reason_area02.area {
		padding: 40px 15px 60px;
	}
	.reason_area02 .ttl03 {
		margin-bottom: 30px;
	}
	.list_advisor li {
		margin: 0;
		flex-flow: column;
		box-shadow: none;
	}
	.list_advisor li .img {
		width: 100%;
		height: auto;
	}
	.list_advisor li .txt_box {
		padding: 24px;
		width: 100%;
	}
	.list_advisor li .name_title {
		margin-bottom: 0;
	}
	.list_advisor li .name {
		font-size: 2.4rem;
		margin-bottom:0;
	}
}

/*スマホ時開閉制御*/
@media screen and (max-width: 768px) {
	.txt_box p.txt {
	  max-height: 7.5em;
	  overflow: hidden;
	  position: relative;
	  transition: max-height 1s ease;
	}
  
	.txt_box p.txt::after {
	  content: "";
	  position: absolute;
	  bottom: 0;
	  left: 0;
	  width: 100%;
	  height: 3em;
	  background: linear-gradient(to bottom, transparent, white);
	  pointer-events: none;
	}

	.more-btn_wrap {
		text-align: center;
		margin-top: 10px;
	}

	.more-btn_wrap::after {
		content: "";
		display: inline-block;
		width: 18px;
		height: 18px;
		background: url("../img/common/arrow-right.png") no-repeat center center;
		background-size: contain;
		transition: transform 0.3s ease;
		transform: rotate(90deg);
		position: relative;
		top: 3px;
	  }

	  .txt_box.open .more-btn_wrap::after {
		transform: rotate(-90deg);
	  }
  
	.txt_box .more-btn {
	  display:inline-block;
	  text-align: center;
	  color: #009eb8;
	  cursor: pointer;
	  position: relative;
	}


  
	
	.txt_box.open p.txt {
	  max-height: none;
	  max-height: 2000px;
	}
  
	.txt_box.open p.txt::after {
	  display: none;
	}
  
	.txt_box.open .more-btn::after {
	  content: " 閉じる";
	}
  
	.txt_box:not(.open) .more-btn::after {
	  content: " もっと見る";
	}
  }


  
  


/* reason03 */
.reason_area03 .txt {
	text-align: center;
	margin-bottom: 30px;
}
.list_service.size_s {
	max-width: 890px;
}
.list_service.size_s li a {
	font-size: 1.8rem;
	height: inherit;
	height: 62px;
	line-height: 1;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:910px) {
	.list_service.size_s li a {
		font-size: 1.6rem;
	}
}
@media screen and (max-width:768px) {
	.reason_area03.area {
		padding: 40px 15px 60px;
	}
	.reason_area03 .txt {
		text-align: left;
		padding: 0 15px;
	}
	.list_service.size_s {
		margin-bottom: 10px;
	}
	.list_service.size_s li a {
		font-size: 1.8rem;
		justify-content: flex-start;
		border-radius: 24px;
		padding: 0 25px;
		text-align: left;
		line-height: 1.4;
		height: 78px;
		align-items: center;
		justify-content: flex-start;
	}
}


/* service
-------------------------------------------------------*/
/* service_area01 */
.service_area01 .txt {
	text-align: center;
	margin-bottom: 30px;
}
@media screen and (max-width:768px) {
	.service_area01 .txt {
		padding: 0 15px;
	}
}

/* service_area02 */
.service_area02 .ttl03 {
	margin-bottom: 20px;
}
.service_area02 .txt {
	text-align: center;
	margin-bottom: 30px;
}
.service_area02 .img {
	text-align: center;
}
.service_area02 .img img {
	max-width: 840px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.service_area02 .txt {
		padding: 0 15px;
	}
}

/* スクロール追従 */
.scroll_side {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
  }

.scroll_side .ttl03, .scroll_side .ttl04 {
	text-align: left;
}
.scroll_side .ttl03 {
	margin-bottom: 30px;
}
.scroll_side .ttl04 {
	margin-bottom: 0;
}
.scroll_side .side_cont {
	width: 33%;
	margin-right: 30px;
	position: sticky;
	top: 100px;
	transition: top 0.3s ease;
}


  
.scroll_side .main_cont {
	width: 67%;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.scroll_side {
		flex-flow: column;
	}
	.scroll_side .side_cont {
		width: 100%;
		margin-right: 0;
	}
	.scroll_side .main_cont {
		width: 100%;
	}
}

/* service_area03 */
.circle {
	position: relative;
	padding-left: 20px;
}
.circle::before {
	position: absolute;
	display: block;
	content: "";
	width: 12px;
	height: 12px;
	background: #BDBDBD;
	border-radius: 100px;
	top: 4px;
	left: 0;
}
.on .circle::before {
	background: var(--color-blue);
}

.list_step_side {
	margin-left: 40px;
}
.list_step_side li {
	position: relative;
}
.list_step_side li:not(:last-child) {
	margin-bottom: 40px;
}
.list_step_side li:not(:last-child):after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/service/dot.png)no-repeat left top/12px 20px;
	width: 12px;
	height: 20px;
	left: 0;
	bottom: -30px;
}
.list_step_side li a {
	color: #BDBDBD;
}
.list_step_side li.on a {
	color: var(--color-blue);
}
.list_step_side li a:hover {
	color: var(--color-blue);
}

.list_step>li {
	padding-top: 40px;
	border-top: 2px solid var(--color-blue);
}
.list_step>li:not(:last-child) {
	margin-bottom: 120px;
}
.list_step>li .ttl_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	color: var(--color-blue);
	line-height: 1;
	margin-bottom: 50px;
}
.list_step>li .ttl_box dt {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 40px;
}
.list_step>li .ttl_box dt span {
	margin-left: 5px;
}
.list_step>li .ttl_box dt img {
	max-width: 80px;
}
.list_step>li .ttl_box dd {
	margin-left: 45px;
}
.list_step>li .ttl_box .img img {
	max-width: 250px;
}

.list_step_detail li {
	border-top: 1px solid #E0DDDC;
	padding-top: 25px;
}
.list_step_detail li:not(:last-child) {
	margin-bottom: 30px;
}
.list_step_detail li .ttl {
	font-size: 2.4rem;
	margin-bottom: 15px;
	text-indent: -1em;
    padding-left: 1em;
}
.list_step_detail li .ttl .circle::before {
	background: var(--color-blue);
	top: 8px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:990px) {
	.list_step > li .ttl_box .img img {
		max-width: 180px;
	  }
}
@media screen and (max-width:880px) {
	.list_step > li .ttl_box .img img {
		max-width: 150px;
	  }

}
@media screen and (max-width:768px) {
	.list_step_side {
		margin-bottom: 40px;
	}
	
	.list_step {
		padding: 0 15px;
	}
	.list_step>li:not(:last-child) {
		margin-bottom: 120px;
	}
	.list_step>li .ttl_box {
		margin-bottom: 50px;
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.list_step>li .ttl_box dl {
		margin-bottom: 30px;
		width: 100%;
	}
	.list_step>li .ttl_box dt {
		margin-bottom: 30px;
	}
	.list_step>li .ttl_box dt img {
		max-width: 80px;
	}
	.list_step>li .ttl_box dd {
		margin-left: 0;
		white-space: nowrap;
	}
	.list_step>li .ttl_box .img {
		margin-top: -10px;
	}
	.list_step>li .ttl_box .img img {
		max-width: 250px;
	}
	.list_step_detail li {
		padding-top: 30px;
	}
	.list_step_detail li .ttl {
		font-size: 2rem;
		margin-bottom: 10px;
	}
	.list_step_detail li .ttl .circle::before {
		top: 6px;
	}
}

/* service_area04 */
.service_area04 .main_cont .img {
	margin-bottom: 60px;
}
.service_area04 .main_cont .img img {
	max-width: 340px;
}
.service_area04 .main_cont .ttl04 {
	color: #333;
	margin-bottom: 25px;
}
.service_area04 .main_cont .txt {
	margin-bottom: 25px;
}

.table_temp01 {
	max-width: 630px;
	width: 100%;
}
.table_temp01 tr {
	border-bottom: 4px solid #F3F6FA;
}
.table_temp01 th {
	background: #CDECF1;
	color: var(--color-blue);
	text-align: center;
	line-height: 1;
	padding: 10px 5px;
	border-right: 4px solid #F3F6FA;
	vertical-align: middle;
}
.table_temp01 td {
	background: #fff;
	font-size: 2rem;
	padding: 5px 25px;
	border-right: 4px solid #F3F6FA;
	vertical-align: middle;
}
.table_temp01 td.bg_b {
	background: var(--color-blue);
	color: #fff;
	text-align: center;
	font-size: 2.4rem;
	padding: 5px;
}
.table_temp01 .caution {
	/*text-align: right;*/
	background: none;
	padding: 0;
	font-size: 1.6rem;
}
.caution_txt {
	margin-top: 25px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.service_area04 .txt {
		padding: 0 15px;
	}
	.service_area04 .side_cont {
		margin-bottom: 30px;
	}
	.service_area04 .main_cont .img {
		margin-bottom: 40px;
		padding: 0 15px;
	}	
	.service_area04 .ttl04 {
		padding: 0 15px;
	}
	.service_area04 .main_cont .txt {
		margin-bottom: 30px;
	}
	.table_box {
		padding: 0 15px;
		line-height: 2;
	}
	.table_temp01 {
		width: 100%;
	}
	.table_temp01 th {
		font-size: 1.4rem;
		line-height: 1.4;
	}
	.table_temp01 th:first-child {
		width: 80%;
	}
	.table_temp01 td {
		padding: 10px;
		line-height: 1.6;
	}
	.table_temp01 .sp_row {
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		justify-content: flex-start;
	}
	.table_temp01 .num {
		margin-right: 10px;
	}
	.table_temp01 td.bg_b {
		padding: 5px;
	}
}

/* service_area05 */
.service_area05 .txt {
	text-align: center;
	margin-bottom: 30px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.service_area05 .txt {
		padding: 0 15px;
	}
}

/* service_detail
-------------------------------------------------------*/
/* service01 譲渡や売却をご検討の方 */
/* area01 */
/* tab */
.tab_wrap {
	margin-bottom: 80px;
}
.tab_btn {
	display:none;
}
.tab_list_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}
.tab_list_box li {
	width: 50%;
}
.tab_list {
	text-align: center;
	font-size: 2.4rem;
	color: #BDBDBD;
	border-bottom: 2px solid #BDBDBD;
	display: block;
	padding: 10px;
	position: relative;
}
#tab_btn1:checked ~ .tab_list_box #tab_list1,
#tab_btn2:checked ~ .tab_list_box #tab_list2
{
	border-bottom: 2px solid var(--color-blue);
	color: var(--color-blue);
}
#tab_btn1:checked ~ .tab_list_box #tab_list1::after,
#tab_btn2:checked ~ .tab_list_box #tab_list2::after 
{
	position: absolute;
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 9px solid transparent;
	border-left: 9px solid transparent;
	border-top: 16px solid var(--color-blue);
	border-bottom: 0;
	bottom: -16px;
	right: 50%;
	transform: translate(50%,0);
}
.tab_cont {
	display:none;
	padding: 0 15px;
}
#tab_btn1:checked ~ .tab_cont_box #tab_content1,
#tab_btn2:checked ~ .tab_cont_box #tab_content2
{
	display: block;
}
.list_pro {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: space-between;
}
.list_pro li {
	width: 32%;
	background: #fff;
	border-top: 4px solid var(--color-blue);
	margin-bottom: 25px;
	box-shadow: 0px 3px 20px 0px rgba(0,0,0,0.07);
	padding: 25px;
}
.list_pro li.top100 {
	width: 100%;
	padding: 20px 0 40px;
	margin-bottom: 25px;
}
.list_pro .list_pro_in {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
.list_pro .list_pro_in .txt {
	width: calc(100% / 3);
	height: 100%;
	padding: 0 20px;
}
.list_pro .list_pro_in .txt:nth-child(2) {
	position: relative;
	padding: 0 25px;
}
.list_pro .list_pro_in .txt:nth-child(2)::before,.list_pro .list_pro_in .txt:nth-child(2)::after {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 45px;
	background-color: #E0DDDC;
	top: 10px;
}
.list_pro .list_pro_in .txt:nth-child(2)::before {
	left: 0;
}
.list_pro .list_pro_in .txt:nth-child(2)::after {
	right: 0;
}
.list_pro li .ttl {
	text-align: center;
	color: var(--color-blue);
	margin-bottom: 10px;
}
.list_pro_sum {
	text-align: center;
	margin-top: 10px;
}

/* box_in */
.service01_area01 .box_in {
	background: #E6F5F8;
	padding: 30px;
}
.service01_area01 .box_in .ttl03 {
	margin-bottom: 5px;
}
.service01_area01 .box_in .top_txt {
	text-align: center;
	margin-bottom: 30px;
}
.list_point {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	justify-content: space-between;
	margin-bottom: 30px;
}
.list_point li {
	width: 32%;
	background: #fff;
	padding: 25px;
}
.list_point li .ttl {
	text-align: center;
	color: var(--color-blue);
	margin-bottom: 15px;
}
.service01_area01 .box_in .btm {
	color: var(--color-blue);
	text-align: center;
	font-size: 2.4rem;
}
/* area02 */
.service01_area02 .ttl03 {
	margin-bottom: 20px;
}
.list_advisory {
	max-width: 600px;
	margin: 0 auto 100px;
}
.list_advisory li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	border-bottom: 1px solid var(--color-blue);
	border-image: linear-gradient(90deg, rgba(0,159,185,1) 0%, rgba(0,159,185,1) 80%, rgba(0,159,185,0) 100%);
	border-image-slice: 1;
	font-size: 2.4rem;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.list_advisory li .num {
	color: var(--color-blue);
	font-weight: 500;
	margin-right: 10px;
}
.list_advisory li b {
	font-weight: 700;
}
.service01_area02 .btm_txt {
	text-align: center;
	position: relative;
}
.service01_area02 .btm_txt::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/service/advisory_img.png)no-repeat right bottom/156px 326px;
	width: 156px;
	height: 326px;
	bottom: -150px;
	right: 5%;
}

@media screen and (max-width:1150px) {
	.service01_area02 .btm_txt::after {
		position: absolute;
		display: block;
		content: "";
		background: url(../img/service/advisory_img.png)no-repeat right bottom/156px 326px;
		width: 156px;
		height: 326px;
		bottom: -150px;
		right: 0;
	}
}
@media screen and (max-width:1050px) {
	.service01_area02 .btm_txt::after {
		position: absolute;
		display: block;
		content: "";
		background: url(../img/service/advisory_img.png)no-repeat right bottom/156px 326px;
		width: 156px;
		height: 326px;
		bottom: -150px;
		right: -5%;
	}
}
@media screen and (max-width:1001px) {
	.service01_area02 .btm_txt::after {
		background:
	  url(../img/service/advisory_img.png)no-repeat right bottom/78px 163px;
		width: 78px;
		height: 163px;
		bottom: -140px;
		right: 5%;
	  }
}

/*
@media screen and (min-width:768px) and ( max-width:1080px) {
	.service01_area02 .btm_txt::after {
		background:
	  url(../img/service/advisory_img.png)no-repeat right bottom/78px 163px;
		width: 78px;
		height: 163px;
		bottom: -140px;
		right: 5%;
	  }
	
}
*/
@media screen and (max-width:768px) {
	/* area01 */
	/* tab */
	.list_pro {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.list_pro li {
		width: 100%;
	}
	.list_pro li.top100 {
		width: 100%;
		padding: 25px;
		margin-bottom: 25px;
	}
	.list_pro .list_pro_in {
		flex-flow: column;
		align-items: flex-start;
		justify-content: space-between;
	}
	.list_pro .list_pro_in .txt {
		width: 100%;
		height: inherit;
		padding: 0;
	}
	.list_pro .list_pro_in .txt:nth-child(2) {
		padding: 20px 0;
	}
	.list_pro .list_pro_in .txt:nth-child(2)::before,.list_pro .list_pro_in .txt:nth-child(2)::after {
		display: none;
	}
	.list_pro_sum {
		text-align: left;
		margin-top: 10px;
	}

	/* box_in */
	.service01_area01 .box_in {
		padding: 40px 15px;
	}
	.service01_area01 .box_in .ttl03 {
		margin-bottom: 15px;
	}
	.service01_area01 .box_in .top_txt {
		text-align: left;
	}
	.list_point {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.list_point li {
		width: 100%;
	}
	.list_point li:not(:last-child){
		margin-bottom: 15px;
	}
	.service01_area01 .box_in .btm {
		text-align: left;
	}
	/* area02 */
	.service01_area02 .ttl03 {
		margin-bottom: 20px;
	}
	.list_advisory {
		padding: 0 15px;
		margin: 0 auto 40px;
	}
	.service01_area02 .ttl04 {
		text-align: left;
		padding: 0 15px;
	}
	.service01_area02 .btm_txt {
		padding: 0 15px;
		text-align: left;
		line-height: 2;
	}
	.service01_area02 .btm_txt::after {
		display: none;
	}

	.list_advisory li {
		align-items: center;
		font-size: 1.8rem;
		line-height: 1.2;
	}

	.list_advisory li b {
		display: block;	
		line-height: 1.2;
	}

	.tab_list {
		font-size: 2rem;
	}
}
/* service03 医療・介護業界に関わる事業者の方 */
/* area01 */
.service03_area01 .ttl03 {
	margin-bottom: 20px;
}
.service03_area01 .txt {
	text-align: center;
	margin-bottom: 70px;
}
.service03_area01 .ttl04 {
	margin-bottom: 40px;
}
.box_service_problem {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: center;
	max-width: 800px;
	margin: 0 auto;
}
.list_service_problem {
	margin: 0 30px;
	width: 40%;
}
.list_service_problem li {
	background: #E6F5F8;
	padding: 15px;
	border-radius: 16px 16px 0 16px;
}
.list_service_problem li:not(:last-child) {
	margin-bottom: 12px;
}
.list_service_problem.right li {
	border-radius: 16px 16px 16px 0;
}
.service_problem_img {
	margin-top: 120px;
	width: 20%;
}
.service_problem_img img {
	max-width: 160px;
}
/* area02 */
.service03_area02 .ttl03 {
	color: var(--color-blue);
	margin-bottom: 25px;
}
.service03_area02 .txt {
	text-align: center;
	margin-bottom: 50px;
}
.service03_area02 .img {
	text-align: center;
}
.service03_area02 .img img {
	max-width: 760px;
}
/* area03 */
.service03_area03 .ttl03 {
	margin-bottom: 25px;
}
.service03_area03 .top_txt {
	text-align: center;
	margin-bottom: 25px;
}
.list_point.color_blue li {
	background: #E6F5F8;
	width: 49%;
}
.list_point.color_blue li .ttl {
	font-size: 2.4rem;
}
.service03_area03 .btm_txt {
	text-align: center;
	margin-bottom: 30px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.service03_area01 .ttl03 {
		margin-bottom: 20px;
	}
	.service03_area01 .txt {
		margin-bottom: 40px;
		padding: 0 15px;
	}
	.service03_area01 .ttl04 {
		text-align: left;
		margin-bottom: 40px;
		padding: 0 15px;
	}
	.box_service_problem {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.list_service_problem {
		margin: 0;
		width: 100%;
		padding: 0 15px;
	}
	.list_service_problem li {
		width: 88%;
		padding:  15px 20px;
	}
	.list_service_problem li.center {
		text-align: center;
	}
	.list_service_problem li:not(:last-child) {
		margin-bottom: 12px;
	}
	.list_service_problem.right li {
		border-radius: 16px 16px 0 16px;
	}
	.list_service_problem li:nth-child(2n) {
		margin: 0 0 12px auto;
		border-radius: 16px 16px 16px 0;
	}
	.service_problem_img {
		margin-top: 20px;
		width: 100%;
		text-align: center;
	}
	.service_problem_img img {
		max-width: 120px;
	}
	/* area02 */
	.service03_area02 .txt {
		padding: 0 15px;
		margin-bottom: 40px;
	}
	/* area03 */
	.service03_area03 .top_txt {
		text-align: left;
		line-height: 2;
		padding: 0 15px;
		margin-bottom: 40px;
	}
	.list_point.color_blue li {
		width: 100%;
	}
	.list_point.color_blue li .ttl {
		font-size: 2.4rem;
	}
	.service03_area03 .btm_txt {
		text-align:left;
		line-height: 2;
		margin-bottom: 40px;
		padding: 0 15px;
	}

	.list_point.color_blue li .ttl {
		font-size: 2rem;
	}
}
/* service04 税理士、会計士、弁護士などの方 */
/* area02 */
.service04_area02 .ttl03 {
	color: #000;
}
.service04_area02 .list_point li {
	width: 49%;
}
.service04_area02 .list_point li .ttl {
	font-size: 2.4rem;
}
.service04_area02 .list_point li .txt {
	margin-bottom: 0;
	text-align: left;
	text-indent: -1em;
	padding-left: 1em;
}
.service04_area02 .ttl04 {
	color: #000;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.service04_area02 .list_point li {
		width: 100%;
	}
	.service04_area02 .list_point li .ttl {
		font-size: 2rem;
	}
	.service04_area02 .list_point li .txt {
		margin-bottom: 0;
		text-align: left;
		text-indent: -1em;
		padding: 0;
		padding-left: 1em;
	}
	.service04_area02 .ttl04 {
		text-align: left;
	}
}

/* track_record
-------------------------------------------------------*/
/* area01 */
.tr_area01.area {
	padding: 80px 40px;
}
.tr_area01 .inner_s {
	max-width: 860px;
}
.tr_area01 .ttl03 {
	margin-bottom: 30px;
}
.tr_box {
	background: #E6F5F8;
	padding: 30px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
.tr_box:not(:last-child) {
	margin-bottom: 15px;
}
.tr_box .tr_box_in {
	background: #fff;
	width: 50%;
	box-shadow: 0px 3px 20px 0px rgba(0,0,0,0.07);
	padding: 30px;
}
.tr_box .tr_box_in .ttl {
	color: var(--color-blue);
	font-size: 2.4rem;
	text-align: center;
	margin-bottom: 20px;
}
.tr_box .tr_box_in .ttl .icon {
	margin-right: 10px;
}
.tr_box .tr_box_in .ttl .icon img {
	max-width: 48px;
}
.tr_box .tr_box_in .txt {
	padding-bottom: 3px;
	display: inline-block;
}
.tr_box .tr_box_in dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
.tr_box .tr_box_in dl:not(:last-child) {
	margin-bottom: 5px;
}
.tr_box .tr_box_in dl dt {
	color: #818181;
	border: 1px solid #818181;
	font-size: 1.4rem;
	width: 72px;
	text-align: center;
	margin-right: 10px;
}
.tr_box .cross {
	margin: 0 25px;
}
.tr_box .cross img {
	max-width: 26px;
}
/* area02 */
.tr_area02 {
	margin-bottom: 30px;
}
.tr_area02.area {
	padding: 80px 40px;
}
.tr_area02 .ttl03 {
	margin-bottom: 15px;
}
.tr_area02 .txt {
	text-align: center;
	margin-bottom: 20px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	/* area01 */
	.tr_area01.area {
		padding: 40px 15px;
	}
	.tr_area01 .ttl03 {
		margin-bottom: 40px;
	}
	.tr_box {
		padding: 15px;
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.tr_box:not(:last-child) {
		margin-bottom: 25px;
	}
	.tr_box .tr_box_in {
		width: 100%;
		padding: 15px;
	}
	.tr_box .tr_box_in .ttl {
		margin-bottom: 15px;
	}
	.tr_box .tr_box_in .ttl .icon {
		margin-right: 10px;
	}
	.tr_box .tr_box_in .ttl .icon img {
		max-width: 48px;
	}
	.tr_box .tr_box_in .txt {
		padding-bottom: 0;
	}
	.tr_box .cross {
		margin: 15px 0;
	}
	.tr_box .cross img {
		max-width: 24px;
	}
	/* area02 */
	.tr_area02 {
		margin-bottom: 15px;
	}
	.tr_area02.area {
		padding: 40px 15px;
	}
	.tr_area02 .ttl03 {
		margin-bottom: 15px;
	}
	.tr_area02 .txt {
		padding: 0 15px;
		margin-bottom: 20px;
	}
}

/* track_record  case_study
-------------------------------------------------------*/
.list_cs {
	margin-bottom: 80px;
}
.list_cs li {
	padding: 15px 0;
	border-top: 1px solid #E0DDDC;
}
.list_cs li:last-child {
	border-bottom: 1px solid #E0DDDC;
}
.list_cs li .aco_btn {
	position: relative;
}
.list_cs li .aco_btn::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/track_record/aco_arrow.png)no-repeat right center/32px 32px;
	width: 32px;
	height: 32px;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
	z-index: 2;
	transition: .3s;
}
.list_cs li .aco_btn::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/track_record/aco_arrow_hover.png)no-repeat right center/32px 32px;
	width: 32px;
	height: 32px;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
	z-index: 1;
	transition: .3s;
}
.list_cs li .aco_btn.open::after,.list_cs li .aco_btn.open::before {
	transform: translate(0,-50%) rotate(180deg);
}
.list_cs li .aco_btn:hover::after {
	opacity: 0;
}
.list_cs li .aco_btn:hover {
	cursor: pointer;
}
.list_cs li .ttl {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: 5px;
}
.list_cs li .tag {
	background: var(--color-blue);
	color: #fff;
	font-size: 1.4rem;
	width: 54px;
	text-align: center;
	display: inline-block;
	margin-right: 5px;
	margin-top: 7px;
}
.list_cs li .ttl_txt {
	color: var(--color-blue);
	font-size: 2.4rem;
}
.list_cs li .sub_ttl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
.list_cs li .sub_ttl .icon_arrow {
	margin: 0 7px;
}
.list_cs li .sub_ttl .icon_arrow img {
	max-width: 13px;
	padding-bottom: 7px;
}
.list_cs li .btn img {
	max-width: 32px;
	transition: .3s;
}
.list_cs .aco_box {
	background: #E6F5F8;
	margin-top: 15px;
	padding: 30px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.list_cs li .aco_btn {
		padding-right: 45px;
	}
	.list_cs li .ttl {
		display: flex;
		flex-flow: row nowrap;
		align-items: flex-start;
		justify-content: flex-start;
		margin-bottom: 5px;
	}
	.list_cs li .tag {
		width: 40px;
		margin-top: 4px;
		font-size: 1.3rem;
	}
	.list_cs li .ttl_txt {
		font-size: 2rem;
	}
	.list_cs .aco_box {
		padding: 15px;
	}	
}

/* faq
-------------------------------------------------------*/
.list_faq li {
	border-top: 1px solid #E0DDDC;
	padding: 25px 0;
}
.list_faq li:last-child {
	border-bottom: 1px solid #E0DDDC;
}
.list_faq li a {
	color: var(--color-blue);
}
.list_faq li .faq_q {
	color: var(--color-blue);
	font-size: 2.4rem;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: 15px;
}
.list_faq li .faq_q .faq_icon {
	min-width: 40px;
}
.list_faq li .faq_a {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.list_faq li .faq_a .faq_icon {
	min-width: 26px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.list_faq {
		padding: 0 15px;
	}
	.list_faq li .faq_a {
		line-height: 2;
	}
	.list_faq li .faq_a .faq_icon {
		min-width: 26px;
	}

	.list_faq li .faq_q {
		font-size: 2rem;
	}
}

/* news
-------------------------------------------------------*/
.news_detail_dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	font-size: 1.4rem;
	line-height: 1;
}
.news_detail_dl dt {
	color: #666;
	margin-right: 15px;
}
.news_detail_dl dd {
	background: #D7E1E3;
	padding: 5px 15px;
	border-radius: 50px;
}
.news_area01 .list_news {
	margin-bottom: 50px;
}
.news_detail_box .in,
.news_detail_box p,
.news_detail_box pre,
.news_detail_box hr,
.news_detail_box img {
	margin-bottom: 25px;
}
.news_detail_box .ttl,
.news_detail_box h1,
.news_detail_box h2 {
	font-size: 3.2rem;
	margin-bottom: 25px;
}
.news_detail_box h3,
.news_detail_box h4,
.news_detail_box h5,
.news_detail_box h6 {
	font-size: 2.4rem;
	margin-bottom: 25px;
}
.news_detail_box .in .txt:not(:first-child) {
	margin-top: 25px;
}
.news_detail_box .img {
	margin-top: 50px;
	text-align: center;
}
.news_detail_box img {
	width: auto;
	max-width: 560px;
}
.news_detail_area01 .btn01 {
	margin-top: 160px;
}
.news_detail_box img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.news_detail_box img.alignright {
	display: block;
	margin-left: auto;
	margin-right: 0;
}
.news_detail_box strong {
	font-weight: bold;
}
.news_detail_box em {
	font-style: italic;
}
.news_detail_box ul,
.news_detail_box ol {
	padding-left: 1.2em;
	margin-bottom: 25px;
	list-style-position: inside;
}
.news_detail_box ul {
	list-style-type: disc;
}
.news_detail_box ol {
	list-style-type: decimal;
}
.news_detail_box li {
	margin-bottom: 0.5em;
}
.news_detail_box blockquote {
	margin: 1em 0;
	padding: 1em 1.5em;
	border-left: 5px solid #ccc;
	background-color: #f9f9f9;
	color: #555;
	font-style: italic;
	line-height: 1.6;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.news_area01 .list_news {
		margin-bottom: 80px;
	}
	.news_detail_dl {
		justify-content: flex-start;
	}
	.news_detail_box {
		padding: 0 15px;
	}
	.news_detail_box .in {
		margin-bottom: 80px;
	}
	.news_detail_box .img {
		margin-top: 80px;
	}
	.news_detail_box .img img {
		max-width: 560px;
	}
	.news_detail_area01 .btn01 {
		margin-top: 80px;
	}

	.news_detail_box .ttl {
		font-size: 2.2rem;
	}
	
}

/* company
-------------------------------------------------------*/
/* company_area01 */
.company_area01 .inner_s {
	max-width: 680px;
}
.company_box dl {
	border-bottom: 1px solid #E0DDDC;
	padding: 25px 0;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.company_box dl a {
	color: var(--color-blue);
}
.company_box dl dt {
	width: 120px;
	margin-right: 25px;
	font-weight: 700;
}
.company_box dl .com_title {
	width: 80px;
	margin-right: 20px;
	display: inline-block;
}
.company_box .logo {
	max-width: 128px;
}
/* company_area02 */
.company_area02 {
	margin-bottom: 30px;
}
.company_area02 .ttl03 {
	margin-bottom: 40px;
}
.company_area02 .sub_ttl {
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 10px;
}
.company_area02 .txt {
	text-align: center;
}
.company_area02 .map {
	margin: 25px 0 40px;
}
.company_area02 .map iframe {
	width: 100%;
}
.list_access {
	max-width: 610px;
	margin: 0 auto;
}
.list_access li:not(:last-child) {
	margin-bottom: 25px;
}
.list_access li .ttl {
	font-weight: 700;
	margin-bottom: 5px;
}
.list_access li .ttl .icon {
	margin-left: 5px;
}
.list_access li .ttl .icon img {
	max-width: 24px;
}
.list_access li .txt {
	text-align: left;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	/* company_area01 */
	.company_area01 .ttl03 {
		margin-bottom: 20px;
	}
	.company_box {
		padding: 0 15px;
	}
	.company_box dl {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.company_box dl a {
		color: var(--color-blue);
	}
	.company_box dl dt {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.company_box dl dd {
		line-height: 2;
	}
	.company_box dl .com_title {
		width: 80px;
		margin-right: 20px;
		display: inline-block;
	}
	.company_box .logo {
		max-width: 128px;
	}
	/* company_area02 */
	.company_area02 {
		margin-bottom: 10px;
	}
	.company_area02 .access_box {
		padding: 0 15px;
	}
	.company_area02 .ttl03 {
		margin-bottom: 40px;
	}
	.company_area02 .sub_ttl {
		text-align: left;
		font-size: 2rem;
	}
	.company_area02 .map {
		margin: 20px 0 40px;
	}
	.company_area02 .map iframe {
		height: 310px;
		width: 100%;
	}
	.list_access {
		max-width: 610px;
		margin: 0 auto;
	}
	.list_access li:not(:last-child) {
		margin-bottom: 25px;
	}
	.list_access li .ttl {
		font-weight: 700;
		margin-bottom: 5px;
	}
	.list_access li .ttl .icon {
		margin-left: 5px;
	}
	.list_access li .ttl .icon img {
		max-width: 24px;
	}
	.list_access li .txt {
		text-align: left;
	}
}

/* privacy
-------------------------------------------------------*/
.privacy_area01 .txt {
	margin-bottom: 25px;
}
.privacy_area01 .in:not(:last-child) {
	margin-bottom: 30px;
}
.privacy_area01 ol li,.privacy_area01 ul li {
	text-indent: -1em;
	padding-left: 1em;
}
.privacy_area01 .ttl {
	font-size: 3.2rem;
	margin-bottom: 25px;
}
.privacy_area01 .sub_ttl {
	font-size: 2.4rem;
	margin-bottom: 25px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.privacy_area01 .txt {
		margin-bottom: 25px;
	}
	.privacy_area01 .in {
		padding: 0 15px;
	}
	.privacy_area01 .in:not(:last-child) {
		margin-bottom: 40px;
	}
	.privacy_area01 ol li,.privacy_area01 ul li {
		line-height: 2;
	}

	.privacy_area01 .ttl {
		font-size: 2.2rem;
	}

	.privacy_area01 .sub_ttl {
		font-size: 1.8rem;
	}
}
/* contact
-------------------------------------------------------*/
.contact_area01 .inner_s {
	max-width: 790px;
}
.contact_table {
	width: 100%;
}
.contact_table tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}
.contact_table tr>* {
	display: table-cell;
	vertical-align: middle;
	padding: 7px 15px;
	box-sizing: border-box;
	line-height: 1;
}
.contact_table tr th.top {
	vertical-align: top;
	padding: 25px 15px;
}
.contact_table tr th {
	width: 250px;
	text-align: left;
}
.contact_table tr th b {
	display: block;
	position: relative;
	font-weight: 700;
}
.contact_table tr.hissu th b::after {
	position: absolute;
	color: var(--color-blue);
	font-size: 1.4rem;
	width: 55px;
	height: 23px;
	border: 1px solid var(--color-blue);
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	content: "必須";
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
}
.contact_table input[type="text"],
.contact_table textarea {
	width: 100%;
	background: #EBEBEB;
	border: 1px solid #ddd;
	border-radius: 8px;
}
.contact_table input[type="text"] {
	height: 50px;
}
.contact_table textarea {
	min-height: 240px;
	resize: vertical;
}
.contact_table .check_area {
	padding-top: 20px;
	line-height: 1.6;
	display: flex;
}
.contact_table .check_area span {
	margin-left: 10px;
}
.contact_table a {
	color: var(--color-blue);
}
.contact_area01 .robot {
	margin: 40px 0;
	text-align: center;
}
.contact_area01 .robot img {
	max-width: 320px;
}
/* thanks */
.contact_thanks {
	text-align: center;
}
.contact_thanks .ttl {
	font-size: 2.4rem;
	margin-bottom: 30px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.contact_table tr>* {
		display: block;
		padding: 15px 0;
		line-height: 1.3;
	}
	.contact_table tr th {
		width: 100%;
		font-size: 100%;
	}
	.contact_table tr th.top {
		vertical-align: top;
		padding: 15px 0;
	}
	.contact_table tr td {
		padding-top: 0;
	}
	.contact_table tr.hissu th b {
		display: inline-block;
	}
	.contact_table tr.hissu th b::after {
		top: 0!important;
		right: -60px;
		bottom: 0!important;
	}
	.contact_table .check_area {
		padding: 0;
	}
	.contact_table .check_area label {
		display: flex;
		align-items: center;
	}
	.contact_table .privacy_agree span {
		line-height: 2;
	}
	/* thanks */
	.contact_thanks {
		text-align: left;
	}
	.contact_thanks .in {
		padding: 0 15px;
	}
	.contact_thanks .ttl {
		font-size: 2.4rem;
		margin-bottom: 30px;
	}
}


.cookie {
	background: #fff;
	padding: 20px 50px;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 9999;
}

.cookie a {
	color: #009eb8;
}

.cookie dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cookie_add {
display: block;
  width: 300px;
  border:2px solid #e1dddc;
  color: var(--color-blue);
  padding:20px 0;
  line-height: 1;
  text-align: center;
  border-radius:100px;
  font-size: 1.8rem;
  cursor: pointer;
}

@media screen and (max-width:768px) {
	.cookie {
		padding: 20px;
		padding-bottom: 20px;
	}

	.cookie dl {
		display: block;
	}

	.cookie dl dt {
		margin-bottom: 20px;
	}
	
	.cookie_add {
	display: block;
	 margin: 0 auto;
	}
}


.contact_iframe iframe{
	width: 100%;
	height: 1400px;
}
@media screen and (max-width:768px) {
	.contact_iframe iframe{
		height: 1800px;
	}
}