@charset "utf-8";

/* Reset
---------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

html {
	overflow-y: scroll;
	margin-top: 0 !important;
}

* {
	box-sizing: border-box;
}

blockquote,
q {
	quotes: none;
}

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

a,
input {
	/* outline: none; */
}

input,
textarea {
	margin: 0;
	padding: 0;
}

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

fieldset,
img {
	border: 0;
	vertical-align: bottom;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul,
li {
	list-style: none;
}

caption,
th {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {

	font-weight: normal;
}

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

abbr,
acronym {
	border: 0;
}

textarea {
	font-size: 100%;
}

caption,
th {
	text-align: left;
}

*:focus {
	/* outline: none; */
}

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


/* Header
------------------------------------------------*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 150px;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0;
	z-index: 99999;
	transition: all .5s ease-in-out;
	background: #fff;
}

.header.fixed {
	position: fixed;
	border-bottom: 1px solid #eee;
	height: 90px;
}

.header_inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 30px 40px 0;
	display: flex;
	justify-content: space-between;
	transition: all .5s;
}

.header.fixed .header_inner {
	padding-top: 20px;
}

.header_inner._2 {
	padding: 20px 40px 0;
}

.header.fixed .header_inner._2 {
	padding-top: 0;
}

.header_logo {
	width: 270px;
	height: auto;
	transition: all .5s;
	position: relative;
	z-index: 1;
}

.header.fixed .header_logo {
	width: 180px;
}

.header .header_logo a {
	display: block;
}

.header .header_logo a img {
	display: block;
}

.header_inner .nav {
	display: flex;
	/* justify-content: center; */
	padding: 0;
	transition: all .5s;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 1280px;
	padding: 0 55px;
}

.header.fixed .header_inner .nav {
	top: 55px;
}

.header_inner .nav>ul:nth-child(1) {
	transition: all .5s;
}

.header_inner .nav>ul>li {
	display: inline-block;
	vertical-align: middle;
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: .05em;
	transition: all .5s;
}

.header.fixed .header_inner .nav>ul>li {
	font-size: 1.6rem;
}

.header_inner .nav>ul>li+li {
	padding-left: 32px;
}

.header_inner .nav>ul>li>a {
	display: block;
	position: relative;
}

.header_inner .nav>ul>li:not(.drop)>a:hover {
	opacity: 1;
	text-decoration: underline;
}

.header_inner .nav>ul>li.drop.drop_active>a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 5px;
}

.header_inner .nav>ul>li.guidance.drop.drop_active>a {
	text-decoration-color: #e77b93;
}

.header_inner .nav>ul>li.life.drop.drop_active>a {
	text-decoration-color: #b3d084;
}

.header_inner .nav>ul>li.business.drop.drop_active>a {
	text-decoration-color: #7a9acf;
}

.header_inner .nav>ul>li.corporate.drop.drop_active>a {
	text-decoration-color: #a877ad;
}


.header_inner .nav>ul>li.drop>a {
	position: relative;
	padding-bottom: 0;
	/* outline: none; */
	padding-left: 15px;
}

.header_inner .nav>ul>li.drop>a:hover {
	opacity: 1;
}

.header_inner .nav>ul>li.drop>a:focus {
	/* outline: none; */
}

.header_inner .nav>ul>li.drop>a::before {
	content: '';
	width: 7px;
	height: 7px;
	position: absolute;
	left: 0;
	transform: rotate(45deg);
	top: 2px;
	bottom: 0;
	margin: auto;
}

.header_inner .nav>ul>li.guidance.drop>a::before {
	border-top: solid 1px #e77b93;
	border-right: solid 1px #e77b93;
}

.header_inner .nav>ul>li.life.drop>a::before {
	border-top: solid 1px #b3d084;
	border-right: solid 1px #b3d084;
}

.header_inner .nav>ul>li.business.drop>a::before {
	border-top: solid 1px #7a9acf;
	border-right: solid 1px #7a9acf;
}

.header_inner .nav>ul>li.corporate.drop>a::before {
	border-top: solid 1px #a877ad;
	border-right: solid 1px #a877ad;
}

.header_inner .nav>ul>li.drop.drop_active>a::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 9px solid transparent;
	border-left: 9px solid transparent;
	border-bottom: 17px solid #e9edef;
	border-top: 0;
	position: absolute;
	bottom: -22px;
	left: 13px;
	right: 0;
	margin: auto;
}

.header.fixed .header_inner .nav>ul>li.drop.drop_active>a::after {
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	border-bottom: 12px solid #e9edef;
	bottom: -16px;
}

.header_inner .nav>ul>li.drop.drop_active>a:hover::after {
	/* opacity: 1!important; */
}

.drop_parent {
	position: relative;
}

.drop_parent::after {
	content: '';
	display: block;
	width: 100%;
	height: 50px;
	background: transparent;
	position: absolute;
	left: 0;
	top: 0;
}

.header_inner .nav>ul>li>.menu {
	display: none;
	/* display: block !important; */
	position: absolute;
	top: 49px;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0;
	text-align: left;
	background: #eee;
	z-index: 0;
}

.header_inner .nav>ul>li.guidance>.menu {
	/* display: block !important; */
}

.header_inner .nav>ul>li.life>.menu {
	/* display: block !important; */
}

.header_inner .nav>ul>li.business>.menu {
	/* display: block !important; */
}

.header_inner .nav>ul>li.corporate>.menu {
	/* display: block !important; */
}

.header.fixed .header_inner .nav>ul>li>.menu {
	top: 42px;
}

.menu_inner {
	padding: 44px 40px;
	max-width: 1280px;
	margin: 0 auto;
	/* position: relative; */
}

.menu_drop-top-ul>li>a {
	display: inline-block;
	font-size: 1.8rem;
	/* font-size: 2rem; */
	letter-spacing: .1em;
	line-height: 1.4;
	position: relative;
	padding-left: 14px;
}

.header.fixed .menu_drop-top-ul>li>a {
	/* font-size: 1.8rem; */
}

.menu_drop-top-ul>li>a::before {
	content: '';
	width: 7px;
	height: 7px;
	position: absolute;
	left: -2px;
	transform: rotate(45deg);
	top: 2px;
	bottom: 0;
	margin: auto;
}

.nav>ul>li.guidance .menu_drop-top-ul>li>a::before {
	border-top: solid 1px #e77b93;
	border-right: solid 1px #e77b93;
}

.nav>ul>li.life .menu_drop-top-ul>li>a::before {
	border-top: solid 1px #b3d084;
	border-right: solid 1px #b3d084;
}

.nav>ul>li.business .menu_drop-top-ul>li>a::before {
	border-top: solid 1px #7a9acf;
	border-right: solid 1px #7a9acf;
}

.nav>ul>li.corporate .menu_drop-top-ul>li>a::before {
	border-top: solid 1px #a877ad;
	border-right: solid 1px #a877ad;
}

.menu_list {
	display: flex;
	flex-wrap: wrap;
}

.menu_drop-top-ul+.menu_list {
	margin-top: 20px;
}

.menu_list_item {
	width: 21.3%;
	margin-right: 4.9333%;
}


.nav>ul>li.guidance .menu_list_item {
	margin-right: 2%;
}

.nav>ul>li.guidance .menu_list_item:nth-child(1),
.nav>ul>li.guidance .menu_list_item:nth-child(5) {
	width: 29%;
}

.nav>ul>li.guidance .menu_list_item:nth-child(2) {
	width: 29%;
}

.nav>ul>li.guidance .menu_list_item:nth-child(3) {
    width: 18%;
}

.nav>ul>li.guidance .menu_list_item:nth-child(4) {
    width: 18%;
	margin-right: 0;
}


.nav>ul>li.life .menu_list_item,
.nav>ul>li.business .menu_list_item,
.nav>ul>li.corporate .menu_list_item {
	margin-right: 2%;
}

.nav>ul>li.life .menu_list_item:nth-child(1) {
	width: 32%;
}

.nav>ul>li.life .menu_list_item:nth-child(2) {
	width: 32%;
}

.nav>ul>li.life .menu_list_item:nth-child(3) {
	width: 32%;
	margin-right: 0;
}


.nav>ul>li.business .menu_list_item:nth-child(1) {
	width: 25%;
}

.nav>ul>li.business .menu_list_item:nth-child(2) {
	width: 22%;
}

.nav>ul>li.business .menu_list_item:nth-child(3) {
	width: 28%;
}

.nav>ul>li.business .menu_list_item:nth-child(4) {
	width: 19%;
	margin-right: 0;
}


.nav>ul>li.corporate .menu_list_item:nth-child(1) {
	width: 23%;
}

.nav>ul>li.corporate .menu_list_item:nth-child(2) {
	width: 20%;
}

.nav>ul>li.corporate .menu_list_item:nth-child(3) {
	width: 30%;
}

.nav>ul>li.corporate .menu_list_item:nth-child(4) {
	width: 21%;
	margin-right: 0;
}

.nav>ul>li.corporate .menu_list_item:nth-child(5) {
	width: 23%;
}

.nav>ul>li.corporate .menu_list_item:nth-child(6) {
	width: 20%;
}


.menu_list_item:nth-child(4n+4) {
	margin-right: 0;
}

.menu_list_item:nth-child(n+5) {
	margin-top: 30px;
}

.menu_list_item_tit {
	display: block;
	font-size: 1.8rem;
	letter-spacing: .1em;
	line-height: 1.4;
	position: relative;
	padding: 0 0 6px 14px;
	pointer-events: none;
}

.nav>ul>li.guidance .menu_list_item_tit {
	border-bottom: 2px solid #e77b93;
}

.nav>ul>li.life .menu_list_item_tit {
	border-bottom: 2px solid #b3d084;
}

.nav>ul>li.business .menu_list_item_tit {
	border-bottom: 2px solid #7a9acf;
}

.nav>ul>li.corporate .menu_list_item_tit {
	border-bottom: 2px solid #a877ad;
}

.nav>ul>li a {
	transition: opacity .5s;
}

.nav>ul>li a:hover {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	opacity: 1;
}

.nav>ul>li.guidance a:hover {
	text-decoration-color: #e77b93;
}

.nav>ul>li.life a:hover {
	text-decoration-color: #b3d084;
}

.nav>ul>li.business a:hover {
	text-decoration-color: #7a9acf;
}

.nav>ul>li.corporate a:hover {
	text-decoration-color: #a877ad;
}

.menu_drop-ul {
	width: 100%;
	box-sizing: border-box;
}

.menu_drop-ul>li,
.menu_drop-ul-ul>li {
	padding-top: 18.3px;
}

.menu_drop-ul>li>a {
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: .1em;
	display: inline-block;
	cursor: pointer;
	line-height: 1.2;
	position: relative;
	padding-left: 14px;
}

.menu_drop-ul>li>a::before {
	content: '';
	width: 7px;
	height: 7px;
	position: absolute;
	left: -2px;
	transform: rotate(45deg);
	top: 7px;
}

.nav>ul>li.guidance .menu_drop-ul>li>a::before {
	border-top: solid 1px #e77b93;
	border-right: solid 1px #e77b93;
}

.nav>ul>li.life .menu_drop-ul>li>a::before {
	border-top: solid 1px #b3d084;
	border-right: solid 1px #b3d084;
}

.nav>ul>li.business .menu_drop-ul>li>a::before {
	border-top: solid 1px #7a9acf;
	border-right: solid 1px #7a9acf;
}

.nav>ul>li.corporate .menu_drop-ul>li>a::before {
	border-top: solid 1px #a877ad;
	border-right: solid 1px #a877ad;
}

.acc-contents {
	display: none;
	/* display: block !important; */
}

.menu_drop-ul-ul>li>a {
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: .1em;
	display: block;
	cursor: pointer;
	line-height: 1.2;
	position: relative;
	padding-left: 3em;
}

.menu_drop-ul-ul>li>a::before {
	content: '・';
	display: inline-block;
	width: 1em;
	height: 1em;
	position: absolute;
	left: 1.9em;
}

.header_btns {
	display: flex;
	align-items: center;
	margin: -10px -30px 0 0;
}

.btn-sitemap,
.btn-sitemap:link,
.btn-sitemap:visited {
	display: block;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: .05em;
	transition: all .5s;
	position: relative;
	padding-left: 27px;
	margin-right: 30px;
}

.header.fixed .btn-sitemap,
.header.fixed .btn-sitemap:link,
.header.fixed .btn-sitemap:visited {
	font-size: 1.4rem;
}

.btn-sitemap::before {
	content: '';
	display: block;
	width: 21px;
	height: 15px;
	background: url(../../img/common_v2/icn_sitemap.png) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.btn-emergency,
.btn-emergency:link,
.btn-emergency:visited {
	display: block;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: .05em;
	transition: all .5s;
	background: rgb(230, 44, 33);
	border: 1px solid rgb(230, 44, 33);
	color: #fff;
	border-radius: 10px;
	padding: .45em 1.25em;
	margin-right: 20px;
}

.header.fixed .btn-emergency,
.header.fixed .btn-emergency:link,
.header.fixed .btn-emergency:visited {
	font-size: 1.4rem;
}

.btn-emergency_txt {
	position: relative;
	padding-left: 30px;
}

.btn-emergency_txt::before {
	content: '';
	display: block;
	width: 23px;
	height: 20px;
	background: url(../../img/common_v2/icn_emergency.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}


.btn-tel {
	display: block;
	box-sizing: border-box;
	transition: all .5s;
	position: relative;
	padding-left: 49px;
	pointer-events: none;
}

.header.fixed .btn-tel {
	padding-left: 40px;
}

.btn-tel:hover {
	opacity: .7;
}

.btn-tel::before {
	content: '';
	display: block;
	width: 41px;
	height: 41px;
	background: url(../../img/common_v2/icn_tel_blue.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.header.fixed .btn-tel::before {
	width: 30px;
	height: 30px;
}

.btn-tel_desc {
	font-size: 1.5rem;
	line-height: 1;
	font-weight: bold;
	letter-spacing: 0;
	color: #25398a;
	display: block;
}

.header.fixed .btn-tel_desc {
	font-size: 1.2rem;
}

.btn-tel_num {
	font-family: din-2014, sans-serif;
	font-size: 3.3rem;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 0;
	color: #25398a;
	display: block;
	transform: scale(.86, 1);
	position: relative;
	left: -.4em;
	margin-top: 4px;
}

.header.fixed .btn-tel_num {
	font-size: 2.65rem;
	margin-top: 0;
}


@media screen and (max-width: 1200px) {

	.header,
	.header.fixed {
		height: 90px;
	}

	.header_inner,
	.header.fixed .header_inner {
		padding: 20px 20px 0;
	}

	.header_inner._2,
	.header.fixed .header_inner._2 {
		padding-top: 0;
	}

	.header_logo,
	.header.fixed .header_logo {
		width: 180px;
	}

	.header_inner .nav,
	.header.fixed .header_inner .nav {
		top: 55px;
		padding: 0 35px;
	}

	.header_inner .nav>ul>li,
	.header.fixed .header_inner .nav>ul>li {
		font-size: 1.6rem;
	}

	.header_inner .nav>ul>li.drop.drop_active>a::after,
	.header.fixed .header_inner .nav>ul>li.drop.drop_active>a::after {
		border-right: 5px solid transparent;
		border-left: 5px solid transparent;
		border-bottom: 12px solid #e9edef;
		bottom: -16px;
	}

	.header_inner .nav>ul>li>.menu,
	.header.fixed .header_inner .nav>ul>li>.menu {
		top: 42px;
	}

	.menu_drop-top-ul>li>a,
	.header.fixed .menu_drop-top-ul>li>a {
		font-size: 1.8rem;
	}

	.menu_list_item_tit,
	.header.fixed .menu_list_item_tit {
		font-size: 1.8rem;
	}

	.menu_drop-ul>li>a,
	.header.fixed .menu_drop-ul>li>a {
		font-size: 1.6rem;
	}

	.menu_drop-ul-ul>li>a,
	.header.fixed .menu_drop-ul-ul>li>a {
		font-size: 1.6rem;
	}

	.btn-sitemap,
	.btn-sitemap:link,
	.btn-sitemap:visited,
	.header.fixed .btn-sitemap,
	.header.fixed .btn-sitemap:link,
	.header.fixed .btn-sitemap:visited {
		font-size: 1.4rem;
		margin-right: 10px;
	}

	.btn-emergency,
	.btn-emergency:link,
	.btn-emergency:visited,
	.header.fixed .btn-emergency,
	.header.fixed .btn-emergency:link,
	.header.fixed .btn-emergency:visited {
		font-size: 1.4rem;
		margin-right: 10px;
	}

	.btn-tel,
	.header.fixed .btn-tel {
		padding-left: 40px;
	}

	.btn-tel::before,
	.header.fixed .btn-tel::before {
		width: 30px;
		height: 30px;
	}

	.btn-tel_desc,
	.header.fixed .btn-tel_desc {
		font-size: 1.2rem;
	}

	.btn-tel_num,
	.header.fixed .btn-tel_num {
		font-size: 2.65rem;
		margin-top: 0;
	}

	.menu_inner {
		padding: 30px 20px;
	}

	.menu_list_item {
		width: 48%;
		margin-right: 4%;
	}

	.menu_list_item:nth-child(2n+2) {
		margin-right: 0;
	}

	.menu_list_item:nth-child(n+3) {
		margin-top: 30px;
	}

	.nav>ul>li.guidance .menu_list_item:nth-child(1),
	.nav>ul>li.guidance .menu_list_item:nth-child(2),
	.nav>ul>li.guidance .menu_list_item:nth-child(3),
	.nav>ul>li.guidance .menu_list_item:nth-child(4),
	.nav>ul>li.guidance .menu_list_item:nth-child(5),
	.nav>ul>li.life .menu_list_item:nth-child(1),
	.nav>ul>li.life .menu_list_item:nth-child(2),
	.nav>ul>li.life .menu_list_item:nth-child(3),
	.nav>ul>li.life .menu_list_item:nth-child(4),
	.nav>ul>li.business .menu_list_item:nth-child(1),
	.nav>ul>li.business .menu_list_item:nth-child(2),
	.nav>ul>li.business .menu_list_item:nth-child(3),
	.nav>ul>li.business .menu_list_item:nth-child(4),
	.nav>ul>li.corporate .menu_list_item:nth-child(1),
	.nav>ul>li.corporate .menu_list_item:nth-child(2),
	.nav>ul>li.corporate .menu_list_item:nth-child(3),
	.nav>ul>li.corporate .menu_list_item:nth-child(4),
	.nav>ul>li.corporate .menu_list_item:nth-child(5),
	.nav>ul>li.corporate .menu_list_item:nth-child(6) {
		width: 48%;
		margin-right: 4%;
	}

	.nav>ul>li.guidance .menu_list_item:nth-child(2),
	.nav>ul>li.guidance .menu_list_item:nth-child(4),
	.nav>ul>li.life .menu_list_item:nth-child(2),
	.nav>ul>li.life .menu_list_item:nth-child(4),
	.nav>ul>li.business .menu_list_item:nth-child(2),
	.nav>ul>li.business .menu_list_item:nth-child(4),
	.nav>ul>li.corporate .menu_list_item:nth-child(2),
	.nav>ul>li.corporate .menu_list_item:nth-child(4),
	.nav>ul>li.corporate .menu_list_item:nth-child(6) {
		margin-right: 0;
	}
}


@media screen and (max-width: 767px) {

	.header_inner,
	.header.fixed .header_inner,
	.header_inner._2 {
		padding: 10px 20px 2px;
	}

	.header_logo,
	.header.fixed .header_logo {
		width: 160px;
	}

	.header_btns {
		display: block;
		margin: 0;
	}

	.header_inner .nav>ul>li>a,
	.header_inner .nav>ul>li>span.close-btn,
	.header_inner .nav>ul>li>.menu>dl>dt a,
	.header_inner .nav>ul>li>.menu>dl>dt span,
	.header_inner .nav>ul>li>.menu>dl>dd>ul>li a {
		font-size: 1.3rem;
	}

	.header_inner .nav {
		max-height: calc(100vh - 50px);
		overflow: auto;
		position: static;
	}

	.header,
	.header.fixed {
		height: 50px;
		border-bottom: 1px solid #eee;
	}

	header .nav .toggle_content {
		display: none;
		margin-bottom: 50px;
		position: fixed;
		width: 100%;
		left: auto;
		right: 0px;
		border: none;
		z-index: 1001;
		top: 0;
		overflow-y: scroll;
		box-sizing: border-box;
		height: 100%;
		padding: 0;
		background: #e9edef;
	}

	header .nav .toggle_content a:focus,
	header .nav .toggle_content button:focus {
		outline: 2px solid #293885;
	}

	header .nav .toggle_content a:focus:not(.focus-visible),
	header .nav .toggle_content button:focus:not(.focus-visible) {
		outline: none;
	}

	header .nav .toggle_content>ul {
		margin-top: 35px;
	}

	header .nav>ul>li:nth-child(1) {
		margin-top: 45px;
	}

	header .nav li {
		margin-right: 0;
		display: block;
		position: relative;
	}

	header .nav li#closeBtn::after,
	header .nav ul>li.accordion::after {
		display: none;
	}

	header .nav ul>li.accordion {
		padding: 9px 0 0;
	}

	header .nav ul>li.accordion li.accordion {
		padding: 14px 0 0;
	}

	header .nav li:not(.accordion)+li.accordion {
		padding: 5px 0 0;
	}

	header .nav ul>li.accordion.guidance>ul.acc-body .acc-head {
		border-bottom: 1px solid #e77b93;
	}

	header .nav ul>li.accordion.life ul.acc-body .acc-head {
		border-bottom: 1px solid #b3d084;
	}

	header .nav ul>li.accordion.business ul.acc-body .acc-head {
		border-bottom: 1px solid #7a9acf;
	}

	header .nav ul>li.accordion.corporate ul.acc-body .acc-head {
		border-bottom: 1px solid #a877ad;
	}

	header .nav ul>li>ul>li:nth-child(1) {
		margin-top: 9px;
	}

	header .nav ul>li>ul>li a {
		font-size: 1.5rem;
		font-weight: 400;
		padding: 5px 0 5px 35px;
		letter-spacing: .1em;
		display: block;
	}

	header .nav ul>li>ul.acc-body .acc-head .acc-link {
		padding: 5px 0 7px 34px;
		flex: 1
			/*リンクさせない場合*/
		;
	}

	header .nav ul>li>ul.acc-body .acc-head .acc-link::before {
		display: none;
	}

	header .nav ul>li>ul.acc-body .acc-head .acc-btn {
		width: 30px;
		height: 30px;
		top: 0px;
		right: 5px;
	}

	header .nav ul>li>ul.acc-body .acc-head .acc-btn::before {
		content: '';
		width: 9px;
		height: 9px;
		position: absolute;
		transform: rotate(135deg);
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		transition: all .5s;
	}

	header .nav ul>li.accordion.guidance>ul.acc-body .acc-head .acc-btn::before {
		border-top: solid 1px #e77b93;
		border-right: solid 1px #e77b93;
		background: none;
	}

	header .nav ul>li.accordion.life ul.acc-body .acc-head .acc-btn::before {
		border-top: solid 1px #b3d084;
		border-right: solid 1px #b3d084;
		background: none;
	}

	header .nav ul>li.accordion.business ul.acc-body .acc-head .acc-btn::before {
		border-top: solid 1px #7a9acf;
		border-right: solid 1px #7a9acf;
		background: none;
	}

	header .nav ul>li.accordion.corporate ul.acc-body .acc-head .acc-btn::before {
		border-top: solid 1px #a877ad;
		border-right: solid 1px #a877ad;
		background: none;
	}

	header .nav ul>li>ul.acc-body .accordion.active .acc-head .acc-btn::before {
		transform: rotate(315deg);
		top: 7px;
	}

	header .nav ul>li.accordion.guidance>ul.acc-body .acc-head .acc-btn::after,
	header .nav ul>li.accordion.life>ul.acc-body .acc-head .acc-btn::after,
	header .nav ul>li.accordion.business>ul.acc-body .acc-head .acc-btn::after,
	header .nav ul>li.accordion.corporate>ul.acc-body .acc-head .acc-btn::after {
		display: none;
	}

	header .nav li a:hover {
		opacity: 1;
	}

	header .nav ul>li>ul>li+li {
		border-top: none;
	}

	header .nav ul>li>ul {
		display: none;
		padding: 0 20px;
	}

	header .nav ul>li>ul a::before {
		content: '';
		width: 7px;
		height: 7px;
		position: absolute;
		transform: rotate(45deg);
		top: -1px;
		bottom: 0;
		left: 18px;
		margin: auto;
	}

	header .nav ul>li.accordion.guidance>ul a::before {
		border-top: solid 1px #e77b93;
		border-right: solid 1px #e77b93;
	}

	header .nav ul>li.accordion.life>ul a::before {
		border-top: solid 1px #b3d084;
		border-right: solid 1px #b3d084;
	}

	header .nav ul>li.accordion.business>ul a::before {
		border-top: solid 1px #7a9acf;
		border-right: solid 1px #7a9acf;
	}

	header .nav ul>li.accordion.corporate>ul a::before {
		border-top: solid 1px #a877ad;
		border-right: solid 1px #a877ad;
	}

	header .nav ul>li>ul>li.sp-acc {
		position: relative;
		display: block;
	}

	header .nav ul>li>ul>li.sp-acc>a {
		position: relative;
		display: inline-block;
	}

	header .nav ul>li>ul>li.sp-acc>a.no-link::before {
		display: none;
	}

	header .nav ul>li>ul>li.sp-acc>a.no-link::after {
		content: '';
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
		border-top: 8px solid #000;
		border-bottom: 0;
		position: absolute;
		top: 13px;
		right: -17px;
		transition: all .5s;
		opacity: .8;
		transform-style: preserve-3d;
		perspective: 100px;
	}

	header .nav ul>li>ul>li.sp-acc.active>a.no-link::after {
		transform: rotateX(180deg);
	}

	header .nav ul>li>ul>li.sp-acc>a:not(.no-link)+.sp-acc-btn::after {
		content: '';
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
		border-top: 8px solid #fff;
		border-bottom: 0;
		position: absolute;
		top: 13px;
		right: -19px;
		transition: all .5s;
		opacity: .8;
		transform-style: preserve-3d;
		perspective: 100px;
		cursor: pointer;
	}

	header .nav ul>li>ul>li.sp-acc.active>a:not(.no-link)+.sp-acc-btn::after {
		transform: rotateX(180deg);
	}

	header .nav ul>li>ul>li.sp-acc .sp-acc-contents {
		display: none;
		/* display: block !important; */
	}

	header .nav ul>li>ul>li.sp-acc .sp-acc-ul-ul {
		display: block;
		margin-top: 0px;
	}

	header .nav ul>li>ul>li.sp-acc .sp-acc-ul-ul>li+li {
		margin-top: 4px;
	}

	header .nav ul>li>ul>li.sp-acc .sp-acc-ul-ul>li>a {
		font-size: 1.3rem;
		font-weight: 400;
		letter-spacing: 0.12em;
		line-height: 1.4;
		display: inline-block;
		position: relative;
		padding: 2px 2px 2px 1em;
	}

	header .nav ul>li>ul>li.sp-acc .sp-acc-ul-ul>li>a::before {
		content: '';
		display: inline-block;
		width: 7px;
		height: 7px;
		box-sizing: border-box;
		background: #000;
		border-radius: 50%;
		position: absolute;
		left: 0;
		top: 8px;
	}

	header .nav ul>li>ul>li>ul {
		display: block;
	}

	header .nav ul>li>ul>li>ul>li>a {
		font-size: 1.4rem;
		padding: 5.5px 0 5.5px 14px;
		position: relative;
	}

	header .nav ul>li>ul>li>ul>li>a::before {
		content: '';
		width: 7px;
		height: 7px;
		position: absolute;
		transform: rotate(45deg);
		top: 0;
		left: -2px;
	}

	header .nav ul>li.accordion.guidance>ul>li>ul>li>ul>li {
		margin-top: 0;
		padding-top: 0;
	}

	.menu_drop-ul-ul>li>a,
	.header.fixed .menu_drop-ul-ul>li>a,
	header .nav ul>li>ul>li>ul>li>ul>li>a {
		font-size: 1.3rem;
		padding: 4px 0 8px 25px;
	}

	header .nav ul>li>ul>li>ul>li>ul>li>a::before {
		content: '・';
		width: 1em;
		height: 1em;
		position: absolute;
		left: 12px;
		top: 0;
	}

	header .nav ul>li.accordion.guidance>ul>li>ul>li>ul>li>a::before,
	header .nav ul>li.accordion.life>ul>li>ul>li>ul>li>a::before,
	header .nav ul>li.accordion.business>ul>li>ul>li>ul>li>a::before,
	header .nav ul>li.accordion.corporate>ul>li>ul>li>ul>li>a::before {
		border: none;
	}

	.acc-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		cursor: pointer;
	}

	header .nav ul>li.accordion.guidance>.acc-head {
		border-bottom: 2px solid #e77b93;
	}

	header .nav ul>li.accordion.life>.acc-head {
		border-bottom: 2px solid #b3d084;
	}

	header .nav ul>li.accordion.business>.acc-head {
		border-bottom: 2px solid #7a9acf;
	}

	header .nav ul>li.accordion.corporate>.acc-head {
		border-bottom: 2px solid #a877ad;
	}

	.acc-link {
		padding: 16px 16px 8.5px 38px;
		display: inline-block;
		position: relative;
	}

	.acc-btn {
		width: 58px;
		height: 40px;
		position: relative;
		top: 4px;
		background: none;
		border: none;
		cursor: pointer;
	}

	/* ＋ */
	.acc-btn::before,
	.acc-btn::after {
		content: "";
		position: absolute;
		background: #e77b93;
	}

	header .nav ul>li.accordion.guidance .acc-head .acc-btn::before,
	header .nav ul>li.accordion.guidance .acc-head .acc-btn::after {
		background: #e77b93;
	}

	header .nav ul>li.accordion.life .acc-head .acc-btn::before,
	header .nav ul>li.accordion.life .acc-head .acc-btn::after {
		background: #b3d084;
	}

	header .nav ul>li.accordion.business .acc-head .acc-btn::before,
	header .nav ul>li.accordion.business .acc-head .acc-btn::after {
		background: #7a9acf;
	}

	header .nav ul>li.accordion.corporate .acc-head .acc-btn::before,
	header .nav ul>li.accordion.corporate .acc-head .acc-btn::after {
		background: #a877ad;
	}

	.acc-btn::before {
		width: 20px;
		height: 1px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.acc-btn::after {
		width: 1px;
		height: 20px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.accordion.active>.acc-head .acc-btn::after {
		display: none;
	}

	.acc-body {
		display: none;
	}

	.acc-body .acc-body .acc-link {
		padding-left: 48px;
	}

	#fixedArea {
		position: fixed;
		background-color: #fff;
	}

	.drawerBg {
		background: #000;
		opacity: 0.9;
		position: fixed;
		width: 100%;
		height: 100%;
		display: none;
		z-index: 1002;
	}

	#toggle {
		display: block;
		float: right;
		width: 60px;
		height: 50px;
		top: 0;
		right: 0;
		position: absolute;
		z-index: 10001;
		margin-right: 0;
		cursor: pointer;
	}

	#toggle a {
		display: block;
		width: 60px;
		height: 50px;
	}

	#toggle a:hover {
		opacity: 1;
	}

	.line1,
	.line2,
	.line3 {
		width: 25px;
		height: 1px;
		background: #293885;
		border-radius: 5px;
		position: absolute;
		left: 15px;
		transition: all 0.3s ease-out;
	}

	.line1 {
		top: 14.5px;
	}

	.line2 {
		top: 24.5px;
	}

	.line3 {
		top: 34.5px;
	}

	.lineclick1 {
		top: 18px;
		left: 14px;
		transform: translateY(7px) rotate(45deg);
	}

	.lineclick2 {
		top: 32px;
		left: 14px;
		transform: translateY(-7px) rotate(-45deg);
	}

	.lineclick3 {
		display: none;
	}

	#closeBtn a {
		display: block;
		color: #fff;
		text-align: center;
		font-size: 10px;
		padding: 22px 0 30px 0;
		margin: 0 auto;
	}

	#closeBtn a .batsu {
		display: block;
		position: relative;
		text-align: center;
		margin: 0 auto;
		width: 20px;
		height: 20px;
		box-sizing: border-box;
	}

	#closeBtn .closeBtn_txt {
		text-align: center;
		display: block;
		justify-content: center;
		width: 100%;
		box-sizing: border-box;
		margin: 3px auto 0;
	}

	#closeBtn a .batsu::before,
	#closeBtn a .batsu::after {
		display: block;
		content: "";
		width: 20px;
		height: 1px;
		background: #fff;
		position: absolute;
		top: 9px;
		left: 0;
	}

	#closeBtn a .batsu::before {
		transform: rotate(-45deg);
	}

	#closeBtn a .batsu::after {
		transform: rotate(45deg);
	}

	.navBg {
		display: none;
		background: rgb(0, 0, 0);
		opacity: 0.9;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: none;
		z-index: 2;
	}

	.btn-tel,
	.header.fixed .btn-tel {
		padding-left: 0;
		width: 31px;
		height: 31px;
		position: absolute;
		right: 60px;
	}

	.btn-tel:hover {
		opacity: 1;
	}

	.btn-tel::before {
		display: none;
	}

	body.is-mobile .btn-tel {
		pointer-events: auto;
	}

	.btn-tel_txt,
	.header.fixed .btn-tel_txt {
		font-size: 1.1rem;
		letter-spacing: 0.2em;
		padding: 0 13px 0 25px;
		top: -0.1em;
		right: -0.2em;
	}

	.btn-tel_txt::before {
		content: '';
		display: inline-block;
		width: 17px;
		height: 16px;
		background: url(../img/common/icn_monitor_white.svg) no-repeat center / contain;
		position: absolute;
		left: 0;
		right: auto;
		top: calc(50% - 7px);
		opacity: 1;
	}

	header .nav ul>li .btn-tel_txt::before {
		content: '';
		display: inline-block;
		width: 24px;
		height: 22px;
		background: url(../img/common/icn_monitor_green.svg) no-repeat center / cover;
		position: absolute;
		left: 0;
		top: calc(50% - 11px);
		opacity: 1;
	}

	.btn-tel_txt::after,
	.header.fixed .btn-tel_txt::after {
		border-top: 3px solid transparent;
		border-bottom: 3px solid transparent;
		border-left: 6px solid rgba(255, 255, 255, .5);
		top: calc(50% - 3px);
		right: 0;
	}

	.btn-tel:hover .btn-tel_txt::after {
		right: 0;
	}

	.btn-tel:hover .btn-tel_txt::after {
		transform: translateX(0);
	}

	header .nav ul>li .btn-tel_txt::after {
		content: '';
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 4.5px solid transparent;
		border-bottom: 4.5px solid transparent;
		border-left: 9px solid #00aaaa;
		border-right: 0;
		position: absolute;
		top: calc(50% - 4px);
		right: 0;
		transition: all .5s;
	}

	header .nav .toggle_content .header_btns {
		margin: 28px auto 60px;
	}

	header .nav .toggle_content .btn-sitemap,
	header .nav .toggle_content .btn-sitemap:link,
	header .nav .toggle_content .btn-sitemap:visited,
	header.fixed .nav .toggle_content .btn-sitemap,
	header.fixed .nav .toggle_content .btn-sitemap:link,
	header.fixed .nav .toggle_content .btn-sitemap:visited {
		margin: 0 auto;
		width: fit-content;
		padding-left: 24px;
	}

	header .nav .toggle_content .btn-sitemap::before {
		width: 19px;
		height: 13.5px;
	}

	header .nav .toggle_content .btn-emergency,
	header .nav .toggle_content .btn-emergency:link,
	header .nav .toggle_content .btn-emergency:visited,
	header.fixed .nav .toggle_content .btn-emergency,
	header.fixed .nav .toggle_content .btn-emergency:link,
	header.fixed .nav .toggle_content .btn-emergency:visited {
		width: 200px;
		margin: 17px auto 0;
		border-radius: 5px;
		white-space: nowrap;
		font-size: 1.43rem;
	}

	header .nav .toggle_content .btn-emergency_txt {
		padding-left: 27px;
	}

	header .nav .toggle_content .btn-emergency_txt::before {
		width: 20.5px;
		height: 18px;
	}

	header .nav .toggle_content .btn-tel,
	header.fixed .nav .toggle_content .btn-tel {
		pointer-events: auto;
		position: relative;
		margin: 20px auto 0;
		padding-left: 43px;
		width: fit-content;
		height: auto;
		right: -13px;
	}

	header .nav .toggle_content .btn-tel::before,
	header.fixed .nav .toggle_content .btn-tel::before {
		display: block;
		width: 37px;
		height: 37px;
	}

	header .nav .toggle_content .btn-tel_desc,
	header .nav .toggle_content .header.fixed .btn-tel_desc {
		font-size: 1.34rem;
	}

	header .nav .toggle_content .btn-tel_num,
	header .nav .toggle_content .header.fixed .btn-tel_num {
		font-size: 2.987rem;
		margin-top: 3px;
	}
}


/* ページTOPに戻るボタン
---------------------------------------------------*/
.pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	text-align: right;
	display: none;
	z-index: 100000;
	cursor: pointer;
}

.pagetop a {
	display: block;
	width: 45px;
	height: 45px;
	border-radius: 100%;
	background: #263889;
	position: relative;
}

.pagetop a::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	transform: translate(4px, 1px) rotate(45deg);
	transform-origin: top left;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	width: 8px;
	height: 8px;
	transition-property: top, right, bottom, left;
	transition-duration: 0.3s;
}


@media screen and (max-width: 767px) {
	.pagetop {
		right: 10px;
	}

	.pagetop a {
		width: 35px;
		height: 35px;
	}

	.pagetop a:hover {
		opacity: 1;
	}

	.pagetop a::after {
		position: absolute;
		content: "";
		margin: auto;
		box-sizing: border-box;
		vertical-align: middle;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		transform: translate(3px, 1px) rotate(45deg);
		transform-origin: top left;
		border-top: 1px solid #fff;
		border-left: 1px solid #fff;
		width: 6px;
		height: 6px;
		transition-property: top, right, bottom, left;
		transition-duration: 0.3s;
	}
}


/* Footer
------------------------------------------------*/
.footer {
	padding: 60px 0;
	border-top: 1px solid #eee;
}

.footer .inner1280 {
	display: flex;
	justify-content: space-between;
}

.footer_logo {
	display: block;
	width: 270px;
	cursor: pointer;
}

.footer_ul {
	display: flex;
}

.footer_ul>li {
	position: relative;
}

.footer_ul>li+li {
	margin-left: 20px;
}

.footer_ul>li+li::before {
	content: '';
	display: block;
	width: 1px;
	height: 1.1em;
	background: #454545;
	position: absolute;
	left: -11px;
	top: 4px;
}

.footer_ul>li>a {
	display: block;
	font-size: 1.5rem;
	line-height: 1.4;
	letter-spacing: .05em;
}

.footer_ul>li>a:hover {
	text-decoration: underline;
}

.footer_copy {
	font-size: 1.5rem;
	line-height: 1.4;
	letter-spacing: .1em;
	text-align: right;
	margin-top: 15px;
}


@media screen and (max-width: 1200px) {
	.footer_logo {
		width: 180px;
	}

	.footer_ul>li+li::before {
		top: 1px;
	}

	.footer_ul>li>a {
		font-size: 1.3rem;
	}

	.footer_copy {
		font-size: 1.3rem;
		margin-top: 13px;
	}
}


@media screen and (max-width: 767px) {
	.footer {
		padding: 50px 0;
	}

	.footer .inner1280 {
		display: block;
	}

	.footer_logo {
		width: 220px;
		margin: 0 auto;
	}

	.footer_ul {
		margin-top: 34px;
		justify-content: center;
	}

	.footer_ul>li+li::before {
		height: .8em;
		top: 2px;
	}

	.footer_ul>li>a {
		font-size: 1.15rem;
	}

	.footer_ul>li>a:hover {
		text-decoration: none;
	}

	.footer_copy {
		font-size: 1rem;
		margin-top: 20px;
		text-align: center;
	}
}