@charset 'UTF-8';
/* =====================================================
* Base
* ================================================== */

/*! normalize.css v3.0.0 | MIT License | git.io/normalize */

@import url(//fonts.googleapis.com/css?family=Roboto:400,700,900);
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-family: sans-serif;
}

body {
	margin: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	margin: 0.67em 0;
	font-size: 2em;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	margin: 0;
	color: inherit;
	font: inherit;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
	cursor: pointer;
	-webkit-appearance: button;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0;
	border: 0;
}

input {
	line-height: normal;
}

input[type='checkbox'],
input[type='radio'] {
	box-sizing: border-box;
	padding: 0;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
	height: auto;
}

input[type='search'] {
	box-sizing: content-box;
	-webkit-appearance: textfield;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
	border: 1px solid #c0c0c0;
}

legend {
	padding: 0;
	border: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

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

td,
th {
	padding: 0;
}

/* -----------------------------------------------------
 * Font
 * -------------------------------------------------- */

@font-face {
	font-family: 'NotoSansCJKjp-Jxck';
  font-weight: 400;
  font-style: normal;
  src: local('NotoSansCJKjp-Bold.otf'), local('NotoSansJP-Bold.otf'), url('/font/NotoSansCJKjp-Jxck-Regular.woff') format('woff');
}

@font-face {
	font-family: 'NotoSansCJKjp-Jxck';
  font-weight: 700;
  font-style: normal;
  src: local('NotoSansCJKjp-Bold.otf'), local('NotoSansJP-Bold.otf'), url('/font/NotoSansCJKjp-Jxck-Bold.woff') format('woff');
}

/* -----------------------------------------------------
 * Init
 * -------------------------------------------------- */

*,
*:before,
*:after {
	box-sizing: border-box;
}

/* normalize overwrite */

html {
	position: relative;
	min-height: 100%;
	font-family: 'Noto Sans', 'Noto Sans CJK JP', 'NotoSansCJKjp-Jxck', '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', Meiryo, sans-serif;
	font-size: 62.5%;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
	background: #fff;
	color: #383737;
	font-size: 1.6rem;
	line-height: 1.22;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: unset;
}

a {
	color: #103c7d;
}

a:hover {
	text-decoration: none;
}

a:active,
a:focus,
a:visited {
	color: #103c7d;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
figure,
figcaption,
small {
	margin: 0;
	font-size: 100%;
	font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.22;
}

img {
	vertical-align: bottom;
}

ul {
	list-style-type: none;
	padding: 0;
}

ol {
	padding: 0;
}

th {
	font-weight: normal;
	text-align: left;
}

/* =====================================================
 * Module
 * ================================================== */

/* -----------------------------------------------------
 * Utilities
 * -------------------------------------------------- */

/*docs
---
title: テキスト寄せ
name: util-010
category: utilities
---

```html
<p class="mod-left">.mod-left</p>
<p class="mod-center">.mod-center</p>
<p class="mod-right">.mod-right</p>
```
*/

.mod-left {
	text-align: left !important;
}

.mod-center {
	text-align: center !important;
}

.mod-right {
	text-align: right !important;
}

/*docs
---
title: メディア表示
name: util-020
category: utilities
---

```html
<div class="is-pc-hide">PC非表示（指定がなければSP表示）</div>
<div class="is-pc-show">PCでは必ず表示（指定がなければSP表示）</div>
<div class="is-sp-show">SPでは必ず表示（指定がなければPC表示）</div>
<div class="is-sp-hide">SP非表示（指定がなければPC表示）</div>
<p>テキストテキストテキスト。<br class="is-br-sp-show">SPでは改行が入る。</p>
<p>テキストテキストテキスト。<br class="is-br-pc-show">PCでは改行が入る。</p>
```
*/

.is-br-sp-show {
	display: none;
}

.is-br-pc-show {
	display: none;
}

/*docs
---
title: JSメディアチェック用
name: util-030
category: utilities
---
SP表示チェック。
- jQueryのis(':visible')を利用することで、JSとCSSの同期が取れる。
- SP時に display: block; となる。

```html
<div class="check-media">SP時 display: block;</div>
```
*/

.check-media {
	display: block;
}

.u-mt--20 {
	margin: -20px 0 0 !important;
}

.u-mt-20 {
	margin: 20px 0 0 !important;
}

.mod-bold {
	font-weight: bold !important;
}

/* -----------------------------------------------------
 * Typography
 * -------------------------------------------------- */

/* ----- Heading ----- */

/*docs
---
title: .mod-heading
name: typo-010
category: typography
---

```html
<span class="mod-heading1">.mod-heading1</span>
<span class="mod-heading2">.mod-heading2</span>
<span class="mod-heading3">.mod-heading3</span>
<span class="mod-heading4">.mod-heading4</span>
<span class="mod-heading5">.mod-heading5</span>
<span class="mod-heading6">.mod-heading6</span>
```
*/

.mod-heading1,
.mod-heading2,
.mod-heading3,
.mod-heading4,
.mod-heading5,
.mod-heading6 {
	display: block;
	margin: 10.66667vw 0 5.33333vw;
	font-weight: bold;
	line-height: 1.22;
}

.mod-heading1:first-child,
.mod-heading2:first-child,
.mod-heading3:first-child,
.mod-heading4:first-child,
.mod-heading5:first-child,
.mod-heading6:first-child {
	margin-top: 0;
}

.mod-heading1 {
	position: relative;
	padding: 0 0 4vw;
	font-size: 6.93333vw;
	text-align: center;
}

.mod-heading1:after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 12vw;
	height: 1.6vw;
	margin: auto;
	background: url(/kaigoseisansei/pf/img/ico_heading_01.jpg) no-repeat 50% 50%;
	background-size: contain;
}

.mod-heading2 {
	padding: 2.66667vw;
	background: #726e6b;
	color: #fff;
	font-size: 5.86667vw;
}

.mod-heading3 {
	position: relative;
	margin: 10.66667vw 0 6.93333vw;
	padding: 2.4vw 0 2.4vw 4.8vw;
	font-size: 5.86667vw;
}

.mod-heading3:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 2.13333vw;
	height: 10.66667vw;
	background: #726e6b;
}

.mod-heading3:after {
	content: '';
	display: block;
	position: absolute;
	bottom: -1.6vw;
	left: 0;
	width: 100%;
	height: 0.26667vw;
	background: #726e6b;
}

.mod-heading4 {
	position: relative;
	padding: 0 0 0 2.93333vw;
	font-size: 5.33333vw;
}

.mod-heading4:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background: #726e6b;
}

.mod-heading4:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 4px;
	width: 2px;
	height: 100%;
	background: #726e6b;
}

.mod-heading4:first-child {
	margin-top: 20px;
}

.mod-heading5 {
	font-size: 1.4rem;
}

.mod-heading6 {
	font-size: 1.4rem;
}

/* ----- Paragraph ----- */

/*docs
---
title: .mod-p
name: typo-020
category: typography
---

```html
<p class="mod-p">吾輩は猫である。名前はまだ無い。<br>どこで生れたかとんと見当がつかぬ。</p>
<p class="mod-p">何でも薄暗いじめじめした所でニャーニャー泣いていた事だけは記憶している。<br>吾輩はここで始めて人間というものを見た。<br>しかもあとで聞くとそれは書生という人間中で一番獰悪な種族であったそうだ。<br>この書生というのは時々我々を捕えて煮て食うという話である。<br>しかしその当時は何という考もなかったから別段恐しいとも思わなかった。</p>
<p class="mod-p">ただ彼の掌に載せられてスーと持ち上げられた時何だかフワフワした感じがあったばかりである。<br>掌の上で少し落ちついて書生の顔を見たのがいわゆる人間というものの見始であろう。<br>この時妙なものだと思った感じが今でも残っている。</p>
<p class="mod-p">第一毛をもって装飾されべきはずの顔がつるつるしてまるで薬缶だ。</p>
<p class="mod-p">その後猫にもだいぶ逢ったがこんな片輪には一度も出会わした事がない。<br>のみならず顔の真中があまりに突起している。</p>
```
*/

.mod-p {
	width: 100%;
	margin: 2.66667vw 0;
	font-size: 4.26667vw;
	line-height: 1.7;
}

.mod-p:first-child {
	margin-top: 0;
}

.mod-p a {
	display: inline;
}

.mod-p em {
	font-weight: bold;
	font-style: normal;
}

/* ----- List ----- */

/*docs
---
title: .mod-ul
name: typo-030
category: typography
---

```html
<ul class="mod-ul">
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ul>
```
*/

.mod-ul {
	display: table;
	margin: 20px 0;
}

.mod-ul > li {
	position: relative;
	margin: 10px 0 0;
	padding: 0 0 0 20px;
	line-height: 1.5;
}

.mod-ul > li:first-child {
	margin-top: 0;
}

.mod-ul > li:before {
	content: '';
	position: absolute;
	top: 0.5em;
	left: 3px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #726e6b;
}

.mod-ul > li > ul {
	margin: 10px 0 0 !important;
}

/*docs
---
title: .mod-ol
name: typo-040
category: typography
---

```html
<ol class="mod-ol">
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ol>
```
*/

.mod-ol {
	display: table;
	margin: 20px 0;
}

.mod-ol > li {
	counter-increment: count;
	position: relative;
	list-style-type: none;
	margin: 10px 0 0;
	padding: 0 0 0 4rem;
	line-height: 1.5;
}

.mod-ol > li:before {
	content: '（' counter(count) '）';
	position: absolute;
	top: 0;
	left: 0;
}

.mod-ol > li:first-child {
	margin-top: 0;
}

/*docs
---
title: .mod-dl
name: typo-050
category: typography
---

```html
<dl class="mod-dl">
<dt>Definition List Title</dt>
<dd>This is a definition list division.</dd>
<dt>Definition List Title</dt>
<dd>This is a definition list division.</dd>
<dt>Definition List Title</dt>
<dd>This is a definition list division.</dd>
</dl>
```
*/

.mod-dl {
	margin: 20px 0;
}

.mod-dl dt {
	margin: 10px 0 0;
	font-weight: bold;
}

.mod-dl dt:first-child {
	margin-top: 0;
}

.mod-dl dd {
	margin: 10px 0 0 10px;
}

.mod-a {
	display: block;
	width: 100%;
	margin: 2.66667vw 0;
	color: #103c7d;
	font-size: 4.26667vw;
	line-height: 1.7;
	text-decoration: none;
}

/* =====================================================
 * Layout
 * ================================================== */

/* -----------------------------------------------------
 * Header
 * -------------------------------------------------- */

.l-header {
	z-index: 10;
	width: 100%;
	height: 187px;
	background-color: #fff;
}

.l-header-inner {
	width: 1000px;
	margin: 0 auto;
}

.l-header-inner-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.l-header-top {
	position: fixed;
	z-index: 1;
	top: 0;
	width: 100%;
	min-width: 1040px;
	padding: 23px 0;
	background: #fff;
}

.l-header-logo a {
	display: flex;
	text-decoration: none;
	transition: opacity 0.2s ease-in-out;
}

.l-header-logo a:hover {
	opacity: 0.7;
}

.l-header-logo a > img {
	width: 60px;
	height: auto;
	border-radius: 10px;
}

.l-header-logo span {
	display: flex;
	align-items: center;
	width: 268px;
}

.l-header-logo span .logo-text {
	width: 100%;
	height: auto;
}

.l-header-top-right {
	display: flex;
}

.l-header-top-right-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.33333vw;
}

.l-header-top-right-box:nth-of-type(2) {
	margin-top: 2.66667vw;
}

.l-header-top-right-box.facility {
	background: #69a7f2;
}

.l-header-top-right-box.develop {
	background: #fda33b;
}

.l-header-top-right-box span {
	color: #fff;
	font-weight: bold;
	text-align: center;
}

.l-header-top-right-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 10.66667vw;
}

.l-header-top-right-inner a {
	display: flex;
	position: relative;
	align-items: center;
	height: 100%;
	background: #fff;
	color: #000;
	font-weight: bold;
	text-decoration: none;
}

.l-header-top-right-inner a:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 5px;
	width: 14px;
	height: 14px;
	transition: -webkit-transform ease-in-out 0.3s;
	transition: transform ease-in-out 0.3s;
	transition: transform ease-in-out 0.3s, -webkit-transform ease-in-out 0.3s;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.l-header-top-right-inner a:nth-of-type(2) {
	margin-left: 1px;
}

.l-header-top-right-inner a.soudan:before {
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_circle_02.png) no-repeat 50% 50%;
	background-size: contain;
}

.l-header-top-right-inner a.livinglab:before {
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_circle_03.png) no-repeat 50% 50%;
	background-size: contain;
}

.l-header-toggle {
	display: none;
}

.l-header-toggle > span {
	display: block;
	position: absolute;
	right: 0;
	width: 100%;
	height: 0.8vw;
	border-radius: 3px / 50%;
	background-color: #2e2a27;
}

.l-header-toggle > span:first-child {
	top: 0;
}

.l-header-toggle > span:nth-child(2) {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.l-header-toggle > span:last-child {
	bottom: 0;
}

.l-header-toggle.is-menu-open > span:first-child,
.l-header-toggle.is-menu-open > span:last-child {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.l-header-toggle.is-menu-open > span:first-child {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
}

.l-header-toggle.is-menu-open > span:nth-child(2) {
	opacity: 0;
}

.l-header-toggle.is-menu-open > span:last-child {
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.l-header-cv {
	margin: 0;
}

.l-header-cv a {
	position: relative;
	padding: 0 0 15px 26px;
	color: #383737;
	font-size: 1.7rem;
	font-weight: bold;
	text-decoration: none;
}

.l-header-cv a:before {
	content: '';
	display: block;
	position: absolute;
	top: 4px;
	left: 0;
	width: 19px;
	height: 19px;
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_01.png) no-repeat 50% 50%;
	background-size: contain;
	transition: -webkit-transform ease-in-out 0.3s;
	transition: transform ease-in-out 0.3s;
	transition: transform ease-in-out 0.3s, -webkit-transform ease-in-out 0.3s;
}

.l-header-cv a:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: visibility, background ease-in-out 0.3s;
}

.l-header-menu {
	margin: 115px 0 0;
}

.l-header-menu .mod-inner .l-header-top-right-box {
	flex-direction: row;
	justify-content: space-between;
	padding: 1.33333vw 1.33333vw 1.33333vw 2.66667vw;
}

.l-header-menu .mod-inner .l-header-top-right-box span {
	font-size: 4.26667vw;
}

.l-header-menu .mod-inner .l-header-top-right-inner {
	flex-direction: column;
	width: 65.06667vw;
	height: auto;
}

.l-header-menu .mod-inner .l-header-top-right-inner a {
	justify-content: center;
	width: 65.06667vw;
	padding: 2vw 2vw 2vw 12.53333vw;
}

.l-header-menu .mod-inner .l-header-top-right-inner a:nth-of-type(2) {
	margin-top: 0.53333vw;
	margin-left: 0;
}

.l-header-nav {
	display: block;
}

.l-header-nav > ul {
	display: flex;
	justify-content: space-between;
}

.l-header-nav > ul > li {
	display: flex;
	position: relative;
	align-items: flex-start;
	font-size: 1.8rem;
	font-weight: bold;
}

.l-header-nav > ul > li:nth-child(1) a:before {
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_circle_01.png) no-repeat 50% 50%;
	background-size: contain;
}

.l-header-nav > ul > li:nth-child(2) a:before {
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_circle_02.png) no-repeat 50% 50%;
	background-size: contain;
}

.l-header-nav > ul > li:nth-child(3) a:before {
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_circle_03.png) no-repeat 50% 50%;
	background-size: contain;
}

.l-header-nav > ul > li:nth-child(4) a:before {
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_circle_07.png) no-repeat 50% 50%;
	background-size: contain;
}

.l-header-nav > ul > li:nth-child(5) a:before {
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_circle_04.png) no-repeat 50% 50%;
	background-size: contain;
}

.l-header-nav > ul > li.external:after {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	margin-top: 3px;
	margin-left: 12px;
	background: url(/kaigoseisansei/pf/img/ico_external_link.png) no-repeat 50% 50% transparent;
	background-size: contain;
}

.l-header-nav > ul > li > a {
	display: block;
	position: relative;
	padding: 0 0 30px 30px;
	color: inherit;
	line-height: 22px;
	text-align: center;
	white-space: nowrap;
	text-decoration: none;
}

.l-header-nav > ul > li > a:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 22px;
	height: 22px;
	transition: -webkit-transform ease-in-out 0.3s;
	transition: transform ease-in-out 0.3s;
	transition: transform ease-in-out 0.3s, -webkit-transform ease-in-out 0.3s;
}

.l-header-nav > ul > li > a:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: visibility, background ease-in-out 0.3s;
}

.l-header-nav > ul > li.is-current:nth-child(1) a:after,
.l-header-nav > ul > li:hover:nth-child(1) a:after {
	background: #00641c;
}

.l-header-nav > ul > li.is-current:nth-child(2) a:after,
.l-header-nav > ul > li:hover:nth-child(2) a:after {
	background: #69a7f2;
}

.l-header-nav > ul > li.is-current:nth-child(3) a:after,
.l-header-nav > ul > li:hover:nth-child(3) a:after {
	background: #fda33b;
}

.l-header-nav > ul > li.is-current:nth-child(4) a:after,
.l-header-nav > ul > li:hover:nth-child(4) a:after {
	background: #fcc83a;
}

.l-header-nav > ul > li.is-current:nth-child(5) a:after,
.l-header-nav > ul > li:hover:nth-child(5) a:after {
	background: #f28270;
}

/* -----------------------------------------------------
 * Footer
 * -------------------------------------------------- */

.l-footer {
	position: relative;
	height: 100%;
	margin: 40px 0 0;
	background: #ededed;
}

.l-footer .footer-information {
	width: 100%;
	padding: 8vw 0;
	background: #726e6b;
}

.l-footer .footer-information h2 {
	position: relative;
	padding: 0 0 5.33333vw;
	color: #fff;
	font-size: 6.93333vw;
	font-weight: bold;
	text-align: center;
}

.l-footer .footer-information h2:after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 12vw;
	height: 1.6vw;
	margin: auto;
	background: url(/kaigoseisansei/pf/img/ico_heading_01.jpg) no-repeat 50% 50%;
	background-size: contain;
}

.l-footer .footer-information-inner {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	padding: 0 5.33333vw;
}

.l-footer .footer-information-inner .banner {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.l-footer .footer-information-inner .banner li {
	width: 48%;
	height: 12vw;
}

.l-footer .footer-information-inner .banner li:nth-child(n + 2) {
	margin: 0 0 0 4% !important;
}

.l-footer .footer-information-inner .banner li img {
	width: 100%;
	height: auto;
}

.l-footer .footer-contact {
	width: 100%;
	padding: 10.66667vw 5.33333vw;
	background: #2e2a27;
}

.l-footer .footer-contact-inner {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	border-bottom: 1px dotted #fff;
}

.l-footer .footer-contact-inner .content {
	order: 2;
	width: 100%;
	margin: 10.66667vw 0 0;
	color: #fff;
}

.l-footer .footer-contact-inner .content h4 {
	font-size: 5.33333vw;
	font-weight: bold;
}

.l-footer .footer-contact-inner .content ul {
	margin: 8vw 0;
	font-size: 3.73333vw;
	line-height: 1.75;
}

.l-footer .footer-contact-inner .right {
	order: 1;
	width: 100%;
}

.l-footer .footer-contact-inner .right .download {
	position: relative;
	width: 100%;
	margin: 0 0 5.33333vw;
}

.l-footer .footer-contact-inner .right .download-inner {
	display: flex;
	position: relative;
	align-items: center;
	padding: 3.6vw;
	background: #fff;
	gap: 2rem;
}

.l-footer .footer-contact-inner .right .download-inner figure {
	width: 16vw;
	height: 20.66667vw;
}

.l-footer .footer-contact-inner .right .download-inner figure img {
	width: 100%;
	height: auto;
}

.l-footer .footer-contact-inner .right .download-inner p {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	width: 46vw;
	height: 100%;
}

.l-footer .footer-contact-inner .right .download-inner p img {
	width: 100%;
	height: auto;
}

.l-footer .footer-contact-inner .right .download-inner .link {
	display: flex;
	align-items: center;
	margin: 0 0 0 5.33333vw;
}

.l-footer .footer-contact-inner .right .download-inner .link img {
	width: 5.33333vw;
	height: 5.33333vw;
}

.l-footer .footer-contact-inner .right .download-note {
	margin: 10px 0 0;
	color: #fff;
}

.l-footer .footer-contact-inner .right .timeline img {
	width: 100%;
	height: auto;
}

.l-footer-copyright {
	margin: 8vw 0 0;
	color: #fff;
	font-size: 2.66667vw;
	text-align: center;
}

.mod-pagetop {
	position: fixed;
	z-index: 10;
	right: 1.33333vw;
	bottom: 2.66667vw;
	width: 10.66667vw;
	height: 10.66667vw;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.mod-pagetop.is-active {
	opacity: 1;
}

.mod-pagetop a {
	display: block;
	overflow: hidden;
	width: 10.66667vw;
	height: 10.66667vw;
	background: url(/kaigoseisansei/pf/img/ico_pagetop.png);
	background-size: contain;
	white-space: nowrap;
	text-indent: 200%;
	transition: opacity 0.2s ease-in-out;
}

.mod-pagetop a:hover {
	opacity: 0.7;
}

/* -----------------------------------------------------
 * Layout
 * -------------------------------------------------- */

.l-wrapper {
	display: flex;
	flex-direction: column;
	min-width: 1040px;
}

.mod-inner {
	width: 1000px;
	margin: 0 auto;
}

.l-breadcrumbs {
	padding: 2.66667vw;
	background: #fcf3ed;
	font-size: 1.2rem;
}

.l-breadcrumbs ol {
	letter-spacing: -0.4em;
}

.l-breadcrumbs ol > * {
	letter-spacing: normal;
}

.l-breadcrumbs ol li {
	display: inline-block;
	position: relative;
	margin: 0 0 0 38px;
}

.l-breadcrumbs ol li:before {
	content: '>';
	position: absolute;
	top: 50%;
	left: -20px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.l-breadcrumbs ol li:first-child {
	margin: 0;
}

.l-breadcrumbs ol li:first-child:before {
	display: none;
}

.l-breadcrumbs ol li a {
	color: #103c7d;
}

.l-contents {
	flex-grow: 1;
	min-width: 320px;
	background-color: #fff;
}

.l-under {
	padding: 70px 0 100px;
}

.l-under h1,
.l-under h2,
.l-under h3,
.l-under h4,
.l-under h5,
.l-under h6 {
	display: block;
	margin: 10.66667vw 0 5.33333vw;
	font-weight: bold;
	line-height: 1.22;
}

.l-under h1:first-child,
.l-under h2:first-child,
.l-under h3:first-child,
.l-under h4:first-child,
.l-under h5:first-child,
.l-under h6:first-child {
	margin-top: 0;
}

.l-under h1 {
	position: relative;
	padding: 0 0 4vw;
	font-size: 6.93333vw;
	text-align: center;
}

.l-under h1:after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 12vw;
	height: 1.6vw;
	margin: auto;
	background: url(/kaigoseisansei/pf/img/ico_heading_01.jpg) no-repeat 50% 50%;
	background-size: contain;
}

.l-under h2 {
	padding: 2.66667vw;
	background: #726e6b;
	color: #fff;
	font-size: 5.86667vw;
}

.l-under h3 {
	position: relative;
	margin: 10.66667vw 0 6.93333vw;
	padding: 2.4vw 0 2.4vw 4.8vw;
	font-size: 5.86667vw;
}

.l-under h3:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 2.13333vw;
	height: 10.66667vw;
	background: #726e6b;
}

.l-under h3:after {
	content: '';
	display: block;
	position: absolute;
	bottom: -1.6vw;
	left: 0;
	width: 100%;
	height: 0.26667vw;
	background: #726e6b;
}

.l-under h4 {
	position: relative;
	padding: 0 0 0 2.93333vw;
	font-size: 5.33333vw;
}

.l-under h4:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background: #726e6b;
}

.l-under h4:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 4px;
	width: 2px;
	height: 100%;
	background: #726e6b;
}

.l-under h4:first-child {
	margin-top: 20px;
}

.l-under h5 {
	font-size: 1.4rem;
}

.l-under h6 {
	font-size: 1.4rem;
}

.l-under p {
	width: 100%;
	margin: 2.66667vw 0;
	font-size: 4.26667vw;
	line-height: 1.7;
}

.l-under p:first-child {
	margin-top: 0;
}

.l-under p a {
	display: inline;
}

.l-under p em {
	font-weight: bold;
	font-style: normal;
}

.l-under ul {
	display: table;
	margin: 20px 0;
}

.l-under ul > li {
	position: relative;
	margin: 10px 0 0;
	padding: 0 0 0 20px;
	line-height: 1.5;
}

.l-under ul > li:first-child {
	margin-top: 0;
}

.l-under ul > li:before {
	content: '';
	position: absolute;
	top: 0.5em;
	left: 3px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #726e6b;
}

.l-under ul > li > ul {
	margin: 10px 0 0 !important;
}

.l-under ol {
	display: table;
	margin: 20px 0;
}

.l-under ol > li {
	counter-increment: count;
	position: relative;
	list-style-type: none;
	margin: 10px 0 0;
	padding: 0 0 0 4rem;
	line-height: 1.5;
}

.l-under ol > li:before {
	content: '（' counter(count) '）';
	position: absolute;
	top: 0;
	left: 0;
}

.l-under ol > li:first-child {
	margin-top: 0;
}

.l-under dl {
	margin: 20px 0;
}

.l-under dl dt {
	margin: 10px 0 0;
	font-weight: bold;
}

.l-under dl dt:first-child {
	margin-top: 0;
}

.l-under dl dd {
	margin: 10px 0 0 10px;
}

.l-under a {
	display: block;
	width: 100%;
	margin: 2.66667vw 0;
	color: #103c7d;
	font-size: 4.26667vw;
	line-height: 1.7;
	text-decoration: none;
}

.l-under a.external:after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-top: 3px;
	margin-left: 12px;
	background: url(/kaigoseisansei/pf/img/ico_external_link.png) no-repeat 50% 50% transparent;
	background-size: contain;
}

.l-under a.inline {
	display: inline;
}

.l-under p,
.l-under ul,
.l-under ol,
.l-under .mod-media,
.l-under .mod-btn,
.l-under .mod-color-box,
.l-under .mod-btn-container,
.l-under .mod-table {
	margin: 30px 0 0;
}

.l-under p:first-child,
.l-under ul:first-child,
.l-under ol:first-child,
.l-under .mod-media:first-child,
.l-under .mod-btn:first-child,
.l-under .mod-color-box:first-child,
.l-under .mod-btn-container:first-child,
.l-under .mod-table:first-child {
	margin-top: 0;
}

.l-under figure img {
	max-width: 100%;
	height: auto;
}

.l-under .mod-tab {
	display: flex;
	justify-content: space-between;
	margin: 10.66667vw 0 0;
	border-bottom: 1.06667vw solid;
}

.l-under .mod-tab.soudan {
	border-bottom-color: #69a7f2;
}

.l-under .mod-tab.livinglab {
	border-bottom-color: #fda33b;
}

.l-under .mod-tab div {
	width: calc((100% - 0.53333vw) / 3);
}

.l-under .mod-tab.col2 div {
	width: calc((100% - 0.26667vw) / 2);
}

.l-under .mod-tab a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 16.53333vw;
	margin: 0;
	border: 0.26667vw solid;
	border-bottom: none;
	color: inherit;
	font-size: 3.73333vw;
	font-weight: bold;
	line-height: 1.15;
	text-align: center;
	letter-spacing: 0.05em;
	transition: all 0.2s ease-in;
}

.l-under .mod-tab a:hover {
	text-decoration: none;
}

.l-under .mod-tab.soudan a {
	border-color: #69a7f2;
}

.l-under .mod-tab.livinglab a {
	border-color: #fda33b;
}

.l-under .mod-tab.soudan div.is-current a,
.l-under .mod-tab.soudan a:hover {
	background-color: #69a7f2;
}

.l-under .mod-tab.livinglab div.is-current a,
.l-under .mod-tab.livinglab a:hover {
	background-color: #fda33b;
}

.l-under .mod-ac-list {
	display: block;
}

.l-under .mod-ac-item {
	padding: 0;
}

.l-under .mod-ac-item:before {
	content: none;
}

.l-under .mod-ac-head {
	position: relative;
	background-color: #eadfd8;
	font-weight: bold;
}

.l-under .mod-faq-item {
	padding-left: 0;
}

.l-under .mod-faq-item:before {
	content: none;
}

.l-under .mod-faq-q {
	display: flex;
	align-items: center;
	font-weight: bold;
}

.l-under .mod-faq-q:before {
	content: 'Q.';
	display: block;
	color: #726e6b;
	font-weight: bold;
}

.l-under .mod-faq-a {
	display: flex;
	align-items: center;
	padding: 20px;
	background-color: #bde2f4;
}

.l-under .mod-faq-a:before {
	content: 'A.';
	margin-right: 15px;
	color: #726e6b;
	font-size: 36px;
	font-weight: bold;
}

.l-under .mod-faq.livinglab .mod-faq-a {
	background-color: #fcf3ed;
}

.l-under .mod-flow {
	display: block;
}

.l-under .mod-flow li {
	position: relative;
	list-style-type: none;
	background-color: #bde2f4;
	text-align: center;
}

.l-under .mod-flow li:before {
	content: none;
}

.l-under .mod-flow li:nth-last-child(n+2):after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	background-image: url('../img/ico_arrow_down_01.png');
	background-size: contain;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.l-under .mod-flow.livinglab li {
	background-color: #fee6ba;
}

.l-under .mod-flow.livinglab li:nth-last-child(n+2):after {
	background-image: url('../img/ico_arrow_down_02.png');
}

.l-under .mod-table.workshop th {
	width: 30%;
}

.l-under .mod-table.websoudan {
	position: relative;
}

.l-under .mod-table.websoudan:before {
	content: '';
	display: block;
	position: absolute;
	top: -30px;
	right: -30px;
	width: 85px;
	height: 85px;
	background: url(/kaigoseisansei/pf/img/ico_websoudan_01.png);
	background-size: contain;
}

.l-under .mod-table.websoudan-2 {
	position: relative;
}

.l-under .mod-table.websoudan-2:before {
	content: '';
	display: block;
	position: absolute;
	top: -30px;
	right: -30px;
	width: 85px;
	height: 85px;
	background: url(/kaigoseisansei/pf/img/ico_websoudan_02.png);
	background-size: contain;
}

.l-under .mod-table table {
	width: 100%;
}

.l-under .mod-table table thead {
	border-top: 1px solid #726e6b;
}

.l-under .mod-table table thead th {
	border-left: 1px solid #fff;
}

.l-under .mod-table table thead th:first-child {
	border-left: 1px solid #726e6b;
}

.l-under .mod-table table thead th:last-child {
	border-right: 1px solid #726e6b;
}

.l-under .mod-table table th,
.l-under .mod-table table td {
	padding: 13px 15px;
	border-top: 1px solid #726e6b;
	border-left: 1px solid #726e6b;
	word-wrap: break-word;
}

.l-under .mod-table table th:last-child,
.l-under .mod-table table td:last-child {
	border-right: 1px solid #726e6b;
}

.l-under .mod-table table th {
	border-bottom: 1px solid #fff;
	background-color: #726e6b;
	color: #fff;
	font-weight: bold;
	text-align: center;
	white-space: nowrap;
}

.l-under .mod-table table td {
	line-height: 1.5;
	word-break: break-all;
}

.l-under .mod-table table td.nowrap {
	white-space: nowrap;
}

.l-under .mod-table table td ul {
	margin: 20px 0 0;
}

.l-under .mod-table table td .inline {
	display: inline;
}

.l-under .mod-table table tbody tr:last-child th,
.l-under .mod-table table tbody tr:last-child td,
.l-under .mod-table table tbody td.last {
	border-bottom: 1px solid #726e6b;
}

.l-under .mod-table table a.external:after {
	content: '';
	display: inline-block;
	width: 4vw;
	height: 4vw;
	margin-left: 1.33333vw;
	background: url(/kaigoseisansei/pf/img/ico_external_link.png) no-repeat 50% 50%;
	background-size: contain;
	vertical-align: middle;
}

.l-under .mod-table table a.external.inline {
	display: inline;
}

.l-under .mod-table table figure {
	margin: 0;
}

.l-under .mod-table.fixed table {
	table-layout: fixed;
}

.l-under .mod-table.middle table th,
.l-under .mod-table.middle table td {
	vertical-align: middle;
}

.l-under .mod-table.middle table th:nth-child(4) {
	width: 15%;
}

.l-under .mod-heading-icon {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0;
}

.l-under .mod-heading-icon + * {
	margin: 5.33333vw 0 0;
}

.l-under .mod-heading-icon:before {
	display: none;
}

.l-under .mod-heading-icon:after {
	display: none;
}

.l-under .mod-heading-icon img {
	width: 18.66667vw;
	height: 18.66667vw;
	margin: 0;
}

.l-under .mod-heading-icon span {
	flex: 1;
	align-items: center;
	font-size: 5.33333vw;
	font-weight: bold;
	letter-spacing: 0.05em;
	fmargin: 0 0 0 2.66667vw;
}

.l-under .mod-heading-icon span.mod-p {
	font-size: 4.26667vw;
	font-weight: normal;
	line-height: 1.7;
}

.l-under .l-business {
	border-top: none;
}

.l-under .mod-img-map {
	max-width: 600px;
	margin: 30px auto;
}

.l-under .mod-img-map img {
	width: 100%;
}

.l-under .l-under-soudan {
	padding: 70px 0 0;
}

.col-2 {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin: 10.66667vw 0 0;
}

.col-2 .mod-col {
	display: flex;
	flex-direction: column;
	margin-top: 10.66667vw;
}

.col-2 .mod-col:nth-child(even) {
	margin: 5.33333vw 0 0;
}

.col-2 .mod-col:nth-child(1) {
	margin-top: 0;
}

.col-2 .mod-col.img {
	display: flex;
}

.col-2 .mod-col h3 {
	margin: 0 0 8vw;
}

.col-2 .mod-col h4 {
	margin: 0 0 5.33333vw;
}

.col-2 .mod-col h3 + *,
.col-2 .mod-col h4 + * {
	margin-top: 0;
}

.col-2 .mod-col p a {
	display: inline;
}

.col-2 .mod-col img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.col-2 .mod-col img.soudan-img {
	width: 57.33333vw;
}

.l-news {
	position: relative;
	margin: 10.66667vw 0;
	padding: 0 0 8vw;
}

.l-news.full {
	margin: 0;
	padding: 0;
}

.l-news h2 {
	padding: 0 0 2.66667vw;
	border-bottom: 1px dashed #726e6b;
	font-size: 5.33333vw;
	font-weight: bold;
}

.l-news ul {
	display: block;
}

.l-news ul li {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	margin: 2.66667vw 0 0;
	border-bottom: 1px dashed #726e6b;
}

.l-news ul li:before {
	display: none;
}

.l-news ul li p {
	width: auto;
	font-size: 3.73333vw;
	line-height: 1.7;
}

.l-news ul li p a {
	display: inline;
	margin: 0;
	color: #103c7d;
	text-decoration: none;
	letter-spacing: 0.05em;
}

.l-news ul li p a:hover {
	text-decoration: underline;
}

.l-news ul li p a.is-disabled {
	color: #9a9a9a;
	pointer-events: none;
}

.l-news ul li p:nth-child(1) {
	font-size: 4.26667vw;
	font-weight: bold;
}

.l-news ul li p:nth-child(3) {
	width: 100%;
	margin: 1.33333vw 0 2.66667vw;
}

.l-news ul li span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 22.13333vw;
	height: 6.66667vw;
	margin: 0 0 0 2.66667vw;
	background: #eadfd8;
	font-size: 3.46667vw;
}

.l-news .list {
	position: absolute;
	right: 0;
	bottom: 0;
}

.l-news .list a {
	position: relative;
	padding: 0 0 0 5.86667vw;
	color: #2e2a27;
	font-size: 4.26667vw;
	font-weight: bold;
	text-decoration: none;
	transition: opacity 0.2s ease-in-out;
}

.l-news .list a:hover {
	opacity: 0.7;
}

.l-news .list a:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 19px;
	height: 19px;
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_01.png) no-repeat 50% 50%;
	background-size: contain;
	transition: -webkit-transform ease-in-out 0.3s;
	transition: transform ease-in-out 0.3s;
	transition: transform ease-in-out 0.3s, -webkit-transform ease-in-out 0.3s;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.l-news-child h1 {
	position: relative;
	font-size: 5.86667vw;
	text-align: left;
}

.l-news-child h1:before {
	display: none;
}

.l-news-child h1:after {
	display: none;
}

.l-news-child .date {
	text-align: right;
}

.l-news-child > a {
	display: inline-block;
	width: auto;
}

.l-news-child > a:hover {
	text-decoration: underline;
}

.l-news-child ul > li > p {
	display: block;
	margin: 10px 0 !important;
}

.l-relation {
	word-break: break-all;
}

.l-relation ul {
	width: 100%;
	margin: 0 auto;
}

.l-relation ul .banner > a {
	width: 48%;
}

.l-relation ul .banner > a:nth-child(2) {
	margin-left: 10px;
}

.l-relation ul .banner > a img {
	max-width: 100%;
	height: auto;
}

.l-relation ul .banner.long a {
	width: 100%;
	max-width: 490px;
}

.l-relation ul .banner.long a img {
	width: 100%;
	height: auto;
}

.l-relation ul .download {
	position: relative;
	max-width: 490px;
	margin: 0 0 5.33333vw;
	border: 1px solid #000;
}

.l-relation ul .download-inner {
	display: flex;
	position: relative;
	padding: 3.6vw;
	background: #fff;
}

.l-relation ul .download-inner figure {
	width: 16vw;
	height: 20.66667vw;
	margin: 0;
}

.l-relation ul .download-inner figure img {
	max-width: 100%;
	height: auto;
}

.l-relation ul .download-inner p {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	width: 46vw;
	height: 100%;
	margin: 4vw 0 0 3.33333vw;
}

.l-relation ul .download-inner p img {
	width: 100%;
	height: auto;
}

.l-relation ul .download-inner .link {
	display: flex;
	align-items: center;
	margin: 0 0 0 12vw;
}

.l-relation ul .download-inner .link img {
	width: 5.33333vw;
	height: 5.33333vw;
}

.l-relation ul li > a.link {
	display: inline-block;
	width: auto;
	margin: 0;
}

.l-relation ul li > a.link:hover {
	text-decoration: underline;
}

.l-relation .download {
	position: relative;
	max-width: 490px;
	margin: 0 0 5.33333vw;
	border: 1px solid #000;
}

.l-relation .download-inner {
	display: flex;
	position: relative;
	align-items: center;
	padding: 3.6vw;
	background: #fff;
	gap: 2rem;
}

.l-relation .download-inner figure {
	width: 16vw;
	height: 20.66667vw;
	margin: 0;
}

.l-relation .download-inner figure img {
	max-width: 100%;
	height: auto;
}

.l-relation .download-inner p {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	width: 46vw;
	height: 100%;
	margin: 0;
}

.l-relation .download-inner p img {
	width: 100%;
	height: auto;
}

.l-relation .download-inner .link {
	display: flex;
	align-items: center;
	margin: 0 0 0 12vw;
}

.l-relation .download-inner .link img {
	width: 5.33333vw;
	height: 5.33333vw;
}

.mod-red {
	color: #dd2828;
	font-size: 3.73333vw;
}

.mod-red2 {
	color: #dd2828;
}

.mod-caution {
	display: block;
	margin: 2.66667vw 0 0;
	font-size: 3.2vw;
}

.mod-caution.bold {
	font-weight: bold;
	text-align: center;
}

.mod-attention {
	display: block;
	color: #dd2828;
	text-align: center;
}

.l-business {
	border-top: 2px double #726e6b;
}

.l-business .mod-p {
	margin: 40px 0 0;
}

.l-business figure {
	margin: 8vw auto 0;
}

.l-business figure img {
	width: 100%;
	height: auto;
}

.l-business-contents {
	margin: 10.66667vw 0 0;
}

.l-business-contents h3 {
	position: relative;
	padding: 0 0 4.53333vw;
	font-size: 6.93333vw;
	font-weight: bold;
}

.l-business-contents h3:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 12vw;
	height: 1.6vw;
	background: url(/kaigoseisansei/pf/img/ico_heading_01.jpg) no-repeat 50% 50%;
	background-size: contain;
}

.l-business-contents h4 {
	font-size: 5.33333vw;
	font-weight: bold;
}

.l-other .mod-p {
	margin: 40px 0 0;
}

.mod-btn {
	display: flex !important;
	position: relative;
	justify-content: center;
	align-items: center;
	height: 16vw !important;
	margin: 8vw auto !important;
	border: 1px solid #726e6b;
	color: #000 !important;
	font-size: 3.73333vw !important;
	font-weight: bold !important;
	line-height: 1.25 !important;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.2s ease-in-out;
}

.mod-btn:hover {
	opacity: 0.7;
}

.mod-btn:hover,
.mod-btn:visited {
	color: #000 !important;
	text-decoration: none !important;
}

.mod-btn:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 20px;
	width: 22px;
	height: 22px;
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_circle_06.png) no-repeat 50% 50%;
	background-size: contain;
	transition: -webkit-transform ease-in-out 0.3s;
	transition: transform ease-in-out 0.3s;
	transition: transform ease-in-out 0.3s, -webkit-transform ease-in-out 0.3s;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.mod-btn.soudan {
	border: none;
	background: #69a7f2;
	font-size: 4.8vw !important;
}

.mod-btn.soudan:before {
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_circle_05.png) no-repeat 50% 50%;
	background-size: contain;
}

.mod-btn.livinglab {
	border: none;
	background: #fda33b;
	font-size: 4.8vw !important;
}

.mod-btn.livinglab:before {
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_circle_05.png) no-repeat 50% 50%;
	background-size: contain;
}

.mod-btn.left {
	margin: 8vw auto 2.66667vw 0 !important;
}

.mod-btn.left + a {
	margin: 8vw auto 2.66667vw 0 !important;
}

/* =====================================================
 * Page
 * ================================================== */

/* -----------------------------------------------------
 * Home
 * -------------------------------------------------- */

.l-home .kv {
	padding: 3rem 0 0;
}

.l-home .kv picture {
	position: relative;
}

.l-home .kv picture source {
	width: 100%;
	height: auto;
	border-radius: 4rem;
}

.l-home .kv picture img {
	width: 100%;
	height: auto;
	border-radius: 4rem;
}

.l-home .top-bnr {
	margin-top: 30px;
	text-align: center;
}

.l-home section {
	padding: 16vw 0;
	border-top: 2px double #726e6b;
}

.l-home section.consult .col-2 {
	position: relative;
	margin: 50px 0 0;
}

.l-home section.consult .col-2:first-child {
	margin: 0;
}

.l-home section.consult .col-2 .mod-col h3 {
	position: relative;
	padding: 0 0 4.53333vw;
	font-size: 6.93333vw;
	font-weight: bold;
}

.l-home section.consult .col-2 .mod-col h3:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 12vw;
	height: 1.6vw;
	background: url(/kaigoseisansei/pf/img/ico_heading_01.jpg) no-repeat 50% 50%;
	background-size: contain;
}

.l-home section.consult .col-2 .mod-col .detail-box {
	position: relative;
	width: 100%;
	padding: 8vw 7.33333vw;
}

.l-home section.consult .col-2 .mod-col .detail-box .details {
	display: flex;
	position: absolute;
	right: 0;
	bottom: -6.66667vw;
	width: 64vw;
	height: 13.33333vw;
}

.l-home section.consult .col-2 .mod-col .detail-box .details a {
	display: flex;
	position: absolute;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #2e2a27;
	font-size: 4.26667vw;
	font-weight: bold;
	text-decoration: none;
}

.l-home section.consult .col-2 .mod-col .detail-box .details a:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 2.66667vw;
	width: 5.33333vw;
	height: 5.33333vw;
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_circle_05.png) no-repeat 50% 50%;
	background-size: contain;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.l-home section.consult .col-2 .mod-col .detail-box .movie {
	display: flex;
	position: absolute;
	right: 0;
	bottom: -20.26667vw;
	width: 64vw;
	height: 13.33333vw;
}

.l-home section.consult .col-2 .mod-col .detail-box .movie a {
	display: flex;
	position: absolute;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #2e2a27;
	font-size: 4.26667vw;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}

.l-home section.consult .col-2 .mod-col .detail-box .movie a:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 2.66667vw;
	width: 5.33333vw;
	height: 5.33333vw;
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_circle_05.png) no-repeat 50% 50%;
	background-size: contain;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.l-home section.consult .col-2 .mod-col .detail-box .movie p {
	display: flex;
	position: absolute;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #2e2a27;
	font-size: 4.26667vw;
	font-weight: bold;
	text-decoration: none;
}

.l-home section.consult .col-2 .mod-col .detail-box .movie p:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 2.66667vw;
	width: 5.33333vw;
	height: 5.33333vw;
	background: url(/kaigoseisansei/pf/img/ico_arrow_right_circle_05.png) no-repeat 50% 50%;
	background-size: contain;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.l-home section.consult .col-2 .mod-col.img {
	margin: 0 2% 0 0;
}

.l-home section.consult .col-2 .mod-col.img figure {
	position: absolute;
	right: 0;
	left: 0;
	width: 57.33333vw;
	margin: auto;
}

.l-home section.consult .col-2 .mod-col.img figure img {
	max-width: 100%;
}

.l-home section.consult .col-2:nth-child(1) .mod-col .detail-box {
	margin: 64.4vw 0 22.93333vw;
	background: #bde2f4;
}

.l-home section.consult .col-2:nth-child(1) .mod-col .detail-box .details,
.l-home section.consult .col-2:nth-child(1) .mod-col .detail-box .movie {
	background: #69a7f2;
}

.l-home section.consult .col-2:nth-child(1) .mod-col figure {
	top: 25.33333vw;
}

.l-home section.consult .col-2:nth-child(2) .mod-col .detail-box {
	margin: 65.2vw 0 22.93333vw;
	background: #fee6ba;
}

.l-home section.consult .col-2:nth-child(2) .mod-col .detail-box .details,
.l-home section.consult .col-2:nth-child(2) .mod-col .detail-box .movie {
	background: #fda33b;
}

.l-home section.consult .col-2:nth-child(2) .mod-col figure {
	top: 35.46667vw;
}

.l-home section.consult .col-2:nth-child(3) .mod-col .detail-box {
	margin: 61.46667vw 0 6.66667vw;
	background: #d1eac3;
}

.l-home section.consult .col-2:nth-child(3) .mod-col figure {
	top: 25.2vw;
}

/* -----------------------------------------------------
 * News
 * -------------------------------------------------- */

.l-news-under {
	margin: 80px 0;
}

.mod-block-newsImg {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.mod-block-newsImg.mw-600 {
	max-width: 600px;
}

.mod-block-newsImg .mod-newsImg-item.col3 {
	width: calc(100% / 3 - 20px / 3);
}

.mod-block-newsImg .mod-newsImg-item.col2 {
	width: calc(100% / 2 - 20px / 3);
}

.mod-block-newsImg .mod-newsImg-item.col2:nth-of-type(n + 3) {
	margin-top: 10px;
}

.mod-block-newsImg .mod-newsImg-item img {
	width: 100%;
}

.mod-block-newsVideo {
	max-width: 700px;
	margin: 0 auto 40px;
}

.mod-block-newsVideo video {
	width: 100%;
}

/* modaal
-------------------------------------------------- */

.modaal-content-container {
	width: 100%;
	height: 100%;
}

.modaal-close {
	position: absolute;
	top: -60px;
	right: -10px;
}

.modal-inner {
	position: relative;
}

.modal-inner img {
	width: 100%;
}

.modaal-inner-wrapper {
	padding: 80px 2.66667vw;
}

.modaal-container {
	max-width: 800px;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
	background: #fda33b;
}

@media print, screen and (min-width: 768px) {
	.is-pc-hide {
		display: none !important;
	}

	.is-pc-show {
		display: block !important;
	}

	.is-br-pc-show {
		display: inline-block !important;
	}

	.check-media {
		display: none;
	}

	.mod-heading1,
  .mod-heading2,
  .mod-heading3,
  .mod-heading4,
  .mod-heading5,
  .mod-heading6 {
		margin: 40px 0 20px;
	}

	.mod-heading1 {
		padding: 0 0 20px;
		font-size: 3.0rem;
	}

	.mod-heading1:after {
		width: 45px;
		height: 6px;
	}

	.mod-heading2 {
		margin: 50px 0 20px;
		padding: 10px 0 10px 20px;
		font-size: 2.6rem;
	}

	.mod-heading3 {
		margin: 50px 0 26px;
		padding: 7px 0 7px 20px;
		font-size: 2.6rem;
	}

	.mod-heading3:before {
		width: 8px;
		height: 40px;
	}

	.mod-heading3:after {
		bottom: -6px;
		height: 1px;
	}

	.mod-heading4 {
		padding: 0 0 0 20px;
		font-size: 2.2rem;
	}

	.mod-p {
		margin: 10px 0;
		font-size: 1.6rem;
	}

	.mod-a {
		margin: 10px 0;
		font-size: 1.6rem;
	}

	.mod-a:hover {
		text-decoration: underline;
	}

	.l-header {
		min-width: 1000px;
	}

	.l-header-top-right-box {
		flex-direction: row;
		padding: 5px 7px;
	}

	.l-header-top-right-box:nth-of-type(2) {
		margin-top: 0;
		margin-left: 1px;
	}

	.l-header-top-right-box span {
		font-size: 1.3rem;
	}

	.l-header-top-right-inner {
		height: 40px;
		margin-left: 7px;
	}

	.l-header-top-right-inner a {
		padding: 0 10px 0 24px;
		font-size: 1.4rem;
		transition: opacity 0.2s ease-in-out;
	}

	.l-header-top-right-inner a:hover {
		opacity: 0.7;
	}

	.l-header-cv a:hover:before {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}

	.l-header-cv a:hover:after {
		visibility: visible;
		background: #726e6b;
	}

	.l-header-menu {
		height: 50px;
	}

	.l-header-nav {
		height: 100%;
	}

	.l-header-nav > ul {
		height: 50px;
	}

	.l-header-nav > ul > li.is-current a:before,
  .l-header-nav > ul > li:hover a:before {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}

	.l-header-nav > ul > li.is-current a:after,
  .l-header-nav > ul > li:hover a:after {
		visibility: visible;
	}

	.l-header-nav > ul > li ul {
		visibility: hidden;
		position: absolute;
	}

	.l-header-nav > ul > li.is-active > ul {
		display: flex;
		visibility: visible;
		position: absolute;
		top: 50px;
		left: 50%;
		flex-direction: column;
		width: 250px;
		box-shadow: 0 0 11px rgba(0, 0, 0, 0.3);
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.l-header-nav > ul > li.is-active > ul:after {
		content: '';
		position: absolute;
		top: -10px;
		right: 0;
		left: 0;
		width: 0;
		height: 0;
		margin: auto;
		border-width: 10px 8px 0 10px;
		border-style: solid;
		border-color: #fff transparent transparent transparent;
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	.l-header-nav > ul > li.is-active > ul > li {
		height: 60px;
		border-top: 1px solid #eadfd8;
		background: #fff;
	}

	.l-header-nav > ul > li.is-active > ul > li:nth-of-type(1) {
		border-top: none;
	}

	.l-header-nav > ul > li.is-active > ul > li a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		color: #000;
		font-size: 1.4rem;
		font-weight: bold;
		line-height: 1.25;
		text-align: center;
		text-decoration: none;
		transition: opacity 0.2s ease-in-out;
	}

	.l-header-nav > ul > li.is-active > ul > li a:hover {
		opacity: 0.7;
	}

	.l-footer .footer-information {
		padding: 40px 0;
	}

	.l-footer .footer-information h2 {
		padding: 0 0 20px;
		font-size: 3.0rem;
	}

	.l-footer .footer-information h2:after {
		width: 45px;
		height: 6px;
	}

	.l-footer .footer-information-inner {
		flex-direction: row;
		max-width: 1000px;
		margin: 0 auto;
		padding: 0;
	}

	.l-footer .footer-information-inner .banner {
		justify-content: center;
	}

	.l-footer .footer-information-inner .banner li {
		width: 235px;
		height: 66px;
	}

	.l-footer .footer-information-inner .banner li:nth-child(n + 2) {
		margin: auto;
	}

	.l-footer .footer-information-inner .banner li:nth-child(n + 2) {
		margin: 0 0 0 4% !important;
	}

	.l-footer .footer-information-inner .banner li a {
		transition: opacity 0.2s ease-in-out;
	}

	.l-footer .footer-information-inner .banner li a:hover {
		opacity: 0.7;
	}

	.l-footer .footer-contact {
		padding: 50px 0 40px;
	}

	.l-footer .footer-contact-inner {
		flex-direction: row;
		max-width: 1000px;
		padding: 0 0 40px;
	}

	.l-footer .footer-contact-inner .content {
		order: 1;
		width: 50%;
		margin: 0;
	}

	.l-footer .footer-contact-inner .content h4 {
		font-size: 2.0rem;
	}

	.l-footer .footer-contact-inner .content ul {
		margin: 30px 0 0;
		font-size: 1.6rem;
	}

	.l-footer .footer-contact-inner .right {
		order: 2;
		max-width: 450px;
		margin: 0 0 0 20px;
	}

	.l-footer .footer-contact-inner .right .download {
		margin: 0 0 20px 0;
		transition: opacity 0.2s ease-in-out;
	}

	.l-footer .footer-contact-inner .right .download:hover {
		opacity: 0.7;
	}

	.l-footer .footer-contact-inner .right .download-inner {
		padding: 20px;
	}

	.l-footer .footer-contact-inner .right .download-inner figure {
		width: 86px;
		height: 125px;
	}

	.l-footer .footer-contact-inner .right .download-inner p {
		width: 216px;
		height: 100%;
	}

	.l-footer .footer-contact-inner .right .download-inner .link {
		margin: 0 0 0 25px;
	}

	.l-footer .footer-contact-inner .right .download-inner .link img {
		width: 20px;
		height: 20px;
	}

	.l-footer-copyright {
		margin: 40px 0 0;
		font-size: 1.2rem;
	}

	.mod-pagetop {
		right: 10px;
		bottom: 20px;
		width: 60px;
		height: 60px;
	}

	.mod-pagetop.is-fix {
		position: absolute;
		top: -84px;
		bottom: auto;
	}

	.mod-pagetop a {
		width: 60px;
		height: 60px;
	}

	.l-breadcrumbs {
		padding: 10px;
	}

	.l-breadcrumbs ol {
		max-width: 1000px;
		margin: 0 auto;
	}

	.l-under h1,
  .l-under h2,
  .l-under h3,
  .l-under h4,
  .l-under h5,
  .l-under h6 {
		margin: 40px 0 20px;
	}

	.l-under h1 {
		padding: 0 0 20px;
		font-size: 3.0rem;
	}

	.l-under h1:after {
		width: 45px;
		height: 6px;
	}

	.l-under h2 {
		margin: 50px 0 20px;
		padding: 10px 0 10px 20px;
		font-size: 2.6rem;
	}

	.l-under h3 {
		margin: 50px 0 26px;
		padding: 7px 0 7px 20px;
		font-size: 2.6rem;
	}

	.l-under h3:before {
		width: 8px;
		height: 40px;
	}

	.l-under h3:after {
		bottom: -6px;
		height: 1px;
	}

	.l-under h4 {
		padding: 0 0 0 20px;
		font-size: 2.2rem;
	}

	.l-under p {
		margin: 10px 0;
		font-size: 1.6rem;
	}

	.l-under a {
		margin: 10px 0;
		font-size: 1.6rem;
	}

	.l-under a:hover {
		text-decoration: underline;
	}

	.l-under figure {
		width: 100%;
		margin: 40px auto;
		text-align: center;
	}

	.l-under .mod-tab {
		margin: 70px 0 0;
		border-bottom-width: 4px;
	}

	.l-under .mod-tab div {
		width: calc((100% - 4px) / 3);
	}

	.l-under .mod-tab.col2 div {
		width: calc((100% - 2px) / 2);
	}

	.l-under .mod-tab a {
		height: 60px;
		border-width: 1px;
		font-size: 1.8rem;
	}

	.l-under .mod-tab a.external {
		position: relative;
		padding: 0 18px 0 0;
	}

	.l-under .mod-tab a.external:after {
		content: '';
		display: block;
		position: absolute;
		top: 2px;
		right: 0;
		width: 16px;
		height: 16px;
		background: url(/kaigoseisansei/pf/img/ico_external_link.png) no-repeat 50% 50%;
		background-size: contain;
	}

	.l-under .mod-ac-item:nth-child(n+2) {
		margin-top: 30px;
	}

	.l-under .mod-ac-head {
		padding: 5.5px 20px 5.5px;
		font-size: 2rem;
	}

	.l-under .mod-ac-body {
		padding: 12px 20px 0;
	}

	.l-under .mod-faq-item {
		margin-top: 10px;
	}

	.l-under .mod-faq-q {
		padding: 20px;
		font-size: 2.2rem;
	}

	.l-under .mod-faq-q:before {
		margin-right: 15px;
		font-size: 36px;
	}

	.l-under .mod-faq-a {
		padding: 20px;
	}

	.l-under .mod-faq-a:before {
		margin-right: 15px;
		font-size: 36px;
	}

	.l-under .mod-flow li {
		padding: 35px;
	}

	.l-under .mod-flow li:nth-last-child(n+2):after {
		bottom: -41px;
		width: 30px;
		height: 31px;
	}

	.l-under .mod-flow li:nth-last-child(n+2) {
		margin-bottom: 75px;
	}

	.l-under .mod-table table a.external:after {
		width: 16px;
		height: 16px;
		margin-left: 10px;
	}

	.l-under .mod-table table img {
		max-width: inherit;
	}

	.l-under .mod-heading-icon + * {
		margin: 20px 0 0;
	}

	.l-under .mod-heading-icon img {
		width: 80px;
		height: 80px;
	}

	.l-under .mod-heading-icon span {
		margin: 0 0 0 20px;
		font-size: 2.2rem;
	}

	.l-under .mod-heading-icon span.mod-p {
		font-size: 1.6rem;
	}

	.col-2 {
		flex-direction: row;
		margin: 40px 0 0;
	}

	.col-2 .mod-col {
		width: 48%;
		margin-top: 0;
	}

	.col-2 .mod-col:nth-child(odd) {
		margin: 0 2% 0 0;
	}

	.col-2 .mod-col:nth-child(even) {
		margin: 0 0 0 2%;
	}

	.col-2 .mod-col:nth-child(n + 3) {
		margin-top: 40px;
	}

	.col-2 .mod-col h3 {
		margin: 0 0 30px;
	}

	.col-2 .mod-col h4 {
		margin: 0 0 20px;
	}

	.col-2 .mod-col img.soudan-img {
		width: 361px;
	}

	.l-news {
		width: 800px;
		margin: 50px auto;
		padding: 0 0 51px;
	}

	.l-news.full {
		width: 100%;
	}

	.l-news.full ul {
		width: 100%;
		border-top: 1px dashed #726e6b;
	}

	.l-news.full ul li {
		margin: 0;
		padding: 22px 0;
		border-bottom: 1px dashed #726e6b;
	}

	.l-news h2 {
		padding: 0 0 10px;
		font-size: 2.4rem;
	}

	.l-news ul li {
		flex-wrap: nowrap;
		margin: 22px 0 0;
		border-bottom: none;
	}

	.l-news ul li p {
		font-size: 1.6rem;
	}

	.l-news ul li p a.external {
		position: relative;
		padding: 0 18px 0 0;
	}

	.l-news ul li p a.external:after {
		content: '';
		display: block;
		position: absolute;
		top: 2px;
		right: 0;
		width: 16px;
		height: 16px;
		background: url(/kaigoseisansei/pf/img/ico_external_link.png) no-repeat 50% 50%;
		background-size: contain;
	}

	.l-news ul li p:nth-child(1) {
		font-size: 1.8rem;
	}

	.l-news ul li p:nth-child(3) {
		flex: 1;
		width: auto;
		margin: 0 0 0 20px;
	}

	.l-news ul li span {
		width: 88px;
		height: 24px;
		margin: 0 0 0 20px;
		font-size: 1.4rem;
	}

	.l-news .list a {
		padding: 0 0 0 26px;
		font-size: 1.7rem;
	}

	.l-news-child h1 {
		font-size: 2.6rem;
	}

	.l-news-child > a.external {
		position: relative;
		padding: 0 28px 0 0;
	}

	.l-news-child > a.external:after {
		content: '';
		display: block;
		position: absolute;
		top: 5px;
		right: 0;
		width: 16px;
		height: 16px;
		background: url(/kaigoseisansei/pf/img/ico_external_link.png) no-repeat 50% 50%;
		background-size: contain;
	}

	.l-relation ul .banner > a {
		transition: opacity 0.2s ease-in-out;
	}

	.l-relation ul .banner > a:hover {
		opacity: 0.7;
	}

	.l-relation ul .download {
		margin: 0 0 20px 0;
		transition: opacity 0.2s ease-in-out;
	}

	.l-relation ul .download:hover {
		opacity: 0.7;
	}

	.l-relation ul .download-inner {
		padding: 20px;
	}

	.l-relation ul .download-inner figure {
		width: 86px;
		height: 125px;
	}

	.l-relation ul .download-inner p {
		width: 247px;
		height: 100%;
		margin: 18px 0 0 20px;
	}

	.l-relation ul .download-inner .link {
		margin: 0 0 0 77px;
	}

	.l-relation ul .download-inner .link img {
		width: 20px;
		height: 20px;
	}

	.l-relation ul li > a.link.external {
		position: relative;
		padding: 0 28px 0 0;
	}

	.l-relation ul li > a.link.external:after {
		content: '';
		display: block;
		position: absolute;
		top: 5px;
		right: 0;
		width: 16px;
		height: 16px;
		background: url(/kaigoseisansei/pf/img/ico_external_link.png) no-repeat 50% 50%;
		background-size: contain;
	}

	.l-relation .download {
		margin: 0 0 20px 0;
		transition: opacity 0.2s ease-in-out;
	}

	.l-relation .download:hover {
		opacity: 0.7;
	}

	.l-relation .download-inner {
		padding: 20px;
	}

	.l-relation .download-inner figure {
		width: 86px;
		height: 125px;
	}

	.l-relation .download-inner p {
		width: 216px;
		height: 100%;
	}

	.l-relation .download-inner .link {
		margin: 0 0 0 77px;
	}

	.l-relation .download-inner .link img {
		width: 20px;
		height: 20px;
	}

	.mod-red {
		font-size: 1.4rem;
	}

	.mod-caution {
		margin: 10px 0 0;
		font-size: 1.2rem;
	}

	.mod-attention {
		margin-top: 50px;
		font-size: 1.4rem;
	}

	.l-business figure {
		max-width: 100%;
		margin: 40px auto 0;
	}

	.l-business-contents {
		margin: 50px 0 0;
	}

	.l-business-contents h3 {
		padding: 0 0 22px;
		font-size: 2.7rem;
	}

	.l-business-contents h3:after {
		width: 45px;
		height: 6px;
	}

	.l-business-contents h4 {
		font-size: 2.2rem;
	}

	.mod-btn {
		width: 280px !important;
		height: 60px !important;
		margin: 30px auto !important;
		font-size: 1.4rem !important;
	}

	.mod-btn.soudan {
		width: 300px !important;
		font-size: 1.6rem !important;
	}

	.mod-btn.livinglab {
		width: 300px !important;
		font-size: 1.6rem !important;
	}

	.mod-btn.left {
		margin: 30px auto 30px 0 !important;
	}

	.mod-btn.left + a {
		margin: 0 auto 30px 0 !important;
	}

	.l-home section {
		padding: 50px 40px 60px;
	}

	.l-home section.consult .col-2 .mod-col h3 {
		padding: 0 0 22px;
		font-size: 2.7rem;
	}

	.l-home section.consult .col-2 .mod-col h3:after {
		width: 45px;
		height: 6px;
	}

	.l-home section.consult .col-2 .mod-col .detail-box {
		padding: 30px;
	}

	.l-home section.consult .col-2 .mod-col .detail-box .details {
		bottom: -30px;
		width: 280px;
		height: 60px;
	}

	.l-home section.consult .col-2 .mod-col .detail-box .details a {
		font-size: 1.8rem;
		transition: opacity 0.2s ease-in-out;
	}

	.l-home section.consult .col-2 .mod-col .detail-box .details a:hover {
		opacity: 0.7;
	}

	.l-home section.consult .col-2 .mod-col .detail-box .details a:before {
		left: 20px;
		width: 22px;
		height: 22px;
	}

	.l-home section.consult .col-2 .mod-col .detail-box .movie {
		bottom: -92px;
		width: 280px;
		height: 60px;
	}

	.l-home section.consult .col-2 .mod-col .detail-box .movie a {
		font-size: 1.8rem;
		transition: opacity 0.2s ease-in-out;
	}

	.l-home section.consult .col-2 .mod-col .detail-box .movie a:hover {
		opacity: 0.7;
	}

	.l-home section.consult .col-2 .mod-col .detail-box .movie a:before {
		left: 20px;
		width: 22px;
		height: 22px;
	}

	.l-home section.consult .col-2 .mod-col .detail-box .movie p {
		font-size: 1.8rem;
	}

	.l-home section.consult .col-2 .mod-col .detail-box .movie p:before {
		left: 20px;
		width: 22px;
		height: 22px;
	}

	.l-home section.consult .col-2 .mod-col.img figure {
		position: relative;
		margin: 15px auto;
	}

	.l-home section.consult .col-2:nth-child(1) .mod-col .detail-box {
		margin: 30px 0 112px;
	}

	.l-home section.consult .col-2:nth-child(1) .mod-col figure {
		top: 0;
		width: 361px;
	}

	.l-home section.consult .col-2:nth-child(2) .mod-col:nth-child(1) {
		order: 2;
	}

	.l-home section.consult .col-2:nth-child(2) .mod-col:nth-child(2) {
		order: 1;
	}

	.l-home section.consult .col-2:nth-child(2) .mod-col .detail-box {
		margin: 30px 0 112px;
	}

	.l-home section.consult .col-2:nth-child(2) .mod-col figure {
		top: 0;
		order: 1;
		width: 348px;
	}

	.l-home section.consult .col-2:nth-child(3) .mod-col .detail-box {
		margin: 30px 0 50px;
	}

	.l-home section.consult .col-2:nth-child(3) .mod-col figure {
		top: 0;
		width: 362px;
	}
}

@media screen and (max-width: 767px) {
	.is-sp-show {
		display: block !important;
	}

	.is-sp-hide {
		display: none !important;
	}

	.is-br-sp-show {
		display: inline-block !important;
	}

	.mod-ul > li {
		font-size: 4.26667vw;
	}

	.mod-ol > li {
		font-size: 4.26667vw;
	}

	.l-header {
		position: fixed;
		top: 0;
		left: 0;
		height: 18.66667vw;
		padding: 0;
		box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
	}

	.l-header-inner {
		width: calc(100% - 10.66667vw);
		height: 100%;
	}

	.l-header-inner-menu {
		width: 100%;
	}

	.l-header-top {
		position: static;
		min-width: auto;
		height: 100%;
		padding: 0;
	}

	.l-header-logo a > img {
		width: 10.66667vw;
		height: 10.66667vw;
	}

	.l-header-logo span {
		width: 53.33333vw;
	}

	.l-header-top-right-inner a:before {
		left: 2.66667vw;
		width: 5.33333vw;
		height: 5.33333vw;
	}

	.l-header-toggle {
		display: block;
		position: relative;
		width: 8vw;
		height: 5.6vw;
	}

	.l-header-cv a {
		width: 100%;
		padding: 0 0 0 6.66667vw;
		font-size: 4.26667vw;
	}

	.l-header-cv a:before {
		top: 50%;
		width: 3.2vw;
		height: 4vw;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.l-header-cv a:after {
		display: none;
	}

	.l-header-menu {
		display: none;
		position: fixed;
		z-index: 9;
		top: 18.66667vw;
		left: 0;
		overflow-y: auto;
		width: 100%;
		height: calc(100% - 18.66667vw);
		margin: 0;
		padding: 5.33333vw 5.33333vw 14.66667vw;
		background-color: #fff;
		box-shadow: 0 0 0.8vw rgba(0, 0, 0, 0.16);
	}

	.l-header-menu.is-open {
		display: flex;
		flex-direction: column;
	}

	.l-header-menu .mod-inner {
		width: 100%;
		margin: 0;
		margin-bottom: 5.33333vw;
	}

	.l-header-menu .mod-inner .l-header-cv {
		margin: 6.66667vw 0 0;
	}

	.l-header-nav > ul {
		flex-direction: column;
		border-top: 1px dashed #726e6b;
	}

	.l-header-nav > ul > li {
		display: flex;
		flex-direction: column;
		padding: 5.33333vw 0;
		border-bottom: 1px dashed #726e6b;
		font-size: 4.8vw;
	}

	.l-header-nav > ul > li.external:after {
		position: absolute;
		right: 0;
		width: 4.26667vw;
		height: 4.26667vw;
		margin-top: 0.53333vw;
		margin-left: 3.2vw;
	}

	.l-header-nav > ul > li > a {
		display: flex;
		position: relative;
		align-items: center;
		padding: 0 0 0 8vw;
		font-size: 4.53333vw;
		line-height: inherit;
		text-align: left;
	}

	.l-header-nav > ul > li > a:before {
		top: 50%;
		width: 5.33333vw;
		height: 5.33333vw;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.l-header-nav > ul > li > a:after {
		display: none;
		bottom: 0;
	}

	.l-header-nav > ul > li ul > li > a {
		display: block;
		position: relative;
		align-items: center;
		width: 100%;
		margin: 5.33333vw 0 0;
		padding: 0 0 0 8vw;
		color: inherit;
		font-weight: bold;
		line-height: 1.25;
		text-align: left;
		white-space: pre-wrap;
		text-decoration: none;
	}

	.l-header-nav .js-sp-accordion + .mod-header-nav-inner {
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.5s ease-in-out, opacity;
	}

	.l-header-nav .js-sp-accordion.is-active:before {
		-webkit-transform: translateY(-50%) rotate(90deg);
		transform: translateY(-50%) rotate(90deg);
	}

	.l-header-nav .js-sp-accordion.is-active + .mod-header-nav-inner {
		max-height: 1200px;
	}

	.l-footer .footer-information-inner .banner li:nth-child(n + 2) {
		margin: 0 0 0 4% !important;
	}

	.l-footer .footer-information-inner .banner li:nth-child(3) {
		margin: 4% 0 0 0 !important;
	}

	.l-wrapper {
		width: 100%;
		min-width: inherit;
		padding-top: 18.66667vw;
	}

	.l-wrapper.is-menu-open {
		position: fixed;
	}

	.mod-inner {
		width: calc(100% - 10.66667vw);
	}

	.l-breadcrumbs ol li {
		font-size: 2.66667vw;
	}

	.l-under {
		padding: 10.66667vw 0 16vw;
	}

	.l-under ul > li {
		font-size: 4.26667vw;
	}

	.l-under ol > li {
		font-size: 4.26667vw;
	}

	.l-under a.external:after {
		width: 4.26667vw;
		height: 4.26667vw;
		margin-top: 0.53333vw;
		margin-left: 3.2vw;
	}

	.l-under p,
  .l-under ul,
  .l-under ol,
  .l-under .mod-media,
  .l-under .mod-btn,
  .l-under .mod-color-box,
  .l-under .mod-btn-container,
  .l-under .mod-table {
		margin: 8vw 0 0;
	}

	.l-under .mod-ac-head {
		padding: 1.33333vw 5.33333vw 1.33333vw 5.33333vw;
		font-size: 5.33333vw;
	}

	.l-under .mod-ac-body {
		padding: 3.2vw 0 0;
	}

	.l-under .mod-faq-item {
		margin-top: 2.66667vw;
	}

	.l-under .mod-faq-q {
		padding: 5.33333vw;
		font-size: 5.33333vw;
	}

	.l-under .mod-faq-q:before {
		margin-right: 4vw;
		font-size: 9.6vw;
	}

	.l-under .mod-faq-a {
		padding: 5.33333vw;
	}

	.l-under .mod-faq-a:before {
		margin-right: 4vw;
		font-size: 9.6vw;
	}

	.l-under .mod-flow li {
		padding: 4.66667vw;
	}

	.l-under .mod-flow li:nth-last-child(n+2):after {
		bottom: -10.93333vw;
		width: 8vw;
		height: 8.26667vw;
	}

	.l-under .mod-flow li:nth-last-child(n+2) {
		margin-bottom: 20vw;
	}

	.l-under .mod-table.scrollable {
		overflow-x: auto;
	}

	.l-under .mod-table.websoudan:before {
		top: -8vw;
		right: -5.33333vw;
		width: 21.33333vw;
		height: 21.33333vw;
	}

	.l-under .mod-table.websoudan-2:before {
		top: -8vw;
		right: -5.33333vw;
		width: 21.33333vw;
		height: 21.33333vw;
	}

	.l-under .mod-table table {
		table-layout: fixed;
	}

	.l-under .mod-table table th {
		padding: 2.66667vw;
		font-size: 4.26667vw;
	}

	.l-under .mod-table table td {
		padding: 5.33333vw 2.66667vw;
		font-size: 3.73333vw;
		line-height: 1.7;
	}

	.l-under .mod-table.scrollable table {
		width: 222.66667vw;
	}

	.l-under .mod-table.sp table th {
		width: 21.33333vw;
		font-size: 4.26667vw;
		line-height: 1.7;
		white-space: normal;
	}

	.l-under .mod-table.sp table td {
		font-size: 3.73333vw;
		line-height: 1.7;
	}

	.l-under .mod-table.sp table td ul {
		margin: 5.33333vw 0 0;
	}

	.l-under .mod-table.sp table td li {
		font-size: 3.73333vw;
		line-height: 1.7;
	}

	.col-2.uniformity .mod-col:nth-child(odd),
  .col-2.uniformity .mod-col:nth-child(even) {
		margin: 10.66667vw 0 0;
	}

	.col-2.uniformity .mod-col:first-child {
		margin: 0;
	}

	.l-news .list a:before {
		width: 3.2vw;
		height: 4vw;
	}

	.l-relation ul {
		display: block;
	}

	.mod-btn:before {
		left: 2.66667vw;
		width: 5.33333vw;
		height: 5.33333vw;
	}

	.l-home .kv picture source {
		border-radius: 2rem;
	}

	.l-home .kv picture img {
		border-radius: 2rem;
	}

	.l-home .top-bnr img {
		max-width: 100%;
		height: auto;
	}

	.l-news-under {
		margin: 40px 0;
	}

	.mod-block-newsImg {
		display: block;
	}

	.mod-block-newsImg .mod-newsImg-item.col3 {
		width: 100%;
	}

	.mod-block-newsImg .mod-newsImg-item.col2 {
		width: 100%;
	}

	.mod-block-newsImg .mod-newsImg-item {
		width: 100%;
		margin: 0 0 20px;
	}

	.mod-block-newsImg .mod-newsImg-item:last-of-type {
		margin: 0;
	}

	.mod-block-newsVideo {
		margin: 0 0 20px;
	}

	.modaal-content-container {
		overflow-x: scroll;
		padding: 0;
	}

	.modal-inner {
		width: 250px;
	}

	.modal-inner img {
		width: auto;
	}
}

@media screen and (max-width: 767px) and (min-width: 768px) {
	.l-header-nav > ul > li ul > li > a.external {
		position: relative;
		padding: 0 28px 0 0;
	}

	.l-header-nav > ul > li ul > li > a.external:after {
		content: '';
		display: block;
		position: absolute;
		top: 5px;
		right: 0;
		width: 16px;
		height: 16px;
		background: url(/kaigoseisansei/pf/img/ico_external_link.png) no-repeat 50% 50%;
		background-size: contain;
	}
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
	body {
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
}