@charset "UTF-8";
/* CSS Document */

/* *********** */

/* フォント定義 */
@font-face {
  font-family: 'AllianzNeo';
  src: url('../fonts/AllianzNeo-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'AllianzNeo';
  src: url('../fonts/AllianzNeo-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/*
font-family: 'AllianzNeo', sans-serif;
font-weight: 600;

font-family: 'AllianzNeo', sans-serif;
font-weight: 700;
*/

/* *********** */

.lazy-content {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.lazy-content.loaded {
  opacity: 1;
}
.lazy-image {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.lazy-image.loaded {
  opacity: 1;
}

/* *********** */

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: normal;
  color: #414141;
  position: relative;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
	padding-top: 17.86vw;
}

/* *********** */

a[href^="tel:"] {
  pointer-events: none !important;
}
.pc_view {
  display: none;
}
img {
  width: 100%;
  height: auto;
}

/** *********************** **/

header {
	width: 100%;
	height: 17.86vw;
	background: #fff;
	position: fixed;
	top: 0;
	left:0;
	z-index: 100;
}
.header {
	width: 100%;
	margin: 0 auto;
	padding-top: 5.33vw;
	text-align: center;
	position: relative;
}
.header h1 {
	width: 21.33vw;
	height: 7.73vw;
	background: url("../sp_img/head_logo.png") no-repeat;
	background-size: 21.33vw 7.73vw;
	text-indent: -9876px;
	margin: 0 auto;
}
nav {
  position: fixed;
  top: 17.86vw;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 17.86vw);
	padding: 0 2.66vw;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
	text-align: center;
	overflow-y: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

nav.is-active {
	opacity: 1;
	visibility: visible;
}
nav ul {
  list-style: none;
  padding: 0;
	width: 74.66vw;
	margin: -17.86vw auto 0 auto;
}

nav > ul > li {
  position: relative;
}

nav a {
  display: block;
  padding: 2.73vw 0;
  color: #122b54;
	font-size: 4.8vw;
	line-height: 8vw;
	font-weight: bold;
  text-decoration: none;
	border-bottom: 1px solid #c6c6c6;
}
nav > ul > li:nth-of-type(2):nth-of-type(2) a {
	border-bottom: none !important;
	padding-top: 4vw;
}
nav > ul > li:last-child a {
	border-bottom: none !important;
}
nav > ul > li:nth-of-type(3) a {
	border-top: 1px solid #c6c6c6;
}

/* 入れ子メニュー */
nav ul ul {
  display: block;
  padding: 0 0 2vw 0;
  background-color: #fff;
	margin: 0 0 0 0 !important;
}

nav ul ul li a {
  padding: 2.66vw 0 !important;
  font-size: 4vw;
	line-height: 1;
  color: #003781;
}


/* 入れ子メニューが展開している状態 */
nav ul li.is-open > ul {
display: block;
}

/* トグルボタン */
.menu-toggle {
background: none;
border: none;
padding: 0.5rem;
cursor: pointer;
font-size: 3.2vw;
color: #999;
position: absolute;
right: 1rem;
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s ease;
}

nav ul li.is-open > .menu-toggle {
transform: translateY(-50%) rotate(180deg);
}

.hm_menu {
  width: 5.33vw;
  height: 4.8vw;
  position: absolute;
  display: inline-block;
  cursor: pointer;
	top: 6.53vw;
	right: 7.33vw;
}
.hm_menu .line {
  position: absolute;
  left: 0;
  width: 5.33vw;
  height: 2px;
  background-color: #003781;
  transition: all 0.3s ease;
}
.hm_menu .line:nth-child(1) {
  top: 0;
}
.hm_menu .line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hm_menu .line:nth-child(3) {
  bottom: 0;
}

/* ハンバーガーメニューが開いている状態 */
.hm_menu.is-active .line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hm_menu.is-active .line:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%);
}
.hm_menu.is-active .line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/** *********************** **/

.mv_wrap {
	width: 100%;
	height: 74.4vw;
	background: url("../sp_img/mv_bg_img.jpg") no-repeat top center;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.mv_wrap::after {
	content: "";
	width: 78.53vw;
	height: 106.66vw;
	background: url("../sp_img/mv_logo.png") no-repeat top right;
	background-size: 78.53vw 106.66vw;
	position: absolute;
	top: -17.86vw;
	right: 0;
	z-index: 3;
}
.mv_wrap::before {
	content: "";
	width: 100%;
	height: 29.85vw;
	background: url("../sp_img/mv_gradation.png") no-repeat;
	background-size: 100% 29.85vw;
	position: absolute;
	bottom: -1px;
	left: 0;
	z-index: 2;
}
.mv_wrap video {
	display: none;
}
.mv {
	width: 100%;
	height: 74.4vw;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	color: #fff;
	padding-top: 24.78vw;
	z-index: 4;
}
.mv h2 {
	font-size: 6.52vw;
	line-height: 9.12vw;
	font-weight: bold;
	margin-bottom: 3.495vw;
}
.mv p {
	font-size: 3.73vw;
	line-height: 6.4vw;
}

/** *********************** **/

.cnt_01_wrap {
	width: 100%;
	padding: 0 0 16.93vw 0;
	margin-top: 0vw;
	background-color: #003781;
	background-image:  url("../sp_img/cnt_01_bk.png"),url("../sp_img/mv_logo.png");
	background-repeat: no-repeat;
	background-position: center bottom 0.71vw, top -92.26vw right;
	background-size: 85.33vw auto,78.53vw auto;
	position: relative;
	z-index: 4;
}
.cnt_01 {
	width: 91.73vw;
	height: 103.4vw;
	border: 1px solid rgba(85,132,194,0.48);
	background: rgba(11,65,137,0.48);
	box-shadow: 0px 0px 20px 5px rgba(0, 27, 63, 0.3);
	position: relative;
	z-index: 8;
	padding-top: 9.2vw;
	margin: 0 auto;
	color: #fff;
	text-align: center;
}
.cnt_01 h2 {
	font-size: 5.6vw;
	margin-bottom: 3.73vw;
	font-weight: bold;
}
.cnt_01 h2::after {
	display: block;
	content: "About us";
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 600;
	letter-spacing: 0.8vw;
	color: #0095c5;
	font-size: 2.9vw;
	line-height: 1;
	padding-top: 3.33vw;
}
.cnt_01 p {
	font-size: 4vw;
	line-height: 6.4vw;
	padding: 0 6.66vw;
	text-align: left;
}

/** *********************** **/

.cnt_02_wrap {
	width: 100%;
	padding: 11.8vw 0 5.37vw 0;
	background: #f9f9f9;
}
.cnt_02 {
	width: 91.73vw;
	margin: 0 auto;
}
.cnt_02 h3 {
	font-size: 5.6vw;
	line-height: 8.66vw;
	margin-bottom: 9.06vw;
	font-weight: bold;
	text-align: center;
}
.cnt_02 h3::after {
	display: block;
	content: "Three core numbers";
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 600;
	letter-spacing: 0.8vw;
	color: #003781;
	font-size: 2.93vw;
	line-height: 1;
	padding-top: 3.2vw;
}
.cnt_02 ul.cnt_02_link {
	text-align: center;
	font-size: 0;
	margin-bottom: 17.33vw;
}
.cnt_02_link li {
	width: 76vw;
	height: 73.33vw;
	border: 2px solid rgba(0,55,129,0.7);
	box-shadow: 0 0 4vw 0.53vw rgba(185, 185, 185, 0.64);
	margin: 0 auto 11.73vw auto;
}
.cnt_02_link li:last-child {
	margin-bottom: 0 !important;
}
.cnt_02_link li a {
	display: block;
	width: 100%;
	height: 100%;
	background: #fdfdfd;
	padding-top: 28.8vw;
	position: relative;
}
.cnt_02_link li:nth-of-type(1) a::before {
	content: "01";
	width: 7.06vw;
	height: 9.73vw;
	background: url("../sp_img/cnt_02_num_bg_01.png") no-repeat;
	background-size: 7.06vw 9.73vw;
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 700;
	font-size: 3.62vw;
	line-height: 1;
	color: #fff;
	position: absolute;
	top: -2.66vw;
	left: 50%;
	margin-left: -3.13vw;
	padding: 4vw 0.8vw 0 0 ;
}
.cnt_02_link li:nth-of-type(2) a::before {
	content: "02";
	width: 7.06vw;
	height: 9.73vw;
	background: url("../sp_img/cnt_02_num_bg_01.png") no-repeat;
	background-size: 7.06vw 9.73vw;
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 700;
	font-size: 3.62vw;
	line-height: 1;
	color: #fff;
	position: absolute;
	top: -2.66vw;
	left: 50%;
	margin-left: -3.13vw;
	padding: 4vw 0.8vw 0 0 ;
}
.cnt_02_link li:nth-of-type(3) a::before {
	content: "03";
	width: 7.06vw;
	height: 9.73vw;
	background: url("../sp_img/cnt_02_num_bg_01.png") no-repeat;
	background-size: 7.06vw 9.73vw;
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 700;
	font-size: 3.62vw;
	line-height: 1;
	color: #fff;
	position: absolute;
	top: -2.66vw;
	left: 50%;
	margin-left: -3.13vw;
	padding: 4vw 0.8vw 0 0 ;
}
.cnt_02_link li:nth-of-type(1) a::after,
.cnt_02_link li:nth-of-type(2) a::after,
.cnt_02_link li:nth-of-type(3) a::after {
	content: "";
	width: 8vw;
	height: 8vw;
	background: url("../sp_img/cnt_02_list_arrw.png") no-repeat;
	background-size: 8vw 8vw;
	position: absolute;
	bottom: -4vw;
	left: 50%;
	margin-left: -4vw;
}
.cnt_02_link li:nth-of-type(1) a {
	background: #fff url("../sp_img/cnt_01_list_01_bg.png") no-repeat center top 12.26vw;
	background-size: 13.06vw 13.06vw;
}
.cnt_02_link li:nth-of-type(2) a {
	background: #fff url("../sp_img/cnt_01_list_02_bg.png") no-repeat center top 12.26vw;
	background-size: 13.06vw 13.06vw;
}
.cnt_02_link li:nth-of-type(3) a {
	background: #fff url("../sp_img/cnt_01_list_03_bg.png") no-repeat center top 12.26vw;
	background-size: 13.06vw 13.06vw;
}
.cnt_02_link li a dl {
	text-align: center;
	margin-bottom: 3.865vw;
}
.cnt_02_link li a dt {
	font-size: 4vw;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 3.46vw
}
.cnt_02_link li a dd {
	display: inline-block;
	vertical-align: top;
	font-size: 9.22vw;
	line-height: 1;
	font-weight: bold;
	color: #003781;
	position: relative;
	padding-right: 7.6vw;
}
.cnt_02_link li a dd i {
	font-style: normal;
}
.cnt_02_link li a dd span {
	font-size: 5.68vw;
}
.cnt_02_link li a dd::after {
	content: "+";
	font-size: 9.22vw;
	line-height: 1;
	font-weight: normal;
	color: #009acb;
	position: absolute;
	top: 0;
	right: 0;
}
.cnt_02_link li a p {
	font-size: 3.46vw;
	line-height: 5.33vw;
	font-weight: normal;
	color: #414141;
	padding: 0 8vw;
	text-align: left;
}

/** *********************** **/

.cnt_02_01 {
	width: 91.73vw;
	margin: 0 auto 12.66vw auto;
	border: 1px solid #e9e9e9;
	background: #fdfdfd;
	padding: 18.53vw 0 6.93vw 0;
	box-shadow: 0 0 8vw 0.53vw rgba(185, 185, 185, 0.2);
	position: relative;
	text-align: center;
}
.cnt_02_01::after {
	content: "01";
	width: 10.66vw;
	height: 14.8vw;
	background: url("../sp_img/cnt_02_num_bg_02.png") no-repeat;
	background-size: 10.66vw 14.8vw;
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 700;
	font-size: 5.48vw;
	line-height: 1;
	color: #fff;
	position: absolute;
	top: -3.46vw;
	left: 50%;
	margin-left: -4.73vw;
	padding: 6vw 1.2vw 0 0 ;
}
.cnt_02_01 h3 {
	font-size: 6.66vw;
	line-height: 1;
	margin-bottom: 6.395vw;
	font-weight: bold;
	text-align: center;
}
.cnt_02_01 h3::after {
	display: block;
	content: "Assets under management";
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 600;
	letter-spacing: 0.8vw;
	color: #003781;
	font-size: 2.66vw;
	line-height: 1;
	padding-top: 3.86vw;
}
.cnt_02_01 p:nth-of-type(1) {
	font-size: 3.73vw;
	line-height: 6.4vw;
	padding: 0 6.66vw;
	text-align: left;
}
.cnt_02_01 p span {
	font-weight: bold;
	color: #003781;
	position: relative;
	display: inline-block;
}
.cnt_02_01 p span::after {
	content: '';
  position: absolute;
  bottom: 0.53vw;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #003781;
}
.cnt_02_01 figure {
	width: 79.46vw;
	height: auto;
	margin: 2vw auto 4.93vw auto;
}
.cnt_02_01 p:nth-of-type(2) {
	width: 79.76vw;
	margin: 0 auto;
	font-size: 2.66vw;
	line-height: 4.26vw;
	text-align: left;
}

/** *********************** **/

.cnt_02_02 {
	width: 91.73vw;
	margin: 0 auto 12.66vw auto;
	border: 1px solid #e9e9e9;
	background: #fdfdfd;
	padding: 18.53vw 0 6.93vw 0;
	box-shadow: 0 0 8vw 0.53vw rgba(185, 185, 185, 0.2);
	position: relative;
	text-align: center;
}
.cnt_02_02::after {
	content: "02";
	width: 10.66vw;
	height: 14.8vw;
	background: url("../sp_img/cnt_02_num_bg_02.png") no-repeat;
	background-size: 10.66vw 14.8vw;
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 700;
	font-size: 5.48vw;
	line-height: 1;
	color: #fff;
	position: absolute;
	top: -3.46vw;
	left: 50%;
	margin-left: -4.73vw;
	padding: 6vw 1.2vw 0 0 ;
}
.cnt_02_02 h3 {
	font-size: 6.66vw;
	line-height: 8.26vw;
	margin-bottom: 7.73vw;
	font-weight: bold;
	text-align: center;
}
.cnt_02_02 h3::after {
	display: block;
	content: "Investment professionals";
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 600;
	letter-spacing: 0.8vw;
	color: #003781;
	font-size: 2.66vw;
	line-height: 1;
	padding-top: 3.06vw;
}
.cnt_02_02 p.cnt_02_txt_01 {
	font-size: 3.73vw;
	line-height: 6.4vw;
	padding: 0 6.66vw;
	text-align: left;
	margin-bottom: 3.265vw;
}
.cnt_02_02 p.cnt_02_txt_02 {
	font-size: 2.66vw;
	line-height: 1;
	padding: 0 6.66vw;
	text-align: left;
	margin-bottom: 6.265vw;
}
.cnt_02_02 p span {
	font-weight: bold;
	color: #003781;
	position: relative;
	display: inline-block;
}
.cnt_02_02 p span::after {
	content: '';
  position: absolute;
  bottom: 0.53vw;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #003781;
}
.cnt_02_02 div {
	width: 79.2vw;
	background: #f5f5f6;
	padding: 8.93vw 0 8vw 0;
	margin: 0 auto;
}
.cnt_02_02 div h4 {
	font-size: 4.53vw;
	line-height: 1;
	margin-bottom: 4.665vw;
	font-weight: bold;
	color: #003484;
	text-align: center;
}
.cnt_02_02 div p {
	font-size: 3.73vw;
	line-height: 6.4vw;
	padding: 0 5.33vw;
	margin-bottom: 8vw;
	text-align: left;
}
.cnt_02_02 div ul {
	width: 100%;
	padding-left: 29.66vw;
	margin-bottom: 6.535vw;
	text-align: left;
	position: relative;
}
.cnt_02_02 div ul::after {
	content: "";
	width: 42.26vw;
	height: 61.73vw;
	background: url("../sp_img/cnt_02_02_img.png");
	background-size: 42.26vw 61.73vw;
	position: absolute;
	top: 2.2vw;
	left: -10.4vw;
}
.cnt_02_02 div li:nth-of-type(1) {
	width: auto;
	margin-bottom: 3.86vw;
}
.cnt_02_02 div li:nth-of-type(1) dt {
	font-size: 2.93vw;
	line-height: 4vw;
	font-weight: bold;
	color: #122b54;
	margin-bottom: 0.66vw;
}
.cnt_02_02 div li:nth-of-type(1) dd {
	font-size: 2.4vw;
	line-height: 3.73vw;
}
.cnt_02_02 div li:nth-of-type(2) {
	width: auto;
	padding-left: 5.6vw;
	margin-bottom: 3.86vw;
}
.cnt_02_02 div li:nth-of-type(2) dt {
	font-size: 2.93vw;
	line-height: 4vw;
	font-weight: bold;
	color: #003280;
	margin-bottom: 0.53vw;
}
.cnt_02_02 div li:nth-of-type(2) dd {
	font-size: 2.4vw;
	line-height: 3.73vw;
}
.cnt_02_02 div li:nth-of-type(3) {
	width: auto;
}
.cnt_02_02 div li:nth-of-type(3) dt {
	font-size: 2.93vw;
	line-height: 4vw;
	font-weight: bold;
	color: #009ed0;
	margin-bottom: 0.53vw;
}
.cnt_02_02 div li:nth-of-type(3) dd {
	font-size: 2.4vw;
	line-height: 3.73vw;
}
.cnt_02_02 div a {
	width: 66.4vw;
	height: 19.6vw;
	display: block;
	padding-top: 4.66vw;
	font-size: 3.73vw;
	line-height: 5.33vw;
	font-weight: bold;
	color: #fff;
	background: #003280 url("../sp_img/cnt_02_link_arrw.png") no-repeat bottom 5.18vw right 13.46vw;
	background-size: 4.8vw auto;
	margin: 0 auto;
	position: relative;
	transition: all 0.3s linear;
}
.cnt_02_02 div a::after {
	content: "";
	width: 66.4vw;
	height: 19.6vw;
	border-right: 1px solid #abbad2;
	border-bottom: 1px solid #abbad2;
	position: absolute;
	top: 0.93vw;
	right: -0.93vw;
}


/** *********************** **/

.cnt_02_03 {
	width: 91.73vw;
	margin: 0 auto;
	border: 1px solid #e9e9e9;
	background: #fdfdfd;
	padding: 18.53vw 0 6.93vw 0;
	box-shadow: 0 0 8vw 0.53vw rgba(185, 185, 185, 0.2);
	position: relative;
	text-align: center;
}
.cnt_02_03::after {
	content: "03";
	width: 10.66vw;
	height: 14.8vw;
	background: url("../sp_img/cnt_02_num_bg_02.png") no-repeat;
	background-size: 10.66vw 14.8vw;
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 700;
	font-size: 5.48vw;
	line-height: 1;
	color: #fff;
	position: absolute;
	top: -3.46vw;
	left: 50%;
	margin-left: -4.73vw;
	padding: 6vw 1.2vw 0 0 ;
}
.cnt_02_03 h3 {
	font-size: 6.66vw;
	line-height: 1;
	margin-bottom: 6.395vw;
	font-weight: bold;
	text-align: center;
}
.cnt_02_03 h3::after {
	display: block;
	content: "A global network of services";
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 600;
	letter-spacing: 0.8vw;
	color: #003781;
	font-size: 2.66vw;
	line-height: 1;
	padding-top: 3.06vw;
}
.cnt_02_03 p:nth-of-type(1) {
	font-size: 3.73vw;
	line-height: 6.4vw;
	padding: 0 6.66vw;
	text-align: left;
	margin-bottom: 15.725vw;
}
.cnt_02_03 p span {
	font-weight: bold;
	color: #003781;
	position: relative;
	display: inline-block;
}
.cnt_02_03 p span::after {
	content: '';
  position: absolute;
  bottom: 0.53vw;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #003781;
}
.cnt_02_03 .cnt_02_map {
	width: 81.2vw;
	height: 41.46vw;
	background: url("../sp_img/cnt_02_03_img.png") no-repeat;
	background-size: 81.2vw 41.46vw;
	position: relative;
	text-align: left;
	margin: 0 auto 7.06vw auto;
}
.cnt_02_03 div dl:nth-of-type(1) {
	width: 34.66vw;
	height: 17.33vw;
	padding: 2.13vw 0 0 2.66vw;
	border: 1px solid #246e9a;
	background: rgba(255,255,255,0.60);
	box-shadow: 0 0 0.8vw 0.53vw rgba(120, 171, 188, 0.2);
	position: absolute;
	top: -10.53vw;
	left: 5.73vw;
}
.cnt_02_03 .cnt_02_map dl:nth-of-type(2) {
	width: 34.66vw;
	height: 17.33vw;
	padding: 2.13vw 0 0 2.66vw;
	border: 1px solid #246e9a;
	background: rgba(255,255,255,0.60);
	box-shadow: 0 0 0.8vw 0.53vw rgba(120, 171, 188, 0.2);
	position: absolute;
	top: 19.2vw;
	left: 2.46vw;
}
.cnt_02_03 .cnt_02_map dl:nth-of-type(3) {
	width: 34.66vw;
	height: 17.33vw;
	padding: 2.13vw 0 0 2.66vw;
	border: 1px solid #246e9a;
	background: rgba(255,255,255,0.60);
	box-shadow: 0 0 0.8vw 0.53vw rgba(120, 171, 188, 0.2);
	position: absolute;
	top: -5.06vw;
	left: 44.26vw;
}
.cnt_02_03 .cnt_02_map dt {
	font-size: 2.13vw;
	line-height: 1;
	font-weight: bold;
	color: #006192;
	margin-bottom: 1.33vw;
}
.cnt_02_03 .cnt_02_map dd {
	font-size: 1.57vw;
	line-height: 2.53vw;
	font-feature-settings: "palt";
	white-space: nowrap;
}
.cnt_02_03 .cnt_02_map dd span {
	width: 4.93vw;
	display: inline-block;
	font-size: 1.78vw;
	line-height: 2.53vw;
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 600;
	letter-spacing: 0px;
	color: #006192;
	text-align: right;
	border-right: 1px solid #b5dae6;
	padding-right: 0.85vw;
	margin: 0 0.85vw 0.57vw 0;
}
.cnt_02_03 .cnt_02_map p {
	position: absolute;
	bottom: 1.33vw;
	right: 1.336vw;
	font-size: 1.86vw !important;
	line-height: 1 !important;
	text-align: right !important;
	padding: 0 0 0 0 !important;
	margin: 0 0 0 0 !important;
}
.cnt_02_japan {
	width: 79.2vw;
	background: rgba(241,241,242,0.7);
	padding: 9.2vw 0 7.2vw 0;
	margin: 0 auto;
}
.cnt_02_japan h4 {
	font-size: 4.36vw;
	line-height: 1;
	margin-bottom: 4.665vw;
	font-weight: bold;
	color: #246e9a;
	text-align: center;
}
.cnt_02_japan p {
	font-size: 3.73vw !important;
	line-height: 6.4vw !important;
	padding: 0 6.13vw !important;
	margin-bottom: 5.195vw !important;
	text-align: left !important;
}
.cnt_02_japan figure {
	width: 63.73vw;
	height: 31.6vw;
	margin: 0 auto;
}

/** *********************** **/

.cnt_03_wrap {
	width: 100%;
	padding: 11.2vw 0 10vw 0;
	background: #fff;
}
.cnt_03_wrap h3 {
	font-size: 5.6vw;
	line-height: 1;
	margin-bottom: 5.73vw;
	font-weight: bold;
	text-align: center;
}
.cnt_03_wrap h3::after {
	display: block;
	content: "Sustainability";
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 600;
	letter-spacing: 0.8vw;
	color: #00918e;
	font-size: 2.93vw;
	line-height: 1;
	padding-top: 3.6vw;
}

.cnt_03 {
	width: 91.73vw;
	margin: 0 auto;
	font-size: 0;
	display: flex;
	flex-direction: column;
}
.cnt_03 div {
	width: 91.73vw;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #00918e;
}
.cnt_03 div:nth-child(1) { order: 2; }
.cnt_03 div:nth-child(2) { order: 1; }
.cnt_03 div:nth-child(3) { order: 3; }
.cnt_03 div:nth-child(4) { order: 4; }

.cnt_03 div figure {
	width: 91.73vw;
	height: 91.73vw;
}
.cnt_03 div p {
	font-size: 3.73vw;
	line-height: 6.4vw;
	color: #fff;
	text-align: left;
	padding: 10vw 10.66vw;
	margin: 0
}
.cnt_03 div a {
	width: 76vw;
	height: 24.4vw;
	padding-top: 3.725vw;
	display: block;
	font-size: 3.73vw;
	line-height: 5.6vw;
	font-weight: bold;
	color: #fff;
	background: #f86200 url("../sp_img/cnt_02_link_arrw.png") no-repeat bottom 5.18vw right 18.46vw;
	background-size: 4.8vw auto;
	margin: 10vw auto;
	position: relative;
	text-align: center;
}
.cnt_03 div a::after {
	content: "";
	width: 76vw;
	height: 24.4vw;
	border-right: 1px solid #f86200;
	border-bottom: 1px solid #f86200;
	position: absolute;
	top: 1.06vw;
	right: -1.06vw;
}

/** *********************** **/

.cnt_04_wrap {
	width: 100%;
	padding: 12.93vw 0 11.46vw 0;
	background: #122b54;
}
.cnt_04 {
	width: 91.73vw;
	margin: 0 auto;
	font-size: 0;
}
.cnt_04 h3 {
	font-size: 6.66vw;
	line-height: 1;
	margin-bottom: 5.595vw;
	font-weight: bold;
	text-align: center;
	color: #fff;
}
.cnt_04 h3::after {
	display: block;
	content: "About Allianz";
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 600;
	letter-spacing: 0.8vw;
	color: #009ed0;
	font-size: 2.66vw;
	line-height: 1;
	padding-top: 3.86vw;
}
.cnt_04 p:nth-of-type(1) {
	font-size: 3.73vw;
	line-height: 6.4vw;
	padding: 0 4vw;
	text-align: left;
	color: #fff;
	margin-bottom: 2.995vw;
}
.cnt_04 p:nth-of-type(2) {
	font-size: 2.66vw;
	line-height: 4.8vw;
	padding: 0 4vw;
	text-align: left;
	color: #fff;
	margin-bottom: 5.995vw;
}
.cnt_04 div {
	width: 91.73vw;
	background: #fff;
	padding: 8vw 0 6.665vw 0;
	margin: 0 auto;
	font-size: 0;
	text-align: center;
}
.cnt_04 div h4 {
	font-size: 5.6vw;
	line-height: 1;
	margin-bottom: 5.6vw;
	font-weight: bold;
}
.cnt_04 div h4::after {
	display: block;
	content: "Sponsorship";
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 600;
	letter-spacing: 0.8vw;
	color: #122b54;
	font-size: 3.13vw;
	line-height: 1;
	padding-top: 3.73vw;
}
.cnt_04 div ul {
	width: 66vw;
	margin: 0 auto 4.665vw auto;
}
.cnt_04 div li {
	width: 66vw;
	height: 66vw;
}
.cnt_04 div li:nth-of-type(1) {
	margin-bottom: 4.8vw;
}
.cnt_04 div figure {
	width: 66vw;
	height: 66vw;
	margin: 0 auto;
}
.cnt_04 div p {
	font-size: 3.73vw !important;
	line-height: 6.4vw !important;
	padding: 0 9.66vw !important;
	margin-bottom: 0 !important;
	text-align: left !important;
	color: #414141 !important;
}

/** *********************** **/

.cnt_05_wrap {
	width: 100%;
	padding: 12vw 0 11.335vw 0;
	background: #d8d8d8;
}
.cnt_05 {
	width: 87.66vw;
	margin: 0 auto;
}
.cnt_05 dl:nth-of-type(1) {
	margin-bottom: 8vw;
}
.cnt_05 dt {
	font-size: 3.46vw;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 2.665vw;
}
.cnt_05 dd {
	font-size: 2.93vw;
	line-height: 4.26vw;
}
.cnt_05 dd strong {
	font-weight: bold;
}
.cnt_05 dd li:nth-of-type(1) {
	margin-bottom: 1.42vw;
}

/** *********************** **/

footer {
	width: 100%;
	background: #fff url("../sp_img/footer_logo.png") no-repeat top 8.53vw center;
	background-size: 34.13vw auto;
	padding-top: 28.46vw;
}
.footer_01 {
	width:100%;
	margin: 0 auto;
	padding-bottom: 13.33vw;
	text-align: center;
}
.footer_01 div {
	width: 100%;
	text-align: center;
	font-size: 0;
	margin-bottom: 10.66vw;
}
.footer_01 div a:nth-of-type(1) {
	width: 10.66vw;
	height: 10.66vw;
	background: url("../sp_img/ftr_youtube.png") no-repeat;
	background-size: 10.66vw 10.66vw;
	display: inline-block;
	vertical-align: top;
	margin-right: 8vw;
}
.footer_01 div a:nth-of-type(2) {
	width: 10.66vw;
	height: 10.66vw;
	background: url("../sp_img/ftr_linkedIn.png") no-repeat;
	background-size: 10.66vw 10.66vw;
	display: inline-block;
	vertical-align: top;
}
.footer_01 p {
	color: #767676;
	font-size: 2.93vw;
	line-height: 5.6vw;
	text-align: center;
	margin-bottom: 8vw;
}
.footer_01 small {
	font-family: 'AllianzNeo', sans-serif;
	font-weight: 600;
	font-size: 3.73vw;
	line-height: 1;
	color: #767676;
	text-align: center;
}
.footer_02 {
	width: 100%;
	margin: 0 auto 8vw auto; 
	font-size: 0;
	text-align: center;
}
.footer_02 li {
	font-size: 4vw;
	line-height: 1;
	color: #767676;
}
.footer_02 li a {
	display: block;
	padding: 2.66vw 0;
}

/** *********************** **/

#pagetop {
  position: fixed;
  bottom: 2.66vw;
  right: 4vw;
  z-index: 80;
	opacity: 0;
}
#pagetop a {
  display: block;
  background: url("../sp_img/pagetop.png");
	background-size: 9.2vw 9.2vw;
  width: 9.2vw;
  height: 9.2vw;
  position: relative;
}


/** *********************** **/

