@charset "utf-8";
/* CSS Document */
@media (min-width: 576px) {}

@media (min-width: 768px) {}

@media (min-width: 992px) {}



body{
	font-family: 'Noto Sans JP', sans-serif;
	color: #000;
}
a{
	/*transition: 0.5s;*/
	color:#337ab7;
	text-decoration: none;
}
a:hover{
	text-decoration: none;
}
a:active{
	text-decoration: none;
}
@media (min-width: 576px) {
	a:hover{
		transition: 0.3s;
		/*text-decoration: underline;*/
		color: #f88b43;
	}
}
a.imgLink img,
a.btnLink span,
a.btnLink02{
	opacity:1;
	transition: .3s ease-in-out;
}
@media (min-width: 576px) {
	a.imgLink:hover img,
	a.btnLink:hover span,
	a.btnLink02:hover{
		opacity:0.8;
	}
	a.headerLink:hover{
		text-decoration: none;
		color: #f88b43;
	}
}
a.headerLink::before{
	content: "\F285";
	font-family: bootstrap-icons;
	font-size: 1.1rem;
	line-height: 1.3;
	vertical-align: -.125em;
}
a.textLink,a.textLinkDown,a.textLinkBlank{
	color:#337ab7;
}
a.textLink::before{
	content: "\F285";
	font-family: bootstrap-icons;
	font-size: 1.1rem;
	line-height: 1.3;
	vertical-align: -.125em;
}
a.textLinkDown::before{
	content: "\F27E";
	font-family: bootstrap-icons;
	font-size: 1.1rem;
	line-height: 1.3;
	vertical-align: -.125em;
}
a.textLinkBlank::after{
	content: "\F1C5";
	font-family: bootstrap-icons;
	font-size: 1.1rem;
	line-height: 1.3;
	vertical-align: -.2em;
	padding-left:0.2rem;
}

/*背景色*/
.bgGray{
	background-color: #E4E4E4;
}
.bgPink{
	background-color: #f5ddea;
}
.bgPalePink{
	background-color: #fbe8f1!important;
}
.bgPaleYellow{
	background-color: #FFE6B3!important;
}
.bgPaleGreen{
	background-color: #E9F4D0!important;
}
.bgPalePurple{
	background-color: #D0C6E0!important;
}

/*文字色*/
.textRed{
	color:#ff0038;
}
.textPink{
	color:#e772a7!important;
}
.textBlue{
	color:#036eb7;
}
.textGray{
	color:#717071;
}
.textGreen{
	color:#00a29a;
}
.textDeepGreen{
	color:#00633d;
}
/*
.textOrange{
	color:#ff6003;
}*/


/*ボーダーの色*/
.borderGray{
	border-color:#717071!important;
}


/*フォントファミリー*/
.textMincho{
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
	font-weight: 600;
}

/*コンテナ―*/
.containerWrap{
	padding-top:2rem;
	padding-bottom:2rem;
}
@media (min-width: 768px) {
	.containerWrap{
		padding-top:3rem;
		padding-bottom:3rem;
	}
}


/* トップへ戻るボタン */
.pagetop {
	width: 64px;
	height: 64px;
	position: fixed;
	bottom: 8%;
	right: 2%;
	transition: all .3s;
	/*opacity: 0;
	visibility: hidden;*/
	z-index: 1000;
}

.pagetop__link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: #e772a7;
	border-radius: 50%;
	text-align: center;
	font-size: 18px;
	font-size: bold;
	line-height: 1.3;
	color: #FFF;
	text-decoration: none;
}
.pagetop > a.pagetop__link:hover {
	background-color: #eba0c2;
	color: #FFF;
}

.pagetop__text {
	padding-top: 15px;
	position: relative;
}

.pagetop__text::before {
	content: "〈";
	display: inline-block;
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%) rotate(90deg);
}

.pagetop__text::after {
	content: "〈";
	display: inline-block;
	position: absolute;
	top: -7px;
	left: 50%;
	transform: translateX(-50%) rotate(90deg);
}
.pagetop.fadeIn {/* TOPボタン出現後のスタイル */
	opacity: 1;
	visibility: inherit;
}



/*ヘッダー*/
header{
	position: relative;
	border-bottom: 3px solid #E772A7;
}
.headerLogo{
	font-size:12px;
}
.headerLogo img{
	width: 100%;
}
@media (min-width: 768px) {
	.headerLogo img{
		width: 80%;
	}
}
@media (min-width: 992px) {
	header{
		border-bottom: none;
	}
	header::after{
		position: absolute;
		bottom: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 6px;
		content: "";
		background-color: #E772A7;
	}
	.headerLogo img{
		width: 90%;
	}
}

.globalMenu a {/*グローバルメニュー*/
	position: relative;
	margin: 0;
	padding: 1rem 0 0.5rem;
	background-color: #FFF;
	text-align: center;
	font-size: 1.1rem;
	font-weight: normal;
	color: #E772A7;
	cursor: pointer;
	border-bottom: 6px solid #E772A7;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 3.5rem;
	z-index: 1000;
}
.globalMenu a:hover,
.globalMenu a:active{
	color: #036eb7;
	border-bottom: 6px solid #036eb7;
	text-decoration: none;
}

.globalMenu a:after {
	position: absolute;
	right: 0.5rem;
	top: 33%;
	font-family: bootstrap-icons;
	content: "\F285";
	font-weight: 900;
	font-size: 1rem;
}

/*.accordion-title.open:after {
	font-family: bootstrap-icons;
	content: "\F286";
	font-weight: 900;
}

.accordion-content {
	display: none;
	background-color:#eefff7;
	opacity: 0.95;
	position: absolute;
	top:3.5rem;
	left:0;
	width: 100%;
	box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.45);
	z-index: 100;
}
.accordion-content > p{
	border-bottom: 1px solid #0dac67;
}
.accordion-content > p:last-of-type{
	border-bottom: none;
}
.accordion-content > p > a{
	display: block;
	padding:0.8rem 0.5rem;
}
.accordion-content > p > a:hover{
	color: #f88b43;
	background-color:#FFF;
	text-decoration: none;
}
.accordion-content > p > a::before{
	font-family: bootstrap-icons;
	content: "\F285";
	font-weight: 900;
}*/


/*ハンバーガーボタン*/
.el_humburger {
	position: fixed;
	display: block;
	right: 0;
	top: 0;
	padding-top: 18px;
	width: 70px;
	height: 60px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 20;
	cursor: pointer;
	pointer-events: auto;
	color: #000;
	text-align: center;
	background: #FFF;
}
@media (min-width: 992px) {
	.el_humburger,.navi {
		display: none;
	}
}
#menu-background{
	display:none;
	position:fixed;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background-color:rgba(0,0,0,0.7);
	z-index:2;
}
body.js_humburgerOpen #menu-background{
	display:block;
}
.el_humburger_wrapper {
	width: 20px;
	display: inline-block;
}
.el_humburger_text {
	padding-top: 2px;
}
.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
	display: none;
}
.el_humburger_text.el_humburger_text__close {
	display: none;
}
.js_humburgerOpen .el_humburger_text.el_humburger_text__close {
	display: block;
}
.el_humburger_text svg path {
	-webkit-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
	-o-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
	transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
	fill: #000; }
.js_humburgerOpen .el_humburger_text svg path {
	fill: #000;
}
.el_humburger span.el_humburger_bar {
	display: block;
	width: 100%;
	margin: 0 auto 8px;
	height: 2px;
	left: 0;
	top: 0;
	background: #000;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.el_humburger span.el_humburger_bar:last-child {
	margin-bottom: 0;
}
.js_humburgerOpen .el_humburger span.el_humburger_bar {
	background: #000;
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
	-webkit-transform: translateY(9px) rotate(-45deg);
	-ms-transform: translateY(9px) rotate(-45deg);
	transform: translateY(9px) rotate(-45deg);
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
	opacity: 0;
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
	-webkit-transform: translateY(-11px) rotate(45deg);
	-ms-transform: translateY(-11px) rotate(45deg);
	transform: translateY(-11px) rotate(45deg);
}
.el_humburger p.humburgerText{
	line-height: 10px;
}
.el_humburger p.humburgerText::after{
	content:"MENU";
	font-size:10px;
	font-weight: 700;
	color:#036eb7;
}
.js_humburgerOpen .el_humburger p.humburgerText::after{
	content:"CLOSE";
}
.el_humburgerButton.el_humburgerButton__close {
	top: 2%;
	right: 2%;
}
.el_humburgerButton__close span.el_humburger_bar {
	display: block;
	width: 35px;
	margin: 0 auto;
	height: 4px;
	background: #000;
}
.el_humburgerButton__close span.el_humburger_bar.top {
	-webkit-transform: translateY(5px) rotate(-45deg);
	-ms-transform: translateY(5px) rotate(-45deg);
	transform: translateY(5px) rotate(-45deg);
}
.el_humburgerButton__close span.el_humburger_bar.bottom {
	-webkit-transform: translateY(-6px) rotate(45deg);
	-ms-transform: translateY(-6px) rotate(45deg);
	transform: translateY(-6px) rotate(45deg);
}
.navi {
	position: fixed;
	top:0;
	right: 0;
	height: 100%;
	background-color: #036eb7;
	width: 80%;
	z-index: 3;
	padding: 20% 5% 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 600ms ease-out;
	-o-transition: all 600ms ease-out;
	transition: all 600ms ease-out;
	transform:translateZ(0) translateX(100%);
	overflow: auto;
}
.js_humburgerOpen .navi {
	transform:translateZ(0) translateX(0);
}
.navi_item {
	position:relative;
	margin-left: 0;
	font-size: 16px;
	white-space: nowrap;
	font-weight: 500;
	border-bottom: 1px solid #646464;
	padding: 1rem 0;
	color: #000;
}
.navi_item.op_innerLink {
	cursor: pointer;
}
.navi_item::before{
	content: "\F285";
	font-family: bootstrap-icons;
	font-size: 1.25rem;
	line-height: 1.3;
	vertical-align: -.125em;
	position: absolute;
	right: 0.5rem;
}
.navi_item > a{
	display: block;
}
.accordion-container .accordion-humburger-title-none,
.accordion-container .accordion-humburger-title {/*ハンバーガーメニュー内アコーディオン*/
	position: relative;
	margin: 0;
	padding: 1rem 0;
	background-color: #036eb7;
	font-size: 1.1rem;
	font-weight: normal;
	color: #FFF;
	cursor: pointer;
	border-bottom: 1px solid #eefff7;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/*height: 3.5rem;*/
	z-index: 1000;
}

.accordion-humburger-title:after {
	position: absolute;
	right: 0.2rem;
	top: 33%;
	font-family: bootstrap-icons;
	content: "\F282";
	font-weight: 900;
	font-size: 1rem;
}

.accordion-humburger-title.open:after {
	font-family: bootstrap-icons;
	content: "\F286";
	font-weight: 900;
}
.accordion-humburger-title-none:after {
	position: absolute;
	right: 0.2rem;
	top: 33%;
	font-family: bootstrap-icons;
	content: "\F285";
	font-weight: 900;
	font-size: 1rem;
}
.accordion-humburger-content{
	display: none;
	background-color:#eefff7;
	opacity: 0.95;
	width: 100%;
	box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.45);
}
.accordion-humburger-content > p{
	border-bottom: 1px solid #0dac67;
}
.accordion-humburger-content > p:last-of-type{
	border-bottom: none;
}
.accordion-humburger-content > p > a{
	display: block;
	padding:0.8rem 0.5rem;
	color: #0dac67;
}
.accordion-humburger-content > p > a::before{
	font-family: bootstrap-icons;
	content: "\F285";
	font-weight: 900;
}
.humburger-tel img{
	width: 75%;
}
@media (min-width: 576px) {
	.humburger-tel img{
		width: 100%;
	}
}

/*フッター*/
footer{
	border-top:6px solid #E772A7;
}
.footerNavi a::before{
	content: "\F285";
	font-family: bootstrap-icons;
	font-size: 1.1rem;
	line-height: 1.3;
	vertical-align: -.125em;
}
.footerNavi a{
	color: #717071;
	font-weight: 600;
}
.footerNavi a:hover{
	text-decoration: none;
	color: #036eb7;
}









/*見出し*/
/*.topTitle{
	text-align:center;
	font-size:28px;
	color: #E83621;
}*/
.h1Title {
	position: relative;
	padding: 0.3em 0.5em;
	color:#036eb7;
	font-size:1rem;
}
.h1Title > h1 {
	font-size:1.9rem;
}
.h1Title::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	content: '';
	border-radius: 2px;
	background-image: -webkit-gradient(linear, right top, left top, from(#91c9d6), to(#036eb7));
	background-image: -webkit-linear-gradient(right, #91c9d6 0%, #036eb7 100%);
	background-image: linear-gradient(to left, #91c9d6 0%, #036eb7 100%);
}
@media (min-width: 768px) {
	.h1Title > h1 {
		font-size:2.2rem;
	}
}

.topH2Title{
	color:#036eb7;
	text-align: center;
	font-size:2.2rem;
}
@media (min-width: 768px) {
	.topH2Title{
		font-size:2.8rem;
	}
}
h2.title {
	font-size:1.5rem;
	line-height: 2.2rem;
	border-bottom: solid 3px #00a199;
	position: relative;
}

h2.title:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #00633d;
	bottom: -3px;
	width: 2rem;
}
h3.title {
	font-size:1.3rem;
	line-height: 2rem;
	border-left: 6px double #E772A7;
	padding: 0 0.6rem
}
h3.titleGreen {
	font-size:1.3rem;
	line-height: 2rem;
	border-left: 6px double #0dac67;
	padding: 0 0.6rem
}
h4.title {
	font-size:1.1rem;
	line-height: 1.6rem;
	border-bottom: 3px solid #036eb7;
	padding: 0 0.6rem;
	display: inline-block;
}


/*パンくずナビ*/
.pannavi{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	font-size:12px;
	margin-top: .4rem;
	color: #646464;
	padding-left: 0;
	margin-bottom: 0;
}
.pannavi a{
	color: #376FD1;
}
.pannavi a:hover{
	color: #376FD1;
}
.pannavi li:first-of-type::before{
	display: inline-block;
	width: 16px;
	height: 16px;
	vertical-align: -.125em;
	content: "";
	background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23376FD1' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='m8 3.293 6 6V13.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 13.5V9.293l6-6zm5-.793V6l-2-2V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5z'/><path fill-rule='evenodd' d='M7.293 1.5a1 1 0 0 1 1.414 0l6.647 6.646a.5.5 0 0 1-.708.708L8 2.207 1.354 8.854a.5.5 0 1 1-.708-.708L7.293 1.5z'/></svg>"); /* dot */
	background-repeat: no-repeat;
	background-size: 1rem 1rem;
}
.pannavi li::after{
	content: "＞";
	padding-right: 0.5rem;
	padding-left:0.5rem;
}
.pannavi li:last-child::after{
	content: none;
}




