@charset "UTF-8";

* {
font-family: 'Oswald', 'Noto Sans JP', "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

:root {
	/*使用しない場合も必ず設定*/
	--i_bg_color: #fff; /*背景色*/
	--i_txt_color: #100007; /*テキスト*/
	--i_main_color: #136436; /*メイン*/
	--i_sub_color: #f08102; /*アクセント*/
	--i_sub2_color: #fef5eb; /*薄い色*/
	--i_btn_color: #465b49; /*ボタン*/
	--i_btn_hover_color: #617864; /*ボタンhover*/
	--i_btn_txt_color: #fff; /*ボタンテキスト*/
	--i_btn_hover_txt_color: #fff; /*ボタンテキスト*/
	--i_shadow_color: rgba(0, 0, 0, 0.05); /*シャドウ*/
	--i_border_color: rgba(0, 0, 0, 0.13); /*ボーダー*/
	--i_noimg_bg_color: #fff; /*画像無し*/
	--i_padding: 20px; /*左右余白*/
        --i_ttl_color: #B49849; /*タイトルカラー*/
}
html {
	font-size: 62.5%;
}
body {
	font-size: 1.65rem;
	line-height: 1.9;
	letter-spacing: 0.02rem;
	-webkit-text-size-adjust: 100%;
	color: var(--i_txt_color);
	font-weight: 600;
}
body,
main {
	background: var(--i_bg_color);
}
@media screen and (max-width: 850px) {
	html {
		font-size: 60.606%;
	}
	body {
		letter-spacing: 0px;
	}
}
a {
	outline: 0;
	text-decoration: none;
	color: var(--i_txt_color);
}
section[style*=" color:"]:not([style*=" color: inherit"]) a,
div[style*=" color:"]:not([style*=" color: inherit"]) a {
	color: inherit;
}
/*composite_boxの最大高さとトリミングの起点　基本はjsにより各カラム中から最大の画角に設定*/
.composite_box01 .inner_item_img img {
	object-position: 50% 50%;
}
.no_img {
	background: var(--i_noimg_bg_color, rgba(200, 200, 200, 0.3));
	border: solid 1px var(--i_border_color);
}

/*----------------------------余白設定----------------------------*/

main > section:first-child:not([class*="pt"]),
main > div:first-child:not([class*="pt"]),
div[class*="pb"] + .contents_related,
section[class*="pb"] + .contents_related,
div[class*="pb"] + .contents_related_tags,
section[class*="pb"] + .contents_related_tags {
	padding-top: calc(var(--i_padding) * 3);
}
main > section:not([class*="pt"]),
main > div:not([class*="pt"]),
aside > section:not([class*="pt"]),
aside > div:not([class*="pt"]) {
	padding-bottom: calc(var(--i_padding) * 3);
}
@media screen and (max-width: 800px) {
	main > section:first-child:not([class*="pt"]),
	main > div:first-child:not([class*="pt"]),
	div[class*="pb"] + .contents_related,
	section[class*="pb"] + .contents_related,
	div[class*="pb"] + .contents_related_tags,
	section[class*="pb"] + .contents_related_tags {
		padding-top: calc(var(--i_padding) * 2);
	}
	main > section:not([class*="pt"]),
	main > div:not([class*="pt"]),
	aside > section:not([class*="pt"]),
	aside > div:not([class*="pt"]) {
		padding-bottom: calc(var(--i_padding) * 2);
	}
}

/*----------------------------背景パララックス----------------------------*/

.parallax {
	box-shadow: 0 0 5px var(--i_shadow_color) inset;
}
a[id*="para"] + section .parallax_img,
a[id*="para"] + div .parallax_img {
	opacity: 0.4;
	filter: brightness(90%) blur(4px) contrast(120%);
}
/*----------------------------ボタン----------------------------*/

input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
}
#fixbtn .contents_btn01 a:before {
	display: none;
}
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
}

/*----------------------------other parts----------------------------*/

/*--リスト--*/
.default_ul li:before {
	border-top: 1px solid var(--i_sub_color);
	border-right: 1px solid var(--i_sub_color);
	height: 5px;
	width: 5px;
	transform: rotate(45deg);
	top: 8px;
	left: 0;
}

/*--アーカイブページ カテゴリー--*/
.category1 li a {
	border: 1px solid var(--i_main_color);
	border-radius: 50px;
	color: var(--i_main_color);
	font-size: 1.4rem;
}
.category1 li a:hover,
.category1 li a.current {
	background: var(--i_main_color);
	color: #fff;
}

/*--sidebar--*/
#sidebar section,
#sidebar > div {
	border-bottom: 1px solid var(--i_border_color);
}
#sidebar h2 {
	text-align: left;
	font-size: 2.2rem;
}
#sidebar .sidebar_tag li {
	border: 1px solid var(--i_border_color);
	background: var(--i_sub2_color);
}
#sidebar .sidebar_list a {
	position: relative;
	padding-left: 15px;
}
#sidebar .sidebar_list a:before {
	content: "";
	display: block;
	position: absolute;
	border-top: 1px solid var(--i_sub_color);
	border-right: 1px solid var(--i_sub_color);
	height: 5px;
	width: 5px;
	transform: rotate(45deg);
	top: calc(50% - 3px);
	left: 0;
}
@media screen and (max-width: 850px) {
	#sidebar {
		border: 5px solid var(--i_sub2_color);
	}
}

/*----------------------------pager----------------------------*/

/*アーカイブページページャー*/
.pager li a {
	height: 45px;
	width: 45px;
	line-height: 45px;
	border: 1px solid var(--i_main_color);
	font-size: 1.4rem;
	color: var(--i_main_color);
}
.pager li:not(.arrow) a:hover,
.pager li:not(.arrow).current a {
	background: var(--i_main_color);
	color: #fff;
}
.pager li.arrow a {
	background: none;
}

/*シングルページページャー*/
.pager2 li a {
	border: 1px solid var(--i_main_color);
	color: var(--i_main_color);
	line-height: 45px;
	padding: 0 15px;
	font-size: 1.4rem;
}
.pager2 li a:hover {
	background: var(--i_main_color);
	color: #fff;
}

/*----------------------------popup----------------------------*/

/*画像ポップアップ拡大表示*/
.popup {
	background: rgba(255, 255, 255, 0.7);
}
.popclose {
	color: var(--i_main_color);
}
.popnav li {
	background: var(--i_main_color);
}
.poptxt {
	font-size: 1.2rem;
}

/*------------------------------------------------------------------*/
/*----------------------------widget--------------------------------*/
/*------------------------------------------------------------------*/

/*----------------------------contents_faq01----------------------------*/

.contents_faq01 dt {
	padding-left: 5rem;
	margin-bottom: 25px;
	min-height: 35px;
	width: 100%;
	padding-right: 15px;
	box-sizing: border-box;
}
.contents_faq01 dd {
	padding-left: 7.3rem;
	margin-bottom: 15px;
	width: 100%;
	padding-right: 15px;
	box-sizing: border-box;
}
.contents_faq01 dt:before,
.contents_faq01 dd:before {
	width: 4rem;
	height: 4rem;
	font-size: 2.6rem;
	line-height: 1.2;
	box-sizing: border-box;
	font-weight: 500;
	color: var(--i_btn_color);
	border: 1px solid var(--i_btn_color);
	text-align: center;
}
.contents_faq01 dd:before {
	font-size: 2.8rem;
	line-height: 1.25;
	background: var(--i_btn_color);
	color: var(--i_bg_color);
}

/*----------------------------contents_related_tags----------------------------*/

.contents_related_tags .inner_item {
	border: 1px solid var(--i_border_color);
}
.contents_related_tags .inner_item:hover {
	background: var(--i_sub2_color);
}
.contents_related .inner_item a:hover {
	background: var(--i_sub2_color);
	opacity: 0.8;
}

/*----------------------------block_table_1----------------------------*/

.block_table_1 table thead {
	background: var(--i_sub2_color);
}
.block_table_1 table thead th,
.block_table_1 table thead td {
	background-color: var(--i_sub2_color);
}
.block_table_1 table th {
	background-color: var(--i_sub2_color);
	border: 1px solid var(--i_border_color);
	text-align: center;
	vertical-align: middle;
}
.block_table_1 table td {
	background-color: #fff;
	border: 1px solid var(--i_border_color);
	vertical-align: middle;
}
.block_table_1 table thead td {
	text-align: center;
	font-weight: bold;
}

/*----------------------------block_table_2,5,6----------------------------*/

.block_table_2 table thead,
.block_table_2 table thead th,
.block_table_2 table thead td,
.block_table_5 table thead,
.block_table_5 table thead th,
.block_table_5 table thead td,
.block_table_6 table thead,
.block_table_6 table thead th,
.block_table_6 table thead td {
	background-color: var(--i_sub2_color);
}
.block_table_2 table th,
.block_table_5 table th,
.block_table_6 table th {
	background-color: var(--i_sub2_color);
	border: 1px solid var(--i_border_color);
	text-align: center;
	vertical-align: middle;
}
.block_table_2 table td,
.block_table_5 table td,
.block_table_6 table td {
	background-color: var(--i_bg_color);
	border: 1px solid var(--i_border_color);
	vertical-align: middle;
}
.block_table_2 table thead td,
.block_table_5 table thead td,
.block_table_6 table thead td {
	text-align: center;
	font-weight: bold;
}
@media screen and (max-width: 500px) {
	.block_table_2 table {
		border-bottom: 1px solid var(--i_border_color);
	}
	.block_table_2 table th {
		border-top: 1px solid var(--i_border_color);
	}
	.block_table_2 table td {
		border-top: 1px dotted var(--i_border_color);
	}
}

/*----------------------------block_table_3----------------------------*/

.block_table_3 table thead,
.block_table_3 table thead th,
.block_table_3 table thead td,
.block_table_7 table thead,
.block_table_7 table thead th,
.block_table_7 table thead td {
	background-color: var(--i_sub2_color);
}
.block_table_3 table th,
.block_table_7 table th {
	background-color: var(--i_sub2_color);
	border: 1px solid var(--i_border_color);
	text-align: center;
	vertical-align: middle;
}
.block_table_3 table td,
.block_table_7 table td {
	background-color: var(--i_bg_color);
	border: 1px solid var(--i_border_color);
	vertical-align: middle;
}
@media screen and (max-width: 500px) {
	.block_table_3 table {
		border-bottom: 1px solid var(--i_border_color);
	}
	.block_table_3 table th {
		border-top: 1px solid var(--i_border_color);
	}
	.block_table_3 table td {
		border-top: 1px dotted var(--i_border_color);
	}
}
.block_table_3_item li {
	vertical-align: middle;
}

/*----------------------------gallery_archive / gallery_single----------------------------*/

.gallery_archive .inner_item a,
.gallery_single .inner_item a {
	transition: 0.2s ease-in-out;
	background-color: transparent;
}
.gallery_archive .inner_item a:hover,
.gallery_single .inner_item a:hover {
	background-color: #000;
}
.gallery_archive .inner_item a:hover img,
.gallery_single .inner_item a:hover img {
	opacity: 0.8;
}
.gallery_archive .inner_item a:after,
.gallery_single .inner_item a:after {
	color: #fff;
}
.gallery_archive .inner_item p span,
.gallery_single .inner_item p span {
	color: #fff;
}
.gallery_single_slider .slick-arrow::before {
	border-color: var(--i_btn_color);
}

/*----------------------------widget_gallery01----------------------------*/

.widget_gallery01 .slick-arrow {
	height: 40px;
	width: 30px;
	top: calc(50% - 20px);
	left: 0;
}
.widget_gallery01 .slick-next {
	left: auto;
	right: 0;
}

/*----------------------------gallery hover効果----------------------------*/

main .widget_gallery01 a,
main .gallery_archive .inner_item a,
main .gallery_single .inner_item a {
	overflow: hidden;
}
main .widget_gallery01 a img,
main .gallery_archive .inner_item a img,
main .gallery_single .inner_item a img {
	/*▼ 位置調整 美容院などの人物の場合は50% 30%あたり*/
	object-fit: cover;
	object-position: 50% 50%;
	backface-visibility: visible;
	transition: 1s ease-out !important;
	transition-property: transform opacity !important;
	transform: scale(1.001, 1.001);
}
main .widget_gallery01 a:hover img,
main .gallery_archive .inner_item a:hover img,
main .gallery_single .inner_item a:hover img {
	transform: scale(1.1, 1.1);
	opacity: 0.8;
}

/*----------------------------news_archive----------------------------*/

.news_archive article .inner_item_img:hover {
	opacity: 0.8;
}
.news_archive article .entry_meta {
	font-size: 1.3rem;
}
.add_design5 #primary article .inner_item_img a i:nth-last-child(1) {
	background-size: 50% !important;
}
#sidebar .widget_news02 li a div span i {
	background-size: 50% !important;
}

/*----------------------------widget_coupon----------------------------*/

.widget_coupon .content_wrapper {
	max-width: 900px !important;
}
.widget_coupon .inner_item > div,
.widget_coupon .inner_item > dl {
	font-size: 1.4rem;
	line-height: 1.7;
}

/*----------------------------widget_form----------------------------*/

.widget_form .privacypolicy {
	border: 1px solid var(--i_border_color);
}
.widget_form form {
	border-top: 1px solid var(--i_border_color);
}
.widget_form form dl {
	border-bottom: 1px solid var(--i_border_color);
}
.widget_form form dt,
.widget_form form dd {
	vertical-align: middle;
}
.widget_form form dt span {
	color: var(--i_sub2_color);
	color: #d43b3b !important;
	font-size: 1.2rem;
	font-weight: bold;
}
@media screen and (max-width: 770px) {
	.widget_form form dt {
		border-bottom: 1px dotted var(--i_border_color);
	}
}
main form dl input,
main form textarea {
	background: var(--i_sub2_color);
	border: 1px solid transparent;
	letter-spacing: 1px;
}
main form dl input:focus,
main form textarea:focus {
	background: var(--i_bg_color);
	color: var(--i_txt_color);
	border: 1px solid var(--i_border_color);
}
main form .submit input {
	letter-spacing: 3px;
	border: none;
}
main form select {
	background: var(--i_bg_color);
	border: 1px solid var(--i_border_color);
	letter-spacing: 1px;
}
main form input[type="radio"] + label,
main form input[type="checkbox"] + label {
	padding: 0 15px 0 22px;
}
main form input[type="radio"] + label::before,
main form input[type="checkbox"] + label::before {
	top: 50%;
	left: 0;
	width: 17px;
	height: 17px;
	margin-top: -9px;
	background: var(--i_sub2_color);
}
main form input[type="radio"] + label::before {
	border-radius: 30px;
}
main form input[type="radio"]:checked + label::after,
main form input[type="checkbox"]:checked + label::after {
	left: 4px;
	width: 9px;
	height: 9px;
	margin-top: -5px;
	background: var(--i_main_color);
}
main form input[type="radio"]:checked + label::after {
	border-radius: 100%;
}

/*----------------------------widget_link----------------------------*/

.widget_link .inner_item_txt {
	font-size: 2rem;
}
.widget_link .inner_item_url {
	color: var(--i_main_color);
	font-weight: bold;
}
.widget_link.block_link_1 .wrapper_item a {
	border-left: 1px solid var(--i_main_color);
}

/*----------------------------widget_lp01----------------------------*/

.widget_lp01 li a:hover {
	opacity: 0.8;
}
.widget_lp01 li a div span {
	background-size: 60% auto;
}

/*----------------------------widget_menu01----------------------------*/

.widget_menu01 h3 {
	vertical-align: central;
	font-size: 1.7rem;
	letter-spacing: 1px;
	margin-bottom: 15px;
}
.widget_menu01 li dd {
	font-size: 1.3rem;
	letter-spacing: 0;
}

/*----------------------------widget_menu02----------------------------*/

.widget_menu02 h3 {
	vertical-align: central;
	font-size: 1.7rem;
	letter-spacing: 1px;
}
.widget_menu02 li > p {
	font-size: 1.3rem;
	letter-spacing: 0;
}

/*----------------------------widget_news02----------------------------*/

.block_news_2 li {
	box-shadow: 5px 5px 0 var(--i_shadow_color);
}
.block_news_2 li a {
	padding: 30px;
}
.block_news_2 li a:after {
	border: 0 solid var(--i_sub2_color);
}
.block_news_2 li a:hover:after {
	border-width: 10px !important;
}

/*----------------------------widget_shop01----------------------------*/

.widget_staff01 .inner_item a:hover * {
	opacity: 0.8;
}
.widget_staff01 .sub {
	font-size: 1.2rem;
	font-weight: bold;
}

/*----------------------------widget_tel----------------------------*/

.widget_tel .inner_item_tel a,
.widget_tel .inner_item_tel span {
	font-size: 3.6rem;
	letter-spacing: 0.1rem;
	line-height: 1.1;
	padding: 20px;
	font-weight: bold;
}
@media screen and (max-width: 450px) {
	.widget_tel .inner_item_tel a,
	.widget_tel .inner_item_tel span {
		font-size: 2.6rem;
		padding: 15px 10px;
	}
	.widget_tel .inner_item_tel img {
		margin: 0 5px -2px 0;
	}
	.widget_tel .inner_item_tel svg {
		height: 16px;
		width: 16px;
	}
}

/*------------------blog------------------------*/
.block_news_2 li {
	box-shadow: none;
	border: 1px solid var(--i_border_color);
}

/*------------------glossary_archive------------------------*/

.glossary_archive .content_wrapper article {
	margin-bottom: 30px;
	padding-bottom: 30px;
	/*★1*/
}
.glossary_archive .content_wrapper .heading.block_header_2 {
	margin-bottom: 10px;
}
.glossary_archive .content_wrapper .heading.block_header_2 .h {
	font-size: 1.8rem;
}
.glossary_archive .content_wrapper .heading.block_header_2 .h:after {
	top: 1em;
}
.glossary_archive .content_wrapper .heading.block_header_2 a:after {
	content: "View More";
	position: absolute;
	width: 150px;
	bottom: 32px;
	/*★1 + 数px*/
	right: 0;
	text-align: center;
	font-size: 1.5rem;
	font-weight: normal;
	padding: 3px 10px;
}
.glossary_archive .content_wrapper article .entry_body {
	padding-right: 180px;
}
@media screen and (max-width: 1224px) {
	.glossary_archive .content_wrapper .heading.block_header_2 a:after {
		bottom: calc(32px + 1.8rem);
		/*★1 + 数px*/
	}
}
@media screen and (max-width: 650px) {
	.glossary_archive .content_wrapper article {
		padding-bottom: 60px;
	}
	.glossary_archive .content_wrapper .heading.block_header_2 a:after {
		bottom: 30px;
		/*★1*/
	}
	.glossary_archive .content_wrapper article .entry_body {
		padding-right: 0;
	}
}

/*------------------recruit------------------------*/

.recruit_archive.add_design1 .recruitment_list .inner_item {
	background: rgba(255, 255, 255, 0.8);
}

/*------------------------------------------------------------------*/
/*---------------------------Generated------------------------------*/
/*------------------------------------------------------------------*/

/* ===== load ===== */

#load div:nth-of-type(1) {
	background: var(--i_main_color);
}
#load.load10 div:nth-of-type(1) {
	background: var(--i_main_color) !important;
}
#load .loader {
	border: 1px solid var(--i_main_color);
}
#load .loader,
#load .loader::before {
	border-top-color: var(--i_main_color);
}
#load .loader::before,
#load .loader::after {
	/*★*-1*/
	left: -1px;
	top: -1px;
}
#load img {
	/*max-width: 124px;*/
	max-height: 100%;
        max-width: 150px;
}
@media screen and (max-width: 650px) {
	#load img {
		/*max-width: 67px;*/
                max-width: 150px;
	}
}

/* ===== header ===== */

header {
	font-size: 1.4rem;
	color: #fff;
}
body:not(.scrolled) header::before {
	position: absolute;
	display: block;
	content: "";
	width: 35%;
	height: 250px;
	min-width: 200px;
	/*background: #ffffff;*/ /*ロゴ下の三角形を削除*/
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: -1;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
	max-width: 320px;
}
.scrolled header {
	background: rgba(19, 100, 54, 0.9);
}
header .wraper {
	max-width: 1300px;
}
header h1 {
	line-height: 1.5;
	font-size: 1.3rem;
	font-weight: normal;
	opacity: 0.7;
	fill: var(--i_txt_color);
}
body.scrolled header .logo {
	padding: 20px 0 !important;
}
body.scrolled header .logo a img {
	max-height: 90px;
}
header .header_contents .header_col1 {
	/* ▼水平方向レイアウト */
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
header .header_contents .header_col1 .tel {
	position: relative;
	font-size: 26px;
	line-height: 1;
	padding-left: 26px;
	font-weight: 600;
	fill: var(--i_txt_color);
}
header .header_contents .header_col1 .tel a,
header .header_contents .header_col1 .tel span,
header .header_contents .header_col1 .tel a *,
header .header_contents .header_col1 .tel span * {
	color: var(--i_bg_color);
}
header .header_contents .header_col1 .tel svg,
header .burger li.sp_translate a svg,
header .header_contents .header_sns li svg {
	fill: var(--i_bg_color);
}
header .sp_menu a div span,
header .sp_menu a div:before,
header .sp_menu a div:after {
	background: var(--i_bg_color);
}
header .header_contents .header_col1 .tel svg {
	width: 20px;
	height: 20px;
	top: calc(50% - 9px);
	left: 0;
}
header#pattern1 nav,
header#pattern3 nav {
	position: relative;
}
header nav * {
	color: var(--i_bg_color);
}
header nav ul.nav_1st {
	width: 100%;
	max-width: 1300px !important;
}
header nav ul.nav_1st > li {
	box-sizing: border-box;
	position: relative;
}
header nav ul.nav_1st > li:after {
	/*罫線*/
	content: "";
	width: 1px;
	height: 50%;
	position: absolute;
	top: 25%;
	left: 0;
}
header nav ul.nav_1st > li:last-child:before {
	/*罫線*/
	content: "";
	width: 1px;
	height: 50%;
	position: absolute;
	top: 25%;
	right: 0;
}
header nav ul.nav_1st > li > a {
	font-size: 1.6rem;
	font-weight: 600;
	position: relative;
	padding-left: 1vw;
	padding-right: 1vw;
}
header nav ul.nav_1st > li > a span {
	/*ナビの高さはline-heightで調整*/
	line-height: 3;
	/* マージン普通選択時 */
	transition: 0.4s ease-in-out;
}
header#pattern2 nav ul.nav_1st > li > a span {
	line-height: 3;
}
.scrolled header#pattern2 nav ul.nav_1st > li > a span {
	line-height: 2;
}
header nav ul.nav_2nd {
	padding-top: 20px;
}
header nav ul.nav_1st > li:hover ul.nav_2nd {
	padding-top: 15px;
	box-shadow: 2px 2px 5px var(--i_shadow_color);
}
header nav ul.nav_2nd > li {
	background: rgba(19, 100, 54, 0.9);
	border-bottom: 1px solid var(--i_border_color);
}
header nav ul.nav_2nd > li:nth-last-of-type(1) {
	border-bottom: none;
}
header nav ul.nav_2nd li a {
	padding: 10px 20px;
	font-weight: normal;
	font-size: 1.4rem;
}
header nav ul.nav_2nd > li > a {
	padding-right: 30px;
}
header nav ul.nav_2nd > li > a:after {
	height: 5px;
	width: 5px;
	transform: rotate(-45deg);
	border-right: 1px solid var(--i_btn_txt_color);
	border-bottom: 1px solid var(--i_btn_txt_color);
	top: calc(50% - 2.5px);
	right: 20px;
}
header nav ul.nav_3rd {
	padding-left: 20px;
}
header nav ul.nav_3nd li a {
	padding: 5px 20px;
}
header nav ul.nav_3rd > li > a:after {
	height: 1px;
	width: 4px;
	background: var(--i_btn_txt_color);
	top: calc(50% - 0.5px);
	left: 5px;
}
header .burger {
	transform: translateY(0);
}
header#pattern4.unix4 nav ul.nav_1st > li i:before,
header#pattern4.unix4 nav ul.nav_1st > li i:after {
	background: var(--i_bg_color);
}
header#pattern4.unix4.open .header_contents {
	background: rgba(19, 100, 54, 0.9);
}
@media screen and (max-width: 900px) {
	header#pattern3 .logo,
	header#pattern4 .logo {
		margin: 0;
		margin-right: auto;
		/* max-width: 45px !important; */
	}
}
header#pattern4.unix4 nav ul.nav_1st {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}
header#pattern4.unix4 nav,
header#pattern4.unix4 nav ul.nav_1st li,
header#pattern4.unix4 .header_contents .header_col2,
header#pattern4.unix4 .header_contents .header_col1 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
header#pattern4.unix4 nav ul.nav_2nd {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}
/*header.open:after,
header .header_contents {
	background: rgba(19, 100, 54, 0.9);
}*/
@media screen and (max-width: 900px) {
	body.scrolled header .logo {
		padding: 10px 0 !important;
	}
	header .burger li.sp_translate a svg {
		height: 28px;
		width: 28px;
		margin: 10% auto;
	}
	header .header_sns,
	header .header_contents .header_col1,
	header .header_contents .header_col2 {
		border-top: 1px solid rgba(0, 0, 0, 0.2);
		border-bottom: 1px solid var(--i_border_color);
	}
	header .header_sns {
		border-bottom: none;
	}
	header .header_sns:empty,
	header .header_contents .header_col1:empty,
	header .header_contents .header_col2:empty {
		border: none;
	}
	header .header_contents .header_col1 .tel {
		float: none;
	}
	header .header_contents .header_col2 {
		display: block !important;
	}
	header nav {
		border-bottom: 1px solid var(--i_border_color);
	}
	header nav ul.nav_1st {
		border-bottom: 1px solid rgba(0, 0, 0, 0.2);
		border-top: 1px solid var(--i_border_color);
	}
	header nav ul.nav_1st li {
		border-bottom: 1px solid var(--i_border_color);
		border-top: 1px solid rgba(0, 0, 0, 0.2);
	}
	header nav ul.nav_1st > li:before,
	header nav ul.nav_1st > li:after {
		display: none !important;
	}
	header nav ul.nav_1st > li i:before,
	header nav ul.nav_1st > li i:after {
		background: var(--i_btn_txt_color);
	}
	header nav ul.nav_1st > li i {
		height: 60px;
	}
	header nav ul.nav_2nd {
		border-top: 1px solid var(--i_border_color);
	}
	header nav ul.nav_2nd > li {
		box-shadow: none;
	}
	header nav ul.nav_2nd > li * {
		color: #fff;
	}
	header nav ul.nav_3rd {
		border-top: 1px solid var(--i_border_color);
	}
	header nav ul.nav_3rd > li:nth-last-of-type(1) {
		border-bottom: none;
	}
	header .logo a img {
		max-height: 40px !important;
	}
	header nav ul.nav_1st > li > a:hover:before {
		transform: scale(0, 0);
	}
	header#pattern1 nav,
	header#pattern3 nav {
		border-bottom: 0;
		border-top: 0;
	}
	header nav ul.nav_1st > li > a:hover {
		background: none;
	}
	header nav ul.nav_1st > li > a:hover span {
		opacity: 0.5;
	}
	header nav ul.nav_1st > li:hover ul.nav_2nd {
		box-shadow: none !important;
	}
	header .wraper > .inner {
		min-height: 45px !important;
	}
	body:not(.scrolled) header::before {
		height: 110px;
		min-width: 140px;
	}
}

/* ===== MV LV ===== */

#mv_outer {
	/*mvに背景とかはここを利用する*/
	position: relative;
}
#mv {
	width: 100%;
	height: 100vh;
}
#mv::after {
	background: rgba(16, 0, 7, 0.3);
}
#mv .mv_text {
	height: calc(100% - 210px);
	align-items: flex-end;
	/*垂直方向中央*/
	width: 100% !important;
	left: 0 !important;
	bottom: 70px !important;
}
#mv .mv_text > div {
	max-width: none !important;
	box-sizing: border-box;
	width: auto;
	color: #fff;
	position: relative;
	margin-left: 3%;
}
#mv .mv_text h2 {
	font-size: 6.5rem !important;
	/* ←max-font-size的意味合いで使用する。動作はjs。*/
	line-height: 1.3;
	font-weight: 600;
	position: relative;
}
#mv .mv_text p {
	padding-top: 15px;
	font-size: 3.5rem;
	font-weight: 600;
}
#mv .mv_scroll {
	display: none;
	width: 3px;
	height: auto;
	position: absolute;
	right: 25px;
	bottom: -17px;
	left: auto;
}
#mv .mv_scroll a {
	-webkit-writing-mode: vertical-lr;
	-ms-writing-mode: tb-lr;
	writing-mode: vertical-lr;
	font-weight: 600;
	font-size: 10px;
	position: relative;
	padding-bottom: 110px;
	height: auto;
	width: auto;
	text-indent: 0;
	transition: all 0.3s ease-in-out;
	text-align: right;
	color: #fff !important;
	letter-spacing: 0.4rem;
	/* font-family: "Oswald", sans-serif; */
	font-family: 'Oswald', 'Noto Sans JP', "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#mv .mv_scroll a::before {
	width: 1px;
	height: 70px;
	transform: none;
	position: absolute;
	bottom: -15px;
	left: 1px;
	top: auto;
	background: rgba(255, 255, 255, 0.5);
	transition: all 0.3s ease-in-out;
}
#mv .mv_scroll a:hover {
	padding-bottom: 80px;
}
#mv .mv_scroll a:hover::before {
	height: 50px;
}
#mv .mv_scroll a:hover::after {
	height: 25px;
}
#mv .mv_pointer,
#mv .mv_arrow {
	display: none;
}

#mv .mv_textimg {
	width: 97%;
	left: auto;
	right: 3%;
	height: 99%;
	top: auto;
	bottom: 1%;
}

#mv .mv_textimg img {
	width: clamp(310px, 65vw, 650px);
}

/* CV */
#mv .mv_textimg a {
	display: block;
	width: 65%;
	height: 15%;
	position: absolute;
	top: auto;
	bottom: 0;
	left: auto;
	right: 0;
}

@media screen and (max-width: 1360px) and (min-width: 769px) {
	#mv .mv_textimg img {
		max-height: 300px !important;
		width: auto;
	}
}

@media screen and (max-height: 630px) {
	#mv .mv_text h2 {
		font-size: 5rem !important;
	}
	#mv .mv_text p {
		font-size: 2.5rem;
	}
}
@media screen and (max-width: 100vh) {
	#mv {
		height: 95vh;
	}
}
@media screen and (max-width: 900px) {
	#mv_outer:before {
		bottom: 170px;
	}
	#mv_outer:before,
	#mv_outer:after {
		width: 150px;
		height: 150px;
	}
}
@media screen and (max-width: 768px) {
	#mv .mv_textimg {
		left: 1%;
		right: auto;
	}
}
@media screen and (max-width: 650px) {
	#mv .mv_text p {
		font-size: 1.6rem !important;
		padding-top: 15px;
	}
	#mv .mv_text h2 {
		font-size: 8vw !important;
		line-height: 1.5;
	}
	#mv .mv_scroll {
		display: none;
	}
}
#lv {
	background: #333;
	height: 300px;
	padding-bottom: 0;
	width: 100%;
}
#lv_outer {
	/*mvに背景とかはここを利用する*/
	position: relative;
}
header.over + #lv_outer #lv {
	min-height: 450px;
}
#lv div {
	opacity: 0.5;
}
#lv p {
	left: 0;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	padding: 0 10px 0;
}
#lv p span {
	display: inline-block;
	font-size: 4rem;
	font-weight: 600;
	text-align: center;
	position: relative;
	word-break: break-all;
	line-height: 1.2;
	letter-spacing: 0.2rem;
	color: #fff;
}
@media screen and (max-width: 800px) {
	#lv {
		height: 200px;
	}
	#lv p span {
		font-size: 2.8rem;
	}
}
@media screen and (max-width: 900px) {
	#lv_outer {
		padding: 0;
	}
}

/* ===== pan ===== */

#pan {
	padding: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}
#pan li {
	font-size: 1.2rem;
	padding: 5px 0 3px 30px;
}
#pan li:before {
	border-top: 1px solid rgba(0, 0, 0, 0.13);
	border-right: 1px solid rgba(0, 0, 0, 0.13);
}

/* ===== btn ===== */

header .header_contents .header_col1 .btn .translate a svg {
	fill: var(--i_bg_color);
}
header#pattern4 .wraper > .inner > .btn {
	z-index: 1;
}
header .header_contents .header_col1 .btn > a,
header#pattern4 .wraper > .inner > .btn > a {
	display: block;
	text-align: center;
	background: var(--i_btn_color);
	color: var(--i_btn_txt_color);
	font-weight: 600;
	padding: 10px 15px;
	transition: 0.4s ease-in-out;
	position: relative;
	transform: skewX(-15deg);
	-moz-transform: skewX(-15deg);
	-webkit-transform: skewX(-15deg);
}
header#pattern4 .wraper > .inner > .btn > a span,
header .header_contents .header_col1 .btn > a span.inn {
	transition: 0.4s ease-in-out;
	transform: skewX(15deg);
	-moz-transform: skewX(15deg);
	-webkit-transform: skewX(15deg);
}
header .header_contents .header_col1 .btn > a:hover,
header#pattern4 .wraper > .inner > .btn > a:hover {
	background: var(--i_btn_hover_color);
	color: var(--i_btn_hover_txt_color);
	opacity: 1;
}
header .header_contents .header_col1 .btn > a span.inn {
	color: var(--i_btn_txt_color) !important;
}
header .header_contents .header_col1 .btn > a:hover span.inn {
	color: var(--i_btn_hover_txt_color) !important;
}
header .header_contents .header_col1 .btn > a[target="_blank"] span.inn,
header#pattern4 .wraper > .inner > .btn > a[target="_blank"] span.inn {
	padding-right: 25px !important;
}
header .header_contents .header_col1 .btn .translate a svg {
	max-width: 74%;
	max-height: 74%;
	margin: 13% auto 0;
}
header .header_contents .header_col1 .btn .translate a:hover {
	opacity: 0.8;
}
header
	.header_contents
	.header_col1
	.btn
	> a:hover[target="_blank"]
	span.inn::before,
header
	.header_contents
	.header_col1
	.btn
	> a:hover[target="_blank"]
	span.inn::after,
header .header_contents .header_col1 .btn > a span.inn {
	transition: 0.4s ease-in-out;
}
header .header_contents .header_col1 .btn > a:hover span.inn {
	color: var(--i_main_color);
}
header#pattern4 .inner > .btn + .header_sns {
	display: none;
}
@media screen and (max-width: 900px) {
	header .header_contents .header_col1 .btn {
		float: none;
	}
	header .header_contents .header_col1 .btn > a {
		padding: 10px 15px 11px;
	}
}
.contents_btn01 a,
.glossary_archive .content_wrapper .heading.block_header_2 a:after {
	color: var(--i_btn_txt_color) !important;
	background: var(--i_btn_color);
	position: relative;
	display: inline-block;
	margin-left: 8px !important;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	border-radius: 0px;
	font-family: inherit;
	font-weight: 600;
	transform: skewX(-15deg);
	-moz-transform: skewX(-15deg);
	-webkit-transform: skewX(-15deg);
	transition: all 0.3s ease;
}
main form .submit span {
	position: relative;
	background: var(--i_btn_color);
	transform: skewX(-15deg);
	-moz-transform: skewX(-15deg);
	-webkit-transform: skewX(-15deg);
	transition: all 0.3s ease;
}
.glossary_archive .content_wrapper .heading.block_header_2 a:after {
	transform: skewX(0deg);
	-moz-transform: skewX(0deg);
	-webkit-transform: skewX(0deg);
}
.contents_btn01 a span {
	transform: skewX(15deg);
	-moz-transform: skewX(15deg);
	-webkit-transform: skewX(15deg);
	color: var(i_btn_txt_color);
	background: transparent;
	transition: all 0.3s ease;
}
main form .submit span input {
	background: transparent;
	border: none;
	color: var(--i_btn_txt_color);
	font-family: inherit;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1.5;
	padding: 10px 20px 12px !important;
	transform: skewX(15deg);
	-moz-transform: skewX(15deg);
	-webkit-transform: skewX(15deg);
}
.contents_btn01 a:before,
main form .submit span:before {
	position: absolute;
	content: " ";
	width: 7px;
	height: 7px;
	top: calc(50% - 4px);
	left: 5px;
	border-top: 1px solid var(--i_btn_txt_color);
	border-right: 1px solid var(--i_btn_txt_color);
	transform: rotate(45deg);
	transition: all 0.3s ease;
	z-index: 10;
}
.contents_btn01 a:hover,
.glossary_archive .content_wrapper .heading.block_header_2 a:hover:after,
main form .submit span:hover {
	background: var(--i_btn_hover_color);
	color: var(--i_btn_hover_txt_color) !important;
}
.contents_btn01 a:hover span,
main form .submit span:hover input {
	color: var(--i_btn_hover_txt_color) !important;
}
.contents_btn01 a:hover:before,
main form .submit span:hover:before {
	left: 10px;
	border-color: var(--i_btn_hover_txt_color);
}
.contents_btn01 a[target="_blank"] span:before,
.contents_btn01 a[target="_blank"] span:after {
	border: 1px solid var(--i_btn_txt_color);
	transition: 0.2s ease-in-out;
}
.contents_btn01 a[target="_blank"]:hover span:before,
.contents_btn01 a[target="_blank"]:hover span:after {
	border: 1px solid var(--i_btn_hover_txt_color) !important;
}
.contents_btn01 a span {
	text-align: center;
	line-height: 1.5;
	font-size: 1.5rem;
	padding: 10px 20px 12px;
}

/* ===== heading ===== */

section .content_wrapper > .heading:first-child:last-child {
	margin-bottom: 0;
}
section:not([class*="pt"]) .content_wrapper > .heading:first-child:last-child {
	margin-bottom: 0;
}
.heading.block_header_1,
.heading.block_header_6 {
	margin-bottom: 30px;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
}
.heading.block_header_1 p,
.heading.block_header_6 .h {
	font-size: 3.6rem;
	line-height: 1.4;
	font-weight: 600;
	position: relative;
	color: var(--i_main_color);
	letter-spacing: 0.3rem;
}
.heading.block_header_1 .h,
.heading.block_header_6 p {
	font-size: 1.7rem;
	letter-spacing: 0.2rem;
	font-weight: 600;
}
.index .heading.block_header_1 p,
.index .heading.block_header_6 .h {
	font-size: 5rem;
}
@media screen and (max-width: 800px) {
	.heading.block_header_1,
	.heading.block_header_6 {
		margin-bottom: 20px;
	}
	.heading.block_header_1 p,
	.heading.block_header_6 .h {
		font-size: 2.5rem;
	}
	.heading.block_header_1 .h,
	.heading.block_header_6 p {
		font-size: 1.5rem;
	}
	.index .heading.block_header_1,
	.index .heading.block_header_6 {
		align-items: center !important;
	}
	.index .heading.block_header_1 p,
	.index .heading.block_header_6 .h {
		font-size: 3rem;
	}
}
.heading.block_header_2 {
	margin-bottom: 30px;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.heading.block_header_2 .h {
	display: inline-block;
	font-weight: 600;
	font-size: 2.2rem;
	line-height: 1.5;
	position: relative;
	margin-bottom: 10px;
	padding-left: 25px;
	padding-right: 10px;
	letter-spacing: 0.1rem;
}
.heading.block_header_2 .h:before {
	position: absolute;
	left: 0;
	top: calc(1em * 1.6 / 2);
	transform: translateY(-50%);
	content: "";
	display: inline-block;
	width: 16px;
	height: 2px;
	background: var(--i_sub_color);
}
.heading.block_header_2 p {
	font-size: 1.6rem;
	letter-spacing: 0.15rem;
	font-weight: 600;
	color: var(--i_main_color);
}
@media screen and (max-width: 800px) {
	.heading.block_header_2 {
		margin-bottom: 20px;
	}
	.heading.block_header_2 .h {
		font-size: 2.1rem !important;
		padding-left: 21px;
	}
	.heading.block_header_2 p {
		font-size: 1.3rem;
	}
	.heading.block_header_2 .h:before {
		width: 12px;
	}
}
.heading.block_header_2 {
	margin-bottom: 30px;
}
.heading.block_header_2 .h {
	display: inline-block;
	font-weight: 600;
	font-size: 2.1rem;
	line-height: 1.5;
	position: relative;
	color: var(--i_main_color);
}
.heading.block_header_2 p {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--i_main_color);
}
.news_archive .heading.block_header_2,
.glossary_archive .heading.block_header_2,
.widget_gallery01 .heading.block_header_2,
.gallery_archive .heading.block_header_2 {
	border: none;
}
.widget_gallery01.add_design4 .inner_item .heading.block_header_2 {
	padding-left: 2em !important;
}
@media screen and (max-width: 800px) {
	.heading.block_header_2 {
		margin-bottom: 20px;
	}
	.heading.block_header_2 .h {
		font-size: 2.1rem;
	}
}
.glossary_archive .content_wrapper .heading.block_header_2 .h {
	padding-left: 0 !important;
	border-bottom: 0 !important;
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}
.glossary_archive .content_wrapper .heading.block_header_2 .h a {
	color: var(--i_main_color);
}
.glossary_archive .content_wrapper .heading.block_header_2 .h:before,
.glossary_archive .content_wrapper .heading.block_header_2 .h:after,
.glossary_archive .content_wrapper .heading.block_header_2:before,
.glossary_archive .content_wrapper .heading.block_header_2:after {
	display: none !important;
}
.heading.block_header_3 {
	overflow: hidden;
	background: var(--i_main_color);
	color: #fff;
	padding: 10px 30px;
	margin-bottom: 30px;
}
.heading.block_header_3 .h {
	font-weight: 600;
	font-size: 1.9rem;
	line-height: 1.5;
}
.heading.block_header_3 p {
	font-size: 1.4rem;
	font-weight: 600;
}
@media screen and (max-width: 800px) {
	.heading.block_header_3 {
		padding: 5px 15px;
		margin-bottom: 20px;
	}
	.heading.block_header_3 .h {
		font-size: 2rem;
	}
	.heading.block_header_3 p {
		font-size: 1.3rem;
	}
}
.heading.block_header_4 {
	margin-bottom: 15px;
}
.heading.block_header_4:before {
	display: none;
}
.heading.block_header_4 .h {
	font-size: 2.1rem !important;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 5px;
	color: var(--i_main_color);
}
.heading.block_header_4 p {
	font-size: 1.6rem;
	font-weight: 600;
}
.heading.block_header_5 {
	margin-bottom: 15px;
}
.heading.block_header_5 .h {
	display: inline;
	font-weight: 600;
	font-size: 1.8rem;
	margin-bottom: 10px;
}
.heading.block_header_5 p {
	display: inline;
	font-size: 1.4rem;
}
.heading.block_header_5 p:before {
	content: " / ";
}
#sidebar .heading.block_header_5 {
	background: var(--i_main_color);
	padding: 5px 15px;
	color: #fff;
	clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 42%, 100% 100%, 0 100%);
}
.glossary_archive .content_wrapper .heading.block_header_2:before {
	height: 17px;
}
.glossary_archive .content_wrapper .heading.block_header_2 .h {
	padding-left: 15px;
}
#sidebar .heading p {
	text-transform: uppercase !important;
}

/* ===== footer ===== */

#fixbtn .contents_btn01 {
	padding: 8px 1px !important;
}
#fixbtn .contents_btn01 a {
	min-width: 196px !important;
}
#fixbtn .contents_btn01 a span {
	font-size: 1.4rem;
	padding: 12px 10px 12px;
}
@media screen and (max-width: 500px) {
	#fixbtn .contents_btn01 a {
		min-width: 164px !important;
	}
	#fixbtn .contents_btn01 a:before,
	#fixbtn .contents_btn01 a:after {
		display: none;
	}
}
#fixbtn {
	margin-bottom: 20px;
	font-size: 1.5rem;
}
#fixbtn .fixbtnwrap {
	background: var(--i_sub2_color);
}
#fixbtn[data-pattern="3"] .fixbtntel {
	background: rgba(17, 17, 17, 0.9);
}
#fixbtn.no .fixbtnwrap {
	background-color: transparent;
}
#fixbtn .fixbtntel,
#fixbtn .fixbtntel a,
#fixbtn .fixbtntel span {
	color: var(--i_txt_color);
	/* background: var(--i_sub2_color); */
}
#fixbtn .fixbtntel {
	z-index: 1;
}
#fixbtn .fixbtntel:nth-last-of-type(2) {
	border-right: none;
}
#fixbtn .fixbtntel a,
#fixbtn .fixbtntel span {
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 1;
	margin-right: 10px;
}
#fixbtn .fixbtntel a:last-child,
#fixbtn .fixbtntel span:last-child {
	margin-right: 0;
}
#fixbtn .fixbtntel svg {
	width: 18px;
	height: 18px;
	margin-right: 5px;
	fill: var(--i_txt_color);
}
#fixbtn .inner > div {
	z-index: 1;
}
#fixbtn .contents_btn01 {
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}
#fixbtn .contents_btn01:nth-of-type(1) {
	border-left: none;
}
#fixbtn .contents_btn01:nth-of-type(1) {
	/*▼ telない場合中央揃え*/
	margin-left: auto;
	margin-right: auto;
}
#fixbtn #scrolltop:nth-of-type(1) {
	margin-left: auto;
	/*▼ 右揃え*/
	margin-right: 0;
	/*▼ 中央揃え*/
	margin-right: auto;
}
#fixbtn #scrolltop a {
	height: 40px;
	width: 40px;
}
#fixbtn #scrolltop a:before {
	transition: 0.2s ease-in-out;
	width: 40px;
	height: 40px;
	border: none !important;
	background: var(--i_txt_color);
	mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%20-960%20960%20960%22%20fill%3D%22%235f6368%22%3E%3Cpath%20d%3D%22M480-395.76%20327.83-244.35q-12.68%2012.68-31.45%2013.06-18.77.38-32.21-13.3-12.67-12.67-12.67-31.82%200-19.16%2012.67-31.83L447.93-492q6.72-6.72%2014.92-9.82%208.19-3.09%2017.15-3.09%208.96%200%2017.15%203.09%208.2%203.1%2014.92%209.82l183.76%20183.76q12.67%2012.67%2013.05%2031.33.38%2018.65-13.05%2032.32-12.68%2012.92-31.83%2012.92t-32.07-12.92L480-395.76Zm0-247.41L327.83-491.76q-12.68%2012.67-31.45%2013.05-18.77.38-32.21-13.05-12.67-12.67-12.67-31.83%200-19.15%2012.67-31.82l183.76-184q6.72-6.72%2014.92-9.82%208.19-3.1%2017.15-3.1%208.96%200%2017.15%203.1%208.2%203.1%2014.92%209.82l183.76%20184q12.67%2012.67%2013.05%2031.44.38%2018.77-13.05%2032.21-12.68%2012.67-31.83%2012.67t-31.83-12.67L480-643.17Z%22%2F%3E%3C%2Fsvg%3E");
}
#fixbtn #scrolltop a:hover:before {
	opacity: 0.7;
}
#fixbtn.no #scrolltop a:before {
	border-color: rgba(120, 120, 120, 0.6);
}
#fixbtn.no #scrolltop a:hover:before {
	border-left: 2px solid #787878;
	border-top: 2px solid #787878;
}
@media screen and (min-width: 701px) {
	footer.add_design2 nav:nth-last-child(2),
	footer.add_design3 nav:nth-last-child(2),
	footer.add_design2 .logo:nth-last-child(1),
	footer.add_design3 .logo:nth-last-child(1),
	footer.add_design4 nav:nth-last-child(2),
	footer.add_design5 nav:nth-last-child(2),
	footer.add_design4 .logo:nth-last-child(1),
	footer.add_design5 .logo:nth-last-child(1) {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 600px) {
	#fixbtn {
		margin-bottom: 0;
	}
	#fixbtn,
	#fixbtn .fixbtntel a,
	#fixbtn .fixbtntel span {
		font-size: 1.7rem;
	}
	#fixbtn .fixbtntel a,
	#fixbtn .fixbtntel span {
		font-size: 2rem !important;
		/* color: var(--i_txt_color) !important; */
		margin: 0;
	}
	#fixbtn .fixbtntel svg {
		width: 18px;
		height: 18px;
	}
	#fixbtn .contents_btn01 a {
		padding: 0;
		letter-spacing: 0;
		width: auto !important;
	}
	#fixbtn .contents_btn01 a:before {
		display: none;
	}
	#fixbtn .contents_btn01 a span {
		padding: 12px 15px 12px;
	}
}
footer {
	/*background: var(--i_txt_color);*/
	padding: 0;
	color: var(--i_bg_color);
}
footer a {
	color: var(--i_bg_color);
}
footer nav li {
	padding: 5px 0;
}
footer nav li a {
	font-weight: 500 !important;
	font-size: 1.35rem;
	color: var(--i_bg_color);
}
footer .logo {
	/*width: 150px !important;*/
}
footer .logo a {
	height: 100%;
	display: block;
}
footer .sns {
	margin: 0 auto 30px;
}
footer .sns svg {
	width: 40px;
	height: 40px;
	padding: 10px 10px;
	fill: var(--i_txt_color);
	transition: 0.2s ease-in-out;
}
footer .sns a:hover svg {
	opacity: 0.8;
}
#cp {
	padding: 10px 0;
	font-size: 1.1rem;
	letter-spacing: 0.1rem;
	color: var(--i_bg_color);
	text-align: center;
}
@media screen and (max-width: 600px) {
	footer {
		padding: 0 0 20px;
	}
}
@media screen and (max-width: 600px) {
	footer nav ul {
		border-bottom: 1px solid rgba(0, 0, 0, 0.13);
	}
	footer nav ul li {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		border-bottom: 1px solid rgba(0, 0, 0, 0.13);
	}
	footer nav ul li:nth-last-of-type(2n) {
		border-right: 1px solid rgba(0, 0, 0, 0.13);
	}
	footer nav ul li:nth-last-of-type(2n + 1) {
		border-left: 1px solid rgba(255, 255, 255, 0.1);
	}
	footer nav ul li:nth-of-type(1),
	footer nav ul li:nth-of-type(1),
	footer nav ul li:nth-of-type(2),
	footer nav ul li:nth-of-type(3):nth-last-of-type(2n-1) {
		border-top: 1px solid rgba(0, 0, 0, 0.13);
	}
	footer nav ul li:nth-last-of-type(1),
	footer nav ul li:nth-last-of-type(2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	footer .logo {
		width: 100px !important;
		margin-bottom: 10px;
	}
	#fixbtn .fixbtnwrap {
		border-bottom: none;
	}
	#fixbtn .inner {
		padding: 0;
	}
}

/* ===== 追加 ===== */

.recruit_archive.add_design1 .recruitment_list .inner_item {
	background: #ffffff;
}
.index
	main
	> section:first-child
	+ div.composite_box01
	.heading.block_header_4
	.h,
.index
	main
	> section:first-child
	+ div
	+ div.composite_box01
	.heading.block_header_4
	.h {
	font-size: 2.5rem;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 800px) {
	.index
		main
		> section:first-child
		+ div.composite_box01
		.heading.block_header_4
		.h,
	.index
		main
		> section:first-child
		+ div
		+ div.composite_box01
		.heading.block_header_4
		.h {
		font-size: 2.1rem;
	}
}
@media screen and (max-width: 950px) {
	.index .contents_box01 .inner_item_txt .contents_btn01 {
		text-align: center;
	}
}

/* ----- grid ----- */
a[id^="grid"] + div:before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/*background: url(/common/upload_data/s-crumcom/image/bg_1.jpg.webp) no-repeat
		top center/ cover;*/
	opacity: 0.6;
	z-index: 0;
}
a[id^="grid"] + div .heading.block_header_2 .h {
	font-size: 4rem !important;
	padding-left: 0;
	margin-bottom: 5px;
	letter-spacing: 0.3rem !important;
}
a[id^="grid"] + div .heading.block_header_2 .h:before {
	display: none;
}
a[id^="grid"] + div .heading.block_header_2 p {
	font-size: 1.7rem;
	letter-spacing: 0.2rem;
	color: var(--i_txt_color);
}
a[id^="grid"] + .block_news_1 > .content_wrapper {
	display: grid;
	grid-template-columns: 35% 60%;
	align-items: center;
	justify-content: space-between;
}
a[id^="grid"] + .block_news_1 .content_wrapper > .heading {
	grid-row: 1;
	grid-column: 1;
}
a[id^="grid"] + .block_news_1 .content_wrapper > .add_text {
	grid-row: 2;
	grid-column: 1;
	font-size: 95%;
	text-align: left;
}
a[id^="grid"] + .block_news_1 .content_wrapper > ul {
	grid-row: 1/4;
	grid-column: 2;
	min-width: 0;
	width: 100%;
}
a[id^="grid"] + .block_news_1 .content_wrapper > .contents_btn01 {
	grid-row: 3;
	grid-column: 1;
	padding-top: 0;
	padding-left: 0;
}
a[id^="grid"] + .block_news_1 li a {
	padding: 15px 0;
}
a[id^="grid"] + .block_news_1 ul > li {
	border: none !important;
}
a[id^="grid"] + .block_news_1 li a {
	color: var(--i_txt_color);
}
#grid2 + .block_news_1 ul > li {
	border: none !important;
	background: var(--i_bg_color);
	padding: 0 20px;
	margin-bottom: 20px;
	/* border-radius: 15px; */
}
a[id^="grid"] + .block_news_1 ul > li:last-of-type {
	margin-bottom: 0;
}
a[id^="grid"] + .block_news_1 li a > * {
	padding-left: 30px;
}
a[id^="grid"] + .block_news_1 li > p::before,
a[id^="grid"] + .block_news_1 li a > p::before {
	transition: 0.2s;
}
a[id^="grid"] + .block_news_1 li > a:hover p::before,
a[id^="grid"] + .block_news_1 li a:hover > p::before {
	left: 10px;
}
@media screen and (min-width: 651px) {
	a[id^="grid"] + .block_news_1 .content_wrapper {
		text-align: left !important;
	}
	#grid1 + div .content_wrapper ul > li {
		width: 31.5%;
	}
}
@media screen and (max-width: 650px) {
	a[id^="grid"] + .block_news_1 > .content_wrapper {
		display: block;
	}
	a[id^="grid"] + .block_news_1 .content_wrapper > .contents_btn01 {
		padding-top: 30px;
		padding-left: 8px;
	}
	a[id^="grid"] + .block_news_1 .content_wrapper > .contents_btn01 a {
		min-width: 200px;
	}
	a[id^="grid"] + div .heading {
		align-items: center !important;
	}
	a[id^="grid"] + div .heading.block_header_2 .h {
		font-size: 2.7rem !important;
	}
	a[id^="grid"] + div .heading.block_header_2 p {
		font-size: 1.5rem;
		letter-spacing: 0.1rem;
	}
	a[id^="grid"] + .block_news_1 ul > li:last-child {
		display: none;
	}
}

/* ----- c2 ----- */
#c2 + div .inner_item_img {
	position: relative;
}
#c2 + div .inner_item_img:before {
	position: absolute;
	content: "";
	width: 70%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(
		-30deg,
		rgba(25, 25, 25, 0.85) 0%,
		rgba(25, 25, 25, 0.45) 20%,
		rgba(25, 25, 25, 0) 50%
	);
	z-index: 1;
}
#c2 + div .inner_item_txt {
	z-index: 1;
}
#c2 + div .heading.block_header_4 .h {
	font-size: 4rem !important;
	line-height: 1.2;
	letter-spacing: 0.3rem !important;
}
#c2 + div .heading.block_header_4 p {
	font-size: 1.5rem;
	letter-spacing: 0.2rem;
}
#c2 + div .contents_btn01 {
	padding-bottom: 3px;
}
#c2 + div .contents_btn01 a {
	background: transparent;
	min-width: 200px;
	border-bottom: 1px solid #fff;
	transform: skewX(0);
	-moz-transform: skewX(0);
	-webkit-transform: skewX(0);
}
#c2 + div .contents_btn01 a span {
	transform: skewX(0);
	-moz-transform: skewX(0);
	-webkit-transform: skewX(0);
}
#c2 + div .contents_btn01 a:hover span {
	opacity: 0.7;
}
@media screen and (min-width: 901px) {
	#c2 + div .inner_item {
		align-items: flex-end;
	}
	#c2 + div .inner_item:nth-child(2) {
		margin-top: 60px;
	}
	#c2 + div .inner_item_txt {
		width: 70%;
		margin-top: -60px;
		border-left: 1px solid;
		padding-left: 20px;
	}
	#c2 + div .inner_item_img {
		display: flex;
	}
	#c2 + div .inner_item_img img {
		width: 70% !important;
		height: 500px !important;
	}
}
@media screen and (max-width: 900px) {
	#c2 + div .inner_item_img:before {
		display: none;
	}
	#c2 + div .heading.block_header_4 .h {
		font-size: 2.7rem !important;
		margin-bottom: 0;
	}
}

/* ----- top_img ----- */
#top_img + section {
	height: 300px;
}
@media screen and (max-width: 900px) {
	#top_img + section {
		height: 100px;
	}
}

/* ----- con ----- */
a[id^="con"] + section:after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/*background: url(/common/upload_data/s-crumcom/image/bg_1.jpg.webp) no-repeat
		top center/ cover;*/
	opacity: 0.6;
	z-index: 0;
}
a[id^="con"] + section .heading.block_header_2 .h {
	padding: 0;
	font-size: 4rem !important;
	line-height: 1.4;
	margin-bottom: 0;
	letter-spacing: 0.3rem !important;
}
a[id^="con"] + section .heading.block_header_2 .h:before {
	display: none;
}
a[id^="con"] + section .heading.block_header_2 p {
	padding-left: 0;
	font-size: 1.7rem;
	letter-spacing: 0.2rem;
	color: var(--i_txt_color);
}
@media screen and (min-width: 901px) {
	#con1 + section .inner_item_txt {
		padding-left: 80px;
	}
}
@media screen and (max-width: 900px) {
	a[id^="con"] + section .heading.block_header_2 .h {
		font-size: 2.7rem !important;
	}
	a[id^="con"] + section .heading.block_header_2 p {
		font-size: 1.5rem;
		letter-spacing: 0.1rem;
	}
}

/* ----- blog_type08 ----- */
#blog_type08 + div .slick-arrow:before {
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	top: 55%;
	left: calc(50% - 3px);
	width: 8px;
	height: 8px;
}
#blog_type08 + div .slick-arrow:after {
	content: "";
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	top: calc(50% - 8px);
	left: calc(50% - 15px);
	background: var(--i_btn_color);
	border-radius: 100px;
	z-index: -1;
}
#blog_type08 + div.article5 .slick-next {
	left: auto;
	right: 20%;
	margin-top: -35px;
}
#blog_type08 + div.article5 .slick-prev {
	left: 20%;
	margin-top: -35px !important;
}
#blog_type08 + div.article5 .slick-next:before {
	left: calc(50% - 7px) !important;
}
#blog_type08 + div.article4 .slick-next {
	left: auto;
	margin-top: -35px;
	right: 12%;
}
#blog_type08 + div.article4 .slick-prev {
	left: 12%;
	margin-top: -35px !important;
}
#blog_type08 + div.article4 .slick-next:before {
	left: calc(50% - 7px) !important;
}
#blog_type08 + div.article4 .slick-slide,
#blog_type08 + div.article5 .slick-slide {
	height: auto;
	opacity: 0.3;
	transform: scale(0.8);
	transition:
		opacity 0.5s,
		transform 0.5s;
	width: 100%;
}
#blog_type08 + div.article5 .slick-center,
#blog_type08 + div.article5 .slick-center + .slick-active,
#blog_type08 + div.article5 .slick-active:has(+ .slick-center),
#blog_type08 + div.article4 .slick-center,
#blog_type08 + div.article4 .slick-center + .slick-active,
#blog_type08 + div.article4 .slick-active:has(+ .slick-center) {
	opacity: 1;
	transform: scale(1);
}
@media (max-width: 500px) {
	#blog_type08 + div .slick-prev,
	#blog_type08 + div.article5 .slick-prev,
	#blog_type08 + div.article4 .slick-prev {
		left: 15px;
	}
	#blog_type08 + div .slick-next,
	#blog_type08 + div.article5 .slick-next,
	#blog_type08 + div.article4 .slick-next {
		right: 10px;
	}
	#blog_type08 + div .content_wrapper ul li a span {
		width: 90%;
		margin: auto;
	}
	#blog_type08 + div.article5 .slick-center + .slick-active,
	#blog_type08 + div.article4 .slick-center + .slick-active {
		opacity: 0.3;
		transform: scale(0.8);
	}
	#blog_type08 + div .heading + .add_text {
		padding: 0 20px;
	}
}

/* ----- faq ----- */
@media screen and (min-width: 901px) {
	#faq + div {
		width: 96%;
		max-width: 1400px;
		margin: -90px auto 0;
		z-index: 1;
		box-shadow: -5px -3px 10px rgba(0, 0, 0, 0.02);
		background: #fff;
	}
}

/* ----- txt ----- */
a[id^="txt"] + div {
	margin-bottom: -130px;
	z-index: 2;
}
a[id^="txt"] + div > .content_wrapper {
	padding: 0;
}
a[id^="txt"] + div .heading.block_header_4 .h {
	font-size: 12rem !important;
	font-weight: 600;
	white-space: nowrap;
	letter-spacing: 0rem;
	padding: 0 30px;
	line-height: 1;
	mix-blend-mode: difference;
}
a[id^="txt"] + div .wrapper_item {
	flex-wrap: nowrap;
}
a[id^="txt"] + div .inner_item {
	margin: 0 !important;
	flex: 0 0 auto;
	overflow: hidden;
}
a[id^="txt"]
	+ .composite_box01.block_images_1:not(.col2)
	.inner_item:nth-of-type(2n-1):nth-last-of-type(2) {
	margin-bottom: 0 !important;
}
a[id^="txt"] + div .inner_item:nth-of-type(odd) {
	animation: loop 80s -40s linear reverse infinite;
}
#txt2 + div .inner_item:nth-of-type(odd) {
	animation: loop 80s -40s linear infinite;
}
a[id^="txt"] + div .inner_item:nth-of-type(odd) .heading.block_header_4 .h {
	color: #d7d7d7;
	opacity: 0.5;
	letter-spacing: 0.5rem;
	margin-bottom: 25px;
}
a[id^="txt"] + div .inner_item:nth-of-type(even) .heading.block_header_4 .h {
	color: #d7d7d7;
	opacity: 0.5;
	letter-spacing: 0.5rem;
}
a[id^="txt"] + div .inner_item:nth-of-type(even) {
	animation: loop2 80s linear infinite;
}
a[id^="txt"]
	+ .composite_box01:not(.col2):not(.block_images_7):not(.block_images_8):not(
		.block_images_10
	):not(.block_images_11):not(.block_images_12):not(.block_images_13):not(
		.block_images_15
	):not(.block_images_17):not(.block_images_21)
	.inner_item {
	width: auto !important;
}
@media screen and (max-width: 900px) {
	a[id^="txt"] + div {
		margin-bottom: -110px;
	}
	a[id^="txt"] + div .heading.block_header_4 .h {
		font-size: 6rem !important;
	}
}
@keyframes loop {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}
@keyframes loop2 {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-200%);
	}
}

/* ----- ブログ等サイドバー ----- */
#sidebar .heading p {
	text-transform: uppercase !important;
}


/*2026/05/27*/
.heading.block_header_1 p, .heading.block_header_6 .h,
.heading.block_header_2 .h,
.heading.block_header_2 p,
.heading.block_header_4 .h {
    color: var(--i_ttl_color);
}

.heading.block_header_1 p,
.index .heading.block_header_1 p,
.index .heading.block_header_6 .h,
.heading .h {
  font-family: "Staatliches", sans-serif;
  font-weight: 600;
  font-style: normal;
}
footer {
background-color: var(--i_btn_color);
}
header .burger {
top: 1vw!important;
}
.scrolled header,
header.open:after,
header#pattern2.open .header_contents,
body.scrolled header:not(.nofixed)#pattern2 .header_contents {
background-color: var(--i_btn_color)!important;
}
footer .logo {
	width: 300px !important;
}
header#pattern2 .logo {
        width: 25%;
}

@media screen and (max-width: 480px) {
    header .logo {max-width: 65%!important}
}

.news_archive.add_design5 article .inner_item_img a.no_img {
background-color: var(--i_btn_color);
}
}
.wrapper_item h2.h,
.wrapper_item h2.h span {
    color: #100007 !important;
    -webkit-text-fill-color: #100007 !important;
}

#top_intro + * .h {
    color:#100007 ;
}

#para1 + * .wrapper_item .inner_item_txt p {
    color: #fff!important;
}
.no_img {
    background: #465B49!important;
}
.widget_shop01.add_design3 .inner_item_img img {
    background: #465B49;
}
.widget_shop01.add_design4 .inner_item_img a {
    background: #465B49;
}
@media screen and (max-width: 980px) {
#faq + *.contents_faq01 .wrapper_item {
    color: #fff;
}
}