@charset "utf-8";

:root {
	--font-family-base: "Zen Maru Gothic", sans-serif;
	--font-family-yu-gothic: "Yu Gothic", sans-serif;
	--font-size-base: 20px;
	--font-size-base-sp: min(15px,4vw);
	--font-color-base: #000;
	--font-weight-base: 400;
	--lineheight-base: 1.5;
	--color-white: #fff;
	--color-orange: #F99A00;
	--color-blue: #2CB8BF;
	--color-blue-light: #1BCBDD;
	--color-blue-dark: #1B6FDD;
	--color-green: #59C414;
	--color-green-dark: #004F00;
	--color-grey: #B2B2B2;
	--color-grey-dark: #808080;
	--color-pink: #FF8DC1;
	--color-purple: #AF6FDD;
	--color-yellow: #FFFF83;
}

* {
	box-sizing: border-box;
}

html {
}


body {
	background-color: var(--color-white);
	color: var(--font-color-base);
	font-family: var(--font-family-base);
	font-weight: var(--font-weight-base);
	font-size: var(--font-size-base);
	line-height: var(--lineheight-base);
	text-align: left;
	position: relative;
}
@media (max-width: 767px) {
body {
	font-size: var(--font-size-base-sp);
}
}


/* !HTML5 elements
---------------------------------------------------------- */
header, footer, nav, section, aside, article
{ display: block;}

/* !Reseting
---------------------------------------------------------- */

body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td,input,a,textarea,select,span,nav,section,header
{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
input,
textarea {
	margin: 0;
	font-size: 100%;
	appearance: none;
	-webkit-appearance: none;
	border: none;
	outline: none;
}
label
{ cursor: pointer;}
table
{ border-collapse: collapse; border-spacing: 0; font-size: 100%;}
fieldset, img
{ border: 0;}
img
{ vertical-align: top; max-width: 100%;}
address, caption, cite, code, dfn, em, th, var
{ font-style: normal; font-weight: normal;}
ol, ul
{ list-style: none;}
caption, th
{ text-align: left;}
h1, h2, h3, h4, h5, h6
{ font-size: 100%; font-weight: 500;}
q:after, q:before
{ content:'';}
a, input
{ /* outline: none; */ }
abbr, acronym
{ border: 0;}


/* !Layout
---------------------------------------------------------- */
html { overflow-y: scroll;}
body { }
@media print {
	html,
	html body { *zoom: 0.65;}
}



/* link
------------------------------------------------ */
a {
	color: var(--font-color-base);
	text-decoration:none;
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important; /* Firefox */
	-webkit-transition: all 0.3s !important; /* Chrome&Safari */
}

a:hover {
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important; /* Firefox */
	-webkit-transition: all 0.3s !important; /* Chrome&Safari */
}


.op,
.op a,
.op img,
.op input {
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}
.op:hover,
.op a:hover,
.op:hover img,
.op:hover input {
	opacity: .5;
	-webkit-opacity: .5;
	-moz-opacity: .5;
	filter: alpha(opacity=50);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=50)"; /* IE 8 */
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}
@media (max-width: 767px) {
.op:hover,
.op a:hover,
.op:hover img,
.op:hover input {
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=50)"; /* IE 8 */
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}
}



/* !fs
------------------------------------------------ */
.visible-pc {
	display: block !important;
}
.visible-tab {
	display: none !important;
}
.visible-ts {
	display: none !important;
}
.visible-pc-only {
	display: block !important;
}


@media (max-width: 1024px) {
.visible-tab {
	display: block !important;
}
.visible-pc-only {
	display: none!important;
}
}
@media (max-width: 767px) {
.visible-pc {
	display: none !important;
}
.visible-ts {
	display: block !important;
}
}



/* !Clearfix
---------------------------------------------------------- */
.clearfix {
	display: block;
	min-height: 1%;
}
.clearfix:after {
	clear: both;
	content:".";
	display: block;
	height: 0;
	visibility: hidden;
}
* html .clearfix {
	height: 1%;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}


/* !fonts
------------------------------------------------ */
.fwb {
	font-weight: 700;
}
.fwm {
	font-weight: 500;
}

.vat {
	vertical-align: top !important;
}
.vam {
	vertical-align: middle !important;
}
.tal {
	text-align: left !important;
}
.tac {
	text-align: center !important;
}
.tar {
	text-align: right !important;
}


/* !ff
------------------------------------------------ */
.ff_yugo {
	font-family: var(--font-family-yu-gothic);
}


/* !fc
------------------------------------------------ */
.fc_orange {
	color: var(--color-orange);
}
.fc_pink {
	color: var(--color-pink);
}
.fc_grey {
	color: var(--color-grey);
}
.fc_blue_light {
	color: var(--color-blue-light);
}

.bg_orange {
	background: var(--color-orange);
}
.bg_red {
	background: #F94300;
}
.bg_blue {
	background: #005EF7;
}

.fc_red {
	color: #F94300;
}
.fc_blue {
	color: #005EF7;
}


/* !ency
------------------------------------------------ */
#header-newnav {
	margin: 0 !important;
}



/* anchor
----------------------------------------------- */
.anchor {
	position: absolute;
	left: 0;
	top: 0;
	padding-top: 90px;
	margin-top: -90px;
	z-index: 0;
}



/* !ency breadcrumb
------------------------------------------------ */
.ency_bread {
	min-height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding: 5px 15px;
}
.ency_bread .bread_inner {
	width: 1100px;
	max-width: 100%;
	font-size: 12px;
	line-height: 1.3;
	font-weight: 900;
	letter-spacing: 0.14em;
	color: var(--color-green-dark);
}
.ency_bread .bread_inner span {
	vertical-align: middle;
	display: inline-block;
}
.ency_bread .bread_inner a {
	vertical-align: middle;
	color: var(--color-green-dark);
}
.ency_bread .bread_inner a:hover {
	opacity: 0.5;
}
.ency_bread .bread_inner .bread_arrow {
	margin: 0 12px 0 18px;
	width: 7px;
	font-size: 0;
}
.ency_bread .bread_inner .bread_home {
	padding: 0 0 0 18px;
	background: url("../images/common/ico_home.svg") 0 center no-repeat;
	background-size: 10px auto;
}
@media (max-width: 767px) {
.ency_bread .bread_inner {
	font-size: 10px;
	letter-spacing: 0.14em;
}
.ency_bread .bread_inner a:hover {
	opacity: 1;
}
.ency_bread .bread_inner .bread_arrow {
	margin: 0 10px 0 12px;
	width: 5px;
}
.ency_bread .bread_inner .bread_home {
	padding: 0 0 0 14px;
	background: url("../images/common/ico_home.svg") 0 center no-repeat;
	background-size: 8px auto;
}
}




/* !ency header
------------------------------------------------ */
.ency_header {
	position: sticky;
	top: 0;
	width: 100%;
	background: var(--color-green-dark);
	color: var(--color-white);
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	z-index: 9;
}
.ency_header .header_inner {
	width: 1040px;
	max-width: 100%;
	gap: 0 20px;
	display: flex;
	align-items: flex-end;
}
.ency_header .header_name {
}
.ency_header .header_name a {
	display: block;
	color: #fff;
	font-size: 50px;
	font-weight: 900;
	letter-spacing: 0.14em;
	line-height: 1.1;
	padding: 0 0 0 50px;
	position: relative;
}
.ency_header .header_name a:hover {
	opacity: 0.5;
}
.ency_header .header_name a:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	background-position: 0 center;
	background-image: url("../images/common/people_navi.png");
	background-size: 41px 57px;
	width: 41px;
	height: 57px;
	z-index: 0;
}
.navbar-toggle {
	width: 98px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px #fff solid;
	cursor: pointer;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
}
.navbar-toggle .toggle_menu {
	padding: 0 22px 0 0;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 0.14em;
	line-height: 1;
	position: relative;
}
.navbar-toggle .toggle_menu:before {
	position: absolute;
	content: "▼";
	font-size: 14px;
	color: #fff;
	font-weight: 900;
	line-height: 1;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important; /* Firefox */
	-webkit-transition: all 0.3s !important; /* Chrome&Safari */
	z-index: 0;
}
.navbar-toggle.on .toggle_menu:before {
	transform: translateY(-50%) rotate(180deg);
}
.navbar-collapse {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: calc(100vh - 170px);
	background: rgba(0,79,0,0.88);
	z-index: 99;
}
.navbar-collapse.navbar_show {
}
.navbar-collapse .navbar_inner {
	height: 100%;
	overflow-y: scroll;
}
.navbar-collapse .navbar_inner {
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
}
.navbar-collapse .navbar_inner::-webkit-scrollbar{
	display: none;
}

.navbar-collapse .navbar_inner {
	scrollbar-width: none;
}
.navbar-collapse .navbar_box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 50px 0;
	padding: 50px 20px;
}
.navbar-collapse .navbar_cont {
	display: flex;
	flex-wrap: wrap;
	gap: 45px 6.63%;
	max-width: 1100px;
	margin: 0 auto;
}
.navbar-collapse .navbar_cont li {
	width: calc((100% - 20%)/4);
}
.navbar-collapse .navbar_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px 0;
}
.navbar-collapse .navbar_item:hover {
	opacity: 0.5;
}
.navbar-collapse .navbar_item .item_img img {
	width: 100%;
}
.navbar-collapse .navbar_item .item_txt {
	text-align: center;
	color: #fff;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.07;
	position: relative;
}
.navbar-collapse .navbar_item .item_txt:after {
	display: inline-block;
	content: "";
	vertical-align: middle;
	background: #fff;
	width: 10px;
	height: 16px;
	clip-path: polygon(0 0,100% 50%,0 100%);
	margin: 0 0 7px;
	z-index: 0;
}
.navbar-collapse .navbar_item .item_txt .txt_arrow {
	font-size: 16px;
	vertical-align: middle;
	margin: 0 0 7px 0;
	display: none;
}
.navbar-collapse .navbar_close {
	flex-shrink: 0;
	border: 1px #fff solid;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	cursor: pointer;
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important; /* Firefox */
	-webkit-transition: all 0.3s !important; /* Chrome&Safari */
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
}
.navbar-collapse .navbar_close:hover {
	opacity: 0.5;
}
.navbar-collapse .navbar_close .close_in {
	display: block;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 0;
	color: #fff;
	padding: 0 0 0 25px;
	background-repeat: no-repeat;
	background-position: 0 center;
	background-image: url("../images/common/close.svg");
	background-size: 16px auto;
}

@media (max-width: 767px) {
.ency_header .header_inner {
	gap: 0 10px;
}
.ency_header .header_name a {
	font-size: 30px;
	letter-spacing: 0.14em;
	padding: 0 0 0 29px;
}
.ency_header .header_name a:hover {
	opacity: 1;
}
.ency_header .header_name a:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	background-position: 0 center;
	background-image: url("../images/common/people_navi.png");
	background-size: 27px 38px;
	width: 27px;
	height: 38px;
	z-index: 0;
}
.navbar-toggle {
	width: 70px;
	height: 22px;
}
.navbar-toggle .toggle_menu {
	padding: 0 16px 0 0;
	font-size: 14px;
	letter-spacing: 0.14em;
}
.navbar-toggle .toggle_menu:before {
	font-size: 10px;
}
.navbar-collapse {
}
.navbar-collapse .navbar_inner {
}
.navbar-collapse .navbar_box {
	gap: 30px 0;
	padding: 25px 15px;
}
.navbar-collapse .navbar_cont {
	gap: 20px 5%;
}
.navbar-collapse .navbar_cont li {
	width: calc((100% - 10%)/3);
}
.navbar-collapse .navbar_item:hover {
	opacity: 1;
}
.navbar-collapse .navbar_item .item_txt {
	font-size: 13px;
}
.navbar-collapse .navbar_item .item_txt .txt_arrow {
	font-size: 8px;
	margin: 0 0 4px 0;
}
.navbar-collapse .navbar_item .item_txt:after {
	width: 6px;
	height: 8px;
	margin: 0 0 4px;
}
.navbar-collapse .navbar_close {
	height: 22px;
	padding: 0 10px;
}
.navbar-collapse .navbar_close:hover {
	opacity: 1;
}
.navbar-collapse .navbar_close .close_in {
	font-size: 14px;
	padding: 0 0 0 15px;
	background-size: 11px auto;
}
}



/* !ency block
------------------------------------------------ */
.ency_block {
	overflow: hidden;
	background: url("../images/common/bg.jpg") 0 0 repeat;
}
@media (max-width: 767px) {
.ency_block {
	background: url("../images/common/bg_sp.jpg") 0 0 repeat;
	background-size: 15px 17px;
}
}


/* !ency H
------------------------------------------------ */
.ency_hdl {
	padding: 0 5px 13px;
	text-align: center;
	display: flex;
	justify-content: center;
	background-repeat: repeat-x;
	background-position: 0 bottom;
	background-image: url("../images/common/dot_hdl.svg");
	background-size: auto 3px;
}
.ency_hdl .hdl_in {
	display: block;
	background: #fff;
	color: var(--color-orange);
	font-size: 45px;
	line-height: 1.2;
	font-weight: 700;
}
.ency_hdl .hdl_in .hdl_mid {
	font-size: 40px;
}
.ency_hdl.ency_hdl_green {
	background-image: url("../images/common/dot_hdl_green.svg");
}
.ency_hdl.ency_hdl_green .hdl_in {
	color: var(--color-green);
}

@media (max-width: 767px) {
.ency_hdl {
	padding: 0 10px 8px;
	background-size: auto 1px;
}
.ency_hdl .hdl_in {
	font-size: min(24px,6.4vw);
}
.ency_hdl .hdl_in .hdl_mid {
	font-size: min(20px,5.34vw);
}
}


.ency_hdm {
	padding: 0 10px 12px;
	text-align: center;
	display: flex;
	justify-content: center;
	background-repeat: repeat-x;
	background-position: 0 bottom;
	background-image: url("../images/common/dot_hdl.svg");
	background-size: auto 3px;
}
.ency_hdm .hdm_in {
	display: block;
	background: #fff;
	font-size: 30px;
	letter-spacing: 0;
	line-height: 1.2;
	font-weight: 700;
}
.ency_hdm .hdm_mid {
	font-size: 24px;
}

.ency_hdm.ency_hdm_green {
	background-image: url("../images/common/dot_hdl_green.svg");
}
.ency_hdm.ency_hdm_green .hdm_in {
	color: var(--color-green);
}
.ency_hdm.ency_hdm_green_line {
	background-image: url("../images/common/dot_hdl_green.svg");
}

@media (max-width: 767px) {
.ency_hdm {
	padding: 0 10px 5px;
	background-size: auto 1px;
}
.ency_hdm .hdm_in {
	font-size: min(17px,4.54vw);
}
.ency_hdm .hdm_mid {
	font-size: min(11px,2.94vw);
}
}



/* !ency teaser
------------------------------------------------ */
.ency_teaser {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-right: -45px;
}
.ency_teaser .teaser_img {
	
}
.ency_teaser .teaser_cont {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	flex-shrink: 0;
}
.ency_teaser .teaser_tit {
	text-align: center;
	color: #fff;
	font-size: 56px;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.048em;
}
.ency_teaser .teaser_p {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 0;
	z-index: 1;
}
@media (max-width: 1200px) {
.ency_teaser {
	margin-right: 0;
}
}
@media (max-width: 767px) {
.ency_teaser {
	flex-direction: column;
	align-items: center;
}
.ency_teaser .teaser_tit {
	font-size: min(28px,7.47vw);
	letter-spacing: 0.048em;
}
}



/* !ency common
------------------------------------------------ */
.ency_block .ency_txt {
	display: flex;
	justify-content: flex-start;
	text-align: justify;
	text-justify: inter-ideograph;
	font-family: var(--font-family-yu-gothic);
}
.ency_block .ency_txt .txt_inner {
	background: #fff;
	font-weight: 500;
}

.ency_block .ency_inner {
	max-width: 1130px;
	margin: 0 auto;
	padding: 0 15px;
}

.com_shadow {
	background: #fff;
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 0 5px rgba(0,0,0,0.3);
	-ms-box-shadow: 0 0 5px rgba(0,0,0,0.3);
	-o-box-shadow: 0 0 5px rgba(0,0,0,0.3);
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px;
	border-radius: 25px;
}
@media (max-width: 767px) {
.com_shadow {
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	border-radius: 12px;
}
}

.com_frame {
	padding: 0 0 42px;
	position: relative;
}
.com_frame:before {
	position: absolute;
	content: "";
	background: #A8A8A8;
	width: 100%;
	height: 4px;
	left: 0;
	top: -4px;
	clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 100%, 0 100%);
	z-index: 0;
}
.com_frame .frame_inner {
	background: #fff;
	border: 4px #C6C6C6 solid;
	height: 100%;
	width: 100%;
	position: relative;
	z-index: 1;
}
.com_frame .frame_inner:before,
.com_frame .frame_inner:after {
	position: absolute;
	content: "";
	background: #C6C6C6;
	width: 5px;
	height: 46px;
	top: 100%;
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	-ms-border-radius: 0 0 6px 6px;
	-o-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
	z-index: 0;
}
.com_frame .frame_inner:before {
	left: 44px;
}
.com_frame .frame_inner:after {
	right: 44px;
}

@media (max-width: 767px) {
.com_frame {
	padding: 0 0 22px;
	position: relative;
}
.com_frame:before {
	height: 2px;
	top: -2px;
	clip-path: polygon(4px 0, calc(100% - 4px) 0, 100% 100%, 0 100%);
}
.com_frame .frame_inner {
	border: 2px #C6C6C6 solid;
}
.com_frame .frame_inner:before,
.com_frame .frame_inner:after {
	width: 3px;
	height: 24px;
}
.com_frame .frame_inner:before {
	left: 22px;
}
.com_frame .frame_inner:after {
	right: 22px;
}
}



/* animate
----------------------------------------------- */
@keyframes fadeInLeftLit {
	from {
		opacity: 0;
		transform: translate3d(-30px, 0, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInLeftLit {
	animation-name: fadeInLeftLit;
}

@keyframes fadeInRightLit {
	from {
		opacity: 0;
		transform: translate3d(30px, 0, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInRightLit {
	animation-name: fadeInRightLit;
}

@keyframes fadeInUpLit {
	from {
		opacity: 0;
		transform: translate3d(0, 30px, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInUpLit {
	animation-name: fadeInUpLit;
}


html.html-lock {
	overflow: hidden;
	touch-action: none;
}





