@charset "utf-8";

/* ---------------
	reset
--------------------*/
body, div, main,
dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
figure, pre, form, fieldset, textarea, p, blockquote, th ,td {
	margin: 0;
	padding: 0;
}

main {
	display: block;
}

ul{
	list-style-type: none;
}

table {
	line-height: 1.6;
	border: 0px;
	border-collapse:collapse;
	font-size: 1.6rem;
}

table th {
	font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 1em;
	font-weight: normal;
}
textarea {
	padding: 2px 4px;
	font-size: 1.6rem;
	line-height: 1;
	color: #444;
}

input {
	vertical-align: middle;
	margin: 0;
	padding: 0;
	color: #444;
}

p {
	line-height: 1.5;
}

img {
	border: none;
	vertical-align: bottom;
	-webkit-backface-visibility: hidden;
}

address {
	font-style:normal;
}

ul li {
	line-height: 1.4;
}

*,*::before,*::after{
	box-sizing: border-box;
}

em {
	font-style: normal;
}

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

input[type='search'] {
	-webkit-appearance: none;
}

/* ---------------
　　　共用
--------------- */

:root {
	--col-p-def: #333;
	--col-p-link: #007440;
	--col-site-def: #76ba25;
	--col-back-def: #f4f7e4;
	--col-blue: #4d7fb5;
	--col-orange: #d6832a;
	--col-pager: #3b79bb;
	--col-body: #fffef7;
}

html {
    font-size: 62.5%;
	overflow-x: hidden;
}

body {
	font-size: 1.6rem;
	letter-spacing: 0.03em;
	line-height: 1;
	color: #333;
	-webkit-text-size-adjust: none;
	-webkit-print-color-adjust: exact;
	font-optical-sizing: auto;
	font-family: "Noto Sans JP", sans-serif;
}

a:link {
	border: none;
	color: #333;
	text-decoration: none;
	transition: all 0.1s ease;
}

a:visited {
	border: none;
	color: #333;
	text-decoration: none;
}

a:active {
	border: none;
	color: #333;
	text-decoration: none;
}

a:hover {
	border: none;
	color: #333;
	text-decoration: none;
	transition: all 0.1s ease;
}

:focus:not(:focus-visible) {
	outline: none;
}

@media screen and (min-width: 768px) {

	.alpha a:hover {
		filter: alpha(opacity=70);
		-moz-opacity:0.7;
		opacity:0.7;
		transition: opacity 0.25s ease 0s;
	}

	.alpha a {
		-webkit-transition: all 0.1s ease 0s;
		-moz-transition: all 0.1s ease 0s;
		transition: opacity 0.25s ease 0s;
	}

}

.sp {
	display: none;
}

.pc {
	display: block;
}

a[href^="tel:"] {
    text-decoration: none !important;
}

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

img.trim_center {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

a[href^="no_large"] {
    pointer-events: none;
}

.wrapper {
	position: relative;
}

.lg_2 .wrapper,
.lg_1 .wrapper {
  margin-top: 100px;
}

.entry_edit .wrapper {
  margin-top: 250px;
}

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

	.wrapper {
	}

	.sp {
		display: block;
	}

	.pc {
		display: none;
	}

	.columnImage {
		width: 100%;
	}

}

a.nolink {
	cursor: default;
	text-decoration: none !important;
    pointer-events: none;
}

@media screen and (min-width: 1000px) {

	a[href^="tel:"] {
	    pointer-events: none;
	}

}

.main {
	margin-top: 65px;
}

.inner {
	margin-left: 20px;
	margin-right: 20px;
}

@media screen and (min-width: 768px) {

	.main {
		margin-top: 100px;
		position: relative;
	}

	.lg_1 .main,
	.lg_2 .main {
		margin-top: 200px;
	}

	.inner {
		margin-left: auto;
		margin-right: auto;
    	width: min(95%,1100px);
	}


}

.center {
	text-align: center;
}

.link_bk {
	padding-right: 15px;
	background: url(../images/common/link_icon_bk.svg) no-repeat right center / 7px auto;
}

.link_green {
	padding-right: 15px;
	background: url(../images/common/link_icon_g.svg) no-repeat right center / 7px auto;
}

.link_dark_green {
	padding-right: 15px;
	background: url(../images/common/link_icon_menu.svg) no-repeat right center / 7px auto;
}

.link_orange {
	padding-right: 15px;
	background: url(../images/common/link_icon_o.svg) no-repeat right center / 7px auto;
}

.link_red {
	padding-right: 15px;
	background: url(../images/common/link_icon_r.svg) no-repeat right center / 7px auto;
}

.link_blue {
	padding-right: 15px;
	background: url(../images/common/link_icon_b.svg) no-repeat right center / 7px auto;
}

.link_white {
	padding-right: 15px;
	background: url(../images/common/link_icon_w.svg) no-repeat right center / 7px auto;
}

.icon.link_dark_green.down {
	padding: 0;
	width: 7px;
	height: 12px;
	display: inline-block;
	transform:rotate(90deg);
}


/* -----------------
	header
----------------- */

.header {
	height: 65px;
	width: 100%;
	left: 0;
	top: 0;
	display: flex;
	position: fixed;
	justify-content: space-between;
	align-items: center;
	background-color: var(--col-back-def);
	z-index: 30;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.top .header {
	box-shadow: none;
}

.menu_open .header {
	position: inherit;
}

.lg_2 .header,
.lg_1 .header {
	top: 100px;
}

.lg_2.menu_open .header,
.lg_1.menu_open .header {
	top: 0;
}

.header .logo {
	margin: 0 20px;
	width: 210px;
}

@media screen and (min-width: 768px) {

	.header {
		height: 100px;
	}

	.header .logo {
		margin: 0 15px 0 30px;
		width: 384px;
	}

}

.header_parts {
	display: flex;
	align-items: center;
}

.header_parts .search_box {
	display: none;
}

.search_box .search_input {
	display: flex;
	justify-content: space-between;
}

.search_box .search_input input {
	margin: 0;
	padding: 0 10px;
	background: #fff;
	border: none;
	outline: none;
	font-size: 1.6rem;
	overflow: hidden;
	width: calc(100% - 60px);
}

.search_box .search_input input::placeholder {
	color: #5e5e5e;
}

.search_box .search_submit_btn {
	width: 60px;
	height: 40px;
	border: none;
	text-indent: -9999px;
	background: var(--col-site-def) url(../images/common/icon_search_w.svg) no-repeat center center / 22px auto;
}

@media screen and (min-width: 768px) {

	.header_parts .search_box {
		margin: 0 30px 0 0;
		width: 335px;
		display: block;
		border-radius: 30px;
		background: #fff;
		border: 2px solid var(--col-site-def);
		overflow: hidden;
	}

	.header_parts .search_box .search_form {
		padding: 0 0 0 20px;
	}

	.search_box .search_input input {
		padding: 0;
		font-size: 1.4rem;
		width: calc(100% - 80px);
	}

	.search_box .search_submit_btn {
		width: 60px;
		height: 46px;
	}

}

@media screen and (min-width: 768px) and (max-width: 899px) {

	.header_parts .search_box {
		margin: 0 20px 0 0;
		width: 280px;
	}

	.header_parts .search_box .search_form {
		padding: 0 0 0 10px;
	}

	.search_box .search_input input {
		width: calc(100% - 60px);
	}

}

#menu_btn {
	margin: 0;
    padding: 0;
	width: 65px;
	height: 65px;
	position: relative;
	border: none;
	background: none;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

#menu_btn span {
	display: block;
}

#menu_btn span::before {
	top: 23px;
}

#menu_btn::before {
	top: 32px;
}

#menu_btn::after {
	top: 41px;
}

#menu_btn::before,
#menu_btn::after,
#menu_btn span::before {
	margin: 0 auto;
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	width: 25px;
	height: 2px;
	background-color: var(--col-site-def);
	transition: all 0.3s ease;
}

.menu_open #menu_btn::before {
	display: none;
}

.menu_open #menu_btn::after {
	transform: rotate(-45deg);
	top: 32px;
}

.menu_open #menu_btn span::before {
	top: 32px;
	transform: rotate(45deg);
}

@media screen and (min-width: 768px) {

	#menu_btn {
		width: 100px;
		height: 80px;
		border-left: 1px solid #d7dbc4;
	}

	#menu_btn::before {
		top: 38px;
	}

	#menu_btn span::before {
		top: 27px;
	}

	#menu_btn::after {
		top: 49px;
	}

	#menu_btn::before,
	#menu_btn::after,
	#menu_btn span::before {
		width: 40px;
		height: 1.5px;
		transition: all 0.3s ease 0s;
	}

	.menu_open #menu_btn::after {
		top: 39px;
	}

	.menu_open #menu_btn span::before {
		top: 39px;
	}

}

.header_menu {
	position: absolute;
	top: 65px;
	width: 100%;
	right: -100%;
	background-color: var(--col-back-def);
	transition: all 0.3s ease 0s;
}

.menu_open .header_menu {
	right: 0;
}

.header_menu .search_box {
	margin: 0 20px 20px;
	width: calc(100% - 40px);
	display: block;
	border-radius: 30px;
	background: #fff;
	border: 2px solid var(--col-site-def);
	overflow: hidden;
}

.menu_list {
	margin: 0 0 50px;
	border-bottom: 1px solid #c8cea6;
}

@media screen and (min-width: 768px) {

	.header_menu {
		position: absolute;
		top: 100px;
		width: 750px;
		right: -750px;
		background-color: var(--col-back-def);
		transition: all 0.3s ease 0s;
	}

	.menu_open .header_menu {
		right: 0;
	}

	.header_menu .search_box {
		display: none;
	}

	.menu_list {
		margin: 0 0 20px;
	}

}

.menu_list > li {
	font-size: 1.6rem;
	font-weight: 500;
	border-top: 1px solid #c8cea6;
}

.menu_list > li > a,
.menu_sub > li > a {
	background: var(--col-back-def) url(../images/common/link_icon_menu.svg) no-repeat right 20px center / 7px auto;
}

.menu_sub > li > a {
	background-color: #e7ebd1;
}

.menu_list > li > a,
.menu_list > li .menu_cate a {
	padding: 18px 20px;
	display: block;
	color: var(--col-p-link);
	width: 100%;
}

@media screen and (min-width: 768px) {

	.menu_list > li {
		font-size: 1.8rem;
	}

	.menu_list > li > a,
	.menu_sub > li > a {
		background-position: right 28px center;
	}

	.menu_list > li > a,
	.menu_list > li .menu_cate a {
		padding: 20px 28px;
	}

}

.menu_list > li .menu_cate {
	position: relative;
	display: flex;
	align-items: center;
}

.menu_list > li .menu_cate::before,
.menu_list > li .menu_cate::after {
	position: absolute;
	content: '';
	top: 0;
	bottom: 0;
	right: 20px;
	height: 2px;
	width: 15px;
	margin: auto;
	background: var(--col-p-link);
	transition: all 0.3s ease 0s;
}

.menu_list > li .menu_cate::after {
	transform: rotate(90deg);
}

.menu_list > li .menu_cate.open::after {
	transform: inherit;
}

@media screen and (min-width: 768px) {

	.menu_list > li .menu_cate::before,
	.menu_list > li .menu_cate::after {
		right: 22px;
		width: 20px;
	}

}

.menu_list i {
	margin-right: 10px;
	display: inline-block;
}

.icon_chitadire {
	width: 27px;
	height: 21px;
	background: url(../images/common/nav_icon_chitadore.svg) no-repeat 0 0 / 27px auto;
}

.icon_agriculture {
	width: 25px;
	height: 18px;
	background: url(../images/common/nav_icon_nougyou.svg) no-repeat 0 0 / 25px auto;
}

.icon_food {
	width: 25px;
	height: 23px;
	background: url(../images/common/nav_icon_syoku.svg) no-repeat 0 0 / 25px auto;
}

.icon_life {
	width: 27px;
	height: 24px;
	background: url(../images/common/nav_icon_kurashi.svg) no-repeat 0 0 / 25px auto;
}

.icon_estate-center {
	width: 26px;
	height: 23px;
	background: url(../images/common/nav_icon_fudousan.svg) no-repeat 0 0 / 26px auto;
}

.icon_finance {
	width: 30px;
	height: 20px;
	background: url(../images/common/nav_icon_kinyu.svg) no-repeat 0 0 / 30px auto;
}

.icon_moshimo {
	width: 25px;
	height: 23px;
	background: url(../images/common/nav_icon_mosimo.svg) no-repeat 0 0 / 25px auto;
}

.icon_about {
	width: 30px;
	height: 18px;
	background: url(../images/common/nav_icon_ja.svg) no-repeat 0 0 / 30px auto;
}

.icon_sectional {
	width: 24px;
	height: 25px;
	background: url(../images/common/nav_icon_kouhou.svg) no-repeat 0 0 / 24px auto;
}

.icon_other {
	width: 26px;
	height: 26px;
	background: url(../images/common/nav_icon_etc.svg) no-repeat 0 0 / 26px auto;
}

.menu_sub {
	display: none;
}

.menu_sub > li {
	font-size: 1.4rem;
	font-weight: 500;
	border-top: 1px solid #c8cea6;
	background: #e7ebd1;
}

.menu_sub > li > a {
	padding: 16px 20px;
	display: block;
	font-weight: 400;
}

.menu_list > li.menu_link {
	font-size: 1.4rem;
}

.menu_list > li.menu_link a {
	padding: 12px 20px;
}

.ssl_logo {
	margin: 0 20px 20px 0;
	float: right;
}

@media screen and (min-width: 768px) {

	.menu_sub > li {
		font-size: 1.6rem;
	}

	.menu_sub > li > a {
		padding: 20px 28px;
	}

	.menu_list > li.menu_link a {
		padding: 17px 28px;
	}

	.ssl_logo {
		margin: 0 20px 20px 0;
	}

}

#sp_menu_back {
	position: absolute;
	width: 100%;
	top: 65px;
	left: 0;
	transition: opacity 0.4s ease;
	opacity: 0;
	z-index: -1;
	background: rgba(0, 0, 0, 0.5);
}

.menu_open #sp_menu_back {
	opacity: 1;
	z-index: 20;
}

@media screen and (min-width: 768px) {

	#sp_menu_back {
		top: 100px;
	}

}

/* -----------------
	トップ
----------------- */

.top_urgent {
	padding: 20px 0 0;
	background: #fff;
}

.top_urgent_header {
	margin: 0 0 20px;
}

.top_urgent_header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top_urgent_header h2 {
	color: #da0048;
	font-size: 1.6rem;
	font-weight: 500;
}

.top_urgent_header p {
	font-size: 1.2rem;
}

@media screen and (min-width: 768px) {

	.top_urgent {
		padding: 35px 0 0;
		box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	}

}

.top_urgent ul {
	margin: 0 20px 10px;
}

.top_urgent li {
	border-top: 1px solid #c7d1db;
}

.top_urgent li a {
	padding: 10px 10px;
	display: block;
}

.top_urgent li a .inner {
	margin: 0;
}

.top_urgent time {
	margin: 0 0 4px;
	font-size: 1.2rem;
	display: block
}

.top_urgent li p {
	font-size: 1.4rem;
	line-height: 1.2;
}

@media screen and (min-width: 768px) {

	.top_urgent ul {
		margin: 0;
	}

	.top_urgent li a {
		padding: 15px 0;
		display: block;
	}

	.top_urgent li a .inner {
		margin: 0 auto;
		display: flex;
		align-items: center;
	}

	.top_urgent time {
		margin: 0 15px 0 0;
		font-size: 1.4rem;
	}

	.top_urgent li p {
		font-size: 1.6rem;
		line-height: 1.4;
	}

}

@media screen and (min-width: 768px) {

	.top_slide {
		margin: 0 0 110px;
	}

	.top_slide_sec {
		padding: 80px 0 220px;
		background: url(../images/top/concept_bottom.png) no-repeat center bottom / 100% auto,
					url(../images/top/concept_back.png) no-repeat center center / cover;
		position: relative;
	}

	.top_slide_sec::after {
		position: absolute;
		content: '';
		left: calc(50% + 18vw);
		width: 138px;
		height: 187px;
		background: url(../images/common/chara.png) no-repeat 0 0 / cover;

	}

	.top_slide_img .slide_img {
		margin: 0 35px;
		width: 800px;
		border-radius: 30px;
		overflow: hidden;
	}

}

.slide_ctrl {
	margin: 20px 0;
	position: relative;
}

.slide_ctrl .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.slide_navi {
	display: flex;
	align-items: center;
}

.slide_navi .btn_prev,
.slide_navi .btn_next,
.slide_stop {
	width: 30px;
	height: 30px;
	background: var(--col-site-def);
	text-indent: -9999px;
	border: none;
	border-radius: 50%;
}

.slide_navi .btn_prev {
	background: var(--col-site-def) url(../images/top/btn_right.png) no-repeat center center / 10px auto;
}

.slide_navi .btn_next {
	background: var(--col-site-def) url(../images/top/btn_left.png) no-repeat center center / 10px auto;
}

@media screen and (min-width: 768px) {

	.slide_ctrl {
		margin: 30px 0 0;
	}

	.slide_ctrl .inner {
		display: block;
	}

	.slide_navi {
		justify-content: center;
	}

}

.slide_dot {
	margin: 0 14px;
}

.slide_dot .slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
}

.slide_dot .slick-dots li {
	margin: 0 10px;
	border-radius: 50%;
	width: 7px;
	height: 7px;
	background: #b7d795;
	overflow: hidden;
}

.slide_dot .slick-dots li button {
	text-indent: -9999px;
	border: none;
	padding: 0;
	line-height: 7px;
}

.slide_dot .slick-dots li.slick-active {
	width: 14px;
	height: 14px;
	border: 3px solid var(--col-site-def);
	background: #fff;
}

.slide_dot .slick-dots li.slick-active button {
	line-height: 14px;
}

.slide_stop {
	background: var(--col-site-def) url(../images/top/btn_stop.png) no-repeat center center / 10px auto;
}

@media screen and (min-width: 768px) {

	.slide_dot {
		margin: 0 25px;
	}

	.slide_stop {
		position: absolute;
		top: 0;
		left: calc(50% + 270px);
	}

}

.top_concept {
	padding: 40px 20px 150px;
	background: url(../images/top/concept_back_sp.png) no-repeat center bottom / cover;
}

.top_concept figure {
	margin: 0 0 20px;
}

.top_concept h2 {
	margin: 0 auto 20px;
	width: 260px;
}

.top_concept p {
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: center;
}

@media screen and (min-width: 768px) {

	.top_concept {
		padding: 0;
		background: none;
	}

	.top_concept .inner {
		display: flex;
		align-items: center;
	}

	.top_concept figure {
		margin: 25px 5% 0 0;
		max-width: 594px;
		width: 54%;
		flex-shrink: 0;
	}

	.top_concept .inner > div {
		max-width: 440px;
		width: 40%;
		flex-shrink: 0;
	}

	.top_concept h2 {
		margin: 0 0 45px;
		width: 100%;
	}

	.top_concept p {
		font-size: 1.8rem;
		text-align: left;
	}

}

.top_navi {
	background: url(../images/top/navi_back.png) no-repeat 0 0 / cover;
}

.top_navi_wrapper {
	padding: 25px 0 35px;
	background: url(../images/top/navi_bottom_sp.png) no-repeat 0 bottom / 100% auto;
}

.top_navi ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.top_navi li {
	margin: 20px 0;
	text-align: center;
	width: 33.3333%;
	border-left: 1px solid #cbd696;
}

.top_navi li:last-child,
.top_navi li:nth-child(3n) {
	border-right: 1px solid #cbd696;
}

.top_navi li a {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 70px;
}

.top_navi li figure {
	margin: 0 auto;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.top_navi li h3 {
	margin: 5px 0 0;
	font-size: 1.2rem;
	color: var(--col-p-link);
}

@media screen and (min-width: 768px) {

	.top_navi {
		background: url(../images/top/navi_back.png) no-repeat 0 0 / cover;
	}

	.top_navi_wrapper {
		padding: 30px 0 160px;
		background: url(../images/top/navi_bottom_pc.png) no-repeat 0 bottom / 100% auto;
	}

	.top_navi ul {
		display: grid;
		grid-template-columns: repeat(5,1fr);
	}

	.top_navi li {
		width: auto;
	}

	.top_navi li:nth-child(3n) {
		border-right: none;
	}

	.top_navi li:nth-child(5n) {
		border-right: 1px solid #cbd696;
	}

	.top_navi li a {
		min-height: 120px;
	}

	.top_navi li figure {
		margin: 0 auto;
	}

	.top_navi li h3 {
		margin: 10px 0 0;
		font-size: 1.6rem;
	}

}

.top_news {
	padding: 50px 0 60px;
	background: #fffef7;
	text-align: center;
}

.top_hotnews {
	padding: 0 0 60px;
	background: #fffef7;
	text-align: center;
}

.news_h2 {
	margin: 0 auto 30px;
	max-width: 165px;
}

.hot_h2 {
	margin: 0 auto;
	max-width: 235px;
}

.top .hot_h2 {
	margin-bottom: 30px;
}

.otoku_h2 {
	margin: 0 auto;
	max-width: 172px;
}

.top_news_list {
	margin: 0 0 30px;
	border-top: 1px solid #c7d1db;
}

@media screen and (min-width: 768px) {

	.top_news {
		margin: -10px 0 0;
		padding: 40px 0 100px;
	}

	.top_hotnews {
		padding: 0 0 115px;
	}

	.news_h2 {
		max-width: 250px;
	}

	.hot_h2 {
		margin: 0 auto 30px;
		max-width: 350px;
	}

	.otoku_h2 {
		margin: 0 auto 30px;
		max-width: 172px;
	}

	.top_news_list {
		margin: 0 0 40px;
	}

}

.top_news_list > li {
	border-bottom: 1px solid #c7d1db;
	text-align: left;
}

.top_news_list > li a {
	padding: 16px 30px 16px 10px;
	display: block;
	background-position: right 10px center;
}

.top_news_list > li time {
	font-size: 1.2rem;
	white-space: nowrap;
}

.top_news_list li .news_tag {
	margin: 0 0 0 5px;
	display: inline-block;
}

.top_news_list li .news_tag li {
	margin: 0 0 0 8px;
	padding: 1px 8px 3px;
	border-radius: 20px;
	display: inline-block;
	white-space: nowrap;
	font-size: 1.2rem;
	line-height: 1;
	border: 2px solid #baca64;
}

.top_news_list li .news_tag li a {
	display: block;
}

.top_news_list > li p {
	margin: 8px 0 0;
	font-size: 1.6rem;
}

@media screen and (min-width: 768px) {

	.top_news_list > li a {
		padding: 20px 55px 20px 30px;
		display: flex;
		align-items: center;
		background-position: right 30px center;
	}

	.top_news_list li .news_tag {
		margin: 0 0 0 15px;
	}

	.top_news_list li .news_tag li {
		margin: 0 0 0 10px;
	}

	.top_news_list > li p {
		margin: 0 0 0 25px;
	}

}

.btn_link_radius {
	font-size: 1.4rem;
	display: inline-block;
}

.btn_link_radius a {
	padding: 10px 60px 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	border: 2px solid #333;
}

.btn_link_radius a {
	background-position: right 12px center;
}

.btn_link_blue a {
	border-color: var(--col-blue);
}

.btn_link_orange a {
	border-color: var(--col-orange);
}

@media screen and (min-width: 768px) {

	.btn_link_radius {
		font-size: 1.6rem;
	}

}

.top_recommend {
	text-align: center;
	background: url(../images/top/recommend_back.png) no-repeat center center / cover;
}

.top_recommend h2 {
	top: -22px;
	position: relative;
}

.top_recommend_list {
	padding: 15px 0 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.top_recommend_list li {
	width: calc(50% - 10px);
}

.top_recommend_list li a {
	border: 2px solid var(--col-site-def);
	border-radius: 10px;
	background: #fffded;
	display: block;
	overflow: hidden;
	height: 100%;
}

.top_recommend_list li figure img {
	height: 100px;
	object-fit: cover;
}

.top_recommend_list li a > div {
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: calc(100% - 100px);
}

.top_recommend_list li a > div::after {
	position: absolute;
	content: '';
	right: -25px;
	bottom: -25px;
	width: 50px;
	height: 50px;
	border-radius: 40px;
	background: var(--col-site-def) url(../images/common/link_icon_w.svg) no-repeat 12px 10px / 6px auto;
}

.top_recommend_list li h3 {
	font-size: 1.6rem;
	line-height: 1.2;
}

@media screen and (min-width: 768px) {

	.top_recommend h2 {
		margin: 0 auto;
		max-width: 335px;
		top: -15px;
	}

	.top_recommend_list {
		padding: 35px 0 120px;
		display: grid;
		gap: 30px;
		grid-template-columns: repeat(4,1fr);
	}

	.top_recommend_list li {
		width: auto;
	}

	.top_recommend_list li figure img {
		height: 158px;
	}

	.top_recommend_list li a > div {
		height: 110px;
	}

	.top_recommend_list li a > div::after {
		right: -35px;
		bottom: -35px;
		width: 70px;
		height: 70px;
		background: var(--col-site-def) url(../images/common/link_icon_w.svg) no-repeat 18px 15px / 7px auto;
	}

}

.top_sns {
	margin: -20px 0 0;
	padding: 40px 0 60px;
	text-align: center;
	background: url(../images/top/sns_back_sp.png) no-repeat center top / cover;
}

.top_sns h2 {
	margin: 0 auto 30px;
	max-width: 125px;
}

.top_sns_top {
	margin: 0 0 30px;
}

.top_sns_top > div {
	margin: 0 0 20px;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
}

.top_sns_insta h3 {
	margin: 0 auto 15px;
	width: 130px;
}

.top_sns_insta h3 a,
.top_sns_youtube h3 a {
	padding-right: 25px;
	background: url(../images/common/external_link_icon.svg) no-repeat right center / 17px auto;
}

.top_sns_youtube h3 {
	margin: 0 auto 15px;
	width: 215px;
}

@media screen and (min-width: 768px) {

	.top_sns {
		padding: 120px 0 100px;
		background: url(../images/top/sns_back_clover.png) no-repeat center center / 1355px auto,
					url(../images/top/sns_back_pc.png) no-repeat center top / cover;
	}

	.top_sns h2 {
		max-width: 190px;
	}

	.top_sns_top {
		margin: 0 0 30px;
		display: flex;
		gap: 30px;
	}

	.top_sns_top > div {
		margin: 0;
		padding: 30px;
		width: 50%;
	}

	.top_sns_insta h3 {
		margin: 0 auto 40px;
	}

	.top_sns_insta h3 a,
	.top_sns_youtube h3 a {
		padding-right: 35px;
		background: url(../images/common/external_link_icon.svg) no-repeat right center / 17px auto;
	}

	.top_sns_youtube h3 {
		margin: 0 auto 40px;
	}

}

#top_sns_insta {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	flex-wrap: wrap;
	gap: 5px;
}

#top_sns_insta li {
	position: relative;
	overflow: hidden;
}

#top_sns_insta li img {
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

.youtube_iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.youtube_iframe iframe {
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 768px) {

	#top_sns_insta {
		gap: 10px;
	}

}

.top_sns_bottom {
	display: flex;
	gap: 10px;
}

.top_sns_bottom > div {
	text-align: center;
	border: 2px solid #fff;
	border-radius: 12px;
	width: 50%;
}

.top_sns_bottom > div a {
	height: 65px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.top_sns_line {
	background: #06c755;
}

.top_sns_line h3 {
	margin: 0 auto;
	max-width: 130px;
}

.top_sns_facebook {
	background: #1877f2;
}

.top_sns_facebook h3 {
	margin: 18px 0 0 5px;
	width: 90%;
	max-width: 150px;
}

@media screen and (min-width: 768px) {

	.top_sns_bottom {
		gap: 30px;
	}

	.top_sns_bottom > div {
		border-radius: 10px;
	}

	.top_sns_bottom > div a {
		height: 80px;
	}

	.top_sns_line h3 {
		width: 174px;
		max-width: inherit;
	}

	.top_sns_facebook h3 {
		margin: 35px 0 0 5px;
		width: 225px;
		max-width: inherit;
	}

}

/* -----------------
	お知らせ
----------------- */

.page_index {
	background: #fffef7;
}

.page_index .main > .inner {
	padding-top: 70px;
}

.index_news h1 {
	margin: 0 auto 30px;
}

.news_tag_column {
	padding: 20px;
	border-radius: 20px;
	background: url(../images/top/recommend_back.png) no-repeat center center / cover;
}

.news_tag_column h3 {
	margin: 0 0 15px;
	padding-left: 22px;
	font-size: 1.2rem;
	line-height: 1.4;
	background: url(../images/common/icon_search.svg) no-repeat 0 center / 15px auto;
	color: #4b9708;
}

.news_tag_list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.news_tag_list > li {
	font-size: 1.4rem;
}

.news_tag_list > li > a {
	padding: 4px 14px;
	background: #fff;
	border-radius: 30px;
	display: block;
}

@media screen and (min-width: 768px) {

	.page_index .main > .inner {
		padding-top: 90px;
	}

	.index_news h1 {
		margin: 0 auto 50px;
	}

	.news_tag_column {
		margin: 0 0 40px;
		padding: 40px;
		border-radius: 30px;
	}

	.news_tag_column h3 {
		margin: 0 0 25px;
		padding-left: 25px;
		font-size: 1.6rem;
	}

	.news_tag_list {
		gap: 20px;
	}

	.news_tag_list > li {
		font-size: 1.6rem;
	}

	.news_tag_list > li > a {
		padding: 8px 20px;
	}

}

.index_pager {
	margin: 40px 0 0;
}

.index_pager ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

.index_pager li {
	margin: 0 4px;
	width: 40px;
	height: 40px;
	font-size: 1.6rem;
	color: var(--col-pager);
}

.index_pager li a,
.index_pager li.cur span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	color: var(--col-pager);
}

.index_pager li.cur span {
	border: 1px solid var(--col-pager);
	border-radius: 50%;
}

.index_pager li.page_back a,
.index_pager li.page_forward a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: var(--col-pager);
	border-radius: 50%;
}

.index_pager li.page_back a img ,
.index_pager li.page_forward a img {
	width: 12px;
}

@media screen and (min-width: 768px) {

	.index_pager {
		margin: 60px 0 0;
	}

}


/* -----------------
	パンくず
----------------- */

.path {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	overflow-x: auto;
	width: 100%;
}

.path ol {
	list-style: none;
	display: flex;
}

.path li {
	font-size: 1.2rem;
	white-space: nowrap;
	background: url(../images/common/path.png) no-repeat 0 center / auto 100%;
	background-color: var(--col-back-def);
}

.path li:first-child {
	background-image: none;
}

.path li:last-child {
	border-radius: 0 0 15px 0;
}

.path li span,
.path li a {
	padding: 10px 10px 10px 18px;
	display: block;
	color: #949880;
}

.path li:first-child span,
.path li:first-child a {
	padding-left: 10px;
	padding-right: 7px;
	color: #4396b9;
}


@media screen and (min-width: 768px) {

	.path li span,
	.path li a {
		padding: 10px 20px 10px 25px;
	}

	.path li:first-child span,
	.path li:first-child a {
		padding-left: 15px;
		padding-right: 15px;
	}

}

/* ---------------------
	インデックスページ
--------------------- */

.index_header_wrapper {
	padding: 120px 0 70px;
	position: relative;
	overflow: hidden;
	background: url(../images/common/index_title_bottom_sp.png) repeat-y center center / 100% auto;
}

.index_header {
	margin: 120px 0 0;
	z-index: 2;
	position: relative;
	background: url(../images/common/index_title_back_sp.png) no-repeat center top / 100% auto;
}

.index_header_title {
	padding: 50px 0 10px;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.3;
}

.sp_index_header_back,
.index_header_back {
	height: 300px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: block;
	z-index: 1;
}

.sp_index_header_back {
	z-index: 2;
}

.index_header .inner {
	position: relative;
}

.index_header .inner::after {
	position: absolute;
	content: '';
	right: 0;
	top: -40px;
	width: 80px;
	height: 100px;
	background: url(../images/common/index_title_parts.png) no-repeat 0 0 / cover;
}

@media screen and (min-width: 768px) {

	.index_header_wrapper {
		padding: 120px 0;
		background: url(../images/common/index_title_bottom_pc.png) repeat-y center top / 100% auto;
	}

	.index_header {
		margin: 120px 0 0;
		background: url(../images/common/index_title_back_pc.png) no-repeat center top / 100% auto;
	}

	.index_header_title {
		padding: 120px 0 10px;
		font-size: 4.2rem;
	}

	.index_header_back {
		height: 380px;
		background-position: center center;
	}

	.sp_index_header_back {
		display: none;
	}

	.index_header .inner::after {
		top: -100px;
		right: 20px;
		width: 131px;
		height: 165px;
	}

}

.entry_wrapper.back_white + .index_summary_back {
	background: #fff;
}

.index_summary {
	margin: 0;
	padding: 60px 0 30px;
	border-radius: 40px 40px 0 0;
	background: url(../images/top/navi_back.png) 0 0 / 1600px auto;
}

.index_summary_list li {
	margin: 0 0 30px;
	border-radius: 10px;
	overflow: hidden;
}

.index_summary_list li a {
	display: block;
	overflow: hidden;
	height: 100%;
	background: #fff;
	position: relative;
}

.index_summary_list li a::after {
	position: absolute;
	content: '';
	right: -55px;
	bottom: -55px;
	width: 110px;
	height: 110px;
	background: var(--col-site-def) url(../images/common/link_icon_w.svg) no-repeat 30px 25px / 7px auto;
	border-radius: 60px;
}

.index_summary_list li figure img {
	height: 250px;
	object-fit: cover;
}

.index_summary_list li figure.noimage {
	padding: 30px 60px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fffded;
}

.index_summary_list li figure.noimage img {
	width: 100%;
	height: auto;
}

.index_summary_list li a > div {
	padding: 15px 20px 60px;
}

.index_summary_list li h3 {
	margin: 0 0 10px;
	font-size: 2.0rem;
	line-height: 1.2;
	font-weight: 500;
}

.index_summary_list li a h3 {
	color: var(--col-site-def);
}

.index_summary_list li p {
	font-size: 1.6rem;
	line-height: 1.6;
}

@media screen and (min-width: 768px) {

	.index_summary_back {
		padding: 50px 0 0;
	}

	.index_summary {
		margin:0;
		padding: 130px 0 120px;
		border-radius: 80px 80px 0 0;
	}

	.index_summary_list {
		display: grid;
		gap: 50px;
		grid-template-columns: repeat(3,1fr);
	}

	.index_summary_list li {
		margin: 0;
	}

}

/* -----------------
	レシピ
----------------- */

.recipe_index .recipe_keyword {
	margin: 20px 0 45px;
}

.recipe_index_column {
	margin: 0 0 60px;
}

.recipe_index_list {
	margin: 0 0 40px;
}

.recipe_index_list li {
	margin-bottom: 25px;
}

.recipe_index_list li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.recipe_index_list li figure {
	position: relative;
	overflow: hidden;
	width: calc(50% - 10px);
}

.recipe_index_list li figure::after {
	position: absolute;
	content: '';
	right: -30px;
	bottom: -30px;
	width: 60px;
	height: 60px;
	background: var(--col-site-def) url(../images/common/link_icon_w.svg) no-repeat 16px 11px / 7px auto;
	border-radius: 30px;
}

.recipe_index_list li figure img {
	height: 115px;
	object-fit: cover;
}

.recipe_index_list li a > div {
	width: calc(50% - 10px);
}

.recipe_index_list li h3 {
	margin: 0;
	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: 500;
}

@media screen and (min-width: 768px) {

	.recipe_index .recipe_keyword {
		margin: 20px 0 90px;
	}

	.recipe_index_column {
		margin: 0 0 80px;
	}

	.recipe_index_list {
		margin: 0 0 70px;
		display: grid;
		gap: 50px 60px;
		grid-template-columns: repeat(3,1fr);
	}

	.recipe_index_list li {
		margin: 0;
	}

	.recipe_index_list li a {
		display: block;
	}

	.recipe_index_list li figure {
		position: relative;
		overflow: hidden;
		width: auto;
	}

	.recipe_index_list li figure::after {
		position: absolute;
		content: '';
		right: -62px;
		bottom: -62px;
		width: 125px;
		height: 125px;
		background: var(--col-site-def) url(../images/common/link_icon_w.svg) no-repeat 35px 30px / 7px auto;
		border-radius: 70px;
	}

	.recipe_index_list li figure img {
		height: 243px;
	}

	.recipe_index_list li a > div {
		width: auto;
	}

	.recipe_index_list li h3 {
		margin: 10px 0 0;
		text-align: center;
	}

}

.page_recipe .entry_wrapper {
	padding-bottom: 30px;
}

.recipe_data {
	margin: 0 0 50px;
}

.recipe_left {
	margin: 0 0 25px;
}

.recipe_time {
	margin: 25px 0 0;
	padding: 3px 0 3px 30px;
	font-size: 1.6rem;
	background: url(../images/common/icon_timer.svg) no-repeat 0 center / 24px auto;
}

.recipe_text {
	margin: 0 0 50px;
	font-size: 1.6rem;
	line-height: 1.6;
}

.recipe_ingredient {
	margin: 0;
	padding: 0;
	list-style: none;
}

.recipe_flow {
	margin: 0 0 30px;
}

.recipe_movie {
	margin: 0 auto 50px;
}

@media screen and (min-width: 768px) {

	.page_recipe .entry_header_wrapper {
		padding-bottom: 120px;
	}

	.page_recipe .entry_wrapper {
		padding-bottom: 30px;
	}

	.recipe_data {
		margin: 0 0 80px;
		display: flex;
	}

	.recipe_left {
		margin: 0 4.5% 0 0;
		width: 47.5%;
		max-width: 520px;
	}

	.recipe_right {
		width: 48%;
		max-width: 530px;
	}

	.recipe_time {
		margin: 15px 0 0;
		padding: 0 0 0 30px;
		font-size: 1.8rem;
	}

	.recipe_text {
		margin: 0;
	}

	.recipe_flow {
		margin: 0 0 60px;
	}

	.recipe_movie {
		margin: 0 auto 80px;
		max-width: 960px;
	}

}

.recipe_keyword {
	margin: 0 0 40px;
	padding: 20px;
	border-radius: 20px;
	background: url(../images/top/recommend_back.png) no-repeat center center / cover;
}

.recipe_keyword h3 {
	margin: 0 0 15px;
	padding-left: 22px;
	font-size: 1.2rem;
	line-height: 1.4;
	background: url(../images/common/icon_search.svg) no-repeat 0 center / 15px auto;
	color: #4b9708;
}

.recipe_keyword_list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.recipe_keyword_list > li {
	font-size: 1.4rem;
}

.recipe_keyword_list > li > a {
	padding: 4px 14px;
	background: #fff;
	border-radius: 30px;
	display: block;
}

@media screen and (min-width: 768px) {

	.recipe_keyword {
		margin: 0 0 80px;
		padding: 35px 40px;
		border-radius: 30px;
	}

	.recipe_keyword h3 {
		margin: 0 0 25px;
		padding-left: 25px;
		font-size: 1.6rem;
	}

	.recipe_keyword_list {
		gap: 20px;
	}

	.recipe_keyword_list > li {
		font-size: 1.6rem;
	}

	.recipe_keyword_list > li > a {
		padding: 8px 20px;
	}

}

.btn_back {
	margin: 20px 0;
	display: flex;
	font-size: 1.4rem;
	justify-content: center;
}

.btn_back a {
	padding: 12px 30px;
	border-radius: 30px;
	text-align: center;
	border: 2px solid var(--col-site-def);
	display: block;
	background: url(../images/common/link_icon_g_r.svg) no-repeat 20px center / 7px auto;
	min-width: 200px;
}

.btn_back.btn_back_category {
	margin: 30px 0 -20px;
}

@media screen and (min-width: 768px) {

	.btn_back {
		margin: 30px 0;
		font-size: 1.6rem;
	}

	.btn_back a {
		padding: 14px 30px;
		min-width: 260px;
	}

	.btn_back.btn_back_category {
		margin: 80px 0 -30px;
	}

}

/* -----------------
	不動産センター
----------------- */

.entry_column .bukken_index_column h2 {
	margin-bottom: 70px;
}

.entry_column .bukken_index_column#news h2 {
	margin-top: 0;
}

.entry_column .bukken_index_list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.entry_column .bukken_index_list li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #c7d1db;
}

.entry_column .bukken_index_list li::after {
	display: none;
}

.entry_column .bukken_index_list li a {
	padding: 19px 30px 19px 25px;
	display: flex;
	background: url(../images/common/link_icon_b.svg) no-repeat right 30px center / 7px auto;
}

.entry_column .bukken_index_list li time {
	margin: 0 30px 0 0;
	font-size: 1.2rem;
	display: block;
}

.entry_column .bukken_index_list li .title {
	font-size: 1.6rem;
	line-height: 1.5;
}

@media screen and (min-width: 768px) {

	.entry_column .bukken_index_column h2 {
		margin-bottom: 70px;
	}

	.entry_column .bukken_index_column#news h2 {
		margin-top: 0;
	}

	.entry_column .bukken_index_list {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.entry_column .bukken_index_list li {
		margin: 0;
		padding: 0;
		border-bottom: 1px solid #c7d1db;
	}

	.entry_column .bukken_index_list li::after {
		display: none;
	}

	.entry_column .bukken_index_list li a {
		padding: 19px 30px 19px 25px;
		display: flex;
		background: url(../images/common/link_icon_b.svg) no-repeat right 30px center / 7px auto;
	}

	.entry_column .bukken_index_list li time {
		margin: 0 30px 0 0;
		font-size: 1.2rem;
		display: block;
	}

	.entry_column .bukken_index_list li .title {
		font-size: 1.6rem;
		line-height: 1.5;
	}

}

.bukken_area_list {
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: 10px;
}

.bukken_area_list li::after {
	display: none;
}

.bukken_area_list li a {
	padding: 15px 20px 20px;
	border: 2px solid var(--col-site-def);
	border-radius: 15px;
	background: #fffded;
	position: relative;
	display: block;
	overflow: hidden;
}

.bukken_area_list li a::after {
	position: absolute;
	content: '';
	right: -30px;
	bottom: -30px;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	background: var(--col-site-def) url(../images/common/link_icon_w.svg) no-repeat 15px 12px / 7px auto;
}

.bukken_area_list li figure {
	text-align: center;
}

.bukken_area_list li figure img {
	width: 45px;
	height: 115px;
}

.bukken_area_list li h3 {
	margin: 5px 0 0;
	padding: 0;
	background: none;
	font-size: 1.6rem;
	text-align: center;
	font-weight: normal;
}

.bukken_index .btn_back {
	margin: 80px 0 50px;
}

@media screen and (min-width: 768px) {

	.bukken_area_list {
		display: grid;
		grid-template-columns: repeat(5,1fr);
		gap: 10px;
	}

	.bukken_area_list li::after {
		display: none;
	}

	.bukken_area_list li a {
		padding: 15px 20px 20px;
		border: 2px solid var(--col-site-def);
		border-radius: 15px;
		background: #fffded;
		position: relative;
		display: block;
		overflow: hidden;
	}

	.bukken_area_list li a::after {
		position: absolute;
		content: '';
		right: -30px;
		bottom: -30px;
		width: 60px;
		height: 60px;
		border-radius: 30px;
		background: var(--col-site-def) url(../images/common/link_icon_w.svg) no-repeat 15px 12px / 7px auto;
	}

	.bukken_area_list li figure {
		text-align: center;
	}

	.bukken_area_list li figure img {
		width: 45px;
		height: 115px;
	}

	.bukken_area_list li h3 {
		margin: 5px 0 0;
		padding: 0;
		background: none;
		font-size: 1.6rem;
		text-align: center;
		font-weight: normal;
	}

	.bukken_index .btn_back {
		margin: 80px 0 50px;
	}

}

.page_bukken .entry_wrapper {
	padding-bottom: 20px;
}

.bukken_entry_top {
	margin: 0 0 30px;
}

.bukken_entry_top figure {
	margin: 0 0 50px;
}

.bukken_entry_top .bukken_map {
	margin: 0 -20px;
	height: 250px;
}

.bukken_entry_top .bukken_map > div {
	width: 100% !important;
	height: 250px !important;
}

@media screen and (min-width: 768px) {

	.bukken_entry_top {
		margin: 0 0 50px;
		display: flex;
	}

	.bukken_entry_top figure {
		margin: 0 5.4% 0 0;
		width: 47.3%;
		max-width: 520px;
	}

	.bukken_entry_top .bukken_map {
		margin: 0;
		width: 47.3%;
		max-width: 520px;
		width: 100%;
		height: auto;
	}

	.bukken_entry_top .bukken_map > div {
		height: 390px !important;
	}

}

.bukken_info {
	margin: 30px 0 70px;
	overflow-x: scroll;
}

.bukken_info table {
	margin-bottom: 20px;
	width: 100%;
}

.bukken_info th {
	padding: 15px 20px;
	border: 1px solid #eccb92;
	background: #fbe8c6;
	vertical-align: top;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: left;
	white-space: nowrap;
}

.bukken_info th.bukken_info_ver {
	padding: 15px 15px;
	width: 50px;
	vertical-align: middle;
	text-orientation: upright;
	writing-mode: vertical-rl;
	text-align: center;
}

.bukken_info td {
	padding: 15px 20px;
	border: 1px solid #eccb92;
	vertical-align: top;
	font-size: 1.6rem;
	text-align: left;
	white-space: nowrap;
}

.bukken_info td a {
	padding-right: 15px;
	background: url(../images/common/link_icon_g.svg) no-repeat right center / 7px auto;
}

@media screen and (min-width: 768px) {

	.bukken_info {
		margin: 50px 0 80px;
		overflow: hidden;
	}

	.bukken_info table {
		margin-bottom: 0;
	}

	.bukken_info th {
		padding: 22px 30px;
	}

	.bukken_info th.bukken_info_ver {
		padding: 22px 0 22px 30px;
	}

	.bukken_info td {
		padding: 22px 30px;
		white-space: inherit;
	}

}

.bukken_contact {
	margin: 0 0 50px;
}

.bukken_contact h2 {
	margin: 0 0 35px;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--col-p-link);
}

.bukken_contact p {
	margin: 0 0 30px;
	font-size: 1.6rem;
}

.bukken_contact p.note {
	padding-left: 1em;
	text-indent: -1em;
	color: #777777;
	font-size: 1.4rem;
}

.bukken_center {
	margin: 0 0 20px;
}

@media screen and (min-width: 768px) {

	.bukken_contact {
		margin: 0 0 80px;
		display: flex;
	}

	.bukken_contact h2 {
		margin: 0 0 65px;
		font-size: 3.4rem;
	}

	.bukken_center {
		margin: 0 5.4% 0 0;
		width: 47.3%;
		max-width: 520px;
	}

}

.bukken_contact_table {
	padding: 20px 25px;
	background: #f3f0df;
	border-radius: 20px;
}

.bukken_contact_table table {
	width: 100%;
}

.bukken_contact_table th {
	padding: 5px 20px 5px 0;
	vertical-align: top;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: left;
	color: var(--col-p-link);
	white-space: nowrap;
}

.bukken_contact_table td {
	padding: 5px 0;
	vertical-align: top;
	font-size: 1.6rem;
	text-align: left;
}

.bukken_contact_table th > div {
	display: flex;
	align-items: center;
}

.bukken_contact_table th i {
	margin-right: 10px;
	display: inline-block;
	width: 20px;
	height: 20px;
}

@media screen and (min-width: 768px) {

	.bukken_contact_table {
		padding: 30px 40px;
		width: 47.3%;
		max-width: 520px;
	}

}

.icon_address {
	background: url(../images/common/re_icon_map.svg) no-repeat center center / 16px auto;
}

.icon_tel {
	background: url(../images/common/re_icon_tel.svg) no-repeat center center / 16px auto;
}

.icon_fax {
	background: url(../images/common/re_icon_fax.svg) no-repeat center center / 20px auto;
}

.icon_email {
	background: url(../images/common/re_icon_mail.svg) no-repeat center center / 20px auto;
}

.icon_open {
	background: url(../images/common/re_icon_time.svg) no-repeat center center / 18px auto;
}

.icon_holiday {
	background: url(../images/common/re_icon_day.svg) no-repeat center center / 20px auto;
}

/* -----------------
	検索結果
----------------- */

.search_result {
	margin: 65px 0 40px;
}

.search_result h1 {
	margin: 0 0 40px;
	text-align: center;
	font-size: 2.8rem;
	font-weight: 500;
}

.result_summary h2 {
	margin: 0 0 40px;
	font-size: 2.0rem;
	color: var(--col-site-def);
}

.result_summary h2 em {
	font-weight: bold;
}

.result_summary h3 {
	margin: 0 0 20px;
	font-size: 1.6rem;
	color: var(--col-site-def);
}

.result_summary .no_entry {
	margin: 0 0 200px;
}

.result_summary_list {
	margin: 30px 0 0;
}

.result_summary_list li {
	margin: 0 0 30px;
}

.result_summary_list li a {
	display: block;
}

.result_summary_list li h4 {
	margin: 0 0 15px;
	padding: 2px 0 4px 15px;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.4;
	background: url(../images/common/h_line2.png) repeat-y 0 0 / 4px auto;
}

.result_summary_list li h4 p {
	font-size: 1.6rem;
}

@media screen and (min-width: 768px) {

	.search_result {
		margin: 0 0 80px;
	}

	.search_result h1 {
		margin: 0 0 60px;
		font-size: 4.0rem;
	}

	.result_summary h2 {
		margin: 0 0 60px;
		font-size: 2.8rem;
	}

	.result_summary h3 {
		margin: 0 0 30px;
		font-size: 1.8rem;
	}

	.result_summary .no_entry {
		margin: 0 0 200px;
	}

	.result_summary_list {
		margin: 50px 0 0;
	}

	.result_summary_list li {
		margin: 0 0 50px;
	}

	.result_summary_list li a {
		display: block;
	}

	.result_summary_list li h4 {
		margin: 0 0 20px;
		padding: 2px 0 4px 25px;
		font-size: 2.2rem;
	}

	.result_summary_list li a:hover h4 {
		text-decoration: underline;
	}

}

.update_column {
	margin: 20px 0 0;
}

.update_column li {
	font-size: 1.6rem;
	line-height: 1.5;
	border-bottom: 1px solid #c7d1db;
}

.update_column li a {
	padding: 20px 30px 20px 10px;
	display: block;
	background: url(../images/common/link_icon_b.svg) no-repeat right 10px center / 6px auto;
}

.update_column li time {
	margin: 0 0 15px;
	font-size: 1.2rem;
	display: block;
}

@media screen and (min-width: 768px) {

	.update_column {
		margin: 40px 0 0;
	}

	.update_column li a {
		padding: 20px 50px 20px 30px;
		display: flex;
	}

	.update_column li time {
		margin: 0;
		padding: 3px 30px 0 0;
		flex-shrink: 0;
	}

}

/* -----------------
	フォーム
----------------- */

.reform_form_wrapper {
	margin: -30px 0 0;
	padding: 60px 0 0;
}

.entry_column.reform_form_wrapper h3 {
	margin: 0 0 30px;
}

.entry_column.reform_form_wrapper h4 {
	margin: 0 0 30px;
}

.contact_table {
	margin: 0 0 30px;
	width: 100%;
}

.contact_table th {
	padding: 6px 15px;
	background: #f7f2e6;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: left;
	vertical-align: middle;
	display: block;
	width: auto;
}

.contact_table td {
	padding: 15px 15px;
	font-size: 1.6rem;
	text-align: left;
	border: 1px solid #f7f2e6;
	display: block;
}

@media screen and (min-width: 768px) {

	.reform_form_wrapper {
		margin: -70px 0 0;
		padding: 120px 0 0;
	}

	.entry_column.reform_form_wrapper h3 {
		margin: 0 0 40px;
	}

	.entry_column.reform_form_wrapper h4 {
		margin: 0 0 40px;
	}

	.contact_table {
		margin: 0 0 50px;
	}

	.contact_table th {
		padding: 20px 40px;
		font-size: 1.8rem;
		border-bottom: 1px solid #fff;
		width: 300px;
		display: table-cell;
	}

	.contact_table tr:last-child th {
		border-bottom: 1px solid #f7f2e6;
	}

	.contact_table td {
		padding: 20px 40px;
		display: table-cell;
	}

}

.contact_table input[type="tel"],
.contact_table input[type="text"],
.contact_table input[type="email"],
.contact_table textarea {
	padding: 10px;
	border: 2px solid #eccb92;
	font-size: 1.6rem;
	line-height: 1.5;
	border-radius: 15px;
	background: #fffef7;
}

.contact_table input[type="radio"] {
	position: relative;
	width: 30px;
	height: 30px;
	border: 2px solid #ead39d;
	border-radius: 30px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	flex-shrink: 0;
	cursor: pointer;
}

.contact_table .ipt_check input[type="radio"]:checked::before {
	position: absolute;
	content: '';
	left: -2px;
	top: -2px;
	bottom: 0;
	margin: auto;
	width: 30px;
	height: 30px;
	border: 2px solid #f9a515;
	border-radius: 30px;
}

.contact_table .ipt_check input[type="radio"]:checked::after {
	position: absolute;
	content: '';
	left: 3px;
	top: -1px;
	bottom: 0;
	margin: auto;
	width: 20px;
	height: 20px;
	border-radius: 20px;
	background: #f9a515;
}

.contact_table input[type="checkbox"] {
	position: relative;
	width: 30px;
	height: 30px;
	border: 2px solid #ead39d;
	border-radius: 4px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	flex-shrink: 0;
	cursor: pointer;
}

.contact_table .ipt_check input[type="checkbox"]:checked::before {
	position: absolute;
	content: '';
	left: -1px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 30px;
	height: 30px;
	border-radius: 4px;
	background: #f9a515 url(../images/common/icon_check.png) no-repeat center center / 15px auto;
}

.contact_table .select_box {
	border: 2px solid #eccb92;
	border-radius: 15px;
	background: none;
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.contact_table .select_box::before {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 38px;
	height: 100%;
	background: #eccb92;
}

.contact_table .select_box::after {
	position: absolute;
	content: '';
	right: 13px;
	bottom: 0;
	top: 0;
	margin: auto;
	width: 12px;
	height: 7px;
	background: url(../images/common/link_icon_w_b.png) no-repeat 0 0 / 12px auto;
}

.contact_table .select_box select {
	background: none;
	padding: 12px 55px 12px 15px;
	font-size: 1.6rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	z-index: 2;
	color: #333;
	position: relative;
}

.edito_form_column .contact_table {
	margin-top: 30px;
}

.marugoto_sanka {
	margin: 0 0 30px;
}

.marugoto_form_lead {
	margin: 20px 0;
}

@media screen and (min-width: 768px) {

	.contact_table input[type="text"],
	.contact_table input[type="email"],
	.contact_table textarea {
		padding: 15px 15px;
		border-radius: 20px;
	}

	.contact_table .select_box select {
		padding: 15px 55px 15px 15px;
	}

	.edito_form_column .contact_table {
		margin-top: 50px;
	}

	.marugoto_sanka {
		margin: 0 0 50px;
	}

	.marugoto_form_lead {
		margin: 40px 0;
	}

}

.contact_table .required {
	margin: 0 0 0 10px;
	padding: 0 6px 1px;
	font-size: 1.2rem;
	display: inline-block;
	background: #f6c1c1;
	color: #e01414;
	border-radius: 15px;
}

.contact_table .memo {
	margin: 5px 0;
	font-size: 1.4rem;
	color: #919191;
}

.form_input_midium {
	width: 100%;
}

.form_input_full {
	width: 100%;
}

.contact_table .ipt_check {
	margin: 10px 20px 10px 0;
	display: inline-block;
}

.contact_table .ipt_check label {
	display: inline;
}

.contact_table .ipt_check label span {
	white-space: nowrap;
	padding-left: 10px;
	line-height: 1.4;
}

.contact_table .form_error {
	margin: 10px 0 0;
	color: #e01414;
	font-size: 1.6rem;
	font-weight: bold;
}

.contact_table .form_2column div:first-child {
	margin-bottom: 10px;
}

.contact_table .form_2column_address {
	margin-bottom: 10px;
}

.contact_table .form_second_column {
	margin-top: 20px;
}

@media screen and (min-width: 768px) {

	.contact_table .required {
		padding: 1px 6px 2px;
	}

	.contact_table .memo {
		margin: 10px 0;
		font-size: 1.6rem;
	}

	.form_input_midium {
		width: 200px;
	}

	.contact_table .ipt_check {
		margin: 0 20px 0 0;
	}

	.contact_table .form_error {
		margin: 15px 0 0;
	}

	.contact_table_confirm th {
		width: 30%;
	}

	.contact_table .form_2column {
		display: flex;
	}

	.contact_table .form_2column_address {
		margin-bottom: 20px;
	}

	.contact_table .form_2column_address div:first-child {
		margin: 0 20px 0 0;
	}

}

.form_btn_send {
	margin: 0 0 30px;
}

.form_btn_box .btn_confirm,
.form_btn_box .btn_send,
.form_btn_box .btn_back {
	margin: 0 auto;
	padding: 15px 30px;
	border: 2px solid #76ba25;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	flex-shrink: 0;
	cursor: pointer;
	text-align: center;
	border-radius: 40px;
	font-size: 1.6rem;
	font-weight: 500;
	background: url(../images/common/link_icon_g.svg) no-repeat right 30px center / 7px auto;
	width: 100%;
	color: #333;
}

.form_btn_box .btn_back {
	background: url(../images/common/link_icon_g_r.svg) no-repeat left 30px center / 7px auto;
}

@media screen and (min-width: 768px) {

	.form_btn_box {
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.form_btn_send {
		margin: 0 0 0 60px;
		order: 2;
	}

	.form_btn_back {
		order: 1;
	}

	.form_btn_box .btn_confirm,
	.form_btn_box .btn_send,
	.form_btn_box .btn_back {
		padding: 20px 30px;
		width: 600px;
		font-size: 1.8rem;
		transition: all 0.3s ease;
	}

	.form_btn_box .btn_send:hover,
	.form_btn_box .btn_confirm:hover {
		color: #fff;
		background: #76ba25 url(../images/common/link_icon_w.svg) no-repeat right 30px center / 7px auto;
	}

	.form_btn_box .btn_send {
		width: 300px;
	}

	.form_btn_box .btn_back {
		width: 300px;
		background: url(../images/common/link_icon_g_r.svg) no-repeat left 30px center / 7px auto;
	}

	.form_btn_box .btn_back:hover {
		color: #fff;
		background: #76ba25 url(../images/common/link_icon_w_r.svg) no-repeat left 30px center / 7px auto;
	}

}


/* -----------------
	詳細ページ
----------------- */

.js-lazy-load {
	transform: translateX(0);
	opacity: 1;
}

.entry_header_wrapper {
	padding: 100px 0 50px;
	position: relative;
	overflow: hidden;
	background: url(../images/common/entry_title_bottom_sp.png) repeat-y center center / 100% auto;
}


.entry_header {
	margin: 90px 0 0;
	z-index: 2;
	position: relative;
	background: url(../images/common/entry_title_back_sp.png) no-repeat center top / 100% auto;
}

.entry_header_title {
	padding: 65px 0 10px;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.3;
	position: relative;
	z-index: 2;
}

.sp_entry_header_back,
.entry_header_back {
	height: 290px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: block;
	z-index: 1;
}

.sp_entry_header_back {
	z-index: 2;
}

.entry_header .inner {
	position: relative;
}

.entry_header .inner::after {
	position: absolute;
	content: '';
	right: 0;
	top: -20px;
	width: 105px;
	height: 77px;
	background: url(../images/common/entry_title_parts.png) no-repeat 0 0 / cover;
}

@media screen and (min-width: 768px) {

	.entry_header_wrapper {
		padding: 40px 0 120px;
		background: url(../images/common/entry_title_bottom_pc.png) repeat-y center top / 100% auto;
	}

	.entry_header {
		margin: 200px 0 0;
		background: url(../images/common/entry_title_back_pc.png) no-repeat center top / 100% auto;
	}

	.entry_header_title {
		padding: 90px 0 20px;
		font-size: 4.2rem;
	}

	.entry_header_back {
		height: 370px;
	}

	.sp_entry_header_back {
		display: none;
	}

	.entry_header .inner::after {
		top: 0;
		width: 177px;
		height: 130px;
	}

}

.index_header .page_link li,
.entry_header .page_link li {
	border-bottom: 1px solid #b48253;
	font-size: 1.4rem;
}

.index_header .page_link li {
	border-color: #adbd6c;
}

.index_header .page_link ul:has(> :nth-child(2)) li:last-child,
.entry_header .page_link ul:has(> :nth-child(2)) li:last-child {
	border: none;
}

.index_header .page_link li a,
.entry_header .page_link li a {
	display: block;
	padding: 12px 5px 12px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media screen and (min-width: 768px) {

	.index_header .page_link li,
	.entry_header .page_link li {
		font-size: 1.6rem;
	}

	.index_header .page_link li a,
	.entry_header .page_link li a {
		padding: 15px 15px 15px 0;
	}

}

.entry_wrapper {
	margin-top: -50px;
	padding: 50px 0 60px;
	position: relative;
	z-index: 2;
	border-radius: 40px 40px 0 0;
	background: var(--col-body);
}

.entry_wrapper.back_white {
	background: #fff;
}

@media screen and (min-width: 768px) {

	.entry_wrapper {
		margin-top: -100px;
		padding: 100px 0 80px;
		border-radius: 80px 80px 0 0;
	}

}

/* -----------------
	ユニットパーツ
----------------- */

.entry-container {
	margin: 0;
}

.entry_column p.btn_link {
	margin: 40px 0;
	font-size: 1.6rem;
	font-weight: 500;
}

.entry_column p.btn_link a {
	padding: 13px 62px 13px 30px;
	border-radius: 5px;
	border: 1px solid #ff5b00;
	background: url(../images/common/ico_link.svg) no-repeat right 28px center / 18px auto;
}

.entry_column p {
	margin: 0 0 20px;
	font-size: 1.6rem;
	line-height: 1.5;
}

.entry_column p.note {
	font-size: 1.4rem;
	color: #777777;;
}

.entry_column p.note_aster {
	font-size: 1.4rem;
	text-indent: -1em;
	padding-left: 1em;
	color: #777777;;
}

@media screen and (min-width: 768px) {

	.entry_column p.btn_link {
		margin: 40px 0;
		font-size: 1.6rem;
		font-weight: 500;
	}

	.entry_column .btn_link a:hover {
		color: #fff;
		border: 1px solid #dc3b00;
		background: #dc3b00 url(../images/common/ico_link_w.svg) no-repeat right 28px center / 18px auto;
	}

	.entry_column p {
		margin: 0 0 20px;
	}

}

.entry_column h2 {
	margin: 60px 0 50px;
	padding: 0 0 30px;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	background: url(../images/common/line_dot.png) no-repeat 0 bottom / 1095px auto;
}

.entry_column h3 {
	margin: 40px 0 35px;
	padding: 0 0 15px;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	background: url(../images/common/h_line1.png) no-repeat 0 bottom / 47px auto;
}

.entry_column h3.ptn_center {
	margin: 20px 0 15px;
	padding: 0;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.4;
	background: none;
	text-align: center;
}

.entry_column .media_auto + h3.ptn_center,
.entry_column .media_s + h3.ptn_center,
.entry_column .media_m + h3.ptn_center,
.entry_column .media_l + h3.ptn_center {
	margin-top: -15px;
}

.entry_column .media_auto:has( > p.caption ) + h3.ptn_center,
.entry_column .media_s:has( > p.caption ) + h3.ptn_center,
.entry_column .media_m:has( > p.caption ) + h3.ptn_center,
.entry_column .media_l:has( > p.caption ) + h3.ptn_center {
	margin-top: -10px;
}

.recipe_flow h2,
.entry_column h4 {
	margin: 40px 0 30px;
	padding: 0;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--col-p-link);
	background: none;
}

.recipe_ingredient_box {
	margin: 40px 0 30px;
}

h2.recipe_ingredient_title {
	margin: 0 0 15px;
	padding: 0;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--col-p-link);
	background: none;
}

.recipe_unit {
	margin: 0;
	font-size: 1.6rem;
}

.entry_column h5 {
	margin: 35px 0 25px;
	padding: 5px 0 5px 15px;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.4;
	background: url(../images/common/h_line2.png) repeat-y 0 0 / 4px auto;
}

@media screen and (min-width: 768px) {

	.entry_column h2 {
		margin: 100px 0 80px;
		padding: 0 0 40px;
		font-size: 4.2rem;
	}

	.entry_column h3 {
		margin: 75px 0 70px;
		padding: 0 0 25px;
		font-size: 3.4rem;
	}

	.recipe_flow h2,
	.entry_column h4 {
		margin: 75px 0 70px;
		font-size: 3.4rem;
	}

	.recipe_ingredient_box {
		margin: 60px 0;
	}

	h2.recipe_ingredient_title {
		margin: 0 0 20px;
		font-size: 3.4rem;
	}

	.entry_column h5 {
		margin: 60px 0 50px;
		padding: 5px 0 8px 25px;
		font-size: 2.6rem;
	}

	.entry_column h3.ptn_center {
		margin: 30px 0 20px;
		font-size: 2.6rem;
	}

	.entry_column .media_auto + h3.ptn_center,
	.entry_column .media_s + h3.ptn_center,
	.entry_column .media_m + h3.ptn_center,
	.entry_column .media_l + h3.ptn_center {
		margin-top: -30px;
	}

	.entry_column .media_auto:has( > p.caption ) + h3.ptn_center,
	.entry_column .media_s:has( > p.caption ) + h3.ptn_center,
	.entry_column .media_m:has( > p.caption ) + h3.ptn_center,
	.entry_column .media_l:has( > p.caption ) + h3.ptn_center {
		margin-top: -15px;
	}

}

.entry_column p a {
	text-decoration: underline;
}

.entry_column p:not([class]) a {
	color: var(--col-p-link);
}

.entry_column p em {
	color: var(--col-p-link);
	font-weight: bold;
}
.entry_column p strong {
	font-weight: bold;
}

.entry_column p .p_min {
  font-size: 1.4rem;
}

.entry_column p.a_center {
	text-align: center;
}

.entry_column p.a_right {
	text-align: right;
}

.entry_column p.line {
	margin: 30px 0;
	padding: 0;
	line-height: 1px;
	text-indent: -9999px;
	clear: both;
	border-bottom: 1px solid var(--col-p-link);
}

.entry_column p.space {
	margin: 30px 0;
	padding: 0;
	line-height: 1px;
	text-indent: -9999px;
	clear: both;
}

@media screen and (min-width: 768px) {

	.entry_column p a:hover {
		text-decoration: none;
	}

	.entry_column p.line {
		margin: 50px 0;
	}

	.entry_column p.space {
		margin: 50px 0;
	}

}

.entry_column p.link_normal a {
	padding-right: 15px;
	background: url(../images/common/link_icon_g.svg) no-repeat right center / 7px auto;
}

.entry_column p.link_out a {
	padding-right: 22px;
	background: url(../images/common/external_link_icon.svg) no-repeat right center / 17px auto;
}

.entry_column p.link_pdf a {
	padding: 1px 25px 1px 0;
	background: url(../images/common/icon_pdf.svg) no-repeat right center / 18px auto;
}

.entry_column p.link_word a {
	padding: 1px 25px 1px 0;
	background: url(../images/common/icon_word.svg) no-repeat right center / 18px auto;
}

.entry_column p.link_excel a {
	padding: 1px 25px 1px 0;
	background: url(../images/common/icon_excel.svg) no-repeat right center / 18px auto;
}

.entry_column p.link_ppt a {
	padding: 1px 25px 1px 0;
	background: url(../images/common/icon_ppt.svg) no-repeat right center / 18px auto;
}

.entry_column p.link_pdf a,
.entry_column p.link_normal a,
.entry_column p.link_out a,
.entry_column p.link_word a,
.entry_column p.link_excel a,
.entry_column p.link_ppt a,
.entry_column p.btn_link a,
.entry_column p.btn_out a {
	text-decoration: none;
	position: relative;
}

.entry_column p.btn_link,
.entry_column p.btn_out {
	margin: 30px 0;
	font-weight: 500;
	line-height: 1.4;
	font-size: 1.4rem;
	display: flex;
	justify-content: center;
}

.entry_column p.btn_link a,
.entry_column p.btn_out a {
	border-radius: 30px;
	text-align: center;
	border: 1px solid var(--col-site-def);
	display: block;
	position: relative;
	overflow: hidden;
}

@media screen and (min-width: 768px) {

	.entry_column p.link_pdf a::after,
	.entry_column p.link_normal a::after,
	.entry_column p.link_out a::after,
	.entry_column p.link_word a::after,
	.entry_column p.link_excel a::after,
	.entry_column p.link_ppt a::after {
		position: absolute;
		content: '';
		left: 0;
		bottom: -5px;
		width: 0;
		height: 1px;
		background: #ff5b00;
		transition: all 0.25s ease 0s;
	}

	.entry_column p.link_pdf a:hover,
	.entry_column p.link_normal a:hover,
	.entry_column p.link_out a:hover,
	.entry_column p.link_word a:hover,
	.entry_column p.link_excel a:hover,
	.entry_column p.link_ppt a:hover {
		color: #dc3b00;
	}

	.entry_column p.link_pdf a:hover::after,
	.entry_column p.link_normal a:hover::after,
	.entry_column p.link_out a:hover::after,
	.entry_column p.link_word a:hover::after,
	.entry_column p.link_excel a:hover::after,
	.entry_column p.link_ppt a:hover::after {
		width: 100%;
	}

	.entry_column p.btn_link,
	.entry_column p.btn_out {
		margin: 30px 0;
		font-size: 1.6rem;
		display: block;
	}

	.entry_column p.btn_link a,
	.entry_column p.btn_out a {
		display: inline-block;
	}

}


.entry_column p.btn_link a {
	padding: 10px 50px;
	background: url(../images/common/link_icon_g.svg) no-repeat right 20px center / 7px auto;
}

.entry_column p.btn_out a {
	padding: 10px 50px;
	background: url(../images/common/external_link_icon.svg) no-repeat right 20px center / 17px auto;
}

@media screen and (min-width: 768px) {

	.entry_column p.btn_link a,
	.entry_column p.btn_out a {
		padding: 10px 60px;
	}

/*
  .entry_column p.btn_large_center a::before,
  .entry_column p.btn_link a::before,
  .entry_column p.btn_pdf a::before,
  .entry_column p.btn_out a::before,
  .entry_column p.btn_word a::before,
  .entry_column p.btn_excel a::before,
  .entry_column p.btn_ppt a::before,
  .entry_column p.btn_zip a::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: calc(100% + 1px);
    background: #dc3b00;
    transform: translateX(-100%);
    transition: all 0.20s ease 0s;
    z-index: -1;
    overflow: hidden;
  }

  .entry_column p.btn_large_center a::before {
    z-index: inherit;
  }

  .entry_column p.btn_large_center a:hover::before,
  .entry_column p.btn_link a:hover::before,
  .entry_column p.btn_pdf a:hover::before,
  .entry_column p.btn_out a:hover::before,
  .entry_column p.btn_word a:hover::before,
  .entry_column p.btn_excel a:hover::before,
  .entry_column p.btn_ppt a:hover::before,
  .entry_column p.btn_zip a:hover::before {
    transform: translateX(0);
  }
*/
/*
  .entry_column p.btn_out a {
    padding: 10px 54px 10px 28px;
    background: url(../images/common/ico_blank.svg) no-repeat right 27px center / 12px auto;
  }

  .entry_column p.btn_out a:hover {
    background: url(../images/common/ico_blank_w.svg) no-repeat right 27px center / 12px auto;
  }

  .entry_column p.btn_pdf a {
    padding: 10px 54px 10px 28px;
    background: url(../images/common/ico_pdf.svg) no-repeat right 27px center / 18px auto;
  }

  .entry_column p.btn_pdf a:hover {
    background: url(../images/common/ico_pdf_w.svg) no-repeat right 27px center / 18px auto;
  }

  .entry_column p.btn_word a {
    padding: 10px 54px 10px 28px;
    background: url(../images/common/ico_word.svg) no-repeat right 27px center / 18px auto;
  }

  .entry_column p.btn_word a:hover {
    background: url(../images/common/ico_word_w.svg) no-repeat right 27px center / 18px auto;
  }

  .entry_column p.btn_excel a {
    padding: 10px 54px 10px 28px;
    background: url(../images/common/ico_excel.svg) no-repeat right 27px center / 18px auto;
  }

  .entry_column p.btn_excel a:hover {
    background: url(../images/common/ico_excel_w.svg) no-repeat right 27px center / 18px auto;
  }

  .entry_column p.btn_ppt a {
    padding: 10px 54px 10px 28px;
    background: url(../images/common/ico_ppt.svg) no-repeat right 27px center / 18px auto;
  }

  .entry_column p.btn_ppt a:hover {
    background: url(../images/common/ico_ppt_w.svg) no-repeat right 27px center / 18px auto;
  }
*/
}

.entry_column ul {
	margin: 30px 0;
}

.recipe_ingredient li,
.entry_column ul li {
	margin: 0 0 20px;
	padding-left: 20px;
	font-size: 1.6rem;
	line-height: 1.4;
	position: relative;
}

.recipe_ingredient li::after,
.entry_column ul li::after {
	position: absolute;
	content: '';
	left: 0;
	top: 7px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--col-p-link);
}

.recipe_flow ol,
.entry_column ol {
  margin: 30px 0;
  padding: 0;
  list-style: none;
  counter-reset: ol_li;
}

.recipe_flow ol li,
.entry_column ol li {
	margin: 0 0 20px;
	padding-left: 30px;
	text-indent: -14px;
	font-size: 1.6rem;
	line-height: 1.4;
	position: relative;
}

.recipe_flow ol li::before,
.entry_column ol li::before {
	counter-increment: ol_li;
	content: counter(ol_li)'.';
	color: var(--col-p-link);
	left: -12px;
	position: relative;
	font-size: 1.8rem;
	font-weight: 700;
	font-family: "Baloo 2", sans-serif;
}

@media screen and (min-width: 768px) {

	.entry_column ul li {
		margin: 0 0 18px;
	}

	.recipe_flow ol li,
	.entry_column ol li {
		margin: 0 0 18px;
		padding-left: 25px;
	}

}

.entry_column p.caption {
	margin-top: 5px;
	font-size: 1.2rem !important;
}

.entry_column p.btn_large_center {
	margin: 30px auto;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	width: 100%;
}

.entry_column p.btn_large_center a {
	padding: 15px 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid var(--col-site-def);
	border-radius: 50px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	color: inherit;
	background: url(../images/common/link_icon_g.svg) no-repeat right 20px center / 7px auto;
}

@media screen and (min-width: 768px) {

	.entry_column p.caption {
		margin-top: 10px;
		font-size: 1.6rem !important;
	}

	.entry_column p.btn_large_center {
		margin: 50px auto;
		font-size: 1.8rem;
		width: 600px;
	}

	.entry_column p.btn_large_center a {
		padding: 20px 50px;
		background-position: right 30px center;
	}

}

.entry_column .column_box {
	margin: 30px 0;
	padding: 30px;
	background: #f3f0df;
	border-radius: 20px;
	width: 100%;
}

.entry_column .column_box * {
	margin-top: 0;
}

.entry_column .column_box *:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 768px) {

	.entry_column .column_box {
		margin: 50px 0;
		padding: 35px 40px;
	}

}

.entry_tab_column {
	margin: 30px 0 0;
}

.entry_column .entry_tab_column ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.entry_column .entry_tab_column li {
	margin: 10px 0 0;
	padding: 0;
	width: calc(50% - 2.5px);
	background: var(--col-site-def);
	border-bottom: 5px solid #fff;
	border-radius: 5px 5px 0 0;
}

.entry_column .entry_tab_column li::after {
	display: none;
}

.entry_column .entry_tab_column li a {
	padding: 17px 0;
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
	display: block;
}

.entry_column .entry_tab_column li.act {
	margin: 0;
	border-top: 5px solid var(--col-site-def);
	border-bottom: 5px solid #f4f7e4;
	background: #f4f7e4;
	position: relative;
}

.entry_column .entry_tab_column li.act::after {
	position: absolute;
	content: '';
	left: -5px;
	top: -15px;
	width: 20px;
	height: 20px;
	display: block;
	border-radius: 0;
	background: url(../images/common/icon_flower.png) no-repeat 0 0 / 20px auto;
}

.entry_column .entry_tab_column li.act a {
	color: inherit;
}

.column_tab_left,
.column_tab_right {
	margin: 0 -20px 30px;
	padding: 40px 20px;
	border-radius: 0 0 10px 10px;
	background: #f4f7e4;
}

.column_tab_right {
	display: none;
}

@media screen and (min-width: 768px) {

	.entry_column .entry_tab_column li {
		border-radius: 8px 8px 0 0;
	}

	.entry_column .entry_tab_column li a {
		padding: 20px 0;
		font-size: 1.6rem;
	}

	.entry_column .entry_tab_column li.act {
		border-top: 10px solid var(--col-site-def);
	}

	.entry_column .entry_tab_column li.act::after {
		left: 10px;
		top: -15px;
		width: 22px;
		height: 22px;
		background-size: 22px auto;
	}

	.column_tab_left,
	.column_tab_right {
		margin: 0 0 60px;
		padding: 80px 80px 40px;
	}

}

.entry_column .column_tab_left > h2:first-child,
.entry_column .column_tab_right > h2:first-child,
.entry_column .column_tab_left > h3:first-child,
.entry_column .column_tab_right > h3:first-child,
.entry_column .column_tab_left > h4:first-child,
.entry_column .column_tab_right > h4:first-child,
.entry_column .column_tab_left > h5:first-child,
.entry_column .column_tab_right > h5:first-child,
.entry_column > h2:first-child,
.entry_column > h3:first-child,
.entry_column > h4:first-child,
.entry_column > h5:first-child,
.entry_column [class*="column1_"] hr:first-child + h2,
.entry_column [class*="column1_"] hr:first-child + h3,
.entry_column [class*="column1_"] hr:first-child + h4,
.entry_column [class*="column1_"] hr:first-child + h5,
.entry_column [class*="column2_"] hr:first-child + h2,
.entry_column [class*="column2_"] hr:first-child + h3,
.entry_column [class*="column2_"] hr:first-child + h4,
.entry_column [class*="column2_"] hr:first-child + h5,
.entry_column [class*="column3_"] hr:first-child + h2,
.entry_column [class*="column3_"] hr:first-child + h3,
.entry_column [class*="column3_"] hr:first-child + h4,
.entry_column [class*="column3_"] hr:first-child + h5,
.entry_column [class*="column1_"] *:first-child,
.entry_column [class*="column2_"] *:first-child,
.entry_column [class*="column3_"] *:first-child {
	margin-top: 0;
}

.entry_column [class*="column1_"] *:last-child,
.entry_column [class*="column2_"] *:last-child,
.entry_column [class*="column3_"] *:last-child {
	margin-bottom: 0;
}

.entry_column [class*="column1_"] h3:not([class]),
.entry_column [class*="column2_"] h3:not([class]),
.entry_column [class*="column3_"] h3:not([class]) {
	margin: 20px 0 10px;
	padding: 0 0 10px;
/*	font-size: 1.8rem;*/
	font-weight: 600;
}

@media screen and (min-width: 768px) {

	.entry_column [class*="column1_"] h3:not([class]),
	.entry_column [class*="column2_"] h3:not([class]),
	.entry_column [class*="column3_"] h3:not([class]) {
		margin: 25px 0 20px;
	}

}

.entry_column .map_wide {
	width: 100%;
	margin: 0;
}

.entry_column .entry-container .acms-table-scrollable th,
.entry_column .entry-container .acms-table-scrollable td {
  display: table-cell;
  white-space: nowrap;
}

.entry_column .entry-container table {
	margin: 30px 0 10px;
	width: 100%;
}

.entry_column .entry-container th {
	padding: 15px 10px;
	vertical-align: middle;
	background: #fbe8c6;
	font-size: 1.8rem;
	font-weight: 500;
	border: 1px solid #eccb92;
	white-space: nowrap;
}

.entry_column .entry-container td {
	padding: 15px 15px;
	font-size: 1.6rem;
	line-height: 1.4;
	border: 1px solid #eccb92;
	vertical-align: top;
}

[class^=column-table] .entry-container {
    margin-bottom: 30px;
    overflow-x: auto;
}

@media screen and (min-width: 768px) {

	.entry_column .map_wide {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
	}

	.entry_column .entry-container table {
		margin: 40px 0 10px;
	}

	.entry_column .entry-container th {
		padding: 25px 50px;
	}

	.entry_column .entry-container td {
		padding: 25px 30px;
	}

	[class^=column-table] .entry-container {
    	margin-bottom: 30px;
    	overflow-x: auto;
	}

}


@media screen and (min-width: 768px) {

	.entry_column .video_l {
		width: 1100px;
	}

	.entry_column .video_m {
		width: 520px;
	}

	.entry_column .video_s {
		width: 330px;
	}

}

.entry_column .column_pc {
  display: none;
}

.entry_column .column_sp {
  display: block;
}

@media screen and (min-width: 768px) {

  .entry_column .column_pc {
    display: block;
  }

  .entry_column .column_sp {
    display: none;
  }

}


/* -----------------
	カラム設定
----------------- */

.column_clear {
  clear: both;
}

.column_box,
.entry_column [class*="column2_"],
.entry_column [class*="column3_"],
.entry_column [class*="column4_"] {
	margin-bottom: 30px;
}

.entry_column [class*="column4_"] {
	margin: 0 30px 30px 0;
	float: left;
	width: calc(50% - 15px);
}

.entry_column .column2_left,
.entry_column .column2_right {
	margin: 0 20px 30px 0;
	float: left;
	width: calc(50% - 10px);
}

.entry_column .column3_left,
.entry_column .column3_center,
.entry_column .column3_right {
	margin: 0 17px 30px 0;
	float: left;
	width: calc(33.3333% - 12px);
}

.entry_column .column3_right,
.entry_column .column2_right,
.entry_column .column4_column2,
.entry_column .column4_column4 {
	margin-right: 0;
}

.entry_column [class*="column4_"] p {
	margin: 5px 0 15px;
	font-size: 1.2rem;
}

.entry_column [class*="column4_"] .btn_download a {
	padding: 10px 25px 10px 15px;
	border-radius: 50px;
	border: 2px solid var(--col-site-def);
	text-align: center;
	display: block;
	background: url(../images/common/dl_icon.svg) no-repeat right 15px center / 12px auto;
	font-size: 1.4rem;
}


.column-media-left,
.column-video-left,
.column-media-right,
.column-video-right {
  float: none;
}

.entry_column [class*="column-map"],
.entry_column [class*="column-media"],
.entry_column [class*="column-video"] {
  margin-bottom: 30px;
}

.entry_column [class*="column2_"] [class*="column-media"],
.entry_column [class*="column2_"] [class*="column-video"],
.entry_column [class*="column2_"] [class*="column-map"],
.entry_column [class*="column3_"] [class*="column-media"],
.entry_column [class*="column3_"] [class*="column-video"],
.entry_column [class*="column3_"] [class*="column-map"] {
	margin-bottom: 15px;
}


.entry_column [class*="column2_"] p,
.entry_column [class*="column3_"] p {
	margin-bottom: 15px;
	font-size: 1.4rem;
}

.entry_column [class*="column2_"] img,
.entry_column [class*="column3_"] img {
	width: 100%;
}

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

	.entry_column [class*="column-map"] > div {
		height: 250px !important;
	}

}

@media screen and (min-width: 768px) {

	.entry_column .column2_left {
		margin-right: 5.5%;
		float: left;
		width: 47.25%;
		max-width: 520px;
	}

	.entry_column .column2_right {
		float: left;
		width: 47.25%;
	}

	.entry_column .column3_left {
		margin-right: 3.6%;
		float: left;
		max-width: 340px;
		width: 31%;
	}

	.entry_column .column3_center {
		margin-right: 3.6%;
		float: left;
		max-width: 340px;
		width: 31%;
	}

	.entry_column .column3_right {
		float: left;
		max-width: 340px;
		width: 31%;
	}

	.entry_column [class*="column2_"],
	.entry_column [class*="column3_"],
	.entry_column [class*="column4_"] {
		margin-bottom: 60px;
	}

	.entry_column [class*="column4_"] {
		margin: 0 50px 50px 0;
		float: left;
		width: calc(25% - 38px);
	}

	.entry_column .column4_column2 {
		margin-right: 50px;
	}

	.entry_column .column4_column4 {
		margin-right: 0;
	}

	.entry_column [class*="column4_"] p {
		margin: 15px 0 25px;
		font-size: 1.6rem;
	}

	.entry_column [class*="column4_"] .btn_download a {
		padding: 15px 15px;
		background-position: right 20px center;
		font-size: 1.6rem;
	}

	.column-media-left,
	.column-video-left {
		margin-right: 50px;
		float: left;
	}

	.column-media-right,
	.column-video-right {
		margin-left: 50px;
		float: right;
	}

	.entry_column [class*="column-map"],
	.entry_column [class*="column-media"],
	.entry_column [class*="column-video"] {
		margin-bottom: 60px;
	}

	.entry_column [class*="column2_"] .column-media-auto,
	.entry_column [class*="column2_"] .column-media-left,
	.entry_column [class*="column2_"] .column-media-center,
	.entry_column [class*="column2_"] .column-media-right,
	.entry_column [class*="column3_"] .column-media-auto,
	.entry_column [class*="column3_"] .column-media-left,
	.entry_column [class*="column3_"] .column-media-center,
	.entry_column [class*="column3_"] .column-media-right,
	.entry_column [class*="column2_"] .column-video-auto,
	.entry_column [class*="column2_"] .column-video-left,
	.entry_column [class*="column2_"] .column-video-center,
	.entry_column [class*="column2_"] .column-video-right,
	.entry_column [class*="column3_"] .column-video-auto,
	.entry_column [class*="column3_"] .column-video-left,
	.entry_column [class*="column3_"] .column-video-center,
	.entry_column [class*="column3_"] .column-video-right {
		margin-bottom: 20px;
	}

	.entry_column [class*="column2_"] [class*="column-media"],
	.entry_column [class*="column2_"] [class*="column-video"],
	.entry_column [class*="column2_"] [class*="column-map"],
	.entry_column [class*="column3_"] [class*="column-media"],
	.entry_column [class*="column3_"] [class*="column-video"],
	.entry_column [class*="column3_"] [class*="column-map"] {
		margin-bottom: 20px;
	}

	.entry_column [class*="column2_"] p,
	.entry_column [class*="column3_"] p {
		margin-bottom: 20px;
		font-size: 1.6rem;
	}

	.entry_column .column2_left_3 {
		margin-right: 5.5%;
		float: left;
		width: 28.35%;
	}

	.entry_column .column2_right_7 {
		float: left;
		width: 63.35%;
	}

	.entry_column .column2_left_7 {
		margin-right: 5.5%;
		float: left;
		width: 63.35%;
	}

	.entry_column .column2_right_3 {
		float: left;
		width: 28.35%;
	}

}

@media screen and (min-width: 768px) {

	.page_start.page_entry .recruit .entry_column .column-table- th {
		width: 250px;
	}

}


/* -----------------
	footer
----------------- */

.footer {
	background: var(--col-back-def);
}

.footer_column {
	padding: 20px 0;
	color: var(--col-p-link);
	position: relative;
}

.footer_name {
	margin: 10px 0 15px;
	font-size: 1.6rem;
	font-weight: 500;
}

.footer_name a {
	color: var(--col-p-link);
}

.footer_addr {
	font-size: 1.4rem;
	line-height: 1.8;
}

.footer_tel {
	font-size: 1.4rem;
	line-height: 1.8;
	display: flex;
}

.footer_tel dt {
	margin: 0 5px 0 0;
}

.footer_tel dd {
	margin: 0 15px 0 0;
}

.footer_tel dd a {
	color: var(--col-p-link);
}

.footer_chara {
	display: none;
}

.btn_up {
	width: 75px;
	position: absolute;
	bottom: 65px;
	right: -10px;
}

.btn_up a {
	display: block;
}

.footer_bottom {
	padding: 15px 0;
	background: var(--col-p-link);
}

.footer_bottom p {
	color: var(--col-back-def);
	font-size: 1.0rem;
	text-align: center;
}

.back_column {
	text-align: center;
	background: var(--col-site-def);
}

.back_column p a {
	padding: 8px 0;
	color: #f4f7e4;
	font-size: 1.6rem;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
}

.icon_left_w {
	position: absolute;
	left: 20px;
	display: block;
	float: left;
	width: 10px;
	height: 20px;
	transform: scale(-1, 1);
	background: url(../images/common/link_icon_w.svg) no-repeat center center / 7px auto;
}

@media screen and (min-width: 768px) {

	.footer_column {
		padding: 25px 0 50px;
		display: flex;
		justify-content: space-between;
	}

	.footer_name {
		margin: 25px 0;
		font-size: 3.0rem;
	}

	.footer_addr {
		font-size: 1.6rem;
		line-height: 1.6;
	}

	.footer_tel {
		font-size: 1.6rem;
		line-height: 1.6;
	}

	.footer_chara {
		display: block;
		position: absolute;
		width: 222px;
		bottom: -5px;
		right: 150px;
	}

	.btn_up {
		width: 100px;
		position: relative;
		right: auto;
		bottom: auto;
	}

	.back_column p a {
		padding: 14px 0;
	}

	.icon_left_w {
		position: relative;
		left: -50px;
	}

}

/* -----------------------
　　　404
----------------------- */

#notfound {
	color: #373228;
}

#wrapper_404 {
	margin: 10px;
	padding: 30px;
	width: auto;
    background-image: none;
}

#box_404 {
	border-radius: 5px;
}

.inner_left404 {
    margin-right: 0;
    margin-bottom: 40px;
	text-align: left;
}

.inner_left404 img {
	margin: 0 auto;
	width: 200px;
}

.inner_right404 {
    font-size: 1.4rem;
}

.inner_right404 h1 {
    font-size: 2.0rem;
    margin-bottom: 20px;
	text-align: left;
}

.inner_right404 p {
    margin-bottom: 10px;
}

.inner_right404 p a {
	text-decoration: underline;
}

#copyright_404 {
    display: block;
	margin: 10px 10px 0;
	text-align: center;
	font-size: 1.2rem;
}

.inner_left404 .site_logo_gold {
	margin: 0 10px 0 0;
	width: 40px;
}

.inner_left404 .site_logo_text {
	width: 130px;
}

.inner_left404 a {
	display: flex;
	align-items: center;
}

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

	#notfound {
	    padding-top: 50px;
	}

	#wrapper_404 {
		margin: 0 auto;
		padding: 60px 60px 0 70px;
		width: 1100px;
	}

	#box_404 {
		margin-bottom: 40px;
		padding: 0;
		display: flex;
		align-items: center;
	}

	.inner_left404 {
	    margin-right: 50px;
	    margin-bottom: 0;
	    text-align: left;
	}

	.inner_left404 img {
		margin: 0 auto;
		width: 250px;
		text-align: center;
	}

	.inner_right404 {
	    text-align: left;
	    font-size: 16px;
	}

	.inner_right404 h1 {
	    font-size: 24px;
	    margin-bottom: 20px;
	    text-align: left;
	}

	.inner_left404 .site_logo_gold {
		margin: 0 10px 0 0;
		width: 40px;
	}

}

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

	#wrapper_404 {
		padding: 60px 20px;
		width: 600px;
	}

	#box_404 {
		margin-bottom: 20px;
	}

	.inner_left404 {
	    margin-right: 30px;
	}

	.inner_left404 img {
		width: 200px;
	}

	.inner_right404 {
	    text-align: left;
	    font-size: 14px;
	}

	.inner_right404 h1 {
	    font-size: 20px;
	}

}

#adminBox .acms-admin-btn-admin {
	padding: 5px;
	font-size: 1.2rem;
}

#adminBox {
    margin-bottom: 0 !important;
    height: 80px;
    width: 100%;
    z-index: 100;
}

.acms-admin-btn-action-group th,
.acms-admin-btn-action-group td {
	padding-right: 10px !important;
	background-image: none !important;
	font-size: 1.4rem !important;
	white-space: nowrap !important;
}

.acms-admin-form .entryFormLiteEditor, .acms-admin-form textarea,
.acms-admin-btn,
.acms-admin-form select {
	font-size: 14px;
}

.lg_1 #adminBox,
.lg_2 #adminBox {
	position: fixed;
	top: 0;
}


@media screen and (min-width: 768px) {

	#adminBox .acms-admin-btn-admin {
		padding: 10px;
		font-size: 1.2rem;
	}

	#adminBox {
	    height: 100px;
	}

}

.titleWrapper {
	margin: 0 auto;
	padding: 40px 60px 10px;
	max-width: 1100px;
}

.titleWrapper h2 {
	margin: 0 0 30px 0;
	font-size: 3.0rem;
	font-weight: 600;
}

.custom_field_edit h3 {
	padding: 20px 10px;
	font-size: 1.8rem;
	font-weight: bold;
}

.entryFormLiteEditor a {
	text-decoration: underline;
	color: #0075DE;
}

.entryFormLiteEditor em {
  color: #d84708;
  font-weight: bold;
}

.entryFormLiteEditor strong {
  font-weight: bold;
}

.entryFormLiteEditor span.p_min {
	font-size: 1.2rem;
}

.js-lazy-load {
	transform: translateY(0);
	transition: opacity 0.3s cubic-bezier(0.5, 0, 0, 1);
}


.entryFormSelectBottom {
  max-width: inherit !important;
}


.entryFormColumn .entryFormColumnHead .entryFormColumnHeadLayoutBox input,
.entryFormColumn .entryFormColumnHead .entryFormColumnHeadLayoutBox select {
	max-width: inherit;
}

@media (min-width: 768px) {
  .acms-admin-inline-btn .acms-admin-btn-admin,
  .formEntryActionUnit .acms-admin-btn-admin {
    font-size: 14px;
  }

  .comPostWrapper .acms-admin-btn-admin {
    font-size: 16px;
  }
}

.acms-cell-text-center {
  text-align: center !important;
}

.acms-cell-text-right {
  text-align: right !important;
}

.acms-cell-text-left {
  text-align: left !important;
}

.acms-cell-text-nowrap {
  white-space: nowrap !important;
}

.acms-cell-text-bold {
  font-weight: bold !important;
}

.acms-cell-text-top {
  vertical-align: top !important;
}

.acms-cell-text-middle {
  vertical-align: middle !important;
}

.acms-cell-text-bottom {
  vertical-align: bottom !important;
}

