/*
Theme Name: niwato
Theme URI: http://niwato.cocoya.org/
Author: alatenta.
Author URI: https://alatenta.com
*/

/*######################################################################

		Reset CSS

************************************************************************/


html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	list-style: none;
}

ol {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
	display: block;
}

nav ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted #000;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

input,
select {
	vertical-align: middle;
}



/*######################################################################

		General

************************************************************************/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	--theme_color_title: #000;
	--theme_color_txt: #000;
	--theme_color_txt_dark: #fff;
	--theme_color_bg: #fff;
	--theme_color_bg_light: #e3d2cc;
	--theme_color_bg_dark: #e37d5b;
	--theme_color_accent: #e45e32;
	--theme_color_accent_dark: #e45e32;
	--theme_color_link: var(--theme_color_accent);
	--theme_color_link_dark: var(--theme_color_accent_dark);

	--header_height: 66px;
}

html {
	font-size: 62.5%;
	visibility: hidden;
}

html.wf-active {
	visibility: visible;
}

body {
	--current_theme_color_txt: var(--theme_color_txt);
	--current_theme_color_bg: var(--theme_color_bg);
	--current_theme_color_link: var(--theme_color_link);
	position: relative;
	color: var(--current_theme_color_txt);
	font-size: 1.6rem;
	font-family: "m-plus-rounded-1c", "noto-sans-jp", sans-serif;
	font-weight: 200;
	line-height: 1.61;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}

img {
	-ms-interpolation-mode: bicubic;
}

input[type="submit"] {
	-webkit-appearance: none;
}

h1,
h2,
h3,
h4,
h5 {
	font-weight: normal;
	color: var(--current_theme_color_txt);
}


/* wordpress */

.sticky {
	display: block;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 0 auto;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.wp-caption {
	text-align: center;
	margin: 10px;
	padding: 4px 0 0 0;
}

.wp-caption img {
	margin: 0;
	padding: 0;
}

.wp-caption p.wp-caption-text,
.gallery-caption {
	margin: 0;
	padding: 0 4px 5px;
	font-size: 11px;
	line-height: 1.4;
}

@media screen and (max-width: 767px) {
	.forPC {
		display: none !important;
	}
}

@media screen and (min-width: 768px) {
	.forSP {
		display: none !important;
	}
}

/*
 link
/////////////////////////////////////////////////////////*/


a {
	text-decoration: none;
	color: var(--current_theme_color_link);
	cursor: pointer;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

a:hover {
	filter: brightness(1.1);
	opacity: 1;
}

a:hover img {
	opacity: 1;
}

.btns {
	margin: 20px auto 35px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;

}

.btn {
	--current_theme_color_txt: var(--theme_color_txt_dark);
	--current_theme_color_bg: var(--theme_color_accent);
	--current_theme_color_link: var(--theme_color_link_dark);
	min-width: 300px;
	min-height: 60px;
	padding: 12px 24px;
	font-size: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	color: var(--current_theme_color_txt);
	background-color: var(--current_theme_color_bg);
	border-radius: 9999999px;
	position: relative;
}

a.btn {
	text-decoration: none;
}

.btn::before {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 9999999px;
	position: absolute;
	top: 0;
	left: 0;
	outline-offset: 2px;
	outline: 2px solid var(--current_theme_color_bg);
	opacity: 0;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.btn:hover {}

.btn:hover::before {
	opacity: 1;
}


.links {
	margin: 20px auto 35px 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	padding-left: 10px;
	overflow: visible;
	width: fit-content;
	height: auto;
}

.link {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	box-sizing: border-box;
	color: var(--current_theme_color_link);
	background: none;
	text-align: left;
	width: auto;
	line-height: 1.5;
	min-width: 120px;
	flex-direction: row;
	position: relative;
	overflow: visible;
	gap: 10px;
	margin: 0 24px;
	flex-wrap: wrap;
	padding: 0 8px;
	text-decoration: none;
}

a.link {
	text-decoration: none;
}

.link .min {
	font-weight: normal;
	opacity: 0.75;
}

.link:before {
	content: "";
	width: 8px;
	height: 8px;
	border: var(--current_theme_color_link) solid;
	border-width: 1px;
	position: absolute;
	left: -8px;
	bottom: 0;
	transform: rotate(0deg) scale(1) translateZ(0);
	transform-origin: center left;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	will-change: transform;
}

.link:after {
	content: "";
	width: 100%;
	height: 1px;
	background-color: var(--current_theme_color_link);
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(0);
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	will-change: transform;
}

.link:hover {
	opacity: 0.9;
	padding-left: calc(8px + 5px);
	margin-right: calc(24px - 5px);
}

.link:hover:before {
	transform: rotate(-45deg) scale(1.5) translateZ(0);
	border-width: 0.5px;
}

.link:hover:after {
	width: calc(100% + 24px + 5px);
	transform: translateX(-1px);
}

.link_label {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}


/*######################################################################

		Page Frame
	
***********************************************************************/

/*
	header
////////////////////////////////////////////////////////*/




/*ここからヘッダー*/


.header {
	background: var(--theme_color_bg);
	position: fixed;
	/* top: 0; */
	left: 0;
	width: 100%;
	height: var(--header_height);
	z-index: 10000;
	padding: 8px 12px;
	gap: 12px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


#header.is_fixed {}

#header.show {
	transform: translateY(0);
}

#header:has(.header_menu.open) {
	transform: translateY(0);
}

#header-2 {
	display: none;
	position: absolute;
}

.header_inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

body.header-show #header-2 {
	display: none;
}

.header_sec-1 {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	height: 100%;

}

.header_logo {
	height: 100%;
	width: auto;
	max-width: 100%;
	display: flex;
	align-items: center;
}

.header_logo img {
	width: auto;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	margin: 0;

}

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


.header_sec-2 {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: flex-start;
	height: 88%;
	gap: 16px;

}

.header_sec-2>* {
	height: 100%;
}

.header_menu {
	width: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
}


.header_menu_button {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 20001;
}

.header_menu_icon {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.header_menu_icon_text {
	padding-top: 50px;
	font-size: 10px;
	letter-spacing: 2px;
}

.header_menu_icon,
.header_menu_icon::before,
.header_menu_icon::after {
	height: 1px;
	background-color: #000;
	transition: all 0.3s;

}

.header_menu_icon::before,
.header_menu_icon::after {
	content: "";
	position: absolute;
	left: 0;
}

/* 上の線 */
.header_menu_icon::before {
	bottom: 9px;
	width: 100%;

}

/* 下の線（ちょっと短い） */
.header_menu_icon::after {
	top: 9px;
	width: 80%;

}

.header_menu.open .header_menu_icon {
	background-color: transparent;
}

.header_menu.open .header_menu_icon::before,
.header_menu.open .header_menu_icon::after {
	top: 0;
	bottom: auto;
	width: 100%;
	transform-origin: center;
}

.header_menu.open .header_menu_icon::before {
	transform: rotate(45deg);
}

.header_menu.open .header_menu_icon::after {
	transform: rotate(-45deg);
}

.header_menu_body {
	position: fixed;
	top: 0;
	left: 0;
	width: 100dvw;
	height: 100dvh;
	z-index: 2000;
	background-color: #fff;
	padding: 0 20px;
	overflow: scroll;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-20%);
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.header_menu.open {
	display: flex !important;
}

.header_menu.open .header_menu_body {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.header .pageFrame_nav_link {
	padding-top: 24px;
	border: none;
}

.header .pageFrame_nav_link:before {
	margin: 5px auto;
}

.header_menu_body_icon_link-allcontents:before {
	background-image: url(/main/wp-content/themes/ecoken2025/images/nav_icon_contents.png);
	width: 136px;
}

/* 
.header_menu_body .header_menu_body_icon_link{
	border: none;
	padding-top: 34px;
}
.header_menu_body .header_menu_body_icon_link::before{
	margin: 5px auto;
} */

.header_info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
}

.header_info a {
	background-color: #000;
	border-radius: 4px;
	font-size: 16px;
	color: #fff;
	padding: 3px 12px;
	min-width: 240px;
	width: 100%;
	text-align: center;
}

.header_access,
.header_contact {}

.header_access a,
.header_contact a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	font-size: 10px;
	gap: 2px;
}

.header_access a img,
.header_contact a img {
	width: auto;
	height: calc(100% - 12px - 6px);
	margin: 0;
}

.header_links {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

/* .header:not(.is_fixed) .header_links{
	display: none;
} */
.header_links a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.header_links a img {
	width: auto;
	height: 25px;
}

@media screen and (min-width:768px) {
	.header_sec-2 {
		height: 100%;
		gap: 16px;
	}

	.header_sec-2>* {
		border-left: #000 1px solid;
		padding-left: 16px;
	}

	.header_access {
		display: none;
	}

	.header_access a img,
	.header_contact a img {
		height: calc(100% - 12px);
	}

	.header_menu {
		width: 40px;
		border: none;
		padding-left: 0;
	}

	/* .header:not(.is_fixed) .header_menu{
		display: none;
	} */
	.header_menu_body {
		height: auto;
		padding: 0 66px;
	}

	.header_menu_body .header_menu_body_icon_link {
		padding-top: 0;
	}

	.header_menu_button {
		padding-bottom: 12px;
	}

	.header_menu_icon,
	.header_menu_icon::before,
	.header_menu_icon::after {
		height: 1px;
		background-color: #000;
		transition: all 0.3s;
	}

	.header_menu_icon::before {
		bottom: 12px;
	}

	.header_menu_icon::after {
		width: 100%;
		top: 12px;
	}

}

@media screen and (max-width:1250px) and (min-width:769px) {
	#header .header_info {
		display: none;
	}

	#header .header_access {
		display: flex;
	}

	#header .header_menu {
		border-left: 1px solid #000;
		padding-left: 16px;
		width: 56px;
	}
}

@media screen and (max-width:1050px) and (min-width:769px) {
	.header_links {
		display: none;
	}
}

/* ここからコンテンツリンク */
.content_links_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.content_links_inner {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	gap: 3%;
}

.content_links_outer {
	padding: 20px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	gap: 5%;
}

.content_links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 8px;
}

.content_links a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	text-wrap: nowrap;
}

.content_links a img {
	width: auto;
	height: 100%;
}

.content_links_ttl {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 3px;
	padding-left: 20px;
	position: relative;
}

.content_links_ttl::before {
	content: "";
	width: 16px;
	height: 16px;
	background-color: currentColor;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.content_links_list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 8px;
	width: 100%;
}

.content_link {
	position: relative;
	color: var(--current_theme_color_txt);
}

.content_link.new::before {
	content: "";
	width: 5px;
	height: 5px;
	background-color: var(--theme_color_accent);
	position: absolute;
	right: -5px;
	top: 50%;
	transform: translateY(-50%) translateX(3px)rotate(45deg);

}

.content_link.new::after {
	content: "NEW";
	font-size: 10px;
	color: #fff;
	background-color: var(--theme_color_accent);
	padding: 2px 6px;
	border-radius: 4px;
	position: absolute;
	right: -5px;
	top: 50%;
	transform: translateY(-50%) translateX(100%);

}

.content_link_tag {
	font-size: 10px;
	color: #fff;
	background-color: var(--theme_color_accent);
	padding: 2px 6px;
	border-radius: 4px;
	position: relative;
	margin-left: 5px;
}

.content_link_tag::before {
	content: "";
	width: 5px;
	height: 5px;
	background-color: var(--theme_color_accent);
	position: absolute;
	left: -5px;
	top: 50%;
	transform: translateY(-50%) translateX(3px)rotate(45deg);
}

.content_links-bnrs {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	width: 25%;
	max-width: 480px;
	padding: 20px 0;
}

.content_links-bnrs a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: calc(50% - 5px);
	border-radius: 12px;
	overflow: hidden;
}

.content_links-bnrs a.c2 {
	width: 100%;
}

.content_links-bnrs a img {
	width: 100%;
	height: auto;
}

.content_links-sns {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.content_links-sns a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-weight: bold;
}

.content_links-sns a img {
	width: 42px;
	height: 42px;
}

.content_links_sign {}

.content_links_sign a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: 60px;
}

.content_links_sign a img {
	width: auto;
	height: 100%;
}

.content_links_sign p {
	font-size: 14px;
	text-align: center;
	margin-top: 8px;
	line-height: 1.5;
}

.content_links_sign .copyright {
	padding-top: 10px;
}

.content_links_sign .copyright p {
	font-size: 12px;
}

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

@media screen and (max-width:1150px) {
	.content_links_inner {
		flex-direction: column;
		align-items: center;
	}

	.content_links_outer,
	.content_links-bnrs {
		width: 100%;
		max-width: 700px;
	}

	.content_links-bnrs {
		justify-content: center;
		max-width: calc(700px + 40px);
	}

	.content_links-bnrs a.content_link-bnr {
		width: calc((100% - 20px) / 4);
	}

	.content_links-bnrs a.content_link-bnr.c2 {
		width: calc((100% - 20px) / 2);
	}
}

@media screen and (max-width:767px) {
	.content_links_wrapper {
		gap: 40px;
	}

	.content_links_inner {
		gap: 20px;
		flex-direction: column;
		align-items: center;
	}

	.content_links_outer {
		flex-direction: column;
		justify-content: flex-start;
		width: 88%;
		gap: 20px;
	}

	.content_links {}

	.content_links_ttl {}

	.content_links_list {
		margin-left: 7px;
		padding-left: 13px;
		border-left: currentColor 1px solid;
	}

	.content_links-bnrs {
		width: 88%;
		max-width: none;
		justify-content: center;
	}

	.content_links-bnrs a {
		height: auto;
	}

	.content_links-sns {}

	.content_links_sign {}

	.content_links_sign a {
		height: 70px;
	}

}

/* ここから内容に関して */
.header+*:not(.header),
.headerNext {
	position: relative;
	z-index: 1;
	padding-top: var(--header_height);
	overflow: hidden;
}



/*. ここからフッター */

#footer {
	--current_theme_color_txt: var(--theme_color_txt_dark);
	--current_theme_color_bg: var(--theme_color_bg_dark);
	--current_theme_color_link: var(--theme_color_link_dark);

	margin-top: 64px;
	margin-bottom: 0;
	background: var(--current_theme_color_bg);
	color: var(--current_theme_color_txt);
}

.footer_content_links {
	padding: 24px 0;
}

.footer_content_links_title {
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88%;
	gap: 10px;
	text-align: center;
	margin: 0 auto;
	padding: 0 20px;
}

.footer_content_links_title::before,
.footer_content_links_title::after {
	content: "";
	height: 1px;
	background-color: #000;
	flex: 1 1 auto;
}

.footer_content_links_title span {
	flex: 0 0 10%;
	min-width: max-content;
	white-space: nowrap;
}



/*######################################################################

		Contents

************************************************************************/

/*
	general
/////////////////////////////////////////////////////////*/

#container {
	min-height: calc(100dvh - var(--header_height));
}


.section {
	width: 100%;
}

.section_inner {
	width: 88%;
	max-width: 1200px;
	margin: 0 auto;
	overflow: visible;
}

/*-----------------エラーページ-----------------*/

.error_header_wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100dvw;
}

@media screen and (max-width: 768px) {
	.error_header_wrapper {
		flex-direction: column;
	}
}

.error_header_img {
	display: block;
	max-width: 80%;
	height: auto;
}

.error_header_texts {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.error_header_title {
	margin: 6rem auto 0;
	font-size: 28px;
	color: var(--theme_color_title);
	font-family: "chaparral-pro", serif;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
}

.error_header_title span {
	color: var(--current_theme_color_txt);
	font-size: 14px;
}

.error_header_text {
	max-width: 350px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.error_header_img {
		order: 2;
	}
}




/*======================= wpcontent =======================*/
.wpcontent {
	width: auto;
	max-width: calc(min(1200px, 88%));
	margin: 24px auto 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
}

.wpcontent h1 {
	font-size: 28px;
	margin: 32px 0 12px;
	padding: 12px 0;
	text-align: center;
	min-width: 520px;
	border-bottom: currentColor 1px solid;
}

.wpcontent h2 {
	font-size: 24px;
	margin: 42px auto 0;
	padding: 12px 0;
	text-align: center;
}

.wpcontent h2:first-child {
	margin-top: 0;
}

.wpcontent h3 {
	font-size: 20px;
	margin: 16px auto 0;
	padding: 12px 0;
	text-align: center;
}

.wpcontent h3:first-child {
	margin-top: 0;
}

.wpcontent h4,
.wpcontent h5,
.wpcontent h6 {
	font-size: 18px;
	margin: 8px auto 0 0;
}

.wpcontent h4:first-child,
.wpcontent h5:first-child,
.wpcontent h6:first-child {
	margin-top: 0;
}

.wpcontent p {
	margin: 8px auto 0;
}

.wpcontent a:not(.btn, .link) {
	text-decoration: underline;
}

.wpcontent a:hover {
	text-decoration: none;
}

.wpcontent table tr:first-child {
	background-color: var(--theme_color_bg_light);
	/* 1行目 */
}

.wpcontent table td:first-child,
.wpcontent table th:first-child {
	background-color: var(--theme_color_bg_light);
	/* 1列目 */
}

/*-----------------固定ページ-----------------*/
.page_top {
	width: 100%;
	height: auto;
}

.page_top_inner {
	width: 88%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	overflow: hidden;
}

.page_top_ttl {
	font-size: 28px;
	margin: 32px 0 12px;
	padding: 12px 0;
	text-align: center;
	min-width: 520px;
	border-bottom: currentColor 1px solid;
}


/*-----------------ブログ-----------------*/


/*-----------------事例-----------------*/






/*-----------------トップページ-----------------*/

.top_sec {
	width: 100%;
	height: auto;
}

.top_sec_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
}

.top_mv {
	position: relative;
	width: 100%;
	height: calc((100dvh - var(--header_height)) * 0.7);
	max-height: 600px;
}

.top_mv_img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	background-color: var(--theme_color_bg_light);
}