@charset "UTF-8";

/* ---------------------------------------
  基本情報
-----------------------------------------*/

html,
body {
	height: 100%;
}

html {
	font-size: 62.5%;
	overflow-y: scroll;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: left;
	font-weight: 700;
	color: #333333;
}

input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	color: #333333;
}

textarea {
	resize: vertical;
}

select::-ms-expand {
	display: none;
}

a {
	text-decoration: none;
	color: #000;
	outline: none;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

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

.preload * {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
}

/* base
--------------------------------*/
p,
dt,
dd,
li,
th,
td,
input,
button,
textarea,
select {
	font-size: 2.2rem;
	line-height: 1.6;
}

body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

.wrap {
	max-width: 950px;
	width: 90%;
	margin: 0 auto;
}

.aligncenter {
	display: block;
	margin: 0 auto;
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
}

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

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

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

.bold {
	font-weight: 700;
}

.fade {
	transition: opacity 0.4s;
}

.fade:hover {
	opacity: 0.7;
}

.center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.din {
	font-family: "din-2014";
	font-weight: 700;
}

main {
	display: block;
	padding-top: 80px;
}

@media screen and (min-width: 768px) {
	body {
		min-width: 1100px;
	}
}

@media screen and (max-width: 767px) {
	body {
		-webkit-text-size-adjust: 100%;
	}

	main {
		padding-top: 50px;
		padding-bottom: 55px;
	}

	img {
		width: 100%;
	}

	p,
	dt,
	dd,
	li,
	th,
	td,
	input,
	button,
	textarea,
	select {
		font-size: 1.5rem;
	}

	.wrap {
		width: 90%;
	}

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

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

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

/* ---------------------------------------------
  header
-----------------------------------------------*/
header {
	padding: 10px 0;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

header .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1100px;
}

header .nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex: none;
}

header .nav .btn {
	margin-left: 10px;
}

@media screen and (max-width: 767px) {
	header {
		padding: 0;
		background: #fff;
	}

	header .wrap {
		width: 100%;
		height: 50px;
	}

	header .head01 {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		background: #fff;
		position: relative;
		z-index: 1;
	}

	header .logo {
		width: 141px;
		margin-left: 10px;
	}

	header .menu_trigger {
		position: relative;
		width: 50px;
		height: 50px;
	}

	header .menu_trigger span {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 30px;
		height: 2px;
		background: #003E92;
		transition: 0.4s;
	}

	header .menu_trigger span:nth-child(1) {
		top: 30%;
	}

	header .menu_trigger span:nth-child(2) {
		top: 50%;
		transform: translateY(-50%);
	}

	header .menu_trigger span:nth-child(3) {
		bottom: 30%;
	}

	header.menu_open .menu_trigger span:nth-child(1) {
		top: 50%;
		transform: translateY(-50%) rotate(135deg);
	}

	header.menu_open .menu_trigger span:nth-child(2) {
		opacity: 0;
	}

	header.menu_open .menu_trigger span:nth-child(3) {
		top: 50%;
		bottom: auto;
		transform: translateY(-50%) rotate(-135deg);
	}

	header .nav {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: calc(90vh - 50px);
		overflow-y: scroll;
		background: #FFF;
		display: block;
		transform: translateY(-100%);
		transition: transform 0.4s;
	}

	header.menu_open .nav {
		top: 50px;
		transform: translateY(0);
	}

	header .nav .main {
		border-top: 1px solid #DDD;
		margin-bottom: 30px;
	}

	header .nav .main li a {
		font-size: 1.4rem;
		color: #333;
		font-weight: 500;
		border-top: none;
		border-bottom: 1px solid #DDD;
		text-align: left;
		padding: 0 0 0 4%;
		background: url(../img/ft_arrow.png) no-repeat 96% center;
		background-size: 5px 9px;
		height: 45px;
		line-height: 45px;
		display: block;
		padding: 0 5%;
	}

	header .nav .btn {
		margin: 10px auto 0;
		padding: 0 5%;
	}

	header .nav .close {
		display: block;
		border-top: 1px solid #005BAC;
		width: 100%;
		height: 60px;
		color: #005BAC;
		font-size: 1.4rem;
		text-align: center;
		line-height: 60px;
		margin-top: 40px;
	}
}


/* ---------------------------------------------
  main
-----------------------------------------------*/

/* btn
--------------------------------*/
.btn_normal {
	width: 100%;
	font-size: 1.8rem;
	color: #fff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #009D95;
	padding: 10px 20px;
	min-width: 200px;
	height: 55px;
}

.btn_normal.-info {
	min-width: 250px;
}

.btn_normal.-doc {
	background: #003E92;
}

.btn_normal.-contact {
	background: #DD0404;
}

.btn_normal img {
	margin-right: 10px;
}

@media screen and (max-width: 767px) {
	.btn_normal {
		font-size: 1.8rem;
		padding: 10px 10px;
		min-width: 1px;
		height: 55px;
	}

	.btn_normal.-info {
		min-width: 1px;
	}

	.btn_normal.-info img {
		width: 48px;
	}

	.btn_normal.-doc img {
		width: 30px;
	}

	.btn_normal.-contact img {
		width: 31px;
	}
}


/* title
--------------------------------*/
.title_blue {
	font-size: 4.5rem;
	text-align: center;
	color: #fff;
	padding: 35px 0;
	background: linear-gradient(225deg, #367FD3, #41B8E2);
}

.title_blue .title_icon {
	padding: 0 50px;
	position: relative;
}

.title_blue .title_icon::before,
.title_blue .title_icon::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 40px;
	height: 46px;
	background: url(../img/deco_yellow.png) no-repeat center center /contain;
}

.title_blue .title_icon::before {
	left: 0;
	transform: translateY(-50%);
}

.title_blue .title_icon::after {
	right: 0;
	transform: translateY(-50%) scale(-1, 1);
}

@media screen and (max-width: 767px) {
	.title_blue {
		font-size: 2.2rem;
		line-height: 1.4;
		padding: 15px 0;
	}

	.title_blue .title_icon {
		display: inline-block;
		padding: 0 25px;
	}

	.title_blue .title_icon::before,
	.title_blue .title_icon::after {
		width: 20px;
		height: 23px;
		top: 60%;
	}
}

/* list
--------------------------------*/
.check_list li {
	font-size: 2.4rem;
	line-height: 1.75;
	padding-left: 50px;
	position: relative;
}

.check_list li::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	width: 40px;
	height: 37px;
	background: url(../img/icon_check.svg) no-repeat center center /contain;
}

@media screen and (max-width: 767px) {
	.check_list li {
		font-size: 1.7rem;
		line-height: 1.29;
		padding-left: 25px;
		margin-top: 5px;
	}

	.check_list li:first-child {
		margin-top: 0;
	}

	.check_list li::before {
		top: 2px;
		width: 20px;
		height: 18px;
	}
}

/* bg
--------------------------------*/
.bg_gray {
	padding: 35px 0;
	background: #F4F7FA;
}

.bg_blue {
	padding: 35px 0;
	background: linear-gradient(225deg, #367FD3, #41B8E2);
}

.bg_lightblue {
	padding: 35px 0 89px;
	background: rgba(244, 247, 250, 0.7);
}

.bg_yellow {
	padding: 35px 0;
	background: rgba(255, 255, 0, 0.7);
}

.bg_white {
	padding: 35px 0;
	background: #fff;
}

@media screen and (max-width: 767px) {
	.bg_gray {
		padding: 15px 0;
	}

	.bg_blue {
		padding: 15px 0;
	}

	.bg_lightblue {
		padding: 15px 0 50px;
	}

	.bg_yellow {
		padding: 15px 0;
	}

	.bg_white {
		padding: 15px 0;
	}
}

/* decoration
--------------------------------*/
.-color_blue {
	color: #003E92;
}

.-color_yellow {
	color: #FFFF00;
}

.-color_red {
	color: #DD0404;
}

.-mark_yellow {
	background: linear-gradient(transparent 70%, #FFFF00 70%) 0 0;
}

/* form
--------------------------------*/
/* #lp .mrc_webform_modal .mrc_webform_modal_header {
	border-bottom: 0 !important;
}

#lp #mrc_webform .mrc_webform_custtitle th {
	font-size: 2.2rem !important;
	color: #FFF !important;
	text-align: center !important;
	height: 90px !important;
	text-align: center;
	background: linear-gradient(to right, rgba(47, 128, 237, 1) 0%, rgba(86, 204, 242, 1) 100%);
}

#lp #mrc_webform .mrc_webform_custinfo th {
	background: #f4f7fa !important;
}

#lp #mrc_webform .mrc_webform_row .mrc_webform_a input[type='text'],
#lp #mrc_download .mrc_webform_row .mrc_webform_a input[type='text'],
#lp #mrc_webform .mrc_webform_row .mrc_webform_a input[type='date'],
#lp #mrc_download .mrc_webform_row .mrc_webform_a input[type='date'],
#lp #mrc_webform .mrc_webform_row .mrc_webform_a input[type='number'],
#lp #mrc_download .mrc_webform_row .mrc_webform_a input[type='number'],
#lp #mrc_webform .mrc_webform_row .mrc_webform_a input[type='email'],
#lp #mrc_download .mrc_webform_row .mrc_webform_a input[type='email'],
#lp #mrc_webform .mrc_webform_row .mrc_webform_a input[type='tel'],
#lp #mrc_download .mrc_webform_row .mrc_webform_a input[type='tel'] {
	font-weight: 500;
	font-size: 1.6rem !important;
}

#lp #mrc_webform .mrc_webform_row .mrc_webform_a select,
#lp #mrc_download .mrc_webform_row .mrc_webform_a select {
	font-weight: 500;
	border-style: solid !important;
	border-width: 1px !important;
	border-color: #AAA #CCC #CCC #AAA !important;
	font-size: 1.6rem !important;
}

#lp #mrc_webform .mrc_webform_row.mrc_webform_custinfo .mrc_webform_a input,
#lp #mrc_download .mrc_webform_row.mrc_webform_custinfo .mrc_webform_a input {
	width: calc(98% - 60px) !important;
}

#lp #mrc_webform .mrc_webform_custtitle th,
#lp #mrc_webform .mrc_webform_custinfo th,
#lp #mrc_webform .mrc_webform_custinfo td,
#lp #mrc_download .mrc_webform_custtitle th,
#lp #mrc_download .mrc_webform_custinfo th,
#lp #mrc_download .mrc_webform_custinfo td {
	padding: 25px !important;
}

#lp .mrc_webform_row .mrc_webform_q {
	font-size: 1.6rem !important;
	padding: 25px !important;
}

#lp #mrc_webform .mrc_webform_row .mrc_webform_a label,
#lp #mrc_download .mrc_webform_row .mrc_webform_a label {
	font-size: 1.6rem !important;
}

#lp .mrc_webform_row .mrc_webform_a {
	padding: 25px !important;
}

#lp .mrc_webform_save_custinfo_message {
	font-size: 1.6rem !important;
	text-align: center;
	margin-top: 40px;
}

#lp #mrc_webform .mrc_webform_button,
#lp #mrc_download .mrc_webform_button {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px !important;
}

#lp #mrc_webform .mrc_webform_button button.mrc_webform_apply,
#lp #mrc_download .mrc_webform_button button.mrc_webform_apply,
#lp #mrc_webform .mrc_webform_button button,
#lp #mrc_download .mrc_webform_button button {
	font-size: 1.6rem !important;
	padding: 20px !important;
	border-radius: 50px !important;
	width: 20% !important;
}

#lp #mrc_webform .mrc_webform_button button.mrc_webform_apply,
#lp #mrc_download .mrc_webform_button button.mrc_webform_apply {
	width: 30% !important;
	font-size: 1.6rem !important;
	font-weight: 700 !important;
	background: #003E92 !important;
	border: none !important;
	border-radius: 10px;
}

#lp #mrc_webform span.mrc_webform_req,
#lp #mrc_download span.mrc_webform_req {
	font-size: 1.2rem !important;
	background: #ff5454 !important;
}

#lp .mrc_webform_modal .mrc_webform_modal_dialog {
	width: 950px !important;
}

@media screen and (max-width: 767px) {
	#lp .mrc_webform_modal .mrc_webform_modal_body {
		padding: 20px 3% !important;
	}

	#lp #mrc_webform .mrc_webform_custtitle th {
		font-size: 2.2rem !important;
		height: auto !important;
	}

	#lp #mrc_webform .mrc_webform_row .mrc_webform_a input[type='text'],
	#lp #mrc_download .mrc_webform_row .mrc_webform_a input[type='text'],
	#lp #mrc_webform .mrc_webform_row .mrc_webform_a input[type='date'],
	#lp #mrc_download .mrc_webform_row .mrc_webform_a input[type='date'],
	#lp #mrc_webform .mrc_webform_row .mrc_webform_a input[type='number'],
	#lp #mrc_download .mrc_webform_row .mrc_webform_a input[type='number'],
	#lp #mrc_webform .mrc_webform_row .mrc_webform_a input[type='email'],
	#lp #mrc_download .mrc_webform_row .mrc_webform_a input[type='email'],
	#lp #mrc_webform .mrc_webform_row .mrc_webform_a input[type='tel'],
	#lp #mrc_download .mrc_webform_row .mrc_webform_a input[type='tel'] {
		height: 45px;
		font-weight: 500;
	}

	#lp #mrc_webform .mrc_webform_row .mrc_webform_a select,
	#lp #mrc_download .mrc_webform_row .mrc_webform_a select {
		font-weight: 500;
		border-style: solid !important;
		border-width: 1px !important;
		border-color: #AAA #CCC #CCC #AAA !important;
		height: 45px;
	}

	#lp #mrc_webform .mrc_webform_row.mrc_webform_custinfo .mrc_webform_a input,
	#lp #mrc_download .mrc_webform_row.mrc_webform_custinfo .mrc_webform_a input {
		width: calc(98% - 50px) !important;
	}

	#lp #mrc_webform .mrc_webform_custtitle th,
	#lp #mrc_webform .mrc_webform_custinfo th,
	#lp #mrc_webform .mrc_webform_custinfo td,
	#lp #mrc_download .mrc_webform_custtitle th,
	#lp #mrc_download .mrc_webform_custinfo th,
	#lp #mrc_download .mrc_webform_custinfo td {
		padding: 20px 3% !important;
		display: block !important;
	}

	#lp .mrc_webform_row .mrc_webform_q {
		font-size: 1.5rem !important;
		padding: 20px 3% !important;
	}

	#lp #mrc_webform .mrc_webform_row .mrc_webform_a label,
	#lp #mrc_download .mrc_webform_row .mrc_webform_a label {
		font-size: 1.5rem !important;
	}

	#lp .mrc_webform_row .mrc_webform_a {
		padding: 20px 3% !important;
	}

	#lp .mrc_webform_save_custinfo_message {
		font-size: 1.5rem !important;
		text-align: center;
		margin-top: 30px;
	}

	#lp #mrc_webform .mrc_webform_button,
	#lp #mrc_download .mrc_webform_button {
		margin-top: 20px !important;
	}

	#lp #mrc_webform .mrc_webform_button button.mrc_webform_apply,
	#lp #mrc_download .mrc_webform_button button.mrc_webform_apply,
	#lp #mrc_webform .mrc_webform_button button,
	#lp #mrc_download .mrc_webform_button button {
		padding: 20px !important;
		width: 40% !important;
	}

	#lp #mrc_webform .mrc_webform_button button.mrc_webform_apply,
	#lp #mrc_download .mrc_webform_button button.mrc_webform_apply {
		width: 55% !important;
	}

	#lp #mrc_webform span.mrc_webform_req,
	#lp #mrc_download span.mrc_webform_req {
		font-size: 1.5rem !important;
	}

	#lp .mrc_webform_modal .mrc_webform_modal_dialog {
		width: auto !important;
	}
} */

/* mv
--------------------------------*/

.sec_mv {
	position: relative;
	aspect-ratio: 1440/ 450;
	background: linear-gradient(to right, #074175 0%, #074175 40%, #f1f5fb 40%, #f1f5fb 100%);

}

.sec_mv .wrap {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 100%;
	height: 100%;
	margin: 0 auto;
}

.sec_mv .wrap .text {
	aspect-ratio: 1440 /450;
	height: 100%;
	position: relative;
	z-index: 2;
}

.sec_mv .text img {
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
}

.sec_mv .mv_video {
	width: auto;
	height: 100%;
	z-index: 1;
	background: #f1f5fb;
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
}

.sec_mv .mv_video video {
	display: block;
	width: auto;
	height: 115%;
	object-fit: contain;
}

@media screen and (max-width: 767px) {
	.sec_mv {
		height: auto;
		background: none;
		aspect-ratio: auto;
	}

	.sec_mv .wrap {
		display: flex;
		flex-direction: column;
		margin: 0 auto;
		padding-top: 85%;
		padding-bottom: 8px;
		background: #074175;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
		clip-path: polygon(0 0, 100% 0, 100% 94.4%, 50% 100%, 0 94.4%);
	}

	.sec_mv .wrap .text {
		width: 100%;
		aspect-ratio: auto;
		max-width: none;
		position: absolute;
		top: 0;
	}

	.sec_mv .wrap .text img {
		position: initial;
		top: initial;
		transform: none;
	}

	.sec_mv .mv_video {
		width: calc(100% - 12px);
		margin: 0 auto;
		height: auto;
		position: initial;
		top: initial;
		right: initial;
		overflow: hidden;
		background: #f1f5fb;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
		clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
	}

	.sec_mv .mv_video video {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		position: relative;
		bottom: -10px;
		z-index: 1;
	}
}

/* intro
--------------------------------*/
.sec_intro .text {
	font-size: 3.2rem;
	line-height: 1.43;
	letter-spacing: 0.04em;
	text-align: center;
	margin-top: 20px;
}

.sec_intro .text:first-child {
	margin-top: 0;
}

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

	.sec_intro .bg_white {
		padding-top: 30px;
	}

	.sec_intro .text {
		font-size: 1.7rem;
		letter-spacing: 0;
		margin-top: 15px;
	}
}

/* function
--------------------------------*/
.function {
	background: #F4F7FA;
	padding: 88px 20px 104px;
}

.function_wrap {
	max-width: 950px;
	margin: 0 auto;
}

.function_title {
	color: #004BB1;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	text-align: center;
}

.function_title_sub {
	margin-bottom: 16px;
	text-align: center;
	color: #004BB1;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1em;
}

.function_title_sub span {
	display: inline-block;
	position: relative;
}

.function_title_sub span::before,
.function_title_sub span::after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 27px;
	height: 30px;
	background: url(../img/deco_blue.png) no-repeat center center /contain;
}

.function_title_sub span::before {
	left: -30px;
}

.function_title_sub span::after {
	right: -30px;
	transform: scale(-1, 1);
}

.function_title_color {
	background: linear-gradient(transparent 70%, #FFFF00 70%);
	padding: 5px 10px;
}

.function_block {
	display: flex;
	justify-content: center;
	column-gap: 24px;
	row-gap: 112px;
	flex-wrap: wrap;
	margin-top: 120px;
}

.function_box {
	position: relative;
	width: calc(33.33% - 16px);
}

.function_box_inner {
	min-height: 320px;
	display: flex;
	padding: 100px 28px 25px;
	background: #fff;
	border-radius: 30px 30px 0px 0px;
	border: solid 3px #9FDAFB;
	border-bottom: none;
}

.function_box_inner.small {
	padding-top: 76px;
}

.function_detail {
	flex-grow: 1;
}

.function_img {
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% -50%;
}

.function_text {
	color: #004BB1;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	text-align: center;
	margin-bottom: 8px;
}

.function_text .function_text_small {
	font-size: 16px;
	display: block;
	text-align: center;
	font-weight: bold;
	color: #3B4043;
}

.function_list {
	position: relative;
	color: #3B4043;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	margin-bottom: 16px;
	padding-left: 22px;
}

.function_list:last-child {
	margin-bottom: 0;
}

.function_list::before {
	content: '';
	width: 16px;
	height: 16px;
	background: url(../img/icon_check@2x.png) no-repeat center center /contain;
	position: absolute;
	top: 5px;
	left: 0;
}

.function_explanation {
	background: #fff;
	border-top: 1px solid #D9D9D9;
	border-left: solid 3px #9FDAFB;
	border-right: solid 3px #9FDAFB;
	border-bottom: solid 3px #9FDAFB;
	border-radius: 0px 0px 30px 30px;
}

.function_explanation_cont {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
	padding: 18px 22px 0;
}

.function_explanation_cont.show {
	max-height: 366px;
	padding: 18px 22px 16px;
}

.function_explanation_txt {
	font-size: 16px;
	font-weight: 400;
	line-height: 160%;
}

.function_explanation_btn {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 17px;
	font-weight: 500;
	line-height: 150%;
	text-align: center;
	padding: 0 28px 20px;
}

.common_link_icon {
	margin-left: 12px;
}

@media screen and (max-width: 767px) {
	.function {
		padding: 40px 20px 48px;
	}

	.function_title {
		font-size: 18px;
	}

	.function_title_sub {
		font-size: 1.6rem;
	}

	.function_title_sub span::before,
	.function_title_sub span::after {
		width: 16px;
		height: 18px;
	}

	.function_title_sub span::before {
		left: -20px;
	}

	.function_title_sub span::after {
		right: -20px;
	}

	.function_block {
		flex-direction: column;
		gap: 20px;
		margin-top: 24px;
	}

	.function_box {
		width: 100%;
	}

	.function_box_inner {
		min-height: auto;
		display: flex;
		align-items: flex-end;
		gap: 14px;
		padding: 16px 18px 20px;
	}

	.function_box_inner.small {
		padding-top: 16px;
	}

	.function_text {
		font-size: 16px;
		text-align: left;
	}

	.function_text .function_text_small {
		text-align: left;
	}

	.function_list {
		font-size: 14px;
	}

	.function_img {
		position: initial;
		width: 100px;
		height: 100px;
		translate: none;
	}

	.fuction_link {
		font-size: 14px;
		padding: 14px 18px;
	}

	.function_icon {
		width: 20px;
		height: 20px;
		margin-bottom: 2px;
	}

	.function_explanation_cont.show {
		max-height: 320px;
	}
}

/* interview
--------------------------------*/
.interview {
	background: #F7F9FC;
	padding-bottom: 60px;
}

.interview .title {
	position: relative;
}

.title_min {
	position: absolute;
	top: -10px;
	left: 50%;
	translate: -50% -50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #004BB1;
	font-size: 24px;
	font-weight: 700;
	line-height: 150%;
	padding: 12px 20px;
	background: #FF0;
	border-radius: 30px;
}

.interview_wrap {
	max-width: 986px;
	margin: 0 auto;
	margin-top: 60px;
	padding: 0 18px;
}

.interview_item {
	position: relative;
	background: #FFF;
	border: 4px solid #D3EDFB;
	margin-bottom: 48px;
}

.interview_item:last-child {
	margin-bottom: 0;
}

.interview_item_wrap {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 24px 50px 40px;
}

.interview_item_txt {
	font-size: 18px;
	font-weight: 700;
	line-height: 160%;
	margin-bottom: 4px;
}

.interview_item_ttl {
	color: #004BB1;
	font-size: 28px;
	font-weight: 700;
	line-height: 160%;
	margin-bottom: 14px;
}

.interview_item_txt_small {
	font-size: 16px;
	font-weight: 400;
	line-height: 160%;
}

.interview_faq_btn {
	cursor: pointer;
	text-align: center;
	font-size: 17px;
	font-weight: 500;
	line-height: 150%;
	background: #D3EDFB;
	padding: 20px 0;
}

.interview_faq_cont {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
	padding: 0 46px;
}

.interview_faq_cont.show {
	max-height: 1100px;
	/* コンテンツの実際の高さに合わせて大きめに設定する */
	padding: 0px 46px 40px;
}

.interview_faq_item {
	margin-bottom: 24px;
}

.interview_faq_img {
	float: right;
	margin-left: 20px;
}

.interview_faq_item:last-child {
	margin-bottom: 0;
}

.interview_faq_question,
.interview_faq_answer {
	display: flex;
	gap: 18px;
}

.interview_faq_question_txt {
	width: 100%;
	font-size: 20px;
	color: #004BB1;
	line-height: 1.6;
	padding: 16px 0;
	border-bottom: 1px solid #004BB1;
}

.interview_faq_answer_txt {
	width: 100%;
	font-size: 16px;
	color: #000;
	font-weight: 400;
	line-height: 1.6;
	padding: 22px 0;
}

.interview_faq_question_color {
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 44px;
	font-family: "DIN 2014";
	font-weight: 700;
	line-height: 160%;
	padding: 0 16px;
	background: #004BB1;
}

.interview_faq_answer_color {
	display: flex;
	color: #004BB1;
	;
	font-size: 44px;
	font-family: "DIN 2014";
	font-weight: 700;
	line-height: 160%;
	padding: 0 16px;
	background: #fff;
}

@media screen and (max-width: 767px) {
	.interview {
		padding-bottom: 32px;
	}

	.interview .title {
		font-size: 18px;
	}

	.title_min {
		top: -6px;
		font-size: 13px;
		padding: 8px 20px;
	}

	.interview_wrap {
		margin-top: 24px;
	}

	.interview_item {
		margin-bottom: 24px;
	}

	.interview_item_wrap {
		flex-direction: column;
		gap: 16px;
		padding: 20px 20px 38px 20px;
	}

	.interview_item_img {
		width: 140px;
		height: 140px;
	}

	.interview_item_txt {
		font-size: 14px;
	}

	.interview_item_ttl {
		font-size: 20px;
		margin-bottom: 8px;
	}

	.interview_item_txt_small {
		font-size: 14px;
	}

	.interview_faq {
		font-size: 13px;
	}

	.interview_faq_cont {
		padding: 0px 18px 0px 18px;
	}

	.interview_faq_cont.show {
		max-height: 1400px;
		padding: 0px 18px 18px 18px;
	}

	.interview_faq_item {
		margin-bottom: 16px;
	}

	.interview_faq_item_unique {
		display: flex;
		flex-direction: column;
	}

	.interview_faq_img {
		float: none;
		order: 1;
		margin: 0;
	}

	.interview_faq_question,
	.interview_faq_answer {
		gap: 12px;
	}

	.interview_faq_question_txt {
		font-size: 14px;
		padding: 12px 0;
	}

	.interview_faq_question_color {
		font-size: 22px;
		padding: 0 8px;
	}

	.interview_faq_answer_txt {
		font-size: 13px;
		padding: 12px 0;
	}

	.interview_faq_answer_color {
		font-size: 22px;
		padding: 0 8px;
	}
}

/* about
--------------------------------*/
.sec_about .wrap {
	display: flex;
	align-items: center;
	width: 100%;
}

.sec_about .list li {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	margin-top: 10px;
}

.sec_about .list li:first-child {
	margin-top: 0;
}

.sec_about .list .list_num {
	line-height: 1;
	color: #FFF;
	background: #003E92;
	padding: 5px 25px 5px 10px;
	position: relative;
	overflow: hidden;
}

.sec_about .list .list_num::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: -15px;
	border: 15px solid transparent;
	border-bottom: 60px solid #FFF;
}

.sec_about .list .list_num_strong {
	font-size: 4.5rem;
	line-height: 1;
	vertical-align: sub;
	margin-left: 5px;
}

.sec_about .list_text {
	font-size: 3rem;
	line-height: 1.43;
}

.sec_about .list_text_strong {
	font-size: 4.6rem;
}

@media screen and (max-width: 767px) {
	.sec_about .text {
		font-size: 1.7rem;
		letter-spacing: 0;
	}

	.sec_about .wrap {
		display: block;
		padding-right: 5%;
	}

	.sec_about .img {
		display: none;
	}

	.sec_about .list li {
		margin-top: 10px;
		align-items: center;
	}

	.sec_about .list li:first-child {
		margin-top: 0;
	}

	.sec_about .list .list_num {
		padding: 8px 25px 8px 20px;
		display: inline-block;
		flex: none;
		margin-right: 10px;
	}

	.sec_about .list .list_num::before {
		right: -15px;
		border: 15px solid transparent;
		border-bottom: 60px solid #FFF;
	}

	.sec_about .list .list_num_strong {
		font-size: 2.5rem;
		margin-left: 0;
		margin-top: 5px;
		display: block;
	}

	.sec_about .list_text {
		font-size: 2rem;
	}

	.sec_about .list_text_strong {
		font-size: 3rem;
	}
}

/* trouble
--------------------------------*/
.sec_trouble .title {
	font-size: 4rem;
	color: #003E92;
	text-align: center;
}

.sec_trouble .title_line {
	display: inline-block;
	padding-bottom: 25px;
	border-bottom: 3px solid #003E92;
}

.sec_trouble .title_logo {
	width: 306px;
	margin-right: 5px;
	vertical-align: middle;
}

.sec_trouble .title_small {
	font-size: 3.4rem;
}

.sec_trouble .list {
	margin-top: 20px;
}

.sec_trouble .list li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 10px;
}

.sec_trouble .list li:first-child {
	margin-top: 0;
}

.sec_trouble .list_img {
	margin-right: 10px;
}

.sec_trouble .list_text {
	font-size: 3rem;
	letter-spacing: 0.04em;
}

.sec_trouble .question {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sec_trouble .question_text {
	font-size: 3.2rem;
	line-height: 1.43;
	letter-spacing: 0.04em;
	text-align: center;
}

.sec_trouble .question_text.arw {
	position: relative;
	padding-bottom: 50px;
}

.sec_trouble .question_text.arw::before {
	content: '';
	position: absolute;
	bottom: -18px;
	left: 50%;
	transform: translateX(-50%);
	color: transparent;
	border: 30px solid transparent;
	border-top: 20px solid #44A8E1;
}

@media screen and (max-width: 767px) {
	.sec_trouble .title {
		font-size: 2.2rem;
	}

	.sec_trouble .title_line {
		display: inline-block;
		padding-bottom: 10px;
		border-bottom: 3px solid #003E92;
	}

	.sec_trouble .title_sp_line {
		display: inline-block;
		margin-bottom: 10px;
		padding-bottom: 10px;
		border-bottom: 3px solid #003E92;
	}

	.sec_trouble .title_logo {
		width: 48px;
		margin-right: 5px;
		vertical-align: middle;
	}

	.sec_trouble .title_small {
		font-size: 1.7rem;
	}

	.sec_trouble .title_logo {
		width: 185px;
		margin-right: 5px;
	}

	.sec_trouble .title_small {
		font-size: 2.2rem;
	}

	.sec_trouble .list {
		margin-top: 10px;
	}

	.sec_trouble .list_img {
		width: 48px;
		flex: none;
		margin-right: 10px;
	}

	.sec_trouble .list_text {
		font-size: 1.7rem;
		line-height: 1.29;
		letter-spacing: 0.04em;
	}

	.sec_trouble .question {
		display: block;
	}

	.sec_trouble .question_img {
		width: 49%;
		margin: 0 auto 10px;
	}

	.sec_trouble .question_text {
		font-size: 1.7rem;
		letter-spacing: 0;
	}

	.sec_trouble .question_text.arw {
		padding-bottom: 40px;
	}

	.sec_trouble .question_text.arw::before {
		bottom: -16px;
		border-width: 25px;
		border-top-width: 18px;
	}
}

/* merit
--------------------------------*/
.sec_merit .title {
	font-size: 4.5rem;
	color: #fff;
	line-height: 1.6;
	text-align: center;
}

.sec_merit .title_line {
	display: inline-block;
	padding-bottom: 10px;
	border-bottom: 10px solid #FFFF00;
}

.sec_merit .title_logo {
	width: 325px;
	margin-right: 5px;
	vertical-align: middle;
}

.sec_merit .title_small {
	font-size: 3.8rem;
}

.sec_merit .list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-top: 25px;
}

.sec_merit .list li {
	width: 300px;
	background: #fff;
	margin-right: 25px;
	padding: 20px;
}

.sec_merit .list li:nth-child(3n) {
	margin-right: 0;
}

.sec_merit .list li:nth-child(n+4) {
	margin-top: 25px;
}

.sec_merit .list_icon {
	text-align: center;
}

.sec_merit .list_text {
	font-size: 2.4rem;
	line-height: 1.25;
	color: #003E92;
	text-align: center;
}

.sec_merit .about_text {
	font-size: 3.4rem;
	text-align: center;
	line-height: 1.47;
	margin-top: 35px;
}

.sec_merit .about_text:first-child {
	margin-top: 0;
}

@media screen and (max-width: 767px) {
	.sec_merit .title {
		font-size: 2.2rem;
	}

	.sec_merit .title_sp_line {
		display: inline-block;
		margin-top: 5px;
		padding-bottom: 0px;
		border-bottom: 3px solid #FFFF00;
	}

	.sec_merit .title_line {
		display: inline-block;
		padding-bottom: 0px;
		border-bottom-width: 3px;
	}

	.sec_merit .title_logo {
		width: 185px;
	}

	.sec_merit .title_small {
		font-size: 2.2rem;
	}

	.sec_merit .list {
		margin-top: 25px;
	}

	.sec_merit .list li,
	.sec_merit .list li:nth-child(3n) {
		width: 49%;
		margin-right: 2%;
		padding: 5px 0;
	}

	.sec_merit .list li:nth-child(2n) {
		margin-right: 0;
	}

	.sec_merit .list li:nth-child(n+3) {
		margin-top: 10px;
	}

	.sec_merit .list_icon {
		text-align: center;
	}

	.sec_merit .list_icon img {
		max-width: inherit;
		width: auto;
		height: 50px;
	}

	.sec_merit .list_text {
		font-size: 1.5rem;
		line-height: 1.33;
		letter-spacing: 0.02em;
	}

	.sec_merit .about_text {
		font-size: 1.7rem;
		margin-top: 15px;
	}

	.sec_merit .about_text:first-child {
		margin-top: 0;
	}
}

/* voice
--------------------------------*/
.sec_voice .balloon {
	position: relative;
	margin-top: 20px;
}

.sec_voice .balloon_box {
	background: #FFF;
	border-radius: 30px;
	max-width: 707px;
	width: 100%;
	padding: 24px 0 17px;
	position: relative;
	z-index: 1;
	margin-top: 10px;
}

.sec_voice .balloon_box:first-child {
	margin-top: 0;
}

.sec_voice .balloon_box:nth-child(odd) {
	margin-left: 45px;
}

.sec_voice .balloon_box:nth-child(even) {
	margin-left: auto;
}

.sec_voice .balloon_box::before {
	content: '';
	position: absolute;
	width: 164px;
	height: 55px;
	background: url(../img/deco_voice01.png) no-repeat center center /contain;
	z-index: -1;
}

.sec_voice .balloon_box01::before {
	left: 35px;
	bottom: -70px;
	transform: rotate(-66deg);
}

.sec_voice .balloon_box02::before {
	left: -83px;
	top: 63px;
	transform: rotate(-30deg);
}

.sec_voice .balloon_box03::before {
	display: none;
}

.sec_voice .balloon_box04::before {
	left: -55px;
	top: 39px;
	transform: rotate(0deg);
}

.sec_voice .balloon_text {
	font-size: 2.4rem;
	line-height: 1.45;
	text-align: center;
}

.sec_voice .baloon_text_strong {
	font-size: 2.8rem;
}

.sec_voice .balloon_img01 {
	position: absolute;
	top: -40px;
	left: -45px;
	z-index: 1;
}

.sec_voice .balloon_img02 {
	position: absolute;
	top: 0;
	right: -40px;
	z-index: 1;
}

.sec_voice .balloon_img03 {
	position: absolute;
	top: -130px;
	right: 0;
	z-index: 1;
}

.sec_voice .balloon_img04 {
	position: absolute;
	top: 30px;
	right: -50px;
	z-index: 1;
}

.sec_voice .balloon_img05 {
	position: absolute;
	top: -50px;
	right: 0;
	z-index: 1;
}

.sec_voice .balloon_img06 {
	position: absolute;
	left: -55px;
	bottom: 0;
	z-index: 1;
}

@media screen and (max-width: 767px) {
	.sec_voice .balloon {
		position: relative;
		margin-top: 20px;
	}

	.sec_voice .balloon_box {
		border-radius: 15px;
		max-width: 100%;
		width: 92%;
		padding: 15px 0;
		margin-top: 10px;
	}

	.sec_voice .balloon_box:first-child {
		margin-top: 0;
	}

	.sec_voice .balloon_box:nth-child(odd) {
		margin-left: auto;
		margin-right: auto;
	}

	.sec_voice .balloon_box:nth-child(even) {
		margin-left: auto;
		margin-right: auto;
	}

	.sec_voice .balloon_box::before {
		display: none;
	}

	.sec_voice .balloon_text {
		font-size: 1.5rem;
		line-height: 1.45;
		text-align: center;
	}

	.sec_voice .baloon_text_strong {
		font-size: 1.7rem;
	}

	.sec_voice .balloon_img01 {
		position: absolute;
		top: -20px;
		left: -18px;
		z-index: 1;
		width: 40px;
	}

	.sec_voice .balloon_img02 {
		position: absolute;
		top: 40px;
		right: -15px;
		z-index: 1;
		width: 37px;
	}

	.sec_voice .balloon_img03 {
		position: absolute;
		top: 31px;
		right: -8%;
		z-index: 1;
		width: 56px;
	}

	.sec_voice .balloon_img04 {
		position: absolute;
		top: 7px;
		left: -15px;
		right: auto;
		z-index: 1;
		width: 42px;
	}

	.sec_voice .balloon_img05 {
		position: absolute;
		top: 5px;
		right: -10px;
		z-index: 1;
		width: 45px;
	}

	.sec_voice .balloon_img06 {
		position: static;
		width: 55%;
		max-width: 200px;
		margin: 10px auto 0;
	}
}

/* sec_voice
--------------------------------*/
.sec_customer .list li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 15px;
}

.sec_customer .list li:first-child {
	margin-top: 0;
}

.sec_customer .list_img {
	width: 184px;
}

.sec_customer .list_balloon {
	font-size: 2.2rem;
	line-height: 1.45;
	font-weight: 500;
	border: 3px solid #41B8E2;
	border-radius: 30px;
	width: calc(100% - 184px - 25px);
	background: #FFF;
	margin-left: 25px;
	padding: 30px;
	position: relative;
}

.sec_customer .list_balloon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -13px;
	width: 22px;
	height: 22px;
	transform: translateY(-50%) rotate(45deg);
	border: 3px solid #41B8E2;
	background: #fff;
	border-right: 0;
	border-top: 0;
}

.sec_customer .list_balloon_strong {
	font-weight: 700;
}

.sec_customer .list_balloon_name {
	font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
	.sec_customer .list li {
		display: block;
		margin-top: 15px;
	}

	.sec_customer .list li:first-child {
		margin-top: 0;
	}

	.sec_customer .list_img {
		width: 92px;
		margin: 0 auto;
	}

	.sec_customer .list_balloon {
		font-size: 1.5rem;
		border-width: 2px;
		margin-left: 0;
		border-radius: 15px;
		width: 100%;
		padding: 15px 3%;
		margin-top: 20px;
	}

	.sec_customer .list_balloon::before {
		top: -12px;
		left: 50%;
		width: 22px;
		height: 22px;
		transform: translateX(-50%) rotate(45deg);
		border: 2px solid #41B8E2;
		;
		border-right: 0;
		border-bottom: 0;
	}

	.sec_customer .list_balloon_name {
		font-size: 1.2rem;
	}
}

/* nav
--------------------------------*/
.sec_nav {
	padding: 35px 0;
}

.sec_nav .text {
	font-size: 2.2rem;
	font-weight: 500;
	text-align: center;
	margin-bottom: 30px;
}

.sec_nav .box {
	padding: 30px 40px;
	border-radius: 30px;
	border: 7px solid #44A8E1;
}

.sec_nav .box_flex {
	display: flex;
	justify-content: space-between;
}

.sec_nav .box_flex .box_img {
	margin-top: 15px;
}

.sec_nav .box_title {
	font-size: 2.8rem;
	line-height: 1.4;
	text-align: center;
}

.sec_nav .box_title_strong {
	font-size: 3.2rem;
}

.sec_nav .box_list {
	margin-top: 15px;
}

.sec_nav .box_btn .btn_normal {
	font-size: 2.2rem;
	line-height: 1.4;
	height: 100px;
	position: relative;
}

.sec_nav .box_btn .btn_normal::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 25px;
	width: 25px;
	height: 25px;
	transform: translateY(-50%) rotate(45deg);
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.sec_nav .box_btn .btn_normal.-info {
	margin-top: 20px;
}

.sec_nav .box_btn .btn_normal.-doc img {
	width: 50px;
}

.sec_nav .box_btn .btn_normal.-info img {
	width: 100px;
}

.sec_nav .box_btn_strong {
	font-size: 2.6rem;
}

.sec_nav .contact {
	margin-top: 20px;
}

.sec_nav .contact_text {
	font-size: 2.8rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.02em;
}

.sec_nav .contact_btn .btn_normal {
	font-size: 3.2rem;
	width: 600px;
	height: 90px;
	margin: 15px auto 0;
}

.sec_nav .contact_btn .btn_normal img {
	width: 65px;
}

.sec_nav .contact_note {
	font-size: 1.4rem;
	text-align: center;
	margin-top: 10px;
}

.sec_nav .contact_note a {
	color: #003E92;
	text-decoration: underline;
}

.sec_nav .title_btn {
	font-size: 2.8rem;
	text-align: center;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-top: 30px;
	margin-bottom: 10px;
}

.sec_nav .title_btn:first-child {
	margin-top: 0;
}

.sec_nav .box_btn .btn_normal.-big {
	font-size: 2.5rem;
	height: 120px;
	margin-top: 0;
}

.sec_nav .box_btn .btn_normal.-big .box_btn_strong {
	font-size: 3.2rem;
}

.sec_nav .box_btn .btn_normal.-big.-doc img {
	width: 56px;
}

.sec_nav .box_btn .btn_normal.-big.-info img {
	width: 100px;
}

@media screen and (max-width: 767px) {
	.sec_nav {
		padding: 15px 0;
	}

	.sec_nav .text {
		font-size: 1.7rem;
		margin-bottom: 30px;
	}

	.sec_nav .box {
		padding: 15px 3%;
		border-radius: 15px;
		border-width: 4px;
	}

	.sec_nav .box_flex {
		display: block;
	}

	.sec_nav .box_flex .box_img {
		width: 50%;
		max-width: 133px;
		margin: 0 auto;
	}

	.sec_nav .box_flex .box_img.mt {
		margin-top: 20px;
	}

	.sec_nav .box_title {
		font-size: 1.7rem;
	}

	.sec_nav .box_title_strong {
		font-size: 1.7rem;
	}

	.sec_nav .box_list {
		margin-top: 15px;
	}

	.sec_nav .box_btn .btn_normal {
		font-size: 1.3rem;
		height: 70px;
	}

	.sec_nav .box_btn .btn_normal::before {
		right: 10px;
		width: 15px;
		height: 15px;
	}

	.sec_nav .box_btn .btn_normal.-info {
		margin-top: 20px;
	}

	.sec_nav .box_btn .btn_normal.-doc img {
		width: 25px;
	}

	.sec_nav .box_btn .btn_normal.-info img {
		width: 30px;
	}

	.sec_nav .box_btn .btn_normal.-info img.position {
		position: absolute;
		left: 10px;
	}

	.sec_nav .box_btn_strong {
		font-size: 1.5rem;
	}

	.sec_nav .contact {
		margin-top: 20px;
	}

	.sec_nav .contact_text {
		font-size: 1.7rem;
		font-weight: 700;
		text-align: center;
		letter-spacing: 0.02em;
	}

	.sec_nav .contact_btn .btn_normal {
		font-size: 1.5rem;
		width: 100%;
		height: 50px;
		margin: 10px auto 0;
	}

	.sec_nav .contact_btn .btn_normal img {
		width: 32px;
	}

	.sec_nav .contact_note {
		font-size: 1.2rem;
		text-align: left;
		margin-top: 10px;
	}

	.sec_nav .title_btn {
		font-size: 1.7rem;
		margin-top: 20px;
		margin-bottom: 5px;
	}

	.sec_nav .title_btn:first-child {
		margin-top: 0;
	}

	.sec_nav .box_btn .btn_normal.-big {
		font-size: 1.5rem;
		height: 70px;
		margin-top: 0;
	}

	.sec_nav .box_btn .btn_normal.-big .box_btn_strong {
		font-size: 1.7rem;
	}

	.sec_nav .box_btn .btn_normal.-big.-doc img {
		width: 25px;
	}

	.sec_nav .box_btn .btn_normal.-big.-info img {
		width: 45px;
	}
}

/* three
--------------------------------*/
.sec_three .title_strong {
	font-size: 7.5rem;
}

.sec_three .text {
	font-size: 3.4rem;
	line-height: 1.47;
	text-align: center;
	margin-top: 30px;
}

.sec_three .text:first-child {
	margin-top: 0;
}

.sec_three .box {
	padding: 30px 50px;
	background: #F4F7FA;
	margin-top: 30px;
}

.sec_three .box_title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-bottom: 3px solid #003E92;
	padding-bottom: 10px;
	margin-bottom: 30px;
}

.sec_three .box_title_num {
	font-size: 3.8rem;
	color: #003E92;
	margin-right: 30px;
}

.sec_three .box_title_num_strong {
	font-size: 7rem;
	line-height: 1;
}

.sec_three .box_title_text {
	font-size: 4rem;
	color: #003E92;
}

.sec_three .box_flex {
	display: flex;
	justify-content: space-between;
}

.sec_three .box_list li {
	font-size: 2.8rem;
	font-weight: 500;
}

.sec_three .box_balloon {
	background: #fff;
	letter-spacing: -0.02em;
	border-radius: 30px;
	border: 4px solid #9FDAFB;
	padding: 25px 5px 25px;
	margin-top: 30px;
	position: relative;
}

.sec_three .box_balloon::before {
	content: '';
	width: 60px;
	height: 45px;
	position: absolute;
	top: -10px;
	left: -5px;
	background: url(../img/icon_balloon.svg) no-repeat center center /contain;
}

.sec_three .box_balloon dt {
	font-size: 3rem;
	color: #003E92;
	line-height: 1.33;
	font-weight: 700;
	text-align: center;
}

.sec_three .box_balloon dd {
	font-size: 2.2rem;
	font-weight: 500;
	text-align: center;
}

.sec_three .box_text {
	font-size: 2.7rem;
	text-align: center;
	margin-top: 25px;
}

.sec_three .box_figure {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.sec_three .box_figure_text {
	font-size: 2rem;
	text-align: center;
	font-weight: 500;
	position: relative;
	border: 1px solid #CCCCCC;
}

.sec_three .box_figure_text_deco {
	background: #FFF;
	padding: 25px 5px 25px 95px;
	display: block;
	position: relative;
	z-index: 1;
}

.sec_three .box_figure_text:nth-child(odd) .box_figure_text_deco::before,
.sec_three .box_figure_text:nth-child(odd) .box_figure_text_deco::after {
	content: '';
	position: absolute;
	top: 0;
	right: -15px;
	width: 35px;
	background: #fff;
	border-right: 1px solid #CCCCCC;
	height: 50%;
	transform: skewX(25deg);
	z-index: -1;
}

.sec_three .box_figure_text:nth-child(odd) .box_figure_text_deco::after {
	top: auto;
	bottom: 0;
	transform: skewX(-25deg);
}

.sec_three .box_figure_text:nth-child(n+3) {
	margin-top: 10px;
}

.sec_three .box_figure_text:nth-child(odd) {
	width: 48%;
}

.sec_three .box_figure_text:nth-child(even) {
	width: 48%;
	color: #003E92;
	border-radius: 20px;
}

.sec_three .box_figure_text:nth-child(even) span {
	border-radius: 20px;
	background: #FFFF4C;
}

.sec_three .box_figure_text::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 15px;
	width: 74px;
	height: 65px;
	transform: translateY(-50%);
	background: url(../img/img_three02.png) no-repeat center center /contain;
	z-index: 2;
}

.sec_three .box_figure_text:nth-child(even)::before {
	width: 80px;
	height: 64px;
	background-image: url(../img/img_three03.png);
}

@media screen and (max-width: 767px) {
	.sec_three .title_strong {
		font-size: 2.8rem;
	}

	.sec_three .text {
		font-size: 1.7rem;
		margin-top: 15px;
	}

	.sec_three .box {
		padding: 15px 3%;
		margin-top: 15px;
		overflow: hidden;
	}

	.sec_three .box_title {
		display: block;
		padding-bottom: 5px;
		margin-bottom: 15px;
	}

	.sec_three .box_title_num {
		font-size: 1.7rem;
		text-align: center;
		margin-right: 0;
	}

	.sec_three .box_title_num_strong {
		font-size: 3rem;
		line-height: 1;
	}

	.sec_three .box_title_text {
		font-size: 2.2rem;
		text-align: center;
		line-height: 1.43;
	}

	.sec_three .box_flex {
		display: block;
	}

	.sec_three .box_list {
		margin-bottom: 10px;
	}

	.sec_three .box_list li {
		font-size: 1.7rem;
	}

	.sec_three .box_balloon {
		border-radius: 15px;
		border-width: 2px;
		padding: 15px 3%;
		margin-top: 30px;
	}

	.sec_three .box_balloon::before {
		width: 30px;
		height: 23px;
		top: -10px;
		left: -5px;
	}

	.sec_three .box_balloon dt {
		font-size: 1.7rem;
		line-height: 1.43;
		text-align: left;
	}

	.sec_three .box_balloon dd {
		font-size: 1.5rem;
		text-align: left;
	}

	.sec_three .box_text {
		font-size: 1.7rem;
		margin-top: 15px;
	}

	.sec_three .box_figure {
		display: block;
		overflow: hidden;
	}

	.sec_three .box_figure_text {
		font-size: 1.5rem;
	}

	.sec_three .box_figure_text_deco {
		padding: 10px 3% 10px calc(3% + 45px);
	}

	.sec_three .box_figure_text:nth-child(odd) .box_figure_text_deco::before,
	.sec_three .box_figure_text:nth-child(odd) .box_figure_text_deco::after {
		left: 1px;
		right: auto;
		bottom: -1.5vw;
		top: auto;
		width: 50%;
		height: 18px;
		transform: skewY(3deg);
		border-right: 0;
		border-bottom: 1px solid #CCCCCC;
	}

	.sec_three .box_figure_text:nth-child(odd) .box_figure_text_deco::after {
		top: auto;
		bottom: -1.5vw;
		right: 1px;
		left: auto;
		transform: skewY(-3deg);
	}

	.sec_three .box_figure_text:nth-child(n+2) {
		margin-top: 10px;
	}

	.sec_three .box_figure_text:nth-child(odd) {
		width: auto;
		z-index: 2;
	}

	.sec_three .box_figure_text:nth-child(even) {
		width: auto;
		border-radius: 10px;
		margin-top: 2vw;
	}

	.sec_three .box_figure_text:nth-child(even) span {
		border-radius: 10px;
	}

	.sec_three .box_figure_text::before {
		left: 6%;
		width: 37px;
		height: 32px;
	}

	.sec_three .box_figure_text:nth-child(even)::before {
		width: 40px;
		height: 32px;
	}
}


/* user
--------------------------------*/
.sec_user .box {
	background: #FFF;
	border: 7px solid #44A8E1;
	border-radius: 30px;
	padding: 14px 40px;
}

.sec_user .title {
	font-size: 3.8rem;
	line-height: 1.12;
	text-align: center;
}

.sec_user .title_kome {
	font-size: 1.8rem;
	font-weight: 400;
	vertical-align: baseline;
}

.sec_user .title_small {
	font-size: 3rem;
}

.sec_user .title_strong {
	font-size: 7.8rem;
}

.sec_user .note {
	font-size: 1.8rem;
	font-weight: 400;
	color: #003E92;
	text-align: right;
	/* padding-right: 5em; */
}

.sec_user .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 20px;
}

.sec_user .list li {
	height: 78px;
}

.sec_user .list li img {
	max-width: inherit;
	max-width: auto;
	width: auto;
	height: 100%;
}

.sec_user .msg li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 15px;
}

.sec_user .msg li:first-child {
	margin-top: 0;
}

.sec_user .msg_img {
	width: 86px;
}

.sec_user .msg_balloon {
	font-size: 2.2rem;
	line-height: 1.45;
	font-weight: 400;
	border: 3px solid #41B8E2;
	border-radius: 30px;
	width: calc(100% - 86px - 25px);
	background: #FFF;
	margin-left: 25px;
	padding: 30px;
	position: relative;
}

.sec_user .msg_balloon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -13px;
	width: 22px;
	height: 22px;
	transform: translateY(-50%) rotate(45deg);
	border: 3px solid #41B8E2;
	background: #fff;
	border-right: 0;
	border-top: 0;
}

.sec_user .msg_balloon_strong {
	font-weight: 700;
}

.sec_user .msg_balloon_name {
	font-size: 1.8rem;
}

.sec_user .text {
	font-size: 3rem;
	text-align: center;
	margin-top: 10px;
}

@media screen and (max-width: 767px) {
	.sec_user .box {
		border-width: 4px;
		border-radius: 15px;
		padding: 15px 3%;
	}

	.sec_user .title {
		font-size: 2.2rem;
		line-height: 1.43;
		margin-top: 15px;
	}

	.sec_user .title:first-child {
		margin-top: 0;
	}

	.sec_user .title_kome {
		font-size: 1.2rem;
	}

	.sec_user .title_small {
		font-size: 2.2rem;
	}

	.sec_user .title_strong {
		font-size: 2.8rem;
	}

	.sec_user .note {
		font-size: 1.2rem;
		padding-right: 0;
		margin-top: 10px;
	}

	.sec_user .list {
		margin-top: 10px;
	}

	.sec_user .list li {
		height: 12vw;
	}

	.sec_user .list li:nth-last-child(-n+3) {
		height: 10vw;
	}

	.sec_user .list li img {
		max-width: inherit;
		max-width: auto;
		width: auto;
		height: 100%;
	}

	.sec_user .msg {
		display: block;
	}

	.sec_user .msg li {
		display: block;
		margin-top: 15px;
	}

	.sec_user .msg li:first-child {
		margin-top: 0;
	}

	.sec_user .msg_img {
		width: 86px;
		margin: 0 auto;
	}

	.sec_user .msg_balloon {
		font-size: 1.5rem;
		border-width: 2px;
		margin-left: 0;
		border-radius: 15px;
		width: 100%;
		padding: 15px 3%;
		margin-top: 20px;
	}

	.sec_user .msg_balloon::before {
		top: -12px;
		left: 50%;
		width: 22px;
		height: 22px;
		transform: translateX(-50%) rotate(45deg);
		border: 2px solid #41B8E2;
		;
		border-right: 0;
		border-bottom: 0;
	}

	.sec_user .msg_balloon_name {
		font-size: 1.2rem;
	}

	.sec_user .text {
		font-size: 1.7rem;
	}
}


/* sec_reason
--------------------------------*/
.sec_reason .subtitle {
	font-size: 4rem;
	line-height: 1.5;
	text-align: center;
	color: #003E92;
	margin-top: 20px;
}

.sec_reason .subtitle:first-child {
	margin-top: 0;
}

.sec_reason .img {
	float: right;
	margin-left: 40px;
	margin-bottom: 10px;
}

.sec_reason .text {
	font-weight: 500;
	margin-top: 20px;
}

.sec_reason .box {
	padding: 30px;
	background: #F4F7FA;
	margin-top: 20px;
}

.sec_reason .box_list li {
	font-size: 3rem;
	font-weight: 500;
}

.sec_reason .box_text {
	font-size: 3.8rem;
	text-align: center;
	margin-top: 20px;
}

@media screen and (max-width: 767px) {
	.sec_reason .subtitle {
		font-size: 2.2rem;
		line-height: 1.43;
		margin-top: 20px;
	}

	.sec_reason .img {
		float: none;
		margin: 10px auto 0;
	}

	.sec_reason .text {
		margin-top: 10px;
	}

	.sec_reason .box {
		padding: 15px 3%;
		margin-top: 15px;
	}

	.sec_reason .box_list li {
		font-size: 1.7rem;
	}

	.sec_reason .box_text {
		font-size: 1.9rem;
		margin-top: 15px;
	}
}

/* howto
--------------------------------*/
.sec_howto .lead {
	font-size: 2.2rem;
	text-align: center;
	font-weight: 500;
}

.sec_howto .box {
	background: #FFF;
	border-radius: 30px;
	border: 7px solid #DBDBDB;
	padding: 30px 50px;
	margin-top: 20px;
}

.sec_howto .box_title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-bottom: 3px solid #003E92;
	padding-bottom: 10px;
	margin-bottom: 30px;
}

.sec_howto .box_title_num {
	font-size: 7rem;
	line-height: 1;
	color: #003E92;
	width: 85px;
}

.sec_howto .box_title_text {
	font-size: 4rem;
	text-align: center;
	color: #003E92;
	width: calc(100% - 85px);
}

.sec_howto .box_flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.sec_howto .box_left {
	max-width: 410px;
}

.sec_howto .box_text,
.sec_howto .box_list li {
	font-size: 2.2rem;
	letter-spacing: 0.0.2em;
	font-weight: 400;
	line-height: 1.68;
}

.sec_howto .box_list li {
	padding-left: 1em;
	text-indent: -1em;
}

.sec_howto .text {
	font-size: 3.2rem;
	font-weight: 700;
	text-align: center;
	margin-top: 20px;
}

@media screen and (max-width: 767px) {
	.sec_howto .lead {
		font-size: 1.5rem;
	}

	.sec_howto .box {
		border-radius: 15px;
		border-width: 4px;
		padding: 15px 3%;
		margin-top: 15px;
	}

	.sec_howto .box_title {
		border-bottom-width: 2px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.sec_howto .box_title_num {
		font-size: 3rem;
		width: 50px;
	}

	.sec_howto .box_title_text {
		font-size: 2.2rem;
		width: calc(100% - 50px);
	}

	.sec_howto .box_flex {
		flex-direction: column-reverse;
	}

	.sec_howto .box_left {
		max-width: 100%;
		margin-top: 10px;
	}

	.sec_howto .box_text,
	.sec_howto .box_list li {
		font-size: 1.5rem;
		line-height: 1.68;
	}

	.sec_howto .text {
		font-size: 1.7rem;
		margin-top: 20px;
	}
}

/* sec_welcome
--------------------------------*/
.sec_welcome {
	background: url("../img/bg_welcome.png") no-repeat;
	background-size: cover;
	background-position: center top;
	width: 100%;
	padding-top: 35px;
	padding-bottom: 35px;
}

.sec_welcome .inbox {
	width: 90%;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}

.sec_welcome .welcome_img {
	margin-top: 30px;
}

.sec_welcome .welcome_txt {
	max-width: 632px;
}

.sec_welcome .ribbon {
	margin: 0 auto 10px;
	position: relative;
}

.sec_welcome .welcome_group {
	display: flex;
	justify-content: space-between;
	padding-bottom: 20px;
}

.sec_welcome_txt,
.sec_welcome .welcome_at {
	padding-left: 50px;
}

.sec_welcome_txt ul {
	padding-top: 10px;
}

.sec_welcome .welcome_at p,
.sec_welcome .welcome_at dl dt,
.sec_welcome .welcome_at dl dd {
	font-size: 13px;
	color: #fff !important;
	line-height: 1.7em;
}

.sec_welcome .welcome_at dl {
	display: flex;
}

@media screen and (max-width: 767px) {
	.sec_welcome {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.sec_welcome .inbox {
		width: 90%;
		max-width: 980px;
		margin-left: auto;
		margin-right: auto;
	}

	.sec_welcome .welcome_img {
		display: none;
	}

	.sec_welcome .welcome_txt {
		max-width: 100%;
	}

	.sec_welcome .ribbon {
		margin: 0 auto 10px;
		position: relative;
	}

	.sec_welcome .welcome_group {
		padding-bottom: 10px;
	}

	.sec_welcome_txt,
	.sec_welcome .welcome_at {
		padding-left: 0;
	}

	.sec_welcome_txt ul {
		padding-top: 10px;
	}

	.sec_welcome .welcome_at p,
	.sec_welcome .welcome_at dl dt,
	.sec_welcome .welcome_at dl dd {
		font-size: 1.2rem;
		color: #fff !important;
		font-weight: 400;
		line-height: 1.7em;
	}

	.sec_welcome .welcome_at dl {
		display: flex;
		display: block;
	}

	.sec_welcome .welcome_at dl dt,
	.sec_welcome .welcome_at dl dd {
		display: inline;
	}
}


/* sec_fee
--------------------------------*/
.sec_fee .fee_ttl {
	width: 980px;
	margin: 0 auto;
	text-align: center;
}

.sec_fee .fee_ttl h2,
.sec_fee .fee_ttl h3,
.sec_fee .fee_ttl p {
	text-align: center;
}

.sec_fee .fee_ttl h2 {
	padding-top: 10px;
}

.sec_fee .fee_ttl h3 {
	font-size: 37px;
	font-weight: bold;
	border-bottom: 15px solid #ffff00;
	display: inline-block;
	padding: 20px 0;
}

.sec_fee .fee_box {
	width: 100%;
	background: url(../img/bg_fee.png) no-repeat;
	background-size: cover;
	background-position: center center;
	padding-top: 43.13333%;
	height: 0;
	margin-top: 10px;
}

.sec_fee .fee_box p {
	width: 980px;
	margin: 0 auto;
	text-align: right;
	transform: translateY(-150%);
}

@media screen and (max-width: 1400px) {
	.sec_fee .fee_box {
		margin-top: 90px;
	}

	.sec_fee .fee_box p {
		margin: 0 auto;
		transform: translateY(-115%);
	}
}

@media screen and (max-width: 767px) {
	.sec_fee .fee_ttl {
		width: auto;
		margin: 0 auto;
		text-align: center;
	}

	.sec_fee .fee_ttl h2,
	.sec_fee .fee_ttl h3,
	.sec_fee .fee_ttl p {
		text-align: center;
	}

	.sec_fee .fee_ttl p {
		width: 120px;
		margin: 0 auto;
	}

	.sec_fee .fee_ttl h2 {
		width: 210px;
		margin: 10px auto 0;
		padding-top: 0;
	}

	.sec_fee .fee_ttl h3 {
		font-size: 1.7rem;
		border-bottom-width: 3px;
		padding: 0 0 10px;
		margin-top: 15px;
	}

	.sec_fee .fee_box {
		width: 100%;
		padding: 20px 5% 0;
		background: url(../img/bg_fee_sp.png) no-repeat;
		background-size: cover;
		padding-top: 0;
		height: 84vw;
		margin-top: 10px;
		display: flex;
		align-items: center;
	}

	.sec_fee .fee_box p {
		width: auto;
		margin: 0px auto 0 auto;
		text-align: right;
		transform: none;
	}
}

/* sec_contact
--------------------------------*/
.sec_contact .lead {
	font-size: 3.6rem;
	line-height: 1.33;
	text-align: center;
	letter-spacing: 0.04em;
	color: #003E92;
}

.sec_contact .lead .lead_icon {
	padding: 0 60px;
	display: inline-block;
	position: relative;
}

.sec_contact .lead .lead_icon::before,
.sec_contact .lead .lead_icon::after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 62px;
	height: 70px;
	background: url(../img/deco_blue.png) no-repeat center center /contain;
}

.sec_contact .lead .lead_icon::before {
	left: 0;
}

.sec_contact .lead .lead_icon::after {
	right: 0;
	transform: scale(-1, 1);
}

.sec_contact .text {
	font-size: 3.2rem;
	text-align: center;
	margin-top: 35px;
}

.sec_contact .check_list {
	margin-top: 20px;
}

.sec_contact .check_list li {
	font-size: 2.8rem;
}

.sec_contact .form {
	margin-top: 50px;
}

.sec_contact .contact_note {
	font-size: 1.4rem;
	text-align: center;
	margin-top: 20px;
}

.sec_contact .contact_note a {
	color: #003E92;
	text-decoration: underline;
}

.sec_contact .bg_white .wrap {
	width: 100%;
}

@media screen and (max-width: 767px) {
	.sec_contact .lead {
		font-size: 1.7rem;
		line-height: 1.43;
	}

	.sec_contact .lead .lead_icon {
		padding: 0 40px;
	}

	.sec_contact .lead .lead_icon::before,
	.sec_contact .lead .lead_icon::after {
		width: 31px;
		height: 35px;
	}

	.sec_contact .text {
		font-size: 1.7rem;
		margin-top: 35px;
	}

	.sec_contact .check_list {
		margin-top: 20px;
	}

	.sec_contact .check_list li {
		font-size: 1.7rem;
	}

	.sec_contact .form {
		margin-top: 30px;
	}

	.sec_contact .contact_note {
		width: 90%;
		font-size: 1.2rem;
		text-align: left;
		margin-top: 20px;
		margin-right: auto;
		margin-left: auto;
	}
}

/* footer_chat
--------------------------------*/
.footer_chat {
	position: fixed;
	bottom: 50px;
	left: 2%;
	width: 100%;
	z-index: 100;
	width: 97px;
}

/* footer_bnr
--------------------------------*/
.footer_bnr {
	display: flex;
	justify-content: space-between;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}

.footer_bnr .btn {
	width: 49.5%;
}


/* ------------------------------
    clearfix
------------------------------ */

.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
	height: 1%;
}

.cf {
	display: block;
}

/* End Hack */

/* no1 sme add */
.flexboxs {
	display: flex;
	justify-content: space-around;
}

.sp_only {
	display: none;
}

.get_theree {
	margin-bottom: 35px;
}

.get_theree h2 {
	font-size: 3rem;
	text-align: center;
	color: #003E92;
	margin-bottom: 20px;
}

.get_theree p {
	font-size: 1rem;
	text-align: center;
	margin-top: 10px;
}

.sme_section {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sme_section h2 {
	font-size: 4rem;
	color: #003E92;
	margin: 30px 0;
}

.three_big {
	font-size: 4rem
}

.number_size {
	font-size: 6rem;
}

@media screen and (max-width: 767px) {
	.pc_only {
		display: none;
	}

	.sp_only {
		display: block;
	}

	.get_theree h2 {
		font-size: 2rem;
		line-height: 1;
	}

	.sme_section h2 {
		font-size: 2.2rem;
	}

	.get_theree {
		margin-top: 30px;
	}

	.cent_text {
		display: block;
		text-align: center;
	}
}

/* No1 medal */
.three_top {
	margin-top: 40px;
}

.three_bk {
	background: #F4F7FA;
	padding: 1px;
}

/* movie
--------------------------------*/
.title_movie {
	font-size: 4.5rem;
	text-align: center;
	padding: 30px 0;
	color: #003E92;
	text-align: center;
	margin-bottom: 10px;
}

.title_movie span {
	background: linear-gradient(transparent 70%, #FFFF00 70%) 0 0;
}

@media screen and (max-width: 767px) {
	.title_movie {
		font-size: 2.2rem;
		line-height: 1.4;
		padding: 10px 0;
	}
}

.sec_movie .movie {
	position: relative;
	width: 90%;
	padding-top: 45.75%;
	text-align: center;
	margin-bottom: 30px;
}

.sec_movie .movie iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 90%;
	height: 100%;
}



.p-footer {
	padding: 14px 0;
}

@media screen and (max-width: 767.98px) {
	.p-footer {
		padding: 14px 14px 55px;
	}
}

.p-footer.bg-blue {
	background: #004BB1;
}

.p-footer .l-wrapper {
	width: min(100%, 980px);
	margin: 0 auto;
}

.p-footer .p-footer__contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 767.98px) {
	.p-footer .p-footer__contents {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.p-footer .p-footer__contents .p-footer__main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
}

@media screen and (max-width: 767.98px) {
	.p-footer .p-footer__contents .p-footer__main {
		width: 100%;
		align-items: center;
		margin-bottom: 40px;
	}
}

.p-footer .p-footer__contents .p-footer__nav {
	margin-left: 8px;
}

@media screen and (max-width: 767.98px) {
	.p-footer .p-footer__contents .p-footer__nav {
		margin-left: 0;
		width: 50%;
	}
}

.p-footer .p-footer__contents .p-footer__logo {
	width: 150px;
}

@media screen and (max-width: 767.98px) {
	.p-footer .p-footer__contents .p-footer__logo {
		width: 50%;
	}
}

.p-footer .p-footer__contents .p-footer__logo img {
	width: 100%;
}

@media screen and (max-width: 767.98px) {
	.p-footer .p-footer__contents .p-footer__logo img {
		width: 150px;
	}
}

@media screen and (max-width: 767.98px) {
	.p-footer .p-footer__contents .p-footer__copy {
		margin-top: 20px;
	}
}

.p-footer .p-footer__contents .p-footer__copy {
	position: absolute;
	bottom: 0;
	right: 0;
}

.p-footer .p-footer__contents .p-footer__copy small {
	color: #fff;
	font-size: 10px;
	line-height: 2.4;
	letter-spacing: 0;
}

.p-nav .p-nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 14px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.p-nav .p-nav__list:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 767.98px) {
	.p-nav .p-nav__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.p-nav .p-nav__list:last-child {
		margin-bottom: 0;
	}

	.p-footer .p-footer__contents .p-footer__copy {
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		text-align: center;
	}
}

.p-nav .p-nav__list .p-nav__item+.p-nav__item {
	border-left: 1px solid #fff;
}

@media screen and (max-width: 767.98px) {
	.p-nav .p-nav__list .p-nav__item+.p-nav__item {
		border-left: none;
		margin-top: 10px;
	}
}

.p-nav .p-nav__list .p-nav__item a,
.p-nav .p-nav__list .p-nav__item p {
	padding: 2px 18px;
	display: block;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0;
	font-weight: 400;
	line-height: 1.2;
	min-width: 120px;
}

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

	.p-nav .p-nav__list .p-nav__item a,
	.p-nav .p-nav__list .p-nav__item p {
		padding: 0;
	}
}

/* micro modal */
/**************************\
  Basic Modal Styles
\**************************/

.modal {
	font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	overflow-y: scroll;
}

.modal__container {
	width: 100%;
	background-color: #fff;
	padding: 30px 20px;
	max-width: 980px;
	border-radius: 4px;
	box-sizing: border-box;
	position: absolute;
	top: 20px;
}

.modal__header {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.modal__title {
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	padding: 20px 0;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.25;
	text-align: center;
	color: #333;
	box-sizing: border-box;
	background: linear-gradient(to right, rgba(47, 128, 237, 1) 0%, rgba(86, 204, 242, 1) 100%);
}

.modal__close {
	background: transparent;
	border: 0;
	position: absolute;
	top: -15px;
	right: 20px;
}

.modal__header .modal__close:before {
	content: "\2715";
}

.modal__content {
	margin-top: 2rem;
	margin-bottom: 2rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, .8);
}

.modal__btn {
	font-size: .875rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
	background-color: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	border-radius: .25rem;
	border-style: none;
	border-width: 0;
	cursor: pointer;
	-webkit-appearance: button;
	text-transform: none;
	overflow: visible;
	line-height: 1.15;
	margin: 0;
	will-change: transform;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	transition: -webkit-transform .25s ease-out;
	transition: transform .25s ease-out;
	transition: transform .25s ease-out, -webkit-transform .25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.modal__btn-primary {
	background-color: #00449e;
	color: #fff;
}


@media screen and (max-width: 767px) {
	.modal__container {
		padding: 10px 0;
	}

	.modal__close {
		top: -0;
	}
}

/**************************\
	Demo Animation Style
\**************************/
@keyframes mmfadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes mmfadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes mmslideIn {
	from {
		transform: translateY(15%);
	}

	to {
		transform: translateY(0);
	}
}

@keyframes mmslideOut {
	from {
		transform: translateY(0);
	}

	to {
		transform: translateY(-10%);
	}
}

.micromodal-slide {
	display: none;
}

.micromodal-slide.is-open {
	display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
	animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
	animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
	animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
	animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
	will-change: transform;
}

/**************************\
	  Over Write
  \**************************/

.modal {
	display: none;
}

.modal.is-open {
	display: block;
}

#modal-seminar .templateWidth {
	padding: 0;
}