@charset "UTF-8";
.opening {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
}
.opening .opening_logo {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
}
.opening .opening_logo img {
	width: 200px;
	height: 198px;
}
.opening.is-active {
	opacity: 0;
	visibility: hidden;
}
.opening_logo.is-active {
	opacity: 1;
	visibility: visible;
}
@media (max-width: 767px) {
	.opening .opening_logo {
		text-align: center;
	}
	.opening .opening_logo img {
		width: 100px;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	80% {
		opacity: 0;
	}
	81% {
		opacity: 0;
		display: none;
	}
}
.ttl_h2 span {
	font-size: 14px;
	border-top: 2px solid #E60013;
	padding-top: 10px;
	display: block;
	width: 110px;
	font-weight: 500;
}
.ttl_h2 h2 {
	font-size: 36px;
	font-weight: 700;
	margin-top: 30px;
	width: fit-content;
	line-height: 1.0;
	letter-spacing: 0.1em;
}
@media (max-width: 767px) {
	.ttl_h2 span {
		font-size: 13px;
	}
	.ttl_h2 h2 {
		font-size: 28px;
		margin-top: 24px;
	}
}
.ttl_h3 {
	position: relative;
	padding-top: 20px;
	flex-shrink: 0;
}
.ttl_h3::before {
	content: "";
	position: absolute;
	width: 23px;
	height: 2px;
	background: #E60013;
	top: 0;
}
.ttl_h3 h3 {
	font-size: 22px;
	font-weight: 700;
	width: fit-content;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
.ttl_h3 h3 span {
	font-size: 18px;
}
.ttl_h3 h3 + p {
	margin-top: 30px;
	letter-spacing: -0.02em;
}
.sec .is_h4ttl {
	font-size: 19px;
	font-weight: 700;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	margin-bottom: 25px;
}
.sec .is_h4ttl img {
	margin-top: 6px;
}
.content .is_h4ttl {
	margin-bottom: 25px;
}
.content * + .is_h4ttl,
.flex_content * + .is_h4ttl {
	margin-top: 60px;
}
@media (max-width: 767px) {
	.ttl_h3 h3 {
		font-size: 20px;
		letter-spacing: 0;
	}
	.ttl_h3 h3 + p {
		margin-top: 15px;
	}
	.sec .is_h4ttl {
		font-size: 18px;
	}
	.content .is_h4ttl {
		margin-bottom: 20px;
	}
}
.icon {
	display: inline-block;
	vertical-align: middle;
}
.icon.is_external {
	height: 1em;
	margin-left: 0.25em;
	vertical-align: baseline;
}
.icon.is_pdf {
	height: 1.6em;
	margin-left: 0.5em;
}
.sec_text {
	font-weight: 500;
	line-height: 2.25;
	margin-top: 40px;
	letter-spacing: 0.01em;
}
.sec_text p + p {
	margin-top: 2em;
}
@media (max-width: 767px) {
	.sec_text {
		line-height: 2.0;
	}
}
.btn_more {
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 24px 10px 24px;
	width: fit-content;
	margin: 30px 0 0 auto;
	transition: all 0.3s ease;
	font-weight: 500;
	position: relative;
}
.btn_more.is_all:hover {
	transform:translate(0px,0);
}
.btn_more::before {
	width: 145px;
	height: 1px;
	content: "";
	display: block;
	background: #DEDEDE;
	bottom: 0;
	position: absolute;
	left: 0px;
	transition: all 0.3s ease;
}
.btn_more:hover::before {
	width: 165px;
	background: #E60013;
}
.btn_more span:first-child {
	width: 1em;
	height: 1em;
}
.btn_more span:first-child img {
	height: 1em;
}
.btn_more > span.btn_more_text {
	margin-left: 15px;
	display: block;
	transition: all 0.3s ease;
	position: relative;
	width: 92px;
	height: 1em;
}
.btn_more span.btn_more_text span {
	transition: all 0.3s ease;
	position: absolute;
	left: 0;
	width: unset;
	height: unset;
}
.btn_more:hover span.btn_more_text span {
	margin-left: -10px;
	color: #E60013;
}
.btn_more .btn_more_arrow {
	opacity: 0;
	width: 24px;
	transition: all 0.3s ease;
	position: absolute;
	right: 0;
	top: 25px;
}
.btn_more:hover .btn_more_arrow {
	opacity: 1;
	right: -10px;
}
.btn_more.is_all::before,
.btn_more.is_all:hover::before {
	width: 135px;
}
.btn_more.is_all > span.btn_more_text {
	width: 75px;
}
.btn_more.is_all .btn_more_arrow {
	display: none;
}
.btn_more.is_all:hover span.btn_more_text span {
	margin-left: 0px;
}
@media (max-width: 767px) {
	.btn_more:hover {
		transform:translate(0px,0);
	}
	.btn_more:hover::before {
		width: 145px;
		background: #DEDEDE;
	}
	.btn_more:hover span.btn_more_text span {
		margin-left: 0;
		color: #333;
	}
	.btn_more:hover .btn_more_arrow {
		opacity: 0;
		right: 0;
	}
	.btn_more:hover span.btn_more_text span {
		margin-left: 0px;
	}
}
body::before {
	opacity: 0;
	visibility: hidden;
	content: "";
	display: block;
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	transition: all 0.3s ease;
}
body.is_hover::before {
	opacity: 1;
	visibility: visible;
}
.header {
	position: fixed;
	left: 0;
	width: 100%;
	padding: 20px 40px 0;
	z-index: 100;
	top: 0px;
	opacity: 1;
	background: #FFF;
	transition: all 0.3s ease;
}
.header.is_hide {
	top: -120px !important;
	opacity: 0 !important;
}
.header.is_show {
	top: 0px !important;
	opacity: 1 !important;
	animation: none!important;
}
@keyframes fadeHeader {
	0% {
		top: -120px;
		opacity: 0;
	}
	100% {
		top: 0px;
		opacity: 1;
	}
}
/* body:has(.header:hover) {
	overflow: hidden;
} */
.header:has(.nav_btn.is_menu:hover),
.header:has(div.nav_under:hover),
.header.is_bk {
	background: #FFF;
}
.header .header_inner {
	display: flex;
}
.header h1 {
	position: absolute;
}
.header .nav {
	margin: 0 auto;
	width: fit-content;
}
.header .nav_list {
	display: flex;
}
.header .nav_list li .nav_btn {
	display: block;
	padding: 26px 16px 46px;
	transition: all 0.3s ease;
	position: relative;
	cursor: pointer;
	font-weight: 500;
}
.header .nav_list li .nav_btn::before {
	transition: all 0.3s ease;
	content: "";
	display: block;
	border-radius: 100px;
	width: 6px;
	height: 6px;
	position: absolute;
	bottom: 30px;
	left: calc(50% - 3px);
}
.header .nav_list > li > .nav_btn.is_current,
.header .nav_list > li > .nav_btn:hover,
.header .nav_list > li:has(.nav_btn):hover .nav_btn {
	color: #E60013;
	font-weight: 700;
}
.header .nav_list > li > .nav_btn.is_current::before,
.header .nav_list li .nav_btn:hover::before,
.header .nav_list li:has(.nav_under:hover) .nav_btn::before {
	background: #E60013;
}
.header .nav_under,
.header .nav_btn_image {
	display: none;
}
.header .nav_under {
	position: absolute;
	width: 100%;
	display: block;
	top: calc(100% - 1px);
	left: 0;
	background: #FFF;
	transition: all 0.3s ease;
	padding: 20px 40px 40px;
	visibility: hidden;
	clip-path: inset(0% 0% 100% 0%);
}
.header .nav_list > li:has(.nav_btn):hover .nav_under {
	visibility: visible;
	clip-path: inset(0% 0% 0% 0%);
}
.header .nav_under::before {
	content: "";
	display: block;
	width: calc(100% + 80px);
	height: 1px;
	background: #DEDEDE;
	left: -40px;
	top: 0;
	position: absolute;
}
.header .nav_list li:has(.nav_under:hover)::before {
	background: #E60013;
}
.header .nav_under_inner {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.header .nav_parent {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
.header .is_navbusiness .nav_parent {
	padding: 0 20px 60px 20px;
	max-height: 70vh;
	overflow-y: auto;
}
.header .nav_parent > li {
	width: calc(90% / 3);
}
.header .nav_parent_btn {
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #DEDEDE;
	font-weight: 500;
	transition: all 0.3s ease;
}
.header .nav_parent .is_navarea .nav_parent_btn {
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 1.4;
}
.header .nav_btn_icon,
.header .nav_parent_btn_icon {
	display: none;
	position: absolute;
	right: 0;
	z-index: 100000;
	width: 60px;
	height: 60px;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	top: 0;
}
.header .nav_parent_btn_icon {
	width: 54px;
	height: 54px;
}
.header .nav_btn_icon span,
.header .nav_parent_btn_icon span {
	width: 15px;
	height: 1px;
	background: #333;
	display: none;
	position: absolute;
}
.header .nav_parent_btn_icon span {
	width: 11px;
}
.header .nav_parent_btn_icon span + span,
.header .nav_btn_icon span + span {
	transform: rotate(90deg);
}
.header .nav_parent_btn:hover {
	color: #E60013;
	border-bottom: 1px solid #E60013;
}
.header .nav_child {
	display: block;
	margin-top: 20px;
}
.header .nav_child > li {
	margin-top: 10px;
}
.header .nav_child > li a {
	font-size: 14px;
	display: inline-block;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
	line-height: 1.2;
}
.header .nav_child > li a:hover {
	font-size: 14px;
	color: #E60013;
	border-bottom: 1px solid #E60013;
}
.header .nav_sp_manu {
	display: none;
}
.header .nav_btn_toggle {
	display: none;
	cursor: pointer;
}
.header .nav_btn_toggle span {
	display: block;
	background: #333333;
	width: 30px;
	height: 2px;
	transition: all 0.3s ease;
}
.header .nav_btn_toggle span + span {
	margin-top: 5px;
}
.header.is_open .nav_btn_toggle span {
	transform: rotate(-20deg);
	margin-bottom: -2px;
	position: absolute;
}
.header.is_open .nav_btn_toggle span + span {
	transform: rotate(20deg);
	margin-top: -1px;
	position: absolute;
}
.header .nav_list li.is_nolink a,
.header .nav_list li.is_nolink a:hover {
	color: #bbb !important;
	font-weight: 500 !important;
	pointer-events: none;
}
.header .nav_list li.is_nolink .nav_btn:hover::before {
	background: none;
}
@media (max-width: 1200px) {
	.header .nav {
		margin: 0 0 0 auto;
	}
}
@media (max-width: 1000px) {
	body:has(div.nav_btn:hover)::before,
	body:has(div.nav_under:hover)::before {
		content: none;
	}
	body:has(header.is_open) {
		overflow: hidden;
	}
	.header {
		padding: 0 20px;
		height: 70px;
		letter-spacing: 0em;
	}
	.header.is_open {
		transition: all 0.3s ease;
		height: 70px;
		background: #FFF;
		overflow-y: auto;
		overflow-x: hidden;
	}
	.header h1 {
		width: 150px;
		height: 70px;
		display: flex;
		align-items: center;
		justify-content: left;
		z-index: 10;
	}
	.header .nav {
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		width: 100%;
		min-height: 695px;
		padding: 100px 30px 0;
		position: fixed;
		top: 0;
		left: 0;
		background: #FFF;
		overflow-y: auto;
	}
	.header.is_open .nav {
		opacity: 1;
		visibility: visible;
		height: 100dvh;
		overflow-y: auto;
		overflow-x: hidden;
	}
	.header.is_open .nav_inner {
		height: 100%;
	}
	.header .nav_btn_toggle {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 70px;
		width: 70px;
		position: absolute;
		top: 0;
		right: 0;
	}
	.header .nav_list {
		display: block;
	}
	.header .nav_list li {
		position: relative;
	}
	.header .nav_list li .nav_btn {
		padding: 24px 18px;
		font-weight: 700;
		font-size: 16px;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.header .nav_list > li > .nav_btn:hover,
	.header .nav_list > li:has(.nav_btn):hover .nav_btn {
		color: #333;
	}
	.header .nav_list > li > .nav_btn.is_current {
		color: #E60013 !important;
	}
	.header .nav_list li .nav_btn::before {
		transition: all 0.3s ease;
		content: "";
		display: block;
		border-radius: 100px;
		width: 6px;
		height: 6px;
		position: absolute;
		bottom: 35px;
		left: 0;
		background: #E60013;
	}
	.header .nav_under {
		clip-path: unset;
	}
	.header .nav_under::before {
		content: none;
	}
	.header .nav_under,
	.header .nav_list > li:has(.nav_btn) .nav_under,
	.header .nav_list > li:has(.nav_btn):hover .nav_under {
		position: unset;
		padding: 0;
		margin-bottom: 0;
		clip-path: unset !important;
	}
	/* .header .nav_under.is_open,
	.header .nav_list > li:has(.nav_btn) .nav_under.is_open,
	.header .nav_list > li:has(.nav_btn):hover .nav_under.is_open {
		margin-bottom: 30px;
	} */
	.header .nav_under,
	.header .nav_list > li:has(.nav_btn) .nav_under,
	.header .nav_list > li:has(.nav_btn):hover .nav_under,
	.header .nav_under.is_open,
	.header .nav_list > li:has(.nav_btn) .nav_under.is_open,
	.header .nav_list > li:has(.nav_btn):hover .nav_under.is_open {
		opacity: 0;
		visibility: unset;
		height: unset;
	}
	.header .nav_under.is_open,
	.header .nav_list > li:has(.nav_btn) .nav_under.is_open,
	.header .nav_list > li:has(.nav_btn):hover .nav_under.is_open {
		opacity: 1;
	}
	/* .header .nav_under,
	.header .nav_list > li:has(.nav_btn) .nav_under
	.header .nav_list > li:has(.nav_btn):hover .nav_under {
		position: unset;
		padding: 0;
		margin-bottom: 0;
		clip-path: unset !important;
		opacity: 0;
		visibility: hidden;
		height: 0;
	}
	.header .nav_under.is_open,
	.header .nav_list > li:has(.nav_btn) .nav_under.is_open,
	.header .nav_list > li:has(.nav_btn):hover .nav_under.is_open {
		height: unset;
		opacity: 1;
		visibility: visible;
		margin-bottom: 30px;
	} */
	.header .nav_under_inner {
		padding-bottom: 30px;
	}
	.header .nav_under.is_open {
		clip-path: unset;
	}
	.header .nav_arrow {
		display: none;
	}
	.header .nav_parent {
		padding: 0;
		height: auto;
		overflow-y: hidden;
	}
	.header .nav_parent > li {
		width: 100%;
	}
	.header .nav_parent > li + li {
	margin-top: 5px;
	}
	.header .nav_parent_btn {
		padding: 15px 75px 15px 15px;
		border-bottom: none;
		background: #F2F2F2;
		width: 100%;
		position: relative;
	}
	.header .nav_parent_btn:has(.nav_parent_btn_icon) {
		pointer-events: none;
	}
	.header .nav_parent_btn:hover {
		border-bottom: none;
		color: #333;
	}
	.header .nav_btn_icon,
	.header .nav_parent_btn_icon {
		display: flex;
		opacity: 1;
		cursor: pointer;
	}
	.header .nav_btn_icon::before {
		content: "";
		display: block;
		width: 1px;
		height: calc(100% - 20px);
		background:#DEDEDE;
		position: absolute;
		left: 0;
	}
	.header .nav_btn_icon span,
	.header .nav_parent_btn_icon span {
		display: block;
	}
	.header .nav_child {
		opacity: 0;
		visibility: hidden;
		height: 0;
		transition: all 0.3s ease;
		background: #f2f2f2;
		margin-top: 0;
		padding: 0px 30px;
	}
	.header .nav_child.is_open {
		opacity: 1;
		visibility: visible;
		height: unset;
		padding: 20px 30px 30px;
	}
	.header .nav_child > li {
			margin-top: 0px;
	}
	.header .nav_child > li + li {
		margin-top: 10px;
	}
	.header .nav_child > li a {
		font-size: 14px;
		letter-spacing: -0.02em;
	}
	.header .nav_image {
		display: none;
	}
	.header .nav_sp_manu {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: left;
		width: calc(100% + 60px);
		padding: 50px 30px 150px;
		margin-left: -30px;
		background: #00000002;
		gap: 10px 0;
		font-size: 13px;
		margin-top: auto;
	}
	.header .nav_sp_manu li {
		padding: 0px 10px;
	}
	.header .nav_sp_manu li:nth-child(2) {
			border-left: 1px solid #DEDEDE;
	}
}
.footer {
	width: 100%;
	border-top: 1px solid #DEDEDE;
}
.footer .footer_bottom {
	padding: 115px 30px 40px;
	border-bottom: 3px solid #e60013;
}
.footer .footer_logo {
	max-width: 1160px;
	margin: 0 auto;
}
.footer .footer_logo_image + p {
	margin: 20px 0 0 20px;
	font-size: 13px;
}
.footer .footer_logo_image + p strong {
	font-size: 12px;
}
.footer .footer_logo_image + p strong strong {
	font-size: 16px;
	margin-left: 0.5em;
	font-weight: 700;
}
.footer .footer_link {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 30px auto 0 auto;
	max-width: 1160px;
	padding-left: 20px;
}
.footer .footer_link ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: left;
	font-size: 14px;
	margin-left: -20px;
}
.footer .footer_link ul li {
	padding: 1px 20px;
}
.footer .footer_link ul li + li {
	border-left: 1px solid #DEDEDE;
}
.footer .footer_link ul li a {
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
	line-height: 1.625;
}
.footer .footer_link ul li a:hover {
	border-bottom: 1px solid #333;
}
.footer .footer_link small {
	font-size: 12px;
}
@media (max-width: 767px) { 
	.footer .footer_link {
		padding-left: 10px;
		justify-content: left;
		max-width: 410px;
		margin: 40px 0 0 0;
	}
	.footer .footer_logo_image + p {
		margin: 20px 0 0 0px;
		font-size: 12px;
		}
	.footer .footer_link ul {
		gap: 10px 0;
	}
	.footer .footer_link ul li + li {
		border-left: none;
		font-size: 13px;
	}
	.footer .footer_link ul li {
		padding: 0px 10px;
	}
	.footer .footer_link ul li:nth-child(2) {
		border-left: 1px solid #DEDEDE;
	}
	.footer .footer_link small {
		margin-left: -10px;
		margin-top: 40px;
		font-size: 12px;
	}
	.footer .footer_logo_image {
		width: 150px;
	}
}
.pagetop {
	position: sticky;
	bottom: 200px;
	top: calc(100% - 370px);
	right: 20px;
	left: calc(100% - 40px);
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 50;
	width: 15px;
	height: 100px;
	display: flex;
	align-items: center;
}
.pagetop .pagetop_arrow {
	width: 20px;
	height: 120px;
	background: #e60013;
	display: block;
}
.pagetop > p {
	transform: rotate(90deg);
}
.pagetop.is_show {
	opacity: 1;
}
.pagetop .pagetop_arrow {
	width: 1px;
	height: 50px;
	background: #e60013;
	display: block;
	position: absolute;
}
.pagetop .pagetop_arrow.is_tate {
	transform: rotate(180deg);
	top: 0;
	height: 50px;
	transition: all 0.3s ease;
}
.pagetop:hover .pagetop_arrow.is_tate {
	height: 40px;
}
.pagetop .pagetop_arrow.is_naname {
	transform: rotate(-30deg);
	height: 13px;
	top: 0;
	right: 11px;
}
.pagetop .pagetop_arrow.is_yoko {
	transform: rotate(90deg);
	height: 20px;
	top: -10px;
	transition: all 0.3s ease;
	opacity: 0;
}
.pagetop:hover .pagetop_arrow.is_yoko {
	opacity: 1;
}
.pagetop > p {
	transform: rotate(90deg);
	font-size: 12px;
	white-space: nowrap;
	position: absolute;
	bottom: 0px;
	transition: all 0.3s ease;
	right: -15px;
	font-weight: 600;
}
.pagetop:hover > p {
	color:#e60013;
	bottom: 10px;
}
.pagetop.is_show {
	opacity: 1;
}
@media (max-width: 767px) { 
	.pagetop {
		bottom: 60px;
		top: calc(100% - 460px);
	}
}
.bread {
	width: 100%;
	padding: 20px 80px 0;
}
.bread .bread_list {
	max-width: 1280px;
	margin: 0 auto;
	display: block;
	text-align: left;
	line-height: 1;
}
.bread .bread_list li {
	display: inline;
	line-height: 1;
}
.bread .bread_list li + li {
	margin-left: 24px;
	position: relative;
}
.bread .bread_list li + li::before {
	display: block;
	content: "";
	width: 4px;
	height: 4px;
	position: absolute;
	background: #CCCCCC;
	border-radius: 100px;
	top: 11px;
	left: -14px;
}
.bread .bread_list li a {
	font-size: 12px;
	transition: all 0.3s ease;
	display: inline;
	border-bottom: 1px solid transparent;
	line-height: 1;
	font-weight: 500;
}
.bread .bread_list li a:hover {
	font-size: 12px;
	color: #E60013;
	border-bottom: 1px solid #E60013;
}
.bread .bread_list li:last-child a {
	color: #666666;
	pointer-events: none;
	font-weight: 400;
}
@media (max-width: 767px) { 
	.bread {
		padding: 10px 20px 0;
	}
}
.ttl_h2_wrap {
	padding: 180px 80px 100px;
	width: 100%;
	position: relative;
}
.ttl_h2_wrap h2 {
	font-size: 42px;
	line-height: 1.5;
}
.ttl_h2_wrap.is_under h2 {
	font-size: 26px;
	line-height: 1.5;
	margin-top: 24px;
	letter-spacing: 0.025em;
}
.ttl_h2_wrap small {
	font-size: 22px;
	margin-top: 14px;
	font-weight: 700;
	display: block;
}
.ttl_h2_wrap::before {
	display: block;
	content: "";
	width: 100%;
	height: 10px;
	background: #F8F8F8;
	position: absolute;
	bottom: 0;
	left: 0;
}
.ttl_h2_wrap::after {
	display: block;
	content: "";
	width: 140px;
	height: 10px;
	background: #EFEFEF;
	position: absolute;
	bottom: 0;
	left: 0;
}
.ttl_h2_wrap .ttl_h2_wrap_inner {
	max-width: 1280px;
	margin: 0 auto;
}
@media (max-width: 767px) {
	.ttl_h2_wrap {
		padding: 130px 30px 90px;
	}
	.ttl_h2_wrap::after {
		width: 80px;
	}
	.ttl_h2_wrap h2 {
		font-size: 32px;
		margin-top: 25px;
		letter-spacing: 0;
	}
	.ttl_h2_wrap small {
		font-size: 18px;
		margin-top: 11px;
	}
	.ttl_h2_wrap.is_under h2 {
		font-size: 22px;
		margin-top: 20px;
	}
}
/*繝｢繝ｼ繝�繝ｫ*/
.modal-open {
	cursor: pointer;
}
.modal-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,85%);
	padding: 90px 140px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	z-index: 100;
}
.modal-container:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
.modal-container.active {
	opacity: 1;
	visibility: visible;
}
.modal-body {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 800px;
	width: 84%;
}
.modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}
.modal-content {
	text-align: left;
	color: #FFF;
}
.back_arrow {
	display: flex;
	align-content: center;
	justify-content: space-between;
}
.is_under .back_arrow a::before {
	width: 145px;
	height: 1px;
	background: #DEDEDE;
	content: "";
	display: block;
	position: absolute;
	top: 57px;
	left: 0;
	transition: all 0.3s ease;
}
.is_under .back_arrow a:hover::before {
	background: #E60013;
}
.is_under .back_arrow {
	border-top: 1px solid #E60013;
	padding-top: 18px;
	margin: 100px auto 0;
	max-width: 1160px;
	width: 100%;
	position: relative;
}
.is_under .back_arrow {
	padding-top: 0px;
}
.back_arrow_item + .back_arrow_item {
	border-left: 1px solid #DEDEDE;
}
.back_arrow_item.is_disabled {
	pointer-events: none;
	opacity: 0.5;
}
.back_arrow_item a {
	display: flex;
	align-content: center;
	justify-content: space-between;
	gap: 7px;
	padding: 10px 0 10px 20px;
	font-size: 14px;
}
.back_arrow_item a:hover {
	color: #E60013;
}
.back_arrow_item:first-child a {
	padding: 10px 20px;
}
.back_arrow_item:first-child a img {
	transform: scale(-1, 1);
}
.is_under .back_arrow_item a {
	padding: 18px 18px 18px 20px;
} 
@media (max-width: 767px) {
	.back_arrow {
		width: fit-content;
		margin: 30px auto 0;
	}
	.is_under .back_arrow {
		padding: 10px 0 0 10px;
		margin: 100px -20px 0;
		width: calc(100% + 40px);
	}
	.is_under .back_arrow::before {
		width: 155px;
		top: 60px;
		left: 0;
	}
	.is_under .back_arrow_item a {
		padding: 10px 20px;
	}
}
/*隧ｳ邏ｰ繝壹��繧ｸ*/
.shop .shop_content .flex_content {
	display: flex;
	flex-wrap: wrap;
	margin-left: 0;
	justify-content: space-between;
}
.shop .shop_content .flex_content p {
	max-width: 300px;
	width: calc(40% - 10px);
}
.shop .shop_content .flex_content p + p {
	max-width: 440px;
	width: calc(60% - 10px);
}
.shop .shop_content .flex_content + .content_flex {
	margin-top: 60px;
}
.news.is_under .sec_inner * + *,
.shop .shop_content * + *,
.shop .content_flex * + * {
	margin-top: 40px;
}
.news.is_under .sec_inner * + h1,
.shop .shop_content * + h1,
.shop .content_flex * + h1,
.news.is_under .sec_inner * + h2,
.shop .shop_content * + h2,
.shop .content_flex * + h2,
.news.is_under .sec_inner * + h4,
.shop .shop_content * + h4,
.shop .content_flex * + h4 {
	margin-top: 60px;
}
.news.is_under .sec_inner h1,
.shop .shop_content h1,
.shop .content_flex h1,
.news.is_under .sec_inner h2,
.shop .shop_content h2,
.shop .content_flex h2 {
	font-size: 22px;
	font-weight: 700;
	position: relative;
	padding-top: 18px;
}
.news.is_under .sec_inner h1::before,
.shop .shop_content h1::before,
.shop .content_flex h1::before,
.news.is_under .sec_inner h2::before,
.shop .shop_content h2::before,
.shop .content_flex h2::before {
	position: absolute;
	display: block;
	content: "";
	width: 23px;
	height: 2px;
	background:#E60013;
	top: 0;
	left: 0;
}
.news.is_under .sec_inner h3,
.shop .shop_content h3,
.shop .content_flex h3 {
	font-size: 17px;
	font-weight: 700;
}
.news.is_under .sec_inner h4,
.shop .shop_content h4,
.shop .content_flex h4,
.people .flex_content h4,
.balance .flex_content h4 {
	font-size: 19px;
	font-weight: 700;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	margin-bottom: 0;
}
.news.is_under .sec_inner h4::before,
.shop .shop_content h4::before,
.shop .content_flex h4::before,
.people .flex_content h4::before,
.balance .flex_content h4::before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 17px;
	background: url(../images/common/icon_h4ttl.svg) center / contain no-repeat;
	margin-top: 5px;
}
.news.is_under .sec_inner h4 + p,
.shop .shop_content h4 + p,
.shop .content_flex h4 + p,
.news.is_under .sec_inner h4 + iframe,
.shop .shop_content h4 + iframe,
.shop .content_flex h4 + iframe {
	margin-top: 25px;
}
.news.is_under .sec_inner iframe,
.shop .shop_content iframe,
.shop .content_flex iframe {
	/* padding-top: 52.6%; */
	width: 100%;
	height: 400px;
}
.news.is_under .sec_inner iframe + p ,
.shop .shop_content iframe + p ,
.shop .content_flex iframe+ p {
	margin-top: 20px;
}
.news.is_under .sec_inner img,
.shop .shop_content img,
.shop .content_flex img {
	height: auto;
}
.news.is_under .sec_inner p:has(img),
.shop .shop_content p:has(img),
.shop .content_flex p:has(img) {
	clear: both;
	width: 100%;
}
.news.is_under .sec_inner blockquote,
.shop .shop_content blockquote,
.shop .content_flex blockquote {
	padding-left: 16px;
	border-left: 4px solid #efefef;
}
.news.is_under .sec_inner p,
.shop .shop_content p,
.shop .content_flex p {
	line-height: 2;
}
.news.is_under .sec_inner p a,
.shop .shop_content p a,
.shop .content_flex p a {
	border-bottom: 1px solid transparent;
}
.news.is_under .sec_inner p a,
.shop .shop_content p a,
.shop .content_flex p a {
	border-bottom: 1px solid transparent;
}
/* .news.is_under .sec_inner p a[target="_blank"],
.shop .shop_content p a[target="_blank"],
.shop .content_flex p a[target="_blank"] {
	padding-right: 2em;
} */
.news.is_under .sec_inner p a[target="_blank"]::after,
.shop .shop_content p a[target="_blank"]::after,
.shop .content_flex p a[target="_blank"]::after {
	content: "";
	display: inline-block;
	vertical-align: sub;
	width: 1em;
	height: 1em;
	background: url(../images/common/icon_external.svg) no-repeat;
	margin-left: 0.25em;
}
.news.is_under .sec_inner p a:hover,
.shop .shop_content p a:hover,
.shop .content_flex p a:hover {
	color: #E60013;
	border-bottom: 1px solid #E60013;
}
.news.is_under .sec_inner p + p,
.shop .shop_content p + p,
.shop .content_flex p + p {
	margin-top: 20px;
}
.news.is_under .sec_inner h2 + p,
.shop .shop_content h2 + p,
.shop .content_flex h2 + p,
.news.is_under .sec_inner h3 + p,
.shop .shop_content h3 + p,
.shop .content_flex h3 + p,
.news.is_under .sec_inner h4 + p,
.shop .shop_content h4 + p,
.shop .content_flex h4 + p,
.news.is_under .sec_inner ul + p,
.shop .shop_content ul + p,
.shop .content_flex ul + p,
.news.is_under .sec_inner ol + p,
.shop .shop_content ol + p,
.shop .content_flex ol + p {
	margin-top: 20px;
}
.news.is_under .sec_inner ul,
.shop .shop_content ul,
.shop .content_flex ul,
.news.is_under .sec_inner ol,
.shop .shop_content ol,
.shop .content_flex ol {
	position: relative;
	padding-left: 2em;
	counter-reset: listnum;
}
.news.is_under .sec_inner li,
.shop .shop_content li,
.shop .content_flex li {
	position: relative;
}
.news.is_under .sec_inner li + li,
.shop .shop_content li + li,
.shop .content_flex li + li {
	margin-top: 14px;
}
.news.is_under .sec_inner ul li::before,
.shop .shop_content ul li::before,
.shop .content_flex ul li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	content: "";
	display: block;
	background: #E60013;
	border-radius: 100px;
	top: 10px;
	left: -1em;
}
.news.is_under .sec_inner ol li::before,
.shop .shop_content ol li::before,
.shop .content_flex ol li::before {
	counter-increment: listnum;
	content: counter(listnum)".";
	top: 0px;
	left: -1em;
	position: absolute;
}
.news.is_under .sec_inner hr,
.shop .shop_content hr,
.shop .content_flex hr {
	width: 100%;
	display: block;
	height: 1px;
	background: #DEDEDE;
	visibility: unset;
	margin-top: 100px;
	border: none;
}
.news.is_under .sec_inner hr + *,
.shop .shop_content hr + *,
.shop .content_flex hr + * {
	margin-top: 100px;
}
.news.is_under .sec_inner .mt-be-columns,
.shop .shop_content .mt-be-columns,
.shop .content_flex .mt-be-columns {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.news.is_under .sec_inner .mt-be-columns .mt-be-column,
.shop .shop_content .mt-be-columns .mt-be-column,
.shop .content_flex .mt-be-columns .mt-be-column {
	margin: 0;
	width: 100%;
}
.news.is_under .sec_inner .mt-be-columns * + *,
.shop .shop_content .mt-be-columns * + *,
.shop .content_flex .mt-be-columns * + * {
	margin-top: 20px;
}
@media (max-width: 767px) {
	.shop .shop_content .flex_content {
		gap: 20px;
	}
	.news.is_under .sec_inner h2,
	.shop .shop_content h2,
	.shop .content_flex h2 {
		font-size: 20px;
	}
	.news.is_under .sec_inner .mt-be-columns,
	.shop .shop_content .mt-be-columns,
	.shop .content_flex .mt-be-columns {
		flex-wrap: wrap;
	}
	.shop .shop_content .flex_content p {
		width: 100%;
		margin: 0 auto;
	}
	.shop .shop_content .flex_content p + p {
		width: 100%;
	}
}
.news.is_under .sec_inner a,
.shop_content a{
	color: #E60013;
}
.news.is_under .sec_inner a:hover,
.shop_content a:hover{
	text-decoration: underline;
}

.shop_content table {
	width: 100%;
	border-top: 1px solid #DEDEDE;
	border-bottom: 1px solid #DEDEDE;
	border-collapse: collapse;
	table-layout: fixed;
}
.shop_content table tr {
	width: 100%;
}
.shop_content table tr + tr {
	border-top: 1px solid #DEDEDE;
}
.shop_content table td:nth-child(1) {
	background-color: #F8F8F8;
	width: 28%;
	font-weight: 500;
	padding: 24px 20px;
	font-size: 15px;
	text-align: left;
	vertical-align: middle;
}
.shop_content table td:nth-child(2) {
	width: 72%;
	padding: 24px 20px;
	vertical-align: middle;
}
/* .shop_content table td:last-child span {
	margin-left: 0.5em;
} */
.shop_content table td:last-child p + p {
	margin-top: 5px;
}
.shop_content table td:last-child span.is_line {
	margin-right: 0.5em;
	border-left: 3px solid #CCCCCC;
	width: 5em;
	display: inline-block;
	padding-left: 5px;
	margin-left: 0;
	line-height: 1.2;
}
.shop_content table td:last-child a {
	color: #E60013;
	white-space: pre-line;
}
.shop_content table td:last-child a:hover {
	opacity: 0.7;
}
.shop_content table td:last-child a.is_external {
	padding-right: 2em;
}
.shop_content table td:last-child a.is_external::after {
	content: "";
	display: inline-block;
	background: url(../images/business/foods/icon_external.svg) no-repeat;
	width: 11px;
	height: 11px;
	margin-left: 1em;
}
@media (max-width: 767px) {
	.news.is_under .sec_inner h4,
	.shop .shop_content h4,
	.shop .content_flex h4 {
		font-size: 18px;
	}
	.shop_content table th {
		padding: 15px 10px;
		font-size: 14px;
	}
	.shop_content table td:last-child {
		padding: 15px 10px;
		font-size: 14px;
		letter-spacing: -0.04em;
	}
	.shop_content table td:last-child span.is_line {
		display: block;
		margin-bottom: 5px;
	}
	.news.is_under .sec_inner iframe,
	.shop .shop_content iframe,
	.shop .content_flex iframe {
		height: 175px;
	}
}

/*20250808 追記*/
/*  .shop .shop_content p {
	text-align: center;
 } */
 .shop .shop_content p a {
	position: relative;
	display: inline-block;
 }
 .shop_content p a[target="_blank"]::after {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-6px);
 }