@charset "utf-8";
/* head,text */
:root .page-header{
	max-width:1820px;
	width:94.8%;
	margin:0 auto;
	border-radius:10px;
	position:relative;
	text-align: left;
}
:root .page-header .container{
	padding-inline:0;
}
:root .page-header:before{
	content:"";
	width:326px;
	height:375px;
	background:url(../img/common/img-article.png) no-repeat center / contain;
	position:absolute;
	inset: auto 5% -16% auto;
	margin:auto;
	z-index: 10;
	opacity: 1;
}
:root .page-header .page-header-title{
	font-size:min(2.7vw,3rem);
	font-weight:bold;
}
:root .page-header .page-header-subtext{
	font-size:1.25rem;
	font-weight:500;
	font-family: "Poppins", sans-serif;
	margin-top: 0.75em;
}
:root .site-body :is(h2,h3,h4,h5,h6){
	position:relative;
	z-index:5;
	margin-bottom:1em;
}
:root .site-body :is(h2,h3,h4,h5,h6).has-text-align-left{
	text-align:left;
}
:root .site-body h2{
	font-size: 2rem;
	font-weight:bold;
	text-align:center;
	padding-top: 0.75em;
	margin-bottom: 1.5em;
}
:root .site-body h2:before,
:root .site-body h2:after{
	content:"";
	width:2.75rem;
	height:3px;
	background:var(--h2-color);
	position:absolute;
	inset:0 0 auto 0;
	margin:auto;
}
:root .site-body h2:before{
	--h2-color:var(--keycolor);
}
:root .site-body h2:after{
	--h2-color:var(--accent03);
	width: 0.6875em;
	left: 0.6875em;
}
:root .site-body h2.has-text-align-left:before,
:root .site-body h2.has-text-align-left:after{
	inset:0 auto auto 0;
}
:root .site-body h2.has-text-align-left:after{
	left: 0.6875em;
}
:root .site-body h3{
	font-size:1.75rem;
	font-weight:bold;
	padding-bottom:0.5em;
	border-bottom:1px solid #cdd0d2;
}
:root .site-body h3:before{
	content:"";
	width:100px;
	height:2px;
	background:var(--keycolor);
	position:absolute;
	inset:auto auto -1px 0;
	margin:auto;
}
:root .site-body h4{ 
	font-size:1.5rem;
	font-weight:bold;
	color:var(--keycolor);
}
:root .site-body h5{ 
	font-size:1.25rem;
	font-weight:bold;
}
:root .site-body h6{ 
	font-size:1.125rem;
	font-weight:500;
}
p.text,
.texts>p {
	font-size: 1rem;
	line-height: 1.875;
	text-align: left;
}
.f_small {
	font-size: 0.875rem;
}
.mb1em {
	margin-bottom: 1.875em;
}
.mb2em {
	margin-bottom: 3.75em;
}
@media screen and (min-width: 769px) {
	.pc_center {
		text-align: center !important;
	}
}
.limit_lh p {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
@media screen and (max-width:1300px) {
	:root .page-header .container{
		padding-inline:15px;
	}
}
@media screen and (max-width: 768px) {
	p.text,
	.texts>p {
		font-size: 1rem;
	}
	:root .page-header{
		width:calc(100% - 30px);
		margin:0 auto;
		border-radius:5px;
		min-height: 15em;
		padding-block: 1em;
	}
	:root .page-header:before{
		width: 110px;
		height: 127px;
		inset: auto 2% -9% auto;
	}
	:root .page-header .page-header-title{
		font-size:2rem;
	}
	:root .site-body h2{
		font-size:1.71rem;
		margin-bottom:1em;
	}
	:root .site-body h2:before,
	:root .site-body h2:after{
		height:2px;
	}
	:root .site-body h2:before{
		width:2rem;
	}
	:root .site-body h2:after{
		width: 1rem;
		left: 1rem;
	}
	:root .site-body h3{
		font-size:1.47rem;
	}
	:root .site-body h3:before{
		width:50px;
		height:1px;
	}
	:root .site-body h4{ 
		font-size:1.29rem;
	}
	:root .site-body h5{ 
		font-size:1.14rem;
	}
	:root .site-body h6{ 
		font-size:1.07rem;
	}
}
/* Link */
:root :is(.text_link a,a.text_link) {
	position:relative;
	z-index:10;
	font-size:1rem;
	font-weight:500;
	letter-spacing:0.05em;
	color:var(--fontcolor);
	text-decoration-color:var(--fontcolor);
	text-underline-offset:0.25em;
	padding-right:1.875em;
	margin-right:-1.875em;
}
:root :is(.text_link a,a.text_link)::before,
:root :is(.text_link a,a.text_link)::after {
	position: absolute;
	inset: 50% 0.5em auto auto;
	z-index: 10;
	display: inline-block;
	content: "";
	width: 0.5em;
	aspect-ratio: 1/1;
	background: var(--keycolor);
	border-radius: 100%;
	translate: 0 -50%;
	scale: 1;
	transition: opacity .4s .2s, scale 0s;
}
:root :is(.text_link a,a.text_link)::after {
	right: 0.3em;
	width: 1.0625em;
	aspect-ratio: 17/13;
	mask: url(../img/common/icon-arrow.svg) no-repeat;
	border-radius: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s .2s, scale .6s;
}
:root :is(.block_link a,a.block_link) {
	display: block;
	transition: background 0.4s, color 0.4s, border 0.4s;
}
.block_link a img {
	transition: opacity 0.4s;
}
:root :is(.block_link a,a.block_link):hover {
	text-decoration: none;
}
:root .block_link a:hover img,
:root a:hover img.opacity {
	opacity: 0.7;
	text-decoration: none;
}
:root .img_fit {
	overflow: hidden;
	max-width: fit-content;
	position: relative;
}
:root .img_fit img {
	object-fit: cover;
	transition: transform .4s;
	display: block;
	max-width: 100%;
	max-height: 100%;
}
:root a:hover .img_fit img {
	transform: scale(1.1)
}
:root .btn,
:root .wp-block-button__link{
	--bgcolor: var(--whitecolor);
	--fontcolor: var(--fontcolor);
	--arrowcolor: var(--key_color);
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.5em;
	width: fit-content;
	min-width: 20em;
	min-height: 4.75em;
	font-size: 1rem;
	font-weight: bold;
	color: var(--fontcolor);
	background: var(--bgcolor);
	border-radius: 0.3125em;
	padding: 0.5em 2em;
	padding-right: 4em;
	transition: var(--hover);
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	translate: 0 0;
	filter: var(--filtershadow);
}
:root .wp-block-button__link{
	background-color: var(--wp--preset--color--vk-color-primary);
	color:var(--whitecolor);
}
:root .btn::before,
:root .btn::after,
:root .wp-block-button__link::before,
:root .wp-block-button__link::after{
	position: absolute;
	inset: 50% 2em auto auto;
	z-index: 10;
	display: inline-block;
	content: "";
	width: 0.5em;
	aspect-ratio: 1/1;
	background: var(--keycolor);
	border-radius: 100%;
	translate: 0 -50%;
	scale: 1;
	transition: opacity .4s .2s, scale 0s;
}
:root .wp-block-button__link::before,
:root .wp-block-button__link::after{
	background: var(--whitecolor);
}
:root .btn::after {
	right: 1.7em;
	width: 1.0625em;
	aspect-ratio: 17/13;
	mask: url(../img/common/icon-arrow.svg) no-repeat;
	border-radius: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s .2s, scale .6s;
}
body.post-type-recruit .recruit-category-wrap .btn::after{
	display:none;
}
:root .btn.mt {
	margin-top: 2.5em;
}
body:not(.home) .vk_button .btn::before,
body:not(.home) .vk_button .btn::after {
	background: var(--whitecolor);
}
.post-article_head {
    display:flex;
    flex-wrap:wrap;
    gap: 1em 1.25em;
    align-items:center;
    margin-bottom: 0.75em;
}
.post-article_head time{
    color:#6a6a6a;
}
.post-article_head .post-categories{
    display:flex;
    align-items:center;
    gap:1em;
    margin:0;
    padding:0;
    font-size:0.75rem;
}
.post-article_head .post-categories li{
    margin:0;
    list-style: none;
}
.post-article_head time{
	font-family: "Poppins", sans-serif;
	color:#666666;
}
.post-article_head .post-categories a{
    font-size: 0.875rem;
    padding: 0.25em 0.75em 0.375em;
    background:var(--keycolor);
    color:#fff;
    display: inline-block;
    line-height: 1;
    text-decoration:none;
    border:1px solid var(--keycolor);
    transition:.5s background-color,.5s color;
    border-radius: 30px;
}
body:not(.home) .post-article_head .post-categories a{
	color:var(--white);
}
.post-article_head .ttl{
    font-size: 2.25rem;
    margin: 0 auto 1.25em;
    width:100%;
    border-bottom: solid 1px #ccc;
    padding-bottom: 0.5em;
}
.post-article_end{
	margin-top:3em;
}
.post-article_end a.btn{
	margin:0 auto;
	background:var(--keycolor);
	color:var(--whitecolor);
}
.post-article_end a.btn:before,
.post-article_end a.btn:after{
	background:var(--whitecolor);
}
@media (any-hover: hover) {
	:root :is(.text_link a,a.text_link):hover{
		text-decoration-color:transparent;
	}
	:root .btn:hover,
	:root .wp-block-button__link:hover{
		translate: 0 5px;
		filter: none;
		text-decoration: none;
	}
	:root :is(.text_link a,a.text_link,.btn,.wp-block-button__link):hover::before {
		opacity: 0;
		visibility: visible;
		scale: 100;
		transition: opacity .4s .2s, scale 1.2s;
	}
	:root :is(.text_link a,a.text_link):hover::before {
		scale: 7;
	}
	:root :is(.text_link a,a.text_link,.btn):hover::after {
		opacity: 1;
		visibility: visible;
	}
	body:not(.home) .vk_button .btn:hover{
		opacity:1;
	}
}
@media screen and (max-width:767px) {
	:root :is(.text_link a,a.text_link)::before {
		opacity: 0;
		visibility: hidden;
	}
	:root :is(.text_link a,a.text_link)::after {
		opacity: 1;
		visibility: visible;
	}
	:root .btn {
		min-width: 21.429em;
		margin-inline:auto;
	}
	:root .btn::before {
		opacity: 0;
		visibility: hidden;
	}
	:root .btn::after {
		opacity: 1;
		visibility: visible;
	}
	.post-article_head {
	    gap:0.5em 0.75em;
	}
	.post-article_head .ttl{
	    font-size: 1.786rem;
	    margin: 0 auto 1.25em;
	    width:100%;
	    border-bottom: solid 1px #ccc;
	    padding-bottom: 0.5em;
	}
}
:root .style_news .news_list {
	--border:1px solid #cdd0d2;
	border-top:var(--border);
}
:root .style_news .news_list a {
	display: block;
	text-decoration: none;
	border-bottom:var(--border);
}
:root .style_news .article a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1em;
	min-height: 8.75em;
	padding: 1.25em 0em;
	margin: 0 auto;
	transition: var(--hover);
}
:root .style_news .article a * {
	transition: var(--hover);
}
:root .style_news .article :is(h2, h3, h4, p) {
	flex-basis: 100%;
	font-size: 1rem;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: var(--fontcolor);
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 0.45em;
}
:root .style_news .data {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	flex-grow: 1;
}
:root .article .data .data_head {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em 1em;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	align-items: flex-start;
}
body.post-type-recruit .article .data .data_head{
	flex-direction: column;
}
:root .article .data .data_head .data_image{
	width:180px;
}
:root .article .data .data_head .data_image img{
	border-radius:10px;
}
:root .article .data .data_head .data_text{
	width:calc(100% - 180px - 1em);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5em 1em;
}
.style_news .article h3{
	padding:0;
	margin:0;
	border:none;
	font-weight:normal;
	font-size:1rem;
}
.style_news .article h3:before{
	display:none;
}
:root .article time {
	font-size:0.875rem;
	font-weight:500;
	color:#90c5d0;
	text-decoration: none;
}
:root .article mark,
:root .post-article_head mark{
	--basecolor: var(--keycolor);
	display: flex;
	justify-content: center;
	align-items: center;
	min-height:2em;
	font-size: 0.875rem;
	font-weight:500;
	color: var(--basecolor);
	background: transparent;
	border: solid 1px;
	border-radius:3px;
	text-decoration: none;
	padding: 0em 0.75em;
	max-width: fit-content;
}
:root .post-article_head a:has(mark){
	text-decoration:none;
}
:root .post-article_head a:has(mark) mark{
	transition:.5s background-color,.5s color;
	text-decoration:none;
}

:root .article mark[data-category="briefing"],
:root .post-article_head mark[data-category="briefing"]{
	--basecolor: #0bd653;
}
:root .article .arrows{
	min-width: 2.375em;
	aspect-ratio: 1/1;
	background: var(--accent05);
	border-radius: 3px;
	overflow: clip;
	position: relative;
}
body.post-type-recruit .article .arrows{
	inset: auto 0 0 auto;
	position: absolute;
}
:root .article .arrows::before,
:root .article .arrows::after {
	position: absolute;
	inset: 50% auto auto 50%;
	z-index: 10;
	display: inline-block;
	content: "";
	width: 0.5em;
	aspect-ratio: 1/1;
	background: var(--keycolor);
	border-radius: 100%;
	translate: -50% -50%;
	scale: 1;
	transition: opacity 0.4s .2s, scale .3s;
}
body.post-type-recruit .article .arrows::before,
body.post-type-recruit .article .arrows::after{
	position: absolute;
}
:root .article .arrows::after {
	width: 1.0625em;
	aspect-ratio: 17/13;
	mask: url(../img/common/icon-arrow.svg) no-repeat;
	border-radius: 0;
	opacity: 0;
	visibility: hidden;
}
:root .style_news.signle_news .news_list {
	border:none;
}
:root .style_news.signle_news .article a{
	min-height: 0;
	padding:0;
	border:none;
}
:root .style_news.signle_news .data{
	flex-direction: row;
	gap: 1em;
	width: calc(100% - 2.375em - 1em);
}
:root .style_news.signle_news .data_head{
	flex-wrap:nowrap;
	white-space:nowrap;
	margin:0;
}
:root .style_news.signle_news :is(h2, h3, h4, p) {
	flex-basis: auto;
	width: auto;
}
@media (any-hover: hover) {
	:root .style_news a:hover .data {
		translate:5px;
	}
	:root .style_news a:hover :is(time,mark){
		text-decoration:none;
	}
	:root .style_news a:hover :is(h2, h3, h4, p) {
		text-decoration-color: var(--fontcolor);
	}
	:root .article a:hover .arrows{
		background:var(--keycolor);
	}
	:root .article a:hover .arrows::before {
		opacity: 0;
		visibility: visible;
		scale: 5;
	}
	:root .article a:hover .arrows::after {
		background:var(--whitecolor);
		opacity: 1;
		visibility: visible;
	}
	:root .post-article_head a:has(mark):hover{
		text-decoration:none;
	}
	:root .post-article_head a:has(mark):hover mark{
		background:var(--basecolor);
		color: var(--whitecolor);
		text-decoration:none;
	}
	:root .post-article_head a:has(mark):hover mark[data-category="briefing"]{
		--basecolor: #0bd653;
	}
}
@media screen and (max-width:767px) {
	:root .style_news .article :is(h2, h3, h4, p) {
		font-size: 1rem;
	}
	:root .article .arrows::before {
		opacity: 0;
		visibility: hidden;
	}
	:root .article .arrows::after {
		opacity: 1;
		visibility: visible;
	}
	:root .style_news.signle_news .data{
		flex-direction:column;
		width: calc(100% - 2.375em - 1em);
		gap: 0;
	}
	:root .style_news.signle_news .data_head{
		margin-bottom: 0.75em;
	}
	:root .style_news.signle_news :is(h2, h3, h4, p) {
		width: 100%;
	}
	:root .article .data .data_head .data_image{
		width:90px;
	}
	:root .article .data .data_head .data_image img{
		border-radius:5px;
	}
	:root .article .data .data_head .data_text{
		width:calc(100% - 90px - 1em);
		gap: 0.25em 0.5em;
	}
}
/*	パンくずリスト	*/
:root .article_foot{
	position:relative;
	z-index:10;
}
:root .topicpath{
	padding-block: 1.25em 5em;
}
:root .topicpath ol{
	display:flex;
	gap:1.5em;
	margin:0;
	padding:0;
	list-style:none;
	font-size:0.875rem;
	overflow: auto;
	scrollbar-width:thin;
	letter-spacing:0.1em;
}
:root .topicpath ol li{
	display:flex;
	gap:1.5em;
	white-space:nowrap;
	margin-block: 0;
	position:relative;
	text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 5px #fff,0 0 5px #fff,0 0 7px #fff,0 0 7px #fff;
}
:root .topicpath ol li:not(:first-child):before{
	content:"";
	width:0.5em;
	height:1px;
	background:#008ee6;
	position:absolute;
	inset:0 auto 0 -1em;
	margin:auto;
}
:root .topicpath ol li a{
	color:inherit;
	text-decoration-color:transparent;
	text-decoration-thickness:1px;
	color:#008ee6;
	min-height: 19px;
}
:root .topicpath ol li > span{
	color:#a3a3a3;
}
@media (any-hover: hover) {
	:root .topicpath ol li a:hover{
		text-decoration-color:#008ee6;
	}
}
@media only screen and (max-width: 767px) {
	#pan {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	#pan a {
		text-decoration: underline;
	}
	:root .topicpath{
		padding-block: 2em;
	}
}
/*	ページャー	*/
.pager_style {
	text-align: center;
	padding: 30px 0 0 0;
}
.pager_style li {
	width: 40px;
	border: 1px solid #BBBBBB;
	background: var(--whitecolor);
	display: inline-block;
	margin: 0 0 10px 0;
}
.pager_style li:hover {
	background: #024384;
}
.pager_style li.on {
	background: #024384;
}
.pager_style li a {
	font-size: 16px;
	text-decoration: none;
	display: block;
	padding: 8px 0;
}
.pager_style li.on a {
	color: var(--whitecolor);
}
.pager_style li a:hover {
	color: var(--whitecolor);
}
.pager_style li.prev {
	margin: 0 10px 0 0;
}
.pager_style li.next {
	margin: 0 0 0 10px;
}
@media screen and (max-width: 768px) {
	.pager_style li {
		width: 30px;
	}
	.pager_style li a {
		font-size: 12px;
		padding: 6px 0;
	}
	.pager_style li.prev,
	.pager_style li.next {
		margin: 0;
	}
}
/*	モーダル	*/
.modal-content {
	width: 80%;
	max-width: 1240px;
	margin: 0px;
	padding: 10px 20px;
	background: none;
	position: fixed;
	display: none;
	z-index: 1020;
}
#modal-overlay {
	z-index: 1000;
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 120%;
	background-color: rgba(0, 0, 0, 0.66);
}
.modal_tit {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	max-width: 250px;
	text-align: center;
	line-height: normal;
	font-size: 20px;
	z-index: 1025;
	overflow: hidden;
	padding: 0px 30px;
	color: var(--whitecolor);
}
.modal_tit span {
	display: block;
	position: relative;
	padding: 10px 0px;
	background: rgb(0, 0, 0);
	z-index: 2;
	border-bottom: 1px solid rgb(255, 255, 255);
}
.modal-content .close_btn {
	position: absolute;
	top: -10%;
	right: 0px;
	color: rgb(255, 255, 255);
	font-size: 40px;
	line-height: 1;
	display: block;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
	.modal-content {
		width: 100%;
		padding: 15px;
		box-sizing: border-box;
	}
}
/*	タブ切替	*/
.tab_change .controller input[type="radio"] {
	appearance: none;
	border: none;
	background: none;
	outline: none;
}
.tab_change .tab_content {
	overflow: hidden;
	opacity: 0;
	max-height: 0;
	z-index: -10;
	visibility: hidden;
	transition: opacity .4s;
}
.tab_change:has(.controller input[id$="01"]:checked) .tab_table div[class$="01"],
.tab_change:has(.controller input[id$="02"]:checked) .tab_table div[class$="02"],
.tab_change:has(.controller input[id$="03"]:checked) .tab_table div[class$="03"],
.tab_change:has(.controller input[id$="04"]:checked) .tab_table div[class$="04"],
.tab_change:has(.controller input[id$="05"]:checked) .tab_table div[class$="05"],
.tab_change:has(.controller input[id$="06"]:checked) .tab_table div[class$="06"],
.tab_change:has(.controller input[id$="07"]:checked) .tab_table div[class$="07"],
.tab_change:has(.controller input[id$="08"]:checked) .tab_table div[class$="08"],
.tab_change:has(.controller a) .tab_content {
	opacity: 1;
	z-index: 10;
	visibility: visible;
	max-height: fit-content;
	overflow: visible;
	width: 100%;
}
.tab_change .controller {
	display: flex;
	margin: 0 auto 2em;
	flex-wrap: wrap;
	gap: 2em;
}
.tab_change .controller :is(label, a) {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	border-bottom: solid 1px var(--dgray);
	background: transparent;
	font-weight: 500;
	font-size: 1.125rem;
	line-height: 1.1;
	text-align: left;
	padding-block: 0.5em;
	padding-left: 1.0em;
	transition: var(--hover);
	min-width: 170px;
	position: relative;
	color: var(--dgray);
}
.tab_change .controller a:hover,
.tab_change .controller a.current,
.tab_change .controller label:has(:checked) {
	text-decoration-color: transparent;
}
.tab_change .controller :is(label, a)::before {
	content: "";
	display: block;
	height: 6px;
	width: 6px;
	position: absolute;
	z-index: 1;
	inset: 0 auto 0 0;
	border: solid 1px #9ea7a5;
	border-radius: 50%;
	margin: auto;
	transition: background .4s, border-color .4s;
}
.tab_change .controller :is(label, a)::after {
	content: "";
	display: block;
	height: 2px;
	width: 0%;
	position: absolute;
	z-index: 1;
	inset: auto 0 0 0;
	background: var(--keycolor);
	transition: width .2s;
}
.tab_change .controller :is(a, label) {
	width: auto;
}
.tab_change .controller :is(a.current, a:hover, label:has(:checked)) {
	color: var(--keycolor);
}
.tab_change .controller :is(a.current, a:hover)::before,
.tab_change .controller label:has(:checked)::before {
	background: var(--keycolor);
	border-color: var(--keycolor);
}
.tab_change .controller :is(a.current, a:hover, label:has(:checked))::after {
	width: 100%;
}
body:not(.home) .tab_change .controller {
	margin-block: 2em;
}
body:not(.home) .tab_change .tab_table {
	margin-inline: auto;
}
.tab_change .tab_content:has(.pulldown) {
	display: flex;
	justify-content: space-between;
	gap: 3em;
}
.tab_change .pulldown .select_wrap {
	position: relative;
	z-index: 2;
	width: fit-content;
	background: var(--whitecolor);
}
.tab_change .pulldown .select_wrap::after {
	content: "";
	display: block;
	height: 0.45em;
	aspect-ratio: 1 / 1;
	border-top: solid 1px;
	border-right: solid 1px;
	transform: rotate(135deg) skew(5deg, 5deg);
	position: absolute;
	right: 1em;
	top: calc(50% - 0.4em);
}
.tab_change .pulldown select {
	appearance: none;
	font-size: 1rem;
	border: none;
	padding: 1em 2em 1em 1em;
	width: 180px;
	background: transparent;
	cursor: pointer;
	color: inherit;
}
.tab_change .tab_table {
	margin-inline: calc(50% - 50vw);
}
.tab_change .data {
	max-width: var(--container);
	margin-inline: auto;
}
.tab_change .btn_area a {
	margin-inline: auto;
}
.tab_change .tab_content:has(.pulldown) .tab_result {
	flex-grow: 1;
	max-width: 942px;
}
.tab_change .tab_result :is(h2, h3) {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1em;
}
.tab_result label[for^="view-more"] {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
	width: fit-content;
	padding: 0.5em 2em 0.5em 0;
	border-bottom: solid 1px;
	transition: background .4s, color .4s;
	font-size: 1.1275rem;
	letter-spacing: 0.1em;
	position: relative;
}
.tab_result label[for^="view-more"] span {
	display: flex;
	gap: 0.5em;
	align-items: center;
	transition: 0.3s;
	max-height: fit-content;
	overflow: hidden;
}
.tab_result label[for^="view-more"]::after {
	content: "";
	display: block;
	width: 0.35em;
	height: 0.35em;
	border-top: solid 2px;
	border-right: solid 2px;
	transform: rotate(135deg);
	position: absolute;
	right: 0.75em;
	top: 0.875em;
	margin: auto;
	z-index: 1;
	transition: top .3s;
}
.tab_result input[id^="view-more"] {
	appearance: none;
	border: none;
	width: 0;
	height: 0;
	background: none;
	outline: none;
}
.tab_result label[for^="view-more"]:hover {
	background: var(--whitecolor);
}
.tab_result label[for^="view-more"]:has(input:checked) {
	opacity: 0;
	pointer-events: none;
	max-height: 0;
	padding: 0;
}
.tab_result label[for^="view-more"]:hover span {
	transform: translateX(0.5em);
}
.tab_result label[for^="view-more"]:hover::after {
	top: 1.1em
}
.tab_result:has(input[id^="view-more"]) .news_list>*:nth-child(n+6) {
	display: none;
}
.tab_result:has(input[id^="view-more"]:checked) .news_list>*:nth-child(n+6) {
	display: block;
}
@media screen and (max-width: 1410px) {
	.tab_change .controller {
		gap: 1.25em;
	}
	.tab_change .controller :is(label, a) {
		min-width: 6em;
	}
}
@media screen and (max-width: 767px) {
	.tab_change .controller {
		justify-content: flex-start;
		gap: 0.75em;
	}
	.tab_change .controller :is(label, a) {
		font-size: 1rem;
		width: 90px;
		min-height: 30px;
	}
	.tab_change .tab_content:has(.pulldown) {
		flex-direction: column;
		gap: 2em;
	}
}
/*	フォーム	*/
.form_wrap input[type="text"],
.form_wrap input[type="search"],
.form_wrap input[type="email"],
.form_wrap input[type="tel"],
.form_wrap input[type="number"],
.form_wrap input[type="password"],
.form_wrap textarea {
	appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	vertical-align: middle;
	border: solid 1px var(--whitecolor);
	border-radius: 0px;
	font-size: 0.875rem;
	padding: 0 0.5em;
	height: 2.5em;
	line-height: 2.5em;
	background: var(--whitecolor);
}
.form_wrap input::placeholder,
.form_wrap textarea::placeholder {
	color: #ccc;
}
.form_wrap .tables .wrap textarea {
	height: auto;
	padding: 1em;
}
.form_wrap label {
	cursor: pointer;
}
.form_wrap input[type="radio"],
.form_wrap input[type="checkbox"] {
	display: none;
}
.form_wrap input[type="radio"]+label,
.form_wrap input[type="checkbox"]+label {
	display: inline-block;
	padding: 0.25em 0.25em 0.25em 1.5em;
	position: relative;
}
.form_wrap input[type="radio"]+label::before,
.form_wrap input[type="checkbox"]+label::before,
.form_wrap input[type="radio"]+label::after,
.form_wrap input[type="checkbox"]+label::after {
	content: "";
	display: inline-block;
	width: 1rem;
	height: 1rem;
	border: solid 1px #333;
	position: absolute;
	left: 0;
	top: 6px;
	transition: opacity .2s;
}
.form_wrap input[type="checkbox"]+label::after {
	border: none;
	width: 0.6rem;
	height: 0.4rem;
	border-top: solid 3px #333;
	border-right: solid 3px #333;
	transform: rotate(135deg);
	top: 8px;
	left: 2px;
	opacity: 0;
}
.form_wrap input[type="radio"]+label::before {
	border-radius: 50%;
	width: 18px;
	height: 18px;
	top: 7px;
}
.form_wrap input[type="radio"]+label::after {
	border-radius: 50%;
	width: 10px;
	height: 10px;
	border: none;
	background: #333;
	top: 12px;
	left: 5px;
	opacity: 0;
}
.form_wrap input[type="radio"]:checked+label::after,
.form_wrap input[type="checkbox"]:checked+label::after {
	opacity: 1;
}
.form_wrap .select_wrap {
	display: inline-block;
	position: relative;
	z-index: 3;
	background: var(--whitecolor);
}
.form_wrap .select_wrap select {
	appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	vertical-align: middle;
	border: solid 1px #b0b0b0;
	border-radius: 0px;
	font-size: 1rem;
	color: #333;
	padding: 0 2.5em 0 0.5em;
	height: 2.5em;
	line-height: 2.5em;
	background: transparent;
	cursor: pointer;
}
.form_wrap .select_wrap::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: solid 2px #333;
	border-right: solid 2px #333;
	position: absolute;
	right: 1rem;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
	transform: rotate(135deg) translate(-2px);
}
.form_wrap .form_els {
	display: flex;
	flex-wrap: wrap;
}
.form_wrap .form_els.inlines {
	display: block;
	padding-bottom: 0.25em;
}
.form_wrap .form_els>* {
	margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
	.form_wrap input[type="text"],
	.form_wrap input[type="search"],
	.form_wrap input[type="email"],
	.form_wrap input[type="tel"],
	.form_wrap textarea {
		font-size: 1rem;
	}
	.form_wrap .form_els.inlines br {
		display: none;
	}
	.form_wrap input[type="radio"]+label,
	.form_wrap input[type="checkbox"]+label {
		font-size: 0.857rem;
	}
	.form_wrap input[type="checkbox"]+label::before {
		width: 12px;
		height: 12px;
		top: 5px;
	}
	.form_wrap input[type="checkbox"]+label::after {
		width: 7px;
		height: 4px;
	}
	.form_wrap input[type="radio"]+label::before {
		width: 13px;
		height: 13px;
		top: 5px;
	}
	.form_wrap input[type="radio"]+label::after {
		width: 7px;
		height: 7px;
		left: 4px;
		top: 9px;
	}
}
.table_wrap table {
	margin-inline: 0 auto;
}
.table_wrap table :is(th, td) {
	font-size: 1rem;
	padding: 1em;
	border: solid 1px var(--whitecolor);
	line-height: 1.85;
	background: #f0f0f0;
}
.table_wrap table th {
	background: var(--green);
	font-weight: 600;
	white-space: nowrap;
	font-weight: 400;
}
.table_wrap table .caption {
	font-size: 0.875em;
	line-height: 1.6;
}
.table_wrap table *:not(.caption)+.caption {
	margin-top: 1em;
}
.table_wrap table.calendar_table {
	width: 100%;
	margin-bottom: 1em;
}
.table_wrap table.calendar_table :is(th, td) {
	font-size: 1.125rem;
	padding: 1em;
	line-height: 1.4;
}
.flex_list .table_wrap table :is(th, td) {
	padding: 0.5em 0.25em;
}
@media screen and (max-width: 767px) {
	.table_wrap table {
		width: 100%;
	}
	.table_wrap table th {
		white-space: normal;
		width: auto;
		padding: 0.5em;
		text-align: center;
		font-size: 0.814rem;
	}
	.table_wrap table td {
		padding: 0.5em;
		font-size: 0.814rem;
	}
	.table_wrap.break :is(table, thead, tbody, tr, th, td) {
		display: block;
		width: 100%;
		border: none;
	}
	.table_wrap.break :is(th, td) {
		font-size: 1rem;
		text-align: left;
	}
	.table_wrap.break td {
		border-top: none;
	}
	.table_wrap.break tr {
		margin-bottom: 1em;
	}
	.table_wrap.break th br {
		display: none;
	}
	.table_wrap table *:not(.caption)+.caption {
		margin-top: 1em;
	}
	.table_wrap table.calendar_table :is(th, td) {
		font-size: 0.875rem;
		padding: 1em 0.5em;
	}
	.table_wrap table.calendar_table tr:has(th:first-child + td:nth-child(2):last-child) th {
		white-space: nowrap;
	}
}

/*フォーム*/
.snow-monkey-form .smf-item {
	padding: 1rem 0;
	border-bottom: 1px solid #cdd0d2;
}
.snow-monkey-form .smf-item:last-child{
	border-bottom:none;
}
.smf-form--simple-table .smf-item{
	display:flex;
}
.smf-placeholder[data-name="your-doui"]{
	margin-block: 2em 1em;
	text-align:center;
}
.smf-form .smf-radio-buttons-control--horizontal .smf-radio-buttons-control__control>.smf-label {
	display: inline-block;
	margin-right: 1em;
	margin-top: 0;
}
.smf-form .birth-wrap:not(.is-not-stacked-on-mobile)>.wp-block-column,
.smf-form .birth-wrap>.wp-block-column{
	flex-basis: auto;
	flex-grow: 0;
}
.snow-monkey-form .smf-item.no-form{
	border-bottom:none!important;
	padding: 0;
}
.snow-monkey-form .smf-item__col--label {
	max-width: 190px;
	flex: 100%;
}
.smf-form .smf-item .smf-item__col--label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 100%;
	max-height: 3.5em;
	flex: 280px;
	width: 280px;
	padding-right: 5em;
	box-sizing: border-box;
}
.smf-form .smf-item.required-box .smf-item__description {
	display: inline-block;
	font-size: 0.75rem;
	line-height: 1;
	color: var(--whitecolor);
	background: var(--accent01);
	border: 1px solid var(--accent01);
	padding: 0.35em 0.5em;
	margin: 0;
}
.snow-monkey-form .smf-item__col--controls {
	max-width: calc(100% - 280px);
	flex: 100%;
	margin-top: 0;
	/* min-height: 3.5em; */
}
.snow-monkey-form .smf-item .smf-radio-button-control__control{
	display:none;
}
.smf-form--simple-table .smf-item--divider .smf-item__col{
	max-width:none;
}
.snow-monkey-form input,
.snow-monkey-form select{
	font-family: "Noto Sans JP", serif;
}
.snow-monkey-form .smf-form .smf-item .smf-text-control__control,
.snow-monkey-form input[type="search"],
.snow-monkey-form input[type="email"],
.snow-monkey-form input[type="tel"],
.snow-monkey-form input[type="number"],
.snow-monkey-form input[type="password"],
.snow-monkey-form .smf-form .smf-item .smf-textarea-control__control {
	appearance: none;
	-webkit-appearance: none;
	background: #fff;
	margin: 0;
	border: #cdd0d2 solid 1px;
	display: block;
	width: 100%;
	height: 2.875em;
	line-height: 2.875em;
	padding: 0 1em;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0 !important;
	border-radius: 0;
}
.snow-monkey-form input[type="date"]{
	max-width:170px;
}
.smf-form .smf-item .smf-select-control,
.smf-form .smf-item .smf-select-control__control{
	width: 100%;
	height: 2.875em;
	line-height: 2.875em;
	padding: 0 1em;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0 !important;
	border-radius: 0;
}
.smf-form .smf-item .smf-select-control{
	padding:0;
	background: #fff;
}
.snow-monkey-form input::placeholder,
.snow-monkey-form textarea::placeholder {
	color: #a2a0a0;
}
.snow-monkey-form .smf-form .smf-item .smf-textarea-control__control {
	height: auto;
	padding: 0.5em 1em;
	line-height: 1.4em;
}
.smf-form .smf-item .smf-select-control__control:active,
.smf-form .smf-item .smf-select-control__control:focus,
.smf-form .smf-item .smf-select-control__control:focus-within,
.smf-form .smf-item .smf-select-control__control[aria-selected=true]{
	border-color:#000;
}
.smf-form .smf-item .smf-select-control__toggle:before,
.smf-form .smf-item .smf-select-control__control:focus + .smf-select-control__toggle:before{
	border-color:#000;
}
.snow-monkey-form[data-screen="confirm"] .smf-item.required-box .smf-item__description {
	display:none;
}
#autozip {
   display: none !important;
}

/*radio,checkbox*/
.snow-monkey-form label {
	cursor: pointer;
}
.smf-form .smf-item .smf-checkboxes-control__control>.smf-label{
	margin-right:0.5em;
	margin-bottom:0.5em;
}
.smf-form .smf-item.check_center .smf-checkboxes-control__control>.smf-label{
	text-align:center;
	margin-top:1.5em;
}
.smf-form .smf-item .smf-radio-control__control,
.smf-form .smf-item .smf-checkbox-control__control {
	display: none;
}
.smf-form input.smf-checkbox-control__control{
	display:none;
}
.smf-checkboxes-control__control:has(input[name="your-doui[]"]){
	text-align:center;
	margin-top: 1.5em;
}
.smf-form .smf-item .smf-select-control__toggle{
	background:transparent;
}
.snow-monkey-form input[type="radio"]+span,
.snow-monkey-form input[type="checkbox"]+span {
	display: inline-block;
	padding: 0.25em 0.25em 0.25em 1.875em;
	position: relative;
	margin-top: 0;
}
.snow-monkey-form input[type="radio"]+span{
	padding-left: 1.75em;
}
.snow-monkey-form label input[type="radio"]+span:before,
.snow-monkey-form label input[type="checkbox"]+span:before,
.snow-monkey-form label input[type="radio"]+span:after,
.snow-monkey-form label input[type="checkbox"]+span:after {
	content: "";
	display: inline-block;
	width: 1.375rem;
	height: 1.375rem;
	border: solid 1px #cdd0d2;
	border-radius: 2px;
	position: absolute;
	left: 0;
	top: 5px;
	transition: opacity .2s;
}
.snow-monkey-form label input[type="radio"]+span:before,
.snow-monkey-form label input[type="checkbox"]+span:before{
	background-color:#fff;
}
.snow-monkey-form label input[type="checkbox"]+span:after {
	border: none;
	width: 1rem;
	height: 0.5rem;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	transform: rotate(135deg);
	top: 10px;
	left: 3px;
	opacity: 0;
}
.snow-monkey-form label input[type="radio"]+span:before {
	border-radius: 50%;
	width: 24px;
	height: 24px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.snow-monkey-form label input[type="radio"]+span:after {
	border-radius: 50%;
	width: 18px;
	height: 18px;
	border: none;
	background: var(--keycolor);
	top: 0;
	left: 3px;
	opacity: 0;
	bottom: 0;
	margin: auto;
}
.snow-monkey-form label input[type="radio"]:checked+span:before {
	border-color: var(--keycolor);
}
.snow-monkey-form label input[type="checkbox"]:checked+span:before {
	border-color: var(--keycolor);
	background: var(--keycolor);
}
.snow-monkey-form label input[type="radio"]:checked+span:after,
.snow-monkey-form label input[type="checkbox"]:checked+span:after {
	opacity: 1;
}

/*smf-button-control__control*/
.smf-action{
	display:flex;
	justify-content:center;
	align-items:stretch;
	gap: 5%;
	margin-top: 2em
}
.smf-action > *{
	margin-top:0;
}
.smf-action .smf-button-control__control{
	--bgcolor: var(--keycolor);
	--fontcolor: var(--whitecolor);
	--arrowcolor: var(--key_color);
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.5em;
	width: fit-content;
	min-width: 20em;
	min-height: 4.75em;
	font-size: 1rem;
	font-weight: bold;
	color: var(--fontcolor);
	background: var(--bgcolor);
	border-radius: 0.3125em;
	padding: 0.5em 2em;
	padding-right: 4em;
	transition: var(--hover);
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	translate: 0 0;
	filter: var(--filtershadow);
	border:none;
}
.smf-action .smf-button-control__control::before,
.smf-action .smf-button-control__control::after {
	position: absolute;
	inset: 50% 2em auto auto;
	z-index: 10;
	display: inline-block;
	content: "";
	width: 0.5em;
	aspect-ratio: 1/1;
	background: var(--whitecolor);
	border-radius: 100%;
	translate: 0 -50%;
	scale: 1;
	transition: opacity .4s .2s, scale 0s;
}
.smf-action .smf-button-control__control::after {
	right: 1.7em;
	width: 1.0625em;
	aspect-ratio: 17/13;
	mask: url(../img/common/icon-arrow.svg) no-repeat;
	border-radius: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s .2s, scale .6s;
}
.smf-action .smf-button-control__control[data-action="back"]{
	color:  var(--keycolor);
	background:var(--white);
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.smf-action .smf-button-control__control[data-action="back"]::before{
	background:var(--keycolor);
}
.smf-action .smf-button-control__control[data-action="back"]::after{
	background:var(--keycolor);
}
@media (any-hover: hover) {
	.smf-action .smf-button-control__control:hover {
		translate: 0 5px;
		filter: none;
		text-decoration: none;
	}
	.smf-action .smf-button-control__control:hover::before {
		opacity: 0;
		visibility: visible;
		scale: 100;
		transition: opacity .4s .2s, scale 1.2s;
	}
	.smf-action .smf-button-control__control:hover::before {
		scale: 7;
	}
	.smf-action .smf-button-control__control:hover::after {
		opacity: 1;
		visibility: visible;
	}
}
@media screen and (max-width:767px) {
	.snow-monkey-form .smf-item{
		padding: 1em 0;
	}
	.smf-form--simple-table .smf-item{
		display:block;
	}
	.smf-form .smf-item .smf-item__col--label{
		justify-content:flex-start;
		gap:3%;
		margin-bottom: 0.75em;
		padding-bottom: 0;
		padding-right: 0;
		width: 100%;
	}
	.smf-form .birth-wrap.is-layout-flex{
		gap:12px;
	}
	.snow-monkey-form .smf-item__col--label,
	.snow-monkey-form .smf-item__col--controls,
	.snow-monkey-form .form_harf .smf-item__col--label,
	.snow-monkey-form .form_harf .smf-item__col--controls{
		max-width: 100%;
	}
	.smf-form .smf-item .smf-select-control{
		max-width:100%;
	}
	.smf-action{
		display:flex;
		flex-direction:column-reverse;
		flex-wrap: wrap;
	}
	.smf-action > * + *{
		margin-top:1em;
	}
	.smf-action .smf-button-control+.smf-button-control{
		margin:0;
	}
	.smf-action .smf-button-control__control{
		margin:0.5em auto;
		width: 100%;
		max-width: 270px;
		border-width: 1px;
	}
	.snow-monkey-form .smf-item.privacy-box,
	.snow-monkey-form .smf-item.text-box{
		margin: 20px auto;
		padding: 20px 15px;
	}
	.snow-monkey-form .privacy-box ul li:before{
		width:4px;
		height:4px;
		left:0;
		top:0.65em;
	}
	.snow-monkey-form .sp-flex{
		gap: 0.5em;
	}
	.snow-monkey-form label input[type="radio"]+span:before {
		top: 2px;
		width: 18px;
		height: 18px;
	}
	.snow-monkey-form label input[type="radio"]+span:after {
		top: 8px;
		bottom:auto;
		width: 12px;
		height: 12px;
		left: 3px;
	}
	.snow-monkey-form input[type="date"]{
		max-width:100%;
	}
}