@charset "utf-8";

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Body
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
body {
	position: relative;
	overflow: hidden;
	font-size: 100%;
	font-feature-settings: "palt";
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
}
.sp, .nobr {
	display: none!important;
}
@media (hover: hover) and (pointer: fine) {
  a[href^="tel:"] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
    cursor: default;
  }
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Header
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
header {
	position: fixed;
    width: 100%;
	height: 120px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
    z-index: 10000;
}
body.home header {
	background: rgba(0,0,0,0.7);
}
header .header_bg {
	position: absolute;
	width: 100%;
	height: 120px;
    top: -120px;
    left: 0;
	display: block;
    background: rgba(255,255,255,0.9);
    transition: all 0.2s ease;
    opacity: 1;
}
body.home header .header_bg {
	display: none;
}
header .header_bg.appear {
    width: 100%;
    height: 120px;
    top: 0!important;
    transition: all 0.4s ease;
    opacity: 1;
}
header a.headerLogo {
	position: absolute;
    width: 320px;
    height: 80px;
	top: 10px;
    left: 10px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
    z-index: 20000;
    background: url("../images/logo.svg") no-repeat left center;
    background-size: contain;
}
body.home header a.headerLogo {
	background: url("../images/logo_w.svg") no-repeat left center;
}
header a.btn {
	position: absolute;
    width: 100px;
    height: 100px;
    top: 10px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding-top: 25px;
	font-size: 1.2em;
	line-height: 1em;
	letter-spacing: 0.05em;
	color: #fff;
	background: #133571;
	box-sizing: border-box;
}
body.home header a.btn {
	border: solid 1px rgba(255,255,255,0.5);
}
header a.btn.service {
	right: 120px;
}
header a.btn.customer {
	right: 10px;
}
header a.btn.service::before,
header a.btn.customer::before {
	position: absolute;
	content: '';
	width: 30px;
	height: 30px;
	top: 15px;
	background-size: contain;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
header a.btn.service::before {
	background: url("../images/icon_contact_hojin.svg") no-repeat center center;
}
header a.btn.customer::before {
	background: url("../images/icon_contact_kojin.svg") no-repeat center center;
}
header a.btn::after {
	position: absolute;
	content: 'CONTACT';
	width: 80%;
	bottom: 10px;
	display: block;
	padding-top: 5px;
	font: 200 0.6em/1em "avenir-lt-pro", sans-serif;
	text-align: center;
	border-top: solid 1px rgba(255,255,255,0.5);
}
header a.btn:hover,
body.home header a.btn:hover {
	background: #549bef;
	transition: all 200ms;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【ヘッダー】グローバルナビ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.openMenu {
	position: absolute;
    width: 100%;
    height: 120px;
    bottom: 0;
    left: 0;
    display: flex;
		justify-content: flex-end;
		align-content: space-between;
		align-items: space-between;
}
.btn_nav {
	display: none;
}
.open_nav,
.close_nav {
	display: none;
}
.sp_nav_wrap {
	width: 100%;
	display: block;
}
.sp_nav {
	width: 100%;
	height: 120px;
	display: flex;
		justify-content: flex-end;
		align-content: flex-end;
		align-items: flex-end;
	padding-right: 240px;
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu {
	width: calc(100%);
    max-width: 860px;
	height: 60px;
	bottom: 0;
	right: 0;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
    box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li {
	width: auto;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
}
.sp_nav ul.sp_nav_menu li.home {
	display: none;
}
.sp_nav ul.sp_nav_menu li a {
	width: 100%;
    height: 60px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    font-size: 1.3em;
    line-height: 1em;
    cursor: pointer;
    box-sizing: border-box;
}
body.home .sp_nav ul.sp_nav_menu li a {
	color: #fff;
}
.sp_nav ul.sp_nav_menu li a.arrow::after {
	content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-left: 5px;
	background: url("../images/arrow.svg") no-repeat center center;
    background-size: contain;
	transform: rotate(90deg);
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
body.home .sp_nav ul.sp_nav_menu li a.arrow::after {
	filter: invert(56%) sepia(86%) saturate(2097%) hue-rotate(190deg) brightness(101%) contrast(87%);
}
.sp_nav ul.sp_nav_menu li a:hover,
body.home .sp_nav ul.sp_nav_menu li a:hover {
	color: #549bef;
	transition: all 200ms;
}
.sp_nav ul.sp_nav_menu > li:hover .pullDownMenu {
	height: auto;
	padding: 40px 0;
    box-sizing: border-box;
	opacity: 1;
	transform: translate(0,0);
	transition: all 300ms;
}
.sp_nav ul.sp_nav_menu li div.pullDownMenu {
	position: absolute;
	width: 100%;
	height: 0;
	top: 120px;
	left: 0;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		/*flex-wrap: wrap;*/
	overflow: hidden;
	z-index: 1000;
	background: rgba(19,53,113,0.95);
	box-sizing: border-box;
	opacity: 1;
    transform: translate(0,0);
    transition: all 200ms;
}
.sp_nav ul.sp_nav_menu li .titleBlock {
	position: relative;
	width: 280px;
	height: 70px;
	display: flex;
		justify-content: flex-end;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 7px 0;
	font-size: clamp(1.2em, 1.2vw, 1.8em);
	font-weight: 700;
	line-height: 1.6em;
	color: #dae9f2;
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li .titleBlock::before {
	content: '';
	position: absolute;
	width: 200px;
	aspect-ratio: 1/1;
	top: -40px;
	left: 20px;
	display: block;
	background: url("../images/light_bulb.svg") no-repeat center center;
	background-size: contain;
	opacity: 0.2;
}
.sp_nav ul.sp_nav_menu li .titleBlock a {
	position: absolute;
	width: auto;
	height: 30px;
	bottom: 0;
	right: 0;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	padding: 0 30px;
	font-size: 0.7em;
	font-weight: 400;
	line-height: 1.2em;
	color: #fff;
	border-radius: 15px;
	background: #060d2d;
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li ul.pulldown {
	width: calc(100% - 280px);
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 0 40px;
	align-self: stretch;
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li {
	width: 24%;
    height: 70px;
	display: block;
	margin: 7px 0.5%;
}
.sp_nav ul.sp_nav_menu li ul.one_3rd li {
	width: 28%;
	margin: 7px 1%;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a {
	position: relative;
	width: 100%;
	height: 70px;
	display: flex;
		justify-content: flex-start;
		align-content:  center;
		align-items: center;
	padding: 0 20px;
	font-size: clamp(1.2em, 1vw, 1.6em);
	font-weight: normal;
	line-height: 1.2em;
	text-align: left;
    color: #fff;
	border: solid 1px rgba(255,255,255,0.5);
	background: rgba(0,0,0,0.1);
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a span {
	position: relative;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.3s ease;
	transition-property: transform;
	background: #549bef;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a:hover span {
	color: #fff;
	opacity: 1;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a::after {
	position: absolute;
	content: '';
	width: 12px;
	aspect-ratio: 1/1;
	right: 10px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}

/*メニュー上部*/
.sp_nav ul.sp_nav_menu_sub {
	position: absolute;
	width: 100%;
	height: 20px;
	top: 20px;
	right: 220px;
    display: flex;
		justify-content: flex-end;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
    box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu_sub li {
	width: auto;
	display: block;
	padding: 0 20px;
}
.sp_nav ul.sp_nav_menu_sub li+li {
	border-left: solid 1px rgba(0,0,0,0.5);
}
body.home .sp_nav ul.sp_nav_menu_sub li+li {
	border-left: solid 1px rgba(255,255,255,0.5);
}
.sp_nav ul.sp_nav_menu_sub li a {
	width: 100%;
    height: 20px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	font-size: 1.2em;
    line-height: 1em;
}
body.home .sp_nav ul.sp_nav_menu_sub li a {
	color: #fff;
}
.sp_nav ul.sp_nav_menu_sub li a:hover,
body.home .sp_nav ul.sp_nav_menu_sub li a:hover {
	color: #549bef;
	transition: all 200ms;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Common
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
main {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	padding-top: 120px;
}
.wrap {
    position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 60px 0;
}
.block {
    position: relative;
    width: 90%;
    max-width: 1400px;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin: 0 auto;
}
.reverse {
	flex-direction: row-reverse;
}
.bgc_Blue {
	background: #133571;
}
.bgc_lightBlue {
	background: #dae9f2;
}
.bgc_darkBlue {
	background: #060d2d;
}
.bgc_lightGray {
	background: #f7f7f7;
}
.bgy {/*テキスト背景ハイライト色*/
	display: inline-block;
	padding: 0 0.2em;
	background: yellow;
}
sup {
	font-size: 0.7em;
}
.anchor {
	position: absolute;
	width: 1px;
	height: 120px;
	top: -120px;
	left: 0;
	display: block;
	opacity: 0;
}
.slash::before {
	content: '/';
	display: inline-block;
	margin: 0 0.5em;
}

/*【共通】ページタイトル*/
.pageTitle {
    position: relative;
    width: 100%;
	height: 480px;
	display: flex;
		justify-content: flex-end;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin-bottom: 80px;
	background: #dae9f2;
    box-sizing: border-box;
}
.pageTitle.short {
    height: 360px;
	margin-bottom: 80px;
}
.pageTitle .photo {
    position: relative;
    width: 62.5%;
	height: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
}
.pageTitle .photo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
.pageTitle section {
	position: absolute;
	width: 40%;
	min-height: 500px;
	top: 40px;
	left: 5%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	z-index: 1000;
	padding: 60px 4% 20px;
	background: url("../images/page_title_bg.webp") no-repeat right top;
	background-size: cover;
	box-sizing: border-box;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
}
.pageTitle.short section {
	min-height: 380px;
	padding-top: 100px;
}
.pageTitle section::before {
	position: absolute;
	content: '';
	width: 10%;
	aspect-ratio: 14/23;
	top: 40px;
	left: 20px;
	display: block;
    background: url("../images/midtitle_deco.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
	opacity: 0.3;
}
.pageTitle section .title {
    position: relative;
    width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	color: #fff;
    box-sizing: border-box;
}
.pageTitle section .title .en {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	font-family: "avenir-lt-pro", sans-serif;
	font-size: clamp(4em, 4vw, 6em);
	font-weight: 200;
	line-height: 1em;
}
.pageTitle section h2 {
    width: 100%;
	display: block;
    font-size: clamp(2em, 2vw, 2.4em);
	font-weight: 400;
	line-height: 1.2em;
	font-feature-settings: "palt";
}
.pageTitle section h2 span {
    width: 100%;
	display: block;
	margin-top: 20px;
    font-size: 1.2em;
	font-weight: 700;
	color: #549bef;
}
.pageTitle section ul.menu {
    width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin-top: 30px;
	padding: 15px 0;
	border-top: solid 5px rgba(255,255,255,0.5);
	/*border-bottom: solid 5px rgba(255,255,255,0.5);*/
    box-sizing: border-box;
}
.pageTitle section ul.menu li {
    width: 50%;
	display: block;
}

/*法人のお客さまへ*/
#service .pageTitle section ul.menu li:nth-of-type(odd) {
    width: 43%;
}
#service .pageTitle section ul.menu li:nth-of-type(even) {
    width: 57%;
}

/*広報・メディア*/
#pr-media .pageTitle section ul.menu li:nth-of-type(1) {
    width: 35%;
}
#pr-media .pageTitle section ul.menu li:nth-of-type(2) {
    width: 65%;
}

.pageTitle section ul.menu li a {
    position: relative;
    width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
	padding: 10px 0 10px 20px;
	font-size: clamp(1em, 1vw, 1.6em);
	color: #fff;
	box-sizing: border-box;
}
/*法人のお客さまへ*/
#service .pageTitle section ul.menu li a {
    padding: 5px 0 5px 20px;
}
.pageTitle section ul.menu li a::before {
	position: absolute;
	content: '';
    width: 12px;
    height: 12px;
	left: 0;
    display: block;
    margin-left: 5px;
	background: url("../images/arrow.svg") no-repeat center center;
    background-size: contain;
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.pageTitle section ul.menu li a:hover {
    color: #549bef;
	transition: all 200ms;
}

/*【共通】パンくずリスト*/
ul.topicpath {
    position: absolute;
	width: 55%;
	height: 60px;
	bottom: -60px;
	left: 45%;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
	z-index: 1000;
}
ul.topicpath li {
    width: auto;
    height: 20px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
    padding: 0 20px;
    font-size: 1.2em;
	line-height: 1em;
}
ul.topicpath li+li {
    border-left: solid 1px rgba(0,0,0,0.3);
}
ul.topicpath li a {
    color: #549bef;
}
ul.topicpath li a:hover {
    text-decoration: underline;
    transition: all 200ms;
}

/*【共通】中タイトル*/
.midTitle {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: 20px 0 40px 0;
	text-align: left;
	color: #133571;
}
.midTitle h3 {
	position: relative;
	width: 100%;
	height: 50px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
    font-size: 2.4em;
	font-weight: bold;
	line-height: 1em;
	font-feature-settings: "palt";
}
.midTitle h3::before {
	position: absolute;
	content: '';
	width: 28px;
	height: 46px;
	top: -24px;
	left: -36px;
	display: block;
    background: url("../images/midtitle_deco.svg") no-repeat center center;
	background-size: contain;
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
.midTitle span {
	position: relative;
	width: auto;
	display: block;
	padding: 10px 0 20px;
    font: 200 1.5em/1em "avenir-lt-pro", sans-serif;
	color: #698fbc;
}
.midTitle span::after {
	position: absolute;
	content: '';
	width: 100px;
	height: 1px;
	bottom: 0px;
	display: block;
	margin: 0;
    background: #133571;
}

/*【共通】ボタンデザイン*/
.btnBlock {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
a.btnDetail {
	position: relative;
	width: 300px;
    height: 70px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 0 30px 0 10px;
	font-size: clamp(1.4em, 1vw, 1.6em);
	line-height: 1.2em;
	transition: 0.3s;
	color: #fff;
	border: solid 1px rgba(255,255,255,0.5);
	border-radius: 3px;
	background-color: #133571;
	box-sizing: border-box;
	box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}
a.btnDetail.white {
	color: #133571;
	background: #fff;
}
a.btnDetail::after {
	position: absolute;
	content: '';
	width: 16px;
	aspect-ratio: 1/1;
	right: 20px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
a.btnDetail.down::after {
	transform: rotate(90deg);
}
a.btnDetail.white::after {
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
a.btnDetail.white:hover::after {
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
a.btnDetail.pdf {
	padding: 0 10px 0 30px;
	text-align: center;
}
a.btnDetail.pdf::after {
	width: 26px;
	right: inherit;
	left: 20px;
	background: url("../images/icon_pdf.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
a.btnDetail.white.pdf::after {
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
a.btnDetail.download::after {
	width: 24px;
	background: url("../images/icon_download.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
a.btnDetail.linkout::after {
	width: 17px;
	background: url("../images/icon_linkout.svg") no-repeat center center;
	background-size: contain;
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
a.btnDetail span {
	position: relative;
}
a.btnDetail.white:hover span {
	color: #fff;
}
a.btnDetail::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.3s ease;
	transition-property: transform;
	background: #549bef;
	box-sizing: border-box;
}
a.btnDetail:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
a.btnDetail.faq,
a.btnDetail.entry,
a.btnDetail.backnumber,
a.btnDetail.mail,
a.btnDetail.login {
	padding: 0 10px 0 20px;
}
a.btnDetail.entry,
a.btnDetail.backnumber {
	width: 360px;
}
a.btnDetail.faq img,
a.btnDetail.entry img,
a.btnDetail.backnumber img,
a.btnDetail.mail img,
a.btnDetail.login img {
	position: absolute;
	width: 36px;
	left: 20px;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
a.btnDetail.mail img {
	width: 24px;
}
a.btnDetail.login img {
	width: 24px;
}

/*透明ボタン*/
a.btnTrans {
	position: absolute;
    width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	z-index: 1000;
	background: #fff;
	opacity: 0;
	transition: all 200ms;
}
a.btnTrans:hover {
	transition: all 200ms;
	opacity: 0.5;
}


/*テキストリンク（矢印）*/
a.linkArrow,
a.linkBack,
a.linkPDF,
a.linkOut {
	position: relative;
	width: auto;
	min-height: 30px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
	margin: 10px 0;
	padding-right: 35px;
	font-size: 1.4em;
	line-height: 1em;
	box-sizing: border-box;
}
a.linkOut {
	padding-right: 25px;
}
a.linkOut.alignR {
	margin: 10px 0 10px auto;
}
a.linkBack {
	padding-left: 40px;
}
a.linkArrow:hover,
a.linkBack:hover,
a.linkPDF:hover,
a.linkOut:hover {
	text-decoration: underline;
	color: #06c;
}
a.linkArrow::before,
a.linkArrow::after,
a.linkBack::before,
a.linkBack::after {
	position: absolute;
	content: '';
    width: 30px;
	aspect-ratio: 1/1;
    display: block;
}
a.linkArrow::before,
a.linkArrow::after {
	right: 0;
}
a.linkBack::before,
a.linkBack::after {
	left: 0;
}
a.linkArrow::before,
a.linkBack::before {
	border-radius: 15px;
	background: #133571;
}
a.linkArrow::after,
a.linkBack::after {
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: 12px 12px;
	filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(171deg) brightness(104%) contrast(101%);
}
a.linkBack::after {
	transform: scaleX(-1);
}
a.linkPDF::after {
	position: absolute;
	content: '';
    width: 26px;
	aspect-ratio: 1/1;
	right: 0;
    display: block;
	background: url("../images/icon_pdf.svg") no-repeat center center;
	background-size: contain;
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
a.linkOut::after {
	position: absolute;
	content: '';
    width: 20px;
	aspect-ratio: 1/1;
	right: 0;
    display: block;
	background: url("../images/icon_linkout.svg") no-repeat center center;
	background-size: contain;
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】全支店電話番号
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
ul.commonTel {
	width: 100%;
	max-width: 1200px;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
}
ul.commonTel li {
	width: 30%;
    display: flex;
		justify-content: center;
		align-content: flex-end;
		align-items: flex-end;
		flex-wrap: wrap;
	margin: 0 1.5%;
	padding: 30px 0;
	font-size: 1.8em;
	line-height: 1.6em;
	text-align: center;
	border-bottom: solid 1px #ccc;
}
ul.commonTel li span {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	font-size: 0.8em;
	line-height: 1.2em;
	text-align: center;
}
ul.commonTel li a {
	display: inline-block;
	margin-left: 5px;
	font-size: 1.5em;
	line-height: 1.2em;
}
ul.commonTel p {
	width: 100%;
    display: block;
	margin: 40px 0;
	font-size: 1.6em;
	line-height: 1.2em;
	text-align: center;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】コンテンツメニュー
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.contentsMenu {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	background: #133571;
}
.contentsMenu .block {
	justify-content: flex-start;
}
.contentsMenu .contentsMenu_title {
	position: relative;
    width: 400px;
	height: 160px;
    display: flex;
		justify-content: flex-start;
		align-content: flex-end;
		align-items: flex-end;
        flex-wrap: wrap;
	padding: 20px;
	color: #fff;
	border-left: solid 1px #fff;
	box-sizing: border-box;
}
.contentsMenu .contentsMenu_title .en {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	font-family: "avenir-lt-pro", sans-serif;
	font-size: clamp(2.4em, 3.6vw, 3.8em);
	font-weight: 200;
	line-height: 1em;
}
.contentsMenu .contentsMenu_title .jp {
    width: 100%;
	display: block;
    font-size: clamp(1.6em, 0.9vw, 2em);
	font-weight: 400;
	line-height: 1.2em;
}
.contentsMenu ul {
    width: calc(100% - 400px);
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 60px 0;
    box-sizing: border-box;
}
.contentsMenu ul li {
    width: 50%;
	display: block;
}

/*沖縄電気保安協会について*/
#customer .contentsMenu ul {max-width: 600px;}
#about .contentsMenu ul li:nth-of-type(odd) {width: 45%;}
#about .contentsMenu ul li:nth-of-type(even) {width: 55%;}

/*ご家庭の皆さまへ*/
#customer .contentsMenu ul {max-width: 600px;}
#customer .contentsMenu ul li:nth-of-type(odd) {width: 45%;}
#customer .contentsMenu ul li:nth-of-type(even) {width: 55%;}

/*お役立ち情報*/
#useful-info .contentsMenu ul li {
    width: 33.333%;
	display: block;
}

.contentsMenu ul li a {
    position: relative;
    width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
	padding: 10px 0 10px 20px;
	font-size: clamp(1.4em, 1vw, 1.8em);
	color: #fff;
	box-sizing: border-box;
}
.contentsMenu ul li a::before {
	position: absolute;
	content: '';
    width: 12px;
    height: 12px;
	left: 0;
    display: block;
    margin-left: 5px;
	background: url("../images/arrow.svg") no-repeat center center;
    background-size: contain;
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.contentsMenu ul li a:hover {
    color: #549bef;
	transition: all 200ms;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】コピー／テキスト
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.commonText {
	position: relative;
    width: 90%;
	max-width: 1400px;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
}
.commonText.half {
	width: 50%;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	align-self: stretch;
	margin: 0;
}
.commonText .copy {
	width: 100%;
    display: block;
	margin-bottom: 40px;
	font: 500 2.8em/1.4em "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	letter-spacing: 0.05em;
	font-feature-settings: "palt";
	text-align: center;
	color: #133571;
}
.commonText.half .copy {
	text-align: left;
}
.commonText .read {
	width: 100%;
    display: block;
	font-size: 2em;
    line-height: 1.6em;
    text-align: justify;
}
.commonText .text {
	width: 100%;
    display: block;
	font-size: 1.6em;
    line-height: 1.8em;
    text-align: justify;
}
.commonText .note {
    width: calc(100% - 1em);
	display: block;
	margin: 20px 0 0 auto;
    font-size: 1.4em;
	line-height: 1.6em;
}
.commonText .note::before {
    content: '※';
	display: inline-block;
    text-indent: -1em;
}
figure.commonPhoto {
	width: 46%;
	display: block;
	box-sizing: border-box;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】注釈
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
ul.note,
ol.note {
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	margin: 5px 0;
}
ol.note {
	counter-reset: note;
}
ul.note li,
ol.note li {
    display: list-item;
	margin: 5px 0 5px auto;
    font-size: 1.2em;
	line-height: 1.4em;
}
ul.note li {
    width: calc(100% - 1em);
}
ol.note li {
    width: calc(100% - 2em);
	list-style: none;
    counter-increment: note;
}
ul.note li::before {
    content: '※';
	display: inline-block;
    text-indent: -1em;
}
ol.note li::before {
    content: "※" counter(note);
	display: inline-block;
	text-indent: -2em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】ニセ調査員にご注意！
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
	z-index: 90000;
	background: rgba(0,0,0,0.5);
}
.btn_area {
	position: absolute;
	width: 800px;
	height: 400px;
	top: 50%;
	left: 50%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	z-index: 90000;
	transform: translate(-50%,-50%);
	box-sizing: border-box;
}
.btn_area img {
	width: 100%;
	display: block;
}
.btn_area button {
	position: absolute;
	width: 50px;
	height: 50px;
	top: -50px;
	right: -20px;
	display: block;
	font-size: 2.4em;
	line-height: 50px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	border: none;
	border-radius: 25px;
	background: #000;
	transition: all 200ms;
}
.btn_area button:hover {
	color: #000;
	background: #fff;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】共通
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home {
	padding: 0;
}
#home .homeTitle,
#home .homeTitle_side {
	width: auto;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: 20px auto;
	text-align: center;
	color: #133571;
}
#home .homeTitle_side {
	width: 100%;
	justify-content: flex-start;
	margin: 20px auto 20px 0;
	text-align: left;
}
#home .homeTitle.white,
#home .homeTitle_side.white {
	color: #fff;
}
#home .homeTitle span,
#home .homeTitle_side span {
	position: relative;
	width: auto;
	display: block;
    font: 200 4.8em/1em "avenir-lt-pro", sans-serif;
	letter-spacing: 0.05em;
}
#home .homeTitle span::before,
#home .homeTitle_side span::before {
	position: absolute;
	content: '';
	width: 28px;
	height: 46px;
	top: -24px;
	left: -36px;
	display: block;
    background: url("../images/midtitle_deco.svg") no-repeat center center;
	background-size: contain;
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
#home .homeTitle.white span::before,
#home .homeTitle_side.white span::before {
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
#home .homeTitle h2,
#home .homeTitle_side h2 {
	width: 100%;
	height: 50px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    font-size: 1.8em;
	line-height: 1em;
}
#home .homeTitle_side h2 {
	position: relative;
	width: 100%;
	justify-content: flex-start;
}
#home .homeTitle h2::before,
#home .homeTitle h2::after {
	content: '';
	width: 100px;
	height: 1px;
	display: block;
	margin: 0 10px;
    background: #133571;
}
#home .homeTitle_side h2::after {
	position: absolute;
	content: '';
	width: 100px;
	height: 1px;
	bottom: -10px;
	display: block;
	margin: 0;
    background: #133571;
}
#home .homeTitle.white h2::before,
#home .homeTitle.white h2::after,
#home .homeTitle_side.white h2::after {
	background: #fff;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】メインビジュアル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .mainVisual {
	position: relative;
	width: 100%;
	height: 100vh;
	max-height: 1080px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
	z-index: 1000;
    box-sizing: border-box;
}

/*スライド*/
#home .mainVisual ul.bxslider {
	position: relative;
	width: 100%;
    display: block;
}
#home .mainVisual ul.bxslider li {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: space-between;
        align-content: center;
        align-items: center;
}
#home .mainVisual ul.bxslider li img.image {
	width: 100%;
    height: 100vh;
	max-height: 1080px;
	display: block;
	object-fit: cover;
	object-position: 100% 50%;
}
#home .mainVisual ul.bxslider li img.copy {
	position: absolute;
	display: block;
	filter: drop-shadow(0 0 10px rgba(0,0,0,1));
}
#home .mainVisual ul.bxslider li:nth-of-type(1) img.copy {
	width: 480px;
	top: 40%;
	left: 10%;
}
#home .mainVisual ul.bxslider li:nth-of-type(2) img.copy {
	width: 692px;
	top: 20%;
	right: 10%;
}
#home .mainVisual ul.bxslider li:nth-of-type(3) img.copy {
	width: 632px;
	top: 30%;
	left: 10%;
}

/*-- 【Home】お知らせ --*/
#home .homeNews {
    position: absolute;
	width: 90%;
	max-width: 1200px;
	min-height: 160px;
	bottom: 80px;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 20px;
	background: rgba(255,255,255,0.9);
	background-size: cover;
    box-sizing: border-box;
}
#home .homeNews .homeNews_title {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
}
#home .homeNews h2 {
	width: 280px;
	height: 100px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    font: 200 2.8em/1em "avenir-lt-pro", sans-serif;
    color: #133571;
	border-right: solid 1px #133571;
}
#home .homeNews dl {
	width: calc(100% - 320px);
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 15px 0;
    box-sizing: border-box;
}
#home .homeNews dl dt {
	position: relative;
    width: 100%;
	display: block;
	margin-bottom: 10px;
	font-size: 1.4em;
	line-height: 1.2em;
}
#home .homeNews dl dd {
	width: 100%;
	display: block;
	font-size: 1.6em;
	line-height: 1.6em;
}
#home .homeNews dl dd a:hover {
	text-decoration: underline;
    color: #06c;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】ピックアップ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homePickup {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding: 80px 0;
    background: url("../images/top/pickup_bg.webp") no-repeat center center;
	background-size: cover;
}
#home .homePickup p {
	width: 100%;
	display: block;
	font-size: 2.4em;
	line-height: 1.6em;
	text-align: center;
	color: #fff;
}

/*スライド*/
#home .homePickup ul.slider_pickup {
    position: relative;
    width: 120%;
    display: block;
	margin: 20px -10% 40px;
}
#home .homePickup ul.slider_pickup li {
	width: auto;
    display: inline-block;
    margin: 20px 15px;
}
#home .homePickup ul.slider_pickup li img {
    width: 100%;
	aspect-ratio: 5/3;
	display: block;
    object-fit: cover;
	object-position: 50% 50%;
	border-radius: 4px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
#home .homePickup ul.slider_pickup li a:hover {
    opacity: 0.5;
    transition: all 200ms;
}
#home .homePickup ul.slider_pickup li span {
	width: 100%;
	display: block;
	margin-top: 10px;
	font-size: 1.6em;
	line-height: 1.2em;
	text-align: center;
	color: #fff;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】事業内容
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeService {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding: 80px 0;
    background: url("../images/top/service_bg.webp") no-repeat center center;
	background-size: cover;
}
#home .homeService dl {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 60px 0 20px;
	color: #fff;
}
#home .homeService dl dt {
	width: 36%;
    display: block;
	font-family: "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	font-size: clamp(2em, 2.4vw, 3.6em);
	font-weight: 500;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
}
#home .homeService dl dd {
	width: 64%;
    display: block;
	margin: 15px 0;
	font-size: 1.6em;
    line-height: 1.8em;
    text-align: justify;
}
#home .homeService ul {
	position: relative;
    width: 101%;
    display: flex;
		justify-content: flex-end;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 -0.5%;
}
#home .homeService ul li {
	position: relative;
    width: 19%;
    display: block;
	margin: 8px 0.5%;
}
#home .homeService ul li a {
	position: relative;
	width: 100%;
    height: 140px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 10px 0 20px 20px;
	font-size: clamp(1.6em, 1.2vw, 2em);
	font-weight: 700;
	line-height: 1.2em;
	font-feature-settings: "palt";
	border: solid 1px rgba(255,255,255,0.5);
	border-radius: 3px;
	background: url("../images/light_bulb.svg") no-repeat left center #fff;
	background-size: 80%;
	box-sizing: border-box;
	box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}
#home .homeService ul li:nth-of-type(1) a {
	background: #133571;
}

#home .homeService ul li a::after {
	position: absolute;
	content: 'Read More';
	width: auto;
	height: 20px;
	bottom: 10px;
	right: 10px;
	display: block;
	padding-right: 20px;
	font-size: 0.6em;
	line-height: 20px;
	background: url("../images/arrow.svg") no-repeat right center;
	background-size: 12px 12px;
	box-sizing: border-box;
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
#home .homeService ul li:nth-of-type(1) a::after {
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
#home .homeService ul li a:hover::after {
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
#home .homeService ul li a span {
	position: relative;
}
#home .homeService ul li:nth-of-type(1) a span {
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
	color: #fff;
}
#home .homeService ul li:nth-of-type(1) a span::before {
	content: '';
	width: 36px;
	aspect-ratio: 1/1;
	display: inline-block;
	margin-right: 10px;
	background: url("../images/icon_contact_hojin.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
#home .homeService ul li a:hover span {
	color: #fff;
}
#home .homeService ul li a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.3s ease;
	transition-property: transform;
	background: #549bef;
	box-sizing: border-box;
}
#home .homeService ul li a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
#home .homeService a.linkArrow {
	position: absolute;
	bottom: 10px;
	left: 0;
	font-size: 1.6em;
	color: #fff;
}
#home .homeService a.linkArrow::before {
	border-radius: 15px;
	border: solid 1px #fff;
	border-radius: 15px;
	background: transparent;
	box-sizing: border-box;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】沖縄電気保安協会について
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeAbout {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding: 80px 0;
    background: url("../images/top/about_bg.webp") no-repeat center top;
	background-size: cover;
}
#home .homeAbout .textBox {
	position: relative;
    width: 70%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	z-index: 1000;
	margin: 60px 30% 20px 0;
}
#home .homeAbout .textBox dl {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin-bottom: 40px;
	color: #fff;
}
#home .homeAbout .textBox dl dt {
	width: 100%;
    display: block;
	margin-bottom: 20px;
	font-family: "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	font-size: clamp(2em, 2.4vw, 3.6em);
	font-weight: 500;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
}
#home .homeAbout .textBox dl dd {
	width: 100%;
    display: block;
	margin-top: 20px;
	font-size: 1.6em;
    line-height: 1.6em;
    text-align: justify;
}
#home .homeAbout .textBox a.btnDetail {
	width: 360px;
	margin-left: auto;
}
#home .homeAbout .mapBox {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-end;
		align-items: flex-end;
		flex-direction: row-reverse;
	margin-top: -360px;
}
#home .homeAbout .mapBox img:nth-of-type(1) {
    width: 68%;
    display: block;
}
#home .homeAbout .mapBox img:nth-of-type(2) {
    width: 28%;
    display: block;
}
#home .homeAbout .empty {
	width: 100%;
	aspect-ratio: 8/3;
	display: block;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】お役立ち情報
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeUseful {
	position: relative;
	width: 90%;
	max-width: 1400px;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
#home .homeUseful ul {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 20px 0 40px;
}
#home .homeUseful ul li {
	position: relative;
	width: 18%;
    display: inline-block;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
#home .homeUseful ul li a {
	position: relative;
	width: 100%;
	aspect-ratio: 1/1;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
		flex-wrap: wrap;
	overflow: visible;
	padding: 20px 0;
	font-size: clamp(1.2em, 1.2vw, 1.6em);
	font-weight: 600;
	line-height: 1em;
	text-align: center;
	font-feature-settings: "palt";
	color: #133571;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
}
#home .homeUseful ul li a:hover {
	color: #549bef;
}
#home .homeUseful ul li a img {
	position: relative;
	width: 60%;
	display: block;
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
#home .homeUseful ul li a:hover img {
	filter: invert(53%) sepia(75%) saturate(573%) hue-rotate(183deg) brightness(95%) contrast(97%);
	opacity: 1;
}
#home .homeUseful ul li a span {
	width: 100%;
	display: block;
	margin: 20px 0;
}
#home .homeUseful ul li a::before,
#home .homeUseful ul li a::after {
	position: absolute;
	content: '';
    width: 40px;
	aspect-ratio: 1/1;
	bottom: -20px;
    display: block;
}
#home .homeUseful ul li a::before {
	border-radius: 20px;
	background: #133571;
}
#home .homeUseful ul li a:hover::before {
	background: #549bef;
	transition: all 200ms;
}
#home .homeUseful ul li a::after {
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: 16px 16px;
	filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(171deg) brightness(104%) contrast(101%);
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】広報誌「電気と保安」
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeMagazine {
	width: 90%;
	max-width: 1400px;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
#home .homeMagazine .homeTitle_side {
	margin-bottom: 80px;
}
#home .homeMagazine .new_vol {
	position: relative;
	width: 67%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
#home .homeMagazine .new_vol img {
	position: relative;
	width: 40%;
    display: block;
}
#home .homeMagazine .new_vol::before {
	position: absolute;
	content: '';
	width: 80px;
	aspect-ratio: 1/1;
	top: -20px;
	left: -40px;
    display: block;
	z-index: 1000;
	background: url("../images/pr-media/mark_new.svg") no-repeat center center;
	background-size: contain;
}
#home .homeMagazine .new_vol .textBox {
	position: relative;
	width: 56%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	align-self: stretch;
	padding-bottom: 100px;
	color: #fff;
}
#home .homeMagazine .new_vol .textBox h3 {
	width: 100%;
    display: block;
	margin-bottom: 20px;
	padding: 20px 0;
	font-size: 2.4em;
	font-weight: bold;
	line-height: 1em;
	border-bottom: solid 5px rgba(255,255,255,0.5);
}
#home .homeMagazine .new_vol .textBox .contents {
	width: 100%;
    display: block;
	font-size: 1.6em;
	line-height: 1.6em;
}
#home .homeMagazine .new_vol .textBox a.btnDetail {
	position: absolute;
	bottom: 0;
	right: 0;
}
#home .homeMagazine ul.archive {
	width: 26%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
#home .homeMagazine ul.archive li {
	width: 46%;
    display: inline-block;
	margin-bottom: 20px;
}
#home .homeMagazine ul.archive li span {
	width: 100%;
    display: block;
	margin-top: 10px;
	font-size: 1.1em;
	line-height: 1em;
	text-align: center;
	color: #fff;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】採用情報
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeRecruit {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding: 80px 0;
    background: url("../images/top/recruit_bg.webp") no-repeat center top;
	background-size: cover;
}
#home .homeRecruit .midTitle_side {
	width: 100%;
}
#home .homeRecruit .textBox {
	position: relative;
    width: 47%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	z-index: 1000;
	margin: 60px 0;
}
#home .homeRecruit .textBox dl {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin-bottom: 40px;
}
#home .homeRecruit .textBox dl dt {
	width: 100%;
    display: block;
	margin-bottom: 20px;
	font-family: "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	font-size: clamp(2em, 2.4vw, 3.6em);
	font-weight: 500;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	color: #133571;
}
#home .homeRecruit .textBox dl dd {
	width: 100%;
    display: block;
	margin-top: 20px;
	font-size: 1.6em;
    line-height: 1.6em;
    text-align: justify;
}
#home .homeRecruit .textBox a.btnDetail {
	width: 360px;
	margin-right: auto;
	padding: 0;
}
#home .homeRecruit .textBox a.btnDetail img {
	position: absolute;
	width: 30px;
	left: 20px;
	display: block;
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
#home .homeRecruit .textBox a.btnDetail:hover img {
	opacity: 1;
}
#home .homeRecruit .slideBox {
	position: absolute;
    width: 50%;
	bottom: 240px;
	right: 0;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	z-index: 1000;
}
/*スライド*/
#home .homeRecruit .slideBox ul.slider_recruit {
    position: relative;
    width: 130%;
    display: block;
	margin: 0 -30% 0 0;
}
#home .homeRecruit .slideBox ul.slider_recruit li {
	width: auto;
    display: inline-block;
    margin: 20px 15px;
}
#home .homeRecruit .slideBox ul.slider_recruit li img {
    width: 100%;
	aspect-ratio: 1/1;
	display: block;
    object-fit: cover;
	object-position: 50% 50%;
	border-radius: 4px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}





/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
ニュース
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*-- 一覧 --*/
.newsBlock {
    width: 90%;
	max-width: 1400px;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	margin: 0 auto 40px;
}
#news .newsBlock {
    border-bottom: solid 1px #ccc;
}
.newsBlock dl.list {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 25px 0;
    box-sizing: border-box;
}
.newsBlock dl.list+dl {
	border-top: solid 1px #ccc;
}
.newsBlock dl.list dt {
	width: 360px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	font-size: 1.4em;
	line-height: 1.6em;
	color: #888;
}
.newsBlock dl.list dt::before,
#news .date::before {
	content: '';
	width: 160px;
	height: 40px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin-right: 20px;
	font-size: 1em;
	color: #fff;
	background: #eee;
}
.newsBlock dl.list dt.info::before,
#news .date.info::before {
	content: 'お知らせ';
	background: #1879aa;
}
.newsBlock dl.list dt.hojin::before,
#news .date.hojin::before {
	content: '法人のお客さま';
	background: #133571;
}
.newsBlock dl.list dt.kojin::before,
#news .date.kojin::before {
	content: 'ご家庭の皆さま';
	background: #4891d3;
}
.newsBlock dl.list dt.event::before,
#news .date.event::before {
	content: 'イベント情報';
	background: #00a99d;
}
.newsBlock dl.list dt.activity::before,
#news .date.activity::before {
	content: '活動報告';
	background: #bab60f;
}
.newsBlock dl.list dt.workshop::before,
#news .date.workshop::before {
	content: '講習会';
	background: #534741;
}
.newsBlock dl.list dt.recruit::before,
#news .date.recruit::before {
	content: '採用情報';
	background: #f15a24;
}
.newsBlock dl.list dd {
	width: calc(100% - 360px);
	display: inline-block;
	padding: 5px 0;
	font-size: 1.6em;
	line-height: 1.6em;
}
.newsBlock dl.list dd a:hover {
	text-decoration: underline;
    color: #06c;
}
#home .homeNews a.btnDetail {
	width: 300px;
}

/*ページネーション*/
.wp-pagenavi {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin: 20px auto;
	text-align: center;
	font-size: 1.4em;
	line-height: 1em;
}
.wp-pagenavi a,
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.prevpostslink {
	min-width: 40px;
    height: 40px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	text-decoration: none;
    border: none;
    background: #f5f5f5;
    box-sizing: border-box;
}
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.prevpostslink {
	border: none;
}
.wp-pagenavi a:hover {
	border-color: #133571;
}
.wp-pagenavi a,
.wp-pagenavi span {
    border: none;
	box-sizing: border-box;
}
.wp-pagenavi a.page,
.wp-pagenavi span.pages {
    border: none;
}
.wp-pagenavi span.current {
	width: 40px;
    height: 40px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	font-weight: bold;
	color: #FFF;
	border: none;
	background: #133571;
    box-sizing: border-box;
}
.wp-pagenavi span.extend {
	padding: 5px 10px;
    border: none;
}
.wp-pagenavi .first,
.wp-pagenavi .last {
	width: 60px;
    height: 40px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	font-size: 0.9em;
	color: #133571;
	border: solid 1px #133571;
	background: #fff;
    box-sizing: border-box;
}

/*-- News（詳細ページ） --*/
#news .date {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin: 20px auto;
	font-size: 1.4em;
	line-height: 1em;
	color: #999;
}
#news h3.articleTitle {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin: 0 auto;
	padding-bottom: 20px;
	font-size: 2.4em;
	font-weight: bold;
	line-height: 1.4em;
	border-bottom: solid 1px #CCC;
}
.newsArticle {
	width: 100%;
    display: block;
	padding: 30px 0;
    font-size: 1.6em;
	line-height: 1.8em;
}
.newsArticle div,
.newsArticle .wp-block-group {
	width: 100%;
	display: block;
	padding: 20px 0;
}
.newsArticle .w100 {width: 100%;}
.newsArticle .w90 {width: 90%;}
.newsArticle .w80 {width: 80%;}
.newsArticle .w70 {width: 70%;}
.newsArticle .w60 {width: 60%;}
.newsArticle .w50 {width: 50%;}

/*見出し*/
.newsArticle h1,
.newsArticle h2,
.newsArticle h3,
.newsArticle h4,
.newsArticle h5,
.newsArticle h6 {
	width: 100%;
    display: block;
	margin: 10px 0;
	font-weight: bold;
	line-height: 1.2em;
}
.newsArticle h1 {
	font-size: 1.5em;
}
.newsArticle h2 {
	font-size: 1.4em;
}
.newsArticle h3 {
	font-size: 1.3em;
}
.newsArticle h4 {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin: 20px 0;
	padding: 5px 0 15px 40px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.2em;
	color: #133571;
	border-bottom: solid 1px #133571;
	box-sizing: border-box;
}
.newsArticle h4::before {
	position: absolute;
	content: '';
	width: 50px;
	aspect-ratio: 1/1;
	top: -5px;
	left: -10px;
    display: block;
	z-index: 1000;
	background: url("../images/midtitle_deco.svg") no-repeat center center;
	background-size: contain;
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
.newsArticle h4::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 7px;
	bottom: 0;
	left: 0;
    display: block;
	background: #dae9f2;
}
.newsArticle h5 {
	font-size: 1.1em;
}
.newsArticle h6 {
	font-size: 1em;
}
.newsArticle p {
	width: 100%;
    display: block;
	padding: 10px 0;
	font-size: 1em;
	font-weight: normal;
	line-height: 1.8em;
	box-sizing: border-box;
}
.newsArticle a {
	text-decoration: underline !important;
	color: #06c;
}
.newsArticle .fcRed {
	color: #ed1c24;
}
.newsArticle .fcBlue {
	color: #0095de;
}
.newsArticle .bgcRed {
	display: inline-block;
	margin: 10px 0;
	padding: 10px;
	color: #fff;
	background-color: #ed1c24;
	box-sizing: border-box;
}
.newsArticle .aligncenter {
	display: block;
    margin-left: auto;
    margin-right: auto;
}
.newsArticle .movie iframe {
	width: 100% !important;
	height: 100%;
	aspect-ratio: 16/9 !important;
    display: block;
	margin: 0;
	padding: 0;
}
.newsArticle ul,
.newsArticle ol {
	width: calc(100% - 2em);
    display: block;
	margin: 0 0 auto 20px;
	padding: 10px 20px;
	font-size: 1.4em;
	line-height: 1.8em;
	box-sizing: border-box;
}
.newsArticle ul li,
.newsArticle ol li {
	width: 100%;
	margin-bottom: 10px;
}
.newsArticle ul li {
	list-style: disc outside;
}
.newsArticle ol li {
	list-style: decimal outside;
}
.newsArticle .wp-block-table {
	margin: 0 auto;
}
.newsArticle .wp-block-table table {
	width: auto;
    display: table;
	margin: 0 auto 20px;
	border-collapse: inherit;
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
	box-sizing: border-box;
}
.newsArticle .wp-block-table table thead,
.newsArticle .wp-block-table table tbody,
.newsArticle .wp-block-table table tfoot {
	margin: 0;
	padding: 0;
	border-collapse: inherit;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	border-left: solid 1px #ccc;
}
.newsArticle .wp-block-table table thead {
	text-align: center;
	color: #fff;
	background: #0095de;
}
.newsArticle table tbody tr:nth-of-type(even) {
	background: #f7f7f7;
}
.newsArticle .wp-block-table table th,
.newsArticle .wp-block-table table td {
	display: table-cell;
	margin: 0;
	padding: 20px;
	font-size: 1.4em;
	line-height: 1.4em;
	border-top: none;
	border-left: none;
	border-bottom: solid 1px #ccc;
	border-right: solid 1px #ccc;
}

/* デフォルトボタンの無効化 */
.wp-block-button__link {
  display: inline-block;
  background-color: inherit;
  color: inherit;
  text-decoration: none;
  padding: inherit;
  border-radius: inherit;
  font-size: 1em;
  transition: background-color 0.2s ease-in-out;
}
.wp-block-button__link:hover {
  background-color: inherit;
  color: inherit;
}
.wp-element-button,
.wp-block-button__link.wp-element-button {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: inherit;
  padding: 0.5em 1.5em;
  font-size: 1em;
  line-height: 1.5;
  text-align: center;
  transition: all 0.2s ease-in-out;

  /* デフォルトの配色（テーマ変数対応） */
  background-color: inherit;
  color: inherit;
}
.wp-element-button:hover,
.wp-element-button:focus {
  background-color: inherit;
  color: inherit;
}
.wp-element-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.newsArticle figure {
	padding: 10px 20px;
	box-sizing: border-box;
}
.newsArticle figcaption {
	width: 100%;
	display: block;
	font-size: 1.3em;
	line-height: 1.6em;
	text-align: center;
}
.newsArticle .address {
	width: auto;
    display: block;
	margin: 20px auto;
	padding: 20px 40px;
	font-size: 1.4em;
	line-height: 1.8em;
	text-align: center;
	border: solid 5px #0095de;
	background: #f2f8f9;
}

/*一覧へ戻る*/
.pageNavi {
	position: relative;
	width: 100%;
    min-height: 60px;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
    margin: 0 auto;
	border-top: solid 1px #CCC;
}
.pageNavi a.btnList {
	position: absolute;
    width: 10%;
    left: calc(50% - 5%);
	display: block;
}
.pageNavi a.btnList span {
	width: 90%;
	max-width: 30px;
	height: 1px;
	display: block;
	margin: 7px auto;
	background: #000;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】お問い合わせ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.commonContact {
	align-content: center;
    align-items: center;
}
.commonContact div {
	position: relative;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	align-self: stretch;
	padding: 20px 0;
    box-sizing: border-box;
}
.commonContact div+div {
	border-left: solid 1px #ccc;
}
.commonContact div:nth-of-type(1) {
	width: 25%;
	padding: 20px 0 20px 40px;
}
.commonContact div:nth-of-type(2) {
	width: 35%;
}
.commonContact div:nth-of-type(3) {
	width: 40%;
}
.commonContact .title span {
	width: 100%;
	display: block;
	margin-bottom: 10px;
	font-family: "avenir-lt-pro", sans-serif;
	font-size: clamp(3.2em, 4vw, 4.8em);
	font-weight: 200;
	line-height: 1em;
	color: #133571;
}
.commonContact .title h3 {
	position: relative;
	width: 100%;
	display: block;
    font-size: 1.4em;
	line-height: 1.8em;
}
.commonContact div h4 {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	margin-bottom: 20px;
    font-size: clamp(1.4em, 1.4vw, 1.8em);
	line-height: 1.2em;
	box-sizing: border-box;
}
.commonContact div h4::before {
	content: '';
	width: 30px;
	aspect-ratio: 1/1;
	display: inline-block;
}
.commonContact .tel h4::before {
	background: url("../images/icon_tel.svg") no-repeat center center;
	background-size: contain;
}
.commonContact .web h4::before {
	margin-right: 10px;
	background: url("../images/icon_web.svg") no-repeat center center;
	background-size: contain;
}
.commonContact .tel a.number {
	width: 100%;
	display: block;
	font-family: "avenir-lt-pro", sans-serif;
	font-size: clamp(3em, 3vw, 4.2em);
	font-weight: 200;
	line-height: 1em;
	letter-spacing: 0.05em;
	text-align: center;
	color: #133571;
}
.commonContact .tel p {
	position: relative;
	width: 100%;
	display: block;
	margin-top: 10px;
    font-size: 1.4em;
	line-height: 1.2em;
	text-align: center;
}
.commonContact .web a.btnDetail {
	width: 80%;
	height: 80px;
	padding: 0;
	font-size: clamp(1.6em, 1.2vw, 2.4em);
}
.commonContact .web a.btnDetail img {
	position: absolute;
	width: 24px;
	aspect-ratio: 1/1;
	left: 20px;
	display: block;
	filter: invert(100%) sepia(1%) saturate(3%) hue-rotate(345deg) brightness(103%) contrast(102%);
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
footer {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: center;
		align-content: space-between;
		align-items: center;
        flex-wrap: wrap;
	padding: 80px 0;
	background: url("../images/footer_bg.webp") no-repeat center bottom;
    background-size: cover;
    box-sizing: border-box;
}
footer #page-top {
	position: fixed;
	width: 60px;
	right: 10px;
	bottom: 0;
	z-index: 30000;
    border-radius: 30px;
	background: #133571;
}
footer img.copy {
	position: absolute;
	width: 100px;
	top: 5%;
	left: 65%;
    display: block;
	z-index: 1000;
	transition: all 200ms;
}
footer a.logo {
    width: 360px;
	display: block;
}
footer .office {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 40px 0;
	padding: 0 30% 60px 115px;
	box-sizing: border-box;
}
footer .office address {
	width: 50%;
    display: block;
	align-self: stretch;
	margin: 10px 0;
	font-size: 1.4em;
    line-height: 1.6em;
}
footer .office address:nth-of-type(1) {
	width: 100%;
}
footer .office address b {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	font-size: 1.1em;
    line-height: 1.2em;
}
footer .office a.linkArrow {
	position: absolute;
	bottom: 0;
	right: 40%;
}
footer .bottom {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
footer .bottom ul {
	width: auto;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
	margin-bottom: 40px;
}
footer .bottom ul li {
	display: block;
	padding-right: 20px;
	font-size: 1.2em;
	line-height: 1em;
}
footer .bottom ul li+li {
	padding-left: 20px;
	border-left: solid 1px rgba(0,0,0,0.5);
}
footer .bottom ul li a {
	
}
footer .bottom ul li a:hover {
	text-decoration: underline;
    color: #00b3ea;
}
footer .bottom .copyright {
	width: 100%;
    display: block;
	font: 300 1.2em/1em "avenir-lt-pro", sans-serif;
}