@charset "utf-8";
/*----------------------------------------------
common
---------------------------------------------*/
/*----------------------------------------------
	section
---------------------------------------------*/
.c_section_lg {
	padding: 100px 0;
}
@media screen and (max-width: 768px) {
	.c_section_lg {
		padding: 40px 0;
	}
}
/*----------------------------------------------
	ttl
---------------------------------------------*/
/*  .c_ttl_type01
---------------------------------------------*/
.c_ttl_wrap {
	margin-bottom: 30px;
	padding-bottom: 30px;
	background: url(../images/shine.png) no-repeat center bottom / 60px auto;
	text-align: center;
	letter-spacing: 0.2em;
}
.c_ttl_en {
	font-size: 1.1em;
	color: var(--key-color);
	font-weight: 600;
}
.c_ttl_type01 {
	font-size: 1.8em;
	color: var(--main-color);
	font-weight: 700;
}
/*  .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
	font-size: 1.4em;
	margin-bottom: 10px;
}
/* option - color */
.is_ttl_wh {
	background-image: url(../images/shine_wh.png) !important;
}
.is_ttl_wh .c_ttl_en,
.is_ttl_wh .c_ttl_type01 {
	color: #fff;
}
/* option - none */
.is_ttl_none {
	margin-bottom: 60px;
	padding-bottom: 0;
	background: none;
}
/* option - left */
.is_ttl_left {
	background-position: 0 bottom !important;
	text-align: left !important;
}
@media (max-width: 768px) {
	.c_ttl_wrap {
		margin-bottom: 20px;
	}
}
@media (max-width: 640px) {
	/* option - left */
	.is_ttl_left {
		background-position: center bottom !important;
		text-align: center !important;
	}
}
/*----------------------------------------------
	btn
---------------------------------------------*/
.c_btn {
	position: relative;
}
.c_btn .c_icon {
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	margin: auto;
	transition: 0.4s;
}
.c_btn a:hover .c_icon {
	right: 15px;
}
/*  .c_btn_type01
---------------------------------------------*/
.c_btn_type01 {
	max-width: 200px;
	width: 80%;
	margin-inline: auto;
}
.c_btn_type01 a {
	position: relative;
	z-index: 1;
	overflow: hidden;
	display: block;
	padding: 0.8em 0 0.6em;
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: 0.4s;
}
.c_btn_type01 a:hover {
	background: var(--main-color);
}
.c_btn_type01::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--grad-color));
	border-radius: 50px;
}
/* option - margin */
.is_btn_nom {
	margin-right: 0;
	margin-left: 0;
}
/* option - size */
.is_btn_lg {
	max-width: 240px;
	width: 80%;
}
@media screen and (max-width: 640px) {
	/* option - margin */
	.is_btn_sp_center {
		margin-right: auto;
		margin-left: auto;
	}
}
/*----------------------------------------------
	bnr
---------------------------------------------*/
.c_blog_bnr {
	overflow: hidden;
	width: 700px;
	max-width: 100%;
	margin: auto;
	border-radius: 10px;
}
.c_blog_bnr a {
	position: relative;
	padding: 30px;
	background: url(../images/logomark.png) no-repeat right 100px bottom / auto
			100%,
		url(../images/blog_bg.jpg) no-repeat center / cover;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: 0.4s;
}
.c_blog_bnr a:hover {
	opacity: 0.6;
}
.c_blog_bnr .c_ttl_wrap {
	margin-bottom: 10px !important;
	padding-bottom: 0 !important;
	background: none !important;
}
.s_top_blog_lead {
	font-size: 0.9em;
}
@media (max-width: 640px) {
	.c_blog_bnr a {
		padding: 15px 15px 10px;
		background-position: right 30px bottom, center;
	}
	.c_blog_bnr .c_ttl_wrap {
		margin-bottom: 5px;
		line-height: 1.4;
	}
}
/*----------------------------------------------
	pager
---------------------------------------------*/
.c_pager {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}
.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	margin: 0 2px;
	padding-top: 7px;
	background: rgba(var(--key-rgb-color), 0.1);
	border-radius: 4px;
	color: var(--key-color);
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	transition: all 0.4s;
}
.page-numbers.current {
	background: var(--key-color);
	color: #fff;
}
.c_pager a:hover {
	background: rgba(var(--key-rgb-color), 0.3);
	color: var(--key-color);
}
.c_pager .prev,
.c_pager .next {
	position: relative;
	border: 1px solid var(--key-color);
	background: #fff;
	font-size: 0;
}
.c_pager .prev {
	margin-right: 40px;
}
.c_pager .next {
	margin-left: 40px;
}
.c_pager .prev::before,
.c_pager .prev::after,
.c_pager .next::before,
.c_pager .next::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 10px;
	margin: auto;
	background: var(--key-color);
}
.c_pager .prev::before,
.c_pager .next::before {
	transform: rotate(-45deg);
}
.c_pager .prev::after,
.c_pager .next::after {
	transform: rotate(45deg);
}
.c_pager .prev::after,
.c_pager .next::before {
	bottom: 6px;
}
.c_pager .prev::before,
.c_pager .next::after {
	top: 6px;
}
@media (max-width: 768px) {
	.c_pager {
		margin-top: 30px;
	}
	.page-numbers {
		width: 40px;
		height: 40px;
		font-size: 1.6rem;
	}
	.c_pager .prev {
		margin-right: 20px;
	}
	.c_pager .next {
		margin-left: 20px;
	}
}
/*----------------------------------------------
	controls
---------------------------------------------*/
.c_controls {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-top: 100px;
}
.c_controls::before {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	width: 0.5px;
	height: 100%;
	margin: auto;
	background: var(--gy-color);
}
.c_controls li {
	display: flex;
	flex-direction: column;
	width: 50%;
}
.c_controls li:first-child a {
	padding-left: 30px;
	border-right-width: 0;
}
.c_controls li:last-child a {
	justify-content: flex-end;
	padding-right: 30px;
	border-left-width: 0;
}
.c_controls a {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	min-height: 70px;
	padding: 0.5em 1em 0.3em;
	color: var(--bk-color);
	text-align: left;
	text-decoration: none;
	transition: all 0.4s;
}
.c_controls a:hover {
	background: rgba(var(--key-rgb-color), 0.1);
}
.c_controls li .c_icon {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
.c_controls li:first-child .c_icon {
	left: 5px;
	transform: rotate(180deg);
}
.c_controls li:last-child .c_icon {
	right: 5px;
}
.c_controls li:first-child:hover .c_icon {
	left: 10px;
}
.c_controls li:last-child:hover .c_icon {
	right: 10px;
}
@media (max-width: 1024px) {
	.c_controls li:first-child a {
		padding-left: 20px;
	}
	.c_controls li:last-child a {
		padding-right: 20px;
	}
	.c_controls li:first-child .c_icon {
		transform: rotate(180deg) translateY(-1px);
	}
	.c_controls li:first-child:hover .c_icon {
		left: 5px;
	}
	.c_controls li:last-child:hover .c_icon {
		right: 5px;
	}
}
@media (max-width: 768px) {
	.c_controls {
		margin-top: 40px;
	}
}
/*----------------------------------------------
	tbl
---------------------------------------------*/
.c_tbl {
	width: 100%;
}
.c_tbl th,
.c_tbl td {
	padding: 1em 0.8em;
	border-top: 1px solid var(--gy-color);
	border-bottom: 1px solid var(--gy-color);
	text-align: left;
	vertical-align: top;
}
.c_tbl th {
	width: 11em;
	background: var(--key-color);
	color: #fff;
}
.c_tbl_sche th,
.c_tbl_sche td {
	padding: 0.3em 0.8em 0.2em;
	border-bottom: 1px solid var(--bk-color);
	font-weight: normal;
	text-align: center;
}
.c_tbl_sche th {
	padding: 0.4em 1.2em;
}
.c_tbl_sche td {
	font-size: 1.2em;
}
.c_tbl_sche tbody td {
	color: var(--main-color);
}
.c_tbl_sche thead {
	background: rgba(var(--key-rgb-color), 0.67);
	color: #fff;
}
.c_tbl_sche_note {
	margin-top: 5px;
}
@media screen and (max-width: 640px) {
	.c_tbl {
		font-size: 0.8em;
	}
	.c_tbl_sche {
		width: 100%;
		margin-top: 10px;
	}
	.c_tbl_sche th,
	.c_tbl_sche td {
		padding: 0.6em 0.5em 0.5em;
	}
	.c_tbl_sche thead {
		background: var(--main-color);
	}
}
/*----------------------------------------------
	lead
---------------------------------------------*/
/*  .c_lead_type01
---------------------------------------------*/
.c_lead_type01 {
	font-size: 1.2em;
	text-align: center;
	line-height: 2;
}
/*----------------------------------------------
	list
---------------------------------------------*/
.c_list > li {
	margin-top: 5px;
	margin-left: 1.8em;
}
ol.c_list > li {
	list-style-type: decimal;
}
ol.is_list_bkt > li {
	position: relative;
	list-style-type: none;
}
ol.is_list_bkt > li::before {
	position: absolute;
	right: calc(100% + 0.5rem); /* 0.5remは連番とテキストとの余白 */
	content: counter(list-item) " )";
	width: 1em;
}
ul.c_list > li {
	list-style-type: disc;
}
ul.c_list_dot {
	margin-left: 1em;
}
ul.c_list_dot > li {
	list-style: none;
	text-indent: -0.8em;
}
ul.c_list_dot > li::before {
	display: inline-block;
	content: "";
	width: 10px;
	height: 10px;
	margin-right: 0.2em;
	background: var(--key-color);
	border-radius: 5px;
}
ul > li > ul {
	text-indent: 0;
}
/*----------------------------------------------
	link
---------------------------------------------*/
.c_link_trans {
	transition: 0.4s;
}
.c_link_trans:hover {
	opacity: 0.5;
}
/*----------------------------------------------
	icon
---------------------------------------------*/
.c_icon {
	display: inline-block;
	transition: 0.4s;
	mask-repeat: no-repeat;
	mask-position: center;
}
.c_icon_tel {
	width: 19px;
	height: 20px;
	margin-right: 5px;
	mask-image: url("../images/icon_tel.svg");
}
.c_icon_web {
	width: 21px;
	height: 20px;
	margin-right: 5px;
	mask-image: url("../images/icon_web.svg");
}
.c_icon_clock {
	width: 21.8px;
	height: 21.8px;
	margin-bottom: 0.5em;
	mask-image: url("../images/icon_clock.svg");
}
.c_icon_arrow {
	width: 10px;
	height: 9px;
	mask-image: url("../images/icon_arrow.svg");
}
.c_icon_blank {
	width: 14px;
	height: 14px;
	margin-left: 5px;
	mask-image: url("../images/icon_blank.svg");
}
.c_icon_circle {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	z-index: 1;
	width: 40px;
	height: 40px;
	margin: auto;
	border: 1px solid #fff;
	border-radius: 50px;
}
.c_icon_circle::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: "";
	width: 0;
	height: 0;
	margin: auto;
	background: #fff;
	border-radius: 50px;
	transition: 0.4s;
}
a:hover .c_icon_circle::after {
	width: 100%;
	height: 100%;
}
.c_icon_circle .c_icon {
	position: absolute;
	inset: 0;
	margin: auto;
}
a:hover .c_icon_circle .c_icon {
	background: var(--main-color);
}

.is_icon_bl {
	background: var(--main-color);
}
.is_icon_wh {
	background: #fff;
}
@media (max-width: 1024px) {
	.c_icon_circle {
		width: 30px;
		height: 30px;
	}
	.c_icon_clock {
		transform: translateX(3px);
	}
}
@media (max-width: 960px) {
	.c_icon_clock {
		transform: translateX(3px);
	}
}
@media (max-width: 640px) {
	.c_icon_clock {
		margin: 0 5px 0 0;
		transform: translateY(-1px);
	}
}
/*----------------------------------------------
	news
---------------------------------------------*/
.c_news_wrap {
	border-top: 1px solid var(--gy-color);
	border-bottom: 1px solid var(--gy-color);
}
.c_news_wrap .c_icon_circle::after {
	background: rgba(var(--key-rgb-color), 0.67);
}
.c_news a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 2em 0;
	color: var(--main-color);
	text-decoration: none;
	transition: 0.4s;
}
.c_news li:not(:last-child) a {
	border-bottom: 1px solid var(--gy-color);
}
.c_news a:hover {
	padding: 2em 0 2em 10px;
}
.c_news .c_news_date {
	width: 60px;
	font-size: 0.9em;
}
.c_news .c_news_cat {
	width: 100px;
	margin: 0 20px;
	padding: 0.2em 0.2em 0.1em;
	background: var(--point-color);
	border-radius: 40px;
	font-size: 0.9em;
	color: #fff;
	text-align: center;
}
.c_news .c_news_cat.is_cat_treatment {
	background: var(--main-color);
}
.c_news .c_news_ttl {
	width: calc(100% - 200px);
	font-size: 1.2em;
}
.c_news .c_icon_circle {
	right: 10px;
	border: 1px solid var(--main-color);
}
@media (max-width: 1024px) {
	.c_news .c_news_date {
		width: 50px;
	}
	.c_news .c_news_cat {
		width: 80px;
		margin: 0 10px;
	}
	.c_news .c_news_ttl {
		width: calc(100% - 150px);
	}
}
@media (max-width: 768px) {
	.c_news a {
		flex-wrap: wrap;
		padding: 1em 0;
	}
	.c_news a:hover {
		padding: 1em 0;
	}
	.c_news .c_news_ttl {
		width: 100%;
		margin-top: 10px;
	}
}
@media (max-width: 640px) {
	.c_news a {
		padding: 1em 30px 1em 0;
	}
	.c_news .c_icon_circle {
		right: 0;
		transform: scale(0.9);
	}
}
/*----------------------------------------------
	flex
---------------------------------------------*/
.c_flex {
	display: flex;
	flex-wrap: wrap;
}
/*  column - ぴったりカラム用   */
.is_fl_column2 > * {
	width: calc(100% / 2);
}
.is_fl_column3 > * {
	width: calc(100% / 3);
}
.is_fl_column4 > * {
	width: calc(100% / 4);
}
.is_fl_column5 > * {
	width: calc(100% / 5);
}
.is_fl_column6 > * {
	width: calc(100% / 6);
}
/*  column - space-between用   */
.is_fl_bw_column2 > * {
	width: calc((100% / 2) - 20px);
}
.is_fl_bw_column3 > * {
	width: calc((100% / 3) - 20px);
}
.is_fl_bw_column4 > * {
	width: calc((100% / 4) - 20px);
}
.is_fl_bw_column5 > * {
	width: calc((100% / 5) - 20px);
}
.is_fl_bw_column6 > * {
	width: calc((100% / 6) - 20px);
}
/*  option   */
.is_fl_nowrap {
	/* 横幅に収まる */
	flex-wrap: nowrap;
}
.is_fl_column {
	/* 縦並び */
	flex-direction: column;
}
.is_fl_jc_end {
	/* 右寄せ */
	justify-content: flex-end;
}
.is_fl_jc_center {
	/* 左右中央 */
	justify-content: center;
}
.is_fl_jc_between {
	/* 均等 */
	justify-content: space-between;
}
.is_fl_jc_around {
	/* 中央均等 */
	justify-content: space-around;
}
.is_fl_al_start {
	/* 上付き */
	align-items: start;
}
.is_fl_al_center {
	/* 上下中央 */
	align-items: center;
}
.is_fl_al_end {
	/* 下付き */
	align-items: end;
}
@media screen and (max-width: 768px) {
	.is_sp_fl_column {
		flex-direction: column;
	}
	.is_sp_fl_jc_center {
		justify-content: center;
	}
	.is_sp_fl_al_start {
		align-items: start;
	}
	.is_sp_fl_al_center {
		align-items: center;
	}
	.is_sp_fl_column_full > * {
		width: 100%;
	}
	.is_sp_fl_column_full > *:not(:last-child) {
		margin-bottom: 20px;
	}
	/*  column - ぴったりカラム用   */
	.is_sp_fl_column2 > * {
		width: calc(100% / 2);
	}
	/*  column - space-between用   */
	.is_sp_fl_bw_column2 > * {
		width: calc((100% / 2) - 5px);
	}
}
