@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;700&display=swap');
/* CSS Document */

html {
	font-size: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-y: scroll;
	/* All browsers without overlaying scrollbars */
	-webkit-text-size-adjust: 100%;
	/* iOS 8+ */
	scroll-behavior: smooth;
	scroll-padding-top: 135px;
}

html {
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

body {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic Pro", Meiryo, Arial, sans-serif;
	font-size: 1.6rem;
	line-height: 1.7;
	color: #666;
	background-color: #fff;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, 'MS PGothic', arial, helvetica, sans-serif;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
}

@media only screen and (max-width: 559px) {
	body {
		font-size: 1.3rem;
	}
}

ol,
ul {
	list-style: none;
}

*,
::before,
::after {
	background-repeat: no-repeat;
	/* Set `background-repeat: no-repeat` to all elements and pseudo elements */
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

::before,
::after {
	text-decoration: inherit;
	/* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
	vertical-align: inherit;
}

* {
	padding: 0;
	/* Reset `padding` and `margin` of all elements */
	margin: 0;
	background: transparent;
	border: 0;
	outline: 0;
}


:root {
	--kblue: #00a8a9;
	--kblue-deep: #028486;
	--kblue-exdeep: #007a7b;
	--kblue-light: #bfe9e9;
	--kblue-exrlight: #cceeee;
	--gray-line: #dedede;
	--gray-bg: #f5f5f5;
	--gray-exlight: #f5f5f5;
	--gray-light: #ddd;
	--gray-medium: #ccc;
	--gray-deep: #666;
}



/* # =================================================================
   # General elements
   # ================================================================= */
h1,
h2,
h3,
h4,
h5 {
	font-weight: normal;
}

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

a {
	background-color: transparent;
	/* Remove the gray background on active links in IE 10 */
	-webkit-text-decoration-skip: objects;
	/* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
	outline-width: 0;
	/* Remove the outline when hovering in all browsers */
}

b,
strong {
	font-weight: bolder;
	/* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	width: 100%;
	height: auto;
	line-height: 1;
	vertical-align: top;
	border-style: none;
	/* Remove border when inside `a` element in IE 8/9/10 */
}

/* ===== Link Color ===== */
a {
	cursor: pointer;
	-webkit-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

a:link {
	color: #008486;
	text-decoration: none;
}

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

a:hover,
a:focus {
	color: #00a8a9;
	text-decoration: none;
}

a:active {
	color: #008486;
	text-decoration: none;
}

a,
img,
input,
svg,
*::before,
*::after {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

a:hover img,
a:hover input {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

/*a[target="_blank"]:after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 2rem;
  vertical-align: middle;
  background:url("../images/common/icon_window.png")no-repeat center;
-webkit-background-size: 2rem;
  background-size: 2rem;
}
.Button a[target="_blank"]:after{
  content: "";
  display: none;
}*/

a[href$=".pdf"]:after {
	content: "";
	display: inline-block;
	width: 3rem;
	height: 2rem;
	vertical-align: middle;
	background: url("../images/common/icon_pdf.png")no-repeat center;
	-webkit-background-size: 2rem;
	background-size: 2rem;
}

a[href$=".pdf"][target="_blank"]:after {
	content: "";
	display: inline-block;
	width: 3rem;
	height: 2rem;
	vertical-align: middle;
	background: url("../images/common/icon_pdf.png")no-repeat center;
	-webkit-background-size: 2rem;
	background-size: 2rem;
}

/* ===== Link ===== */
.Link {
	position: relative;
	word-break: break-word;
	font-weight: normal;
	line-height: 1.7;
	padding-left: 2rem;
}

.Link::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 45%;
	left: 0rem;

	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);

	width: 0.8rem;
	height: 0.8rem;
	margin: 0;
	border-top: 2px solid #00a8a9;
	border-right: 2px solid #00a8a9;
	transform: rotate(45deg);
}

@media only screen and (max-width: 559px) {
	.Link::before {
		top: 45%;
		width: 0.6rem;
		height: 0.6rem;
		margin: 0;
		border-top: 1px solid #00a8a9;
		border-right: 1px solid #00a8a9;
		transform: rotate(45deg);
	}
}

.Link_after {
	position: relative;
	word-break: break-word;
	font-weight: normal;
	line-height: 1.7;
	padding-right: 2rem;
}

.Link_after::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 45%;
	right: 0rem;

	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);

	width: 0.8rem;
	height: 0.8rem;
	margin: 0;
	border-top: 2px solid #00a8a9;
	border-right: 2px solid #00a8a9;
	transform: rotate(45deg);
}

@media only screen and (max-width: 559px) {
	.Link_after::before {
		top: 45%;
		width: 0.6rem;
		height: 0.6rem;
		margin: 0;
		border-top: 1px solid #00a8a9;
		border-right: 1px solid #00a8a9;
		transform: rotate(45deg);
	}
}

.Link_after.-white::after {
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
}

@media only screen and (max-width: 559px) {
	.Link_after.-white::before {
		border-top: 1px solid #FFF;
		border-right: 1px solid #FFF;
	}
}

.Link_block {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
}

.Link_block:hover {
	opacity: 0.8;
}


/* ===== Button ===== */
.Button {
	position: relative;
	background-color: var(--kblue);
	-webkit-transition: background-color .2s ease-in-out;
	transition: background-color .2s ease-in-out;

	display: inline-block;
}

.Button::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 45%;
	right: 2rem;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);

	width: 0.8rem;
	height: 0.8rem;
	margin: 0;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: rotate(45deg);

	z-index: 1;
}

@media only screen and (max-width: 559px) {
	.Button::before {
		top: 45%;
		right: 1.5rem;

		width: 0.6rem;
		height: 0.6rem;
		margin: 0;
		border-top: 1px solid #FFF;
		border-right: 1px solid #FFF;
		transform: rotate(45deg);

		z-index: 1;
	}
}

.Button.-Full {
	width: 100%;
	display: block;
}

.Button.-Small::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 45%;
	right: 1rem;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);

	width: 0.6rem;
	height: 0.6rem;
	margin: 0;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	transform: rotate(45deg);

	z-index: 1;
}

.Button:hover {
	/*border: 1px solid #00a8a9;*/
	background-color: #33b9ba;
}

a::hover .Button {
	/*border: 1px solid #00a8a9;*/
	background-color: #33b9ba;
}

/*.Button.-Deep {
  position: relative;
  background-color: var(--kblue-deep);
  
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	}
	.Button.-Deep:hover {
	  opacity: 0.8;
	  
	}*/

/*.Button.-Inline {
  display: inline-block;
}*/
.Button.-center {
	margin: 0 auto;
	text-align: center;
}

.Button.-Deep {
	position: relative;
	background-color: var(--kblue-exdeep);

	-webkit-transition: background-color .2s ease-in-out;
	transition: background-color .2s ease-in-out;
}

.Button.-Deep:hover {
	background-color: #028b8e;
}

.Button.-whiteline {
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	border: 2px solid #FFF;
}

.Button.-whiteline:hover {
	opacity: 0.8;
}

.Button.-whiteline {
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	border: 2px solid;
	border-color: #FFF;
}

@media only screen and (max-width: 559px) {
	.Button.-whiteline {
		border: 1px solid #FFF;
	}
}

.Button.-whiteline:hover {
	opacity: 0.8;
}

.Button.-blueline {
	background: #FFF;
	border: 2px solid #00a8a9;
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
}

@media only screen and (max-width: 559px) {
	.Button.-blueline {
		border: 1px solid #00a8a9;
	}
}

.Button.-blueline:hover {
	opacity: 0.8;
}

.Button.-blueline::before {
	content: none;
}

/* .Button.-blueline::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 45%;
	right: 1rem;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);

	width: 0.8rem;
	height: 0.8rem;
	margin: 0;
	border-top: 2px solid;
	border-right: 2px solid;
	border-color: #00a8a9;
	transform: rotate(45deg);
} */

.Button.-bluelinedeep {
	background: rgba(255, 255, 255, 0);
	border: 1px solid #007a7b;
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
}

.Button.-bluelinedeep:hover {
	opacity: 0.8;
}

.Button.-bluelinedeep::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 45%;
	right: 1rem;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);

	width: 0.8rem;
	height: 0.8rem;
	margin: 0;
	border-top: 2px solid;
	border-right: 2px solid;
	border-color: #007a7b;
	transform: rotate(45deg);
}

@media only screen and (max-width: 559px) {
	
	.Button.-blueline::before {
		content: none;
	}
/* 	
	.Button.-blueline::before {
		right: 1.5rem;
		width: 0.6rem;
		height: 0.6rem;
		border-top: 1px solid;
		border-right: 1px solid;
		border-color: #00a8a9;
	} */
	.Button.-bluelinedeep::before {
		right: 1.5rem;
		width: 0.6rem;
		height: 0.6rem;
		border-top: 1px solid;
		border-right: 1px solid;
		border-color: #007a7b;
	}
}

.Button.-BlueVar1 {
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	border: 1px solid #FFF;
	background: #0f93c1;
}

.Button.-BlueVar2 {
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	border: 1px solid #FFF;
	background: #1aa682;
}

.Button.-BlueVar1:hover,
.Button.-BlueVar2:hover {
	opacity: 0.8;
}

.Button.-Current {
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	background: #14cbcc;
}

.Button.-Current:hover {
	opacity: 0.8;
}

.Button.-Feature {
	background-color: #04cd8c;
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
}

.Button.-Feature:hover {
	opacity: 0.8;
}

.Button.-widthSmall {
	width: 250px;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.Button.-widthSmall {
		width: 200px;
	}
}

@media only screen and (max-width: 559px) {
	.Button.-widthSmall {
		width: auto;
	}
}

.Button__inner,
a.Button__inner {
	display: block;
	width: 100%;
	/*padding: 1.5rem 2.5rem;*/
	padding: 1rem 4rem 1rem 2.5rem;
	text-decoration: none;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {

	.Button__inner,
	a.Button__inner {
		padding: 0.8rem 3em 0.8rem 2rem;
		text-decoration: none;
	}
}

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

	.Button__inner,
	a.Button__inner {
		padding: 0.7rem 2.5rem 0.7rem 2rem;
		text-decoration: none;
	}
}

.Button.-Medium .Button__inner,
.Button.-Large .Button__inner {
	padding: 2rem 3.5rem 2rem 2rem;
}

.-blueline .Button__inner {
	pointer-events: none;
}

.-blueline .Button__inner:hover {
	opacity: 1;
}

.CardList .Button:before {
	content: none;
}

.CardList .Button__inner {
	pointer-events: none;
}

.CardList .Button:hover {
	background-color: var(--kblue);
}

@media only screen and (min-width: 560px) and (max-width: 959px) {

	.Button.-Medium .Button__inner,
	.Button.-Large .Button__inner {
		padding: 1.5rem 3.5rem 1.5rem 2rem;
	}
}

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

	.Button.-Medium .Button__inner,
	.Button.-Large .Button__inner {
		padding: 1.2rem 2.5rem 1.2rem 1.5rem;
	}
}

.Button.-Small .Button__inner {
	padding: 0.3rem 2rem 0.5rem 1rem;
}


.Button__text {
	position: relative;
	display: inline-block;
	color: #fff;
	font-weight: 400;
	line-height: 1.4;
	vertical-align: middle;
}

.Button.-center .Button__text {
	/*width:100%;*/
	display: inline;
	text-align: center;
}

.Button.-Medium .Button__text {
	font-size: 1.8rem;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.Button.-Medium .Button__text {
		font-size: 1.6rem;
	}
}

@media only screen and (max-width: 559px) {
	.Button.-Medium .Button__text {
		font-size: 1.6rem;
	}
}

.Button.-Large .Button__text {
	font-size: 2.4rem;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.Button.-Large .Button__text {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 559px) {
	.Button.-Large .Button__text {
		font-size: 1.8rem;
	}
}

.Button.-Small .Button__text {
	font-size: 1.2rem;
	line-height: 1.2rem;
}

.Button.-whiteline .Button__text {
	color: #FFF;
}

.Button.-blueline .Button__text {
	color: var(--kblue);
}

.Button.-bluelinedeep .Button__text {
	color: var(--kblue-deep);
}

.Button__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
}

.Button__wrap.-fRight {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.Button__wrap.-fCenter {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}


.Button__List,
.Button__List.-column2 {
	width: 100%;
	/*margin: 5rem auto 0 auto;*/
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	/* justify-content: flex-start; */
	justify-content: center;
	align-items: stretch;
	align-content: flex-start;
	gap: 2rem;

	margin-bottom: 1.5em;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {

	.Button__List,
	.Button__List.-column2 {
		gap: 1.5rem;
	}
}

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

	.Button__List,
	.Button__List.-column2 {
		gap: 1rem;
	}
}

.Button__List .ButtonList__item {
	width: calc((100% - 4rem)/3);
}

.Button__List.-column2 .ButtonList__item {
	width: calc((100% - 2rem)/2);
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.Button__List .ButtonList__item {
		width: calc((100% - 2rem)/2);
	}
}

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

	.Button__List .ButtonList__item,
	.Button__List.-column2 .ButtonList__item {
		width: 100%;
	}
}

.Button__List .ButtonList__item .Button {
	width: 100%;
	height: 100%;
	margin: 0;
}

.ButtonList_relate {
	width: 100%;
	border-top: 1px solid #dedede;
	margin: 50px 0 0 0;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.ButtonList_relate {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 559px) {
	.ButtonList_relate {
		margin-top: 20px;
	}
}

.ButtonList_relate .Button__List {
	width: 100%;
	padding: 3rem;
	margin: 5rem auto 0 auto;
	background: var(--gray-bg);
	border: 1px solid #dedede;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.ButtonList_relate .Button__List {
		padding: 2rem;
		margin-top: 30px;
	}
}

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

	.ButtonList_relate .Button__List {
		padding: 2rem;
		margin-top: 20px;
	}
}

/* ===== SiteContent ===== */

.sp_obj {
	display: none;
}

.pc_obj {}

@media only screen and (max-width: 559px) {
	.sp_obj {
		display: block;
	}

	.pc_obj {
		display: none;
	}
}

.small {
	font-size: 80%;
	/* Set font-size to 80% in `small` elements */
}

.Text {
	margin: 1.5em 0 0 0;
	line-height: 1.8;
}

.Text.-small {
	font-size: 1.4rem;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.Text.-small {
		font-size: 1.3rem;
	}
}

@media only screen and (max-width: 559px) {
	.Text.-small {
		font-size: 1.2rem;
	}
}

.Text.-right {
	text-align: right;
}

.Text.-alert {
	color: #ff6600;
}

.Text.-note {
	font-size: 1.4rem;
}

.Text__eng {
	font-family: 'Roboto', sans-serif;
}

.Text__serif {
	font-family: 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', serif, 'YuMincho, "Yu Mincho';
}

.Text__italic {
	transform: skewX(-15deg);
}

.Text__center {
	text-align: center;
}

h2.heading {
	color: #333;
	font-size: 2.4rem;
	line-height: 1.5;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	h2.heading {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 559px) {
	h2.heading {
		font-size: 1.8rem;
	}
}

h3,
h3.heading {
	color: #333;
	font-size: 1.8rem;
	line-height: 1.5;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {

	h3,
	h3.heading {
		font-size: 1.6rem;
	}
}

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

	h3,
	h3.heading {
		font-size: 1.4rem;
	}
}

.TextBold {
	font-weight: bolder;
}


#SiteWrap {
	position: relative;
	width: 100%;
	height: auto;
	min-height: 100vh;
	margin: 0 auto;

	display: flex;
	flex-direction: column;
}

#SiteWrap__header,
#SiteWrap__footer {
	flex-grow: 0;
}

#SiteWrap__body {
	position: relative;
	padding-bottom: 140px;
	padding-top: 132px;
	flex-grow: 1;

}

@media only screen and (max-width: 559px) {
	#SiteWrap__body {
		padding-top: 0;
		padding-bottom: 30px;
	}
}

.SiteContent__sectionInner {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}

@media print,
screen and (min-width: 960px) {
	.SiteContent__sectionInner {
		padding: 0 100px;
	}
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.SiteContent__sectionInner {
		padding: 0 50px;
	}
}

@media only screen and (max-width: 559px) {
	.SiteContent__sectionInner {
		padding: 0 20px;
	}
}

#Main__Content {
	margin: 0 auto;
	padding: 0;
}

/* ===== Bredcrumbs ===== */
#breadcrumbs {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 10px 0 10px 50px;
	z-index: 3;
	/* IE11 */
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	#breadcrumbs {
		padding: 10px 0 10px 50px;
	}
}

@media only screen and (max-width: 559px) {
	#breadcrumbs {
		padding: 10px 0 10px 20px;
	}
}

#breadcrumbs span {
	position: relative;
	display: inline;
	letter-spacing: -.3em;
	list-style-type: none;
	font-size: 1.2rem;
	line-height: 1.5;
	background-color: #fff;
}

#breadcrumbs span>span {
	display: inline;
	vertical-align: middle;
	letter-spacing: normal;
	position: relative;
	margin-right: 9px;
}


#breadcrumbs span>span:not(:first-child) {
	padding-left: 20px;
}

#breadcrumbs span>span:not(:first-child)::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 5px;
	left: 0px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);

	width: 0.5rem;
	height: 0.5rem;
	margin: 0;
	border-top: 1px solid #00a8a9;
	border-right: 1px solid #00a8a9;
	transform: rotate(45deg);
}

#breadcrumbs span>span a {
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
}

#breadcrumbs span>span a:hover {
	cursor: pointer;
	opacity: .8;
}

#breadcrumbs span>span:last-child {
	font-weight: normal;
	color: #333;
}

/* ===== Hero ===== */
.Hero {
	position: relative;
	height: auto;
	line-height: 0;
	z-index: 2;
	overflow: hidden;
	margin: 0 auto;
	z-index: 1;
	height: 30vw;
	background-position: center;
	background-size: cover;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.Hero {
		height: 30vw;
	}
}

@media only screen and (max-width: 559px) {
	.Hero {
		height: 40vw;
	}
}

.Hero .Hero__img {
	width: 100%;
	height: auto;
	z-index: 10;
}

.Hero .Hero__img img {
	width: 100%;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.Hero .Hero__img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

@media only screen and (max-width: 559px) {
	.Hero .Hero__img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.Hero__Inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 11;
	padding-bottom: 1.5rem;
}

.Hero__Inner .Heading_wrap {
	padding: 6rem 6rem 6rem 100px;
	background: rgba(255, 255, 255, 0.8);
	position: relative;
	z-index: 20;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.Hero__Inner .Heading_wrap {
		padding: 4rem 4rem 4rem 50px;
	}
}

@media only screen and (max-width: 559px) {
	.Hero__Inner .Heading_wrap {
		padding: 3rem 3rem 3rem 2rem;
	}
}

.Hero .Hero__heading {
	font-size: 3.2rem;
	font-weight: 300;
	line-height: 1;
	color: #333;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.Hero .Hero__heading {
		font-size: 2.6rem;
	}
}

@media only screen and (max-width: 559px) {
	.Hero .Hero__heading {
		font-size: 2.4rem;
	}
}

/* ===== #Page__level3 .Hero ===== */
#Page__level3 .Hero {
	height: 20vw;
	background-position: center;
	background-size: cover;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	#Page__level3 .Hero {
		height: 25vw;
	}
}

@media only screen and (max-width: 559px) {
	#Page__level3 .Hero {
		height: 40vw;
	}
}

#Page__level3 .Hero__Inner .Heading_wrap {
	padding: 20px 100px;
	background: rgba(255, 255, 255, 0.8);
	z-index: 20;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	#Page__level3 .Hero__Inner .Heading_wrap {
		padding: 2rem 2rem 2rem 50px;
	}
}

@media only screen and (max-width: 559px) {
	#Page__level3 .Hero__Inner .Heading_wrap {
		padding: 2rem 2rem 2rem 2rem;
	}
}

#Page__level3 .Hero .Hero__heading {
	font-size: 5rem;
	line-height: 1;
	color: var(--kblue-deep);
	position: relative;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	#Page__level3 .Hero .Hero__heading {
		font-size: 2.6rem;
	}
}

@media only screen and (max-width: 559px) {
	#Page__level3 .Hero .Hero__heading {
		font-size: 2.4rem;
	}
}

#Page__level3 .Hero .Hero__heading__sub {
	font-size: 2rem;
	line-height: 1;
	margin: 1rem 0 0 0;
	color: var(--kblue-deep);
	position: relative;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	#Page__level3 .Hero .Hero__heading__sub {
		font-size: 1.8rem;
	}
}

@media only screen and (max-width: 559px) {
	#Page__level3 .Hero .Hero__heading__sub {
		font-size: 1.4rem;
	}
}

.HeadingPrimary {
	width: 100%;
	max-width: 1300px;
	padding: 0 100px;
	margin: 5rem auto 0 auto;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.HeadingPrimary {
		padding: 0 50px;
		margin: 3rem auto 0 auto;
	}
}

@media only screen and (max-width: 559px) {
	.HeadingPrimary {
		padding: 0 20px;
		margin: 2rem auto 0 auto;
	}
}

.HeadingPrimary .Heading__body {
	padding: 0 0 0.3rem 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.HeadingPrimary .Heading__body .Entry__categoly {

	display: inline-block;
	background: var(--kblue-deep);
	color: #FFF;
	padding: 0 1rem;
	margin: 0 0 0.5rem 0;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.HeadingPrimary .Heading {
	width: 100%;
	margin: 0 0 0.5em 0;
	padding-bottom: 0.3em;
	font-size: 3rem;
	line-height: 1.5;
	color: var(--kblue-deep);
	border-bottom: 2px solid;
	border-color: var(--kblue);
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.HeadingPrimary .Heading {
		font-size: 2.7rem;
	}
}

@media only screen and (max-width: 559px) {
	.HeadingPrimary .Heading {
		font-size: 2.2rem;
	}
}

.HeadingPrimary.-noline .Heading {
	margin: 0;
	border-bottom: none;
}

.HeadingPrimary .Heading__body .Entry__date {
	width: 100%;
	text-align: right;
	margin: 0.3em 0 0 0;
}

.HeadingPrimary .Heading__body .Entry__author {
	width: 100%;
	margin: 0.3em 0 0 0;
	padding: 0 0.5em;
	text-align: right;
}

.HeadingPrimary .Heading__body .Entry__author .Board__name {
	width: 100%;
	font-size: 1.8rem;
	margin: 0.5rem 0 0 0;
	text-align: right;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.HeadingPrimary .Heading__body .Entry__author .Board__name {
		font-size: 1.6rem;
	}
}

@media only screen and (max-width: 559px) {
	.HeadingPrimary .Heading__body .Entry__author .Board__name {
		font-size: 1.4rem;
	}
}


.heading_Link {
	width: auto;
	display: inline-block;
	position: relative;
	margin: 0;
}

.heading_Link.-noLink {
	padding: 1.6rem 2rem;
	color: #FFF;
	background-color: var(--kblue);
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.heading_Link.-noLink {
		padding: 1.6rem 2rem;
	}
}

@media only screen and (max-width: 559px) {
	.heading_Link.-noLink {
		padding: 1.2rem 1.5rem;
	}
}

.heading_Link a {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	padding: 1.6rem 3.5rem 1.6rem 2rem;
	color: #FFF;
	background-color: var(--kblue);
	-webkit-transition: background-color .2s ease-in-out;
	transition: background-color .2s ease-in-out;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.heading_Link a {
		padding: 1.6rem 3.5rem 1.6rem 2rem;
	}
}

@media only screen and (max-width: 559px) {
	.heading_Link a {
		padding: 1.2rem 2.5rem 1.2rem 1.5rem;
	}
}

.heading_Link a:hover {
	background-color: #33b9ba;
}

.heading_Link a::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 45%;
	right: 2rem;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);

	width: 0.8rem;
	height: 0.8rem;
	margin: 0;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: rotate(45deg);

	z-index: 1;
}

@media only screen and (max-width: 559px) {
	.heading_Link a::before {
		top: 45%;
		right: 1.5rem;

		width: 0.6rem;
		height: 0.6rem;
		margin: 0;
		border-top: 1px solid #FFF;
		border-right: 1px solid #FFF;
		transform: rotate(45deg);

		z-index: 1;
	}
}

/*========== .hero__Lead .Section__heading  ==========*/
#Main__Content .hero__Lead,
#Main__Content .Section__heading {
	display: inline-block;
	position: relative;
	padding: 4rem 20rem 1rem 10rem;
	color: #ffffff;
	background: var(--kblue);
	z-index: 20;
}

#Main__Content .hero__Lead {
	margin: -1.5rem 0 0 0;
}

#Main__Content .Section__heading {
	margin: 0;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {

	#Main__Content .hero__Lead,
	#Main__Content .Section__heading {
		padding: 3rem 5em 1rem 5rem;
	}
}

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

	#Main__Content .hero__Lead,
	#Main__Content .Section__heading {
		padding: 2rem 2rem 1rem 2rem;
		margin-bottom: 20px;
	}
}

#Main__Content .hero__Lead h2,
#Main__Content .Section__heading h2 {
	font-size: 2.4rem;
	line-height: 1.6;
	color: #ffffff;
	margin-bottom: 0;
	text-align: left;
	position: relative;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {

	#Main__Content .hero__Lead h2,
	#Main__Content .Section__heading h2 {
		font-size: 2rem;
	}
}

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

	#Main__Content .hero__Lead h2,
	#Main__Content .Section__heading h2 {
		font-size: 1.8rem;
	}
}

/*==========  .Block__section  ==========*/
#Main__Inner .Block__section {
	margin-top: 180px;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	#Main__Inner .Block__section {
		margin-top: 80px;
	}
}

@media only screen and (max-width: 559px) {
	#Main__Inner .Block__section {
		margin-top: 50px;
	}
}

#Main__Inner .Block__section:first-child {
	margin-top: 0px;
}

#Business__level2 #Main__Inner .Block__section:first-child,
#Page__level2 #Main__Inner .Block__section:first-child,
#Page__level3 #Main__Inner .Block__section:first-child,
#Page__level4 #Main__Inner .Block__section:first-child {
	margin-top: 50px;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {

	#Business__level2 #Main__Inner .Block__section:first-child,
	#Page__level2 #Main__Inner .Block__section:first-child,
	#Page__level3 #Main__Inner .Block__section:first-child {
		margin-top: 30px;
	}
}

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

	#Business__level2 #Main__Inner .Block__section:first-child,
	#Page__level2 #Main__Inner .Block__section:first-child,
	#Page__level3 #Main__Inner .Block__section:first-child {
		margin-top: 20px;
	}
}

/*==========  .Block__section  ==========*/
/*#Main__Inner > .Block__section {
  margin-top: 0;
}
#Main__Inner .Block__section:nth-of-type(1){
margin-top: 50px;
}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
		#Business__level2 #Main__Inner div.Block__section:nth-of-type(1),
		#Page__level2 #Main__Inner div.Block__section:nth-of-type(1),
		#Page__level3 #Main__Inner div.Block__section:nth-of-type(1),
		#Page__level4 #Main__Inner div.Block__section:nth-of-type(1){
			margin-top: 30px;
		}
	}
	@media only screen and (max-width: 559px) {
	  #Business__level2 #Main__Inner div.Block__section:nth-of-type(1),
	#Page__level2 #Main__Inner div.Block__section:nth-of-type(1),
	#Page__level3 #Main__Inner div.Block__section:nth-of-type(1),
	#Page__level4 #Main__Inner div.Block__section:nth-of-type(1){
			margin-top: 20px;
		}
	}
#Main__Inner > div.Block__section:nth-of-type(n+2){
  margin-top: 180px;
}
	 @media only screen and (min-width: 560px) and (max-width: 959px) {
	  #Main__Inner .Block__section:nth-of-type(n+2) {
		margin-top: 80px;
	  }
	}
	@media only screen and (max-width: 559px){
	 #Business__level2 #Main__Inner div.Block__section:nth-of-type(n+2),
	#Page__level2 #Main__Inner div.Block__section:nth-of-type(n+2),
	#Page__level3 #Main__Inner div.Block__section:nth-of-type(n+2),
	#Page__level4 #Main__Inner div.Block__section:nth-of-type(n+2){
		margin-top: 50px;
	  }
	}
*/


.Lead__section {
	margin: 0;
}

.Lead__section p.Text {
	margin: 0;
}

.BlockSection__Inner {
	max-width: 1300px;
	margin: 40px auto 0 auto;
	padding: 0 100px;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.BlockSection__Inner {
		margin: 30px auto 0 auto;
		padding: 0 50px;
	}
}

@media only screen and (max-width: 559px) {
	.BlockSection__Inner {
		margin: 20px auto 0 auto;
		padding: 0 20px;
	}
}

.BlockSection__Inner .BlockInner__Item {
	margin: 80px auto 0 auto;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.BlockSection__Inner .BlockInner__Item {
		margin: 50px auto 0 auto;
	}
}

@media only screen and (max-width: 559px) {
	.BlockSection__Inner .BlockInner__Item {
		margin: 30px auto 0 auto;
	}
}

.BlockSection__Inner p {
	/* font-size: 1.8rem;*/
	line-height: 1.8;
	margin-bottom: 1em;
}

.BlockSection__Inner ol {
	/*	list-style-type: decimal;*/
	margin-left: 30px;
}

.BlockSection__Inner ol li {
	/*	list-style-type: decimal;*/
	margin-bottom: 7px;
	font-size: 1.8rem;
	line-height: 3.8rem;
	/*    margin-bottom: 1em;*/
}

#Main__Inner .img_Max {
	width: 100%;
	margin: 10rem auto 0 auto;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	#Main__Inner .img_Max {
		margin-top: 80px;
	}
}

@media only screen and (max-width: 559px) {
	#Main__Inner .img_Max {
		margin-top: 50px;
	}
}

#Main__Inner .img_Max img {
	width: 100%;
}

.SectionLevel2 {
	margin: 10rem 0 0 0;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.SectionLevel2 {
		margin-top: 6rem;
	}
}

@media only screen and (max-width: 559px) {
	.SectionLevel2 {
		margin-top: 4rem;
	}
}

#Privacy .SectionLevel2,
#Terms .SectionLevel2,
#Info .SectionLevel2 {
	/*font-size: 1.8rem;*/
}

.SectionLevel2 h2.Heading {
	font-size: 2.6rem;
	margin: 0 0 1em 0;
	padding: 0 0 1rem 0;
	position: relative;
	color: #333;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.SectionLevel2 h2.Heading {
		font-size: 2.2rem;
	}
}

@media only screen and (max-width: 559px) {
	.SectionLevel2 h2.Heading {
		font-size: 1.8rem;
		padding: 0 0 0.5rem 0;
	}
}

.SectionLevel2 h2.Heading::after {
	content: "";
	width: 20rem;
	height: 1px;
	margin: 0;
	left: 0;
	bottom: 0;
	position: absolute;
	background-color: var(--kblue);
}

.SectionLevel2 h2.Heading.-noline {
	padding: 0 0 0 0;
}

.SectionLevel2 h2.Heading.-noline::after {
	background: #FFF;
}

.SectionLevel2 h3 {
	font-size: 2rem;
	margin: 0 0 0.7em 0;
	position: relative;
	color: #333;
}

.SectionLevel2.-column2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.SectionLevel2.-column2 h2.Heading {
	width: 100%;
}

.SectionLevel2.-column2 .Column2__content {
	width: 55%;
	margin: 0;
}

.SectionLevel2.-column2 .Column2__Card {
	width: 40%;
	margin: 0;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {

	.SectionLevel2.-column2 .Column2__content,
	.SectionLevel2.-column2 .Column2__Card {
		width: 100%;
	}

	.SectionLevel2.-column2 .Column2__content.-order1 {
		width: 55%;
	}

	.SectionLevel2.-column2 .Column2__Card.-order2 {
		width: 40%;
	}

	.SectionLevel2.-column2 .Column2__Card,
	.SectionLevel2.-column2 .Column2__content.-order1 {
		order: 1;
		margin-bottom: 2em;
	}

	.SectionLevel2.-column2 .Column2__content,
	.SectionLevel2.-column2 .Column2__Card.-order2 {
		order: 2;
	}
}

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

	.SectionLevel2.-column2 .Column2__content,
	.SectionLevel2.-column2 .Column2__Card {
		width: 100%;
	}

	.SectionLevel2.-column2 .Column2__Card,
	.SectionLevel2.-column2 .Column2__content.-order1 {
		order: 1;
		margin-bottom: 2rem;
	}

	.SectionLevel2.-column2 .Column2__content,
	.SectionLevel2.-column2 .Column2__Card.-order2 {
		order: 2;
	}
}

.SectionLevel2.-column2 .Column2__Card .Image {
	width: 100%;
}

.SectionLevel3 {
	margin: 5rem 0 0 0;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.SectionLevel3 {
		margin: 4rem 0 0 0;
	}
}

@media only screen and (max-width: 559px) {
	.SectionLevel3 {
		margin: 3rem 0 0 0;
	}
}

.SectionLevel3 h3.Heading {
	font-size: 2rem;
	color: #333;
	margin: 0 0 0.5em 0;
	position: relative;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.SectionLevel3 h3.Heading {
		font-size: 1.8rem;
	}
}

@media only screen and (max-width: 559px) {
	.SectionLevel3 h3.Heading {
		font-size: 1.4rem;
	}
}

.SectionLevel2 h2.Heading::after {
	content: "";
	width: 20rem;
	height: 1px;
	margin: 0;
	left: 0;
	bottom: 0;
	position: absolute;
	background-color: var(--kblue);
}

.SectionLevel2 p {
	margin-bottom: 1em;
}

.Box {
	margin: 0 0 1.5em 0;
	padding: 4rem;
	width: 100%;
}

.Heading__small {
	border: none;
	font-size: 2.4rem;
	margin: 0 0 1.5em 0;
}

.Box.-gray {
	background-color: var(--gray-exlight);
}


/* ===== CardList ===== */
.CardList__wrap {
	margin: 50px auto 0 auto;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.CardList__wrap {
		margin-top: 40px;
	}
}

@media only screen and (max-width: 559px) {
	.CardList__wrap {
		margin-top: 30px;
	}
}

.CardList {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	align-content: flex-start;
	gap: 4rem;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.CardList {
		gap: 3rem;
	}
}

@media only screen and (max-width: 559px) {
	.CardList {
		gap: 2rem;
	}
}

@media only screen and (max-width: 559px) {
	.CardList.-featureCard {
		gap: 3rem;
	}
}

.CardList .CardList__item {
	margin: 0;
	border: 1px solid #dedede;
	background-color: var(--gray-exlight);
}

.CardList.-white .CardList__item {
	border: 1px solid #dedede;
	background-color: #FFF;
}

.CardList.-featureCard .CardList__item {
	margin: 0;
	border: none;
	background-color: #FFF;
}

.-colmn2 .CardList__item {
	width: calc((100% - 4rem)/2);
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.-colmn2 .CardList__item {
		width: calc((100% - 3rem)/2);
	}
}

@media only screen and (max-width: 559px) {
	.-colmn2 .CardList__item {
		width: 100%;
	}
}

.CardList.-colmn3 .CardList__item {
	width: calc((100% - 80px)/3);
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.CardList.-colmn3 .CardList__item {
		width: calc((100% - 30px)/2);
	}
}

@media only screen and (max-width: 559px) {
	.CardList.-colmn3 .CardList__item {
		width: 100%;
	}
}

.CardList__image {
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.CardList__body .Button {
	width: 100%;
	margin: 0;
}

.CardList__body .Button__inner {
	width: 100%;
	display: block;
	margin: 0;
}

.CardList__title {
	padding: 2rem 3.5rem 2rem 2rem;
	font-size: 1.8rem;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.CardList__title {
		padding: 1.5rem 3.5rem 1.5rem 2rem;
		font-size: 1.6rem;
	}
}

@media only screen and (max-width: 559px) {
	.CardList__title {
		padding: 1.2rem 2.5rem 1.2rem 1.5rem;
		font-size: 1.6rem;
	}
}

.CardList__body {
	padding: 30px 20px 30px 20px;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.CardList__body {
		padding: 30px 20px 30px 20px;
	}
}

@media only screen and (max-width: 559px) {
	.CardList__body {
		padding: 20px 15px 20px 15px;
	}
}

.CardList.-featureCard .CardList__body {
	/*height: 100%;*/
	display: flex;
	padding: 0;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.CardList__body .heading {
	font-weight: bolder;
	margin: 0;
}

.-featureCard .CardList__body .heading {
	width: 100%;
	min-height: 10rem;
	margin: 1rem 0 0 0;
	padding: 0 0 2rem 0;

	text-align: center;
	font-size: 2.4rem;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-bottom: 1rem solid;
	border-color: var(--kblue);
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.-featureCard .CardList__body .heading {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 559px) {
	.-featureCard .CardList__body .heading {
		min-height: 1em;
		font-size: 2rem;
	}
}

.CardList__body .summery {
	/*font-size: 1.4rem;
	line-height: 1.7;*/
	margin: 1em 0 0 0;
}

.-featureCard .CardList__body .summery {
	width: 100%;
	min-height: 20rem;
	margin: 0;
	padding: 20px 20px 30px 20px;
	border: 1px solid #dedede;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.-featureCard .CardList__body .summery {
		padding: 15px 20px 30px 20px;
	}
}

@media only screen and (max-width: 559px) {
	.-featureCard .CardList__body .summery {
		padding: 10px 15px 20px 15px;
		min-height: 10rem;
	}
}

.CardGrid {
	margin: 3rem 0 0 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 3rem;
}

@media only screen and (max-width: 559px) {
	.CardGrid {
		flex-wrap: wrap;
		gap: 2rem;
	}
}


.CardGrid .CardGrid__item {
	width: auto;
}

.CardGrid.-column2 .CardGrid__item {
	width: calc((100% - 3rem)/2);
}

.CardGrid.-column3 .CardGrid__item {
	width: calc((100% - 6rem)/3);
}

.CardGrid .CardGrid__item.-width50 {
	width: calc(50% - 1.5rem);
}

.CardGrid .CardGrid__item.-width45 {
	width: calc(45% - 1.5rem);
}

.CardGrid .CardGrid__item.-width40 {
	width: calc(40% - 1.5rem);
}

.CardGrid .CardGrid__item.-width35 {
	width: calc(35% - 1.5rem);
}

.CardGrid .CardGrid__item.-width30 {
	width: calc(30% - 1.5rem);
}

.CardGrid .CardGrid__item.-width25 {
	width: calc(25% - 3rem);
}

.CardGrid .CardGrid__item.-width20 {
	width: calc(20% - 1.5rem);
}

.CardGrid .CardGrid__item.-width15 {
	width: calc(15% - 1.5rem);
}

.CardGrid .CardGrid__item.-width10 {
	width: calc(10% - 1.5rem);
}

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

	.CardGrid.-column2 .CardGrid__item,
	.CardGrid.-column3 .CardGrid__item,
	.CardGrid .CardGrid__item,
	.CardGrid .CardGrid__item.-width50,
	.CardGrid .CardGrid__item.-width45,
	.CardGrid .CardGrid__item.-width40,
	.CardGrid .CardGrid__item.-width35,
	.CardGrid .CardGrid__item.-width30,
	.CardGrid .CardGrid__item.-width25,
	.CardGrid .CardGrid__item.-width20,
	.CardGrid .CardGrid__item.-width15,
	.CardGrid .CardGrid__item.-width10 {
		width: 100%;
	}
}

.CardGrid.-nallow {
	gap: 1rem;
}

.CardGrid.-nallow .CardGrid__item.-width25 {
	width: calc((100% - 3rem)/4);
	margin: 0;
}

.CardGrid.-nallow .CardGrid__item.-width33,
.CardGrid.-nallow .CardGrid__item.-width33_full {
	width: calc((100% - 2rem)/3);
	margin: 0;
}

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

	.CardGrid.-nallow .CardGrid__item.-width25,
	.CardGrid.-nallow .CardGrid__item.-width33 {
		width: calc(50% - 0.5rem);
	}

	.CardGrid.-nallow .CardGrid__item.-width33_full {
		width: 100%;
	}
}

.CardGrid .Image {
	width: 100%;
	margin: 0 auto;
}

.Card__caption {
	display: block;
	font-size: 1.4rem;
	margin: 0.8rem 0 0 0;
}

@media only screen and (max-width: 559px) {
	.Card__caption {
		font-size: 1.2rem;
	}
}

.Table_Basic {
	border-collapse: collapse;
	margin: 0 0 1.5em 0;
}

.Table_Basic th,
.Table_Basic td {
	vertical-align: top;
	empty-cells: show;
	border: solid 1px;
	border-color: var(--gray-medium);
	padding: 1rem;
	word-break: break-all;
}

.Table_Basic th {
	background-color: var(--gray-light);
	vertical-align: top;
	font-weight: normal;
	/*white-space:nowrap;*/
	text-align: left;
}

.Table_Basic.-column2_table th {
	width: 25%;
}

.Table_Basic.-column2_table td {
	width: 75%;
}

.Table_Basic tr:nth-child(odd) {
	background-color: var(--gray-exlight);
}


.Table_Basic.-firstitemFixed {
	table-layout: fixed;
}

.Table_Basic.-firstitemFixed tr th:first-child,
.Table_Basic.-firstitemFixed tr td:first-child {
	width: 160px;
}

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

	.Table_Basic.-firstitemFixed tr th:first-child,
	.Table_Basic.-firstitemFixed tr td:first-child {
		width: 80px;
	}
}


.List {
	margin: 0 0 1.5em 0;
	list-style-type: disc;
	padding-left: 1.5em;
}

.List li {
	margin-top: 0.5em;
}

ol.-number {
	list-style-type: decimal;
	margin: 0 0 1.5em 0;
	padding-left: 2em;
}

ol.-number li {
	padding-left: 0;
	margin-top: 0.8em;
}

ol.-noteNumber {
	text-indent: -1em;
	list-style-type: none;
}

ol.-noteNumber li {
	padding-left: 1rem;
	text-indent: -1em;
	list-style-type: none;
	margin-top: 0.5em;
}

ol {
	counter-reset: cnt;
	list-style: none;
}

ol.-paren {
	margin: 0.6em 0;
	padding-left: 0;
}

ol.-paren>li {
	margin: 0;
	padding-left: 0;
	list-style-type: none;
}

ol.-paren>li::before {
	counter-increment: cnt;
	content: "(" counter(cnt) ") ";
}

ol.-paren li ol {
	counter-reset: number 0;
	padding-left: 2.5em;
}

ol.paren>li>ol {}

ol.paren>li>ol>li {
	text-indent: -3em;
	margin-left: 3em;
}

/*ol.paren > li > ol > li::before{
    width: 2em;
    display: inline-block;
    text-indent: 0;
    content: "(" counter(cnt) ")";
  }*/
ol.-iroha {
	padding-left: 3rem;
	list-style-type: none;
}

ol.-iroha li {
	padding-left: 2rem;
	text-indent: -2em;
	list-style-type: none;
}

ol.-iroha.-note li {
	font-size: 1.4rem;
}

ul.-note {
	list-style-type: none;
	margin: 0 0 1.5em 0;
	padding-left: 0;
}

ul.-note li {
	padding-left: 0;
	margin-top: 0.3em;
	font-size: 1.4rem;
}

ul.-note li::before {
	content: "＊";
}


.businessBaseList {
	width: 100%;
	margin: 0 0 1em 0;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
}

@media only screen and (max-width: 559px) {
	.businessBaseList {
		width: 100%;
		padding: 0 0 0 2rem;
	}
}

.businessBaseList__item {
	width: calc((100% - 4rem)/2);
	border-top: 1px solid;
	border-color: var(--kblue);
	padding: 1.5rem 0 0 0;

	position: relative;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.businessBaseList__item {
		width: 100%;
		padding: 1.5rem 0 0 0;
	}
}

@media only screen and (max-width: 559px) {
	.businessBaseList__item {
		width: 100%;
		padding: 1rem 0 1rem 0;

		flex-wrap: wrap;
		gap: 1rem;
	}
}

.businessBase__title {
	width: 35%;
}

@media only screen and (max-width: 559px) {
	.businessBase__title {
		width: 100%;
	}
}

.businessBase__title h3 {
	color: var(--kblue-deep);
	font-size: 2rem;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.businessBase__title h3 {
		font-size: 1.8rem;
	}
}

@media only screen and (max-width: 559px) {
	.businessBase__title h3 {
		font-size: 1.6rem;
		margin: 0;
	}
}

.businessBase__address {
	width: calc(65% - 2rem);

}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.businessBase__address {
		width: 65%;
	}
}

@media only screen and (max-width: 559px) {
	.businessBase__address {
		width: 100%;
	}

	.businessBase__address p {
		margin: 0;
	}
}

.businessBaseList__item .Button {
	width: 10rem;
	margin-top: 1rem;
	float: right;
}

.Article__summaryStart {
	text-align: center;
	margin: 3em 0 0 0;
	font-size: 2.6rem;
	color: #333;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.Article__summaryStart {
		font-size: 2.4rem;
	}
}

@media only screen and (max-width: 559px) {
	.Article__summaryStart {
		font-size: 2rem;
	}
}


#Page__level3 .Section__heading,
#Page__level4 .Section__heading {
	max-width: 1300px;
	display: block;
	margin: 0 auto 0 auto;
	padding: 0 100px;
	background: #FFF;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {

	#Business__level2 .Section__heading,
	#Page__level3 .Section__heading,
	#Page__level4 .Section__heading {
		padding: 0 50px;
	}
}

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

	#Business__level2 .Section__heading,
	#Page__level3 .Section__heading,
	#Page__level4 .Section__heading {
		padding: 0 20px;
	}
}

#Page__level3 .Section__heading h2,
#Page__level4 .Section__heading h2 {
	color: var(--kblue-deep);
	font-size: 2.6rem;
	background: #FFF;

	border-bottom: 1px solid;
	border-color: var(--kblue);
}

@media only screen and (min-width: 560px) and (max-width: 959px) {

	#Page__level3 .Section__heading h2,
	#Page__level4 .Section__heading h2 {
		font-size: 2.4rem;
	}
}

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

	#Page__level3 .Section__heading h2,
	#Page__level4 .Section__heading h2 {
		font-size: 2rem;
	}
}

#Page__level3 .Section__heading h2::after,
#Page__level4 .Section__heading h2::after {
	content: "";
	/*background-color: var(--kblue);*/
	width: 20rem;
	height: 0.3rem;
	position: absolute;
	left: 0;
	bottom: -10px;

	z-index: 1;
}

#RelatedNav {
	width: 100%;
	margin: 100px 0 0 0;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	#RelatedNav {
		width: 100%;
		margin-top: 70px;
	}
}

@media only screen and (max-width: 559px) {
	#RelatedNav {
		width: 100%;
		margin-top: 50px;
	}
}

.RelatedNav__main {
	padding: 80px 50px;
	margin: 0;
	background-color: var(--kblue);
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.RelatedNav__main {
		padding: 50px 0;
		margin: 0;
		background-color: var(--kblue);
	}
}

@media only screen and (max-width: 559px) {
	.RelatedNav__main {
		padding: 30px 0;
		margin: 0;
		background-color: var(--kblue);
	}
}

#RelatedNav .Section__heading,
#Page__level3 #RelatedNav .Section__heading {
	width: 100%;
	margin: 0;
	padding: 0 0 2.5rem 0;
	background-color: transparent;
	line-height: 1.2;
	position: relative;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {

	#RelatedNav .Section__heading,
	#Page__level3 #RelatedNav .Section__heading {
		padding-bottom: 1.5rem;
	}
}

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

	#RelatedNav .Section__heading,
	#Page__level3 #RelatedNav .Section__heading {
		padding-bottom: 1rem;
	}
}

#RelatedNav .Section__heading h2,
#Page__level3 #RelatedNav .Section__heading h2 {
	color: #FFF;
	line-height: 1.5;
	text-align: center;
	padding: 0;
	background: none;
}

#RelatedNav .Section__headingBody {
	text-align: center;
}

#RelatedNav .Section__heading::before {
	content: "";
	background-color: #FFF;
	width: 16rem;
	height: 0.3rem;
	position: absolute;
	top: auto;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);

	z-index: 1;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	#RelatedNav .Section__heading::before {
		width: 12rem;
		height: 0.2rem;
	}
}

@media only screen and (max-width: 559px) {
	#RelatedNav .Section__heading::before {
		width: 10rem;
		height: 0.2rem;
	}
}

#RelatedNav .Section__heading .Text__eng {
	font-size: 5rem;
	font-weight: 200;
	display: block;
	letter-spacing: 0;
	text-align: center;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	#RelatedNav .Section__heading .Text__eng {
		font-size: 3.6rem;
	}
}

@media only screen and (max-width: 559px) {
	#RelatedNav .Section__heading .Text__eng {
		font-size: 6vw;
	}
}

#RelatedNav .Section__heading .Text__jp {
	font-size: 1.8rem;
	text-align: center;
	display: block;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	#RelatedNav .Section__heading .Text__jp {
		font-size: 1.6rem;
	}
}

@media only screen and (max-width: 559px) {
	#RelatedNav .Section__heading .Text__jp {
		font-size: 1.3rem;
	}
}

/*.RelatedNav__main .Button__List .ButtonList__item{
  width: calc(100% - 20px)/3;
/*  margin: 0 0 20px 0;*/
}

*/ #RelatedNav .Button__List.-sub {
	margin-top: 20px;
}

#RelatedNav .Button__List.-sub .ButtonList__item {
	width: calc((100% - 2rem)/2);
}

@media only screen and (max-width: 559px) {
	#RelatedNav .Button__List.-sub .ButtonList__item {
		width: 100%;
	}
}

.RelatedNav__inquiry {
	margin: 0;
	padding: 50px 50px;
	background-color: #FFF;
	text-align: center;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.RelatedNav__inquiry {
		padding: 40px 50px;
	}
}

@media only screen and (max-width: 559px) {
	.RelatedNav__inquiry {
		padding: 20px 20px;
	}
}

.RelatedNav__inquiry .Button {
	width: 600px;
	margin: 0 auto;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.RelatedNav__inquiry .Button {
		width: 100%;
		max-width: 600px;
	}
}

@media only screen and (max-width: 559px) {
	.RelatedNav__inquiry .Button {
		width: 100%;
	}
}

.RelatedNav__inquiry .text_Link {
	margin: 20px 0 0 0;
}



.PageNavigation {
	width: 100%;
	text-align: center;
	margin: 10rem 0 0 0;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.PageNavigation {
		margin-top: 7rem;
	}
}

@media only screen and (max-width: 559px) {
	.PageNavigation {
		margin-top: 5rem;
	}
}

.PageNavigation a {
	color: var(--kblue-deep);
}

ul.page-numbers {
	display: flex;
	align-content: center;
	justify-content: center;
}

ul.page-numbers li {
	width: 4rem;
	height: 4rem;
	margin: 0 0.5rem;

	font-size: 1.8rem;
	line-height: 4rem;
	text-align: center;
	position: relative;
}

ul.page-numbers li .page-numbers {
	display: block;
}

ul.page-numbers li .page-numbers a {
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--gray-light);
	-webkit-transition: background-color .2s ease-in-out;
	transition: background-color .2s ease-in-out;
}

ul.page-numbers li .page-numbers a:hover {
	color: #FFF;
	background-color: var(--kblue);
}

ul.page-numbers li .page-numbers.current {
	color: #FFF;
	background-color: var(--kblue);
}

ul.page-numbers li .page-numbers.next a,
ul.page-numbers li .page-numbers.prev a {
	background-color: transparent;
	color: var(--kblue-deep);
	-webkit-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

ul.page-numbers li .page-numbers.next a:hover,
ul.page-numbers li .page-numbers.prev a:hover {
	color: var(--kblue);
}

.PageNavigation .Button {
	display: inline-block;
	min-width: 46rem;
	padding-right: 1rem;
	text-align: center;
}

@media only screen and (min-width: 560px) and (max-width: 959px) {
	.PageNavigation .Button {
		width: 100%;
		max-width: 46rem;
		min-width: auto;
	}
}

@media only screen and (max-width: 559px) {
	.PageNavigation .Button {
		width: 100%;
		max-width: 46rem;
		min-width: auto;
	}
}

.Post__Paginations {
	margin: 0 0 5rem 0;
	display: flex;
	align-content: center;
	justify-content: center;
	gap: 2rem;
}

.Post__Paginations a {
	width: auto;
	margin: 0;

	line-height: 3rem;
	text-align: center;
	position: relative;
}

.Post__Paginations a:hover {
	color: #FFF;
	background-color: var(--kblue);
}

.Post__Paginations a {
	display: block;
	padding: 0.5rem 1rem;
	background-color: var(--gray-light);
	-webkit-transition: background-color .2s ease-in-out;
	transition: background-color .2s ease-in-out;
}

/*モーダルを開くボタン*/
.modal-open {
	cursor: pointer;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	z-index: 9999;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
	opacity: 1;
	visibility: visible;
}


@media only screen and (max-width: 559px) {
	.modal-container {
		padding: 20px 10px;
	}
}

/*モーダル枠の指定*/
.modal-body {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 80vw;
	height: 90vh;
	overflow-y: scroll;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 20px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}

.modal-close2 {
	font-size: 1.8rem;
	color: #00a8a9;
	cursor: pointer;
	text-align: center;
	padding: 30px 0;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
	background: #fff;
	text-align: left;
}

.modal-content .modal_ttl {
	background-color: #00a8a9;
	padding: 30px 60px;
	color: #fff;
	font-size: 2.6rem;
	position: relative;
}

.modal-content .modal_txt {
	padding: 30px 60px;
	font-size: 1.8rem;
	line-height: 3.8rem;
	margin-bottom: 25px;
}

.modal-content .modal_image {
	padding: 0 60px;
}

@media only screen and (max-width: 559px) {
	.modal-body {
		width: 90vw;
	}

	.modal-content .modal_ttl {
		padding: 15px 30px;
	}

	.modal-content .modal_image {
		padding: 0;
	}
}