/*
Theme Name: Arkhe Child
Template: arkhe
Version: 3.4.2
*/

:root {
	--ark-font_family: "Noto Sans JP", "Pinyon Script", cursive, sans-serif, serif;
/*
	--arkb-btn-color--text: #FFF;
*/
	--the-btn-color: #0686AD;
    --arkb-btn-color--default: #0686AD;
	--arkb-btn-width: 280px;
}

/* Common */

.c-postContent>* {
    margin-top: var(--ark-mt--s);
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

.pc {
/*
	display: initial !important;
*/
}
.sp {
	display: none !important;
}
@media screen and (max-width: 600px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: initial !important;
	}
}

.alignfull {
	left: calc(50% - 50vw + var(--ark-scrollbar_width)/2);
	width: calc(100vw - var(--ark-scrollbar_width))
}

.icon-arrow {
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}
.icon-arrow::before,
.icon-arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
/*
    left: 0;
*/
    margin: auto;
    content: '';
    vertical-align: middle;
}
.icon-arrow::before{
    right: 25px;
    width: 7px;
    height: 7px;
    border-top: 4px solid #7F033B;
    border-right: 4px solid #7F033B;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.icon-arrow.down::before{
    right: 23px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.ark-block-button__icon.-right {
	position: absolute;
	right: 16px;
}

#overlay{ 
	position: fixed;
	top: 0;
	z-index: 100;
	width: 100%;
	height:100%;
	display: none;
	background: rgba(0,0,0,0.6);
}
.cv-spinner {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
}
.spinner {
	width: 40px;
	height: 40px;
	border: 4px #ddd solid;
	border-top: 4px #2e93e6 solid;
	border-radius: 50%;
	animation: sp-anime 0.8s infinite linear;
}
.spinner_txt {
	display: block;
	margin-top: 0.5em;
	color: #fff;
	font-weight: bold;
}
@keyframes sp-anime {
	100% { 
		transform: rotate(360deg); 
	}
}
.is-hide{
	display:none;
}

dl.table-style {
	padding: 0px;
	font-size: 16px;
    border-top: 1px solid #ededed;
}
dl.table-style dt {
	clear: both;
	float: left;
	width: 170px;
	margin: 14px 0px 0px 10px;
    font-weight: 600 !important;
}
dl.table-style dd {
	margin: 0;
	padding: 14px 0px 13px 188px;
	line-height: 1.6;
    border-bottom: 1px solid #ededed;
}

@media screen and (max-width: 600px) {
	dl.table-style {
		font-size: 14px;
	}
	dl.table-style dt {
		clear: both;
		float: none;
		width: auto;
		margin: 15px 0px 0px 4px;
	}
	dl.table-style dd {
		clear: both;
		margin: 0;
		padding: 14px 0px 13px 4px;
	}
}

.attach_files {
	padding: 1rem 0;
	line-height: 1.6;
}
.attach_files p {
	margin-bottom: 4px;
}
.attach_files a {
	padding: 2px 0px 2px 30px;
	text-decoration: none;
}
.attach_files * html a.pdf,
.attach_files a[href$=".pdf"] {
	background: url("./images/ico_file_pdf.png") no-repeat 1px 50%;
	background-size: 23px;
}
.attach_files * html a.doc,
.attach_files * html a.docx,
.attach_files a[href$=".doc"],
.attach_files a[href$=".docx"] {
	background: url("./images/ico_file_doc.png") no-repeat 1px 50%;
	background-size: 23px;
}
.attach_files * html a.xls,
.attach_files * html a.xlsx,
.attach_files a[href$=".xls"],
.attach_files a[href$=".xlsx"] {
	background: url("./images/ico_file_xls.png") no-repeat 1px 50%;
	background-size: 23px;
}
.attach_files * html a.ppt,
.attach_files * html a.pptx,
.attach_files a[href$=".ppt"],
.attach_files a[href$=".pptx"] {
	background: url("./images/ico_file_ppt.png") no-repeat 1px 50%;
	background-size: 23px;
}
.attach_files * html a.jpg,
.attach_files * html a.jpeg,
.attach_files a[href$=".jpg"],
.attach_files a[href$=".jpeg"] {
	background: url("./images/ico_file_jpg.png") no-repeat 1px 50%;
	background-size: 23px;
}


/* MW WP Form */
.mw_wp_form dl {
	margin-top: 2rem;
}
.mw_wp_form dl dt {
	width: 200px;
	margin: 14px 0px 0px 22px;
	position: relative;
}
.mw_wp_form dl dt.must:before {
	content: '※';
	color: #F00;
	display: inline-block;
	position: absolute;
	left: -22px;
}
.mw_wp_form dl dd {
	padding: 14px 0px 13px 218px;
}
.mw_wp_form dl input[name='email2'] {
	margin-top: 8px;
	margin-left: 4px;
}
.mw_wp_form input[type="submit"],
.mw_wp_form button[type="submit"] {
	background: var(--the-btn-color);
    color: var(--arkb-btn-color--text, #fff);
	border: none;
	cursor: pointer;
	position: relative;
}
.mw_wp_form input[type="submit"]:first-child,
.mw_wp_form button[type="submit"]:first-child {
	margin-right: 10px;
}
.mw_wp_form input[type="submit"]:hover,
.mw_wp_form button[type="submit"]:hover {
	opacity: .88;
}
.mw_wp_form input[type="submit"] .fa-angle-left,
.mw_wp_form button[type="submit"] .fa-angle-left {
	position: absolute;
	left: 16px;
}
.mw_wp_form input[type="submit"] .fa-angle-right,
.mw_wp_form button[type="submit"] .fa-angle-right {
	position: absolute;
	right: 16px;
}
.mw_wp_form_confirm dl dt {
	min-height: 17px;
}
.mw_wp_form_confirm dl dd {
	min-height: 52px;
	line-height: 1.5;
}
.mw_wp_form_confirm span.email2 {
	display: none;
}
.mw_wp_form .error {
	margin-top: 4px;
	padding-left: 6px;
	color: #F00;
}

@media screen and (max-width: 600px) {
	.mw_wp_form dl dt {
		width: auto;
		margin-left: 4px;
	}
	.mw_wp_form dl dt.must {
		margin-left: 22px;
	}
	.mw_wp_form dl dd {
		padding: 14px 0px 13px 4px;
	}
	.mw_wp_form input[type="submit"]:first-child,
	.mw_wp_form button[type="submit"]:first-child {
		margin-right: 0;
	}
	.mw_wp_form dl dd input[type='text'],
	.mw_wp_form dl dd input[type='email'],
	.mw_wp_form dl dd textarea {
		width: 100%;
	}
	.mw_wp_form dl dd input.tel,
	.mw_wp_form dl dd input.fax {
		width: auto;
	}
	.mw_wp_form dl input[name='email2'] {
		margin-left: 0;
	}
	.mw_wp_form_confirm dl dd {
		min-height: 28px;
	}
}


/* slick */

.slide-arrow.prev,
.slide-arrow.next {
	position: absolute;
	top: calc(50% - 25px);
	display: block;
	width: 50px;
	height: 50px;
	background: none;
	border-radius: 50%;
	transition: all .3s ease;
	cursor: pointer;
	z-index: 9;
}
.slide-arrow.prev {
	left: -45px;
	transform: rotate(180deg);
}
.slide-arrow.next {
	right: -45px;
}
.slide-arrow.prev:before,
.slide-arrow.next:before{
	position: absolute;
	content: '';
	width: 25px;
	height: 25px;
	border-right: 4px solid #0686AD;
	border-top: 4px solid #0686AD;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	transform:rotate(45deg);
}
@media screen and (max-width: 1000px) {
	.slide-arrow.prev {
		left: -35px;
	}
	.slide-arrow.next {
		right: -35px;
	}
}
@media screen and (max-width: 600px) {
	.slide-arrow.prev {
		left: 0px;
	}
	.slide-arrow.next {
		right: 0px;
	}
}


/* arkhe */

.ark-block-heading {
	position: relative;
	z-index: 2;
}
.ark-block-heading .ark-block-heading__main {
	font-size: 28px;
	letter-spacing: .1em;
}
.ark-block-heading .ark-block-heading__line {
	color: #7C6B7E;
}
.ark-block-heading .ark-block-heading__line:before {
	width: 60px;
	height: 3px;
}
.ark-block-heading .ark-block-heading__sub {
	font-size: 58px;
	color: #C0AE98;
}
.ark-block-button__link:hover {
	text-decoration: none;
}
@media screen and (max-width: 600px) {
	.ark-block-heading .ark-block-heading__main {
		font-size: 22px;
	}
	.ark-block-heading .ark-block-heading__line:before {
		width: 48px;
	}
	.ark-block-heading .ark-block-heading__sub {
		font-size: 38px;
	}
}

.ark-block-timeline__item {
	padding-bottom: .1rem;
}
/*
.ark-block-timeline__label {
	font-weight: 700;
	font-size: 1em;
	opacity: 1;
}
.ark-block-timeline__title {
	margin-top: 0;
	font-weight: 500;
}

@media screen and (min-width: 599px) {
	.ark-block-timeline {
		padding-left: 0;
	}
	.ark-block-timeline__head {
	}
	.ark-block-timeline__item {
		padding-left: 0;
		padding-bottom: 20px;
		display: flex;
		flex-wrap: nowrap;
	}
	.ark-block-timeline__item:before {
		left: 208px;
	}
	.ark-block-timeline__shape {
		position: absolute;
		top: 5px;
		left: 201px;
	}
	.ark-block-timeline__title {
		margin-left: 60px;
	}
}
*/


/* Header */

.l-header__body {
	padding-left: 10px;
/*
	padding-right: 10px;
*/
}
.l-header[data-pcfix="1"] {
	background-color: #FFFFFF;
}
[data-scrolled=false] .l-header[data-pcfix="1"] {
	background-color: #FFFFFF;
}

.l-header__center {
	padding: 12px 0;
}
.c-gnav > .c-gnav__li > .c-gnav__a {
	padding: 14px 10px;
	text-decoration: none;
	color: #555555;
}
.c-gnav__li.-current > .c-gnav__a,
.c-gnav__li.focus > .c-gnav__a,
.c-gnav__li:hover > .c-gnav__a {
	color: #29B9B5;
}
.c-gnav > .c-gnav__li:last-child > .c-gnav__a > .__mainText {
	padding: 6px 18px 8px;
	color: #FFF;
	background: #CE3B37;
	border-radius: 4px;
}
.c-gnav > .c-gnav__li:last-child > .c-gnav__a:hover > .__mainText {
	color: #DCDCDC;
}

@media screen and (max-width: 600px) {
	.l-header__body {
		display: flex;
	}
	.l-header__center {
		max-width: 300px;
		margin: 0 auto;
/*
		padding-left: 20px;
*/
		padding-right: 20px;
	}
}


/* Footer */

.l-footer {
	padding-top: 5rem;
	background: none;
	overflow: hidden;
/*
	background: var(--ark-color--bg, #fff);
	z-index: -1;
*/
}
.l-footer__inner {
	padding-top: 2rem;
	background: #FDFA9F;
/*
	margin-left: -200px;
	margin-right: -200px;
	padding-left: 200px;
	padding-right: 200px;
	border-top-right-radius: 1000px 128px;
	border-top-left-radius: 1000px 128px;
*/
}
.l-footer__foot {
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	background-color: #29B9B5;
	color: #FFFFFF;
}
.l-footer__widgets {
	padding: 2rem 0 0;
}
.l-footer__nav {
	margin-bottom: 2rem;
}
#footer-widget0 {
    margin-bottom: 2rem;
    text-align: center;
	color: #121212;
}
#footer-widget0 .textwidget {
	font-size: 16px;
}

@media screen and (max-width: 600px) {
	.l-footer__inner {
/*
		margin-left: -100px;
		margin-right: -100px;
		padding-left: 100px;
		padding-right: 100px;
*/
	}
	#footer-widget0 .textwidget {
		font-size: 14px;
	}
}


/* Layout */
.l-content__body {
    margin: 2rem auto;
}
@media screen and (max-width: 600px) {
	.l-content__body {
		margin: 2rem auto;
	}
}


/* Title */

.p-topArea {
	min-height: 30vh;
	text-align: left;
}
.c-pageTitle__main {
	font-size: 3rem;
	line-height: 1;
}
.c-pageTitle__sub {
	margin-top: 0 !important;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 600;
	text-transform: capitalize;
}
.c-pageTitle__sub:after,
.c-pageTitle__sub:before {
    content: '';
	margin: 0;
}

@media screen and (max-width: 600px) {
	.p-topArea {
		min-height: 25vh;
	}
	.c-pageTitle__main {
		font-size: 2rem;
	}
}


/* Archive */

[data-sidebar=off] .p-postList.-type-card .p-postList__item {
	flex-basis: 25%;
}

.p-postList.-type-card .p-postList__body {
	padding-top: 0.5rem;
}
.p-postList__category > span {
	padding: 2px 14px;
	color: #FFF;
	background: #DCAD1D;
}
.p-postList__item .p-postList__meta {
	margin-bottom: .25rem;
	font-size: 12px;
	justify-content: space-between;
}
.p-postList__item .p-postList__category {
	margin-right: 0;
}
.p-postList .p-postList__title,
.p-postList.-type-simple .p-postList__title {
	font-size: 1rem;
}

@media screen and (max-width: 600px) {
	[data-sidebar=off] .p-postList.-type-card .p-postList__item {
		flex-basis: 50%;
	}
	.p-postList .p-postList__title,
	.p-postList.-type-simple .p-postList__title {
		font-size: .9rem;
	}
}


/* Page */

body.page h2.wp-block-heading {
/*
	color: #0686AD;
*/
}


/* Top */

.home .ark-block-heading {
	display: flex;
	justify-content: center;
	gap: .5rem;
}

.home h2.ark-block-heading__main {
	color: #F00;
	font-size: 48px;
	letter-spacing: -.01em;
	text-align: left;
}
.home .ark-block-heading__sub {
	margin-top: 2rem;
	font-family: "Pinyon Script", serif;
	font-size: 68px;
	font-weight: 600;
	color: #E0E0E0;
	text-align: right;
}

.home h3.wp-block-heading {
	font-size: 24px;
	text-align: center;
}

#top-news-block {
	padding-top: 2.5rem !important;
}
#top-news-block .top-news-block__inner {
	padding: 1.75rem 2rem 2rem 1rem;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	border-radius: 12px;
	align-items: center !important;
	gap: 1rem !important;
}
#top-news-block .top-news-block__inner h2 {
	font-size: 24px;
    font-weight: 500;
}
#top-news-block .top-news-block__inner a > .ark-block-button__text {
	color: #29B9B5;
}
#top-news-block .top-news-block__inner a > svg {
	font-size: 1.2em;
	color: #29B9B5;
	border-color: #29B9B5;
	position: unset;
}
#top-news-block .top-news-block__inner a:hover {
	text-decoration-color: #29B9B5;
}
#top-news-block .top-news-block__inner a:hover > svg {
	color: #FFF;
	background: #29B9B5;
}

#top-menu-block {
	padding-top: 2rem !important;
}
#top-menu-block .wp-block-columns {
	gap: 1rem !important;
}
#top-menu-block .top-menu-block__inner {
	padding: 2rem 1rem 1rem;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	border-radius: 12px;
}
#top-menu-block .top-menu-block__inner h2 {
	font-size: 24px;
    font-weight: 500;
}
#top-menu-block .top-menu-block__inner .wp-block-image {
	max-width: 148px;
	margin-left: auto;
	margin-right: auto;
}
#top-menu-block .top-menu-block__inner a {
	color: #29B9B5;
}
#top-menu-block .top-menu-block__inner a > svg {
	font-size: 1.2em;
	border-color: #29B9B5;
	position: unset;
}
#top-menu-block .top-menu-block__inner a:hover > svg {
	background: #29B9B5;
}

@media screen and (max-width: 600px) {

	.home .ark-block-heading {
		flex-wrap: wrap;
		gap: 0;
	}
	.home h2.ark-block-heading__main {
		width: 100%;
		font-size: 38px;
		text-align: center;
	}
	.home .ark-block-heading__sub {
		width: 100%;
		margin-top: 0;
		font-size: 42px;
		text-align: center;
	}
	.home h3.wp-block-heading {
		font-size: 17px;
	}
	.home .wp-block-columns {
		gap: 1rem !important;
	}
	.home .wp-block-column p {
		font-size: 14px;
	}

	#top-menu-block .top-menu-block__inner {
		padding: 1.5rem .5rem .75rem;
	}
	#top-menu-block .top-menu-block__inner h2 {
		font-size: 18px;
	}
	#top-menu-block .top-menu-block__inner .wp-block-image {
		max-width: 100px;
	}
	#top-menu-block .top-menu-block__inner p {
		line-height: 1.4;
	}
}

.access-map iframe {
	height: 600px;
}
@media screen and (max-width: 600px) {
	.access-map iframe {
		height: 350px;
	}
}

/* Page */



/* News */

.news-header {
	margin-bottom: 2rem;
	padding: 2rem 1rem 1rem 2rem;
	background: #FFFEE0;
	border: 1px solid #CCCCCC;
    border-radius: 12px;
}
.news-header dl {
	width: 100%;
	margin: 0px 0px 10px 0px;
	display: flex;
	align-items: baseline;
}
.news-header dl dt {
	clear: both;
	float: left;
	width: 88px;
	margin: 11px 0px 0px 0px;
	font-size: 14px;
	font-weight: 600;
	color: #313131;
}
.news-header dl dd {
	margin: 0;
	padding-left: 8px;
}
.news-header dl dd ul {
	margin: 0;
	font-size: 14px;
	line-height: 1;
	list-style: none;
}
.news-header dl dd ul li {
	display: inline-block;
	margin-right: 10px;
}
.news-header dl dd ul li a {
	padding: 7px 18px;
	display: block;
	text-align: center;
	color: #29B9B5;
	background: none;
	border: 1px solid #29B9B5;
    border-radius: 4px;
	text-decoration: none;
}
.news-header dl dd ul li.current-cat a,
.news-header dl dd ul li a:hover {
	color: #FFF;
	background: #29B9B5;
	border: 1px solid #29B9B5;
}

@media screen and (max-width: 600px) {
	.news-header {
    	margin-bottom: 20px !important;
		padding: 10px 10px 10px;
	}
	.news-header dl dd ul li a {
		font-size: 14px;
	}
}

.p-postList.-type-news h4 {
	margin-top: 2rem !important;
	margin-bottom: .5rem !important;
	padding: 0px;
	font-size: 16px !important;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #83001A;
	font-weight: 500;
}
.p-postList.-type-news h4 span {
	padding: .5rem 1rem;
	border: 1px solid #83001A;
}

dl.news-list {
	padding: 0px;
	font-size: 16px;
	box-sizing: border-box;
}
dl.news-list dt {
	clear:both;
	float: left;
	width: 240px;
	margin: 10px 0px 0px 2px;
}
dl.news-list dt span.news-category,
dl.news-list dt span.news-date {
	float: left;
	width: 120px;
	margin: 0px 10px 8px 0px;
	padding: 1px 0px;
	text-align: center;
	color: #29B9B5;
	background: none;
	border: 1px solid #29B9B5;
	border-radius: 6px;
	display: inline-block;
	font-size: 14px;
}
dl.news-list dt span.news-date {
	width: 100px;
	padding: 2px 0px 0px 0px;
	background: none;
	border: none;
	font-size: 14px;
	font-weight: 600;
	color: #707070;
}
dl.news-list dd {
	margin: 0;
	padding: 12px 0px 8px 248px;
	line-height: 1.6;
}
dl.news-list a {
	padding-bottom: 5px;
	position: relative;
	display: block;
	z-index: 1;
	border-bottom: 1px solid #CCCCCC;
	color: var(--ark-color--main);
	text-decoration: none;
}
dl.news-list a:first-child {
/*
	border-top: 1px solid #EBEBEB;
*/
}
dl.news-list a:hover {
	color: var(--ark-color--link);
}
dl.news-list a i {
	color: var(--ark-color--link);
	position: absolute;
	top: 35%;
/*
	bottom: 0;
*/
	right: 15px;
	vertical-align: middle;
}

.single-news .p-entry__head .c-postMetas,
.single-mnews .p-entry__head .c-postMetas {
	margin-top: 0rem;
	margin-bottom: 1rem;
	font-size: 12px;
	letter-spacing: 0;
}
.single-news .c-postMetas>.c-postAuthor,
.single-news .c-postMetas>div,
.single-mnews .c-postMetas>.c-postAuthor,
.single-mnews .c-postMetas>div {
	margin-bottom: 0;
	margin-right: 10px;
	padding: 4px 12px;
	text-align: center;
	color: #29B9B5;
	background: none;
	border: 1px solid #29B9B5;
	border-radius: 4px;
}
.single-news .c-postTimes__item,
.single-news .c-postMetas__icon,
.single-news .c-postTerms__item,
.single-news .c-postTerms__link,
.single-mnews .c-postTimes__item,
.single-mnews .c-postMetas__icon,
.single-mnews .c-postTerms__item,
.single-mnews .c-postTerms__link {
	margin-right: 0;
}
.single-news svg.c-postMetas__icon,
.single-mnews svg.c-postMetas__icon {
	display: none;
}
.single-news h3.c-pageTitle__main,
.single-mnews h3.c-pageTitle__main {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
}
.single-news .p-entry__content.c-postContent,
.single-mnews .p-entry__content.c-postContent {
	margin-top: 2rem;
	line-height: 1.4;
}
.single-news .p-entry__content.c-postContent .gallery,
.single-mnews .p-entry__content.c-postContent .gallery {
	padding: 1rem 0 0;
	line-height: 1.6;
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: start;
	gap: 10px;
}
.single-news .p-entry__content.c-postContent .gallery > div,
.single-mnews .p-entry__content.c-postContent .gallery > div {
	width: calc(33.3333% - 20px / 3);
}
.single-news .p-entry__content.c-postContent .gallery > div img,
.single-mnews .p-entry__content.c-postContent .gallery > div img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

@media screen and (max-width: 600px) {

	dl.news-list {
		font-size: 14px;
	}
	dl.news-list dt {
		margin-left: 0;
	}
	dl.news-list dd {
		clear: both;
		padding: 0px 20px 7px 0px;
	}
	dl.news-list dt span.news-category {
		margin-bottom: 5px;
		font-size: 12px;
	}
	dl.news-list dt span.news-date {
		margin-bottom: 5px;
		padding: 2px 0px 0px 0px;
	}

	.single-news h3.c-pageTitle__main,
	.single-mnews h3.c-pageTitle__main {
		font-size: 18px;
	}
}


/* Case */

.case-header {
	margin-bottom: 2rem;
	padding: 2rem 2rem 1rem 2rem;
	background: #FFFEE0;
	border: 1px solid #CCCCCC;
    border-radius: 12px;
	display: flex;
	align-items: baseline;
}
.case-header .case-header-title {
	min-width: 180px;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
}
.case-header dl {
	width: 100%;
	margin: 0px 0px 10px 0px;
	display: flex;
	align-items: baseline;
}
.case-header dl dt {
	clear: both;
	float: left;
	width: 88px;
	margin: 11px 0px 0px 0px;
	font-size: 14px;
	font-weight: 600;
	color: #313131;
}
.case-header dl dd {
	width: 80%;
	margin: 0;
	padding-left: 8px;
}
.case-header .c-searchForm__s {
	border: none;
	border-radius: 4px;
}
.case-header .c-searchForm__submit {
    width: 250px;
	margin: 1rem 0 0 20%;
	text-align: center;
	color: #FFF;
	background: #29B9B5;
	border: 2px solid #29B9B5;
	border-radius: 24px;
	cursor: pointer;
	display: block;
	position: static;
}
.case-header .c-searchForm__submit:hover {
	color: #29B9B5;
	background: #FFF;
}

dl.case-list {
	padding: 0px;
	font-size: 16px;
	box-sizing: border-box;
}
dl.case-list dt {
	width: 100%;
	padding: 1rem 0 0 0;
	font-size: 18px;
	border-top: 1px solid #CCCCCC;
}
dl.case-list dd {
	width: 100%;
	padding: 0;
	font-size: 14px;
}
dl.case-list dd:last-child {
	border-bottom: 1px solid #CCCCCC;
}

@media screen and (max-width: 600px) {
	.case-header {
    	margin-bottom: 20px !important;
		padding: 20px 20px 10px;
		flex-wrap: wrap;
	}
	.case-header .case-header-title {
		min-width: 100%;
    	margin-bottom: 1rem;
		font-size: 18px;
	}
	.case-header .c-searchForm__submit {
    	width: 88%;
		margin: 1rem auto 0 auto;
	}
	.case-header dl dt {
		display: none;
	}
	.case-header dl dd {
		width: 100%;
		padding-left: 0;
	}
}


/* Login Menu */

.l-main__body > .login-menu {
	margin: -1.5rem 0 2rem 0 !important;
	padding: 8px 15px;
	border: 1px solid #CCCCCC;
    border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.login-menu .login-menu-title {
	font-size: 20px;
	font-weight: 600;
}
.login-menu ul {
}
.login-menu li {
	margin: 0;
	padding: 0px 12px;
	font-size: 14px;
	border-right: 1px solid #CCCCCC;
	line-height: 1;
	display: inline-block;
}
.login-menu li:last-child {
	padding-right: 0;
	border-right: none;
}

@media screen and (max-width: 600px) {
}


/* Theme MY Login */

.tml {
	width: 320px;
	margin: 1rem auto;
	padding: 2rem 2rem;
	background: #F8F4F4;
	border-radius: 12px;
}
.tml ul.tml-links {
	margin: 0 0 0 14px !important;
	font-size: 14px !important;
}
.tml .tml-errors,
.tml .tml-messages {
	margin: 0 0 15px !important;
	padding: 0 !important;
	list-style: none !important;
	font-size: 14px !important;
}
.tml .tml-action-confirmaction .success,
.tml .tml-error,
.tml .tml-message,
.tml .tml-success {
    border-left: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    margin: 0 0 15px !important;
    padding: 0 !important;
	color: #FF0000;
}
.tml [type="submit"] {
    width: 100%;
	text-align: center;
	color: #FFF;
	background: #D24C33;
	border: 2px solid #D24C33;
	border-radius: 24px;
	cursor: pointer;
	display: block;
}
.tml [type="submit"]:hover {
	color: #D24C33;
	background: #FFF;
}

@media screen and (max-width: 600px) {
}

