@charset "UTF-8";
/*
Theme Name: STAFF TREE
Author: Catwork Co., Ltd.
*/
/* Reset
----------------------------------------------------------- */
:root {
	/* bodyの背景色 */
	--body-bg-color: #fff;

	/* メインのフォントファミリー */
    --main-font: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;

	/* メインのフォントカラー */
	--main-font-color: #333;

	/* h2~h5タグまでのフォントウェイト */
	--h-tag-weight: bold;

	/* ここはブログで使用します */
	--main-color: #59684a;
	--main-light-color: #f7f9ef;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
	zoom:1;	/* hasLayout in IE */
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font:inherit;
	font-size:100%;
	font-weight:normal;
	font-style:normal;
	vertical-align:baseline;
	background:transparent;
	-webkit-text-size-adjust: 100%;
	word-break:break-all;
}
span {
  font-weight: inherit;
}
header, menu, nav, footer,
section,article, aside,
details, summary,
figure, figcaption{display:block;}
table{
	border-collapse:collapse;
	border-spacing:0;
}
::placeholder{
	color: #949292;
}
q, blockquote{quotes:none;}
q:before, q:after, blockquote:before, blockquote:after{
	content:"";
	content:none;
}
img{
	font-size:0;
	line-height:0;
	vertical-align:bottom;
	height:auto;
	max-width:100%;
}
input[type="text"],
input[type="email"] {
	border-radius: 0;
	-webkit-appearance: none;
	line-height: normal;
	color: var(--main-font-color);
}
a{
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	color: var(--main-font-color);
}
a:focus{ outline:none; }
a img{
	border:none;
	vertical-align:middle;
}
textarea{overflow:auto;}
label{cursor:pointer;}
.clearfix:after{
	display:block;
	visibility:hidden;
	content:".";
	clear:both;
	height:0;
	font-size:0;
	line-height:0;
}
* html .clearfix{ zoom:1; }
*:first-child + html .clearfix{ zoom:1; }
a{ text-decoration:none; }
strong{ font-weight:bold; }
ul,ol{ list-style-type:none; }
body{
	font-family: var(--main-font);
	font-size:16px;
	line-height:1.5;
	color: var(--main-font-color);
	background: var(--body-bg-color);
}
.wrap{
	width:100%;
	overflow-x:hidden;
}
h2,h3,h4,h5{
	font-weight: var(--h-tag-weight);
}
.inner{
	margin:0 auto;
	width:1200px;
}


/* wordpress ブロックcss
----------------------------------------------------------- */
.wp-block-embed iframe {
    max-width: 100%;
	position: relative !important;
	margin-bottom: 30px;
	pointer-events: none;
}
.wp-block-embed__wrapper {
    position: relative;
}
.wp-block-table{
	padding-bottom: 30px;
	overflow-x: auto;
}
.wp-block-table table {
    border-collapse: collapse;
	width: 100%;
}
.wp-block-table td, .wp-block-table th {
    padding: 0.5em;
    border: 1px solid #777777;
    word-break: normal;
}
.wp-block-table.is-style-stripes td, .wp-block-table.is-style-stripes th {
    border-color: transparent;
}
.wp-block-table.is-style-stripes {
    border-spacing: 0;
    border-collapse: inherit;
    background-color: transparent;
}
.wp-block-table thead{
	background: #aa843f;
	color: #fff;
}
.wp-block-table tfoot{
	background: #aa843f;
	color: #fff;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: rgba(157, 190, 76, 0.4);
}
.wp-block-table.is-style-stripes tbody tr:nth-child(even) {
    background-color: rgba(255,255,255,1);
}
.wp-block-table figcaption{
	text-align: center;
}
.blogcont ul{
	padding:0 0 30px 30px;
	list-style: disc;
}
.blogcont ol {
	padding: 0 0 30px 30px;
	list-style: decimal;
}
.blogcont ul.pager{
	padding: 0;
	list-style: none;
}
.blogcont a{
	font-weight: bold;
	text-decoration: underline;
}
.blogcont ul.pager a{
	text-decoration:none;
}

/* 引用 */
blockquote.wp-block-quote {
	border-left: 1px solid;
    padding-left: 15px;
}
blockquote.wp-block-quote p {
	padding-bottom: 10px !important;
}

/* 埋め込みコンテンツ */
figure.wp-block-embed {
	margin-top: 30px;
}
blockquote.wp-block-quote cite {
	color: currentColor;
	font-size: 14px;
	color: #aaaaaa;
}

/* ギャラリー　*/
figure.wp-block-gallery {
	display: flex;
}
figure.wp-block-gallery.columns-1 figure.wp-block-image {
	width: 100%;
}
figure.wp-block-gallery.columns-2 figure.wp-block-image {
	width: 48%;
}
figure.wp-block-gallery.columns-3 figure.wp-block-image {
	width: 32%;
}
figure.wp-block-gallery.columns-4 figure.wp-block-image {
	width: 23%;
}
figure.wp-block-gallery.columns-5 figure.wp-block-image {
	width: 18%;
}
figure.wp-block-gallery.columns-6 figure.wp-block-image {
	width: 15%;
}
figure.wp-block-gallery figure.wp-block-image.is-style-rounded img {
	border-radius: 15px;
}

/* 動画 */
.wp-block-video {
	margin-top: 30px;
}
.wp-block-video video {
	max-width: 100%;
}

/* その他 */
.wp-block-embed__wrapper {
	position: relative;
}
.wp-block-embed__wrapper .wp-embedded-content {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.wp-block-embed__wrapper .wp-embedded-content a {
	display: block;
	width: 100%;
	height: 100%;
}
iframe.wp-embedded-content {
	margin-bottom: 0;
}
:root .has-pale-pink-color {
	font-weight: bold;
    color: #f78da7
}
:root .has-vivid-red-color {
	font-weight: bold;
    color: #cf2e2e
}
:root .has-luminous-vivid-orange-color {
	font-weight: bold;
    color: #ff6900
}
:root .has-luminous-vivid-amber-color {
	font-weight: bold;
    color: #fcb900
}
:root .has-light-green-cyan-color {
	font-weight: bold;
    color: #7bdcb5
}
:root .has-vivid-green-cyan-color {
	font-weight: bold;
    color: #00d084
}
:root .has-pale-cyan-blue-color {
	font-weight: bold;
    color: #8ed1fc
}
:root .has-vivid-cyan-blue-color {
	font-weight: bold;
    color: #0693e3
}
:root .has-vivid-purple-color {
	font-weight: bold;
    color: #9b51e0
}
:root .has-white-color {
	font-weight: bold;
    color: #fff
}
:root .has-very-light-gray-color {
	font-weight: bold;
    color: #eee
}
:root .has-cyan-bluish-gray-color {
	font-weight: bold;
    color: #abb8c3
}
:root .has-very-dark-gray-color {
	font-weight: bold;
    color: #313131
}
:root .has-black-color {
	font-weight: bold;
    color: #000
}

/*===============================================
	animation
===============================================*/
/*	scroll action
------------------------------------------*/
.js-scroll {
	transition: opacity 1s, transform 1.5s;
}
.js-scroll:nth-child(2) {
	transition-delay: 0.2s;
}
.js-scroll:nth-child(3) {
	transition-delay: 0.4s;
}
.js-scroll:nth-child(4) {
	transition-delay: 0.6s;
}
.js-scroll:nth-child(5) {
	transition-delay: 0.8s;
}
.js-scroll:nth-child(6) {
	transition-delay: 1s;
}
.js-scroll.is-fadeIn {
	opacity: 0;
}
.js-scroll.is-fadeIn.is-view {
	opacity: 1;
}
.js-scroll.is-fadeInUp {
	opacity: 0;
	transform: translate(0, 80px);
}
.js-scroll.is-fadeInUp.is-view {
	opacity: 1;
	transform: translate(0, 0);
}
/*===============================================
横幅1240px以下
===============================================*/
@media screen and (max-width: 1240px) and (min-width: 431px) {
  html,
  body,
  .wrap {
    width: 1240px;
  }
}
/*===============================================
横幅431px以上
===============================================*/
@media screen and (min-width: 431px) {
	a {
		transition: all .5s;
	}
	a:hover{
		opacity:0.8;
		filter:alpha(opacity=80);
		-moz-opacity:0.8;
		transition: all .5s;
	}
	.sp{
		display:none !important;
	}
	p {
		line-height: 2;
	}

	/* スムーススクロール設定 */
	html {
		scroll-behavior: smooth;
	}
	:root {
		--header-height: 135px;
	}





/* common
	------------------------------------------------------------------------*/
	/*	.common_cv01
	------------------------------------------*/
	.common_cv01 {
		padding: 80px 0 75px;
		background: url("img/common_cv_bg01_pc.png") no-repeat center/cover;
		color: #fff;
	}
	.common_cv01 h2 {
		margin-bottom: 30px;
		padding: 60px 0 0;
		background: url("img/common_cv_txt01.png") no-repeat center top;
		font-weight: bold;
		font-size: 34px;
		text-align: center;
	}
	.common_cv01 h2 span {
		color: #b5c565;
    font-weight: bold;
	}
	.common_cv01 .list {
		width: min(100%, 980px);
		margin: 0 auto 30px;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-column-gap: 10px;
	}
	.common_cv01 .list li {
		min-height: 200px;
		display: grid;
		grid-template-rows: 2.5em 1fr;
		align-items: center;
		background: rgba(255, 255, 255, 0.2);
		padding: 30px 20px 20px;
		box-sizing: border-box;
		text-align: center;
	}
	.common_cv01 .list li a {
		color: inherit;
		font-weight: bold;
	}
	.common_cv01 .list h3 {
		align-self: end;
		font-weight: bold;
		font-size: 18px;
	}
	.common_cv01 .list .tel a {
		display: block;
	}
	.common_cv01 .list .tel .time {
		display: block;
		margin-top: 5px;
		line-height: 1.5;
		letter-spacing: 0.05em;
	}
	.common_cv01 .list .btn {
		margin: 0 auto;
		width: min(100%, 250px);
		border-radius: 100px;
	}
	.common_cv01 .list .btn a {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 15px;
		height: 50px;
		border-radius: inherit;
		position: relative;
	}
	.common_cv01 .list .btn a::before {
		content: "";
		display: block;
		width: 28px;
		height: 26px;
		background: no-repeat center;
		transition: all 0.5s;
	}
	.common_cv01 .list .btn a:hover {
		opacity: 1;
		letter-spacing: 0.05em;
	}
	.common_cv01 .list .btn a:hover::before {
		transform: scale(1.1);
	}
	.common_cv01 .list .btn.is-mail a {
		background: #59684a;
	}
	.common_cv01 .list .btn.is-mail a::before {
		background-image: url("img/common_ico_mail01.png");
	}
	.common_cv01 .list .btn.is-mail a:hover {
		background-color: #4c593f;
	}
	.common_cv01 .list .btn.is-line a {
		background: #00bc00;
	}
	.common_cv01 .list .btn.is-line a::before {
		background-image: url("img/common_ico_line01.png");
	}
	.common_cv01 .list .btn.is-line a:hover {
		background-color: #00a300;
	}
	.common_cv01 .message {
		text-align: center;
	}
	/*	.common .key
	------------------------------------------*/
	.common .key {
		height: 350px;
		position: relative;
	}
	.common .key::after {
		content: "";
		display: block;
		width: calc(100% - 80px);
		height: 100%;
		margin: 0 0 0 auto;
		background: no-repeat center/cover; /* background-imageは各所CSSで設定 */
		position: absolute;
		top: 0;
		right: 0;
		pointer-events: none;
	}
	.common .key .inner {
		position: relative;
		z-index: 2;
		width: min(100% - 200px, 1200px);
		height: 100%;
		display: flex;
		align-items: center;
	}
	.common .key .tit {
		color: #fff;
		font-weight: bold;
		font-size: 36px;
		line-height: 1.5;
	}
	.common .key .tit::after {
		content: "";
		display: block;
		margin: 10px auto 0 10px;
		width: 100%;
		height: 14px;
		background: no-repeat center left/contain; /* background-imageは各所CSSで設定 */
	}
	/*	.common .pankuzu
	------------------------------------------*/
	.common .pankuzu {
		margin-bottom: 70px;
		padding: 20px 0;
	}
	.common .pankuzu ul {
		display: flex;
		flex-wrap: wrap;
	}
	.common .pankuzu ul li {
		position: relative;
		margin-right: 20px;
		padding-right: 20px;
		font-size: 14px;
	}
	.common .pankuzu ul li a {
		display: block;
		color: #a5b747;
		font-weight: bold;
	}
	.common .pankuzu ul li a:hover {
		opacity: 1;
		text-decoration: underline;
	}
	.common .pankuzu ul li::before {
		content: "";
		display: block;
		width: 6px;
		height: 6px;
		border-top: 1px solid;
		border-right: 1px solid;
		transform: rotate(45deg);
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		margin: auto;
	}
	.common .pankuzu ul li:last-of-type {
		margin-right: 0;
		padding-right: 0;
	}
	.common .pankuzu ul li:last-of-type::before {
		content: none;
	}
	/*	.pager
	------------------------------------------*/
	.info .pager {
		margin: 50px auto 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.info .pager .page-numbers {
		width: 40px;
		height: 40px;
		margin: 5px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 50%;
		background: #59684a;
		border: 1px solid #59684a;
		box-sizing: border-box;
		color: #fff;
		font-weight: bold;
		flex-shrink: 0;
	}
	.info .pager .page-numbers.current,
	.info .pager .page-numbers:hover {
		background: none;
		color: #59684a;
	}
	.info .pager .prev, .info .pager .next {
		overflow: hidden;
	}
	/* .info .pager .prev::before, .info .pager .next::before {
		content: "";
		display: block;
		width: 10px;
		height: 10px;
		background: #fff;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
	} */
	.info .pager .prev:hover::before, .info .pager .next:hover::before {
		background: #59684a;
	}
	/* .info .pager .prev::before {
		transform: rotate(-45deg);
		margin-left: 10px;
	}
	.info .pager .next::before {
		transform: rotate(135deg);
	} */
  /*	.common_recruit01 (RECRUIT)
  ------------------------------------------*/
  /* 見出し、背景など */
  .common_recruit01 {
    margin-bottom: 120px;
    padding: 120px 0 115px;
    position: relative;
  }
  .common_recruit01::after {
    content: "";
    display: block;
    width: calc(50% + 350px);
    height: 650px;
    background: #b5c565;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
  }
  .common_recruit01 h2 {
    margin-bottom: 35px;
    background-image: url("img/common_recruit_txt01.png");
  }
  .common_recruit01 h2::before {
    content: "";
    display: block;
    width: min(100%, 1200px);
    height: 272px;
    background: url("img/common_recruit_bg01.png") no-repeat left top, url("img/common_recruit_bg02.png") no-repeat right 167px top 70px;
    position: absolute;
    top: -155px;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
  }
  .common_recruit01 .lead {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
  }
  .common_recruit01 .btn {
    margin: 20px auto 0;
  }
  /* 一覧 */
  .common_recruit01-listWrap {
    position: relative;
  }
  /* クリックされないように */
  .common_recruit01-listWrap::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 5;
  }

  .common_recruit01 .message {
    width: fit-content;
    height: fit-content;
    padding: 30px 100px;
    background: #f1b01a;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 5;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    z-index: 10;
  }
  .common_recruit01 .message a {
    margin-top: 10px;
    font-size: 26px;
    display: block;
    text-decoration: underline;
    color: #fff;
    font-weight: bold;
  }

    /* 除外 */
    .info-single .common_recruit01-listWrap::after {
      content: none;
    }
  
  .common_recruit01-listWrap.unlocked::after {
    content: none;
  }
  .common_recruit01-listWrap.unlocked .message {
    display: none;
  }
  .unlocked .common_recruit01-list .item a::after {
    content: none;
  }
  
  .common_recruit01-list .item {
    width: 330px;
    margin: 0 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  }
  .common_recruit01-list .item a {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    background: #fff;
    position: relative;
  }
  .common_recruit01-list .item a::after {
		content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    -webkit-backdrop-filter: blur(5px);
    /* ぼかし処理 */
    backdrop-filter: blur(5px);
  }
  /* info single のみぼかしなし */
  .info-single .common_recruit01-list .item a::after {
    content: none;
  }
  .common_recruit01-list .item a:hover {
    opacity: 1;
    background: #f9faf3;
  }
  .common_recruit01-list .item a:hover .img img {
    filter: brightness(0.8);
    transform: scale(1.05);
  }
  .common_recruit01-list .item .txtBox {
    padding: 20px 20px 35px;
    position: relative;
  }
  .common_recruit01-list .item .txtBox::after {
    content: "";
    display: block;
    width: calc(100% - 40px);
    height: 1px;
    background: #a5b747;
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
    margin: auto;
  }
  .common_recruit01-list .item .cat {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .common_recruit01-list .item .cat li {
    margin: 2px 4px 2px 0;
    padding: 2px 5px;
    background: #59684a;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.4;
  }
  .common_recruit01-list .item .cat li:last-of-type {
    margin-right: 0;
  }
  .common_recruit01-list .item .data {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 15px;
    gap: 3px 0;
  }
  .common_recruit01-list .item .data dt, .common_recruit01-list .item .data dd {
    box-sizing: border-box;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5;
  }
  .common_recruit01-list .item .data dt {
    max-width: 120px;
    padding: 0 1.1em 0 0;
    color: #59684a;
    position: relative;
  }
  .common_recruit01-list .item .data dt::after {
    content: "：";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .common_recruit01-list .item .tit {
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #a5b747;
    font-size: 20px;
  }
  .common_recruit01-list .item .tag {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .common_recruit01-list .item .tag li {
    margin: 2px 4px 2px 0;
    padding: 2px 8px;
    background: #f2f2f2;
    font-size: 14px;
    line-height: 1.4;
  }
  .common_recruit01-list .item .tag li:last-of-type {
    margin-right: 0;
  }
  .common_recruit01-list .item .txt {
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .common_recruit01-list .item .img {
    order: -1;
    overflow: hidden;
  }
  .common_recruit01-list .item .img img {
    width: 100%;
    transition: all 0.5s;
  }
  /* 左上タグ */
  .common_recruit01-list.is-new .item a::before, .common_recruit01-list.is-haken .item a::before, .common_recruit01-list.is-baito .item a::before, .common_recruit01-list.is-syain .item a::before {
    display: block;
    padding: 2px 10px;
    position: absolute;
		z-index: 2;
    top: 5px;
    left: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
  }
  .common_recruit01-list.is-new .item a::before {
    content: "NEW！";
    background: #f1b01a;
  }
  .common_recruit01-list.is-haken .item a::before {
    content: "派遣";
    background: #59684a;
  }
  .common_recruit01-list.is-syain .item a::before {
    content: "正社員";
    background: #a5b747;
  }
  .common_recruit01-list.is-baito .item a::before {
    content: "スキマバイト";
    background: #f1b01a;
  }
  /* slider用 */
  .common_recruit01-list .slick-track {
    display: flex;
    padding: 30px 0;
  }
  .common_recruit01-list .slick-slide {
    height: auto !important;
  }
  .common_recruit01-list .slick-arrow {
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
    width: 130px;
    height: 130px;
    margin: auto;
    padding: 0;
    border: none;
    box-sizing: border-box;
    border-radius: 50%;
    background: #59684a url("img/common_ico_arrow02.png") no-repeat 55% center;
    text-indent: 100%;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.5s;
  }
  .common_recruit01-list .slick-arrow:hover {
    opacity: 1;
  }
  .common_recruit01-list .slick-arrow.slick-prev {
    left: max(50% - 600px, 20px);
    transform: scale(-1, 1);
  }
  .common_recruit01-list .slick-arrow.slick-next {
    right: max(50% - 600px, 20px);
  }
  /* .common_about ( ABOUT WORKSTYLE 色見などは各ページCSSで指定 )
	------------------------------------------*/
	.common_about {
		overflow: hidden;
		padding: 0 0 120px;
	}
  .common_about h2 {
    margin-bottom: 150px;
    padding: 50px 0 0;
    background: url("img/common_about_txt01.png") no-repeat center top;
    font-size: 26px;
    text-align: center;
    line-height: 1.85;
  }
  .common_about h2 span {
    margin: 5px;
    padding: 7px 8px;
    background: #e1e8c1;
  }
  .common_about .box01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
	}
	.common_about .box01::after {
		content: "";
		display: block;
		width: max(50vw + 320px, 950px);
		height: calc(100% + 250px);
		background: #f9faf3;
		position: absolute;
		top: -55px;
		left: 280px;
		z-index: -1;
		pointer-events: none;
  }
  .common_about .box01 .txtBox {
    flex: 1;
  }
  .common_about .box01 .txt {
    font-weight: bold;
    font-size: 18px;
  }
  .common_about .box01 .txt + .txt {
    margin-top: 35px;
  }
  .common_about .box01 .txt span {
    color: #8ca21d;
  }
  .common_about .box01 .img {
    order: -1;
    width: 50%;
    margin-top: -45px;
  }
  .common_about .box01 .img img {
    width: 100%;
  }
  .common_about .box02 {
    width: min(100%, 1000px);
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    grid-column-gap: 30px;
    margin: 0 auto;
    padding: 40px 30px;
    border-radius: 10px;
    border: 3px dotted #b5c565;
    box-sizing: border-box;
    position: relative;
  }
  .common_about .box02 h3 {
    margin-top: 45px;
  }
  .common_about .box02 .list {
    position: relative;
    z-index: 2;
    min-width: 400px;
  }
  .common_about .box02 .list li {
    padding: 0 0 0 25px;
    background: url("img/common_ico_check01.png") no-repeat left top 12px/18px;
    font-size: 18px;
  }
  .common_about .box02 .list li + li {
    margin-top: 4px;
  }
  /*	.common_point ( POINT )
  ------------------------------------------*/
  .common_point {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 45px;
    margin-bottom: 80px;
  }
  .common_point__item {
    width: calc((100% - 90px) / 3);
    display: flex;
    flex-direction: column;
    padding: 45px 40px 30px;
    border: 1px solid #a5b747;
    border-top: none;
    box-sizing: border-box;
    position: relative;
  }
  .common_point__item::before, .common_point__item::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
  }
  .common_point__item::before {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #a5b747 calc(100% - 105px), rgba(255, 255, 255, 0) calc(100% - 105px), rgba(255, 255, 255, 0) calc(100% - 22px), #a5b747 calc(100% - 22px));
    top: 0;
    left: 0;
  }
  .common_point__item::after {
    background: no-repeat center/contain;
    width: 62px;
    height: 58px;
    top: -30px;
    right: 30px;
  }
  .common_point__item:nth-of-type(3n - 2) {
    transform: translateY(80px);
  }
  .common_point__item:nth-of-type(3n - 1) {
    transform: translateY(40px);
  }
  .common_point__item:nth-of-type(1)::after {
    background-image: url("img/common_ico_num01_01.png");
  }
  .common_point__item:nth-of-type(2)::after {
    background-image: url("img/common_ico_num01_02.png");
  }
  .common_point__item:nth-of-type(3)::after {
    background-image: url("img/common_ico_num01_03.png");
  }
  .common_point__item:nth-of-type(4)::after {
    background-image: url("img/common_ico_num01_04.png");
  }
  .common_point__item:nth-of-type(5)::after {
    background-image: url("img/common_ico_num01_05.png");
  }
  .common_point h3 {
    margin-bottom: 15px;
    font-size: 26px;
  }
  .common_point__note {
    margin-top: 5px;
    padding-left: 1em;
    font-weight: bold;
    font-size: 14px;
    text-indent: -1em;
  }
  .common_point__img {
    order: -1;
    display: block;
    margin: 0 auto 20px;
  }
  /* .common_feature ( FEATURE )
  ------------------------------------------*/
  .common_feature {
    padding: 115px 0 170px;
    background: #222 url("img/common_feature_bg01_pc.png") no-repeat center top/max(100%, 1800px);
  }
  .common_feature h2 {
    margin-bottom: 60px;
    background-image: url("img/common_feature_txt01.png");
  }
  .common_feature .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 85px 45px;
  }
  .common_feature .list li {
    position: relative;
  }
  .common_feature .list li::after {
    content: "";
    display: block;
    width: 30px;
    height: 110px;
    background: #222 no-repeat right top;
    position: absolute;
    top: 0;
    right: 0;
  }
  .common_feature .list li:nth-of-type(1)::after {
    background-image: url("img/common_feature_num01.png");
  }
  .common_feature .list li:nth-of-type(2)::after {
    background-image: url("img/common_feature_num02.png");
  }
  .common_feature .list li:nth-of-type(3)::after {
    background-image: url("img/common_feature_num03.png");
  }
  .common_feature .list li:nth-of-type(4)::after {
    background-image: url("img/common_feature_num04.png");
  }
  .common_feature .list li:nth-of-type(5)::after {
    background-image: url("img/common_feature_num05.png");
  }
  .common_feature .list li:nth-of-type(6)::after {
    background-image: url("img/common_feature_num06.png");
  }
  .common_feature .list .txt {
    position: absolute;
    z-index: 2;
    padding: 25px 17px;
    height: max-content;
    background: #222;
    box-sizing: border-box;
    position: absolute;
    top: 95px;
    left: 30px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
  }
  .common_feature .list .img {
    width: 100%;
  }
  /* .common_compare ( COMPARE )
  ------------------------------------------*/
  .common_compare {
    padding: 115px 0 120px;
    background: #f9faf3;
  }
  .common_compare h2 {
    margin-bottom: 55px;
    background-image: url("img/common_compare_txt01.png");
  }
  /*--------- データ表 ---------*/
  .common_compare .data {
    width: 100%;
    margin-bottom: 45px;
    box-sizing: border-box;
    table-layout: fixed;
    border-spacing: 5px;
    border-collapse: separate;
  }
  .common_compare .data thead, .common_compare .data tbody, .common_compare .data tr, .common_compare .data th, .common_compare .data td {
    box-sizing: border-box;
  }
  .common_compare .data th, .common_compare .data td {
    height: 80px;
    padding: 10px;
    font-weight: bold;
    vertical-align: middle;
    line-height: 1.5;
  }
  .common_compare .data thead th {
    color: #fff;
    font-size: 24px;
    text-align: center;
  }
  .common_compare .data thead th:nth-of-type(1) {
    width: 270px;
  }
  .common_compare .data thead th.is-haken {
    background: #59684a;
  }
  .common_compare .data thead th.is-syain {
    background: #b5c565;
  }
  .common_compare .data thead th.is-baito {
    background: #f1b01a;
  }
  .common_compare .data tbody th {
    padding-left: 35px;
    padding-right: 35px;
    background: #ebeee2;
    font-size: 20px;
    text-align: left;
  }
  .common_compare .data tbody th .small {
    font-size: 16px;
  }
  .common_compare .data tbody td {
    background: #fff;
    text-align: center;
  }
  .common_compare .data tbody td:nth-of-type(1) {
    position: relative;
  }
  .common_compare .data tbody td:nth-of-type(1)::before, .common_compare .data tbody td:nth-of-type(1)::after {
    content: "";
    display: block;
    width: 3px;
    height: calc(100% + 6px);
    position: absolute;
    top: -3px;
    pointer-events: none;
  }
  .common_compare .data tbody td:nth-of-type(1)::before {
    right: 0;
  }
  .common_compare .data tbody td:nth-of-type(1)::after {
    left: 0;
  }
  .common_compare .data tbody tr:first-of-type td:nth-of-type(1)::before, .common_compare .data tbody tr:first-of-type td:nth-of-type(1)::after {
    height: calc(100% + 8px);
    top: -5px;
  }
  .common_compare .data .mark {
    display: block;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.1;
  }
  /* 派遣 */
  .common_compare .data.is-haken tbody td:nth-of-type(1)::before, .common_compare .data.is-haken tbody td:nth-of-type(1)::after {
    background: #59684a;
  }
  .common_compare .data.is-haken tbody tr:last-of-type td:nth-of-type(1) {
    border-bottom: 3px solid #59684a;
  }
  /* 正社員 */
  .common_compare .data.is-syain tbody td:nth-of-type(1)::before, .common_compare .data.is-syain tbody td:nth-of-type(1)::after {
    background: #b5c565;
  }
  .common_compare .data.is-syain tbody tr:last-of-type td:nth-of-type(1) {
    border-bottom: 3px solid #b5c565;
  }
  /* スキマバイト */
  .common_compare .data.is-baito tbody td:nth-of-type(1)::before, .common_compare .data.is-baito tbody td:nth-of-type(1)::after {
    background: #f1b01a;
  }
  .common_compare .data.is-baito tbody tr:last-of-type td:nth-of-type(1) {
    border-bottom: 3px solid #f1b01a;
  }
  /*--------- オススメ ---------*/
  .common_compare .recommend {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    grid-column-gap: 20px;
    padding: 45px 20px 45px 55px;
    border-radius: 10px;
    box-sizing: border-box;
    border: 3px dotted #b5c565;
  }
  .common_compare .recommend h3 {
    position: relative;
    font-size: 20px;
    line-height: 1.6;
  }
  .common_compare .recommend h3::after {
    content: "";
    display: block;
    width: 29px;
    height: 30px;
    background: url("img/common_ico_chon01.png") no-repeat center/contain;
    position: absolute;
    top: -20px;
    left: -25px;
  }
  .common_compare .recommend-list li {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .common_compare .recommend-list li + li {
    margin-top: 10px;
  }
  .common_compare .recommend-list__tit {
    padding: 8px 20px 8px 15px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
    -webkit-clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  }
  .common_compare .recommend-list__tit.is-haken {
    background: #59684a;
  }
  .common_compare .recommend-list__tit.is-syain {
    background: #a5b747;
  }
  .common_compare .recommend-list__tit.is-baito {
    background: #f1b01a;
  }
  /*	.common_workstyle ( WORK STYLE )
  ------------------------------------------*/
  .common_workstyle {
    overflow: hidden;
    padding: 120px 0 110px;
    background: #f9faf3;
  }
  .common_workstyle h2 {
    margin-bottom: 70px;
    background-image: url("img/common_workstyle_txt01.png");
  }
  .common_workstyle .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 30px 0;
    position: relative;
    z-index: 1;
  }
  .common_workstyle .box::after {
    content: "";
    display: block;
    width: max(940px, 50vw + 320px);
    height: 100%;
    background: #fff no-repeat right 350px bottom -70px;
    position: absolute;
    top: 0;
    right: 280px;
    z-index: -1;
    pointer-events: none;
  }
  .common_workstyle .box + .box {
    margin-top: 80px;
  }
  .common_workstyle .box:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
  .common_workstyle .box:nth-of-type(odd)::after {
    right: auto;
    left: 280px;
    background-position: left 680px bottom -70px;
  }
  .common_workstyle .box:nth-of-type(1)::after {
    background-image: url("img/common_workstyle_num01.png");
  }
  .common_workstyle .box:nth-of-type(2)::after {
    background-image: url("img/common_workstyle_num02.png");
  }
  .common_workstyle .box:nth-of-type(3)::after {
    background-image: url("img/common_workstyle_num03.png");
  }
  .common_workstyle .box .txtBox {
    flex: 1;
  }
  .common_workstyle .box h3 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .common_workstyle .box h3 span {
    font-size: 36px;
  }
  .common_workstyle .box .txt {
    margin-bottom: 30px;
  }
  .common_workstyle .box .img {
    width: 50%;
    margin-top: -50px;
  }
  .common_workstyle .box .img img {
    width: 100%;
  }
  /*	.common_flow ( FLOW )
  ------------------------------------------*/
  .common_flow h2 {
    margin-bottom: 40px;
    padding-top: 70px;
    background-image: url("img/common_flow_txt01.png");
    font-size: 28px;
    text-shadow: none;
  }
  .common_flow .list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 130px;
  }
  .common_flow .list li {
    width: calc((100% - 90px) / 4);
    display: flex;
    flex-direction: column;
    padding: 35px 25px 30px;
    border: 1px solid #a5b747;
    border-top: none;
    box-sizing: border-box;
    position: relative;
  }
  .common_flow .list li::before, .common_flow .list li::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
  }
  .common_flow .list li::before {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #a5b747 calc(100% - 80px), rgba(255, 255, 255, 0) calc(100% - 80px), rgba(255, 255, 255, 0) calc(100% - 15px), #a5b747 calc(100% - 15px));
    top: 0;
    left: 0;
  }
  .common_flow .list li::after {
    background: no-repeat center/contain;
    width: 46px;
    height: 44px;
    top: -22px;
    right: 25px;
  }
  .common_flow .list li:nth-of-type(4n - 3) {
    transform: translateY(90px);
  }
  .common_flow .list li:nth-of-type(4n - 2) {
    transform: translateY(60px);
  }
  .common_flow .list li:nth-of-type(4n - 1) {
    transform: translateY(30px);
  }
  .common_flow .list li:nth-of-type(1)::after {
    background-image: url("img/common_flow_num01.png");
  }
  .common_flow .list li:nth-of-type(2)::after {
    background-image: url("img/common_flow_num02.png");
  }
  .common_flow .list li:nth-of-type(3)::after {
    background-image: url("img/common_flow_num03.png");
  }
  .common_flow .list li:nth-of-type(4)::after {
    background-image: url("img/common_flow_num04.png");
  }
  .common_flow .list h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .common_flow .list .img {
    order: -1;
    display: block;
    margin: 0 auto 20px;
  }
  .common_flow .list .img.is-trans {
    transform: translateX(-15px);
  }
/* .common_info01 ( 企業情報 )
	------------------------------------------*/
	.common_info01 {
		padding: 0 0 120px;
	}
	.common_info01 .headBox {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		margin-bottom: 55px;
	}
	.common_info01 .headBox .cat {
		order: -1;
		width: 100%;
		margin-bottom: 17px;
		display: flex;
		flex-wrap: wrap;
	}
	.common_info01 .headBox .cat li {
		margin: 5px 10px 5px 0;
		padding: 6px 15px;
		background: #59684a;
		color: #fff;
		font-weight: bold;
		line-height: 1.4;
	}
	.common_info01 .headBox .cat li:last-of-type {
		margin-right: 0;
	}
	.common_info01 .headBox .tit {
		margin-right: 30px;
		padding: 0 30px 0 0;
		border-right: 2px solid;
		color: #59684a;
		font-size: 24px;
	}
	.common_info01 .headBox .txt {
		font-weight: bold;
		font-size: 20px;
	}
	.common_info01 .contentBox {
		display: grid;
		grid-template-columns: 50% 1fr;
		grid-column-gap: 60px;
		align-items: start;
	}
	.common_info01 .contentBox .txtBox {
		padding: 35px 0 0;
		border-top: 2px solid #a5b747;
	}
	.common_info01 .contentBox .data {
		display: grid;
		grid-template-columns: auto 1fr;
		margin-bottom: 15px;
		gap: 3px 0;
	}
	.common_info01 .contentBox .data dt, .common_info01 .contentBox .data dd {
		box-sizing: border-box;
		font-weight: bold;
		font-size: 20px;
		line-height: 1.5;
	}
	.common_info01 .contentBox .data dt {
		max-width: 120px;
		padding: 0 1.1em 0 0;
		color: #59684a;
		position: relative;
	}
	.common_info01 .contentBox .data dt::after {
		content: "：";
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.common_info01 .contentBox .txt {
		padding-bottom: 30px;
		border-bottom: 2px solid #a5b747;
	}
	.common_info01 .contentBox .tag {
		display: flex;
		flex-wrap: wrap;
		margin-top: 30px;
	}
	.common_info01 .contentBox .tag li {
		margin: 2px 4px 2px 0;
		padding: 4px 13px;
		background: #f2f2f2;
		font-weight: bold;
		line-height: 1.4;
	}
	.common_info01 .contentBox .tag li:last-of-type {
		margin-right: 0;
	}
	.common_info01 .contentBox .img {
		order: -1;
	}
	.common_info01 .contentBox .img img {
		width: 100%;
	}
  /*	.common_card01 ( 3つ並びリスト )
  ------------------------------------------*/
  .common_card01 {
    width: min(100%, 1110px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px;
  }
  .common_card01 .item {
    display: flex;
    flex-direction: column;
  }
  .common_card01 .tit {
    /* min-height: 3em; */
    margin-bottom: 15px;
    color: #59684a;
    font-size: 20px;
    line-height: 1.5;
  }
  .common_card01 .img {
    order: -1;
    margin-bottom: 25px;
  }
  .common_card01 .img img {
    width: 100%;
  }
  /*	.common_tit01
	------------------------------------------*/
	.common_tit01 {
		position: relative;
		background: no-repeat center top; /* background-imageは各所CSSで設定 */
		padding: 75px 0 13px;
		font-size: 36px;
		text-align: center;
		text-shadow: 3px 3px 2px white, -3px 3px 2px white, 3px -3px 2px white, -3px -3px 2px white, 3px 0 2px white, 0 3px 2px white, -3px 0 2px white, 0 -3px 2px white;
	}
	.common_tit01::after {
		content: "";
		display: block;
		width: 20px;
		height: 5px;
		background: #b5c565;
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
	}
	.common_tit01 span {
		display: block;
		margin-bottom: 5px;
		font-weight: normal;
		font-size: 14px;
		text-shadow: none;
	}
	.common_tit01.is-shadow-green {
		text-shadow: 3px 3px 2px #f9faf3, -3px 3px 2px #f9faf3, 3px -3px 2px #f9faf3, -3px -3px 2px #f9faf3, 3px 0 2px #f9faf3, 0 3px 2px #f9faf3, -3px 0 2px #f9faf3, 0 -3px 2px #f9faf3;
	}
	/* color variation */
	.common_tit01.is-white {
		color: #fff;
		text-shadow: none;
	}
	/*	.common_tit02
	------------------------------------------*/
	.common_tit02 {
		padding: 55px 0 0;
		background: no-repeat center top; /* background-imageは各所CSSで設定 */
		font-size: 20px;
		text-align: center;
	}
	/*	.common_btn01
	------------------------------------------*/
	.common_btn01 {
		width: min(100%, 370px);
		border-radius: 100px;
		text-align: center;
		line-height: 1.5;
	}
	.common_btn01 a {
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 50px;
		padding: 10px 20px;
		background: #59684a;
		border: 2px solid #59684a;
		border-radius: inherit;
		box-sizing: border-box;
		color: #fff;
		font-weight: bold;
	}
	.common_btn01 a:hover {
		opacity: 1;
		background: #fff !important;
		color: #59684a;
	}
	.common_btn01.is-big {
		width: min(100%, 450px);
		font-size: 20px;
	}
	.common_btn01.is-big a {
		min-height: 60px;
	}
	.common_btn01.is-lime a {
		background: #a5b747;
		border-color: #a5b747;
	}
	.common_btn01.is-lime a:hover {
		color: #a5b747;
	}
	.common_btn01.is-orange a {
		background: #f1b01a;
		border-color: #f1b01a;
	}
	.common_btn01.is-orange a:hover {
		color: #f1b01a;
	}
  /*	.common_table01
  ------------------------------------------*/
  .common_table01 {
    width: min(100%, 1145px);
    margin: 0 auto;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 5px;
  }
  .common_table01 th, .common_table01 td {
    padding: 20px 30px;
    text-align: left;
    vertical-align: middle;
    box-sizing: border-box;
  }
  .common_table01 th {
    width: 330px;
    background: #59684a;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
  }
  .common_table01 td {
    background: #f2f2f2;
  }
  /* color variation */
  .common_table01.is-lime th {
    background: #a5b747;
  }
  
	/*	.common_cart01
	------------------------------------------*/
  .common_cart01 form {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    grid-column-gap: 20px;
  }
  .common_cart01 .cartjs_product_table {
    height: 50px !important;
  }
  .common_cart01 input, .common_cart01 .cartjs_product_num > th {
    display: none;
  }
  .common_cart01 input, .common_cart01 .cartjs_product_num > td {
    display: block;
    padding-bottom: 0 !important;
  }
  .common_cart01 input[name="product_num"] {
    width: 60px !important;
    height: 50px !important;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #59684a;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
  }
  .common_cart01 input[type="submit"] {
    margin-bottom: 0 !important;
    box-sizing: border-box;
    font-family: inherit;
    -webkit-appearance: none;
    /* cursor: pointer; */
    display: block;
    width: 208px !important;
    height: 50px !important;
    padding: 0 0 0 20px;
    background: #59684a url("img/common_ico_cart01.png") no-repeat 20px center !important;
    border-radius: 100px !important;
    /* border: none; */
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    /* text-align: center; */
    transition: all 0.5s;
  }
  .common_cart01 input[type="submit"]:hover {
    opacity: 1;
    background-color: #4c593f;
    letter-spacing: 0.05em;
  }
  /* header
  ------------------------------------------------------------------------*/
  header {
    position: relative;
    z-index: 9990;
    width: 100%;
    height: 80px;
  }
  header h1 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    color: #fff;
    font-size: 12px;
    text-align: right;
  }
  header .headerTop {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1240px;
    height: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
  }
  header .logo {
    height: 100%;
  }
  header .logo a {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 0 0 170px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
  }
  header .logo a::before, header .logo a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    transition: all 0.6s;
  }
  header .logo a::before {
    width: 39px;
    height: 52px;
    left: 60px;
    bottom: 0;
    margin: auto;
    background: url("img/common_logo01.png") no-repeat center/contain;
    opacity: 0;
  }
  header .logo a::after {
    z-index: 2;
    width: 180px;
    height: 180px;
    left: 0;
    background: #fff;
  }
  header .logo img {
    position: absolute;
    z-index: 3;
    top: 30px;
    left: 50px;
    transition: all 0.5s;
  }
  header .headerCv {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .headerCv::before {
    content: "";
    display: block;
    margin-right: 20px;
    width: 198px;
    height: 50px;
    background: url("img/common_cv_txt01_pc.png") no-repeat left center/contain;
  }
  header .headerCv .tel {
    margin-right: 30px;
    text-align: center;
    font-size: 14px;
  }
  header .headerCv .tel a {
    display: block;
    font-weight: bold;
  }
  header .headerCv .tel .time {
    display: block;
    margin-top: 5px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  header .headerCv .btn {
    width: 80px;
    height: 80px;
    font-size: 14px;
    text-align: center;
  }
  header .headerCv .btn a {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    padding: 0 0 8px;
    box-sizing: border-box;
    color: #fff;
    font-weight: bold;
    position: relative;
  }
  header .headerCv .btn a::after {
    content: "";
    display: block;
    width: 28px;
    height: 26px;
    background: no-repeat center;
    position: absolute;
    top: 13px;
    right: 0;
    left: 0;
    margin: auto;
    transition: all 0.5s;
  }
  header .headerCv .btn a:hover {
    opacity: 1;
    letter-spacing: 0.05em;
  }
  header .headerCv .btn a:hover::after {
    transform: scale(1.15);
  }
  header .headerCv .btn.is-mail a {
    background: #59684a;
  }
  header .headerCv .btn.is-mail a::after {
    background-image: url("img/common_ico_mail01.png");
  }
  header .headerCv .btn.is-mail a:hover {
    background-color: #4c593f;
  }
  header .headerCv .btn.is-line a {
    background: #00bc00;
  }
  header .headerCv .btn.is-line a::after {
    background-image: url("img/common_ico_line01.png");
  }
  header .headerCv .btn.is-line a:hover {
    background-color: #00a300;
  }
  /* スクロール後 */
  header.is-scrolled-pc .logo a {
    padding-left: 105px;
  }
  header.is-scrolled-pc .logo a::before {
    opacity: 1;
  }
  header.is-scrolled-pc .logo a::after {
    opacity: 0;
    visibility: hidden;
  }
  header.is-scrolled-pc .logo img {
    opacity: 0;
    visibility: hidden;
  }
  /* nav
  ------------------------------------------------------------------------*/
  nav {
    position: relative;
		z-index: 9990;
    width: 100%;
    min-width: 1240px;
    box-sizing: border-box;
    background: #59684a;
  }
  #nav .list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px 30px;
    width: 1600px;
    margin: 0 auto;
  }
  @media screen and (max-width: 1400px) {
    #nav .list {
      width: 1000px;
    }
  }

  #nav .list li {
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.5;
  }
  #nav .list li a, #nav .list .parent {
    overflow: hidden;
    display: block;
    padding: 2px 0;
    color: #fff;
    font-weight: bold;
    position: relative;
    z-index: 1;
  }
  #nav .list li a::after, #nav .list .parent::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    background: #c9db70;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
    pointer-events: none;
  }
  #nav .list li a:hover, #nav .list .family:hover .parent {
    opacity: 1;
    color: #c9db70;
  }
  #nav .list li a:hover::after, #nav .list .family:hover .parent::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  #nav .list .family {
    position: relative;
  }
  #nav .list .parent {
    cursor: pointer;
    padding-right: 20px;
  }
  #nav .list .parent::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #fff;
    -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.5s;
  }
  #nav .list .child {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% - 10px);
    width: max-content;
    max-width: 320px;
    padding: 25px 30px 30px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 5px, #59684a 5px);
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
  }
  #nav .list .child li {
    min-height: auto;
    display: block;
    text-align: left;
  }
  #nav .list .child li + li {
    margin-top: 12px;
  }
  #nav .list .child li a {
    padding-left: 12px;
  }
  #nav .list .child li a::before {
    content: "";
    display: block;
    width: 5px;
    height: 1px;
    background: currentColor;
    position: absolute;
    top: 14px;
    left: 0;
  }
  #nav .list .child li a::after {
    width: calc(100% - 12px);
    left: auto;
    right: 0;
  }
  #nav .list .family:hover .child {
    opacity: 1;
    visibility: visible;
    bottom: 100%;
  }
  /* スクロール後 */
  nav.is-fixed {
    position: fixed;
    z-index: 9990;
    top: 80px;
    left: 0;
  }
  nav.is-fixed #nav .list .parent::before {
    transform: scale(1, -1);
  }
  nav.is-fixed #nav .list .child {
    bottom: auto !important;
    top: calc(100% - 10px);
    padding: 30px 30px 25px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 5px, #59684a 5px);
  }
  nav.is-fixed #nav .list .family:hover .child {
    top: 100%;
  }
  /* .home
  ------------------------------------------------------------------------*/
  /*	.home header
  ------------------------------------------*/
  .home header h1 {
    color: #222;
  }
  /*	.home .key
  ------------------------------------------*/
  .home .key {
    overflow: hidden;
    height: 770px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .home .keyMain {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
    background: url("img/home_key_bg01.png") no-repeat center/cover;
    position: relative;
  }
  .home .keyMain .txtBox {
    position: relative;
    z-index: 2;
    width: min(100% - 100px, 1120px);
    margin: 0 auto;
    padding: 0 0 0 35px;
    border-left: 5px solid #c9db70;
    box-sizing: border-box;
  }
  .home .keyMain .txt01, .home .keyMain .txt02 {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  }
  .home .keyMain .txt01 {
    margin-bottom: 30px;
  }
  .home .keyMain .txt02 {
    margin-bottom: 30px;
  }
  .home .keyMain .txt03 {
    width: fit-content;
    padding: 2px 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
  }
  .home .keyMain__img {
    position: absolute;
    bottom: 0;
    right: calc(50% - 550px);
    filter: drop-shadow(35px 0 5px rgba(0, 0, 0, 0.25));
  }
  .home .keySide {
    order: -1;
    width: 80px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 100px 0 0;
    box-sizing: border-box;
  }
  /*	.home .cont01
  ------------------------------------------*/
  .home .cont01 {
    padding: 140px 0 100px;
    background: url("img/common_logo03_pc.png") no-repeat left calc(50% - 580px) center;
  }
  .home .cont01 .inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 50px;
  }
  .home .cont01 h2 {
    margin-top: 10px;
    padding: 0 35px 0 0;
    background: url("img/home_cont01_txt01.png") no-repeat right top;
    font-size: 34px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
  }
  .home .cont01 h2 span {
    display: inline-block;
    margin-bottom: 10px;
    padding: 13px 0;
    line-height: 1.5;
    background: #a5b747;
    color: #fff;
  }
  .home .cont01 .point {
    width: min(100%, 935px);
    margin: 0 0 0 auto;
  }
  .home .cont01 .point h3 {
    margin-bottom: 25px;
    padding: 0 0 0 35px;
    background: url("img/common_ico_check01.png") no-repeat left top 11px;
    font-size: 26px;
  }
  .home .cont01 .point h3 span {
    display: inline-block;
    margin-top: -15px;
    padding-top: 15px;
    background-repeat: repeat-x;
    background-position: center top;
    background-size: 1em 1.05em;
    background-image: radial-gradient(#a5b747 13%, transparent 13%);
  }
  .home .cont01 .point .list li {
    display: grid;
    grid-template-columns: 245px 1fr;
    grid-column-gap: 30px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 2px solid #b5c565;
  }
  .home .cont01 .point .list .txtBox::before {
    content: "";
    display: block;
    margin-bottom: 15px;
    width: 100%;
    height: 13px;
    background: no-repeat left center/contain;
  }
  .home .cont01 .point .list li:nth-of-type(1) {
    border-top: 2px solid #b5c565;
  }
  .home .cont01 .point .list li:nth-of-type(1) .txtBox::before {
    background-image: url("img/home_cont01_point01.png");
  }
  .home .cont01 .point .list li:nth-of-type(2) .txtBox::before {
    background-image: url("img/home_cont01_point02.png");
  }
  .home .cont01 .point .list li:nth-of-type(3) .txtBox::before {
    background-image: url("img/home_cont01_point03.png");
  }
  .home .cont01 .point .list h4 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .home .cont01 .point .list .img {
    order: -1;
    display: block;
    margin: 0 auto;
  }
  .home .cont01 .consultation {
    grid-column: 1/3;
    display: grid;
    grid-template-columns: 370px 1fr;
    grid-gap: 20px 50px;
    margin: 80px auto 0;
    padding: 45px 70px 40px;
    background: url("img/home_cont01_bg01_pc.png") no-repeat center/cover;
    border-radius: 10px;
    color: #fff;
  }
  .home .cont01 .consultation h3 {
    align-self: end;
    padding: 30px 0 0;
    background: url("img/home_cont01_txt02.png") no-repeat left top;
    font-size: 40px;
    line-height: 1.2;
  }
  .home .cont01 .consultation-txtBox {
    grid-area: 1/2/3/3;
  }
  .home .cont01 .consultation__catch {
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.5;
  }
  .home .cont01 .consultation__catch span {
    color: #b5c565;
  }
  .home .cont01 .consultation__txt {
    font-weight: bold;
  }
  .home .cont01 .consultation__txt span {
    font-weight: normal;
  }
  /*	.home .cont04
  ------------------------------------------*/
  .home .cont04 {
    padding: 0 0 150px;
    position: relative;
  }
  .home .cont04::after {
    content: "";
    display: block;
    width: calc(50% + 160px);
    height: calc(100% - 460px);
    background: #f9faf3;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
  }
  .home .cont04 h2 {
    margin-bottom: 70px;
    background-image: url("img/home_cont04_txt01.png");
  }
  .home .cont04 .box01 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }
  .home .cont04 .box01 .txtBox {
    flex: 1;
    display: flex;
		flex-direction: column;
  }
  .home .cont04 .box01 h3 {
    margin: 0 auto 60px;
    padding: 0 65px 0 0;
    background: url("img/home_cont04_txt02.png") no-repeat right top;
    font-size: 30px;
    line-height: 1.7;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
  }
  .home .cont04 .box01 .catch {
    margin-bottom: 25px;
    color: #59684a;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.6;
  }
  .home .cont04 .box01 .txt span {
		font-weight: bold;
	}
  .home .cont04 .box01 .img {
    order: -1;
    width: 50%;
    position: relative;
  }
  .home .cont04 .box01 .img::after {
    content: "";
    display: block;
    width: 424px;
    height: 560px;
    background: url("img/common_logo04.png") no-repeat center/contain;
    position: absolute;
    left: -120px;
    bottom: -270px;
    pointer-events: none;
  }
  .home .cont04 .box01 .img img {
    width: 100%;
  }
  /*	.home .cont05
  ------------------------------------------*/
  .home .cont05 {
    padding: 0 0 120px;
    position: relative;
  }
  .home .cont05::after {
    content: "";
    display: block;
    width: calc(50% + 160px);
    height: 100%;
    background: #f9faf3;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
  }
  .home .cont05 .btn {
    margin: 0 auto;
  }
  /*	.home .cont06
  ------------------------------------------*/
  .home .cont06 {
    padding: 115px 0 40px;
    position: relative;
  }
  .home .cont06::before {
    content: "";
    display: block;
    width: min(100%, 1200px);
    height: 336px;
    background: url("img/home_cont06_bg01.png") no-repeat left top, url("img/home_cont06_bg02.png") no-repeat right 285px bottom;
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    pointer-events: none;
  }
  .home .cont06 h2 {
    margin-bottom: 50px;
    background-image: url("img/home_cont06_txt01.png");
  }
  .home .cont06 .list {
    width: min(100%, 1000px);
    margin: 0 auto 60px;
  }
  .home .cont06 .list dt, .home .cont06 .list dd {
    position: relative;
  }
  .home .cont06 .list dt::after, .home .cont06 .list dd::after {
    content: "";
    display: block;
    width: 24px;
    height: 32px;
    background: no-repeat center/contain;
    position: absolute;
    left: 30px;
  }
  .home .cont06 .list dt {
    cursor: pointer;
    min-height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 15px 100px 15px 75px;
    background: #a5b747;
    box-sizing: border-box;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5;
    transition: all 0.5s;
  }
  .home .cont06 .list dt:hover {
    opacity: 0.8;
  }
  .home .cont06 .list dt::after {
    top: 15px;
    background-image: url("img/home_cont06_ico01.png");
  }
  .home .cont06 .list dt .btn {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    background: #f9faf3;
    border-radius: 50%;
  }
  .home .cont06 .list dt .btn::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: url("img/common_ico_arrow01.png") no-repeat center/contain;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.5s;
  }
  .home .cont06 .list dt.is-open .btn::after {
    transform: scale(1, -1);
  }
  .home .cont06 .list dd {
    display: none;
    padding: 20px 50px 20px 75px;
    background: #f9faf3;
  }
  .home .cont06 .list dd::after {
    top: 20px;
    background-image: url("img/home_cont06_ico02.png");
  }
  .home .cont06 .list dd + dt {
    margin-top: 30px;
  }
  .home .cont06 .btn {
    margin: 0 auto;
  }
  /*	.home .cont07
  ------------------------------------------*/
  .home .cont07 {
    padding: 200px 0 120px;
    position: relative;
  }
  .home .cont07::before, .home .cont07::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
  }
  .home .cont07::before {
    width: 100%;
    height: 351px;
    background: url("img/home_cont07_bg01.png") no-repeat left calc(50% - 500px) center/contain;
    top: 0;
    left: 0;
    z-index: -2;
  }
  .home .cont07::after {
    width: calc(50% + 350px);
    height: calc(100% - 80px);
    background: #f9faf3;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .home .cont07 h2 {
    margin-bottom: 30px;
    background-image: url("img/home_cont07_txt01.png");
  }
  .home .cont07 .btn {
    margin: 30px auto 0;
  }
  /* slider */
  .home .cont07 .list .item {
    width: 330px;
    margin: 0 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  }
  .home .cont07 .list .item a {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    background: #fff;
  }
  .home .cont07 .list .item a:hover {
    opacity: 1;
    background: #f9faf3;
    color: #a5b747;
  }
  .home .cont07 .list .item a:hover .img img {
    filter: brightness(0.8);
    transform: scale(1.05);
  }
  .home .cont07 .list .item .txtBox {
    padding: 25px 30px 20px;
  }
  .home .cont07 .list .item .tit {
    margin-bottom: 8px;
    font-weight: bold;
    line-height: 1.5;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .home .cont07 .list .item .date {
    margin-bottom: 5px;
    color: #a5b747;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.5;
  }
  .home .cont07 .list .item .txt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .home .cont07 .list .item .img {
    order: -1;
    overflow: hidden;
  }
  .home .cont07 .list .item .img img {
    width: 100%;
    transition: all 0.5s;
  }
  .home .cont07 .list .slick-track {
    display: flex;
    padding: 30px 0;
  }
  .home .cont07 .list .slick-slide {
    height: auto !important;
  }
  .home .cont07 .list .slick-arrow {
    cursor: pointer;
    position: absolute;
    bottom: 95px;
    z-index: 10;
    width: 130px;
    height: 130px;
    padding: 0;
    border: none;
    box-sizing: border-box;
    border-radius: 50%;
    background: #59684a url("img/common_ico_arrow02.png") no-repeat 55% center;
    text-indent: 100%;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.5s;
  }
  .home .cont07 .list .slick-arrow:hover {
    opacity: 1;
  }
  .home .cont07 .list .slick-arrow.slick-prev {
    left: max(50% - 600px, 20px);
    transform: scale(-1, 1);
  }
  .home .cont07 .list .slick-arrow.slick-next {
    right: max(50% - 600px, 20px);
  }
  /*	.home .cont08
  ------------------------------------------*/
  .home .cont08 {
    padding: 120px 0;
    position: relative;
  }
  .home .cont08::after {
    content: "";
    display: block;
    width: 1161px;
    height: 1534px;
    background: url("img/common_logo03_pc.png") no-repeat center/contain;
    position: absolute;
    right: calc(50% - 260px);
    bottom: -120px;
    z-index: -10;
    pointer-events: none;
  }
  .home .cont08 .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
  }
  .home .cont08 .inner::before {
    content: "";
    display: block;
    width: 50%;
    height: 420px;
    background: url("img/home_cont08_img01.png") no-repeat center/contain;
  }
  .home .cont08 .txtBox {
    flex: 1;
  }
  .home .cont08 h2 {
    margin-bottom: 30px;
    font-size: 26px;
  }
  .home .cont08 .txt {
    margin-bottom: 10px;
  }
  .home .cont08 .link {
    margin-bottom: 30px;
  }
  .home .cont08 .btn {
    width: min(100%, 280px);
  }
  /* .consult
  ------------------------------------------------------------------------*/
  /* .consult .key
  ------------------------------------------*/
  .consult .key::after {
    background-image: url("img/consult_key_bg01_pc.png");
  }
  .consult .key .tit::after {
    background-image: url("img/consult_key_txt01.png");
  }
  /* .consult .cont01
  ------------------------------------------*/
  .consult .cont01 {
    padding: 0 0 120px;
    background: url("img/consult_cont01_bg01.png") no-repeat right calc(50% - 480px) top;
    position: relative;
  }
  .consult .cont01::after {
    content: "";
    display: block;
    width: 100%;
    height: 390px;
    background: url("img/consult_cont01_bg02.png") no-repeat left calc(50% - 480px) center/contain;
    position: absolute;
    left: 0;
    bottom: -180px;
    pointer-events: none;
  }
  .consult .cont01 .inner {
    display: grid;
    grid-template-columns: 37.5% 1fr;
    justify-content: space-between;
    grid-column-gap: 20px;
    position: relative;
    z-index: 2;
  }
  .consult .cont01 h2 {
    margin: 15px auto 0 115px;
    padding: 0 60px 0 0;
    background: url("img/consult_cont01_txt01.png") no-repeat right top;
    font-size: 32px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
  }
  .consult .cont01 h2 span {
    display: inline-block;
    padding: 13px 0;
    background: #a5b747;
    color: #fff;
    line-height: 1.5;
  }
  .consult .cont01 .txtBox {
    margin-top: 125px;
    padding: 50px 0 0;
    background: url("img/consult_cont01_txt02.png") no-repeat left top;
  }
  .consult .cont01 .list li {
    width: fit-content;
    padding: 7px 20px 7px 45px;
    background: #e9edd0 url("img/common_ico_check01.png") no-repeat 11px 11px;
    font-weight: bold;
    font-size: 18px;
  }
  .consult .cont01 .list li + li {
    margin-top: 18px;
  }
  /* .consult .cont02
  ------------------------------------------*/
  .consult .cont02 {
    padding: 120px 0;
    background: #f9faf3;
  }
  .consult .cont02 h2 {
    margin-bottom: 35px;
    background-image: url("img/consult_cont02_txt01.png");
  }
  .consult .cont02 .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
  }
  .consult .cont02 .list li {
    display: flex;
    flex-direction: column;
    padding: 30px 0 20px;
    border-top: 2px solid #a5b747;
    border-bottom: 2px solid #a5b747;
  }
  .consult .cont02 .list li::before {
    content: "";
    display: block;
    margin-bottom: 25px;
    width: 100%;
    height: 13px;
    background: no-repeat left center/contain;
  }
  .consult .cont02 .list li:nth-of-type(1)::before {
    background-image: url("img/consult_cont02_num01.png");
  }
  .consult .cont02 .list li:nth-of-type(2)::before {
    background-image: url("img/consult_cont02_num02.png");
  }
  .consult .cont02 .list li:nth-of-type(3)::before {
    background-image: url("img/consult_cont02_num03.png");
  }
  .consult .cont02 .list .img {
    order: -1;
    display: block;
    margin: 0 auto 3px;
  }
  .consult .cont02 .list h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  /* .consult .cont03
  ------------------------------------------*/
  .consult .cont03 {
    padding: 120px 0;
    background: url("img/common_logo03_pc.png") no-repeat right calc(50% - 670px) center;
  }
  .consult .cont03 h2 {
    margin-bottom: 50px;
    background-image: url("img/consult_cont03_txt01.png");
  }
  .consult .cont03 h2::before {
    content: "";
    display: block;
    width: 320px;
    height: 84px;
    background: url("img/consult_cont03_txt02.png") no-repeat center/contain;
    position: absolute;
    top: 15px;
    left: calc(50% - 430px);
  }
  .consult .cont03 .list li {
    padding: 30px 30px 20px 125px;
    display: grid;
    grid-template-columns: 141px 1fr;
    grid-column-gap: 40px;
    background: #e9edd0 no-repeat 80px center;
  }
  .consult .cont03 .list li + li {
    margin-top: 30px;
  }
  .consult .cont03 .list li:nth-of-type(1) {
    background-image: url("img/consult_cont03_num01.png");
  }
  .consult .cont03 .list li:nth-of-type(2) {
    background-image: url("img/consult_cont03_num02.png");
  }
  .consult .cont03 .list li:nth-of-type(3) {
    background-image: url("img/consult_cont03_num03.png");
  }
  .consult .cont03 .list h3 {
    width: fit-content;
    color: #59684a;
    margin: 17px auto 15px 0;
    font-size: 20px;
    position: relative;
  }
  .consult .cont03 .list h3::after {
    content: "";
    display: block;
    width: 29px;
    height: 30px;
    background: url("img/common_ico_chon02.png") no-repeat center/contain;
    position: absolute;
    top: -15px;
    right: -30px;
  }
  .consult .cont03 .list h3 .tag {
    display: inline-block;
    margin-right: 15px;
    padding: 4px 35px 4px 22px;
    background: #59684a;
    color: #fff;
    font-size: 18px;
    -webkit-clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
  }
  .consult .cont03 .list .nameBox {
    order: -1;
    text-align: center;
  }
  .consult .cont03 .list .nameBox .name {
    margin-top: 5px;
  }
  /* .consult .cont05
  ------------------------------------------*/
  .consult .cont05 {
    padding: 120px 0 80px;
    background: url("img/common_logo03_pc.png") no-repeat left calc(50% - 670px) top -460px;
  }
  /* .dispatch
  ------------------------------------------------------------------------*/
  /* .dispatch .key
  ------------------------------------------*/
  .dispatch .key::after {
    background-image: url("img/dispatch_key_bg01_pc.png");
  }
  .dispatch .key .tit::after {
    background-image: url("img/dispatch_key_txt01.png");
  }
  /*	.dispatch .cont01
  ------------------------------------------*/
  .dispatch .cont01 .box02::after {
    content: "";
    display: block;
    width: 211px;
    height: 181px;
    background: url("img/dispatch_cont01_bg01.png") no-repeat center/contain;
    position: absolute;
    right: -100px;
    bottom: -50px;
    pointer-events: none;
  }
  /* .dispatch .cont02
  ------------------------------------------*/
  .dispatch .cont02 {
    padding: 120px 0;
    background: #f9faf3 url("img/common_logo03_pc.png") no-repeat right calc(50% - 670px) top 110px;
  }
  .dispatch .cont02 h2 {
    margin-bottom: 70px;
    background-image: url("img/dispatch_cont02_txt01.png");
    position: relative;
  }
  .dispatch .cont02 h2::before {
    content: "";
    display: block;
    width: min(100%, 1200px);
    height: 311px;
    background: url("img/dispatch_cont02_bg01.png") no-repeat left calc(50% - 295px) top, url("img/dispatch_cont02_bg02.png") no-repeat right calc(50% - 300px) bottom;
    position: absolute;
    top: -165px;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
  }
  /* .employee
  ------------------------------------------------------------------------*/
  /* .employee .key
  ------------------------------------------*/
  .employee .key::after {
    background-image: url("img/employee_key_bg01_pc.png");
  }
  .employee .key .tit::after {
    background-image: url("img/employee_key_txt01.png");
  }
  /*	.employee .cont01
  ------------------------------------------*/
  .employee .cont01 .box02::after {
    content: "";
    display: block;
    width: 69px;
    height: 150px;
    background: url("img/employee_cont01_bg01.png") no-repeat center/contain;
    position: absolute;
    right: 30px;
    bottom: -50px;
    pointer-events: none;
  }
  /* .employee .cont02
  ------------------------------------------*/
  .employee .cont02 {
    padding: 120px 0;
    background: #f9faf3 url("img/common_logo03_pc.png") no-repeat right calc(50% - 670px) top 110px;
  }
  .employee .cont02 h2 {
    margin-bottom: 70px;
    background-image: url("img/employee_cont02_txt01.png");
    position: relative;
  }
  .employee .cont02 h2::before {
    content: "";
    display: block;
    width: min(100%, 1200px);
    height: 330px;
    background: url("img/employee_cont02_bg01.png") no-repeat left calc(50% - 295px) top, url("img/employee_cont02_bg02.png") no-repeat right calc(50% - 365px) bottom;
    position: absolute;
    top: -165px;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
  }
  /* .gap-job
  ------------------------------------------------------------------------*/
  /* .gap-job .key
  ------------------------------------------*/
  .gap-job .key::after {
    background-image: url("img/gap-job_key_bg01_pc.png");
  }
  .gap-job .key .tit::after {
    background-image: url("img/gap-job_key_txt01.png");
  }
  /*	.gap-job .cont01
  ------------------------------------------*/
  .gap-job .cont01 .box01 .txt span {
    color: #f1b01a;
  }
  .gap-job .cont01 .box02 {
    border-color: #f1b01a;
  }
  .gap-job .cont01 .box02::after {
    content: "";
    display: block;
    width: 203px;
    height: 179px;
    background: url("img/gap-job_cont01_bg01.png") no-repeat center/contain;
    position: absolute;
    right: -110px;
    bottom: -75px;
    pointer-events: none;
  }
  .gap-job .cont01 .list li {
    background-image: url("img/common_ico_check02.png");
  }
  /* .gap-job .cont02
  ------------------------------------------*/
  .gap-job .cont02 {
		padding: 120px 0 140px;
    background: #f9faf3 url("img/common_logo03_pc.png") no-repeat right calc(50% - 500px) top 120px/810px;
  }
  .gap-job .cont02 h2 {
    margin-bottom: 130px;
    background-image: url("img/gap-job_cont02_txt01.png");
    position: relative;
  }
  .gap-job .cont02 h2::before {
    content: "";
    display: block;
    width: min(100%, 1200px);
    height: 315px;
    background: url("img/gap-job_cont02_bg01.png") no-repeat left calc(50% - 295px) top, url("img/gap-job_cont02_bg02.png") no-repeat right calc(50% - 360px) bottom;
    position: absolute;
    top: -165px;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
  }
  .gap-job .cont02 h2::after {
    background: #f1b01a;
  }
  .gap-job .cont02 .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
  }
  .gap-job .cont02 .list .item {
    width: 380px;
    height: 380px;
    padding: 130px 40px 30px;
    border-radius: 50%;
    border: 4px dotted #f1b01a;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .gap-job .cont02 .list .item::after {
    content: "";
    display: block;
    width: 88px;
    height: 87px;
    background: no-repeat center/contain;
    position: absolute;
    top: -4px;
    right: -4px;
    filter: drop-shadow(5px 5px 3px rgba(249, 250, 243, 0.5)) drop-shadow(-5px 5px 3px rgba(249, 250, 243, 0.5)) drop-shadow(5px -5px 3px rgba(249, 250, 243, 0.5)) drop-shadow(-5px -5px 3px rgba(249, 250, 243, 0.5)) drop-shadow(5px 0 3px rgba(249, 250, 243, 0.5)) drop-shadow(0 5px 3px rgba(249, 250, 243, 0.5)) drop-shadow(-5px 0 3px rgba(249, 250, 243, 0.5)) drop-shadow(0 -5px 3px rgba(249, 250, 243, 0.5));
    z-index: -1;
  }
  .gap-job .cont02 .list h3 {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 24px;
  }
  .gap-job .cont02 .list .img {
    position: absolute;
  }
  .gap-job .cont02 .list .item:nth-of-type(1)::after {
    background-image: url("img/gap-job_cont02_num01.png");
  }
  .gap-job .cont02 .list .item:nth-of-type(1) .img {
    top: -100px;
    left: -5px;
  }
  .gap-job .cont02 .list .item:nth-of-type(2)::after {
    background-image: url("img/gap-job_cont02_num02.png");
  }
  .gap-job .cont02 .list .item:nth-of-type(2) .img {
    top: -45px;
    left: -5px;
  }
  .gap-job .cont02 .list .item:nth-of-type(3)::after {
    background-image: url("img/gap-job_cont02_num03.png");
  }
  .gap-job .cont02 .list .item:nth-of-type(3) .img {
    top: -65px;
    left: 7px;
  }
  /* .enterprise
  ------------------------------------------------------------------------*/
  /*	.enterprise .key
  ------------------------------------------*/
  .enterprise .key::after {
    background-image: url("img/enterprise_key_bg01_pc.png");
  }
  .enterprise .key .tit::after {
    background-image: url("img/enterprise_key_txt01.png");
  }
  /*	.enterprise .cont01
  ------------------------------------------*/
  .enterprise .cont01 {
    overflow: hidden;
		padding: 0 0 130px;
  }
  .enterprise .cont01 h2 {
    margin-bottom: 90px;
    padding: 85px 0 0;
    background: url("img/enterprise_cont01_txt01.png") no-repeat center top;
    text-align: center;
    font-size: 32px;
  }
  .enterprise .cont01 h2 span {
    color: #a5b747;
  }
  .enterprise .cont01 .box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    position: relative;
  }
  .enterprise .cont01 .box::after {
    content: "";
    display: block;
    width: calc(50vw + 160px);
    height: 500px;
    background: #f9faf3;
    position: absolute;
    right: calc((50vw - 600px) * -1);
    z-index: -1;
    pointer-events: none;
  }
  .enterprise .cont01 .box + .box {
    margin-top: 115px;
  }
  .enterprise .cont01 .box .txtBox {
    flex: 1;
    display: flex;
		flex-direction: column;
  }
  .enterprise .cont01 .box h3 {
    margin: 0 auto 45px;
    padding: 0 35px 0 0;
    background: no-repeat right top;
    font-size: 32px;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
  }
  .enterprise .cont01 .box h3 img {
    display: block;
    margin: 0 20px 0 0;
  }
  .enterprise .cont01 .box .txt + .txt {
    margin-top: 15px;
  }
  .enterprise .cont01 .box .img {
    width: 50%;
    position: relative;
  }
  .enterprise .cont01 .box .img::after {
    content: "";
    display: block;
    background: no-repeat center/contain;
    position: absolute;
    pointer-events: none;
  }
  .enterprise .cont01 .box .img img {
    width: 100%;
  }
  .enterprise .cont01 .box:nth-of-type(odd)::after {
    right: auto;
    left: calc((50vw - 600px) * -1);
  }
  .enterprise .cont01 .box:nth-of-type(odd) .img {
    order: -1;
  }
  .enterprise .cont01 .box:nth-of-type(1)::after {
    bottom: 40px;
  }
  .enterprise .cont01 .box:nth-of-type(1) h3 {
    background-image: url("img/enterprise_cont01_txt02.png");
  }
  .enterprise .cont01 .box:nth-of-type(1) .img::after {
    width: 246px;
    height: 256px;
    background-image: url("img/enterprise_cont01_bg01.png");
    right: 55px;
    bottom: -185px;
  }
  .enterprise .cont01 .box:nth-of-type(2)::after {
    bottom: 80px;
  }
  .enterprise .cont01 .box:nth-of-type(2) h3 {
    background-image: url("img/enterprise_cont01_txt04.png");
  }
  .enterprise .cont01 .box:nth-of-type(2) .img::after {
    width: 303px;
    height: 255px;
    background-image: url("img/enterprise_cont01_bg02.png");
    right: 90px;
    bottom: -195px;
  }
  /*	.enterprise .cont02
  ------------------------------------------*/
  .enterprise .cont02 {
    padding: 30px 0 120px;
    background: url("img/enterprise_cont02_bg01.png") no-repeat left calc(50% - 610px) top, url("img/enterprise_cont02_bg02.png") no-repeat right calc(50% - 617px) top 128px, url("img/common_logo03_pc.png") no-repeat left calc(50% - 670px) top 10px;
  }
  .enterprise .cont02 h2 {
    margin-bottom: 45px;
    background-image: url("img/enterprise_cont02_txt01.png");
  }
  .enterprise .cont02 .lead {
    margin-bottom: 45px;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    line-height: 1.55;
  }
  .enterprise .cont02 .txt {
    margin-bottom: 80px;
    text-align: center;
  }
  /*	.enterprise .cont03
  ------------------------------------------*/
  .enterprise .cont03 {
    padding: 120px 0 120px;
    background: #f9faf3;
    position: relative;
  }
  .enterprise .cont03::after {
    content: "";
    display: block;
    width: min(100%, 1000px);
    height: 426px;
    background: url("img/enterprise_cont03_bg01.png") no-repeat left top, url("img/enterprise_cont03_bg02.png") no-repeat right 50px bottom;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
  }
  .enterprise .cont03 h2 {
    margin-bottom: 60px;
    background-image: url("img/enterprise_cont03_txt01.png");
  }
  .enterprise .cont03 .list {
    width: min(100%, 1000px);
    margin: 0 auto;
  }
  .enterprise .cont03 .list li {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-column-gap: 55px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  }
  .enterprise .cont03 .list li + li {
    margin-top: 30px;
  }
  .enterprise .cont03 .list .txtBox {
    flex: 1;
    align-self: center;
    padding: 30px 20px;
    box-sizing: border-box;
  }
  .enterprise .cont03 .list h3 {
    margin-bottom: 8px;
    font-size: 24px;
  }
  .enterprise .cont03 .list .txt {
    line-height: 1.8;
  }
  .enterprise .cont03 .list .btn {
    width: min(100%, 230px);
    margin: 12px auto 0 0;
    border-radius: 100px;
  }
  .enterprise .cont03 .list .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 45px;
    border-radius: inherit;
    background: #59684a;
    color: #fff;
    font-weight: bold;
    position: relative;
  }
  .enterprise .cont03 .list .btn a::before {
    content: "";
    display: block;
    width: 20px;
    height: 14px;
    background: url("img/common_ico_mail01.png") no-repeat center/contain;
    transition: all 0.5s;
  }
  .enterprise .cont03 .list .btn a:hover {
    opacity: 1;
    background-color: #4c593f;
    letter-spacing: 0.05em;
  }
  .enterprise .cont03 .list .btn a:hover::before {
    transform: scale(1.1);
  }
  .enterprise .cont03 .list .img {
    order: -1;
    position: relative;
  }
  .enterprise .cont03 .list .img::after {
    content: "";
    display: block;
    width: 75px;
    height: 75px;
    background: #b5c565 no-repeat center;
    position: absolute;
    top: 0;
    right: -37px;
    bottom: 0;
    margin: auto;
  }
  .enterprise .cont03 .list .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .enterprise .cont03 .list li:nth-of-type(1) .img::after {
    background-image: url("img/enterprise_cont03_num01.png");
  }
  .enterprise .cont03 .list li:nth-of-type(2) .img::after {
    background-image: url("img/enterprise_cont03_num02.png");
  }
  .enterprise .cont03 .list li:nth-of-type(3) .img::after {
    background-image: url("img/enterprise_cont03_num03.png");
  }
  .enterprise .cont03 .publish {
    width: min(100%, 1000px);
    margin: 60px auto 0;
    padding: 35px 40px 40px;
    border: 1px solid #b5c565;
    box-sizing: border-box;
    position: relative;
  }
  .enterprise .cont03 .publish::after {
    content: "";
    display: block;
    width: 187px;
    height: 199px;
    background: url("img/enterprise_cont03_bg03.png") no-repeat center/contain;
    position: absolute;
    left: -105px;
    bottom: -65px;
    pointer-events: none;
  }
  .enterprise .cont03 .publish h3 {
    width: fit-content;
    margin: 65px auto 30px;
    padding: 0 40px;
    background: #dde4b8;
    font-size: 26px;
    text-align: center;
    position: relative;
  }
  .enterprise .cont03 .publish h3::before, .enterprise .cont03 .publish h3::after {
    content: "";
    display: block;
    background: no-repeat center/contain;
    position: absolute;
    pointer-events: none;
  }
  .enterprise .cont03 .publish h3::before {
    width: max(100%, 433px);
    height: 53px;
    background-image: url("img/enterprise_cont03_txt02.png");
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
  }
  .enterprise .cont03 .publish h3::after {
    width: 29px;
    height: 30px;
    background-image: url("img/common_ico_chon01.png");
    top: -27px;
    left: -30px;
  }
  .enterprise .cont03 .publish h3 span {
    font-size: 19px;
  }
  .enterprise .cont03 .publish-content {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 30px;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
  }
  /*	.enterprise .cont04
  ------------------------------------------*/
  .enterprise .cont04 {
    padding: 120px 0 130px;
    background: url("img/common_logo03_pc.png") no-repeat right calc(50% - 670px) top -340px;
  }
  .enterprise .cont04 h2 {
    margin-bottom: 85px;
    padding: 50px 0 0;
    background: url("img/enterprise_cont04_txt01.png") no-repeat center top;
    font-size: 32px;
    text-align: center;
    line-height: 1.6;
  }
  .enterprise .cont04 .list {
    width: min(100%, 1040px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 80px 60px;
  }
  .enterprise .cont04 .list .item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 2px solid #59684a;
    position: relative;
  }
  .enterprise .cont04 .list .item:nth-of-type(2) {
    border-color: #008abb;
  }
  .enterprise .cont04 .list .item:nth-of-type(3) {
    border-color: #b5c565;
  }
  .enterprise .cont04 .list .item:nth-of-type(4) {
    border-color: #f1b01a;
  }
  .enterprise .cont04 .list h3 {
    position: absolute;
    top: -45px;
    right: 40px;
  }
  .enterprise .cont04 .list .txt {
    order: 2;
    width: calc(100% - 30px);
    margin: 0 auto;
    font-weight: bold;
  }
  .enterprise .cont04 .list img {
    order: 1;
    margin-bottom: 20px;
  }
  .enterprise .cont04 .list img img {
    width: 100%;
  }
  /* .info (.info-archive, .info-single)
	------------------------------------------------------------------------*/
  /* ぼかし処理 */
  /* .info-single .cont01,
  .info-single .cont02,
  .info-single .cont03,
  .info-single .cont04,
  .info-single .cont05,
  .info-single .cont06,
  .info-single .cont07,
  .info-single .cont08 {
    position: relative;
  }
  .info-single .cont01::before,
  .info-single .cont02::before,
  .info-single .cont03::before,
  .info-single .cont04::before,
  .info-single .cont05::before,
  .info-single .cont06::before,
  .info-single .cont07::before,
  .info-single .cont08::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: 1;
  } */

	/* .info .key (.info-archive, .info-single 共通)
	------------------------------------------*/
	.info .key::after {
		background-image: url("img/info_key_bg01_pc.png");
	}
	.info .key .tit::after {
		background-image: url("img/info_key_txt01.png");
	}
	/*	.info-archive .pankuzu
	------------------------------------------*/
	.info-archive .pankuzu {
		margin-bottom: 0;
		background: #f9faf3;
	}
	/*	.info-archive .cont01
	------------------------------------------*/
	.info-archive .cont01 {
		padding: 50px 0 120px;
		background: #f9faf3;
	}
	.info-archive .cont01 .archive .item {
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
		position: relative;
	}
	.info-archive .cont01 .archive .item + .item {
		margin-top: 40px;
	}
	.info-archive .cont01 .archive .message {
		width: fit-content;
		height: fit-content;
		padding: 30px 100px;
		background: #f1b01a;
		position: absolute;
		z-index: 3;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		z-index: 5;
		color: #fff;
		font-size: 36px;
		font-weight: bold;
		line-height: 1.4;
		text-align: center;
	}
	.info-archive .cont01 .archive a {
		display: grid;
		grid-template-columns: 330px 1fr;
		align-items: start;
		grid-column-gap: 30px;
		padding: 30px;
		background: #fff;
		position: relative;
	}
	/* .info-archive .cont01 .archive a::after {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		-webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(5px);
	} */
	.info-archive .cont01 .archive a:hover {
		opacity: 1;
		background: #f9faf3;
	}
	.info-archive .cont01 .archive a:hover .img img {
		filter: brightness(0.8);
		transform: scale(1.05);
	}
	.info-archive .cont01 .archive .txtBox {
		padding: 0 0 20px;
		border-bottom: 1px solid #a5b747;
	}
	.info-archive .cont01 .archive .cat {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 10px;
	}
	.info-archive .cont01 .archive .cat li {
		margin: 5px 10px 5px 0;
		padding: 6px 15px;
		background: #59684a;
		color: #fff;
		font-weight: bold;
		line-height: 1.4;
	}
	.info-archive .cont01 .archive .cat li:last-of-type {
		margin-right: 0;
	}
	.info-archive .cont01 .archive .data {
		margin-bottom: 15px;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}
	.info-archive .cont01 .archive .data dt, .info-archive .cont01 .archive .data dd {
		box-sizing: border-box;
		font-weight: bold;
		font-size: 20px;
		line-height: 1.5;
	}
	.info-archive .cont01 .archive .data dt {
		padding: 0 1.1em 0 0;
		color: #59684a;
		position: relative;
	}
	.info-archive .cont01 .archive .data dt::after {
		content: "：";
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.info-archive .cont01 .archive .data dd::after {
		content: "／";
		display: inline-block;
		margin: 0 1em;
	}
	.info-archive .cont01 .archive .data dd:last-of-type::after {
		content: none;
	}
	.info-archive .cont01 .archive .tit {
		margin-bottom: 13px;
		padding: 22px 0 0;
		border-top: 1px solid #a5b747;
		font-size: 20px;
	}
	.info-archive .cont01 .archive .tag {
		margin-bottom: 12px;
		display: flex;
		flex-wrap: wrap;
	}
	.info-archive .cont01 .archive .tag li {
		margin: 2px 4px 2px 0;
		padding: 2px 8px;
		background: #f2f2f2;
		font-size: 14px;
		line-height: 1.4;
	}
	.info-archive .cont01 .archive .tag li:last-of-type {
		margin-right: 0;
	}
	.info-archive .cont01 .archive .txt {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
	.info-archive .cont01 .archive .img {
		order: -1;
		overflow: hidden;
	}
	.info-archive .cont01 .archive .img img {
		width: 100%;
		transition: all 0.5s;
	}
	.info-archive .cont01 .archive .item.is-new a::before {
		content: "NEW！";
		display: block;
		padding: 2px 10px;
		position: absolute;
		z-index: 2;
		top: 35px;
		left: 35px;
		background: #f1b01a;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.5;
	}
	/*	.info-single .cont01
	------------------------------------------*/
	.info-single .cont01 {
		padding: 0 0 120px;
	}
	/* .info-single .cont02
	------------------------------------------*/
	.info-single .cont02 {
		padding: 120px 0 110px;
		background: #f9faf3 url("img/common_logo03_pc.png") no-repeat right calc(50% - 320px) center;
	}
	.info-single .cont02 h2 {
		margin-bottom: 45px;
		background-image: url("img/info-single_cont02_txt01.png");
	}
	/* .info-single .cont03
	------------------------------------------*/
	.info-single .cont03 {
		padding: 120px 0 60px;
		position: relative;
	}
	.info-single .cont03::after {
		content: "";
		display: block;
		width: calc(50% + 300px);
		height: 300px;
		background: #f9faf3;
		position: absolute;
		right: 0;
		bottom: 0;
		z-index: -1;
		pointer-events: none;
	}
	.info-single .cont03 h2 {
		margin-bottom: 55px;
		background-image: url("img/info-single_cont03_txt01.png");
	}
	.info-single .cont03 .box {
		display: grid;
		grid-template-columns: 50% 1fr;
		grid-column-gap: 60px;
		align-items: center;
	}
	.info-single .cont03 .box .catch {
		margin-bottom: 20px;
		color: #59684a;
		font-weight: bold;
		font-size: 20px;
		line-height: 1.8;
	}
	.info-single .cont03 .box .txt + .txt {
		margin-top: 1em;
	}
	.info-single .cont03 .box .img {
		order: -1;
	}
	.info-single .cont03 .box .img img {
		width: 100%;
	}
	/* .info-single .cont04
	------------------------------------------*/
	.info-single .cont04 {
		padding: 120px 0 60px;
		position: relative;
	}
	.info-single .cont04::after {
		content: "";
		display: block;
		width: calc(50% + 300px);
		height: 300px;
		background: #f9faf3;
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: -1;
		pointer-events: none;
	}
	.info-single .cont04 h2 {
		margin-bottom: 55px;
		background-image: url("img/info-single_cont04_txt01.png");
	}
	.info-single .cont04 .box {
		display: grid;
		grid-template-columns: 1fr 50%;
		grid-column-gap: 60px;
		align-items: center;
	}
	.info-single .cont04 .box .catch {
		margin-bottom: 20px;
		color: #59684a;
		font-weight: bold;
		font-size: 20px;
		line-height: 1.8;
	}
	.info-single .cont04 .box .txt + .txt {
		margin-top: 1em;
	}
	.info-single .cont04 .box .txt .big {
		font-weight: bold;
		font-size: 20px;
	}
	/* .info-single .cont05
	------------------------------------------*/
	.info-single .cont05 {
		margin-bottom: 120px;
		padding: 120px 0 60px;
		position: relative;
	}
	.info-single .cont05::after {
		content: "";
		display: block;
		width: calc(50% + 300px);
		height: 300px;
		background: #f9faf3;
		position: absolute;
		right: 0;
		bottom: 0;
		z-index: -1;
		pointer-events: none;
	}
	.info-single .cont05 h2 {
		margin-bottom: 55px;
		background-image: url("img/info-single_cont05_txt01.png");
	}
	.info-single .cont05 .box {
		display: grid;
		grid-template-columns: 50% 1fr;
		grid-column-gap: 60px;
	}
	.info-single .cont05 .box table {
		width: 100%;
		table-layout: fixed;
		border-top: 1px solid #eef0ed;
	}
	.info-single .cont05 .box table tr {
		border-bottom: 1px solid #eef0ed;
	}
	.info-single .cont05 .box table th, .info-single .cont05 .box table td {
		padding: 10px 0;
		box-sizing: border-box;
		text-align: left;
	}
	.info-single .cont05 .box table th {
		width: 110px;
		color: #59684a;
		font-weight: bold;
		font-size: 18px;
	}
	.info-single .cont05 .box table td {
		padding-left: 10px;
	}
	.info-single .cont05 .box .img {
		order: -1;
	}
	.info-single .cont05 .box .img img {
		width: 100%;
	}
	/*	.info-single .cont06
	------------------------------------------*/
	.info-single .cont06 {
		padding: 120px 0 110px;
		background: #f9faf3 url("img/common_logo03_pc.png") no-repeat left calc(50% - 320px) center;
	}
	.info-single .cont06 h2 {
		margin-bottom: 45px;
		background-image: url("img/info-single_cont06_txt01.png");
	}
	/*	.info-single .cont07 ( RECRUIT )
	------------------------------------------*/
	.info-single .cont07 {
    display: none;
		margin-bottom: 0;
	}
  /* 有料 */
	.info-single.paid .cont07 {
    display: block;
  }
	.info-single .cont07 h2::before {
		content: none;
	}
	/*	.info-single .cont08
	------------------------------------------*/
	.info-single .cont08 {
		padding: 115px 0 110px;
		position: relative;
    z-index: 1;
	}
	.info-single .cont08::after {
		content: "";
		display: block;
		width: 100%;
		height: 272px;
		background: url("img/info-single_cont08_bg01.png") no-repeat left calc(50% - 365px) top 15px, url("img/info-single_cont08_bg02.png") no-repeat right calc(50% - 440px) top;
		position: absolute;
		top: -60px;
		left: 0;
		z-index: -1;
		pointer-events: none;
	}
	.info-single .cont08 h2 {
		margin-bottom: 25px;
		padding: 95px 0 0;
		background: url("img/info-single_cont08_txt01.png") no-repeat center top;
		color: #59684a;
		font-size: 26px;
		text-align: center;
	}
	.info-single .cont08 .txt {
		font-weight: bold;
		font-size: 20px;
		text-align: center;
	}
  /* .jobposting
  ------------------------------------------------------------------------*/
  /* .jobposting .key
  ------------------------------------------*/
  .jobposting .key::after {
    background-image: url("img/jobposting_key_bg01_pc.png");
  }
  .jobposting .key .tit::after {
    background-image: url("img/jobposting_key_txt01.png");
  }
  /* .jobposting .cont01
  ------------------------------------------*/
  .jobposting .cont01 {
    padding: 0 0 120px;
  }
  .jobposting .cont01 .headBox {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 55px;
  }
  .jobposting .cont01 .headBox .cat {
    order: -1;
    width: 100%;
    margin-bottom: 17px;
    display: flex;
    flex-wrap: wrap;
  }
  .jobposting .cont01 .headBox .cat li {
    margin: 5px 10px 5px 0;
    padding: 6px 15px;
    background: #59684a;
    color: #fff;
    font-weight: bold;
    line-height: 1.4;
  }
  .jobposting .cont01 .headBox .cat li:last-of-type {
    margin-right: 0;
  }
  .jobposting .cont01 .headBox h2 {
    margin-right: 30px;
    padding: 0 30px 0 0;
    border-right: 2px solid;
    color: #59684a;
    font-size: 24px;
  }
  .jobposting .cont01 .headBox .txt {
    font-weight: bold;
    font-size: 20px;
  }
  .jobposting .cont01 .contentBox {
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-column-gap: 60px;
    align-items: start;
  }
  .jobposting .cont01 .contentBox .txtBox {
    padding: 35px 0 0;
    border-top: 2px solid #a5b747;
  }
  .jobposting .cont01 .contentBox .data {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 15px;
    gap: 3px 0;
  }
  .jobposting .cont01 .contentBox .data dt, .jobposting .cont01 .contentBox .data dd {
    box-sizing: border-box;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
  }
  .jobposting .cont01 .contentBox .data dt {
    max-width: 120px;
    padding: 0 1.1em 0 0;
    color: #59684a;
    position: relative;
  }
  .jobposting .cont01 .contentBox .data dt::after {
    content: "：";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .jobposting .cont01 .contentBox .txt {
    padding-bottom: 30px;
    border-bottom: 2px solid #a5b747;
  }
  .jobposting .cont01 .contentBox .tag {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .jobposting .cont01 .contentBox .tag li {
    margin: 2px 4px 2px 0;
    padding: 4px 13px;
    background: #f2f2f2;
    font-weight: 700;
    line-height: 1.4;
  }
  .jobposting .cont01 .contentBox .tag li:last-of-type {
    margin-right: 0;
  }
  .jobposting .cont01 .contentBox .img {
    order: -1;
  }
  .jobposting .cont01 .contentBox .img img {
    width: 100%;
  }
  /* .jobposting .cont02
  ------------------------------------------*/
  .jobposting .cont02 {
    padding: 120px 0 110px;
    background: #f9faf3 url("img/common_logo03_pc.png") no-repeat right calc(50% - 320px) center;
  }
  .jobposting .cont02 h2 {
    margin-bottom: 45px;
    background-image: url("img/jobposting_cont02_txt01.png");
  }
  /* .jobposting .cont03
  ------------------------------------------*/
  .jobposting .cont03 {
    padding: 120px 0 0;
    position: relative;
    z-index: 2;
  }
  .jobposting .cont03::after {
    content: "";
    display: block;
    width: 100%;
    height: 215px;
    background: url("img/jobposting_cont03_bg01.png") no-repeat left calc(50% - 360px) center/contain;
    position: absolute;
    top: -35px;
    left: 0;
    z-index: -1;
    pointer-events: none;
  }
  .jobposting .cont03 h2 {
    margin-bottom: 50px;
    background-image: url("img/jobposting_cont03_txt01.png");
  }
  /* .jobposting .cont04
  ------------------------------------------*/
  .jobposting .cont04 {
    padding: 120px 0;
    position: relative;
    z-index: 2;
  }
  .jobposting .cont04::after {
    content: "";
    display: block;
    width: 100%;
    height: 188px;
    background: url("img/jobposting_cont04_bg01.png") no-repeat right calc(50% - 160px) center/contain;
    position: absolute;
    top: 55px;
    left: 0;
    z-index: -1;
    pointer-events: none;
  }
  .jobposting .cont04 h2 {
    margin-bottom: 50px;
    background-image: url("img/jobposting_cont04_txt01.png");
  }
  /* .jobposting .cont05
  ------------------------------------------*/
  .jobposting .cont05 {
    padding: 120px 0 110px;
    background: #f9faf3 url("img/common_logo03_pc.png") no-repeat left calc(50% - 320px) center;
  }
  .jobposting .cont05 h2 {
    margin-bottom: 45px;
    background-image: url("img/jobposting_cont05_txt01.png");
  }
  /* .entry
  ------------------------------------------------------------------------*/
  /* .entry .key
  ------------------------------------------*/
  .entry .key::after {
    background-image: url("img/entry_key_bg01_pc.png");
  }
  .entry .key .tit::after {
    background-image: url("img/entry_key_txt01.png");
  }
  /*	.entry .pankuzu
  ------------------------------------------*/
  .entry .pankuzu {
    margin-bottom: 0;
    background: #f9faf3;
  }
  /*	.entry .cont01
  ------------------------------------------*/
  .entry .cont01 {
    padding: 70px 0 120px;
    background: url("img/common_logo03_pc.png") no-repeat left calc(50% - 670px) top 330px, url("img/common_logo03_pc.png") no-repeat right calc(50% - 670px) bottom -440px #f9faf3;
  }
  .entry .cont01 h2 {
    margin-bottom: 60px;
    text-align: center;
  }
  .entry .cont01 .test01 {
    text-align: center;
  }
  /* .cvBox */
  .entry .cont01 .cvBox {
    width: min(100%, 1000px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto 130px;
    padding: 30px 0;
    box-sizing: border-box;
    background: #fff;
    position: relative;
  }
  .entry .cont01 .cvBox::after {
    content: "";
    display: block;
    width: 91px;
    height: 134px;
    background: url("img/entry_cont01_bg01.png") no-repeat center/contain;
    position: absolute;
    left: -40px;
    bottom: -50px;
    pointer-events: none;
  }
  .entry .cont01 .cvBox .item {
    padding: 60px 20px 30px;
    text-align: center;
  }
  .entry .cont01 .cvBox .item + .item {
    border-left: 1px solid #d1dba0;
  }
  .entry .cont01 .cvBox h3 {
    margin-bottom: 40px;
    font-size: 18px;
  }
  .entry .cont01 .cvBox h3::before {
    content: "";
    display: inline-block;
    margin-right: 8px;
    width: 0.8em;
    height: 0.8em;
    background: #a5b747;
  }
  .entry .cont01 .cvBox .tel a {
    display: block;
    margin: 0 auto;
  }
  .entry .cont01 .cvBox .tel .time {
    display: block;
    margin-top: 35px;
    font-size: 14px;
    line-height: 1.6;
  }
  .entry .cont01 .cvBox .line {
    font-size: 18px;
  }
  .entry .cont01 .cvBox .line::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 38px;
    margin: 0 10px -12px 0;
    background: url("img/common_ico_line02.png") no-repeat center/contain;
  }
  .entry .cont01 .cvBox .line .qr {
    display: block;
    margin: 15px auto 0;
  }
  .entry .cont01 .cvBox .mail a {
    position: relative;
    display: block;
    padding: 0 0 80px;
    font-weight: bold;
    line-height: 1.5;
  }
  .entry .cont01 .cvBox .mail a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 5px;
    right: 0;
    margin: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #59684a url("img/common_ico_arrow03.png") no-repeat center;
    transition: all 0.5s;
  }
  .entry .cont01 .cvBox .mail a:hover {
    opacity: 1;
    color: #59684a;
  }
  .entry .cont01 .cvBox .mail a:hover::after {
    bottom: 0;
  }
  /* .entryform */
  .entry .cont01 .entryform {
    width: min(100%, 1000px);
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
  }
  .entry .cont01 .entryform::before, .entry .cont01 .entryform::after {
    content: "";
    display: block;
    background: no-repeat center/contain;
    position: absolute;
    pointer-events: none;
  }
  .entry .cont01 .entryform::before {
    width: 334px;
    height: 208px;
    background-image: url("img/entry_cont01_bg02.png");
    top: -50px;
    right: -100px;
    z-index: -1;
  }
  .entry .cont01 .entryform::after {
    width: 325px;
    height: 213px;
    background-image: url("img/entry_cont01_bg03.png");
    bottom: -70px;
    right: -100px;
  }
  .entry .cont01 .entryform h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .entry .cont01 .entryform h3::before {
    content: "";
    display: inline-block;
    margin-right: 8px;
    width: 0.8em;
    height: 0.8em;
    background: #a5b747;
  }
  .entry .cont01 .entryform .note {
    font-size: 14px;
  }
  .entry .cont01 .formBox {
    margin: 50px auto 0;
    padding: 30px 50px 50px;
    background: #fff;
  }
  .entry .cont01 .formBox table {
    width: 100%;
    table-layout: fixed;
    position: relative;
    z-index: 10;
  }
  .entry .cont01 .formBox tr {
    border-bottom: 1px solid #c4d184;
  }
  .entry .cont01 .formBox th, .entry .cont01 .formBox td {
    padding: 30px 0;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
  }
  .entry .cont01 .formBox th {
    position: relative;
    width: 220px;
    padding-right: 50px;
    font-weight: bold;
  }
  .entry .cont01 .formBox th label {
    font-weight: bold;
  }
  .entry .cont01 .formBox th .required {
    height: fit-content;
    padding: 2px 10px;
    background: #59684a;
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .entry .cont01 .formBox td {
    padding-left: 10px;
    font-size: 14px;
  }

  .entry .cont01 .formBox td .select-box select {
    padding-left: 30px;
    padding-right: 30px !important;
    background: #f7f9ef;
    border: none;
    height: 60px;
    width: 100%;
    font-size: 16px;
  }
  .entry .cont01 .formBox td .select-box select:focus {
    outline: none;
    box-shadow: 0 0 5px #ccc; /* 例: シャドウでフォーカスを示す */
}
  .entry .cont01 .formBox td input[type="text"],
  .entry .cont01 .formBox td input[type="tel"],
  .entry .cont01 .formBox td input[type="email"],
  .entry .cont01 .formBox td textarea {
    padding: 30px;
    box-sizing: border-box;
    background: #f7f9ef;
    border: none !important;
    height: 60px;
    width: 100%;
    font-size: 16px;
  }
  .entry .cont01 .formBox td input.p-postal-code {
    margin-right: 20px;
    width: 150px !important;
  }
  .entry .cont01 .formBox td input.p-region {
    width: 150px;
  }
  .entry .cont01 .formBox td.add span {
    margin: 5px 0 20px 30px;
    display: block;
  }
  .entry .cont01 .formBox td textarea {
    width: 100% !important;
    height: 260px !important;
  }
  .entry .cont01 .privacy_check{
    text-align: center;
    padding: 50px 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .entry .cont01 .privacy_check a {
    text-decoration: underline;
  }
  .entry .cont01 .privacy_check div.mfp_err {
    text-align: center;
    width: 1000px;
    margin: 0 auto;
    padding: 10px 0;
    box-sizing: border-box;
    background: url(img/mfp_error.gif) no-repeat top 12px left 320px;
  }
  .entry .cont01 .privacy_check input {
    width: 15px;
    height: 15px;
    margin: 0 5px;
  }
  .entry .cont01 .privacy_check label {
    margin: 0 5px!important;
  }
  .entry .cont01 .button{
    text-align: center;
  }
  .entry .cont01 .button input{
    font-family: var(--main-font) !important;
    width: 360px;
    border-radius: 60px;
    line-height: 1;
    padding: 20px 0;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
    margin: auto;
    border: none;
    display: block;
    color: #fff;
    background: #59684a;
    border: 1px solid #59684a;
    transition: all .5s;
  }
  .entry .cont01 .button input:hover{
    background: #fff;
    color: #59684a;
    transition: all .5s;
  }
  

/* temple
------------------------------------------------------------------------*/
.temple .key {
  width: 100%;
  height: 210px;
  background: #f7f9ef;
  padding-top: 90px;
  box-sizing: border-box;
}
.temple .key .ttl {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 25px;
  position: relative;
  line-height: 1;
}
.temple .key .ttl::before {
  content: "";
  width: 10px;
  height: 5px;
  background: #59684a;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.temple header h1 {
  color: #333;
}


/* faq
------------------------------------------------------------------------*/
.faq .cont01 {
  box-sizing: border-box;
  margin: 100px auto 80px;
  width: 1000px;
}
.faq .cont01 .box {
  padding: 30px 40px;
  border-top: 1px solid #ededed;
  position: relative;
  cursor: pointer;
}
.faq .cont01 .box span {
  position: absolute;
  top: 38px;
  right: 40px;
  width: 20px;
  height: 20px;
  background: #333333;
  border-radius: 50%;
  transition: all .3s;
}
.faq .cont01 .box.active span {
  background: #bbbbbb;
  transition: all .3s;
}
.faq .cont01 .box span::before {
    content: "";
    width: 8px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq .cont01 .box span::after {
    content: "";
    width: 3px;
    height: 8px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: all .3s;
}
.faq .cont01 .box.active span::after {
    opacity: 0;
    transition: all .3s;
}
.faq .cont01 .box:last-of-type {
  border-bottom: 1px solid #ededed;
}
.faq .cont01 .box p {
  padding-left: 40px;
  position: relative;
  font-weight: bold;
}
.faq .cont01 .box .qus::before {
  content: 'Q';
  font-size: 18px;
  font-weight: bold;
  color: #59684a;
  position: absolute;
  top: 0;
  left: 0;
}
.faq .cont01 .box .qus {
  font-size: 18px;
  transition: all .3s;
}
.faq .cont01 .box.active .qus {
  color: #bbbbbb;
  transition: all .3s;
}
.faq .cont01 .box .ans {
  padding-top: 15px;
  display: none;
}


/* company
------------------------------------------------------------------------*/
/* company 共通 */
.company h2 {
  font-size: 28px;
  text-align: center;
  padding-bottom: 30px;
  font-weight: bold;
  position: relative;
}
.company h2::before {
    content: '';
    font-size: 16px;
    font-weight: bold;
    color: #59684a;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}
.company .cont01 h2::before {
    content: "OUTLINE";
}
.company .cont02 h2::before {
    content: "Specified Commercial Transaction Law";
}
.company .cont03 h2::before {
    content: "GREETING";
}
.company table {
  width: 100%;
  text-align: left;
  margin: 40px auto 0;
}
.company table tr {
  border-top: 1px solid #ededed;
}
.company table tr:last-of-type {
  border-bottom: 1px solid #ededed;
}
.company table th {
  width: 250px;
  padding: 23px 0 20px 50px;
  font-weight: bold;
  vertical-align: middle;
}
.company table td {
  padding: 23px 0 20px;
  vertical-align: middle;
}

/* cont01 */
.company .cont01 {
  margin: 0px auto;
  padding: 60px 0 150px;
}
.company .cont01 .inner {
  width: 1000px;
}

/* cont02 */
.company .cont02 {
  background: #f7f9ef;
}
.company .cont02 .inner {
  margin: 0px auto;
  padding: 150px 0;
  width: 1000px;
}
.company .cont02 table tr {
  border-top: 1px solid #ededed;
}
.company .cont02 table tr:last-of-type {
  border-bottom: 1px solid #ededed;
}

/* cont03 */
.company .cont03 {
  padding: 100px 0 0;
}
.company .cont03 .flex {
  display: flex;
  align-items: center;
  padding-top: 50px;
}
.company .cont03 .flex .text_box {
  padding-left: 50px;
  width: 600px;
}
.company .cont03 .flex .text_box .text02 {
  text-align: right;
  font-size: 24px;
  margin-top: 40px;
  font-weight: bold;
}
.company .cont03 .flex .text_box .text02 span {
  font-size: 16px;
  font-weight: bold;
}
.company .cont03 .img {
  flex-shrink: 0;
}


/*blog共通項目
--------------------------------------------------------------------------*/
.blog .flex {
  display: flex;
  justify-content: flex-start;
  width: 1200px;
  margin: 100px auto;
}
.blog .flex .side {
  width: 370px;
  flex-shrink: 0;
  margin-top: -5px;
}
.blog .flex .side .cont {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  margin-top: 20px;
}
.blog .flex .side .side_box02 {
  margin: 60px 0;
}
.blog .flex .side .ttl {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #ededed;
  position: relative;
}
.blog .flex .side .ttl::before {
  content: "";
  color: #59684a;
  font-size: 14px;
  position: absolute;
  top: 7px;
  left: 100px;
}
.blog .flex .side .side_box01 .ttl::before {
  content: "Popular Articles";
}
.blog .flex .side .side_box02 .ttl::before {
  content: "New Articles";
}
.blog .flex .side .side_box03 .ttl::before {
  content: "Category";
  left: 110px;
}
.blog .flex .side .cont .text_box {
  margin-left: 15px;
  font-size: 14px;
  width: 205px;
}
.blog .flex .side .cont .text_box h2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 10px;
}
.blog .flex .side .cont .img {
  width: 150px;
  flex-shrink: 0;
  position: relative;
}
.blog .flex .side .cont .img img {
  border-radius: 5px;
}
.blog .flex .side .side_box01 .cont .img::before {
    content: "";
    width: 25px;
    height: 25px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #59684a;
    line-height: 1;
    box-sizing: border-box;
    padding-top: 6px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
.blog .flex .side .side_box01 .cont:nth-of-type(1) .img::before {
    content: "1";
    background: #f2cd44;
}
.blog .flex .side .side_box01 .cont:nth-of-type(2) .img::before {
    content: "2";
    background: #ababab;
}
.blog .flex .side .side_box01 .cont:nth-of-type(3) .img::before {
    content: "3";
    background: #bc6c25;
}
.blog .flex .side .side_box01 .cont:nth-of-type(4) .img::before {
    content: "4";
}
.blog .flex .side .side_box01 .cont:nth-of-type(5) .img::before {
    content: "5";
}
.blog .flex .side .side_box02 .cont .img {
  position: relative;
}
.blog .flex .side .side_box02 .cont .img::before {
    content: "new";
    width: 50px;
    height: 25px;
    line-height: 1;
    font-size: 14px;
    box-sizing: border-box;
    padding-top: 5px;
    color: #fff;
    background: #59684a;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
.blog .flex .side .side_box03 ul {
  margin-top: 15px;
}
.blog .flex .side .side_box03 ul li {
  position: relative;
  padding-left: 32px;
}
.blog .flex .side .side_box03 ul li:nth-of-type(n+2) {
  margin-top: 15px;
}
.blog .flex .side .side_box03 ul li::before {
    content: '';
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: url(img/category_icon.png) no-repeat top 7px left 7px #59684a;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}


/*blog-archive
------------------------------------------------------------------------*/
.blog .cont01 {
  flex-shrink: 1;
  width: 800px;
  margin-right: 30px;
}
.blog .cont01 .cont:nth-of-type(1) {
  margin-top: 0;
}
.blog .cont01 .cont {
  display: block;
  position: relative;
  box-sizing: border-box;
  padding: 0 0 30px;
  border-bottom: 1px solid #ededed;
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.blog .cont01 .cont .img {
  flex-shrink: 0;
}
.blog .cont01 .cont .img img {
  border-radius: 10px;
}
.blog .cont01 .cont .text_box {
  width: 470px;
  padding-left: 30px;
}
.blog .cont01 .cont h2 {
  font-size: 18px;
}
.blog .cont01 .cont .text_box .cate-box {
  margin: 15px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.blog .cont01 .cont .text_box .cate-box .cate {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background: #59684a;
  border-radius: 5px;
  min-width: 100px;
  padding: 7px 15px;
  text-align: center;
}
.blog .cont01 .cont .text_box .cate-box .date {
  font-size: 14px;
  line-height: 1;
}
.blog .cont01 .cont .text_box .text {
  line-height: 1.8;
}

/* pager */
.blog .pager{
  padding: 60px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 10px;
}
.blog .pager .page-numbers{
  border: 2px solid #59684a;
  background: #fff;
  color: #59684a;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
}
.blog .pager .page-numbers.current {
  border: none;
  background: #59684a;
  color: #fff;
  box-sizing: border-box;
}
.blog .pager .page-numbers.prev,
.blog .pager .page-numbers.next{
  border: 2px solid #59684a;
  background: #fff;
  color: #59684a;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  padding-top: 3px;
}
.blog .pager .page-numbers.next {
  padding-left: 3px;
}


/*blog_single
------------------------------------------------------------------------*/
/* 目次のCSS */
.blog_single .index_nav {
  box-sizing: border-box;
  padding: 40px;
  border: none;
  border-radius: 0px;
  margin: 20px 0 45px;
  background: var(--main-light-color);
  border-radius: 10px;
}
.blog_single .index_nav .title {
  font-weight: bold;
  position: relative;
  padding: 0 !important;
  padding-left: 35px !important;
  font-size: 18px;
  line-height: 1.5;
  font-weight: normal;
}
.blog_single .index_nav .title::before {
  content: '';
  width: 20px;
  height: 18px;
  background: url(img/index_icon.png) no-repeat center / 100%;
  position: absolute;
  top: 4px;
  left: 5px;
}
.blog_single .index_nav {
  position: static;
}
.blog_single .index_nav ul {
  margin: 20px 0 0 0;
  padding-bottom: 0;
}
.blog_single .index_nav ul li.index_level03 {
  margin-left: 15px;
}
.blog_single .index_nav ul li.index_level04 {
  margin-left: 30px;
}
.blog_single .index_nav ul li.index_level05 {
  margin-left: 45px;
}
.blog_single .index_nav ul li {
  display: block;
  text-align: left;
  margin-top: 25px;
}
.blog_single .index_nav ul li.index_level03,
.blog_single .index_nav ul li.index_level04,
.blog_single .index_nav ul li.index_level05 {
  margin-top: 15px;
}
.blog_single .index_nav ul li a {
  font-size: 18px;
  font-weight: normal;
  text-decoration: none;
}
.blog_single .index_nav ul li.index_level03 a,
.blog_single .index_nav ul li.index_level04 a,
.blog_single .index_nav ul li.index_level05 a {
  font-size: 16px;
}
.blog_single .index_nav ul li a:hover {
  text-decoration: none;
}
.blog_single .index_nav ul li::before {
  display: none;
}

/* ブログ詳細css */
.blog_single .cont01 .img img {
  border-radius: 10px;
}
.blog_single .cont01 p.head{
  padding-bottom: 10px;
  border-bottom: 1px solid #ededed;
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 25px;
  font-weight: bold;
  position: relative;
}
.blog_single .cont01 h2{
  margin: 45px 0 15px;
  padding: 0 0 0 35px;
  font-size: 20px;
  position: relative;
}
.blog_single .cont01 h2:before{
    content: "";
    display: block;
    width:14px;
    height: 14px;
    border:1px solid var(--main-color);
    background: #fff;
    position: absolute;
    top:0;
    left:0;
}
.blog_single .cont01 h2:after{
    content: "";
    display: block;
    width:14px;
    height: 14px;
    border:1px solid var(--main-color);
    background: var(--main-color);
    position: absolute;
    top:10px;
    left:10px;
}
.blog_single .cont01 h3,
.blog_single .cont01 h4,
.blog_single .cont01 h5{
  font-size:18px;
  border-left:4px solid var(--main-color);
  margin: 35px 0 15px;
  padding: 0 0 0 15px;
}
.blog_single .cont01 p{
  margin: 0 0 20px;
}
.blog_single .cont01 .cate-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}
.blog_single .cont01 .cate-box .cate {
  line-height: 1;
  font-size: 12px;
  color: #fff;
  text-align: center;
  min-width: 100px;
  padding: 7px 15px;
  border-radius: 5px;
  background: var(--main-color);
  margin: 0;
}
.blog_single .cont01 .cate-box .date{
  font-size: 14px;
  line-height: 1;
  margin: 0;
  font-weight: bold;
}
.blog_single .cont01 .wp-block-image{
  margin: 0 0 35px;
}
.blog_single .cont01 .wp-block-image img{
  max-width: 100%;
  border-radius: 10px;
}
.aligncenter,
.has-text-align-center{
  text-align: center;
}
.alignleft,
.has-text-align-left{
  text-align: left;
}
.alignright,
.has-text-align-right{
  text-align: right;
}

.blog_single .pager{
  padding: 0;
  margin: 70px 0 0;
  justify-content: space-between;
}
.blog_single .pager-box {
  width: 45%;
}
.blog_single .pager-box.prev-pager-box {
  margin-left: 20px;
}
.blog_single .pager-box.next-pager-box {
  margin-right: 20px;
}
.blog_single .pager-box a {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  text-align: left;
  font-size: 14px;
  position: relative;
  justify-content: flex-end;
}
.blog_single .pager-box.prev-pager-box a {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.blog_single .pager-box.prev-pager-box a::before {
    content: "";
    width: 35px;
    height: 35px;
    background: var(--main-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}
.blog_single .pager-box.prev-pager-box a::after {
    content: "";
    width: 0;
    height: 0;
    border-right: 8px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 50%;
    left: -7px;
    transform: translateY(-50%);
}
.blog_single .pager-box.next-pager-box a::before {
    content: "";
    width: 35px;
    height: 35px;
    background: var(--main-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}
.blog_single .pager-box.next-pager-box a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    top: 50%;
    right: -7px;
    transform: translateY(-50%);
}
.blog_single .pager-box.prev-pager-box a .text-box {
  padding-left: 20px;
}
.blog_single .pager-box.next-pager-box a .text-box {
  padding-right: 20px;
}
.blog_single .pager-box a p {
  margin: 0 !important;
  line-height: 1.5 !important;
}
.blog_single .pager-box a .ttl {
  font-weight: bold;
  margin-bottom: 10px !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.blog_single .pager-box a .img {
  flex-shrink: 0;
}
.blog_single .pager-box a .img img {
  width: 150px !important;
  border-radius: 5px !important;
}



/* contact
------------------------------------------------------------------------*/
.contact .cont01 {
  width: 1000px;
  margin: 70px auto 0;
}
.contact .cont01 .tel-box,
.contact .cont01 .line-box {
  padding: 50px 0 40px;
  border-top: 1px solid #ededed;
}
.contact .cont01 .line-box {
  border-bottom: 1px solid #ededed;
}
.contact .cont01 h2{
  font-size: 18px;
}
.contact .cont01 .tel-box h2::before {
    content: '■';
    color: #59684a;
    padding-right: 5px;
}
.contact .cont01 .line-box h2::before {
    content: '■';
    color: #00b12b;
    padding-right: 5px;
}
.contact .cont01 .tel-box p {
  display: flex;
  align-items: center;
  margin-top: 15px;
  line-height: 1.5;
}
.contact .cont01 .tel-box a {
  display: inline-block;
  font-size: 30px;
  padding-right: 20px;
}
.contact .cont01 .line-box p {
  margin-top: 20px;
}
.contact .cont01 .line-box a {
  font-size: 18px;
  line-height: 1;
  padding: 20px 75px 20px 55px;
  background: url(img/contact-line.png) no-repeat center left, url(img/contact-qr.png) no-repeat center right;
}

/* cont02 */
.contact .cont02 {
  margin: 40px auto 0;
  padding-bottom: 100px;
  width: 1000px;
}
.contact .cont02 h2{
  font-size: 18px;
}
.contact .cont02 h2::before {
    content: '■';
    color: #59684a;
    padding-right: 5px;
}
.contact .cont02 .lead {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
}
.contact .cont02 table{
  width:1000px;
  margin: 40px auto 0;
}
.contact .cont02 table tr {
  border-top: 1px solid #ededed;
}
.contact .cont02 table tr:last-of-type {
  border-bottom: 1px solid #ededed;
}
.contact .cont02 table th{
  width: 265px;
  text-align: left;
  vertical-align: middle;
  position: relative;
  box-sizing: border-box;
  font-weight: bold;
  padding: 30px 0;
  position: relative;
}
.contact .cont02 table th span{
  color: #fff;
  background: #59684a;
  border-radius: 5px;
  float: right;
  padding: 7px 15px;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.contact .cont02 tr.address-contact th {
  vertical-align: top;
  padding-top: 48px;
}
.contact .cont02 tr.address-contact th span {
  top: 45px;
  transform: none;
}
.contact .cont02 table td{
  vertical-align: middle;
  padding: 30px 0 30px 25px;
}
.contact .cont02 table td .radio-box {
  display: flex;
  align-items: center;
  gap: 20px 60px;
}
.contact .cont02 table td .radio-box span {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.contact .cont02 table td .radio-box span input {
  margin: 0 !important;
}
.contact .cont02 table td input[type="text"],
.contact .cont02 table td input[type="email"],
.contact .cont02 table td input[type="tel"],
.contact .cont02 table td select,
.contact .cont02 table td textarea{
  width:100% !important;
  height: 60px !important;
  font-size:16px;
  font: inherit;
  padding: 5px;
  box-sizing: border-box;
  padding: 20px 30px;
  border: none !important;
  background: #ededed;
  border-radius: 5px !important;
}
.contact .cont02 tr.address-contact input {
  margin-bottom: 10px !important;
}
.contact .cont02 tr.address-contact input:first-of-type {
  margin-right: 20px;
}
.contact .cont02 tr.address-contact input:first-of-type,
.contact .cont02 tr.address-contact input:nth-of-type(2) {
  width: 210px !important;
}
.contact .cont02 tr.address-contact input:last-of-type {
  margin-bottom: 0 !important;
}
.contact .cont02 table td select {
  cursor: pointer;
}
.contact .cont02 table td textarea{
  height: 250px !important;
  vertical-align: middle;
  resize:none
}
.contact .cont02 .privacy_check{
  text-align: center;
  padding: 50px 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact .cont02 .privacy_check a {
  text-decoration: underline;
}
.contact .cont02 .privacy_check div.mfp_err {
  text-align: center;
  width: 1000px;
  margin: 0 auto;
  padding: 10px 0;
  box-sizing: border-box;
  background: url(img/mfp_error.gif) no-repeat top 12px left 320px;
}
.contact .cont02 .privacy_check input {
  width: 15px;
  height: 15px;
  margin: 0 5px;
}
.contact .cont02 .privacy_check label {
  margin: 0 5px!important;
}
.contact .cont02 .button{
  text-align: center;
}
.contact .cont02 .button input{
  font-family: var(--main-font) !important;
  width: 360px;
  border-radius: 60px;
  line-height: 1;
  padding: 20px 0;
  font-size: 16px;
  box-sizing: border-box;
  cursor: pointer;
  margin: auto;
  border: none;
  display: block;
  color: #fff;
  background: #59684a;
  border: 1px solid #59684a;
  transition: all .5s;
}
.contact .cont02 .button input:hover{
  background: #fff;
  color: #59684a;
  transition: all .5s;
}


/* thanks
------------------------------------------------------------------------*/
.thanks .cont01{
  padding: 30px 0 120px;
  text-align: center;
}
.thanks .cont01 h2{
  text-align: center;
  font-size: 24px;
}
.thanks .cont01 .text{
  margin: 40px 0 0;
  font-weight: bold;
}
.thanks .cont01 .button {
  margin-top: 50px;
}
.thanks .cont01 .button a{
  width: 360px;
  border-radius: 60px;
  line-height: 1;
  padding: 20px 0;
  font-size: 16px;
  box-sizing: border-box;
  cursor: pointer;
  margin: auto;
  border: none;
  display: block;
  color: #fff;
  background: #59684a;
  border: 1px solid #59684a;
  transition: all .5s;
}
.thanks .cont01 .button a:hover {
  background: #fff;
  color: #59684a;
  transition: all .5s;
}


/* privacy
------------------------------------------------------------------------*/
.privacy .cont01 {
  width: 1000px;
  margin: 50px auto 100px;
}
.privacy .cont01 h2 {
  font-size: 28px;
  text-align: center;
}
.privacy .cont01 .text01 {
  margin-top: 35px;
  line-height: 2;
}
.privacy .cont01 .box {
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #59684a;
}
.privacy .cont01 .box:first-of-type {
  margin-top: 45px;
}
.privacy .cont01 .box:last-of-type {
  border-bottom: none;
}
.privacy .cont01 .box h3 {
  font-size: 20px;
}
.privacy .cont01 .box .text02 {
  line-height: 2;
  margin-top: 10px;
}
.privacy .cont01 .box .text02 a {
  text-decoration: underline;
}
.privacy .cont01 .box ul {
  margin-top: 15px;
}
.privacy .cont01 .box ul li:nth-of-type(n+2) {
  margin-top: 8px;
}
.privacy .cont01 .box .text03 {
  line-height: 2;
  display: inline-block;
  padding: 25px 30px;
  background: #eeeeee;
  margin-top: 20px;
}


/*yonmaru
------------------------------------------------------------------------*/
.yonmaru .cont01 {
  padding: 30px 0 120px;
  text-align: center;
}
.yonmaru .cont01 h2 {
  text-align: center;
  font-size: 24px;
}
.yonmaru .cont01 .text {
  margin: 30px 0 0;
  font-weight: bold;
}
.yonmaru .cont01 .button {
  margin-top: 40px;
}
.yonmaru .cont01 .button a {
  width: 360px;
  border-radius: 60px;
  line-height: 1;
  padding: 20px 0;
  font-size: 16px;
  box-sizing: border-box;
  cursor: pointer;
  margin: auto;
  border: none;
  display: block;
  color: #fff;
  background: #59684a;
  border: 1px solid #59684a;
  transition: all .5s;
}
.yonmaru .cont01 .button a:hover {
  background: #fff;
  color: #59684a;
  transition: all .5s;
}

  /* login
  ------------------------------------------------------------------------*/
  .login .cont01 {
		padding-bottom: 80px;
    text-align: center;
  }
  .login .cont01 .message {
    width: 450px;
    height: 120px;
    padding: 30px 100px;
    background: #f1b01a;
    margin: 50px auto;
    z-index: 5;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
  }
  .login .cont01 .message a {
    margin-top: 10px;
    font-size: 30px;
    display: block;
    text-decoration: underline;
    color: #fff;
    font-weight: bold;
  }


  /* footer
  ------------------------------------------------------------------------*/
  footer {
    padding: 120px 0 100px;
  }
  footer .inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
    grid-gap: 50px;
  }
  footer .infoBox {
    grid-area: 1/1/2/2;
  }
  footer .infoBox .logo {
    margin-bottom: 30px;
  }
  footer .infoBox .name {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
  }
  footer .infoBox .link {
    margin-top: 15px;
  }
  footer .navBoxWrap {
    margin: 5px 0 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    grid-area: 1/2/3/3;
  }
  footer .navBox {
    max-width: 420px;
    min-width: 290px;
  }
  footer .navBox h2 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    color: #a5b747;
    border-bottom: 2px solid;
  }
  footer .navBox .list li {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .navBox .list li a, footer .navBox .list .parent {
    display: block;
    padding: 10px 0 10px 15px;
    font-weight: bold;
    position: relative;
  }
  footer .navBox .list li a::after, footer .navBox .list .parent::after {
    content: "";
    display: block;
    width: 0.25em;
    height: 0.25em;
    border-radius: 50%;
    background: currentColor;
    position: absolute;
    top: calc(0.625em + 10px);
    left: 0;
  }
  footer .navBox .list li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
  footer .navBox .list .child {
    padding: 0 0 5px 15px;
  }
  footer .navBox .list .child li a {
    font-weight: normal;
  }
  footer .navBox .list .child li a::after {
    width: 5px;
    height: 1px;
    top: calc(0.75em + 10px);
  }
  footer .navBox .list.is-column li a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal;
  }
  footer .copy {
    grid-area: 2/1/3/2;
    font-size: 12px;
  }
  /*	.to_top
  ------------------------------------------*/
  .to_top {
    display: none;
    position: fixed;
    z-index: 9000;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-indent: 200%;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
  }
  .to_top a {
    width: 100%;
    height: 100%;
    display: block;
    background: #59684a;
    border-radius: inherit;
    box-sizing: border-box;
    position: relative;
    color: #fff;
  }
  .to_top a::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 3px, 3px 3px, 3px 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 3px, 3px 3px, 3px 100%, 0 100%);
    background: currentColor;
    position: absolute;
    top: calc(50% - 3px);
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
  }
}
/*===============================================
横幅430px以下
===============================================*/
@media screen and (max-width: 431px) {
  html,
	body,
	.wrap{
		width: 430px;
		position: relative;
	}
	.inner{
		box-sizing: border-box;
		padding: 0 15px;
		width: auto;
	}
	img{
		max-width: 100%;
	}
	.pc{
		display: none;
	}
	.sp {
		display: block;
	}
	p {
		line-height: 1.8;
		font-size: 14px;
	}

	/* スムーススクロール設定 */
	html {
		scroll-behavior: smooth;
	}
	:root {
		--header-height: 80px;
	}
  /* body {
    padding-top: 0 !important;
    line-height: 1.8;
  }
  html,
  body,
  .wrap {
    width: 430px;
    position: relative;
    font-size: 14px;
  }
  .inner {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  .pc {
    display: none !important;
  } */






  /* common
  ------------------------------------------------------------------------*/
  /*	.common_tit01
  ------------------------------------------*/
  .common_tit01 {
    position: relative;
    background: no-repeat center top/auto 75px; /* background-image（大きい場合はbackground-sizeも）は各所CSSで設定 */
    padding: 45px 0 10px;
    font-size: 22px;
    text-align: center;
    text-shadow: 3px 3px 2px white, -3px 3px 2px white, 3px -3px 2px white, -3px -3px 2px white, 3px 0 2px white, 0 3px 2px white, -3px 0 2px white, 0 -3px 2px white;
  }
  .common_tit01::after {
    content: "";
    display: block;
    width: 12px;
    height: 3px;
    background: #b5c565;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .common_tit01 span {
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
    font-size: 10px;
    text-shadow: none;
  }
  .common_tit01.is-shadow-green {
    text-shadow: 3px 3px 2px #f9faf3, -3px 3px 2px #f9faf3, 3px -3px 2px #f9faf3, -3px -3px 2px #f9faf3, 3px 0 2px #f9faf3, 0 3px 2px #f9faf3, -3px 0 2px #f9faf3, 0 -3px 2px #f9faf3;
  }
  /* color variation */
  .common_tit01.is-white {
    color: #fff;
    text-shadow: none;
  }
  /*	.common_tit02
  ------------------------------------------*/
  .common_tit02 {
    padding: 50px 0 0;
    background: no-repeat center top/auto 35px; /* background-imageは各所CSSで設定 */
    font-size: 20px;
    text-align: center;
  }
  /*	.common_btn01
  ------------------------------------------*/
  .common_btn01 {
    border-radius: 100px;
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
  }
  .common_btn01 a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 10px 20px;
    box-sizing: border-box;
    background: #59684a;
    border-radius: inherit;
    color: #fff;
    font-weight: bold;
  }
  .common_btn01.is-lime a {
    background: #a5b747;
  }
  .common_btn01.is-orange a {
    background: #f1b01a;
  }
  /*	.common .key
  ------------------------------------------*/
  .common .key {
    height: 240px;
    background: no-repeat center/cover; /* background-imageは各所CSSで設定 */
  }
  .common .key .inner {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .common .key .tit {
    margin-top: 35px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
  }
  .common .key .tit::after {
    content: "";
    display: block;
    margin: 10px auto 0 5px;
    width: 100%;
    height: 10px;
    background: no-repeat center left/contain; /* background-imageは各所CSSで設定 */
  }
  /*	.common .pankuzu
  ------------------------------------------*/
  /* pankuzu */
	.pankuzu {
		padding: 20px 0px 30px;
	}
	.pankuzu ul {
		display: flex;
		flex-wrap: wrap;
	}
	.pankuzu ul li {
		position: relative;
		padding-right: 20px;
		margin-right: 20px;
		font-size: 14px;
	}
	.pankuzu ul li a {
		font-size: 10px;
		position: relative;
	}
    /* .pankuzu ul li a:after {
        content: ">";
        position: absolute;
        top: 45%;
        right: -25px;
        transform: translateY(-50%);
    } */
	.pankuzu ul li:last-of-type {
		margin-right: 0;
		padding-right: 0;
    font-size: 12px;
	}
  /* .common .pankuzu {
    margin-bottom: 50px;
    padding: 15px 0;
  }
  .common .pankuzu ul {
    display: flex;
    flex-wrap: wrap;
  }
  .common .pankuzu ul li {
    position: relative;
    margin-right: 10px;
    padding-right: 10px;
    font-size: 10px;
  }
  .common .pankuzu ul li a {
    display: block;
    color: #a5b747;
    font-weight: bold;
  }
  .common .pankuzu ul li:last-of-type {
    margin-right: 0;
    padding-right: 0;
  }
  .common .pankuzu ul li:last-of-type::before {
    content: none;
  } */
  /*	.common_cv01
  ------------------------------------------*/
  .common_cv01 {
    padding: 80px 0;
    background: #000 url("img/common_cv_bg01_sp.png") no-repeat center top;
    color: #fff;
  }
  .common_cv01 h2 {
    margin: 0 -10px 50px;
    margin-bottom: 30px;
    padding: 60px 0 0;
    background: url("img/common_cv_txt01.png") no-repeat center top;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    line-height: 1.8;
  }
  .common_cv01 h2 span {
    color: #b5c565;
    font-weight: bold;
  }
  .common_cv01 .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin-bottom: 50px;
  }
  .common_cv01 .list li {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px 10px;
    box-sizing: border-box;
    text-align: center;
  }
  .common_cv01 .list li a {
    color: inherit;
    font-weight: bold;
  }
  .common_cv01 .list h3 {
    margin-bottom: 20px;
    align-self: end;
    font-weight: bold;
    font-size: 17px;
  }
  .common_cv01 .list .tel {
    text-align: center;
  }
  .common_cv01 .list .tel a {
    display: block;
  }
  .common_cv01 .list .tel .time {
    display: block;
    margin-top: 15px;
    line-height: 1.5;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
  .common_cv01 .list .btn {
    width: 100%;
    border-radius: 100px;
  }
  .common_cv01 .list .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 50px;
    border-radius: inherit;
    position: relative;
  }
  .common_cv01 .list .btn a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: no-repeat center/contain;
  }
  .common_cv01 .list .btn.is-mail a {
    background: #59684a;
  }
  .common_cv01 .list .btn.is-mail a::before {
    background-image: url("img/common_ico_mail01.png");
  }
  .common_cv01 .list .btn.is-line a {
    background: #00bc00;
  }
  .common_cv01 .list .btn.is-line a::before {
    background-image: url("img/common_ico_line01.png");
  }
  .common_cv01 .list li:nth-of-type(1) {
    grid-column: 1/3;
  }
  .common_cv01 .list li:nth-of-type(1) h3 {
    margin-bottom: 25px;
    font-size: 20px;
  }
  .common_cv01 .message {
    font-size: 16px;
    text-align: center;
  }
  /*	.common .key
	------------------------------------------*/
	.common .key {
		height: 240px;
		background: no-repeat center/cover; /* background-imageは各所CSSで設定 */
    margin-top: 65px;
	}
	.common .key .inner {
		height: 100%;
		display: flex;
		align-items: center;
	}
	.common .key .tit {
		margin-top: 35px;
		color: #fff;
		font-weight: bold;
		font-size: 20px;
		line-height: 1.5;
	}
	.common .key .tit::after {
		content: "";
		display: block;
		margin: 10px auto 0 5px;
		width: 100%;
		height: 10px;
		background: no-repeat center left/contain; /* background-imageは各所CSSで設定 */
	}
	/*	.common .pankuzu
	------------------------------------------*/
	.common .pankuzu {
		margin-bottom: 50px;
		padding: 15px 0;
	}
	.common .pankuzu ul {
		display: flex;
		flex-wrap: wrap;
	}
	.common .pankuzu ul li {
		position: relative;
		margin-right: 10px;
		padding-right: 10px;
		font-size: 10px;
	}
	.common .pankuzu ul li a {
		display: block;
		color: #a5b747;
		font-weight: bold;
	}
	.common .pankuzu ul li::before {
		content: "";
		display: block;
		width: 4px;
		height: 4px;
		border-top: 1px solid;
		border-right: 1px solid;
		transform: rotate(45deg);
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		margin: auto;
	}
	.common .pankuzu ul li:last-of-type {
		margin-right: 0;
		padding-right: 0;
	}
	.common .pankuzu ul li:last-of-type::before {
		content: none;
	}
	/*	.pager
	------------------------------------------*/
	.info .pager {
		width: calc(100% - 20px);
		margin: 50px auto 0;
		padding: 0 50px;
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		position: relative;
	}
	.info .pager .page-numbers {
		width: 40px;
		height: 40px;
		margin: 5px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 50%;
		background: #59684a;
		border: 1px solid #59684a;
		box-sizing: border-box;
		color: #fff;
		font-weight: bold;
		flex-shrink: 0;
	}
	.info .pager .page-numbers.current {
		background: none;
		color: #59684a;
	}
	.info .pager .prev, .info .pager .next {
		overflow: hidden;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	/* .info .pager .prev::before, .info .pager .next::before {
		content: "";
		display: block;
		width: 10px;
		height: 10px;
		background: #fff;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
	} */
	.info .pager .prev {
		left: 0;
	}
	.info .pager .prev::before {
		transform: rotate(-45deg);
		margin-left: 10px;
	}
	.info .pager .next {
		right: 0;
	}
	.info .pager .next::before {
		transform: rotate(135deg);
	}
  /*	.common_recruit01 (RECRUIT)
  ------------------------------------------*/
  /* 見出し、背景など */
  .common_recruit01 {
    margin-bottom: 80px;
    padding: 80px 0;
    position: relative;
  }
  .common_recruit01::after {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% - 400px);
    background: #b5c565;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
  }
  .common_recruit01 h2 {
    margin-bottom: 30px;
    background-image: url("img/common_recruit_txt01.png");
  }
  .common_recruit01 h2::before {
    content: "";
    display: block;
    width: 100%;
    height: 155px;
    background: url("img/common_recruit_bg01.png") no-repeat left -35px bottom/150px, url("img/common_recruit_bg02.png") no-repeat right -100px top/240px;
    position: absolute;
    top: -125px;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
  }
  .common_recruit01 .lead {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
  }
  .common_recruit01 .btn {
    width: calc(100% - 60px);
    margin: 50px auto 0;
  }
  /* 一覧 */
  .common_recruit01-listWrap {
    position: relative;
  }
  /* クリックされないように */
  .common_recruit01-listWrap::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 5;
  }

  .common_recruit01 .message {
    width: calc(100% - 70px);
    padding: 20px;
    background: #f1b01a;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin: auto;
    transform: translateY(-50%);
    z-index: 15;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
  }
  .home .common_recruit01 .message {
    font-size: 24px;
    width: calc(100% - 140px);

  }
  .common_recruit01 .message a {
    margin-top: 10px;
    font-size: 20px;
    display: block;
    text-decoration: underline;
    color: #fff;
    font-weight: bold;
  }

    /* 除外 */

  .info-single .common_recruit01-listWrap::after {
    content: none;
  }
  .common_recruit01-listWrap.unlocked::after {
    content: none;
  }
  .common_recruit01-listWrap.unlocked .message {
    display: none;
  }
  .unlocked .common_recruit01-list .item a::after {
    content: none;
  }

  .common_recruit01-list .item {
    width: 330px;
    margin: 0 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  }
  .common_recruit01-list .item a {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    background: #fff;
    position: relative;
  }
  .common_recruit01-list .item a::after {
		content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
  /* info single のみぼかしなし */
  .info-single .common_recruit01-list .item a::after {
    content: none;
  }
  .common_recruit01-list .item .txtBox {
    padding: 25px 25px 40px;
    position: relative;
  }
  .common_recruit01-list .item .txtBox::after {
    content: "";
    display: block;
    width: calc(100% - 50px);
    height: 1px;
    background: #a5b747;
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
    margin: auto;
  }
  .common_recruit01-list .item .cat {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .common_recruit01-list .item .cat li {
    margin: 2px 3px 2px 0;
    padding: 2px 4px;
    background: #59684a;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.4;
  }
  .common_recruit01-list .item .cat li:last-of-type {
    margin-right: 0;
  }
  .common_recruit01-list .item .data {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 15px;
    gap: 3px 0;
  }
  .common_recruit01-list .item .data dt, .common_recruit01-list .item .data dd {
    box-sizing: border-box;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.5;
  }
  .common_recruit01-list .item .data dt {
    max-width: 100px;
    padding: 0 1.1em 0 0;
    color: #59684a;
    position: relative;
  }
  .common_recruit01-list .item .data dt::after {
    content: "：";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .common_recruit01-list .item .tit {
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #a5b747;
    font-size: 18px;
  }
  .common_recruit01-list .item .tag {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .common_recruit01-list .item .tag li {
    margin: 2px 3px 2px 0;
    padding: 2px 8px;
    background: #f2f2f2;
    font-size: 12px;
    line-height: 1.4;
  }
  .common_recruit01-list .item .tag li:last-of-type {
    margin-right: 0;
  }
  .common_recruit01-list .item .txt {
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .common_recruit01-list .item .img {
    order: -1;
    overflow: hidden;
  }
  .common_recruit01-list .item .img img {
    width: 100%;
    transition: all 0.5s;
  }
  /* 左上タグ */
  .common_recruit01-list.is-new .item a::before, .common_recruit01-list.is-haken .item a::before, .common_recruit01-list.is-baito .item a::before, .common_recruit01-list.is-syain .item a::before {
    display: block;
    padding: 2px 10px;
    position: absolute;
		z-index: 2;
    top: 5px;
    left: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
  }
  .common_recruit01-list.is-new .item a::before {
    content: "NEW！";
    background: #f1b01a;
  }
  .common_recruit01-list.is-haken .item a::before {
    content: "派遣";
    background: #59684a;
  }
  .common_recruit01-list.is-syain .item a::before {
    content: "正社員";
    background: #a5b747;
  }
  .common_recruit01-list.is-baito .item a::before {
    content: "スキマバイト";
    background: #f1b01a;
  }
  /* slider用 */
  .common_recruit01-list .slick-track {
    display: flex;
    padding: 20px 0;
  }
  .common_recruit01-list .slick-slide {
    height: auto !important;
  }
  .common_recruit01-list .slick-arrow {
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 10;
    width: 60px;
    height: 60px;
    padding: 0;
    border: none;
    box-sizing: border-box;
    border-radius: 50%;
    background: #59684a url("img/common_ico_arrow02.png") no-repeat 55% center/40%;
    text-indent: 100%;
    font-size: 10px;
    white-space: nowrap;
    z-index: 99;
    overflow: hidden;
  }
  .common_recruit01-list .slick-arrow.slick-prev {
    left: 5px;
    transform: scale(-1, 1);
  }
  .common_recruit01-list .slick-arrow.slick-next {
    right: 5px;
  }
	/* .common_about ( ABOUT WORKSTYLE 色見などは各ページCSSで指定 )
  ------------------------------------------*/
  .common_about {
    padding: 0 0 80px;
  }
  .common_about h2 {
    margin: 0 auto 60px;
    padding: 40px 0 0;
    background: url("img/common_about_txt01.png") no-repeat center top/170px;
    font-size: 18px;
    text-align: center;
    line-height: 1.85;
  }
  .common_about h2 span {
    margin: 3px;
    padding: 5px;
    background: #e1e8c1;
  }
  .common_about .box01 {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
  }
  .common_about .box01 .txt {
    font-weight: bold;
    font-size: 16px;
  }
  .common_about .box01 .txt + .txt {
    margin-top: 20px;
  }
  .common_about .box01 .txt span {
    color: #8ca21d;
  }
  .common_about .box01 .img {
    order: -1;
    margin: 0 -15px 40px;
  }
  .common_about .box01 .img img {
    width: 100%;
  }
  .common_about .box02 {
    margin: 0 auto;
    padding: 25px 20px 40px;
    border-radius: 10px;
    border: 2px dotted #b5c565;
    box-sizing: border-box;
    position: relative;
  }
  .common_about .box02 h3 {
    width: 75%;
    margin: 0 auto 25px;
  }
  .common_about .box02 .list {
    position: relative;
    z-index: 2;
  }
  .common_about .box02 .list li {
    padding: 0 0 0 1.5em;
    background: url("img/common_ico_check01.png") no-repeat left top 0.5em/1em;
    font-size: 15px;
  }
  .common_about .box02 .list li + li {
    margin-top: 10px;
  }
  /*	.common_point ( POINT )
  ------------------------------------------*/
  .common_point {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 45px 15px;
    margin-bottom: 30px;
  }
  .common_point__item {
    display: flex;
    flex-direction: column;
    padding: 30px 15px 20px;
    border: 1px solid #a5b747;
    border-top: none;
    box-sizing: border-box;
    position: relative;
  }
  .common_point__item::before, .common_point__item::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
  }
  .common_point__item::before {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #a5b747 calc(100% - 60px), rgba(255, 255, 255, 0) calc(100% - 60px), rgba(255, 255, 255, 0) calc(100% - 10px), #a5b747 calc(100% - 10px));
    top: 0;
    left: 0;
  }
  .common_point__item::after {
    background: no-repeat center/contain;
    width: 30px;
    height: 30px;
    top: -15px;
    right: 20px;
  }
  .common_point__item:nth-of-type(odd) {
    transform: translateY(30px);
  }
  .common_point__item:nth-of-type(1)::after {
    background-image: url("img/common_ico_num01_01.png");
  }
  .common_point__item:nth-of-type(2)::after {
    background-image: url("img/common_ico_num01_02.png");
  }
  .common_point__item:nth-of-type(3)::after {
    background-image: url("img/common_ico_num01_03.png");
  }
  .common_point__item:nth-of-type(4)::after {
    background-image: url("img/common_ico_num01_04.png");
  }
  .common_point__item:nth-of-type(5)::after {
    background-image: url("img/common_ico_num01_05.png");
  }
  .common_point h3 {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
  }
  .common_point__txt {
    font-size: 12px;
  }
  .common_point__note {
    margin-top: 5px;
    padding-left: 1em;
    font-weight: bold;
    font-size: 11px;
    text-indent: -1em;
  }
  .common_point__img {
    order: -1;
    display: block;
    width: auto;
    height: 70px;
    margin: 0 auto 15px;
  }
  /* .common_feature ( FEATURE )
  ------------------------------------------*/
  .common_feature {
    padding: 80px 0;
    background: #222 url("img/common_feature_bg01_sp.png") no-repeat center top/100%;
  }
  .common_feature h2 {
    margin-bottom: 40px;
    background-image: url("img/common_feature_txt01.png");
  }
  .common_feature .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 15px;
    margin-bottom: 30px;
  }
  .common_feature .list li {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .common_feature .list li:nth-of-type(odd) {
    transform: translateY(30px);
  }
  .common_feature .list li::after {
    content: "";
    display: block;
    width: 20px;
    height: 90px;
    background: #222 no-repeat right top/10px;
    position: absolute;
    top: 0;
    right: -1px;
  }
  .common_feature .list li:nth-of-type(1)::after {
    background-image: url("img/common_feature_num01.png");
  }
  .common_feature .list li:nth-of-type(2)::after {
    background-image: url("img/common_feature_num02.png");
  }
  .common_feature .list li:nth-of-type(3)::after {
    background-image: url("img/common_feature_num03.png");
  }
  .common_feature .list li:nth-of-type(4)::after {
    background-image: url("img/common_feature_num04.png");
  }
  .common_feature .list li:nth-of-type(5)::after {
    background-image: url("img/common_feature_num05.png");
  }
  .common_feature .list li:nth-of-type(6)::after {
    background-image: url("img/common_feature_num06.png");
  }
  .common_feature .list .txt {
    position: relative;
    z-index: 2;
    width: calc(100% - 30px);
    padding: 10px;
    margin: -20px auto 0;
    background: #222;
    box-sizing: border-box;
    color: #fff;
    font-weight: bold;
  }
  .common_feature .list .img {
    order: -1;
    width: 100%;
    margin-bottom: 10px;
  }
  /* .common_compare ( COMPARE )
  ------------------------------------------*/
  .common_compare {
    padding: 80px 0;
    background: #f9faf3;
  }
  .common_compare h2 {
    margin-bottom: 40px;
    background-image: url("img/common_compare_txt01.png");
  }
  /*--------- データ表 ---------*/
  .common_compare .data {
    width: 600px;
    box-sizing: border-box;
    table-layout: fixed;
    border-spacing: 4px;
    border-collapse: separate;
  }
  .common_compare .dataWrap-sp {
    overflow: auto;
    margin: 0 -30px 50px 0;
    padding-right: 30px;
    box-sizing: border-box;
  }
  .common_compare .data thead, .common_compare .data tbody, .common_compare .data tr, .common_compare .data th, .common_compare .data td {
    box-sizing: border-box;
  }
  .common_compare .data th, .common_compare .data td {
    height: 50px;
    padding: 10px;
    font-weight: bold;
    vertical-align: middle;
    line-height: 1.5;
  }
  .common_compare .data th:first-of-type {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 2;
  }
  .common_compare .data thead th {
    color: #fff;
    font-size: 18px;
    text-align: center;
  }
  .common_compare .data thead th:nth-of-type(1) {
    width: 130px;
  }
  .common_compare .data thead th.is-haken {
    background: #59684a;
  }
  .common_compare .data thead th.is-syain {
    background: #b5c565;
  }
  .common_compare .data thead th.is-baito {
    background: #f1b01a;
  }
  .common_compare .data tbody th {
    background: #ebeee2;
    font-size: 15px;
    text-align: left;
  }
  .common_compare .data tbody th .small {
    font-size: 12px;
  }
  .common_compare .data tbody td {
    background: #fff;
    text-align: center;
    font-size: 12px;
  }
  .common_compare .data tbody td:nth-of-type(1) {
    position: relative;
  }
  .common_compare .data tbody td:nth-of-type(1)::before, .common_compare .data tbody td:nth-of-type(1)::after {
    content: "";
    display: block;
    width: 2px;
    height: calc(100% + 4px);
    position: absolute;
    top: -2px;
    pointer-events: none;
  }
  .common_compare .data tbody td:nth-of-type(1)::before {
    right: 0;
  }
  .common_compare .data tbody td:nth-of-type(1)::after {
    left: 0;
  }
  .common_compare .data tbody tr:first-of-type td:nth-of-type(1)::before, .common_compare .data tbody tr:first-of-type td:nth-of-type(1)::after {
    height: calc(100% + 6px);
    top: -4px;
  }
  .common_compare .data .mark {
    display: block;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.1;
  }
  /* 派遣 */
  .common_compare .data.is-haken tbody td:nth-of-type(1)::before, .common_compare .data.is-haken tbody td:nth-of-type(1)::after {
    background: #59684a;
  }
  .common_compare .data.is-haken tbody tr:last-of-type td:nth-of-type(1) {
    border-bottom: 2px solid #59684a;
  }
  /* 正社員 */
  .common_compare .data.is-syain tbody td:nth-of-type(1)::before, .common_compare .data.is-syain tbody td:nth-of-type(1)::after {
    background: #b5c565;
  }
  .common_compare .data.is-syain tbody tr:last-of-type td:nth-of-type(1) {
    border-bottom: 2px solid #b5c565;
  }
  /* スキマバイト */
  .common_compare .data.is-baito tbody td:nth-of-type(1)::before, .common_compare .data.is-baito tbody td:nth-of-type(1)::after {
    background: #f1b01a;
  }
  .common_compare .data.is-baito tbody tr:last-of-type td:nth-of-type(1) {
    border-bottom: 2px solid #f1b01a;
  }
  /*--------- オススメ ---------*/
  .common_compare .recommend {
    padding: 30px 15px 40px;
    border-radius: 10px;
    border: 2px dotted #b5c565;
    box-sizing: border-box;
  }
  .common_compare .recommend h3 {
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    position: relative;
  }
  .common_compare .recommend h3::before {
    content: "";
    display: inline-block;
    margin: 0 10px 10px -40px;
    width: 29px;
    height: 30px;
    background: url("img/common_ico_chon01.png") no-repeat center/contain;
  }
  .common_compare .recommend-list li + li {
    margin-top: 40px;
  }
  .common_compare .recommend-list__tit {
    display: block;
    margin: 0 auto 20px;
		padding: 10px 5px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    position: relative;
	}
	.common_compare .recommend-list__tit::after {
		content: "";
		display: block;
		width: 20px;
		height: 10px;
		background: inherit;
		-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		position: absolute;
		top: calc(100% - 1px);
		right: 0;
		left: 0;
		margin: auto;
	}
  .common_compare .recommend-list__tit.is-haken {
    background: #59684a;
  }
  .common_compare .recommend-list__tit.is-syain {
    background: #a5b747;
  }
  .common_compare .recommend-list__tit.is-baito {
    background: #f1b01a;
  }
  .common_compare .recommend-list img {
    display: block;
    margin: 0 auto;
  }
  /*	.common_workstyle ( WORK STYLE )
  ------------------------------------------*/
  .common_workstyle {
    padding: 80px 0;
    background: #f9faf3;
  }
  .common_workstyle h2 {
    margin-bottom: 30px;
    background-image: url("img/common_workstyle_txt01.png");
    background-size: auto 60px;
  }
  .common_workstyle .box {
    display: flex;
    flex-direction: column;
  }
  .common_workstyle .box + .box {
    margin-top: 50px;
  }
  .common_workstyle .box .txtBox {
    padding: 30px 20px;
    background: #fff;
  }
  .common_workstyle .box h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    font-size: 18px;
  }
  .common_workstyle .box h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background: no-repeat left center/contain;
    position: absolute;
    top: -13px;
    left: -5px;
    z-index: -1;
  }
  .common_workstyle .box h3 span {
    margin-left: 10px;
    font-size: 23px;
    font-feature-settings: "palt";
  }
  .common_workstyle .box:nth-of-type(1) h3::after {
    background-image: url("img/common_workstyle_num01.png");
  }
  .common_workstyle .box:nth-of-type(2) h3::after {
    background-image: url("img/common_workstyle_num02.png");
  }
  .common_workstyle .box:nth-of-type(3) h3::after {
    background-image: url("img/common_workstyle_num03.png");
  }
  .common_workstyle .box .txt {
    margin-bottom: 20px;
  }
  .common_workstyle .box .img {
    order: -1;
    /* margin: 0 -15px; */
  }
  .common_workstyle .box .img img {
    width: 100%;
  }
	/*	.common_flow ( FLOW )
  ------------------------------------------*/
  .common_flow {
    padding: 80px 0;
  }
  .common_flow h2 {
    margin-bottom: 40px;
    padding-top: 70px;
    background-image: url("img/common_flow_txt01.png");
    background-size: auto 44px;
    text-shadow: none;
  }
  .common_flow .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 15px;
  }
  .common_flow .list li {
    display: flex;
    flex-direction: column;
    padding: 30px 15px 20px;
    border: 1px solid #a5b747;
    border-top: none;
    box-sizing: border-box;
    position: relative;
  }
  .common_flow .list li::before, .common_flow .list li::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
  }
  .common_flow .list li::before {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #a5b747 calc(100% - 60px), rgba(255, 255, 255, 0) calc(100% - 60px), rgba(255, 255, 255, 0) calc(100% - 10px), #a5b747 calc(100% - 10px));
    top: 0;
    left: 0;
  }
  .common_flow .list li::after {
    background: no-repeat center/contain;
    width: 30px;
    height: 30px;
    top: -15px;
    right: 20px;
  }
  .common_flow .list li:nth-of-type(odd) {
    transform: translateY(30px);
  }
  .common_flow .list li:nth-of-type(1)::after {
    background-image: url("img/common_flow_num01.png");
  }
  .common_flow .list li:nth-of-type(2)::after {
    background-image: url("img/common_flow_num02.png");
  }
  .common_flow .list li:nth-of-type(3)::after {
    background-image: url("img/common_flow_num03.png");
  }
  .common_flow .list li:nth-of-type(4)::after {
    background-image: url("img/common_flow_num04.png");
  }
  .common_flow .list h3 {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
  }
  .common_flow .list .txt {
    font-size: 12px;
  }
  .common_flow .list .img {
    order: -1;
    display: block;
    width: auto;
    height: 70px;
    margin: 0 auto 15px;
  }
  .common_flow .list .img.is-trans {
    transform: translateX(-10px);
  }
  /* .common_info01 ( 企業情報 )
	------------------------------------------*/
	.common_info01 {
		padding: 0 0 80px;
	}
	.common_info01 .headBox {
		margin-bottom: 25px;
	}
	.common_info01 .headBox .cat {
		width: 100%;
		margin-bottom: 15px;
		display: flex;
		flex-wrap: wrap;
	}
	.common_info01 .headBox .cat li {
		margin: 2px 3px 2px 0;
		padding: 2px 4px;
		background: #59684a;
		color: #fff;
		font-weight: bold;
		font-size: 13px;
		line-height: 1.4;
	}
	.common_info01 .headBox .cat li:last-of-type {
		margin-right: 0;
	}
	.common_info01 .headBox .tit {
		margin-bottom: 15px;
		padding-bottom: 12px;
		border-bottom: 2px solid;
		color: #59684a;
		font-size: 22px;
	}
	.common_info01 .headBox .txt {
		font-weight: bold;
		font-size: 16px;
	}
	.common_info01 .contentBox {
		display: flex;
		flex-direction: column;
	}
	.common_info01 .contentBox .txtBox {
		padding: 20px 0 0;
		border-top: 2px solid #a5b747;
	}
	.common_info01 .contentBox .data {
		display: grid;
		grid-template-columns: auto 1fr;
		margin-bottom: 15px;
		gap: 3px 0;
	}
	.common_info01 .contentBox .data dt, .common_info01 .contentBox .data dd {
		box-sizing: border-box;
		font-weight: bold;
		font-size: 18px;
		line-height: 1.5;
	}
	.common_info01 .contentBox .data dt {
		max-width: 100px;
		padding: 0 1.1em 0 0;
		color: #59684a;
		position: relative;
	}
	.common_info01 .contentBox .data dt::after {
		content: "：";
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.common_info01 .contentBox .txt {
		padding-bottom: 20px;
		border-bottom: 2px solid #a5b747;
	}
	.common_info01 .contentBox .tag {
		display: flex;
		flex-wrap: wrap;
		margin-top: 20px;
	}
	.common_info01 .contentBox .tag li {
		margin: 2px 3px 2px 0;
		padding: 2px 8px;
		background: #f2f2f2;
		font-weight: bold;
		font-size: 13px;
		line-height: 1.4;
	}
	.common_info01 .contentBox .tag li:last-of-type {
		margin-right: 0;
	}
	.common_info01 .contentBox .img {
		order: -1;
		margin-bottom: 30px;
	}
	.common_info01 .contentBox .img img {
		width: 100%;
	}
  /*	.common_card01 ( 3つ並びリスト )
  ------------------------------------------*/
  .common_card01 {
    width: min(100%, 330px);
    margin: 0 auto;
  }
  .common_card01 .item {
    display: flex;
    flex-direction: column;
  }
  .common_card01 .item + .item {
    margin-top: 50px;
  }
  .common_card01 .tit {
    margin-bottom: 10px;
    color: #59684a;
    font-size: 18px;
    line-height: 1.5;
  }
  .common_card01 .img {
    order: -1;
    margin-bottom: 20px;
  }
  .common_card01 .img img {
    width: 100%;
  }
  	/*	.common_tit01
	------------------------------------------*/
	.common_tit01 {
		position: relative;
		background: no-repeat center top/auto 75px; /* background-image（大きい場合はbackground-sizeも）は各所CSSで設定 */
		padding: 45px 0 10px;
		font-size: 22px;
		text-align: center;
		text-shadow: 3px 3px 2px white, -3px 3px 2px white, 3px -3px 2px white, -3px -3px 2px white, 3px 0 2px white, 0 3px 2px white, -3px 0 2px white, 0 -3px 2px white;
	}
	.common_tit01::after {
		content: "";
		display: block;
		width: 12px;
		height: 3px;
		background: #b5c565;
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
	}
	.common_tit01 span {
		display: block;
		margin-bottom: 5px;
		font-weight: normal;
		font-size: 10px;
		text-shadow: none;
	}
	.common_tit01.is-shadow-green {
		text-shadow: 3px 3px 2px #f9faf3, -3px 3px 2px #f9faf3, 3px -3px 2px #f9faf3, -3px -3px 2px #f9faf3, 3px 0 2px #f9faf3, 0 3px 2px #f9faf3, -3px 0 2px #f9faf3, 0 -3px 2px #f9faf3;
	}
	/* color variation */
	.common_tit01.is-white {
		color: #fff;
		text-shadow: none;
	}
	/*	.common_tit02
	------------------------------------------*/
	.common_tit02 {
		padding: 50px 0 0;
		background: no-repeat center top/auto 35px; /* background-imageは各所CSSで設定 */
		font-size: 20px;
		text-align: center;
	}
	/*	.common_btn01
	------------------------------------------*/
	.common_btn01 {
		border-radius: 100px;
		font-size: 15px;
		text-align: center;
		line-height: 1.5;
	}
	.common_btn01 a {
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 50px;
		padding: 10px 20px;
		box-sizing: border-box;
		background: #59684a;
		border-radius: inherit;
		color: #fff;
		font-weight: bold;
	}
	.common_btn01.is-lime a {
		background: #a5b747;
	}
	.common_btn01.is-orange a {
		background: #f1b01a;
	}
  /*	.common_table01
  ------------------------------------------*/
  .common_table01 {
    width: 100%;
    margin: 0 auto;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 5px;
  }
  .common_table01 th, .common_table01 td {
    padding: 10px 15px;
    text-align: left;
    vertical-align: middle;
    box-sizing: border-box;
  }
  .common_table01 th {
		width: 130px;
    background: #59684a;
    color: #fff;
    font-weight: bold;
  }
  .common_table01 td {
    background: #f2f2f2;
    font-size: 12px;
  }
  /* color variation */
  .common_table01.is-lime th {
    background: #a5b747;
  }
  /*	.common_cart01
	------------------------------------------*/
  .common_cart01 form {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    grid-column-gap: 20px;
  }
  .common_cart01 .cartjs_product_table {
    height: 50px !important;
  }
  .common_cart01 input, .common_cart01 .cartjs_product_num > th {
    display: none;
  }
  .common_cart01 input, .common_cart01 .cartjs_product_num > td {
    display: block;
    padding-bottom: 0 !important;
  }
  .common_cart01 input[name="product_num"] {
    width: 60px !important;
    height: 50px !important;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #59684a;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
  }
  .common_cart01 input[type="submit"] {
    margin-bottom: 0 !important;
    box-sizing: border-box;
    font-family: inherit;
    -webkit-appearance: none;
    /* cursor: pointer; */
    display: block;
    width: 208px !important;
    height: 50px !important;
    padding: 0 0 0 20px;
    background: #59684a url("img/common_ico_cart01.png") no-repeat 20px center !important;
    border-radius: 100px !important;
    /* border: none; */
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    /* text-align: center; */
    transition: all 0.5s;
  }
	/* .common_cart01 form {
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
		grid-column-gap: 20px;
	}
	.common_cart01 input, .common_cart01 button {
		box-sizing: border-box;
		font-family: inherit;
		-webkit-appearance: none;
	}
	.common_cart01 input {
		width: 60px;
		height: 50px;
		border-radius: 0;
		box-shadow: none;
		border: 1px solid #59684a;
		font-size: 16px;
		text-align: center;
	}
	.common_cart01 button {
		cursor: pointer;
		display: block;
		height: 50px;
		padding: 0 0 0 20px;
		background: #59684a url("img/common_ico_cart01.png") no-repeat 20px center;
		border-radius: 100px;
		border: none;
		color: #fff;
		font-weight: bold;
		font-size: 17px;
		text-align: center;
	} */
  /* header
  ------------------------------------------------------------------------*/
  header {
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    transition: all 0.5s;
  }
  header .inner {
    padding: 0;
  }
  header h1 {
    width: 300px;
    position: absolute;
    z-index: 2;
    top: 30px;
    left: 65px;
    font-size: 10px;
    line-height: 1.5;
  }
  header .headerTop {
    height: 65px;
    background: #fff;
  }
  header .logo {
    width: calc(100% - 65px);
    height: 100%;
  }
  header .logo a {
    display: block;
    height: 100%;
    padding: 7px 0 0 55px;
    box-sizing: border-box;
    font-weight: bold;
    line-height: 1.5;
    position: relative;
  }
  header .logo a::after {
    content: "";
    display: block;
    width: 39px;
    height: 54px;
    background: url("img/common_logo02.png") no-repeat center/contain;
    position: absolute;
    top: 6px;
    left: 12px;
    transition: all 0.5s;
  }
  header .headerCv {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0 10px;
    background: #f9faf3 url("img/common_cv_txt01_sp.png") no-repeat center top 7px/auto 20px;
    box-shadow: 0 5px 0 #f9faf3;
    box-sizing: border-box;
    padding: 10px;
  }
  header .headerCv .tel, header .headerCv .btn {
    height: 45px;
  }
  header .headerCv .tel a, header .headerCv .btn a {
    height: 100%;
  }
  header .headerCv .tel {
    width: 45px;
    height: 45px;
  }
  header .headerCv .tel a {
    display: block;
    background: #222 url("img/common_ico_tel01.png") no-repeat center/14px;
  }
  header .headerCv .btn {
    flex: 1;
  }
  header .headerCv .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
  }
  header .headerCv .btn a::before {
    content: "";
    display: block;
    margin-right: 10px;
    background: no-repeat center/contain;
  }
  header .headerCv .btn.is-mail a {
    background: #59684a;
  }
  header .headerCv .btn.is-mail a::before {
    width: 16px;
    height: 12px;
    background-image: url("img/common_ico_mail01.png");
  }
  header .headerCv .btn.is-line a {
    background: #00bc00;
  }
  header .headerCv .btn.is-line a::before {
    width: 20px;
    height: 20px;
    background-image: url("img/common_ico_line01.png");
  }
  /* スクロール後 */
  /* header.is-scrolled-sp {
    background: #fff;
  }
  header.is-scrolled-sp h1 {
    top: 35px;
    color: #222;
  }
  header.is-scrolled-sp .logo a {
    padding-top: 13px;
    color: #222;
  }
  header.is-scrolled-sp .logo a::after {
    top: 5px;
    background-image: url("img/header_logo.png");
  } */
  /* nav
  ------------------------------------------------------------------------*/
  nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto !important;
    z-index: 10000;
  }
  #nav-btn {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10010;
    transition: all 0.5s;
    background: #59684a;
  }
  .menu-btn,
  .menu-btn span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .menu-btn {
    position: absolute;
    width: 20px;
    height: 16px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
  .menu-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
  }
  .menu-btn span:nth-of-type(1) {
    top: 0;
  }
  .menu-btn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .menu-btn span:nth-of-type(3) {
    bottom: 0;
  }
  #nav-btn.active .menu-btn span:nth-of-type(1) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
  }
  #nav-btn.active .menu-btn span:nth-of-type(2) {
    opacity: 0;
  }
  #nav-btn.active .menu-btn span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(45deg);
    transform: translateY(-7px) rotate(45deg);
  }
  #nav {
    display: none;
    background: #f9faf3;
    box-sizing: border-box;
    padding: 70px 30px 100px;
  }
  #nav .list li {
    font-size: 16px;
    line-height: 1.5;
  }
  #nav .list li a, #nav .list .parent {
    display: block;
    padding: 12px 0 12px 15px;
    font-weight: bold;
    font-size: 16px;
    position: relative;
  }
  #nav .list li a::after, #nav .list .parent::after {
    content: "";
    display: block;
    width: 0.25em;
    height: 0.25em;
    border-radius: 50%;
    background: currentColor;
    position: absolute;
    top: calc(0.625em + 12px);
    left: 0;
  }
  #nav .list .child {
    padding: 0 0 10px 15px;
  }
  #nav .list .child li a {
    font-weight: normal;
  }
  #nav .list .child li a::after {
    width: 5px;
    height: 1px;
    top: calc(0.75em + 13px);
  }
  #nav .link {
    margin-top: 20px;
  }
  #nav-btn.active + #nav {
    overflow: auto;
    display: block;
    position: fixed;
    left: 0;
		top: 0;
    z-index: 10000;
    width: 100%;
		height: 100%;
  }
  /* .home
  ------------------------------------------------------------------------*/
  /*	.home .key
  ------------------------------------------*/
  .home .keyMain {
    position: relative;
  }
  .home .keyMain .txtBox {
    width: calc(100% - 30px);
    position: absolute;
    z-index: 2;
    top: 165px;
    right: 0;
    left: 0;
    margin: auto;
    padding: 0 0 0 20px;
    border-left: 2px solid #c9db70;
    box-sizing: border-box;
  }
  .home .keyMain .txt01, .home .keyMain .txt02 {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  }
  .home .keyMain .txt01 img, .home .keyMain .txt02 img {
    display: block;
  }
  .home .keyMain .txt01 {
    width: 168px;
    margin-bottom: 20px;
  }
  .home .keyMain .txt02 {
    width: 265px;
    margin-bottom: 20px;
  }
  .home .keyMain .txt03 {
    width: fit-content;
    padding: 5px 10px;
    background: rgba(89, 104, 74, 0.7);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.4;
  }
  /*	.home .cont01
  ------------------------------------------*/
  .home .cont01 {
    padding: 65px 0;
    background: url("img/common_logo03_sp.png") no-repeat right -250px center;
  }
  .home .cont01 h2 {
    margin: 0 auto 45px;
    padding: 0 35px 0 0;
    background: url("img/home_cont01_txt01.png") no-repeat right top/11px;
    font-size: 28px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
  }
  .home .cont01 h2 span {
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px 0;
    line-height: 1.5;
    background: #a5b747;
    color: #fff;
  }
  .home .cont01 .point h3 {
    margin-bottom: 15px;
    padding: 0 0 0 35px;
    background: url("img/common_ico_check01.png") no-repeat left top 8px;
    font-size: 22px;
  }
  .home .cont01 .point h3 span {
    display: inline-block;
    margin-top: -10px;
    padding-top: 12px;
    background-repeat: repeat-x;
    background-position: center top;
    background-size: 1em 1.05em;
    background-image: radial-gradient(#a5b747 13%, transparent 13%);
  }
  .home .cont01 .point .list li {
    display: flex;
    flex-direction: column;
    padding: 25px 0 35px;
    border-bottom: 2px solid #b5c565;
  }
  .home .cont01 .point .list .txtBox {
    position: relative;
    z-index: 2;
  }
  .home .cont01 .point .list .txtBox::before {
    content: "";
    display: block;
    margin-bottom: 15px;
    width: 100%;
    height: 13px;
    background: no-repeat left center/contain;
  }
  .home .cont01 .point .list li:nth-of-type(1) {
    border-top: 2px solid #b5c565;
  }
  .home .cont01 .point .list li:nth-of-type(1) .txtBox::before {
    background-image: url("img/home_cont01_point01.png");
  }
  .home .cont01 .point .list li:nth-of-type(2) .txtBox::before {
    background-image: url("img/home_cont01_point02.png");
  }
  .home .cont01 .point .list li:nth-of-type(3) .txtBox::before {
    background-image: url("img/home_cont01_point03.png");
  }
  .home .cont01 .point .list h4 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .home .cont01 .point .list .txt {
    font-size: 16px;
  }
  .home .cont01 .point .list .img {
    order: -1;
    display: block;
    width: auto;
    height: 150px;
    margin: 0 auto -10px;
  }
  .home .cont01 .consultation {
    margin: 40px auto 0;
    padding: 50px 30px;
    background: url("img/home_cont01_bg01_sp.png") no-repeat center/cover;
    border-radius: 10px;
    color: #fff;
  }
  .home .cont01 .consultation-txtBox {
    margin-bottom: 40px;
  }
  .home .cont01 .consultation h3 {
    margin-bottom: 20px;
    padding: 20px 0 0;
    background: url("img/home_cont01_txt02.png") no-repeat center top/170px;
    font-size: 24px;
    text-align: center;
    line-height: 1.5;
  }
  .home .cont01 .consultation__catch {
    margin: 0 -10px 30px;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
  }
  .home .cont01 .consultation__catch span {
    color: #b5c565;
  }
  .home .cont01 .consultation__txt {
    font-weight: bold;
  }
  .home .cont01 .consultation__txt span {
    font-weight: normal;
  }
  /*	.home .cont04
  ------------------------------------------*/
  .home .cont04 {
    padding: 0 0 110px;
    position: relative;
  }
  .home .cont04::after {
    content: "";
    display: block;
    width: calc(100% - 60px);
    height: calc(100% - 330px);
    background: #f9faf3;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
  }
  .home .cont04 h2 {
    margin-bottom: 40px;
    background-image: url("img/home_cont04_txt01.png");
  }
  .home .cont04 .box01 .txtBox {
    margin-bottom: 40px;
  }
  .home .cont04 .box01 h3 {
    margin: 0 auto 30px;
    padding: 0 50px 0 0;
    background: url("img/home_cont04_txt02.png") no-repeat right top 3px/30px;
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
  }
  .home .cont04 .box01 .catch {
    margin-bottom: 15px;
    color: #59684a;
    font-weight: bold;
    font-size: 17px;
    /* text-align: center; */
  }
  .home .cont04 .box01 .img {
    position: relative;
  }
  .home .cont04 .box01 .img::after {
    content: "";
    display: block;
    width: 210px;
    height: 280px;
    background: url("img/common_logo04.png") no-repeat center/contain;
    position: absolute;
    left: -30px;
    bottom: -140px;
    pointer-events: none;
  }
  .home .cont04 .box01 .img img {
    width: 100%;
  }
  /*	.home .cont05
  ------------------------------------------*/
  .home .cont05 {
    position: relative;
  }
  .home .cont05::after {
    content: "";
    display: block;
    width: calc(100% - 60px);
    height: 100%;
    background: #f9faf3;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
  }
  .home .cont05 .btn {
    margin: 80px auto 0;
  }
  /*	.home .cont06
  ------------------------------------------*/
  .home .cont06 {
    padding: 80px 0;
    position: relative;
  }
  .home .cont06::before {
    content: "";
    display: block;
    width: 100%;
    height: 165px;
    background: url("img/home_cont06_bg01.png") no-repeat left -130px top/240px, url("img/home_cont06_bg02.png") no-repeat right 45px bottom/60px;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    pointer-events: none;
  }
  .home .cont06 h2 {
    margin-bottom: 40px;
    background-image: url("img/home_cont06_txt01.png");
  }
  .home .cont06 .list {
    margin-bottom: 50px;
  }
  .home .cont06 .list dt, .home .cont06 .list dd {
    position: relative;
  }
  .home .cont06 .list dt::after, .home .cont06 .list dd::after {
    content: "";
    display: block;
    width: 20px;
    height: 28px;
    background: no-repeat center/contain;
    position: absolute;
    left: 15px;
  }
  .home .cont06 .list dt {
    cursor: pointer;
    min-height: 50px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 12px 50px;
    background: #a5b747;
    box-sizing: border-box;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
  }
  .home .cont06 .list dt::after {
    top: 12px;
    background-image: url("img/home_cont06_ico01.png");
  }
  .home .cont06 .list dt .btn {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    background: #f9faf3;
    border-radius: 50%;
  }
  .home .cont06 .list dt .btn::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: url("img/common_ico_arrow01.png") no-repeat center/contain;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.5s;
  }
  .home .cont06 .list dt.is-open .btn::after {
    transform: scale(1, -1);
  }
  .home .cont06 .list dd {
    display: none;
    padding: 15px 20px 15px 50px;
    background: #f9faf3;
  }
  .home .cont06 .list dd::after {
    top: 14px;
    background-image: url("img/home_cont06_ico02.png");
  }
  .home .cont06 .list dd + dt {
    margin-top: 20px;
  }
  .home .cont06 .btn {
    margin: 0 auto;
  }
  /*	.home .cont07
  ------------------------------------------*/
  .home .cont07 {
    padding: 130px 0 80px;
    position: relative;
  }
  .home .cont07::before, .home .cont07::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
  }
  .home .cont07::before {
    width: 100%;
    height: 150px;
    background: url("img/home_cont07_bg01.png") no-repeat left center/contain;
    top: -20px;
    left: 0;
    z-index: -2;
  }
  .home .cont07::after {
    width: calc(50% + 100px);
    height: calc(100% - 60px);
    background: #f9faf3;
    box-sizing: border-box;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .home .cont07 h2 {
    margin-bottom: 30px;
    background-image: url("img/home_cont07_txt01.png");
  }
  .home .cont07 .btn {
    width: calc(100% - 60px);
    margin: 40px auto 0;
  }
  /* slider */
  .home .cont07 .list .item {
    width: 330px;
    margin: 0 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  }
  .home .cont07 .list .item a {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    background: #fff;
  }
  .home .cont07 .list .item .txtBox {
    padding: 25px 20px 20px;
  }
  .home .cont07 .list .item .tit {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .home .cont07 .list .item .date {
    margin-bottom: 5px;
    color: #a5b747;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.5;
  }
  .home .cont07 .list .item .txt {
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .home .cont07 .list .item .img {
    order: -1;
    overflow: hidden;
  }
  .home .cont07 .list .item .img img {
    width: 100%;
  }
  .home .cont07 .list .slick-track {
    display: flex;
    padding: 20px 0;
  }
  .home .cont07 .list .slick-slide {
    height: auto !important;
  }
  .home .cont07 .list .slick-arrow {
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 10;
    width: 60px;
    height: 60px;
    padding: 0;
    border: none;
    box-sizing: border-box;
    border-radius: 50%;
    background: #59684a url("img/common_ico_arrow02.png") no-repeat 55% center/40%;
    text-indent: 100%;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
  }
  .home .cont07 .list .slick-arrow.slick-prev {
    left: 5px;
    transform: scale(-1, 1);
  }
  .home .cont07 .list .slick-arrow.slick-next {
    right: 5px;
  }
  /*	.home .cont08
  ------------------------------------------*/
  .home .cont08 {
    padding: 80px 0;
    position: relative;
  }
  .home .cont08::after {
    content: "";
    display: block;
    width: 325px;
    height: 925px;
    background: url("img/common_logo03_sp.png") no-repeat right center/auto 100%;
    position: absolute;
    bottom: -90px;
    left: 0;
    z-index: -10;
    pointer-events: none;
  }
  .home .cont08 .inner {
    display: flex;
    flex-direction: column;
  }
  .home .cont08 .inner::before {
    content: "";
    display: block;
    margin: 0 auto 40px;
    width: 100%;
    height: 260px;
    background: url("img/home_cont08_img01.png") no-repeat center/contain;
  }
  .home .cont08 .txtBox {
    text-align: center;
  }
  .home .cont08 h2 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .home .cont08 .txt {
    margin-bottom: 10px;
  }
  .home .cont08 .link {
    margin-bottom: 30px;
  }
  .home .cont08 .btn {
    width: min(100%, 280px);
    margin: 0 auto;
  }
  /* .consult
  ------------------------------------------------------------------------*/
  /* .consult .key
  ------------------------------------------*/
  .consult .key {
    background-image: url("img/consult_key_bg01_sp.png");
  }
  .consult .key .tit::after {
    background-image: url("img/consult_key_txt01.png");
  }
  /* .consult .cont01
  ------------------------------------------*/
  .consult .cont01 {
    padding: 20px 0 100px;
    position: relative;
  }
  .consult .cont01::before, .consult .cont01::after {
    content: "";
    display: block;
    width: 100%;
    height: 150px;
    position: absolute;
    left: 0;
    pointer-events: none;
  }
  .consult .cont01::before {
    height: 140px;
    background: url("img/consult_cont01_bg01.png") no-repeat right 10px center/contain;
    top: -60px;
  }
  .consult .cont01::after {
    height: 140px;
    background: url("img/consult_cont01_bg02.png") no-repeat left 20px center/contain;
    bottom: -60px;
  }
  .consult .cont01 .inner {
    position: relative;
    z-index: 2;
  }
  .consult .cont01 h2 {
    margin: 0 auto 40px;
    padding: 0 30px 0 0;
    background: url("img/consult_cont01_txt01.png") no-repeat right top/18px;
    font-size: 24px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
  }
  .consult .cont01 h2 span {
    display: inline-block;
    padding: 13px 0;
    background: #a5b747;
    color: #fff;
    line-height: 1.5;
  }
  .consult .cont01 .txtBox {
    padding: 40px 0 0;
    background: url("img/consult_cont01_txt02.png") no-repeat center top;
  }
  .consult .cont01 .list li {
    padding: 8px 15px 8px 35px;
    background: #e9edd0 url("img/common_ico_check01.png") no-repeat 10px 13px/18px;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.5;
  }
  .consult .cont01 .list li + li {
    margin-top: 15px;
  }
  /* .consult .cont02
  ------------------------------------------*/
  .consult .cont02 {
    padding: 80px 0;
    background: #f9faf3;
  }
  .consult .cont02 h2 {
    margin-bottom: 40px;
    background-image: url("img/consult_cont02_txt01.png");
  }
  .consult .cont02 .list li {
    /* display: grid;
    grid-template-columns: 100px 1fr;
    grid-column-gap: 20px;
    padding: 30px 0 25px;
    border-bottom: 2px solid #a5b747; */
    display: flex;
		flex-direction: column;
		padding: 25px 0 35px;
		border-bottom: 2px solid #b5c565;
  }
  .consult .cont02 .list li::before {
    content: "";
    display: block;
    margin-bottom: 15px;
    width: 100%;
    height: 13px;
    background: no-repeat left center/contain;
  }
  .consult .cont02 .list li:nth-of-type(1) {
    border-top: 2px solid #a5b747;
  }
  .consult .cont02 .list li:nth-of-type(1)::before {
    background-image: url("img/consult_cont02_num01.png");
  }
  .consult .cont02 .list li:nth-of-type(2)::before {
    background-image: url("img/consult_cont02_num02.png");
  }
  .consult .cont02 .list li:nth-of-type(3)::before {
    background-image: url("img/consult_cont02_num03.png");
  }
  /* .consult .cont02 .list .img {
    grid-area: 1/1/4/2;
    display: block;
    margin: 0 auto;
  }
  .consult .cont02 .list h3 {
    margin-bottom: 12px;
    font-size: 20px;
  } */
  .consult .cont02 .list .img {
		order: -1;
		display: block;
		width: auto;
		height: 150px;
		margin: 0 auto -10px;
	}
	.consult .cont02 .list h3 {
		margin-bottom: 10px;
		font-size: 20px;
	}
	.consult .cont02 .txt {
		font-size: 16px;
	}
  /* .consult .cont03
  ------------------------------------------*/
  .consult .cont03 {
    padding: 80px 0;
    background: url("img/common_logo03_sp.png") no-repeat right -250px center;
  }
  .consult .cont03 h2 {
    margin-bottom: 40px;
    background-image: url("img/consult_cont03_txt01.png");
  }
  .consult .cont03 h2::before {
    content: "";
    display: block;
    width: 240px;
    height: 70px;
    background: url("img/consult_cont03_txt02.png") no-repeat center/contain;
    position: absolute;
    top: -50px;
    left: 0;
    margin: auto;
  }
  .consult .cont03 .list li {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    background: #e9edd0 no-repeat 20px 20px/15px;
  }
  .consult .cont03 .list li + li {
    margin-top: 30px;
  }
  .consult .cont03 .list li:nth-of-type(1) {
    background-image: url("img/consult_cont03_num01.png");
  }
  .consult .cont03 .list li:nth-of-type(2) {
    background-image: url("img/consult_cont03_num02.png");
  }
  .consult .cont03 .list li:nth-of-type(3) {
    background-image: url("img/consult_cont03_num03.png");
  }
  .consult .cont03 .list h3 {
    color: #59684a;
    margin-bottom: 15px;
    font-size: 20px;
    position: relative;
  }
  .consult .cont03 .list h3::after {
    content: "";
    display: block;
    width: 22px;
    height: 30px;
    background: url("img/common_ico_chon02.png") no-repeat center/contain;
    position: absolute;
    top: 15px;
    right: -15px;
  }
  .consult .cont03 .list li:nth-of-type(2) h3::after {
    content: "";
    display: block;
    width: 22px;
    height: 30px;
    background: url(img/common_ico_chon02.png) no-repeat center / contain;
    position: absolute;
    top: 15px;
    right: 40px;
  }
  .consult .cont03 .list h3 .tag {
    display: block;
    width: fit-content;
    margin: 0 auto 8px 0;
    padding: 4px 30px 4px 15px;
    background: #59684a;
    color: #fff;
    font-size: 14px;
    -webkit-clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
  }
  .consult .cont03 .list .nameBox {
    order: -1;
    margin-bottom: 25px;
    text-align: center;
  }
  .consult .cont03 .list .nameBox .name {
    margin-top: 15px;
    font-size: 16px;
  }
  /* .consult .cont05
  ------------------------------------------*/
  .consult .cont05 {
    background: url("img/common_logo03_sp.png") no-repeat left -250px center;
  }
  /* .dispatch
  ------------------------------------------------------------------------*/
  /* .dispatch .key
  ------------------------------------------*/
  .dispatch .key {
    background-image: url("img/dispatch_key_bg01_sp.png");
  }
  .dispatch .key .tit::after {
    background-image: url("img/dispatch_key_txt01.png");
  }
  /*	.dispatch .cont01
  ------------------------------------------*/
  .dispatch .cont01 .box02::after {
    content: "";
    display: block;
    width: 105px;
    height: 90px;
    background: url("img/dispatch_cont01_bg01.png") no-repeat center/contain;
    position: absolute;
    right: -20px;
    bottom: -40px;
    pointer-events: none;
  }
  /* .dispatch .cont02
  ------------------------------------------*/
  .dispatch .cont02 {
    padding: 80px 0;
    /* background: #f9faf3 url("img/common_logo03_sp.png") no-repeat right -250px center; */
		background: #f9faf3 url("img/common_logo03_sp.png") no-repeat right -250px bottom -80px;
  }
  .dispatch .cont02 h2 {
    margin-bottom: 40px;
    background-image: url("img/dispatch_cont02_txt01.png");
    position: relative;
  }
  .dispatch .cont02 h2::before {
    content: "";
    display: block;
    width: calc(100% + 60px);
    height: 130px;
    background: url("img/dispatch_cont02_bg01.png") no-repeat left 20px top/60px, url("img/dispatch_cont02_bg02.png") no-repeat right -30px bottom/120px;
    position: absolute;
    top: -30px;
    left: -30px;
    margin: auto;
    pointer-events: none;
  }
  /* .employee
  ------------------------------------------------------------------------*/
  /* .employee .key
  ------------------------------------------*/
  .employee .key {
    background-image: url("img/employee_key_bg01_sp.png");
  }
  .employee .key .tit::after {
    background-image: url("img/employee_key_txt01.png");
  }
  /*	.employee .cont01
  ------------------------------------------*/
  .employee .cont01 .box02::after {
    content: "";
    display: block;
    width: 50px;
    height: 110px;
    background: url("img/employee_cont01_bg01.png") no-repeat center/contain;
    position: absolute;
    right: -20px;
    bottom: -40px;
    pointer-events: none;
  }
  /* .employee .cont02
  ------------------------------------------*/
  .employee .cont02 {
    padding: 80px 0;
    /* background: #f9faf3 url("img/common_logo03_sp.png") no-repeat right -250px center; */
		background: #f9faf3 url("img/common_logo03_sp.png") no-repeat right -250px bottom -80px;
  }
  .employee .cont02 h2 {
    margin-bottom: 40px;
    background-image: url("img/employee_cont02_txt01.png");
    position: relative;
  }
  .employee .cont02 h2::before {
    content: "";
    display: block;
    width: calc(100% + 60px);
    height: 130px;
    background: url("img/employee_cont02_bg01.png") no-repeat left 20px top/60px, url("img/employee_cont02_bg02.png") no-repeat right -30px bottom/120px;
    position: absolute;
    top: -30px;
    left: -30px;
    margin: auto;
    pointer-events: none;
  }
  /* .gap-job
  ------------------------------------------------------------------------*/
  /* .gap-job .key
  ------------------------------------------*/
  .gap-job .key {
    background-image: url("img/gap-job_key_bg01_sp.png");
  }
  .gap-job .key .tit::after {
    background-image: url("img/gap-job_key_txt01.png");
  }
  /*	.gap-job .cont01
  ------------------------------------------*/
  .gap-job .cont01 .box01 .txt span {
    color: #f1b01a;
  }
  .gap-job .cont01 .box02 {
    border-color: #f1b01a;
  }
  .gap-job .cont01 .box02::after {
    content: "";
    display: block;
    width: 90px;
    height: 90px;
    background: url("img/gap-job_cont01_bg01.png") no-repeat center/contain;
    position: absolute;
    right: -20px;
    bottom: -40px;
    pointer-events: none;
  }
  .gap-job .cont01 .list li {
    background-image: url("img/common_ico_check02.png");
  }
  /* .gap-job .cont02
  ------------------------------------------*/
  .gap-job .cont02 {
    padding: 80px 0;
    background: #f9faf3 url("img/common_logo03_sp.png") no-repeat right -250px center;
  }
  .gap-job .cont02 h2 {
    margin-bottom: 100px;
    background-image: url("img/gap-job_cont02_txt01.png");
    position: relative;
  }
  .gap-job .cont02 h2::before {
    content: "";
    display: block;
    width: calc(100% + 60px);
    height: 130px;
    background: url("img/gap-job_cont02_bg01.png") no-repeat left 20px top/60px, url("img/gap-job_cont02_bg02.png") no-repeat right 20px bottom/70px;
    position: absolute;
    top: -30px;
    left: -30px;
    margin: auto;
    pointer-events: none;
  }
  .gap-job .cont02 h2::after {
    background: #f1b01a;
  }
  .gap-job .cont02 .list .item {
    width: 320px;
    height: 320px;
    margin: 0 auto;
    padding: 105px 30px 30px;
    border-radius: 50%;
    border: 4px dotted #f1b01a;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .gap-job .cont02 .list .item::after {
    content: "";
    display: block;
    width: 65px;
    height: 65px;
    background: no-repeat center/contain;
    position: absolute;
    top: 10px;
    right: 10px;
    filter: drop-shadow(5px 5px 3px rgba(249, 250, 243, 0.5)) drop-shadow(-5px 5px 3px rgba(249, 250, 243, 0.5)) drop-shadow(5px -5px 3px rgba(249, 250, 243, 0.5)) drop-shadow(-5px -5px 3px rgba(249, 250, 243, 0.5)) drop-shadow(5px 0 3px rgba(249, 250, 243, 0.5)) drop-shadow(0 5px 3px rgba(249, 250, 243, 0.5)) drop-shadow(-5px 0 3px rgba(249, 250, 243, 0.5)) drop-shadow(0 -5px 3px rgba(249, 250, 243, 0.5));
    z-index: -1;
  }
  .gap-job .cont02 .list .item + .item {
    margin-top: 60px;
  }
  .gap-job .cont02 .list h3 {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 22px;
  }
  .gap-job .cont02 .list .img {
    position: absolute;
  }
  .gap-job .cont02 .list .item:nth-of-type(1)::after {
    background-image: url("img/gap-job_cont02_num01.png");
  }
  .gap-job .cont02 .list .item:nth-of-type(1) .img {
    width: 180px;
    top: -70px;
    left: -10px;
  }
  .gap-job .cont02 .list .item:nth-of-type(2)::after {
    background-image: url("img/gap-job_cont02_num02.png");
  }
  .gap-job .cont02 .list .item:nth-of-type(2) .img {
    width: 200px;
    top: -30px;
    left: -10px;
  }
  .gap-job .cont02 .list .item:nth-of-type(3)::after {
    background-image: url("img/gap-job_cont02_num03.png");
  }
  .gap-job .cont02 .list .item:nth-of-type(3) .img {
    width: 155px;
    top: -45px;
    left: 10px;
  }
  /* .enterprise
  ------------------------------------------------------------------------*/
  /*	.enterprise .key
  ------------------------------------------*/
  .enterprise .key {
    background-image: url("img/enterprise_key_bg01_sp.png");
  }
  .enterprise .key .tit::after {
    background-image: url("img/enterprise_key_txt01.png");
  }
  /*	.enterprise .cont01
  ------------------------------------------*/
  .enterprise .cont01 {
		margin-bottom: 30px;
		padding: 0 0 80px;
	}
  .enterprise .cont01 h2 {
    margin-bottom: 70px;
    padding: 60px 0 0;
    background: url("img/enterprise_cont01_txt01.png") no-repeat center top/contain;
    text-align: center;
    font-size: 22px;
  }
  .enterprise .cont01 h2 span {
    color: #a5b747;
  }
  .enterprise .cont01 .box + .box {
    margin-top: 130px;
  }
  .enterprise .cont01 .box .txtBox {
    margin-bottom: 30px;
  }
  .enterprise .cont01 .box h3 {
    margin: 0 auto 20px;
    padding: 0 25px 0 0;
    background: no-repeat right top/11px;
    font-size: 24px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
  }
  .enterprise .cont01 .box h3 img {
    display: block;
    width: 40px;
    margin: 0 10px 0 0;
  }
  .enterprise .cont01 .box .txt + .txt {
    margin-top: 15px;
  }
  .enterprise .cont01 .box .img {
    position: relative;
    width: calc(100% + 60px);
    margin-left: -30px;
  }
  .enterprise .cont01 .box .img::after {
    content: "";
    display: block;
    background: no-repeat center/contain;
    position: absolute;
    pointer-events: none;
    right: 15px;
    bottom: -80px;
  }
  .enterprise .cont01 .box .img img {
    width: 100%;
  }
  .enterprise .cont01 .box:nth-of-type(1) h3 {
    background-image: url("img/enterprise_cont01_txt02.png");
  }
  .enterprise .cont01 .box:nth-of-type(1) .img::after {
    width: 150px;
    height: 160px;
    background-image: url("img/enterprise_cont01_bg01.png");
  }
  .enterprise .cont01 .box:nth-of-type(2) h3 {
    background-image: url("img/enterprise_cont01_txt04.png");
  }
  .enterprise .cont01 .box:nth-of-type(2) .img::after {
    width: 170px;
    height: 150px;
    background-image: url("img/enterprise_cont01_bg02.png");
  }
  /*	.enterprise .cont02
  ------------------------------------------*/
  .enterprise .cont02 {
    padding: 80px 0;
		/* background: url("img/enterprise_cont02_bg01.png") no-repeat left top/100px, url("img/enterprise_cont02_bg02.png") no-repeat right top 30px/100px, url("img/common_logo03_sp.png") no-repeat right -250px center; */
		background: url("img/enterprise_cont02_bg01.png") no-repeat left top/100px, url("img/enterprise_cont02_bg02.png") no-repeat right top 30px/100px, url("img/common_logo03_sp.png") no-repeat right -250px bottom -80px;
  }
  .enterprise .cont02 h2 {
    margin-bottom: 30px;
    background-image: url("img/enterprise_cont02_txt01.png");
  }
  .enterprise .cont02 .lead {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    line-height: 1.55;
  }
  .enterprise .cont02 .txt {
    margin-bottom: 30px;
  }
  /*	.enterprise .cont03
  ------------------------------------------*/
  .enterprise .cont03 {
    padding: 80px 0;
    background: #f9faf3;
    position: relative;
  }
  .enterprise .cont03::after {
    content: "";
    display: block;
    width: 100%;
    height: 250px;
    background: url("img/enterprise_cont03_bg01.png") no-repeat left 10px top/120px, url("img/enterprise_cont03_bg02.png") no-repeat right 10px bottom/75px;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
  }
  .enterprise .cont03 h2 {
    margin-bottom: 80px;
    background-image: url("img/enterprise_cont03_txt01.png");
  }
  .enterprise .cont03 .list li {
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  }
  .enterprise .cont03 .list li + li {
    margin-top: 80px;
  }
  .enterprise .cont03 .list .txtBox {
    padding: 30px 20px;
    box-sizing: border-box;
  }
  .enterprise .cont03 .list h3 {
    margin: 0 -5px 15px;
    font-size: 18px;
    text-align: center;
  }
  .enterprise .cont03 .list .btn {
    width: min(100%, 230px);
    margin: 20px auto 0;
    border-radius: 100px;
  }
  .enterprise .cont03 .list .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 50px;
    border-radius: inherit;
    background: #59684a;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    position: relative;
  }
  .enterprise .cont03 .list .btn a::before {
    content: "";
    display: block;
    width: 20px;
    height: 14px;
    background: url("img/common_ico_mail01.png") no-repeat center/contain;
  }
  .enterprise .cont03 .list .img {
    order: -1;
    position: relative;
  }
  .enterprise .cont03 .list .img::after {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background: #b5c565 no-repeat center;
    position: absolute;
		top: -30px;
    left: 20px;
    margin: auto;
  }
  .enterprise .cont03 .list .img img {
    width: 100%;
  }
  .enterprise .cont03 .list li:nth-of-type(1) .img::after {
    background-image: url("img/enterprise_cont03_num01.png");
  }
  .enterprise .cont03 .list li:nth-of-type(2) .img::after {
    background-image: url("img/enterprise_cont03_num02.png");
  }
  .enterprise .cont03 .list li:nth-of-type(3) .img::after {
    background-image: url("img/enterprise_cont03_num03.png");
  }
  .enterprise .cont03 .publish {
    margin: 60px auto 0;
    padding: 30px 20px;
    border: 1px solid #b5c565;
    box-sizing: border-box;
    position: relative;
  }
  .enterprise .cont03 .publish::after {
    content: "";
    display: block;
    width: 100px;
    height: 110px;
    background: url("img/enterprise_cont03_bg03.png") no-repeat center/contain;
    position: absolute;
    left: -30px;
    bottom: -70px;
    pointer-events: none;
  }
  .enterprise .cont03 .publish h3 {
    margin: 50px auto 20px;
    padding: 10px 15px;
    background: #dde4b8;
    font-size: 18px;
    text-align: center;
    position: relative;
  }
  .enterprise .cont03 .publish h3::before, .enterprise .cont03 .publish h3::after {
    content: "";
    display: block;
    background: no-repeat center/contain;
    position: absolute;
    pointer-events: none;
  }
  .enterprise .cont03 .publish h3::before {
    width: max(100%, 300px);
    height: 45px;
    background-image: url("img/enterprise_cont03_txt02.png");
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
  }
  .enterprise .cont03 .publish h3::after {
    width: 25px;
    height: 25px;
    background-image: url("img/common_ico_chon01.png");
    top: -20px;
    left: -25px;
  }
  .enterprise .cont03 .publish h3 span {
    font-size: 14px;
  }
  .enterprise .cont03 .publish-content {
    padding: 20px;
    background: #fff;
  }
  .enterprise .cont03 .publish__txt {
    margin-bottom: 30px;
  }
  /*	.enterprise .cont04
  ------------------------------------------*/
  .enterprise .cont04 {
    padding: 80px 0;
    background: url("img/common_logo03_sp.png") no-repeat right -250px top -200px;
  }
  .enterprise .cont04 h2 {
    margin: 0 -10px 60px;
    padding: 40px 0 0;
    background: url("img/enterprise_cont04_txt01.png") no-repeat center top;
    font-size: 22px;
    text-align: center;
    line-height: 1.6;
  }
  .enterprise .cont04 .list .item {
    display: flex;
    flex-direction: column;
    padding: 15px 15px 20px;
    border: 2px solid #59684a;
    position: relative;
  }
  .enterprise .cont04 .list .item + .item {
    margin-top: 60px;
  }
  .enterprise .cont04 .list .item:nth-of-type(2) {
    border-color: #008abb;
  }
  .enterprise .cont04 .list .item:nth-of-type(3) {
    border-color: #b5c565;
  }
  .enterprise .cont04 .list .item:nth-of-type(4) {
    border-color: #f1b01a;
  }
  .enterprise .cont04 .list h3 {
    width: 60px;
    position: absolute;
    top: -30px;
    right: 30px;
  }
  .enterprise .cont04 .list .txt {
    order: 2;
    font-weight: bold;
  }
  .enterprise .cont04 .list img {
    order: 1;
    margin-bottom: 20px;
  }
  .enterprise .cont04 .list img img {
    width: 100%;
  }
  /* .info (.info-archive, .info-single)
	------------------------------------------------------------------------*/
	/* .info .key (.info-archive, .info-single 共通)
	------------------------------------------*/
	.info .key {
		background-image: url("img/info_key_bg01_sp.png");
	}
	.info .key .tit::after {
		background-image: url("img/info_key_txt01.png");
	}
	/*	.info-archive .pankuzu
	------------------------------------------*/
	.info-archive .pankuzu {
		margin-bottom: 0;
		background: #f9faf3;
	}
	/*	.info-archive .cont01
	------------------------------------------*/
	.info-archive .cont01 {
		padding: 60px 0 80px;
		background: #f9faf3;
	}
	.info-archive .cont01 .archive .item {
		box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
		position: relative;
	}
	.info-archive .cont01 .archive .item + .item {
		margin-top: 40px;
	}
	.info-archive .cont01 .archive .message {
		width: calc(100% - 70px);
		padding: 20px;
		background: #f1b01a;
		position: absolute;
		z-index: 3;
		top: 50%;
		right: 0;
		left: 0;
		margin: auto;
		transform: translateY(-50%);
		z-index: 5;
		color: #fff;
		font-size: 26px;
		font-weight: bold;
		line-height: 1.4;
		text-align: center;
	}
	.info-archive .cont01 .archive a {
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
		background: #fff;
		position: relative;
	}
	.info-archive .cont01 .archive a::after {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		/* -webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(5px); */
	}
	.info-archive .cont01 .archive .txtBox {
		padding: 25px 25px 40px;
		position: relative;
	}
	.info-archive .cont01 .archive .txtBox::after {
		content: "";
		display: block;
		width: calc(100% - 50px);
		height: 1px;
		background: #a5b747;
		position: absolute;
		right: 0;
		bottom: 25px;
		left: 0;
		margin: auto;
	}
	.info-archive .cont01 .archive .cat {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 12px;
	}
	.info-archive .cont01 .archive .cat li {
		margin: 2px 3px 2px 0;
		padding: 2px 4px;
		background: #59684a;
		color: #fff;
		font-weight: bold;
		font-size: 13px;
		line-height: 1.4;
	}
	.info-archive .cont01 .archive .cat li:last-of-type {
		margin-right: 0;
	}
	.info-archive .cont01 .archive .data {
		display: grid;
		grid-template-columns: auto 1fr;
		margin-bottom: 15px;
		gap: 3px 0;
	}
	.info-archive .cont01 .archive .data dt, .info-archive .cont01 .archive .data dd {
		box-sizing: border-box;
		font-weight: bold;
		font-size: 15px;
		line-height: 1.5;
	}
	.info-archive .cont01 .archive .data dt {
		max-width: 100px;
		padding: 0 1.1em 0 0;
		color: #59684a;
		position: relative;
	}
	.info-archive .cont01 .archive .data dt::after {
		content: "：";
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.info-archive .cont01 .archive .tit {
		margin-bottom: 15px;
		padding: 15px 0 0;
		border-top: 1px solid #a5b747;
		font-size: 18px;
	}
	.info-archive .cont01 .archive .tag {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 10px;
	}
	.info-archive .cont01 .archive .tag li {
		margin: 2px 3px 2px 0;
		padding: 2px 8px;
		background: #f2f2f2;
		font-size: 12px;
		line-height: 1.4;
	}
	.info-archive .cont01 .archive .tag li:last-of-type {
		margin-right: 0;
	}
	.info-archive .cont01 .archive .txt {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
	.info-archive .cont01 .archive .img {
		order: -1;
		overflow: hidden;
	}
	.info-archive .cont01 .archive .img img {
		width: 100%;
	}
	.info-archive .cont01 .archive .item.is-new a::before {
		content: "NEW！";
		display: block;
		padding: 2px 10px;
		position: absolute;
		z-index: 2;
		top: 5px;
		left: 5px;
		background: #f1b01a;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.5;
	}
	/*	.info-single .cont01
	------------------------------------------*/
	.info-single .cont01 {
		padding: 0 0 80px;
	}
	/* .info-single .cont02
	------------------------------------------*/
	.info-single .cont02 {
		padding: 80px 0;
		background: #f9faf3 url("img/common_logo03_sp.png") no-repeat right -250px center;
	}
	.info-single .cont02 h2 {
		margin-bottom: 40px;
		background-image: url("img/info-single_cont02_txt01.png");
	}
	/* .info-single .cont03
	------------------------------------------*/
	.info-single .cont03 {
		padding: 80px 0;
		position: relative;
	}
	.info-single .cont03::after {
		content: "";
		display: block;
		width: calc(100% - 60px);
		height: calc(100% - 300px);
		background: #f9faf3;
		position: absolute;
		right: 0;
		bottom: 0;
		z-index: -1;
		pointer-events: none;
	}
	.info-single .cont03 h2 {
		margin-bottom: 40px;
		background-image: url("img/info-single_cont03_txt01.png");
	}
	.info-single .cont03 .box {
		display: flex;
		flex-direction: column;
	}
	.info-single .cont03 .box .catch {
		margin-bottom: 15px;
		color: #59684a;
		font-weight: bold;
		font-size: 18px;
		line-height: 1.8;
	}
	.info-single .cont03 .box .txt + .txt {
		margin-top: 1em;
	}
	.info-single .cont03 .box .img {
		order: -1;
		margin-bottom: 20px;
	}
	.info-single .cont03 .box .img img {
		width: 100%;
	}
	/* .info-single .cont04
	------------------------------------------*/
	.info-single .cont04 {
		padding: 80px 0;
		position: relative;
	}
	.info-single .cont04::after {
		content: "";
		display: block;
		width: calc(100% - 60px);
		height: calc(100% - 300px);
		background: #f9faf3;
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: -1;
		pointer-events: none;
	}
	.info-single .cont04 h2 {
		margin-bottom: 40px;
		background-image: url("img/info-single_cont04_txt01.png");
	}
	.info-single .cont04 .box {
		display: flex;
		flex-direction: column;
	}
	.info-single .cont04 .box .catch {
		margin-bottom: 15px;
		color: #59684a;
		font-weight: bold;
		font-size: 18px;
		line-height: 1.8;
	}
	.info-single .cont04 .box .txt + .txt {
		margin-top: 1em;
	}
	.info-single .cont04 .box .txt .big {
		font-weight: bold;
		font-size: 18px;
	}
	.info-single .cont04 .box .img {
		order: -1;
		margin-bottom: 20px;
	}
	.info-single .cont04 .box .img img {
		width: 100%;
	}
	/* .info-single .cont05
	------------------------------------------*/
	.info-single .cont05 {
		margin-bottom: 80px;
		padding: 80px 0;
		position: relative;
	}
	.info-single .cont05::after {
		content: "";
		display: block;
		width: calc(100% - 60px);
		height: calc(100% - 300px);
		background: #f9faf3;
		position: absolute;
		right: 0;
		bottom: 0;
		z-index: -1;
		pointer-events: none;
	}
	.info-single .cont05 h2 {
		margin-bottom: 40px;
		background-image: url("img/info-single_cont05_txt01.png");
	}
	.info-single .cont05 .box {
		display: flex;
		flex-direction: column;
	}
	.info-single .cont05 .box table {
		width: 100%;
		table-layout: fixed;
		border-top: 1px solid #eef0ed;
	}
	.info-single .cont05 .box table tr {
		border-bottom: 1px solid #eef0ed;
	}
	.info-single .cont05 .box table th, .info-single .cont05 .box table td {
		padding: 10px 0;
		box-sizing: border-box;
		text-align: left;
	}
	.info-single .cont05 .box table th {
		width: 100px;
		color: #59684a;
		font-weight: bold;
		font-size: 16px;
	}
	.info-single .cont05 .box table td {
		padding-left: 10px;
	}
	.info-single .cont05 .box .img {
		order: -1;
		margin-bottom: 20px;
	}
	.info-single .cont05 .box .img img {
		width: 100%;
	}
	/* .info-single .cont06
	------------------------------------------*/
	.info-single .cont06 {
		padding: 80px 0;
		background: #f9faf3 url("img/common_logo03_sp.png") no-repeat left -250px center;
	}
	.info-single .cont06 h2 {
		margin-bottom: 40px;
		background-image: url("img/info-single_cont06_txt01.png");
	}
	/*	.info-single .cont07 ( RECRUIT )
	------------------------------------------*/
	.info-single .cont07 {
    display: none;
  }
  /* 有料 */
	.info-single.paid .cont07 {
    display: block;
  }
	.info-single .cont07 h2::before {
		content: none;
	}
	/*	.info-single .cont08
	------------------------------------------*/
	.info-single .cont08 {
		padding: 80px 0;
		position: relative;
    z-index: 1;
	}
	.info-single .cont08::after {
		content: "";
		display: block;
		width: 100%;
		height: 150px;
		background: url("img/info-single_cont08_bg01.png") no-repeat left 10px top 15px/100px, url("img/info-single_cont08_bg02.png") no-repeat right 10px top/110px;
		position: absolute;
		top: -30px;
		left: 0;
		z-index: -1;
		pointer-events: none;
	}
	.info-single .cont08 h2 {
		margin-bottom: 30px;
		padding: 60px 0 0;
		background: url("img/info-single_cont08_txt01.png") no-repeat center top/auto 50px;
		color: #59684a;
		font-size: 20px;
		text-align: center;
		line-height: 1.8;
	}
	.info-single .cont08 .txt {
		font-weight: bold;
		font-size: 16px;
	}
  /* .jobposting
  ------------------------------------------------------------------------*/
  /* .jobposting .key
  ------------------------------------------*/
  .jobposting .key {
    background-image: url("img/jobposting_key_bg01_sp.png");
  }
  .jobposting .key .tit::after {
    background-image: url("img/jobposting_key_txt01.png");
  }
  /* .jobposting .cont01
  ------------------------------------------*/
  .jobposting .cont01 {
    padding: 0 0 80px;
  }
  .jobposting .cont01 .headBox {
    margin-bottom: 25px;
  }
  .jobposting .cont01 .headBox .cat {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
  }
  .jobposting .cont01 .headBox .cat li {
    margin: 2px 3px 2px 0;
    padding: 2px 4px;
    background: #59684a;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.4;
  }
  .jobposting .cont01 .headBox .cat li:last-of-type {
    margin-right: 0;
  }
  .jobposting .cont01 .headBox h2 {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid;
    color: #59684a;
    font-size: 22px;
  }
  .jobposting .cont01 .headBox .txt {
    font-weight: bold;
    font-size: 16px;
  }
  .jobposting .cont01 .contentBox {
    display: flex;
    flex-direction: column;
  }
  .jobposting .cont01 .contentBox .txtBox {
    padding: 20px 0 0;
    border-top: 2px solid #a5b747;
  }
  .jobposting .cont01 .contentBox .data {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 15px;
    gap: 3px 0;
  }
  .jobposting .cont01 .contentBox .data dt, .jobposting .cont01 .contentBox .data dd {
    box-sizing: border-box;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5;
  }
  .jobposting .cont01 .contentBox .data dt {
    max-width: 100px;
    padding: 0 1.1em 0 0;
    color: #59684a;
    position: relative;
  }
  .jobposting .cont01 .contentBox .data dt::after {
    content: "：";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .jobposting .cont01 .contentBox .txt {
    padding-bottom: 20px;
    border-bottom: 2px solid #a5b747;
  }
  .jobposting .cont01 .contentBox .tag {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .jobposting .cont01 .contentBox .tag li {
    margin: 2px 3px 2px 0;
    padding: 2px 8px;
    background: #f2f2f2;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.4;
  }
  .jobposting .cont01 .contentBox .tag li:last-of-type {
    margin-right: 0;
  }
  .jobposting .cont01 .contentBox .img {
    order: -1;
    margin-bottom: 30px;
  }
  .jobposting .cont01 .contentBox .img img {
    width: 100%;
  }
  /* .jobposting .cont02
  ------------------------------------------*/
  .jobposting .cont02 {
    padding: 80px 0;
    background: #f9faf3 url("img/common_logo03_sp.png") no-repeat right -250px center;
  }
  .jobposting .cont02 h2 {
    margin-bottom: 40px;
    background-image: url("img/jobposting_cont02_txt01.png");
  }
  /* .jobposting .cont03
  ------------------------------------------*/
  .jobposting .cont03 {
    padding: 80px 0 30px;
    position: relative;
    z-index: 2;
  }
  .jobposting .cont03::after {
    content: "";
    display: block;
    width: 100%;
    height: 90px;
    background: url("img/jobposting_cont03_bg01.png") no-repeat 10px center/contain;
    position: absolute;
    top: -30px;
    left: 0;
    z-index: -1;
    pointer-events: none;
  }
  .jobposting .cont03 h2 {
    margin-bottom: 40px;
    background-image: url("img/jobposting_cont03_txt01.png");
  }
  /* .jobposting .cont04
  ------------------------------------------*/
  .jobposting .cont04 {
    padding: 80px 0;
    position: relative;
    z-index: 2;
  }
  .jobposting .cont04::after {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background: url("img/jobposting_cont04_bg01.png") no-repeat right 60px center/contain;
    position: absolute;
    top: 55px;
    left: 0;
    z-index: -1;
    pointer-events: none;
  }
  .jobposting .cont04 h2 {
    margin-bottom: 40px;
    background-image: url("img/jobposting_cont04_txt01.png");
  }
  /* .jobposting .cont05
  ------------------------------------------*/
  .jobposting .cont05 {
    padding: 80px 0;
    background: #f9faf3 url("img/common_logo03_sp.png") no-repeat left -250px center;
  }
  .jobposting .cont05 h2 {
    margin-bottom: 40px;
    background-image: url("img/jobposting_cont05_txt01.png");
  }
  /* .entry
  ------------------------------------------------------------------------*/
  /* .entry .key
  ------------------------------------------*/
  .entry .key {
    background-image: url("img/entry_key_bg01_sp.png");
  }
  .entry .key .tit::after {
    background-image: url("img/entry_key_txt01.png");
  }
  /*	.entry .pankuzu
  ------------------------------------------*/
  .entry .pankuzu {
    margin-bottom: 0;
    background: #f9faf3;
  }
  /*	.entry .cont01
  ------------------------------------------*/
  .entry .cont01 {
    padding: 60px 0 80px;
    background: url("img/common_logo03_sp.png") no-repeat left -250px top 100px, url("img/common_logo03_sp.png") no-repeat right -250px bottom -100px #f9faf3;
  }
  .entry .cont01 h2 {
    margin-bottom: 50px;
    text-align: center;
  }
  .entry .cont01 .test01 {
    text-align: center;
  }
  .entry .cont01 h2 img {
    width: 240px;
  }
  /* .cvBox */
  .entry .cont01 .cvBox {
    margin-bottom: 100px;
    padding: 0 20px;
    box-sizing: border-box;
    background: #fff;
    position: relative;
  }
  .entry .cont01 .cvBox::after {
    content: "";
    display: block;
    width: 91px;
    height: 134px;
    background: url("img/entry_cont01_bg01.png") no-repeat center/contain;
    position: absolute;
    left: -30px;
    bottom: -50px;
    pointer-events: none;
  }
  .entry .cont01 .cvBox .item {
    padding: 40px 0;
    text-align: center;
  }
  .entry .cont01 .cvBox .item + .item {
    border-top: 1px solid #d1dba0;
  }
  .entry .cont01 .cvBox h3 {
    margin-bottom: 30px;
    font-size: 18px;
  }
  .entry .cont01 .cvBox h3::before {
    content: "";
    display: inline-block;
    margin-right: 8px;
    width: 0.8em;
    height: 0.8em;
    background: #a5b747;
  }
  .entry .cont01 .cvBox .tel a {
    display: block;
    margin: 0 auto;
  }
  .entry .cont01 .cvBox .tel .time {
    display: block;
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.6;
  }
  .entry .cont01 .cvBox .line {
    font-size: 18px;
  }
  .entry .cont01 .cvBox .line::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 38px;
    margin: 0 10px -12px 0;
    background: url("img/common_ico_line02.png") no-repeat center/contain;
  }
  .entry .cont01 .cvBox .line .qr {
    display: block;
    margin: 15px auto 0;
  }
  .entry .cont01 .cvBox .mail {
    font-size: 16px;
  }
  .entry .cont01 .cvBox .mail a {
    position: relative;
    display: block;
    padding: 0 0 60px;
    font-weight: bold;
    line-height: 1.5;
  }
  .entry .cont01 .cvBox .mail a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #59684a url("img/common_ico_arrow03.png") no-repeat center;
  }
  /* .entryform */
  .entry .cont01 .entryform {
    position: relative;
    z-index: 10;
  }
  .entry .cont01 .entryform::before, .entry .cont01 .entryform::after {
    content: "";
    display: block;
    background: no-repeat center/contain;
    position: absolute;
    pointer-events: none;
  }
  .entry .cont01 .entryform::before {
    width: 140px;
    height: 90px;
    background-image: url("img/entry_cont01_bg02.png");
    z-index: -1;
    top: -50px;
    right: -20px;
  }
  .entry .cont01 .entryform::after {
    width: 130px;
    height: 90px;
    background-image: url("img/entry_cont01_bg03.png");
    bottom: -60px;
    right: -20px;
  }
  .entry .cont01 .entryform h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .entry .cont01 .entryform h3::before {
    content: "";
    display: inline-block;
    margin-right: 8px;
    width: 0.8em;
    height: 0.8em;
    background: #a5b747;
  }
  .entry .cont01 .entryform .note {
    font-size: 12px;
  }
  .entry .cont01 .formBox {
    margin: 40px auto 0;
    padding: 20px 20px 40px;
    background: #fff;
  }
  .entry .cont01 .formBox table {
    width: 100%;
    table-layout: fixed;
    position: relative;
    z-index: 10;
  }
  .entry .cont01 .formBox tr {
    border-bottom: 1px solid #c4d184;
  }
  .entry .cont01 .formBox th, .entry .cont01 .formBox td {
    display: block;
    width: 100%;
    padding: 15px 0;
    box-sizing: border-box;
    font-size: 16px;
    text-align: left;
    vertical-align: middle;
  }
  .entry .cont01 .formBox th {
    padding-bottom: 0;
    font-weight: bold;
  }
  .entry .cont01 .formBox th .required {
    margin: 0 0 0 15px;
    padding: 4px 10px;
    background: #59684a;
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
  }
  .entry .cont01 .formBox td .select-box select {
    padding-left: 30px;
    padding-right: 30px !important;
    background: #f7f9ef;
    border: none;
    height: 60px;
    width: 100%;
    font-size: 16px;
  }
  .entry .cont01 .formBox td .select-box select:focus {
    outline: none;
    box-shadow: 0 0 5px #ccc; /* 例: シャドウでフォーカスを示す */
}
  .entry .cont01 .formBox td input[type="text"],
  .entry .cont01 .formBox td input[type="tel"],
  .entry .cont01 .formBox td input[type="email"],
  .entry .cont01 .formBox td textarea {
    padding: 30px;
    box-sizing: border-box;
    background: #f7f9ef;
    border: none !important;
    height: 60px;
    width: 100%;
    font-size: 15px;
  }
  .entry .cont01 .formBox td input.p-postal-code {
    margin-right: 20px;
    width: 150px;
  }
  .entry .cont01 .formBox td input.p-region {
    width: 150px;
  }
  .entry .cont01 .formBox td.add span {
    margin: 5px 0 20px 30px;
    display: block;
  }
  .entry .cont01 .formBox td textarea {
    height: 250px!important;
    width: 100%!important;
  }
  /* privacy */
  .entry .cont01 .privacy_check{
    text-align: center;
    padding: 50px 0 20px;
    font-size: 16px;
  }
  .entry .cont01 .privacy_check a {
    text-decoration: underline;
  }
  .entry .cont01 .privacy_check div.mfp_err {
    text-align: center;
    background: url(img/mfp_error.gif) no-repeat top 7px left 30px;
  }
  .entry .cont01 .privacy_check input {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin: 0 5px !important;
  }
  .entry .cont01 .privacy_check label {
    margin: 0 5px !important;
  }
  .entry .cont01 .button{
    text-align: center;
  }
  .entry .cont01 .button input[type="submit"] {
    font-family: var(--main-font) !important;
    width: 360px;
    border-radius: 60px;
    line-height: 1;
    padding: 20px 0;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
    margin: auto;
    border: none;
    display: block;
    color: #fff;
    background: #59684a;
  }
  

/* temple
------------------------------------------------------------------------*/
.temple header .inner {
  padding: 0;
}
.temple .pankuzu {
  padding: 20px 15px 30px;
}
.temple .key {
  width: 100%;
  height: 150px;
  background: #f7f9ef;
  padding-top: 60px;
  margin-top: 65px;
  box-sizing: border-box;
}
.temple .key .ttl {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 20px;
  position: relative;
  line-height: 1;
}
.temple .key .ttl::before {
  content: "";
  width: 10px;
  height: 3px;
  background: #59684a;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}


/* faq
------------------------------------------------------------------------*/
.faq .cont01 {
  box-sizing: border-box;
  padding: 0 30px 80px;
}
.faq .cont01 .box {
  padding: 20px 30px;
  border-top: 1px solid #ededed;
  position: relative;
}
.faq .cont01 .box span {
  position: absolute;
  top: 23px;
  right: 0;
  width: 20px;
  height: 20px;
  background: #333333;
  border-radius: 50%;
  transition: all .3s;
}
.faq .cont01 .box.active span {
  background: #bbbbbb;
  transition: all .3s;
}
.faq .cont01 .box span::before {
    content: "";
    width: 8px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq .cont01 .box span::after {
    content: "";
    width: 3px;
    height: 8px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: all .3s;
}
.faq .cont01 .box.active span::after {
    opacity: 0;
    transition: all .3s;
}
.faq .cont01 .box:last-of-type {
  border-bottom: 1px solid #ededed;
}
.faq .cont01 .box p {
  position: relative;
}
.faq .cont01 .box .qus::before {
    content: 'Q';
    font-size: 18px;
    font-weight: bold;
    color: #59684a;
    position: absolute;
    top: -2px;
    left: -30px;
}
.faq .cont01 .box .qus {
  font-size: 16px;
  font-weight: bold;
}
.faq .cont01 .box.active .qus {
  color: #bbbbbb;
}
.faq .cont01 .box .ans {
  padding-top: 15px;
  display: none;
}


/* company
------------------------------------------------------------------------*/
/* company 共通 */
.company h2 {
  font-size: 22px;
  text-align: center;
  padding-bottom: 25px;
  font-weight: bold;
  position: relative;
}
.company h2::before {
  content: '';
  font-size: 12px;
  font-weight: bold;
  color: #59684a;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.company .cont01 h2::before {
  content: "OUTLINE";
}
.company .cont02 h2::before {
  content: "Specified Commercial Transaction Law";
}
.company .cont03 h2::before {
  content: "GREETING";
}
.company table {
  width: 100%;
  text-align: left;
  margin: 40px auto 0;
  font-size: 14px;
}
.company table tr {
  border-top: 1px solid #ededed;
  padding: 20px;
  display: block;
}
.company table tr:last-of-type {
  border-bottom: 1px solid #ededed;
}
.company table th {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}
.company table td {
  display: block;
}

/* cont01 */
.company .cont01 {
  margin-top: 60px;
}
.company .cont01 .inner {
  padding: 0 15px;
}

/* cont02 */
.company .cont02 {
  margin-top: 60px;
  padding: 60px 0 80px;
  background: #f7f9ef;
}
.company .cont02 .inner {
  padding: 0 15px;
}
.company .cont02 table tr {
  border-top: 1px solid #ededed;
}
.company .cont02 table tr:last-of-type {
  border-bottom: 1px solid #ededed;
}

/* cont03 */
.company .cont03 {
  padding: 30px 15px 0;
}
.company .cont03 .flex {
  margin-top: 20px;
}
.company .cont03 .flex .text_box {
  padding-top: 20px;
}
.company .cont03 .flex .text_box .text02 {
  text-align: right;
  font-size: 18px;
  margin-top: 15px;
  font-weight: bold;
}
.company .cont03 .flex .text_box .text02 span {
  font-size: 14px;
  font-weight: bold;
}
.company .cont03 .flex .img img {
  width: 100%;
  border-radius: 10px;
}


/*blog 共通項目
--------------------------------------------------------------------------*/
.blog .flex .side {
  width: 100%;
  box-sizing: border-box;
  margin: 70px auto 0;
  padding: 0 15px;
}
.blog .flex .side .cont {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  margin-top: 20px;
}
.blog .flex .side .side_box02 {
  margin: 70px 0 80px;
}
.blog .flex .side .ttl {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #ededed;
  position: relative;
}
.blog .flex .side .ttl::before {
    content: "";
    color: #59684a;
    font-size: 14px;
    position: absolute;
    top: 7px;
    left: 100px;
}
.blog .flex .side .side_box01 .ttl::before {
    content: "Popular Articles";
}
.blog .flex .side .side_box02 .ttl::before {
    content: "New Articles";
}
.blog .flex .side .side_box03 .ttl::before {
    content: "Category";
    left: 110px;
}
.blog .flex .side .cont .text_box {
  padding-left: 15px;
  font-size: 14px;
}
.blog .flex .side .cont .text_box h2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 10px;
}
.blog .flex .side .cont .img {
  width: 150px;
  flex-shrink: 0;
}
.blog .flex .side .cont .img img {
  max-width: 100%;
  border-radius: 5px;
}
.blog .flex .side .side_box01 .cont .img {
  position: relative;
}
.blog .flex .side .side_box01 .cont .img::before {
    content: "";
    width: 25px;
    height: 25px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #59684a;
    line-height: 25px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
.blog .flex .side .side_box01 .cont:nth-of-type(1) .img::before {
    content: "1";
    background: #f2cd44;
}
.blog .flex .side .side_box01 .cont:nth-of-type(2) .img::before {
    content: "2";
    background: #ababab;
}
.blog .flex .side .side_box01 .cont:nth-of-type(3) .img::before {
    content: "3";
    background: #bc6c25;
}
.blog .flex .side .side_box01 .cont:nth-of-type(4) .img::before {
    content: "4";
}
.blog .flex .side .side_box01 .cont:nth-of-type(5) .img::before {
    content: "5";
}
.blog .flex .side .side_box02 .cont .img {
  position: relative;
}
.blog .flex .side .side_box02 .cont .img::before {
    content: "new";
    width: 50px;
    height: 25px;
    line-height: 1;
    font-size: 14px;
    box-sizing: border-box;
    padding-top: 5px;
    color: #fff;
    background: #59684a;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
.blog .flex .side .side_box03 ul {
  margin-top: 15px;
}
.blog .flex .side .side_box03 ul li {
  position: relative;
  padding-left: 32px;
}
.blog .flex .side .side_box03 ul li:nth-of-type(n+2) {
  margin-top: 15px;
}
.blog .flex .side .side_box03 ul li::before {
    content: '';
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: url(img/category_icon.png) no-repeat top 7px left 7px #59684a;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}


/* blog-archive
------------------------------------------------------------------------*/
.blog .cont01 {
  padding: 40px 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
.blog .cont01 .cont {
  display: flex;
  flex-direction: column-reverse;
  width: 195px;
}
.blog .cont01 .cont h2 {
  font-size: 16px;
  margin-top: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.blog .cont01 .cont .text_box .cate-box .cate {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background: #59684a;
  border-radius: 5px;
  min-width: 100px;
  padding: 7px 15px;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
  margin: 10px 0;
}
.blog .cont01 .cont .text {
  margin-top: 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.blog .cont01 .cont .img img {
  border-radius: 5px;
}

/* pager */
.blog .pager{
  width: 100%;
  margin: 30px auto 0;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 15px;
}
.blog .pager .page-numbers{
  border: 2px solid #59684a;
  background: #fff;
  color: #59684a;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
}
.blog .pager .page-numbers.current {
  border: none;
  background: #59684a;
  color: #fff;
  box-sizing: border-box;
}
.blog .pager .page-numbers.prev,
.blog .pager .page-numbers.next{
  border: 2px solid #59684a;
  background: #fff;
  color: #59684a;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  padding-top: 3px;
}
.blog .pager .page-numbers.next {
  padding-left: 3px;
}


/*blog_single
------------------------------------------------------------------------*/
/* 目次css */
.blog_single .index_nav {
  box-sizing: border-box;
  padding: 30px 20px;
  border: none;
  margin: 15px 0 35px;
  background: var(--main-light-color);
  border-radius: 10px;
}
.blog_single .index_nav .title {
  font-weight: bold;
  position: relative;
  padding: 0 !important;
  padding-left: 35px !important;
  font-size: 18px;
  line-height: 1.5;
}
.blog_single .index_nav .title::before {
    content: '';
    width: 20px;
    height: 18px;
    background: url(img/index_icon.png) no-repeat center / 100%;
    position: absolute;
    top: 4px;
    left: 0;
}
.blog_single .index_nav {
  position: static;
}
.blog_single .index_nav ul {
  margin: 20px 0 0 0;
  padding: 0;
}
.blog_single .index_nav ul li.index_level03 {
  margin-left: 20px;
}
.blog_single .index_nav ul li.index_level04 {
  margin-left: 30px;
}
.blog_single .index_nav ul li.index_level05 {
  margin-left: 40px;
}
.blog_single .index_nav ul li {
  display: block;
  text-align: left;
  margin-top: 20px;
}
.blog_single .index_nav ul li.index_level03,
.blog_single .index_nav ul li.index_level04,
.blog_single .index_nav ul li.index_level05 {
  margin-top: 15px;
}
.blog_single .index_nav ul li a {
  font-size: 18px;
  font-weight: normal;
  text-decoration: none;
}
.blog_single .index_nav ul li.index_level03 a,
.blog_single .index_nav ul li.index_level04 a,
.blog_single .index_nav ul li.index_level05 a {
  font-size: 16px;
}
.blog_single .index_nav ul li::before {
  display: none;
}

/* ブログ詳細 css */
.blog_single .cont01 {
  display: block;
}
.blog_single .cont01 .img img {
  border-radius: 10px;
}
.blog_single .cont01 p.head{
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 15px;
  font-weight: bold;
}
.blog_single .cont01 p.head::before{
    display: none;
}
.blog_single .cont01 p.head::after{
    display: none;
}
.blog_single .cont01 h2{
  margin: 40px 0 20px;
  padding: 0 0 0 35px;
  font-size: 16px;
  position: relative;
}
.blog_single .cont01 h2:before{
    content: "";
    display: block;
    width:14px;
    height: 14px;
    border:1px solid var(--main-color);
    background: #fff;
    position: absolute;
    top:0;
    left:0;
}
.blog_single .cont01 h2:after{
    content: "";
    display: block;
    width:14px;
    height: 14px;
    border:1px solid var(--main-color);
    background: var(--main-color);
    position: absolute;
    top:10px;
    left:10px;
}
.blog_single .cont01 h3,
.blog_single .cont01 h4,
.blog_single .cont01 h5{
  font-size: 16px;
  border-left: 4px solid var(--main-color);
  margin: 30px 0 15px;
  padding: 0 0 0 15px;
}
.blog_single .cont01 p{
  margin: 0 0 20px;
}
.blog_single .cont01 .cate-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}
.blog_single .cont01 .cate-box .cate {
  line-height: 1;
  font-size: 12px;
  color: #fff;
  text-align: center;
  min-width: 100px;
  padding: 7px 15px;
  border-radius: 5px;
  background: var(--main-color);
  box-sizing: border-box;
  margin: 0;
}
.blog_single .cont01 .cate-box .date{
  font-size: 14px;
  line-height: 1;
  margin: 0;
  font-weight: bold;
}
.blog_single .cont01 .wp-block-image{
  margin: 0 0 35px;
}
.blog_single .cont01 .wp-block-image img{
  max-width: 100%;
  border-radius: 10px;
}
.aligncenter,
.has-text-align-center{
  text-align: center;
}
.alignleft,
.has-text-align-left{
  text-align: left;
}
.alignright,
.has-text-align-right{
  text-align: right;
}

.blog_single .pager{
  padding: 0;
  margin: 60px 0 0;
  gap: 20px 0;
}
.blog_single .pager-box {
  width: 100%;
}
.blog_single .pager-box.prev-pager-box {
  margin-left: 10px;
}
.blog_single .pager-box.next-pager-box {
  margin-right: 10px;
}
.blog_single .pager-box a {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  text-align: left;
  font-size: 14px;
  position: relative;
  justify-content: flex-end;
}
.blog_single .pager-box.prev-pager-box a {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.blog_single .pager-box.prev-pager-box a::before {
    content: "";
    width: 25px;
    height: 25px;
    background: var(--main-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}
.blog_single .pager-box.prev-pager-box a::after {
    content: "";
    width: 0;
    height: 0;
    border-right: 6px solid #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
}
.blog_single .pager-box.next-pager-box a::before {
    content: "";
    width: 25px;
    height: 25px;
    background: var(--main-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}
.blog_single .pager-box.next-pager-box a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    position: absolute;
    top: 50%;
    right: -2px;
    transform: translateY(-50%);
}
.blog_single .pager-box.prev-pager-box a .text-box {
  padding-left: 20px;
}
.blog_single .pager-box.next-pager-box a .text-box {
  padding-right: 20px;
}
.blog_single .pager-box a p {
  margin: 0 !important;
  line-height: 1.5 !important;
}
.blog_single .pager-box a .ttl {
  font-weight: bold;
  margin-bottom: 10px !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.blog_single .pager-box a .img {
  flex-shrink: 0;
}
.blog_single .pager-box a .img img {
  width: 150px !important;
  border-radius: 5px !important;
}


/* contact
------------------------------------------------------------------------*/
/* cont01 */
.contact .cont01 {
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
  margin: 40px auto 0;
}
.contact .cont01 .tel-box,
.contact .cont01 .line-box {
  padding: 30px 0 25px;
  border-top: 1px solid #ededed;
}
.contact .cont01 .line-box {
  border-bottom: 1px solid #ededed;
}
.contact .cont01 h2{
  font-size: 16px;
}
.contact .cont01 .tel-box h2::before {
    content: '■';
    color: #59684a;
    padding-right: 5px;
}
.contact .cont01 .line-box h2::before {
    content: '■';
    color: #00b12b;
    padding-right: 5px;
}
.contact .cont01 .tel-box p {
  margin-top: 5px;
  line-height: 1.5;
}
.contact .cont01 .tel-box a {
  display: inline-block;
  font-size: 30px;
}
.contact .cont01 .line-box p {
  margin-top: 20px;
}
.contact .cont01 .line-box a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 15px 30px 15px 70px;
  border-radius: 30px;
  background: url(img/contact-line_sp.png) no-repeat center left 30px #00b12b;
}

/* cont02 */
.contact .cont02 {
  margin: 30px auto 0;
  padding: 0 30px 70px;
}
.contact .cont02 h2{
  font-size: 16px;
}
.contact .cont02 h2::before {
    content: '■';
    color: #59684a;
    padding-right: 5px;
}
.contact .cont02 .lead {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.8;
}
.contact .cont02 .lead li:nth-of-type(n+2) {
  margin-top: 10px;
}
.contact .cont02 table{
  width:100%;
  margin: 20px auto 0;
  font-size: 14px;
}
.contact .cont02 table tr {
  display: block;
  padding: 20px 0;
  border-top: 1px solid #ededed;
}
.contact .cont02 table tr:last-of-type {
  border-bottom: 1px solid #ededed;
}
.contact .cont02 table tr:first-of-type {
  border-top: none;
}
.contact .cont02 table th{
  display: block;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  margin-bottom: 15px;
}
.contact .cont02 table th span{
  color: #fff;
  background: #59684a;
  border-radius: 5px;
  padding: 7px 15px;
  font-size: 12px;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.contact .cont02 table td{
  display: block;
}
.contact .cont02 table td .radio-box {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.contact .cont02 table td .radio-box span {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.contact .cont02 table td .radio-box span input {
  margin: 0 !important;
}
.contact .cont02 table td input[type="text"],
.contact .cont02 table td input[type="email"],
.contact .cont02 table td input[type="tel"],
.contact .cont02 table td select,
.contact .cont02 table td textarea{
  width:100% !important;
  height: 60px !important;
  font-size:16px;
  font: inherit;
  padding: 5px;
  box-sizing: border-box;
  padding: 20px;
  border: none !important;
  background: #ededed;
  border-radius: 5px !important;
}
.contact .cont02 table td textarea{
  height: 250px !important;
}
.contact .cont02 tr.address-contact td {
  position: relative;
  padding-top: 30px;
}
.contact .cont02 tr.address-contact td span {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
}
.contact .cont02 tr.address-contact input:first-of-type {
  width: 160px !important;
  margin-right: 5px;
}
.contact .cont02 tr.address-contact input:nth-of-type(2) {
  width: 230px !important;
}
.contact .cont02 tr.address-contact input:last-of-type {
  margin-top: 10px !important;
}
.contact .cont02 .privacy_check{
  text-align: center;
  padding: 50px 0 20px;
  font-size: 16px;
}
.contact .cont02 .privacy_check a {
  text-decoration: underline;
}
.contact .cont02 .privacy_check div.mfp_err {
  text-align: center;
  background: url(img/mfp_error.gif) no-repeat top 7px left 30px;
}
.contact .cont02 .privacy_check input {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  margin: 0 5px !important;
}
.contact .cont02 .privacy_check label {
  margin: 0 5px !important;
}
.contact .cont02 .button{
  text-align: center;
}
.contact .cont02 .button input[type="submit"] {
  font-family: var(--main-font) !important;
  width: 360px;
  border-radius: 60px;
  line-height: 1;
  padding: 20px 0;
  font-size: 16px;
  box-sizing: border-box;
  cursor: pointer;
  margin: auto;
  border: none;
  display: block;
  color: #fff;
  background: #59684a;
}


/* thanks
------------------------------------------------------------------------*/
.thanks .cont01{
  text-align: center;
}
.thanks .cont01 h2{
  text-align: center;
  font-size: 18px;
}
.thanks .cont01 .text{
  margin: 30px 0 0;
  font-weight: bold;
}
.thanks .cont01 .button {
  margin: 40px 0 80px;
}
.thanks .cont01 .button a{
  width: 280px;
  border-radius: 60px;
  line-height: 1;
  padding: 20px 0;
  font-size: 16px;
  box-sizing: border-box;
  cursor: pointer;
  margin: auto;
  border: none;
  display: block;
  color: #fff;
  background: #59684a;
}


/* privacy
------------------------------------------------------------------------*/
.privacy .cont01 {
  padding: 0 30px;
}
.privacy .cont01 h2 {
  font-size: 24px;
  text-align: center;
}
.privacy .cont01 .text01 {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
}
.privacy .cont01 .box {
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #59684a;
}
.privacy .cont01 .box:first-of-type {
  margin-top: 30px;
}
.privacy .cont01 .box:last-of-type {
  padding-bottom: 50px;
  border-bottom: none;
}
.privacy .cont01 .box h3 {
  font-size: 18px;
}
.privacy .cont01 .box .text02 {
  line-height: 2;
  margin-top: 10px;
  font-size: 14px;
}
.privacy .cont01 .box .text02 a {
  text-decoration: underline;
}
.privacy .cont01 .box ul {
  margin-top: 15px;
}
.privacy .cont01 .box ul li {
  font-size: 14px;
}
.privacy .cont01 .box ul li:nth-of-type(n+2) {
  margin-top: 10px;
}
.privacy .cont01 .box .text03 {
  line-height: 2;
  display: inline-block;
  padding: 25px;
  background: #eeeeee;
  margin-top: 20px;
  font-size: 14px;
}


/* yonmaru
------------------------------------------------------------------------*/
.yonmaru .cont01{
  padding: 0 0 80px;
  text-align: center;
}
.yonmaru .cont01 h2{
  text-align: center;
  font-size: 20px;
}
.yonmaru .cont01 .text{
  margin: 30px 0 0;
  font-weight: bold;
}
.yonmaru .cont01 .button {
  margin-top: 40px;
}
.yonmaru .cont01 .button a{
  width: 280px;
  border-radius: 60px;
  line-height: 1;
  padding: 20px 0;
  font-size: 16px;
  box-sizing: border-box;
  cursor: pointer;
  margin: auto;
  border: none;
  display: block;
  color: #fff;
  background: #59684a;
}

  /* login
  ------------------------------------------------------------------------*/
  .login .cont01 {
		padding-bottom: 80px;
    text-align: center;
  }
  .login .cont01 .message {
    width: 400px;
    height: 120px;
    padding: 30px 0px;
    background: #f1b01a;
    margin: 50px auto 0;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.9;
    text-align: center;
  }
  .login .cont01 .message a {
    margin-top: 10px;
    font-size: 26px;
    display: block;
    text-decoration: underline;
    color: #fff;
    font-weight: bold;
  }

  /* footer
  ------------------------------------------------------------------------*/
  footer {
    padding: 50px 0 150px;
  }
  footer .inner {
    padding: 0 30px;
  }
  footer .infoBox {
    margin-bottom: 50px;
  }
  footer .infoBox .logo {
    margin-bottom: 20px;
  }
  footer .infoBox .logo img {
    width: 280px;
  }
  footer .infoBox .name {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
  }
  footer .infoBox .link {
    margin-top: 15px;
  }
  footer .navBoxWrap {
    margin-bottom: 50px;
  }
  footer .navBox + .navBox {
    margin-top: 30px;
  }
  footer .navBox h2 {
    margin-bottom: 12px;
    padding-bottom: 10px;
    color: #a5b747;
    font-size: 16px;
    border-bottom: 2px solid;
  }
  footer .navBox .list li {
    line-height: 1.5;
  }
  footer .navBox .list li a, footer .navBox .list .parent {
    display: block;
    padding: 10px 0 10px 15px;
    font-weight: bold;
    position: relative;
  }
  footer .navBox .list li a::after, footer .navBox .list .parent::after {
    content: "";
    display: block;
    width: 0.25em;
    height: 0.25em;
    border-radius: 50%;
    background: currentColor;
    position: absolute;
    top: calc(0.625em + 10px);
    left: 0;
  }
  footer .navBox .list .child {
    padding: 0 0 5px 15px;
  }
  footer .navBox .list .child li a {
    font-weight: normal;
  }
  footer .navBox .list .child li a::after {
    width: 5px;
    height: 1px;
    top: calc(0.75em + 10px);
  }
  footer .navBox .list.is-column li a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal;
  }
  footer .copy {
    font-size: 12px;
    text-align: center;
  }
  /*	.to_top
  ------------------------------------------*/
  .to_top {
    display: none !important;
  }
}
/*mail form pro
----------------------------------------------------------*/
div#mfp_hidden {
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: 0px;
}

div#mfp_hidden input {
  margin: 10px;
}

div.mfp_thanks {
  padding: 30px;
}

div.mfp_thanks p {
  line-height: 1.7em;
}

div.mfp_thanks ul.mfp_caution {
  margin: 0px;
  padding: 0px;
}

div.mfp_thanks ul.mfp_caution li {
  display: block;
  color: #C00;
  margin: 0px;
  padding: 5px 0px;
}

div#mfp_thanks {
  text-align: center;
  font-size: 18px;
  padding: 20px 0px;
}

div#mfp_thanks strong {
  color: #C00;
  font-size: 24px;
}

form#mailformpro {
  padding: 10px 0px;
  box-sizing: border-box;
}

form#mailformpro dl dt {
  float: left;
  width: 160px;
  clear: both;
  font-size: 12px;
  padding: 10px 0px;
  text-align: right;
  border-top: solid 1px #CCC;
  margin: 0px;
}

form#mailformpro dl dd {
  border-top: solid 1px #CCC;
  margin: 0px;
  padding: 10px 5px 20px 170px;
  font-size: 12px;
  line-height: 1.5em;
  text-align: left;
}

form#mailformpro dl dd ul, form#mailformpro dl dd ol {
  margin: 0px;
  padding: 0px;
}

form#mailformpro dl dd ul li, form#mailformpro dl dd ol li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.must {
  display: block;
  background-color: #C00;
  border: solid 2px #C00;
  text-shadow: 0px 1px 2px #933;
  padding: 2px 5px;
  font-size: 10px;
  color: #FFF;
  float: left;
  margin: 0px 5px;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #CCC;
  background-image: url(img/mfp_header.png);
  background-size: 100% 100%;
}

.optionally {
  display: block;
  background-color: #06C;
  border: solid 2px #06C;
  text-shadow: 0px 1px 2px #933;
  padding: 2px 5px;
  font-size: 10px;
  color: #FFF;
  float: left;
  margin: 0px 5px;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #CCC;
  background-image: url(img/mfp_header.png);
  background-size: 100% 100%;
}

form#mailformpro label {
  border-radius: 3px;
  margin: 3px;
  display: inline-block;
  white-space: nowrap;
}

table#mfp_confirm_table {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
}

table#mfp_confirm_table tr.mfp_colored {
  background-color: #F6F7F9;
}

table#mfp_confirm_table tr.mfp_achroma {
  background-color: #FFF;
}

table#mfp_confirm_table tr th, table#mfp_confirm_table tr td {
  text-align: left;
  border-top: solid 1px #CCC;
  padding: 9px;
}

table#mfp_confirm_table tr th {
  white-space: nowrap;
  width: 200px;
}

table#mfp_confirm_table tr td {
  line-height: 1.5em;
  word-break: break-all;
}

div#mfp_phase_confirm {
  clear: both;
}

div#mfp_phase_confirm h4 {
  font-size: 36px;
  padding: 10px 0px 0px 0px;
  text-align: center;
}

div#mfp_overlay {
  position: absolute;
  display: none;
  z-index: 10001;
}

div#mfp_overlay_inner {
  background-color: #FFF;
  padding: 15px;
  margin: 0px auto;
  border-radius: 5px;
  box-shadow: 0px 0px 10px #000;
  width: 640px;
  max-width: 90%;
}

div#mfp_overlay_background {
  background-color: #000;
  position: absolute;
  display: none;
  z-index: 10001;
}

div#mfp_loading_screen {
  z-index: 20000;
  opacity: 0.8;
  display: none;
  background-color: #000;
  position: absolute;
}

div#mfp_loading {
  z-index: 20001;
  position: absolute;
  display: none;
  width: 40px;
  height: 40px;
  background-image: url(img/mfp_loading.gif);
}

.mfp_colored {
  background-color: #F6F7F9;
}

.mfp_achroma {
  background-color: #FFF;
}

div.mfp_err {
  clear: both;
  display: none;
  text-align: left;
  margin: 5px 0px 0px 0px;
  padding: 3px 0px 5px 17px;
  color: #F00;
  font-size: 14px;
  line-height: normal;
  background-image: url(img/mfp_error.gif);
  background-repeat: no-repeat;
  background-position: 0px 7px;
}

.mfp_parent_error {
  border: solid 2px #F00;
}

.problem {
  background-color: #FCC;
}

div#mfp_error {
  background-color: #FEE;
  border: solid 1px #F00;
  padding: 10px;
  display: none;
}

div#mfp_error p {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  text-align: center;
}

div#mfp_error p strong {
  font-size: 18px;
  color: #F00;
}

div#mfp_warning {
  background-color: #FEE;
  border: solid 1px #F00;
  padding: 10px;
  display: none;
  border-radius: 5px;
}

div#mfp_warning p {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  text-align: center;
}

div#mfp_warning p strong {
  font-size: 18px;
  color: #F00;
}

div#mfp_price {
  color: #C00;
  font-size: 36px;
  padding: 10px;
  font-weight: bolder;
}

div#mfp_price span {
  color: #666;
  font-size: 12px;
  font-weight: normal;
}

button.mfp_next, button.mfp_prev {
  font-size: 18px;
  margin: 10px;
  padding: 5px 10px;
}

button.mfp_next {
  float: right;
}

button.mfp_prev {
  float: left;
}

ul#mfp_phase_stat {
  padding: 10px;
  text-align: center;
}

ul#mfp_phase_stat li {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  margin: 0px 5px;
  list-style: none;
  font-size: 14px;
}

ul#mfp_phase_stat li.mfp_phase_arrow {
  box-shadow: none;
  color: #999;
  padding: 8px 0px;
}

ul#mfp_phase_stat li.mfp_active_phase {
  box-shadow: 0px 1px 6px #000;
  background-image: url(img/mfp_header.png);
  background-size: 100% 100%;
  background-color: #0068B7;
  border: solid 2px #0068B7;
  font-weight: bolder;
  color: #FFF;
  text-shadow: 0px 1px 3px #000;
}

ul#mfp_phase_stat li.mfp_inactive_phase {
  background-image: url(img/mfp_header.png);
  background-size: 100% 100%;
  background-color: #EEE;
  border: solid 2px #EEE;
  color: #999;
  box-shadow: 0px 1px 6px #CCC;
}

div#mfp_shopping_cart {
  border: solid 1px #CCC;
  margin: 0px;
  padding: 0px;
}

div#mfp_shopping_cart p {
  margin: 0px;
  text-align: center;
  padding: 20px 10px;
  font-size: 12px;
  background-color: #FEE;
}

table.mfp_shoppingcart {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
}

table.mfp_shoppingcart thead tr td {
  background-color: #EEE;
  border-bottom: solid 1px #CCC;
  text-align: center;
  font-size: 12px;
  padding: 5px;
}

table.mfp_shoppingcart tbody tr th, table.mfp_shoppingcart tbody tr td {
  font-size: 12px;
  padding: 5px;
  border-bottom: solid 1px #CCC;
}

table.mfp_shoppingcart tbody tr td select {
  display: block;
  margin: 0px auto;
  text-align: center;
}

table.mfp_shoppingcart tbody tr td select option {
  text-align: center;
}

table.mfp_shoppingcart tbody tr th span {
  display: block;
  font-weight: normal;
  font-size: 10px;
  color: #666;
  padding: 3px 0px;
}

table.mfp_shoppingcart tfoot tr td {
  padding: 5px;
  font-size: 16px;
  font-weight: bolder;
  color: #900;
}

td.msc_price {
  font-size: 12px;
  text-align: right;
}

div.mfp_buttons {
  clear: both;
  padding: 10px 0px;
  text-align: center;
}

div.mfp_buttons button#mfp_button_send {
  padding: 10px 100px;
  background-color: #59684a;
  border: 1px solid #59684a;
  color: #FFFFFF;
  cursor: pointer;
}

div.mfp_buttons button#mfp_button_cancel {
  padding: 10px 100px;
  border: 1px solid #111;
  color: #111;
  cursor: pointer;
  background: #fff;
}

.imagebutton {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  background: none;
}

.mfp_element_checkbox,
.mfp_element_radio {
  vertical-align: middle;
  margin: 0px 2px;
}

.mfp_element_file {
  font-size: 12px;
  display: inline-block;
  padding: 10px 10px;
  vertical-align: middle;
  border: solid 1px #CCC;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #CCC inset;
  background: #EEE;
}

.mfp_element_reset {
  color: #333;
}

button.mfp_next, button.mfp_prev {
  font-size: 14px;
}

input#mfp_reserve_item, input#mfp_reserve_date {
  display: none;
}

div#mfp_reserve_wrapper {
  position: relative;
  overflow: hidden;
  border: solid 1px #CCC;
}

div#mfp_reserve_inner {
  position: relative;
  padding: 0px 0px 0px 100px;
  overflow: auto;
}

div#mfp_reserve_wrapper table {
  border-spacing: 0px;
  border-collapse: collapse;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_label {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100px;
  background-color: #FEE;
  z-index: 100;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value {
  padding: 0px 0px 0px 0px;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning {
  cursor: pointer;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active:hover,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning:hover {
  background-color: #E8EEF9;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_current {
  background-color: #0068B7;
  color: #FFF;
}

td.mfp_reserve_disabled {
  background-color: #CCC;
}

td.mfp_reserve_warning {
  background-color: #FFC;
}

div#mfp_reserve_wrapper table tr td, div#mfp_reserve_wrapper table tr th {
  border: solid 1px #CCC;
  padding: 0px 5px;
  font-size: 12px;
  text-align: center;
  font-family: Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-weight: normal;
  height: 20px;
  text-align: left;
}

td.mfp_reserve_week_0 {
  color: #F00;
  background-color: #FEE;
}

td.mfp_reserve_week_6 {
  color: #00F;
  background-color: #EEF;
}

div.mfp_ok {
  border: solid 1px #111;
  display: inline-block;
  padding: 1px 10px;
  margin-top: 5px;
  color: #111;
  font-size: 12px;
  display: none;
}

div.prefcodeWrapper {
  position: relative;
}

div.prefcodeResult {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px;
  border: solid 1px #CCC;
  background-color: #FFF;
  box-shadow: 0px 0px 5px #CCC;
  display: none;
}

div.prefcodeResult div {
  cursor: pointer;
}

div.prefcodeResult div:hover {
  background-color: #C9EBFB;
}

div.prefcodeResult div.prefcodeNext {
  background-color: #EEE;
  text-align: center;
}

div.prefLoading {
  padding: 60px 100px;
  background: url(img/mfp_zip_loading.gif) no-repeat center center;
}

.hidefield {
  height: 0px;
  overflow: hidden;
}

.showfield {
  height: auto;
  overflow: visible;
}

div.mfp_attached_thumbnails {
  display: none;
  padding: 5px;
  margin: 5px auto;
  border: solid 1px #CCC;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #CCC inset;
  background: #EEE;
}

div.mfp_attached_thumbnails ul {
  margin: 0px;
  padding: 0px;
}

form#mailformpro dl dd div.mfp_attached_thumbnails ul li {
  display: inline-block;
  vertical-align: top;
  padding: 0px;
  border: solid 4px #FFF;
  margin: 5px;
  box-shadow: 0px 2px 5px #999;
}

form#mailformpro dl dd div.mfp_attached_thumbnails ul li a {
  display: block;
  max-height: 100px;
  overflow: hidden;
}

div.mfp_attached_thumbnails ul li a img {
  display: block;
  max-width: 80px;
}

button.mfp_attached_reset {
  font-size: 14px;
}

div#mfp_OperationCheck div#mfp_OperationCheck_inner {
  display: none;
}

div#mfp_OperationCheck strong {
  background: #090;
  display: block;
  color: #222;
  text-align: center;
  border-radius: 3px;
}

div#mfp_OperationCheck * {
  padding: 0px;
  margin: 0px;
  font-size: 12px;
}

div#mfp_OperationCheck p {
  padding: 0px 5px;
  margin: 0px;
  font-size: 12px;
}

div#mfp_OperationCheck p a {
  color: #0C0;
  text-decoration: none;
}

div#mfp_OperationCheck p a:hover,
div#mfp_OperationCheck p button:hover {
  text-decoration: underline;
}

div#mfp_OperationCheck p button {
  border: none;
  background: none;
  color: #0C0;
  cursor: pointer;
}

div#mfp_OperationCheck ul li,
div#mfp_OperationCheck ul li label,
div#mfp_OperationCheck ul li label input {
  line-height: 12px;
  font-size: 12px;
  list-style: none;
  vertical-align: middle;
}

div#mfp_OperationCheck ul li {
  padding: 5px 10px;
}

div#mfp_OperationCheck ul li {
  text-decoration: underline;
}

button#mfp_recorder_record,
button#mfp_recorder_clear,
button#mfp_recorder_restore {
  border-radius: 5px;
  padding: 5px 10px 5px 2em;
  border: solid 1px #CCC;
  background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -webkit-gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -moz-linear-gradient(top, #EEE, #CCC);
  background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
  text-shadow: 0px 2px 0px #FFF;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  display: inline-block;
  margin: 5px auto;
}

button#mfp_recorder_record {
  background: url(img/mfp_record_disabled.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

button#mfp_recorder_clear {
  background: url(img/mfp_record_remove.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

button#mfp_recorder_restore {
  background: url(img/mfp_record_restore.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

button.enabled#mfp_recorder_record,
button.enabled#mfp_recorder_clear,
button.enabled#mfp_recorder_restore {
  background: url(img/mfp_record_enabled.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

div#mfp_recorder_wrap {
  border: solid 1px #CCC;
  padding: 10px;
  text-align: center;
  margin: 5px auto;
}

td.request_image {
  width: 100px;
}

td.request_image img {
  max-width: 100px;
}

span.mfp_tips {
  background-image: url(img/mfp_header.png);
  background-size: 100% 100%;
  background-color: #FCC;
  display: block;
  border-radius: 5px;
  padding: 10px;
  margin: 2px;
  box-shadow: 0px 2px 10px #999;
}

span.mfp_tips strong {
  color: #800040;
}

span.mfp_tips span {
  display: block;
  padding: 10px;
  color: #008080;
}

span.mfp_tips em {
  font-style: normal;
  color: #090;
  font-weight: bold;
}

@media screen and (max-width: 1240px) {
  div#mfp_overlay_background {
    width: 1240px !important;
    height: 100% !important;
  }
  div#mfp_overlay {
    width: 1240px !important;
  }
}
@media screen and (max-width: 800px) {
  form#mailformpro dl dt {
    float: none;
    width: auto;
    font-size: 12px;
    padding: 5px;
    text-align: left;
  }
  form#mailformpro dl dd {
    clear: both;
    border-top: none;
    padding: 5px 15px;
    font-size: 12px;
    line-height: 1.5em;
  }
  div.mfp_buttons button {
    font-size: 14px;
  }
  div#mfp_phase_confirm h4 {
    font-size: 18px;
  }
  ul#mfp_phase_stat {
    padding: 0px;
    text-align: left;
  }
  ul#mfp_phase_stat li {
    text-align: center;
    padding: 5px 0px;
    border-radius: 3px;
    margin: 5px;
    list-style: none;
    font-size: 14px;
    width: 28%;
  }
  ul#mfp_phase_stat li.mfp_phase_arrow {
    bos-shadow: none;
    display: none;
  }
  table#mfp_confirm_table tr th {
    white-space: nowrap;
    width: 150px;
  }
  div#mfp_thanks {
    text-align: center;
    font-size: 18px;
    padding: 20px 0px;
  }
  div#mfp_thanks strong {
    color: #C00;
    font-size: 24px;
    display: block;
  }
}
@media screen and (max-width: 431px) {
  div#mfp_overlay_background {
    width: 430px !important;
    height: 100% !important;
  }
  div#mfp_overlay {
    width: 430px !important;
  }
  div#mfp_overlay_inner {
    width: 390px;
    max-width: none;
  }
  div.mfp_buttons button#mfp_button_send {
    padding: 10px 0;
    width: 300px;
    margin-bottom: 10px;
  }
  div.mfp_buttons button#mfp_button_cancel {
    padding: 9px 0;
    width: 300px;
    margin-right: 3px;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
