@charset "UTF-8";
/*******************
Font
*******************/
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: 100;
	src: url("../fonts/NotoSansCJKjp-Thin.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Thin.woff") format("woff"), url("../fonts/NotoSansCJKjp-Thin.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Thin.eot") format("embedded-opentype");
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: 200;
	src: url("../fonts/NotoSansCJKjp-Light.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Light.woff") format("woff"), url("../fonts/NotoSansCJKjp-Light.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Light.eot") format("embedded-opentype");
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: 300;
	src: url("../fonts/NotoSansCJKjp-DemiLight.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-DemiLight.woff") format("woff"), url("../fonts/NotoSansCJKjp-DemiLight.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-DemiLight.eot") format("embedded-opentype");
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Regular.woff") format("woff"), url("../fonts/NotoSansCJKjp-Regular.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Regular.eot") format("embedded-opentype");
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: 500;
	src: url("../fonts/NotoSansCJKjp-Medium.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Medium.woff") format("woff"), url("../fonts/NotoSansCJKjp-Medium.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Medium.eot") format("embedded-opentype");
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: 700;
	src: url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Bold.woff") format("woff"), url("../fonts/NotoSansCJKjp-Bold.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Bold.eot") format("embedded-opentype");
}
@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: 900;
	src: url("../fonts/NotoSansCJKjp-Black.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Black.woff") format("woff"), url("../fonts/NotoSansCJKjp-Black.ttf") format("truetype"), url("../fonts/NotoSansCJKjp-Black.eot") format("embedded-opentype");
}
/*******************
Common
*******************/
img {
	height: auto;
	max-width: 100%;
}

html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}
html * {
	box-sizing: border-box;
}

input {
	-moz-appearance: none;
	-webkit-appearance: none;
	outline: none;
	box-shadow: none;
	border: none;
}

body {
	font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	letter-spacing: .05em;
	background: #FFF;
	font-size: 1.3rem;
}

h2 {
	font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 5.5rem;
	font-weight: 900;
	margin-bottom: 96px;
}

h4 {
	font-size: 2.8rem;
	font-weight: 900;
	margin-bottom: 27px;
}

a {
	text-decoration: none;
	color: inherit;
}

sup {
	font-size: 1.2rem;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}

.flex {
	display: flex;
}

.flex--space {
	justify-content: space-between;
}

.flex--item-center {
	align-items: center;
}

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

.flex--center {
	justify-content: center;
}

a, button, input[type=submit] {
	cursor: pointer;
	outline: none;
	transition: .3s ease;
}
a:hover, button:hover, input[type=submit]:hover {
	opacity: .8;
}

/*-----------------
ヘッダー
------------------*/
.header {
	position: fixed;
	width: 100%;
	height: 100px;
	background: #FFF;
	border-bottom: 3px solid #0D6C8B;
	z-index: 800;
}

.header .logo img {
	width: 285px;
	margin-top: 25px;
	margin-left: 20px;
}
.header .menu-btn {
	position: fixed;
	right: 29px;
	top: 8px;
	width: 83px;
	height: 83px;
	background: url("../img/common/btn_menu@2x.png");
	background-repeat: no-repeat;
	background-size: 83px;
}

.modal-container {
	width: 100%;
	background: #00ABE0;
	border-bottom: 3px solid #0D6C8B;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 900;
	display: none;
}

.modal-container .menu-btn-close {
	position: absolute;
	right: 29px;
	top: 8px;
	width: 83px;
	height: 83px;
	background: url("../img/common/btn_close@2x.png");
	background-repeat: no-repeat;
	background-size: 83px;
}

.modal-container .modal-nav {
	background: #FFF;
	border-radius: 10px;
	margin-top: 118px;
	margin-bottom: 75px;
	padding: 5% 5% 5% 5%;
}

.modal-container .modal-nav .main-nav {
	display: flex;
	width: 100%;
}

.modal-container .modal-nav .main-nav li {
	width: 30%;
	font-size: 2.3rem;
	font-weight: 900;
	font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin-bottom: 34px;
	position: relative;
}

.modal-container .modal-nav .main-nav li .sub-nav {
	margin-top: 19px;
	border-top: solid 3px #DFE8EF;
	padding-top: 23px;
}

.modal-container .modal-nav .main-nav li .sub-nav li {
	width: 100%;
	font-size: 1.5rem;
	margin-bottom: 1em;
	border-radius: 0;
}

.modal-container .modal-nav .modal-nav-bottom .sub-nav{
	line-height: 2;
	font-weight: bold;
	padding-left: 2em;
	text-indent: -2em
}

.modal-container .modal-nav .modal-nav-bottom .sub-nav li a:before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 10px;
	background-image: url("../img/common/arrow@2x.png");
	background-repeat: no-repeat;
	background-size: 8px;
	margin-right: 12px;
	margin-left: 6px;
}

.modal-container .modal-bottom-links {
	text-align: center;
	color: #FFF;
	font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 46px 0;
}

.modal-container .modal-bottom-links a {
	margin: 0 14px;
}

.modal-nav .modal__nav-list{
	width: 100%;
}

.modal__nav-list .modal__nav-col .modal-nav__ttl {
	font-weight: bold;
	font-size: 1.5rem;
	padding-bottom: 1em;
	line-height: 1;
}

/*-----------------------------------------
パンくずリスト
-------------------------------------------*/
.bread-box {
	width: 100%;
	margin-bottom: 60px;
	background-color: #f0f4f7;
	font-weight: bold;
}
	
.bread-box ul {
	display: flex;
	flex-wrap: wrap;
	padding-left: 32px;
	align-items: center;
}

.bread-box ul li {
	position: relative;
	display: flex;
	display: -webkit-flex;
	align-items: center;
}
.bread-box ul li:not(:last-child) {
	margin-right: 1em;
}
.bread-box ul li:first-child {
	padding-left: 0;
	transform: translateY(2px);
}
.bread-box ul li:first-child:before {
	content: none;
}
.bread-box ul li:before {
	width: 8px;
	height: 10px;
	content: "";
	background: url("../img/common/arrow@2x.png") no-repeat center bottom;
	background-size: contain;
	margin-right: 1em;
	display: inline-block;
}

.wrapper {
	padding-top: 100px;
	margin-bottom: 70px;
}

.wrapper .blue-button {
	display: inline-block;
	background: #00ABE0;
	color: #FFF;
	width: 400px;
	text-align: center;
	height: 80px;
	line-height: 80px;
	border-radius: 40px;
	text-decoration: none;
	font-size: 1.8rem;
	font-weight: bold;
}

.wrapper .blue-button:before {
	display: inline-block;
	content: "";
	background: url("../img/common/arrow-yellow@2x.png");
	background-size: 10.5px;
	background-repeat: no-repeat;
	width: 11px;
	height: 13px;
	margin-right: 7px;
}

.wrapper .blue-button:after {
	content: "";
	font-family: Verdana, Arial, sans-serif;
}
.wrapper .large-buttons {
	display: flex;
	justify-content: center;
	margin-bottom: 80px;
	font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.wrapper .large-buttons a {
	text-decoration: none;
	flex: 0 1 464px;
	line-height: 93px;
	background: url("../img/common/lrg-btn-bg@2x.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin: 0 7.5px;
	color: #FFF;
	font-size: 1.8rem;
	text-align: center;
	font-weight: bold;
	position: relative;
}

.wrapper .large-buttons a:before {
	display: inline-block;
	content: "";
	background: url("../img/common/arrow-yellow@2x.png");
	background-size: 10.5px;
	background-repeat: no-repeat;
	width: 11px;
	height: 13px;
	margin-right: 7px;
}

.wrapper .large-buttons a:after {
	content: "";
	font-family: Verdana, Arial, sans-serif;
}

.main-text p {
	margin-bottom: 1.5em;
	color: #3B4043;
}
.main-text a {
	color: #4FA9DD;
	text-decoration: underline;
}
.main-text .news-item a {
	color: #3B4043;
	text-decoration: underline;
}
.main-text .bold-txt {
	font-weight: bold;
}
.main-text h6 {
	font-weight: bold;
	margin-bottom: 0;
	font-size: 1.6rem;
}

.main-text section {
	padding-bottom: 90px;
	border-bottom: 2px solid #dfe8ef;
	margin-bottom: 78px;
}

.main-text section:last-child {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}
.main-text h3 {
	font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 32px;
	font-weight: 900;
	margin-bottom: 26px;
	position: relative;
	padding-left: 26px;
}

.main-text h3:before {
	content: "";
	display: inline-block;
	width: 6px;
	background: #00ABE0;
	border-radius: 3px;
	position: absolute;
	left: 0;
	top: 50%;
	height: 80%;
	transform: translateY(-50%);
}

.back-to-top-container {
	text-align: right;
}
.back-to-top-container .back-to-top {
	display: inline-block;
	background-color: #00ABE0;
	background-image: url("../img/common/top-arrow@2x.png");
	background-repeat: no-repeat;
	background-size: 14px;
	background-position: center center;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	margin-bottom: 37px;
}

.footer-container {
	width: 100%;
	background-color: #00ABE0;
	padding: 30px 0;
	color: #FFF;
}

.footer-container .footer {
	font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	display: flex;
	justify-content: space-between;
	font-size: 1.3rem;
	font-weight: bold;
}

.footer-container .footer a {
	display: inline-block;
	margin-right: 16px;
}
.footer-container .footer a:after {
	display: inline-block;
	content: "|";
	margin-left: 16px;
}
.footer-container .footer a:last-child:after {
	content: "";
}

.footer-container .footer .copyright {
	font-family: "Roboto", sans-serif;
}

@media (min-width: 769px) {
	body {
		font-size: 1.4rem;
	}
	.inner {
		width: 86.11111%;
		max-width: 1240px;
		margin: auto;
	}
	.inner-1320 {
		width: 91.66667%;
		max-width: 1320px;
		margin: auto;
	}
	.sp_only {
		display: none !important;
	}

	.flex--pc {
		display: flex;
	}
	.modal-container .modal-nav .main-nav li.navcustom{
		margin-bottom: 65px;
	}
	.modal-area .modal__nav-list .modal-nav .modal-nav__ttl a {
	  display: flex;
	  align-items: center;
	  padding-left: 8px;
	}
	.modal__nav-list .modal__nav-col .modal-nav__ttl a:before {
		content: "";
		display: inline-block;
		width: 18px;
		height: 18px;
		border-radius: 9px;
		background-color: #00ABE0;
		background-image: url("../img/common/arrow-white@2x.png");
		background-repeat: no-repeat;
		background-size: 7px;
		background-position: center center;
		margin-right: 10px;
	}
	.modal-container .modal-bottom-links a:before {
		content: "";
		display: inline-block;
		width: 8px;
		height: 10px;
		background-image: url("../img/common/arrow-white@2x.png");
		background-repeat: no-repeat;
		background-size: 8px;
		margin-right: 6px;
	}

	.modal__nav-list .modal__nav-col .modal-nav__ttl {
	padding-left: 1.2em;
	text-indent: -1.2em
	}
	.bread-box ul {
		height: 80px;
	}
	.modal-nav .modal__nav-list .modal__nav-col {
		width: 27.08333%;
	}
	.modal__nav-list .modal__nav-col .modal-nav-bottom:not(:last-child) {
	  margin-bottom: 48px;
	}
	.modal__nav-list .modal__nav-col .modal-nav-bottom2:not(:last-child) {
		margin-bottom: 0px;
	}
	.modal__nav-list .modal__nav-col .modal-nav-bottom .modal-nav__ttl {
		font-size: 2.2rem;
		margin-bottom: 1em;
		padding-bottom: 17px;
		border-bottom: solid 3px #dfe8ef;
		font-weight: bold;
	}
	.modal__nav-list .modal__nav-col .modal-nav-bottom2 .modal-nav__ttl {
		font-size: 2.2rem;
		margin-bottom: 1em;
		padding-bottom: 17px;
		font-weight: bold;
	}
}

@media (max-width: 768px) {
	h2 {
		font-size: 3rem;
		margin-bottom: 42px;
	}
	h4 {
		font-size: 1.8rem;
		margin-bottom: 9px;
	}
	.inner--sp {
		padding-left: 15px;
		padding-right: 15px;
	}

	.pc_only {
		display: none !important;
	}
	.header {
		border-bottom: 2px solid #0D6C8B;
		height: 60px;
	}
	.header .logo img {
		margin-top: 15px;
		margin-left: 5px;
		width: 174px;
	}
	.header .menu-btn {
		width: 73px;
		height: 43px;
		background: url("../img/common/btn_menu-sp@2x.png");
		background-repeat: no-repeat;
		background-size: 73px;
		right: 10px;
		top: 10px;
	}
	.modal-container {
		border-bottom: 2px solid #0D6C8B;
	}
	.modal-container .menu-btn-close {
		width: 73px;
		height: 43px;
		background: url("../img/common/btn_close-sp@2x.png");
		background-repeat: no-repeat;
		background-size: 73px;
		right: 10px;
		top: 10px;
	}
	.modal-container .modal-nav {
		margin-bottom: 25px;
	}
	.modal-container .modal-nav {
		margin-top: 68px;
		padding: 0;
		background: none;
		min-width: auto;
	}
	.modal-container .modal-nav .main-nav {
		height: auto;
		flex-flow: column nowrap;
	}
		.modal-container .modal-nav .main-nav li {
		width: 100%;
		background: #FFF;
		border-radius: 10px;
		margin-bottom: 2px;
		font-size: 1.5rem;
		padding: 18px 20px;
	}
	.modal-container .modal-nav .main-nav li .main-nav-link {
		display: block;
	}
	.modal-container .modal-nav .main-nav li .main-nav-link:before {
		position: absolute;
		right: 0px;
		margin-right: 18px;
		top: 22px;
	}
	.modal-container .modal-nav .main-nav li .sub-nav {
		border-top: none;
		margin-top: 0;
		padding-top: 0;
		display: none;
	}
	.modal-container .modal-nav .main-nav li .sub-nav li {
		border-top: solid 2px #DFE8EF;
		margin-bottom: 0;
		padding: 0;
		padding-left: 18px;
		padding-top: 18px;
		margin-top: 18px;
	}
	.modal-container .modal-nav .main-nav li .sub-nav li a {
		display: block;
	}
	.modal-container .modal-nav .modal-nav-bottom .sub-nav li a{
		padding-left: 1em;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-items: center;
		padding-bottom: 1em;
		padding-right: .3em;
	}
	.modal-container .modal-nav .modal-nav-bottom .sub-nav li a:after{
		content: "";
		display: block;
		width: 7px;
		height: 8px;
		background: url(../img/common/arrow@2x.png) no-repeat center bottom;
		background-size: 100%;
	}
	.modal-container .modal-nav .modal-nav-bottom .sub-nav li a:before {
		position: absolute;
		right: 0;
		margin-right: 6px;
		top: 24px;
	}
	.modal-container .modal-bottom-links {
		font-size: 1.1rem;
		margin: 0;
		margin-top: 17px;
	}
	.modal-container .modal-bottom-links a {
		display: block;
		line-height: 40px;
		border-top: solid 2px #2DB9EB;
		margin: 0;
	}
	.modal-nav .modal__nav-list{
		width: calc(100% - 30px);
		margin: auto;
	}
	.modal__nav-col .modal-nav__ttl .modal-nav--show {
		display: block;
		width: 14px;
		height: 14px;
		min-width: 14px;
		background: url(../img/common/icon_arrow_open_sp.png) no-repeat;
		background-size: 120%;
	}
	.modal__nav-col .modal-nav-bottom2 .modal-nav__ttl .modal-nav--show {
		display: block;
		width: 14px;
		height: 14px;
		min-width: 14px;
		background: none;
		background-size: 120%;
	}
	.bread-box {
		margin-bottom: 8.4%;
		font-size: 1.3rem;
		font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		font-weight: bold;
	}
	.bread-box ul {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 5%;
	}
	.wrapper {
		padding-top: 60px;
		margin-bottom: 60px;
	}
	.wrapper .blue-button {
		width: 100%;
		max-width: 270px;
		height: 54px;
		line-height: 54px;
		font-size: 1.3rem;
		margin: 0 auto;
	}
	.wrapper .blue-button:before {
		width: 7px;
		height: 8px;
		background-size: 7px;
	}
	.wrapper .large-buttons {
		justify-content: center;
		margin-bottom: 43px;
	}
	.wrapper .large-buttons a {
		flex: 0 1 173px;
		font-size: 1.1rem;
		line-height: 1.5rem;
		height: 50px;
		margin: 0;
		background: url("../img/common/lrg-btn-bg_sp@2x.png");
		background-repeat: no-repeat;
		background-size: 100% 100%;
		padding: 11px 0;
		margin-right: 10px;
	}
	.wrapper .large-buttons a:last-child {
		margin-right: 0;
	}
	.wrapper .large-buttons a:before {
		position: absolute;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
		width: 6px;
		height: 7px;
		background-size: 6px;
	}
	.main-text h6 {
		font-size: 1.3rem;
	}
	.main-text section {
		padding-bottom: 55px;
		margin-bottom: 70px;
	}
	.footer-container {
		padding: 0;
	}
	.main-text h3 {
		font-size: 21px;
		padding-left: 15px;
	}
	.main-text h3:before {
		width: 4px;
	}
	.back-to-top-container .back-to-top {
		width: 45px;
		height: 45px;
		background-size: 10px;
		margin-bottom: 12px;
	}
	.footer-container .footer {
		display: block;
		text-align: center;
		font-size: 1rem;
	}
	.footer-container .footer a {
		display: block;
		line-height: 40px;
		border-bottom: solid 2px #2DB9EB;
		margin-right: 0;
		font-size: 1.1rem;
		line-height: 4rem;
	}
	.footer-container .footer a:after {
		display: none;
	}
	.footer-container .footer .copyright {
		padding: 29px 5px 18px;
	}
	.modal__nav-list .modal__nav-col .modal-nav-bottom {
		background: white;
		border-radius: 10px;
		padding-left: 25px;
		padding-right: 15px;
		margin-bottom: 2px;
	}
	.modal__nav-list .modal__nav-col .modal-nav-bottom2 {
		background: white;
		border-radius: 10px;
		padding-left: 25px;
		padding-right: 15px;
		margin-bottom: 2px;
	}
	.modal__nav-list .modal__nav-col .modal-nav__ttl {
		padding-top: 1em;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
	}
	.modal__nav-list .modal__nav-col .modal-nav-bottom dd{
		display: none;
	}
	.modal-nav__ttl a:not(.modal-nav--show) {
		display: block;
		width: calc(100% - 14px);
	}
}

@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, a, button, input[type=submit] {
		/* IE11 にのみ適用される */
		transition: 0s;
	}
}

/*　メニューボタン内調整要 2021/6/16 追記　*/
@media screen and (min-width: 1170px){   
  .pc-antisocialforces { display:inline; }
  .sp-antisocialforces { display:none; }
}
@media screen and (max-width: 1170px){   
  .pc-antisocialforces { display:none; }
  .sp-antisocialforces { display:inline; }
}

@media (min-width: 769px) and (max-width: 1024px) {
	.wrapper .large-buttons a {
		font-size: 1.6rem;
	}
}
