:root {
	--c-base: #fff;
	--c-main: #088bde;
	--c-accent: #ee3556;
	--bg-main: #ecf3fb;
	--text-main: #2c363c;
	--border-main: rgb(44 54 60 / 0.2);
	--c-grade: linear-gradient(270deg, #13b9f8 0%, #018bd5 100%);
	--rgb-main: 8 139 222;

	--f-jp: "Zen Kaku Gothic New", sans-serif;
	--f-en: "Outfit", sans-serif;
	--f-min: "Zen Old Mincho", serif;
}

/* ----------------------------------------------------------------------
	共通設定
---------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: var(--f-jp);
	font-size: 16px;
	color: var(--text-main);
	line-height: 1;
}

body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

a {
	text-decoration: none;
}
a:hover {
	color: inherit;
	text-decoration: none;
}

#main_contents {
	margin-top: 100px;
}

.home #main_contents {
	margin-top: 0;
}

#breadcrumb {
	height: 60px;
	line-height: 60px;
	padding-inline: 20px;
}

#breadcrumb ul {
	display: flex;
	align-items: center;
	height: inherit;
	overflow-x: auto;
}

#breadcrumb li {
	font-weight: 500;
	color: var(--text-main);
	white-space: nowrap;
}

#breadcrumb li.home a:before {
	display: none;
}

#breadcrumb li.home a span {
	display: inline-block;
}

#breadcrumb li.last {
	color: var(--text-main);
	opacity: 0.5;
}

#breadcrumb li:after {
	padding: 0 10px;
}

#breadcrumb li a {
	color: var(--text-main);
	transition: opacity 0.3s;
}
#breadcrumb li a:hover {
	color: var(--text-main);
}
@media (any-hover: hover) {
	#breadcrumb li a:hover {
		opacity: 0.4;
	}
}

#archive_headline,
#post_title {
	font-size: 32px;
	color: var(--c-main);
	font-weight: 700;
	letter-spacing: 1.6px;
	line-height: calc(57 / 32);
	font-family: var(--f-jp);
	position: relative;
	padding-bottom: 20px;
}

#archive_headline::after,
#post_title::after {
	position: absolute;
	content: "";
	width: 40px;
	height: 2px;
	background: linear-gradient(270deg, #f87189 0%, #13b9f8 100%);
	bottom: 0;
	left: 50%;
	translate: -50% 0;
}

#post_title {
	text-align: center;
	margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
	#main_contents.lower {
		margin-top: 0;
	}

	#breadcrumb {
		height: 40px;
		line-height: 40px;
		padding: 0;
	}

	#header_top a.search_button {
		display: none;
	}
	#main_contents {
		margin-top: 0;
	}
}

@media screen and (max-width: 767px) {
	#archive_headline {
		font-size: 26px;
		padding-bottom: 15px;
	}

	.page #post_title {
		margin-bottom: 40px;
		font-size: 26px;
	}
}

/* ----------------------------------------------------------------------
	ヘッダー
---------------------------------------------------------------------- */
#header {
	background-color: var(--c-base);
	height: 70px;
}

#header_top {
	height: inherit;
}

.fix_top.header_fix #header_top {
	background-color: var(--c-base);
}

#header_top .inner {
	min-height: 70px;
	max-width: 100%;
	padding-left: 20px;
}

#global_menu {
	margin: 0;
}

#global_menu > ul {
	margin: 0 120px 0 0;
}

.global-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--c-grade);
	width: 120px;
	padding: 15px 0;
	row-gap: 4px;
	font-size: 12px;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;

	svg path {
		fill: var(--c-base);
	}
}

#header_logo a,
#global_menu > ul > li > a {
	height: 70px;
	color: var(--text-main);
	letter-spacing: 0.8px;
	font-weight: 500;
}

#header_logo_fix a,
.fix_top.header_fix #global_menu > ul > li > a {
	color: var(--text-main);
}

.burger_logo {
	display: none;
}

.has_header_content #index_header_search {
	background-color: rgb(var(--rgb-main) / 0.4);
	padding: 25px 20px;
	position: relative;
}

.header_search_keywords ul.search_keywords_operator li {
	font-family: var(--f-en);
}

.header_search_keywords ul.search_keywords_operator li.active {
	background-color: #2c363c;
}

.chosen-container-single .chosen-single span {
	font-weight: 500;
}

.header_search_inputs input {
	font-weight: 500;
}

.header_search_inputs input::placeholder {
	font-weight: 500;
	font-family: var(--f-jp);
}

#header_search_submit {
	background-color: #2c363c;
}

#header_search {
	background-color: var(--c-main);
	padding-inline: 20px;
}

@media (any-hover: hover) {
	#header_search_submit:hover {
		background-color: var(--c-main);
	}
}

@media only screen and (max-width: 1329px) {
	#main_col,
	.inner {
		width: 100%;
	}
}

@media only screen and (max-width: 1024px) {
	#header {
		height: 60px;
	}

	#header_top .inner {
		min-height: 60px;
		display: flex;
		align-items: center;
	}

	#header_top a {
		display: grid;
		place-items: center;
		position: relative;
	}

	a.menu_button {
		background: linear-gradient(270deg, #13b9f8 0%, #018bd5 100%);
		width: 40px;
		height: 40px;
		border-radius: 100px;
		color: var(--c-base) !important;
		display: grid;
		place-items: center;
		margin-left: auto;
	}

	a.menu_button:before {
		content: "";
	}

	a.menu_button span:not(.bar) {
		text-indent: 100%;
		white-space: nowrap;
		overflow: hidden;
		display: block;
		position: absolute;
	}

	a.menu_button span.bar {
		display: block;
		overflow: visible;
		width: 20px;
		height: 2px;
		background-color: var(--c-base);
		position: relative;
	}

	a.menu_button span.bar::before,
	a.menu_button span.bar::after {
		position: absolute;
		content: "";
		width: 100%;
		height: 2px;
		background-color: var(--c-base);
		left: 0;
		transition: rotate 0.3s;
	}

	a.menu_button span.bar::before {
		top: -7px;
	}

	a.menu_button span.bar::after {
		top: 7px;
	}

	a.menu_button.active span.bar {
		background-color: transparent;
	}

	a.menu_button.active span.bar::before {
		top: 0;
		rotate: 45deg;
	}

	a.menu_button.active span.bar::after {
		top: 0;
		rotate: 135deg;
	}

	#header_search_submit {
		max-width: 300px;
		width: 100%;
		border-width: 2px;
	}

	.header_search_inputs .chosen-container-single .chosen-single {
		height: 40px;
		line-height: 40px;
	}

	#global_menu {
		height: 100dvh;
		background: linear-gradient(270deg, #13b9f8 0%, #018bd5 100%);
		padding: 40px 20px;
	}

	#global_menu > ul > li > a {
		height: 50px;
		color: var(--c-base) !important;
		display: grid;
		grid-template-columns: auto 8px;
		place-items: center start;
		column-gap: 10px;
	}

	#global_menu > ul > li > a::after {
		content: "\e910";
		font-family: "design_plus";
		display: inline-block;
	}

	#global_menu a:hover {
		background-color: transparent;
	}

	.global-button {
		max-width: 260px;
		width: 100%;

		.icon {
			display: block;
			height: 19px;
		}

		svg path {
			fill: var(--c-main);
		}
	}

	#global_menu a.global-button {
		display: grid;
		grid-template-columns: 19px auto;
		align-items: center;
		justify-content: center;
		column-gap: 10px;
		margin: 40px auto 0;
		border-radius: 100px;
		background: #ecf9ff;
		font-size: 14px;
		font-weight: 700;
		padding: 18px 10px;
		color: var(--c-main) !important;
	}

	.burger_logo {
		display: block;
		text-align: center;
		margin-top: 40px;
	}

	#global_menu .current-menu-item > a {
		background-color: transparent;
	}
}

@media only screen and (max-width: 767px) {
	#header_slider {
		height: 626px;

		.slick-list {
			height: 626px !important;
		}

		.slick-track {
			height: 100%;
		}
	}

	#index_header_search .inner {
		padding: 0;
	}

	.has_header_content #index_header_search {
		margin-top: -306px;
		padding: 20px;
	}
}

/* ----------------------------------------------------------------------
	フッター
---------------------------------------------------------------------- */
#footer_nav {
	padding: 60px 20px;
	background-color: #ecf9ff;
}

#footer_nav a:not(.head),
#footer_nav .footer_nav_2 a {
	text-decoration: underline;
	color: var(--c-main);
	transition: opacity 0.3s;
}

@media (any-hover: hover) {
	#footer_nav a:not(.head):hover,
	#footer_nav .footer_nav_2 a:hover {
		opacity: 0.4;
	}
}

#footer_nav .footer_nav_cols .footer_nav_type1 li {
	min-width: 0%;
	padding-right: 0;
}

#footer_nav .footer_nav_type1 li:after {
	content: "|";
	padding: 0 0.5em;
}

#footer_widget {
	display: none;
}

#footer_social_link {
	display: none;
}

#footer_info {
	padding: 60px 0 20px;
}

#footer_contents {
	background: linear-gradient(270deg, #13b9f8 0%, #018bd5 100%);
}

#footer_bottom_menu {
	margin: 30px 0 50px;
}

#footer_bottom_menu ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

#footer_bottom_menu li:after {
	display: none;
}

#footer_bottom_menu li {
	font-weight: 700;
}

#footer_contents a {
	transition: opacity 0.3s;
}

#footer_contents a:hover {
	color: var(--c-base);
	opacity: 0.8;
}

#copyright {
	position: static;
	width: 100%;
	text-align: center;
	transform: initial;
	font-size: 10px;
	line-height: calc(18 / 10);
	letter-spacing: 0.5px;
}

@media screen and (max-width: 1024px) {
	#footer_nav .footer_nav_type1 li {
		min-width: 0 !important;
	}

	#footer_nav .footer_nav_type1 li:after {
		padding: 0 10px;
	}

	#footer_nav li li:before {
		padding: 0 10px;
	}

	#footer_contents {
		padding: 0;
	}

	#footer_contents .inner {
		padding: 0;
	}

	#footer_info {
		padding-bottom: 0;
	}

	#copyright {
		margin: 50px 0 0;
		background-color: transparent;
		font-size: 14px;

		a {
			font-size: 10px;
		}
	}

	#copyright span {
		display: inline-block;
	}
}

@media screen and (max-width: 767px) {
	#footer_nav {
		padding: 30px 0;
	}

	#footer_nav .footer_nav_type2 > ul > li > a.head {
		display: block;
	}

	#footer_nav li li:first-child:before {
		display: none;
	}

	#footer_info {
		display: flex;
		flex-direction: column;
	}

	#footer_logo {
		order: 2;
	}

	#footer_bottom_menu {
		order: 1;
		margin: 0 0 30px;
	}

	#footer_bottom_menu ul {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	#footer_bottom_menu li {
		font-size: 14px;
	}

	#copyright {
		order: 3;
		margin-top: 30px;
	}
}

/* ----------------------------------------------------------------------
	トップページ
---------------------------------------------------------------------- */
.home-default .mv_wrapper {
	position: relative;
}
.home-default #main_col {
	margin: 0;
}

.intro {
	padding: 120px 0 140px;
	background: url(../img/top/bg-intro.webp) no-repeat center center / cover;
}

.intro_inner {
	padding: 0 20px;
	max-width: 1040px;
}

.intro_title {
	font-family: var(--f-min);
	color: var(--c-main);
	font-size: 45px;
	font-weight: 400;
	letter-spacing: 2.25px;
	line-height: calc(67 / 45);
}

.intro_text {
	font-size: 16px;
	line-height: calc(35 / 16);
	letter-spacing: 0.8px;
	margin-top: 40px;
}

@media screen and (max-width: 1024px) {
	.intro_title {
		font-size: 40px;
	}
}

@media screen and (max-width: 768px) {
	.intro {
		padding: 60px 0;
		background-image: url(../img/top/sp/bg-intro.webp);
	}

	.intro_title {
		font-size: 30px;
	}

	.intro_text {
		font-size: 14px;
		margin-top: 20px;
	}
}

#index_news {
	height: 60px;
	line-height: 60px;
	border-color: var(--border-main);
}

#index_news .inner {
	padding: 0 20px;
	height: inherit;
}

#index_news ol li a {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.7px;
	color: var(--text-main);
	opacity: 0.4;
}

#index_news .entry-date {
	color: var(--text-main);
	font-family: var(--f-en);
	margin-right: 30px;
}

#index_news .archive_link {
	right: 20px;
}

#index_news .archive_link a {
	color: var(--c-main);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.7px;
}
@media screen and (max-width: 1024px) {
	#index_news_mobile {
		border-bottom: none;
	}

	#index_news_mobile .entry-date {
		color: var(--text-main);
		font-family: var(--f-en);
		opacity: 0.4;
		font-weight: 500;
	}

	#index_news_mobile .mobile_title {
		font-size: 14px;
		color: var(--text-main);
		opacity: 0.4;
		letter-spacing: 0.7px;
		font-weight: 500;
	}

	.news-mobile_archive_link {
		padding-bottom: 20px;
		border-bottom: solid 1px var(--border-main);
		margin-top: 20px;
	}

	.news-mobile_archive_link a {
		display: grid;
		grid-template-columns: auto 8px;
		align-items: center;
		background-color: #65a1c6;
		max-width: 300px;
		margin-inline: auto;
	}

	.news-mobile_archive_link a::after {
		content: "\e910";
		font-family: "design_plus";
		display: inline-block;
	}

	.news-mobile_archive_link a:hover {
		background-color: #65a1c6;
	}
}

.home-default .cb_content-carousel {
	padding: 144px 0 80px;
	margin-bottom: 0;
}

.home-default #cb_0 .cb_headline {
	font-family: var(--f-jp);
	color: var(--c-main);
	font-size: 36px;
	letter-spacing: 1.8px;
	line-height: 1.8em;
	margin: 0;
	position: relative;

	.bubble {
		position: absolute;
		content: "";
		color: var(--c-base);
		font-family: var(--f-en);
		background-color: var(--c-main);
		font-size: 14px;
		letter-spacing: 0.7px;
		line-height: 1;
		padding: 12px 20px;
		border-radius: 100px;
		left: 50%;
		top: -50px;
		translate: -50% 0;
	}

	.bubble::after {
		position: absolute;
		content: "";
		width: 16px;
		height: 16px;
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		background-color: var(--c-main);
		bottom: -12px;
		left: 50%;
		translate: -50% 0;
	}
}

.home-default #cb_0 .cb_desc {
	color: var(--c-main);
	line-height: 1.8em;
	text-align: center;
}

.home-default .cb_content-carousel .image {
	border-radius: 20px;
}

.home-default .cb_content-carousel .image .title {
	background-color: rgb(var(--rgb-main) / 0.7);
	color: var(--bg-main);
}

.home-default .cb_content-carousel a:hover .image .title {
	color: var(--bg-main);
}

.home-default .cb_content-carousel .excerpt {
	color: var(--text-main);
	font-size: 14px;
	line-height: calc(18 / 14);
}

.home-default .cb_content-carousel .slick-arrow {
	color: var(--c-main);
	width: 30px;
	height: 30px;
	top: 50%;

	svg {
		width: 100%;
		height: 100%;
	}
}

@media screen and (max-width: 767px) {
	.cb_content-carousel .excerpt {
		display: block;
	}

	.home-default .cb_content-carousel {
		padding: 140px 0 80px;
	}

	.home-default #cb_0 .cb_headline {
		font-size: 26px;

		.bubble {
			font-size: 12px;
		}
	}
}

.service {
	padding: 120px 0 140px;
}

.service_inner {
	max-width: 1040px;
	padding: 0 20px;
}

.service_container {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 40px;
}

.service_head {
	max-width: 420px;
	width: calc(420 / 1000 * 100%);
}

.service_title {
	font-size: 90px;
	color: rgb(151 178 195 / 0.2);
	font-family: var(--f-en);
	font-weight: 600;
	letter-spacing: 4.5px;
	line-height: 1.4em;

	.sub {
		display: block;
		font-size: 20px;
		font-weight: 500;
		letter-spacing: 1px;
		line-height: 1;
		font-family: var(--f-jp);
		color: #97b2c3;
		display: grid;
		grid-template-columns: 18px auto;
		column-gap: 10px;
		align-items: center;
		margin-left: 10px;
	}

	.sub::before {
		content: "";
		width: 18px;
		height: 18px;
		background: linear-gradient(90deg, #97b2c3 0%, rgba(151, 178, 195, 0.2) 100%);
		border-radius: 3px;
	}
}

.service_image {
	margin-top: 60px;

	img {
		width: 100%;
		height: auto;
	}
}

.service_body {
	width: calc(453 / 1000 * 100%);
	max-width: 453px;
}

.service_subheading {
	font-family: var(--f-min);
	font-size: 40px;
	letter-spacing: 2px;
	line-height: calc(60 / 40);
	color: var(--c-main);
	font-weight: 400;
}

.service_text {
	margin-top: 40px;
	line-height: calc(35 / 16);
	font-size: 16px;
	letter-spacing: 0.8px;
}

@media screen and (max-width: 1024px) {
	.service_container {
		flex-direction: column;
	}

	.service_head,
	.service_body {
		max-width: 100%;
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.service {
		padding: 80px 0;
	}

	.service_title {
		font-size: 70px;

		.sub {
			font-size: 14px;
			grid-template-columns: 15px auto;
			column-gap: 5px;
		}

		.sub::before {
			width: 15px;
			height: 15px;
		}
	}

	.service_subheading {
		font-size: 30px;
	}

	.service_text {
		font-size: 14px;
	}
}

/* ----------------------------------------------------------------------
 会社案内
---------------------------------------------------------------------- */
#main_contents .company {
	padding-top: 80px;
}
#main_contents .company__list {
	display: grid;
	grid-template-columns: 240px 1fr;
	max-width: 1000px;
	margin: 0 auto;
}
#main_contents .company__list dt,
#main_contents .company__list dd {
	border-bottom: solid 1px #d5d7d8;
	line-height: 1.5;
	margin-top: -1px;
	padding: 22px 15px;
}
#main_contents .company__list dt {
	font-weight: 700;
}
#main_contents .company__list a {
	opacity: 0.8;
	text-decoration: underline;
}
#main_contents .message {
	padding: 80px 0 100px;
}
#main_contents .message .title {
	font-size: 32px;
	color: var(--c-main);
	font-weight: 700;
	letter-spacing: 1.6px;
	line-height: calc(57 / 32);
	font-family: var(--f-jp);
	position: relative;
	padding-bottom: 20px;
	text-align: center;
	margin-bottom: 60px;
}
#main_contents .message .title::after {
	position: absolute;
	content: "";
	width: 40px;
	height: 2px;
	background: linear-gradient(270deg, #f87189 0%, #13b9f8 100%);
	bottom: 0;
	left: 50%;
	translate: -50% 0;
}
#main_contents .message__wrap {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, calc(50% - 15px));
	grid-template-rows: max-content 1fr;
	gap: 30px 40px;
}
#main_contents .message__img {
	grid-row: 1 / 3;
}
#main_contents .message__img img {
	width: 100%;
	height: auto;
	border-radius: 20px;
}
#main_contents .message__title {
	color: #088bde;
	letter-spacing: 0.05em;
	font-size: 28px;
	line-height: 1.8;
}
#main_contents .message .txt {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	line-height: 1.8;
	font-size: 14px;
	padding-right: 20px;
}

@media only screen and (max-width: 767px) {
	#main_contents .company__list {
		grid-template-columns: 1fr;
	}
	#main_contents .company__list dt {
		border-top: solid 1px #d5d7d8;
		background-color: #f8f9f9;
	}
	#main_contents .company__list dt,
	#main_contents .company__list dd {
		font-size: 14px;
		padding: 14px 10px;
	}
	#main_contents .message {
		padding-bottom: 80px;
	}
	#main_contents .message .title {
		font-size: 26px;
		padding-bottom: 15px;
		margin-bottom: 40px;
	}
	#main_contents .message__wrap {
		grid-template-columns: 1fr;
		grid-template-rows: inherit;
	}
	#main_contents .message__img {
		grid-column: auto;
	}
	#main_contents .message__title {
		grid-row: auto;
		font-size: 20px;
		letter-spacing: 0;
	}
	#main_contents .message .txt {
		grid-column: auto;
		grid-row: auto;
		padding: 0;
	}
}

/* ----------------------------------------------------------------------
 ジョブ価値とは(About)
---------------------------------------------------------------------- */
#main_contents .about {
	padding-bottom: 120px;
	padding: 80px 0 120px;
}
#main_contents .about__wrap {
	display: grid;
	grid-template-columns: 320px 1fr;
	grid-template-rows: max-content 1fr;
	gap: 40px 60px;
}
#main_contents .about__wrap + .about__wrap {
	margin-top: 90px;
}
#main_contents .about__words {
	grid-row: 1 / 3;
	border-right: solid 1px var(--text-main);
}
#main_contents .about__words .en {
	font-size: 54px;
	font-weight: 600;
	font-family: "Outfit", sans-serif;
	letter-spacing: 0.05em;
	color: rgba(151, 178, 195, 0.2);
}
#main_contents .about__words .jp {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: #97b2c3;
	padding-left: 26px;
	position: relative;
	margin-top: 15px;
}
#main_contents .about__words .jp::before {
	content: "";
	width: 16px;
	height: 16px;
	border-radius: 3px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 5px;
	margin: auto;
	background: linear-gradient(90deg, #97b2c3 0%, rgba(151, 178, 195, 0.2) 100%);
}
#main_contents .about__title {
	color: #088bde;
	font-size: 40px;
	line-height: 1.8;
	font-family: var(--f-min);
	font-weight: 400;
}
#main_contents .about__wrap .txt {
	font-size: 14px;
	line-height: 2;
	padding-right: 60px;
}
#main_contents .about__wrap .txt.last {
	grid-row: 1 / 3;
}

@media only screen and (max-width: 1024px) {
	#main_contents .about__wrap {
		grid-template-columns: 220px 1fr;
		gap: 20px 40px;
	}
	#main_contents .about__words .en {
		font-size: 42px;
	}
	#main_contents .about__title {
		font-size: 30px;
	}
	#main_contents .about__wrap .txt {
		padding: 0;
	}
}
@media only screen and (max-width: 767px) {
	#main_contents .about {
		padding: 60px 0 80px;
	}
	#main_contents .about__wrap {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	#main_contents .about__wrap + .about__wrap {
		margin-top: 80px;
	}
	#main_contents .about__words {
		border: none;
		grid-column: auto;
		grid-row: auto;
	}
	#main_contents .about__words .en {
		font-size: 36px;
	}
	#main_contents .about__words .jp {
		font-size: 14px;
	}
	#main_contents .about__title {
		font-size: 32px;
		line-height: 1.4;
	}
	#main_contents .about__wrap .txt,
	#main_contents .about__wrap .txt.last {
		grid-column: auto;
		grid-row: auto;
	}
}

/* ----------------------------------------------------------------------
	求人情報一覧
---------------------------------------------------------------------- */
.blog #main_col {
	margin: 80px auto 140px;
}

.blog #post_list {
	margin: 60px 0 0 0;
}

#post_list .article .image {
	border-radius: 20px;
}

#post_list .article .title {
	height: auto;
	font-size: 14px;
	line-height: normal;
}

#post_list .article a {
	line-height: 22px;
}

#post_list ul.meta li.date .entry-date {
	font-family: var(--f-en);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.7px;
}

#post_list ul.meta li.date {
	color: var(--text-main);
	opacity: 0.4;
}

.blog .page_navi p.back a {
	background: linear-gradient(270deg, #13b9f8 0%, #018bd5 100%);
	transition: opacity 0.3s;
	font-weight: 700;
}

ul.page-numbers a,
ul.page-numbers span {
	color: #2c363c;
	background-color: #f1f1f1;
	border-radius: 50%;
}

ul.page-numbers .prev,
ul.page-numbers .next {
	background: none;
}

ul.page-numbers span.current {
	background-color: #088bde;
	color: #fff;
}

@media (any-hover: hover) {
	.blog .page_navi p.back a:hover {
		opacity: 0.8;
	}

	ul.page-numbers a:hover {
		background-color: #ecf9ff;
		color: #088bde;
	}
}

@media screen and (max-width: 1024px) {
	.blog #main_contents {
		margin-top: 0px;
	}
}

@media screen and (max-width: 767px) {
	.blog #main_col {
		margin: 60px auto 80px;
	}

	#post_list .article {
		margin-bottom: 40px;
	}

	.blog .page_navi p.back a {
		line-height: 60px;
		max-width: 280px;
		width: 100%;
		border-radius: 100px;
	}

	.page_navi2 {
		display: none;
	}

	ul.page-numbers a,
	ul.page-numbers span {
		background-color: #f1f1f1;
	}
}

@media only screen and (max-width: 600px) {
	#post_list .article {
		width: 100%;
		margin: 0 0 40px 0;
	}

	#post_list .article:nth-child(2n) {
		margin-left: 0;
	}
}

/* ----------------------------------------------------------------------
	検索結果
---------------------------------------------------------------------- */
.archive #main_col:has(.custom_search_results) {
}
.archive_header .headline {
	color: #088bde;
	font-size: 32px;
	letter-spacing: 0.05em;
	font-family: var(--f-jp);
}

#left_col {
	width: 100%;
}

.archive_sort {
	max-width: 560px;
}

.archive_sort dt {
	background-color: #088bde;
	font-size: 14px;
}

.archive_sort dd a {
	font-size: 14px;
	font-weight: 500;
}

.archive_sort dd a.active {
	background-color: #ecf9ff;
	color: #088bde;
}

.custom_search_results .page_navi2 {
	margin: 0;
}

.page_navi2 p {
	border: none;
	padding: 0;
}

#post_list2 {
	margin: 10px 0 15px;
}

#post_list2 .article {
	border-left: none;
	border-right: none;
}

#post_list2 .article .image {
	border-radius: 20px;
	overflow: hidden;
}

@media only screen and (max-width: 1024px) {
	.archive_sort dt {
		color: #97b2c3;
	}

	#post_list2 .article a {
		padding: 15px 0;
	}

	#post_list2 .article .image {
		border-radius: 10px;
	}
}

@media only screen and (max-width: 480px) {
	#post_list2 .article .meta li span:nth-child(n + 2) {
		display: inline-block;
	}

	#post_list2 .article .title {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}
}

/* ----------------------------------------------------------------------
	求人詳細
---------------------------------------------------------------------- */
body.single-post #main_col {
	max-width: 1000px;
	margin: 60px auto 100px;
}

.single-post #left_col {
	width: 100%;
}

.single-post #post_meta_bottom,
.single-post #previous_next_post_image,
.single-post #related_post {
	display: none;
}

.single-post #article_header {
	background: var(--c-base);
	padding: 0 20px;
	border: none;
}

.single-post #article_header #post_title {
	color: var(--text-main);
	padding-bottom: 0;
	font-size: 32px;
	line-height: normal;
	font-weight: 700;
	text-align: left;
	margin-bottom: 10px;
}

.single-post #post_title::after {
	display: none;
}

.single-post ul.meta li.new {
	font-size: 12px;
	font-weight: 700;
	color: var(--c-base);
	background-color: #ee3556;
	padding: 8px 20px;
	margin: 0 6px 0 0;
	border-radius: 100px;
}

.single-post ul.meta li.cat a {
	font-weight: 700;
	font-size: 12px;
}

.single-post #post_date .entry-date {
	font-family: var(--f-en);
}

.single-post #post_date {
	color: var(--text-main);
	opacity: 0.4;
}

.single_slider {
	margin-top: 30px;

	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 20px;
	}

	.swiper-slide {
		border-radius: 20px;
	}
}

.slider-thumbnail {
	margin-top: 15px;

	.swiper-wrapper {
		justify-content: center;
		gap: 15px;
	}

	.swiper-slide {
		width: 70px !important;
		border-radius: 8px;

		img {
			border-radius: 8px;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}
}

.single_slider_thumbs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 15px;
}

.single_slider_thumb {
	width: 70px;
	border-radius: 8px;
	opacity: 0.5;
	cursor: pointer;

	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 8px;
	}
}

.single_slider_thumb.thumb-media-active {
	opacity: 1;
}

.post_content section:not(:last-child),
.box {
	padding-bottom: 60px;
}

.single-post .post_content {
	margin-top: 30px;
}

.post_content ul {
	list-style: none;
	margin: 0;
}

.post_content ul.job-info {
	display: grid;
	row-gap: 20px;
}

.post_content ul.job-info li {
	display: grid;
	grid-template-columns: 18px auto;
	column-gap: 10px;
	align-items: center;
	font-size: 18px;
	font-weight: 500;
	line-height: normal;
}

.post_content ul.job-info li .svg-icon {
	width: 18px;
	height: 18px;
}

.post_content ul.job-info li svg path {
	width: 100%;
	height: 100%;
	fill: var(--c-main);
}

.btn-entry-area {
	max-width: 500px;
	width: 100%;
	margin: 50px auto 0;

	p:not(.entry):not(.easy) {
		display: none;
	}
}

.btn-entry-area a {
	width: 100%;
	display: block;
	color: var(--c-base);
	background: linear-gradient(270deg, #13b9f8 0%, #018bd5 100%);
	border-radius: 100px;
	text-decoration: none;
	height: 83px;
	padding: 15px 10px;
	transition: opacity 0.3s;

	.entry {
		font-size: 24px;
		font-weight: 700;
		letter-spacing: 1.2px;
		line-height: 1;
		text-align: center;
		margin-bottom: 0;
		color: var(--c-base);
		text-decoration: none;
	}

	.easy {
		line-height: 1;
		margin-bottom: 0;
		text-align: center;
		margin-top: 5px;
		color: #ffef0f;
		font-size: 16px;
		letter-spacing: 0.8px;
		line-height: calc(28 / 16);
		font-weight: 700;
		width: max-content;
		margin-inline: auto;
	}

	.easy::before {
		content: "\\";
		margin-right: 5px;
	}
	.easy::after {
		content: "/";
		margin-left: 5px;
	}
}

.post_content a:hover {
	text-decoration: none;
}
@media (any-hover: hover) {
	.btn-entry-area a:hover {
		opacity: 0.8;
	}
}

.single-post .post_content h2 {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1.2px;
	line-height: calc(43 / 24);
	padding: 5px 0 5px 15px;
	border-left: solid 4px var(--c-main);
	background-color: #f0f9ff;
	margin-bottom: 30px;
}

.single-post .post_content h3.title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: normal;
	padding: 7px 0 7px 15px;
	border-bottom: solid 2px var(--c-main);
	position: relative;
	margin-bottom: 30px;
}

.single-post .post_content h3.title::after {
	position: absolute;
	content: "";
	width: 76px;
	height: 2px;
	background-color: #f0f9ff;
	bottom: -2px;
	left: 0;
}

.ws-pre-wrap.pre-space {
	padding: 0 20px;
}

.tag-group,
.subContent {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 0 20px;
	margin-bottom: 20px;

	br {
		display: none;
	}

	.tag,
	.label {
		display: block;
		border-radius: 100px;
		color: var(--c-main);
		font-size: 16px;
		line-height: calc(28 / 16);
		letter-spacing: 0.8px;
		background-color: var(--bg-main);
		padding: 10px 40px;
		font-weight: 700;
	}
}

.job-wrap:not(:last-child),
.content-wrap {
	margin-bottom: 30px;
}

.post_content div:has(dl),
.table,
.work-hours {
	border-bottom: solid 1px var(--border-main);
	margin: 0 20px;

	dl {
		display: grid;
		grid-template-columns: 240px auto;
		border-top: solid 1px var(--border-main);
		margin-bottom: 0;
	}

	dt {
		display: grid;
		place-items: center start;
		padding: 24px 15px 25px;
		background-color: rgba(44, 54, 60, 0.03);
	}

	dt h3 {
		font-size: 14px;
		padding: 0;
		font-weight: 700;
		letter-spacing: 0.7px;
		line-height: calc(21 / 14);
		padding: 0;
		margin-bottom: 0;
	}

	dd,
	dd.ws-pre-wrap.pre-space {
		display: grid;
		place-items: center start;
		padding: 14px 15px;
		margin-bottom: 0;
		letter-spacing: 0.7px;
		line-height: calc(21 / 14);
	}

	.map-icon {
		display: none;
	}

	.ws-pre-wrap.pre-space {
		padding: 0;
		margin: 0;
		line-height: calc(21 / 14);
	}

	.content-wrap {
		margin-bottom: 0;
	}

	dd p {
		margin-bottom: 0;
		line-height: calc(21 / 14);
	}

	dd p:not(:first-of-type) {
		margin-top: 20px;
	}

	dd p.title + p {
		margin-top: 0;
	}
}

.post_content dd a {
	color: var(--text-main);
	text-decoration: underline;
}

@media screen and (max-width: 1024px) {
	ul.meta li.cat a,
	ul.meta li.cat span {
		padding: 2px 15px;
		border-radius: 100px;
	}
}

@media screen and (max-width: 767px) {
	body.single-post #main_col {
		margin: 40px auto 80px;
	}

	.single-post #article_header #post_title {
		font-size: 20px;
	}

	.single-post ul.meta li.new {
		padding: 7px 15px;
		margin-right: 0;
	}

	.single_slider_thumbs {
		gap: 10px;
	}

	.single_slider_thumb {
		border-radius: 5px;
	}

	.post_content ul.job-info {
		row-gap: 10px;
	}

	.post_content ul.job-info li {
		font-size: 14px;
		grid-template-columns: 14px auto;
		column-gap: 5px;
	}

	.post_content ul.job-info li .svg-icon {
		width: 14px;
		height: 14px;
	}

	.btn-entry-area {
		max-width: 300px;
	}

	.btn-entry-area a {
		height: 64px;
		padding: 9px 10px;

		.entry {
			font-size: 20px;
		}

		.easy {
			font-size: 14px;
			margin-top: 5px;
		}
	}

	.post_content section:not(:last-child),
	.box {
		padding-bottom: 40px;
	}

	.single-post .post_content h2 {
		font-size: 20px;
	}

	.single-post .post_content h3.title {
		font-size: 18px;
	}

	.single-post .post_content h3.title::after {
		width: 26px;
	}

	.ws-pre-wrap.pre-space {
		padding: 0 10px;
	}

	.tag-group,
	.subContent {
		padding: 0 10px;
		.tag,
		.label {
			font-size: 14px;
			padding: 8px 20px;
		}
	}

	.post_content div:has(dl),
	.table,
	.work-hours {
		margin: 0 10px;

		dl {
			grid-template-columns: auto;
		}

		dt {
			padding: 14px 10px;
			border-bottom: solid 1px var(--border-main);
		}
	}
}

/* ----------------------------------------------------------------------
	お知らせ詳細
---------------------------------------------------------------------- */
#article.news {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}

#article.news .article_inner {
	border: none;
	padding: 0;
}

#article.news .news__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	display: block;
}

.single-news #article #post_date {
	margin: 10px 0 28px;
}

.single-news .post_content a,
.single-news .custom-html-widget a {
	color: #4dace8;
	text-decoration: underline;
}

.single-news .post_content h1,
.single-news .post_content h2,
.single-news .post_content h3,
.single-news .post_content h4,
.single-news .post_content h5,
.single-news .post_content h6 {
	margin: 0 0 20px 0;
	font-weight: 700;
	line-height: 1.5;
}

.single-news .post_content h2 {
	font-size: 24px;
}

.single-news .post_content h3 {
	color: #3d667f;
	background-color: #ecf9ff;
	padding: 10px 20px;
}

.single-news .post_content h4 {
	border-bottom: solid 1px #3d667f;
	color: #3d667f;
	font-size: 18px;
	padding-bottom: 10px;
	padding-left: 25px;
	position: relative;
}

.single-news .post_content h4::before {
	content: "";
	background-color: #97b2c3;
	position: absolute;
	top: 17px;
	left: 0;
	width: 15px;
	height: 15px;
}

.single-news .post_content h5 {
	color: #3d667f;
	font-size: 16px;
	padding-left: 25px;
	position: relative;
}

.single-news .post_content h5::before {
	content: "";
	background-color: #97b2c3;
	position: absolute;
	top: 23px;
	left: 0;
	width: 15px;
	height: 1px;
}

.single-news .post_content h6 {
	color: #3d667f;
	font-size: 16px;
	padding-left: 25px;
	position: relative;
}

.single-news .post_content h6::before {
	content: "";
	background-color: #c0e8ff;
	border-radius: 50%;
	position: absolute;
	top: 15px;
	left: 0;
	width: 15px;
	height: 15px;
}

.single-news .post_content th {
	border: solid 1px #cfd9df;
	vertical-align: middle;
}

.single-news .post_content th,
.single-news .post_content td:first-child {
	background-color: #f1f1f1;
	font-weight: 700;
}

.single-news .post_content .q_button {
	background-color: #088bde;
	min-width: 280px;
	border-radius: 100px;
	padding: 15px;
	position: relative;
	box-shadow: none;
}

.single-news .post_content .q_button::after {
	content: "";
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	margin: auto;
	width: 6px;
	height: 6px;
	transform: rotate(45deg);
}

#previous_next_post {
	margin-bottom: 30px;
	display: flex;
	gap: 30px;
}

#previous_next_post a {
	border: solid 1px var(--border-main);
}

#previous_next_post .prev_post + .next_post a {
	border-left: solid 1px var(--border-main);
}

#previous_next_post .prev_post .title,
#previous_next_post .next_post .title {
	color: var(--text-main);
	opacity: 0.6;
	font-weight: 500;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

#article.news .btn {
	max-width: 280px;
	width: 100%;
	height: 60px;
	background: linear-gradient(90deg, #13b9f8, #018bd5);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	font-weight: 700;
	font-size: 100%;
	margin: 0 auto;
	color: #fff !important;
	text-decoration: none;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	transition: all 0.3s ease-in-out 0s;
}

@media (any-hover: hover) {
	#article.news .btn:hover {
		opacity: 0.8;
	}
}

@media only screen and (max-width: 767px) {
	body.single-news #main_col {
		margin: 30px 0 80px;
	}
	#article.news .news__title {
		font-size: 24px;
	}

	.single-news .post_content h2 {
		font-size: 20px;
	}

	.single-news .post_content h3 {
		font-size: 18px;
	}

	.single-news .post_content h6 {
		font-size: 14px;
	}

	#previous_next_post {
		margin: 30px 0 20px;
		gap: 5px;
	}

	#previous_next_post .prev_post .title,
	#previous_next_post .next_post .title {
		display: none;
	}

	#previous_next_post a {
		height: 60px;
		line-height: 60px;
	}

	#previous_next_post .prev_post a:after,
	#previous_next_post .next_post a:after {
		display: block;
		font-size: 14px;
		font-weight: 500;
		letter-spacing: 0.7px;
		color: var(--text-main);
		opacity: 0.6;
	}

	.post_content .s_table::-webkit-scrollbar {
		background-color: rgba(3, 50, 82, 0.1);
		height: 5px;
	}
	.post_content .s_table::-webkit-scrollbar-track {
		background-color: rgba(3, 50, 82, 0.1);
		height: 5px;
	}
	.post_content .s_table::-webkit-scrollbar-thumb {
		height: 5px;
		background-color: rgba(3, 50, 82, 0.2);
	}
}

/* ----------------------------------------------------------------------
 お問い合わせ
---------------------------------------------------------------------- */
#main_contents .form {
	padding: 80px 0 100px;
}
#main_contents .form > * {
	box-sizing: border-box;
}
#main_contents .caution {
	color: #ee3556;
}
#main_contents .form__heading {
	max-width: 1000px;
	margin-inline: auto;
	padding: 10px 20px;
	font-size: 18px;
	font-weight: 700;
	line-height: calc(27 / 18);
	opacity: 0.8;
	background-color: #ecf9ff;
}
#main_contents .form__txt {
	max-width: 676px;
	margin: 30px auto;
	font-size: 14px;
	line-height: 1.8;
}
#main_contents .form_area {
	max-width: 1000px;
	margin: 0 auto;
}
#main_contents .form_area th {
	width: 240px;
}
#main_contents .form_area th,
#main_contents .form_area td {
	border-top: solid 1px #d5d7d8;
	border-bottom: solid 1px #d5d7d8;
	font-size: 14px;
	text-align: left;
	padding: 16px 15px;
	vertical-align: middle;
}
#main_contents .form_area.confirm th,
#main_contents .form_area.confirm td {
	padding: 25px 15px;
}
#main_contents .form_area td input[type="text"],
#main_contents .form_area td input[type="email"],
#main_contents .form_area td textarea {
	border: solid 1px #d5d7d8;
	border-radius: 5px;
	padding: 15px;
	width: 100%;
	font-size: 14px;
}
#main_contents .form_area td textarea {
	height: 150px;
}
#main_contents .form_area td input[type="text"]::placeholder,
#main_contents .form_area td input[type="email"]::placeholder,
#main_contents .form_area td textarea::placeholder {
	color: #ccc;
}
#main_contents .form_area .addressbox_top {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 60px;
	margin-bottom: 10px;
}
#main_contents .form_area .addressbox_num {
	display: grid;
	grid-template-columns: 90px max-content 90px;
	align-items: center;
	gap: 10px;
}
#main_contents .form_area .addressbox_place {
	display: grid;
	grid-template-columns: 60px 190px;
	align-items: center;
	gap: 10px;
}
#main_contents .form_area .select_wrap {
	position: relative;
}
#main_contents .form_area .select_wrap::after {
	content: "";
	width: 6px;
	height: 6px;
	border-bottom: solid 1px #000;
	border-right: solid 1px #000;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	transform: rotate(45deg);
	pointer-events: none;
}
#main_contents .form_area .select_wrap select {
	border: solid 1px #d5d7d8;
	border-radius: 5px;
	padding: 15px;
	width: 100%;
	font-size: 14px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
#main_contents .form_area .telbox {
	display: flex;
	align-items: center;
	gap: 10px;
}
#main_contents .form_area .form__radio-wrap {
	display: flex;
	align-items: center;
	gap: 15px 30px;
	padding: 12px 0;
}
#main_contents .form_area input[type="radio"] {
	appearance: none;
	width: 17px;
	height: 17px;
	border-radius: 100%;
	border: solid 1px var(--border-main);
	background-color: var(--c-base);
	margin: 0;
	padding: 0;
	position: relative;
	display: grid;
	place-items: center;
}
#main_contents .form_area input[type="radio"]::after {
	position: absolute;
	content: "";
	width: 11px;
	height: 11px;
	background-color: var(--c-main);
	border-radius: 100%;
	opacity: 0;
}
#main_contents .form_area input[type="radio"]:checked::after {
	opacity: 1;
}
#main_contents .form_area label:has(input[type="radio"]) {
	cursor: pointer;
	display: flex;
	align-items: center;
	column-gap: 5px;
}
#main_contents .form_area label span {
	font-size: 16px;
	line-height: calc(24 / 16);
	letter-spacing: 0.8px;
	display: block;
}
#main_contents .form_area .is-error {
	display: block;
	color: #ee3556;
	margin-top: 5px;
	font-size: 12px;
}
#main_contents .form_area .privacy {
	margin-top: 30px;
}
#main_contents .form_area .privacy_wrap {
	box-sizing: border-box;
	max-width: 860px;
	margin: 0 auto;
	border: solid 1px #2c363c;
	padding: 30px;
	height: 217px;
	overflow-y: scroll;
}
#main_contents .form_area .privacy_title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}
#main_contents .form_area .privacy_title:not(:first-of-type) {
	margin-top: 20px;
}
#main_contents .form_area .privacy .txt {
	font-size: 14px;
	line-height: 1.5;
}
#main_contents .form_area .privacy li {
	font-size: 14px;
	line-height: 1.5;
	padding-left: 14px;
	position: relative;
}
#main_contents .form_area .privacy li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
#main_contents .form_area .privacyAgree {
	text-align: center;
	margin-top: 20px;
}
#main_contents .form_area .privacyAgree__check {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}
#main_contents .form_area .privacyAgree label {
	font-size: 14px;
	position: relative;
	padding-left: 24px;
	cursor: pointer;
}
#main_contents .form_area .privacyAgree label::before {
	content: "";
	width: 14px;
	height: 14px;
	border: solid 1px #2c363c;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
#main_contents .form_area .privacyAgree label::after {
	content: "";
	border-bottom: solid 2px #088bde;
	border-left: solid 2px #088bde;
	width: 10px;
	height: 6px;
	position: absolute;
	top: -3px;
	bottom: 0;
	left: 2px;
	margin: auto;
	transform: rotate(-45deg);
	opacity: 0;
}
#main_contents .form_area .privacyAgree__check:checked + label::after {
	opacity: 1;
}
#main_contents .form .btn-area {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 30px;
	margin-top: 30px;
}
#main_contents .form .btn-area .btn {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 100px;
	width: 280px;
	height: 60px;
	background-color: #088bde;
	color: #fff;
	font-family: var(--f-jp);
	font-weight: 700;
}
#main_contents .form .btn-area .btn.cancel {
	color: #2c363c;
	background-color: #d5d7d8;
}
#main_contents .form__title {
	font-size: 26px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
	line-height: 1.5;
}
#main_contents .form__title + .txt {
	font-size: 14px;
	line-height: 2;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	#main_contents .form {
		padding: 60px 0 80px;
	}
	#main_contents .form__heading {
		font-size: 16px;
	}
	#main_contents .form_area {
		border-top: solid 1px #d5d7d8;
	}
	#main_contents .form_area th,
	#main_contents .form_area td {
		display: block;
		padding: 20px 10px;
		width: 100%;
		box-sizing: border-box;
	}
	#main_contents .form_area th {
		border: none;
		background-color: #f8f9f9;
	}
	#main_contents .form__title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	#main_contents .form_area .addressbox_place {
		grid-template-columns: 60px 1fr;
		width: 100%;
	}
	#main_contents .form_area .privacy_wrap {
		padding: 15px;
	}
	#main_contents .form_area.confirm th,
	#main_contents .form_area.confirm td {
		padding: 20px 10px;
	}
}

/* ----------------------------------------------------------------------
 お知らせ一覧
---------------------------------------------------------------------- */
.archive #main_col:has(#recent_news) {
	max-width: 1000px;
	margin: 80px auto 140px;
}

.archive #left_col {
	width: 100%;
}

#recent_news {
	margin: 0 0 60px 0;
}

#recent_news .headline {
	font-size: 32px;
	color: var(--c-main);
	font-weight: 700;
	letter-spacing: 1.6px;
	line-height: calc(57 / 32);
	font-family: var(--f-jp);
	position: relative;
	padding-bottom: 20px;
	text-align: center;
	margin-bottom: 60px;
}

#recent_news .headline::after {
	position: absolute;
	content: "";
	width: 40px;
	height: 2px;
	background: linear-gradient(270deg, #f87189 0%, #13b9f8 100%);
	bottom: 0;
	left: 50%;
	translate: -50% 0;
}

#recent_news li,
#recent_news ol {
	border-bottom: solid 1px var(--border-main);
}

#recent_news .show_date li .date {
	font-family: var(--f-en);
	font-size: 14px;
	font-weight: 400;
	color: var(--text-main);
	opacity: 0.4;
}

#recent_news li a {
	color: var(--text-main);
	transition: opacity 0.3s;
}

#recent_news li a:hover {
	color: var(--text-main);
}

@media (any-hover: hover) {
	#recent_news li a:hover {
		opacity: 0.8;
	}
}

.archive .page_navi p.back a {
	background: linear-gradient(270deg, #13b9f8 0%, #018bd5 100%);
	font-weight: 700;
	transition: opacity 0.3s;
}

@media (any-hover: hover) {
	.archive .page_navi p.back a:hover {
		opacity: 0.8;
	}
}

@media screen and (max-width: 1024px) {
	.post-type-archive-news #recent_news .show_date li .date {
		color: var(--text-main);
		opacity: 0.4;
	}
}

@media screen and (max-width: 767px) {
	.archive #main_col:has(#recent_news) {
		margin: 60px auto 80px;
	}

	.archive .page_navi p.back a {
		max-width: 280px;
		width: 100%;
		min-height: 60px;
		line-height: 60px;
		border-radius: 100px;
	}
}
