@charset "UTF-8";
/* ========================================================================== 
 * Responsive 
 * ========================================================================== */ 
/*PCのみ表示(959px以下非表示)*/  
/*PCのみ表示(640px以下非表示)*/
@media screen and (max-width: 640px) {
	.visible-pc {
		display: none !important;
	}
}
/*SPのみ表示(641px以上非表示)*/
@media screen and (min-width: 641px) {
	.visible-sp {
		display: none !important;
	}
}
/*PCのみ非表示(640px以上非表示)*/
@media screen and (min-width: 640px) {
	.hidden-pc {
		display: none !important;
	}
}
/*SPのみ非表示(641px以下非表示)*/
@media screen and (max-width: 641px) {
	.hidden-sp {
		display: none !important;
	}
}
/*SPのみ非表示(599px以下非表示)*/ @media screen and (max-width: 599px) { 
	.hidden-sp { 
		display: none !important; 
	}  
}
/* ==========================================================================
 * Font face
 * ========================================================================== */
@font-face {
	font-family: "Yu Mincho";
	src: local("Yu Mincho Medium");
	font-weight: 100;
}
@font-face {
	font-family: "Yu Mincho";
	src: local("Yu Mincho Medium");
	font-weight: 200;
}
@font-face {
	font-family: "Yu Mincho";
	src: local("Yu Mincho Medium");
	font-weight: 300;
}
@font-face {
	font-family: "Yu Mincho";
	src: local("Yu Mincho Medium");
	font-weight: 400;
}
@font-face {
	font-family: "Yu Mincho";
	src: local("Yu Mincho Bold");
	font-weight: bold;
}
/* ==========================================================================
 * Root
 * ========================================================================== */
*,
::before,
::after {
	background-repeat: no-repeat;
	box-sizing: border-box;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}
body {
	margin: 0;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 1.6em;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.5;
	background: #fff;
}
/* ==========================================================================
 * HTML5 display definitions
 * ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}
audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
/* ==========================================================================
 * Anchor
 * ========================================================================== */
a:link,
a:visited {
	background-color: transparent;
	color: #4f7aac;
	text-decoration: none;
}
a:active,
a:hover {
	outline: 0;
	text-decoration: underline;
}

/* ==========================================================================
 * Embedded
 * ========================================================================== */
@media screen and (max-width: 640px) {
	img {
		border: 0;
		vertical-align: bottom;
		width: 100%;
	}
}
svg:not(:root) {
	overflow: hidden;
}
/* ==========================================================================
 * Grouping
 * ========================================================================== */
figure {
	margin: 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	border: none;
	border-top: 1px solid #bbb;
}
dd {
	margin-left: 0;
}
/* ==========================================================================
 * Float
 * ========================================================================== */
.clear {
	clear: both;
}
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}

/* ==========================================================================
 * List
 * ========================================================================== */
ul,
ol {
	padding: 0;
	list-style: none;
}
ul {
	margin: 0;
}
ul.list-disc {
	margin-left: 1.55em;
	list-style: disc;
}
ul.list-annotation {
	margin-left: 1.3em;
}
ul.list-annotation li::before {
	margin-left: -1.3em;
	content: "※\0020";
}
ol.list-annotation {
	margin-left: 2em;
	padding: 0;
	counter-reset: number;
	list-style: none;
	font-size: 1.2rem;
}
ol.list-annotation li::before {
	margin-left: -2em;
	counter-increment: number;
	content: "※"counter(number)"\0020";
}
ul.list-disc li + li,
ul.list-annotation li + li,
ol li + li {
	margin-top: 0px;
}
/* ==========================================================================
 * Text
 * ========================================================================== */
b,
strong {
	font-weight: bold;
}
mark {
	background: #ff0;
	color: #000;
}
small,
.txt-small{
	font-size: 80%;
}
.large {
	font-size: 3.9rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
address {
	font-style: normal;
}
h1,
.h1 {
	font-size: 3.2rem;
	line-height: 1.2;
	margin: 0;
}
h2,
.h2 {
	font-size: 2.4rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}
h3,
.h3 {
	font-size: 1.8rem;
	line-height: 1.2;
	margin: 0;
}
h4,
.h4 {
	font-size: 1.6rem;
	line-height: 1.2;
	margin: 0;
}
p {
	margin: 0;
}
.txt--left {
	text-align: left;
}
.txt--center {
	text-align: center;
}
.txt--right {
	text-align: right;
}
.txt--large {
	font-size: 3.4rem;
}
@media screen and (max-width: 640px) {
	.txt--large {
		font-size: 2.4rem;
	}
}
.txt--unbold {
	font-weight: normal;
}
.txt--bold {
	font-weight: bold;
}
.txt--emphasis {
	color: #e74c3c;
}
.txt--notes {
	color: #666;
	font-size: small;
}
/* ==========================================================================
 * Table
 * ========================================================================== */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td,
th {
	padding: 0;
}
/* ==========================================================================
 * Form
 * ========================================================================== */
button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	border: 1px solid #999;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	padding: 5px;
}
button {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled],
html input[disabled] {
	cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 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"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
textarea {
	overflow: auto;
}
/* ==========================================================================
 * Spacing
 * ========================================================================== */
.margin-none  {margin:           0px !important;}
.padding-none {padding:          0px !important;}

.margin-T0    {margin-top:       0px !important;}
.margin-T5    {margin-top:       5px !important;}
.margin-T10   {margin-top:      10px !important;}
.margin-T15   {margin-top:      15px !important;}
.margin-T20   {margin-top:      20px !important;}
.margin-T25   {margin-top:      25px !important;}
.margin-T30   {margin-top:      30px !important;}
.margin-T35   {margin-top:      35px !important;}
.margin-T40   {margin-top:      40px !important;}
.margin-T45   {margin-top:      45px !important;}
.margin-T50   {margin-top:      50px !important;}
.margin-T60   {margin-top:      60px !important;}
.margin-T70   {margin-top:      70px !important;}
.margin-T80   {margin-top:      80px !important;}
.margin-T90   {margin-top:      90px !important;}
.margin-T100  {margin-top:     100px !important;}

.margin-R0    {margin-right:     0px !important;}
.margin-R5    {margin-right:     5px !important;}
.margin-R10   {margin-right:    10px !important;}
.margin-R15   {margin-right:    15px !important;}
.margin-R20   {margin-right:    20px !important;}

.margin-B0    {margin-bottom:    0px !important;}
.margin-B5    {margin-bottom:    5px !important;}
.margin-B10   {margin-bottom:   10px !important;}
.margin-B15   {margin-bottom:   15px !important;}
.margin-B20   {margin-bottom:   20px !important;}

.margin-L0    {margin-left:      0px !important;}
.margin-L5    {margin-left:      5px !important;}
.margin-L10   {margin-left:     10px !important;}
.margin-L15   {margin-left:     15px !important;}
.margin-L20   {margin-left:     20px !important;}

.padding-T0   {padding-top:      0px !important;}
.padding-T5   {padding-top:      5px !important;}
.padding-T10  {padding-top:     10px !important;}
.padding-T15  {padding-top:     15px !important;}
.padding-T20  {padding-top:     20px !important;}
.padding-T25  {padding-top:     25px !important;}
.padding-T30  {padding-top:     30px !important;}
.padding-T35  {padding-top:     35px !important;}
.padding-T40  {padding-top:     40px !important;}
.padding-T45  {padding-top:     45px !important;}
.padding-T50  {padding-top:     50px !important;}
.padding-T60  {padding-top:     60px !important;}
.padding-T70  {padding-top:     70px !important;}
.padding-T80  {padding-top:     80px !important;}
.padding-T90  {padding-top:     90px !important;}
.padding-T100 {padding-top:    100px !important;}

.padding-R0   {padding-right:    0px !important;}
.padding-R5   {padding-right:    5px !important;}
.padding-R10  {padding-right:   10px !important;}
.padding-R15  {padding-right:   15px !important;}
.padding-R20  {padding-right:   20px !important;}

.padding-B0   {padding-bottom:   0px !important;}
.padding-B5   {padding-bottom:   5px !important;}
.padding-B10  {padding-bottom:  10px !important;}
.padding-B15  {padding-bottom:  15px !important;}
.padding-B20  {padding-bottom:  20px !important;}

.padding-L0   {padding-left:     0px !important;}
.padding-L5   {padding-left:     5px !important;}
.padding-L10  {padding-left:    10px !important;}
.padding-L15  {padding-left:    15px !important;}
.padding-L20  {padding-left:    20px !important;}
/* ==========================================================================
 * Common
 * ========================================================================== */
#page-container {
	max-width: 2000px;
	margin: 0 auto;
}
.inner--width {
	width: 920px;
	margin-right: auto;
	margin-left:  auto;
}
.bg--gray {
	background: url("../images/pc/bg-gray.jpg") no-repeat top center;
	padding: 100px 0 0;
}
@media screen and (max-width: 640px) {
	#page__container {
		max-width: 640px;
		margin: 0 auto;
	}
	.inner--width {
		width: 100%;
	}
	.bg--gray {
		background: url("../images/sp/bg-gray.jpg") no-repeat top center / 100%;
		padding: 85px 0 0;
	}
}

/*-------------------- Back to Top --------------------*/
a.backtotop {
	position: fixed;
	bottom: 30px;
	right: 5%;
	width: 40px;
	height: 40px;
	padding: 38px 0 0;
	background-color: #ccc;
	color: #fff;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	opacity: .5;
	border-radius: 50%;
}
a.backtotop::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 17.3px 10px;
	border-color: transparent transparent #ffffff transparent;
}
@media screen and (max-width: 640px) {
	a.backtotop {
		bottom: 25vw;
	}
}
/* ==========================================================================
 * CTA
 * ========================================================================== */
.cta {
	background: url("../images/pc/cta_bg.jpg") no-repeat center;
	min-width: 920px;
	padding: 60px 0 80px;
}
.cta dl {
	background: #fff;
	padding: 20px;
}
.cta dt {
	margin: 0 0 10px;
	text-align: center;
}
.cta dd,
.cta dd ul {
	display: flex;
	justify-content: center;
}
.cta dd ul li:first-child {
	margin: 0 10px 0 0;
}
@media screen and (max-width: 640px) {
	.cta {
		background: url("../images/sp/cta_bg.jpg") no-repeat center / 100%;
		min-width: auto;
		padding: 5%;
	}
	.cta dl {
		padding: 5%;
	}
	.cta dt {
		margin: 0 10% 20px;
	}
	.cta dd,
	.cta dd ul {
		display: block;
	}
	.cta dd ul li:first-child {
		margin: 0 0 3%;
	}
	.ft__cta {
		background-image: linear-gradient(90deg, rgba(5, 90, 122, 1), rgba(20, 36, 103, 1));
		padding: 3% 5% 2%;
		position: fixed;
		bottom: 0;
	}
	.ft__cta ul {
		display: flex;
	}
	.ft__cta ul li:first-child {
		padding: 0 5px 0 0;
	}
	.ft__cta ul li:last-child {
		padding: 0 0 0 5px;
	}
}
/* ==========================================================================
 * Header
 * ========================================================================== */
.hd {
	min-width: 920px;
}
.hd__list--top {
	align-items: flex-end;
	display: flex;
	padding: 20px 0;
	justify-content: space-between;
}
.hd__list--top li:first-child img {
	width: 270px;
}
.hd-mv {
	background: url("../images/pc/mv.jpg") no-repeat top center;
	padding: 40px 0 0 30px;
}
.hd .h1 {
	min-height: 530px;
}
@media screen and (max-width: 640px) {
	.hd {
		min-width: auto;
	}
	.hd__list--top {
		padding: 10px 5%;
	}
	.hd__list--top li {
		width: 50%;
	}
	.hd__list--top li:last-child {
		padding: 0 0 0 10%;
	}
	.hd__list--top li:first-child img {
		width: 100%;
	}
	.hd-mv {
		background: none;
		padding: 0;
	}
	.hd .h1 {
		min-height: auto;
	}
}
/* ==========================================================================
 * Gnavi(PC)
 * ========================================================================== */
.gnavi {
	background: #084d76;
	font-size: 1.8rem;
	max-width: 2000px;
	margin: 0 auto;
}
.gnavi__list {
	display: flex;
}
.gnavi__list li {
	align-items: center;
	display: flex;
}
.gnavi__list li:nth-child(4),
.gnavi__list li:last-child {
	margin-left: auto;
}
.gnavi__list a {
	color: #fff;
	display: block;
	padding: 10px 0;
}
.gnavi__list li:last-child a {
	margin: 0 0 -10px;
}
.gnavi__list a::before {
	background: url("../images/pc/gnavi_arrow.png") no-repeat left;
	content: "";
	padding: 0 0 0 30px;
}
.gnavi__list li:first-child a::before {
	margin: 0 0 0 10px;
}
.gnavi__list li:nth-child(2) a::before,
.gnavi__list li:nth-child(3) a::before {
	margin: 0 0 0 40px;
}
.gnavi__list li:last-child a::before {
	background: none;
	content: "";
	padding: 0 10px 0 0;
}
.fixed {
    position: fixed;
    top: 0;
    left: 50%;
	z-index: 998;
	transform: translateX(-50%);
    width: 100%;
}
/* ==========================================================================
 * Trouble
 * ========================================================================== */
.trouble h2 {
	margin: 0 0 40px;
}
.trouble p {
	margin: 0 0 40px;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.trouble h2 {
		margin: 0 5% 30px;
	}
	.trouble p {
		margin: 0 5% 40px;
		text-align: center;
	}
}
/* ==========================================================================
 * Down
 * ========================================================================== */
.down {
	min-width: 920px;
}
.shortage-txt {
	text-align: center;
	margin: 0 0 20px;
}
.down-content {
	background: url("../images/pc/down_bg.jpg") no-repeat top center;
}
.down-content p {
	padding: 20px 0;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.down {
		min-width: auto;
	}
	.shortage-txt {
		margin: 0 5% 20px;
	}
}
/* ==========================================================================
 * Solution
 * ========================================================================== */
.solution {
	min-width: 920px;
}
.solution h2 {
	margin: 0 auto 40px;
}
.solution__list li {
	margin: 0 0 50px;
}
.solution__list li:last-child {
	margin: 0 0 80px;
}
.solution__list-point1 {
	background: url("../images/pc/solution_point_bg.png") no-repeat center top;
	min-height: 339px;
}
.solution__list-point2 {
	background: url("../images/pc/solution_point_bg2.png") no-repeat center top;
	min-height: 339px;
}
.solution__list-point3 {
	background: url("../images/pc/solution_point_bg3.png") no-repeat center top;
	min-height: 339px;
}
.solution__list p {
	position: relative;
}
.solution__list-point1 picture {
	position: absolute;
	top: 50px;
	left: 95px;
}
.solution__list-point2 picture {
	position: absolute;
	top: 35px;
	right: 150px;
}
.solution__list-point3 picture {
	position: absolute;
	top: 50px;
	left: 95px;
}
.search-txt {
	padding: 0 0 50px;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.solution {
		min-width: auto;
	}
	.solution h2 {
		padding: 0 5% 30px;
	}
	.solution__list li {
		margin: 0 0 20px;
	}
	.solution__list li:last-child {
		margin: 0 0 50px;
	}
	.solution__list-point1 {
		background: none;
		min-height: auto;
	}
	.solution__list-point2 {
		background: none;
		min-height: auto;
	}
	.solution__list-point3 {
		background: none;
		min-height: auto;
	}
	.solution__list-point1 picture {
		position: static;
	}
	.solution__list-point2 picture {
		position: static;
	}
	.solution__list-point3 picture {
		position: static;
	}
	.search-txt {
		padding: 0 5% 50px;
		text-align: center;
	}
}
/* ==========================================================================
 * Reason
 * ========================================================================== */
.reason {
	min-width: 920px;
}
.reason h2 {
	margin: 0 auto 40px;
}
/* reason1 */
.reason1 dt {
	margin: 0 0 40px;
	text-align: center;
}
.reason1-txt {
	background: url("../images/pc/reason1_pic.jpg") no-repeat left;
	min-height: 160px;
	margin: 0 0 40px;
	padding: 0 0 0 480px;
}
.reason-staff h3 {
	font-size: 3rem;
	font-weight: 500;
	margin: 50px 0 30px;
	line-height: 1.6;
	text-align: center;
}
.reason-staff ol {
	display: flex;
	margin: 0 0 150px;
	justify-content: space-between;
}
/* reason2 */
.reason2 dt {
	margin: 0 0 40px;
	text-align: center;
}
.reason2-txt {
	font-size: 3rem;
	text-align: center;
	margin: 0 0 20px;
}
.reason2-graph {
	margin: 0 0 150px;
}
/* reason3 */
.reason3 {
	margin: 0 0 100px;
}
.reason3 dt {
	margin: 0 0 40px;
	text-align: center;
}
.reason3-txt {
	margin: 0 0 60px;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.reason {
		min-width: auto;
	}
	.reason h2 {
		padding: 0 5% 30px;
	}
	/* reason1 */
	.reason1 dt {
		margin: 0 5% 20px;
	}
	.reason1 dd {
		margin: 0 5% 40px;
	}
	.reason1-txt {
		background: url("../images/sp/reason1_pic.jpg") no-repeat bottom center / 100%;
		min-height: auto;
		padding: 0 0 48%;
	}
	.reason-staff h3 {
		font-size: 3rem;
		font-weight: 500;
		margin: 50px 0 30px;
		line-height: 1.6;
		text-align: center;
	}
	.reason-staff ol {
		display: flex;
		justify-content: space-between;
	}
	.reason-staff h3 {
		font-size: 2.4rem;
		margin: 50px 0 30px;
		line-height: 1.6;
		text-align: center;
	}
	.reason-sp--large {
		font-size: 3rem;
	}
	.reason-staff ol {
		display: block;
		margin: 0;
	}
	.reason-staff ol li {
		margin: 0 0 20px;
	}
	.reason-staff ol li:last-child {
		margin: 0 0 60px;
	}
	/* reason2 */
	.reason2 dt {
		margin: 0 5% 20px;
	}
	.reason2-txt {
		font-size: 2rem;
		margin: 0 5% 20px;
	}
	.reason2-graph {
		margin: 0 5% 60px;
	}
	/* reason3 */
	.reason3 {
		margin: 0 0 60px;
	}
	.reason3 dt {
		margin: 0 5% 20px;
	}
	.reason3-txt {
		margin: 0 5% 40px;
	}
	.reason3-graph-sp1 {
		padding: 0 5% 40px;
	}
	.reason3-graph-sp2 {
		padding: 0 5%;
	}
}
/* ==========================================================================
 * Case
 * ========================================================================== */
.case {
	margin: 0 0 100px;
}
.case__btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.case__btn li img {
	cursor: pointer;
}
.case-content li {
	display: none;
}
.case-content li:first-child {
	display: block;
}
.case .arrow-box {
	position: relative;
}
.case_arrow li {
	cursor: pointer;
}
.case_arrow li:first-child {
	position: absolute;
	left: 0;
	top: 50%;
    transform: translateY(-50%);
}
.case_arrow li:last-child {
	position: absolute;
	right: 0;
	top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
	.case {
		margin: 0 0 60px;
	}
	.case div div:not(.arrow-box) {
		padding: 0 5%;
	}
	.case h2 {
		padding: 0 0 30px;
	}
	.case__btn {
		margin: 0 0 40px;
	}
	.case__btn li {
		width: 50%;
	}
	.case_arrow li img {
		width: 40px;
	}
}
/* ==========================================================================
 * Flow
 * ========================================================================== */
.flow {
	margin: 0 0 100px;
}
.flow h2 {
	margin: 0 auto 40px;
}
@media screen and (max-width: 640px) {
	.flow {
		margin: 0 0 60px;
	}
	.flow div div {
		padding: 0 5%;
	}
	.flow h2 {
		padding: 0 0 30px;
	}
	.flow li {
		margin: 0 0 20px;
	}
	.flow li:last-child {
		margin: 0;
	}
}
/* ==========================================================================
 * Question
 * ========================================================================== */
.question {
	margin: 0 0 100px;
}
.question h2 {
	margin: 0 auto 40px;
}
.question__list dt {
	border: 1px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(to right, #80b2bd, #8b8db2);
    background-origin: border-box;
    background-clip: padding-box, border-box;
	font-size: 3rem;
	margin: 0 0 30px;
	padding: 0 0 0 20px;
}
.question__list dt span {
	align-items: center;
	background: url("../images/common/question_q.png") no-repeat left / 40px;
	cursor: pointer;
	display: flex;
	padding: 20px 20px 20px 60px;
}
.question__list dt span::after {
	background: url("../images/common/question_open.png") no-repeat top center / 20px;
	content: "";
	display: block;
	height: 16px;
	margin-left: auto;
	width: 20px;
}
.question__list dt.close span::after {
	background: url("../images/common/question_close.png") no-repeat top center / 20px;
}
.question__list dd {
	font-size: 2rem;
	display: none;
	padding: 0 30px 30px;
}
.question__list dd span {
	background: url("../images/pc/question_a.png") no-repeat left top / 25px;
	display: block;
	padding: 0 0 0 70px;
}
@media screen and (max-width: 640px) {
	.question {
		margin: 0 0 60px;
	}
	.question div div {
		padding: 0 5%;
	}
	.question h2 {
		padding: 0 0 30px;
	}
	.question__list dt {
		font-size: 2rem;
		margin: 0 0 20px;
	}
	.question__list dt span {
		background: url("../images/common/question_q.png") no-repeat left / 40px;
		padding: 20px 20px 20px 50px;
	}
	.question__list dt span::after {
		background: url("../images/common/question_open.png") no-repeat top center / 30px;
		height: 23px;
		width: 50px;
	}
	.question__list dt.close span::after {
		background: url("../images/common/question_close.png") no-repeat top center / 30px;
	}
	.question__list dd {
		font-size: 1.6rem;
		padding: 0 0 20px;
	}
	.question__list dd span {
		background: none;
		padding: 0;
	}
}
/* ==========================================================================
 * Footer
 * ========================================================================== */
.ft {
	background: url("../images/pc/ft_bg.jpg") #284b71 no-repeat top center;
	color: #fff;
	padding: 90px 0;
}
.ft h2 {
	margin: 0 auto 40px;
}
.ft-txt {
	margin: 0 auto;
	width: 600px;
}
.ft-txt p + p {
	margin: 40px 0;
}
.ft .pr {
	margin: 0 0 40px;
	text-align: center;
}
.ft .company {
	background: #fff;
	color: #000;
	display: flex;
	flex-wrap: wrap;
	padding: 20px 50px 10px;
}
.ft .company dt {
	background: #eaedf0;
	font-weight: bold;
	margin: 0 0 5px;
	padding: 5px;
	width: 170px;
}
.ft .company dd {
	margin: 0 0 5px;
	width: calc(100% - 170px);
}
.ft .copy {
	margin: 40px 0 0;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.ft {
		background: url("../images/sp/ft_bg.jpg") #284b71 no-repeat top center;
		color: #fff;
		padding: 10% 5%;
	}
	.ft h2 {
		padding: 0 0 30px;
	}
	.ft-txt {
		width: auto;
	}
	.ft-txt p + p {
		margin: 20px 0;
	}
	.ft .company {
		display: block;
		padding: 5%;
	}
	.ft .company dt {
		width: 100%;
	}
	.ft .company dd {
		font-weight: 400;
		margin: 0 0 10px;
		width: 100%;
	}
}