@charset "UTF-8";

body{
	font-size: 18px;
}
@media screen and (max-width:768px){
	#header .fix_box{
		position: fixed;
		top: 0;
		z-index: 1;
		width: 100%;
		height: 100px;
		background: #fff;
	}
}
/*breadcrums*/
.breadcrums {
	max-width: 1000px;
	padding-top: 10px;
	margin: 0 auto;
	margin-bottom:-5px;
}
.breadcrums p{
	font-size:12px;
}
.breadcrums li{
	float: left;
	list-style: none;
	padding-right: 35px;
}
.breadcrums li a{
	position: relative;
	display: inline-block;
	padding-right: 10px;
	color:#000;
	font-weight: normal;
	font-size:12px;
	text-decoration:none;
}
.breadcrums li a:after{
	content:'';
	position: absolute;
	display: block;
	width: 7px;
	height:7px;
	top: 30%;
	right: -5%;
	border-top:1px solid #000;
	border-right:1px solid #000;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.breadcrums li:last-child a:after{
	content:'';
	display: none;
}
/* //breadcrums*/

.small{
	font-size: 12px;
	padding-top: 10px;
	padding-bottom: 10px;
	vertical-align: middle;
}
/*gnavi*/
#gnavi_bg{
	background-color: #f7f5f0;
	
}

#gnavi{
	width: 100%;
	margin-top: 20px;
}
#gnavi ul.nav{
	display: table;
	min-height: 40px;
	margin-bottom:0;
	width:60%;
	padding: 1% 0%;
	font-size: 16px;
}

#gnavi ul.nav li{
	list-style: none;
	display: table-cell;
	box-sizing: border-box;
	height: 40px;
/*	border-left:1px dotted #000;*/
	vertical-align: middle;
	text-align: left;
	padding: 0 0 0 15px;
}
#gnavi ul.nav li:first-child{
	border-left:none;
	padding-left: 0;
	padding-right: 10px;
}
#gnavi ul.nav li:nth-child(3){
	padding-left: 10px;
	/*padding-bottom: 5px;*/
}
#gnavi ul.nav li.active a{
	border-bottom: 2px #836b23 solid;
	/*display:inline-block;*/
}
#gnavi ul.nav li:hover{
	opacity: .5;
}
#gnavi ul.nav li a{
	text-decoration: none;
	color: #836b23;
	font-weight: bold;
}



@media screen and (max-width:768px){
	#header{
		position: relative;
		padding-top: 25px;
	}
	#gnavi{
    box-sizing: border-box;
    width: 100%;
	height: 600px;
    position: absolute;		
    top: -600px;
    left: 0;
    background: #000;
	display: block;
	z-index: 9999;
	margin: 0;
	transition: 0.3s ease-out;	
	}
	#gnavi.open{
	top: 0px;
	transition: 0.3s ease-out;	
	}
	#gnavi ul.nav{
	width: 100%;	
	}
	#gnavi ul.nav li{
	margin-top: 2em;	
	display:block;	
	text-align: center;
	font-size: 30px;
	height: auto;	
	}
	#gnavi ul.nav li:nth-child(3){
	 padding-left: 0;
	}
	#gnavi ul.nav li a{
	color: #fff;	
	}
	#menu_link{
		position: absolute;
		content:'';
		width: 85px;
		height: 100px;
		top: 0;
		right: 0;
	}
	#menu_link span{
		transform: translate(0, -50%);
		transition-property: opacity;
	}
	#menu_link::before{
		transform: translate3D(0, -30px, 0);
		transition-property: transform;
		content:'';
	}
	#menu_link::after{
		transform: translate3D(0, 20px, 0);
		transition-property: transform;
		content:'';
	}
	#menu_link::before, #menu_link::after, #menu_link span {
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
    top: 50%;
    left: -30px;
    background: #000;
    transition: .2s;
	}
	#close_link{
		position: absolute;
		content:'';
		width: 85px;
		height: 100px;
		top: 0;
		right: 0;
	}
	#close_link span{
		transform: translate(0, -50%);
		transition-property: opacity;
		opacity: 0;
	}
	#close_link::before{
		transform: rotate(45deg);
		transition-property: transform;
		content:'';
	}
	#close_link::after{
		transform: rotate(-45deg);
		transition-property: transform;
		content:'';
	}
	#close_link::before, #close_link::after, #close_link span {
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
    top: 50px;
    left: -30px;
    background: #fff;
    transition: .2s;
	}
	
}
/* //gnavi */

section{
	max-width:1000px;
	margin: auto;
}
figure{
	position:relative;
}
figcaption{
	font-size: 0.7em;
	text-align: right;
	color:#FFF;
	position:absolute;
	bottom:7px;
	left:7px;
	text-shadow: 
    black 1px 1px 10px, black -1px 1px 10px,
    black 1px -1px 10px, black -1px -1px 10px;
}
figcaption_right{
	font-size: 0.7em;
	text-align: right;
	color:#FFF;
	position:absolute;
	bottom:7px;
	right:7px;
	text-shadow: 
    black 1px 1px 10px, black -1px 1px 10px,
    black 1px -1px 10px, black -1px -1px 10px;
}
#logo{
	/*background-color: #FFF;*/
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.logo_leftbox {
    position: absolute;
	padding: 20px 0 0px;
    /*left: 10px;
    top: 30px;*/
}

.logo_rightbox {
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
}

.fix_box .contact_btn a{
    display: block;
    color: #fff;
    background: #aa985f;
    padding: 18px 30px;
    text-decoration: none;
    transition: .8s;
    text-align: center;
    font-size: 16px;
}


#copy{
	width:100%;
	display: block;
	text-align:center;
	background-color:#FFF;
	color:#000;
}
#copy h1{
	font-size:1.9em;
	padding:5px 0 3px;
	letter-spacing: 0.2em;
}
.figure{
	position:relative;
	display: inline-block;
}
#mv{
	width:100%;
	background-color: #fff;
}
		@media screen and (max-width:768px){
		#mv{
			margin-top:74px;
			} }
#mv figure:nth-child(1){
	width:100%;
}
#mv figure:nth-child(2){
	width:66.6%;
}
#mv .img-right{
	position:absolute;
	bottom:0;
	right:0;
	display: inline-block;
	width:33%;
}
#mv .img-right figure{
	width:100%;
}
#mv img{
	width:100%;
}
#detail{
	display:block;
	width:100%;
	background-color:#000036;
	position:relative;
	padding:4em 0;
}
.border_bottom{
	border-bottom: 1.5px solid #38383a;
	width: 95%;
	margin-bottom: 30px!important;
}
.text{
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.main_title{
	font-size: 24px;
	margin-top:100px;
	margin-bottom: 20px;
	text-align: center;
}
.main_title img{
	width:100%
}
.main_title_2{
	margin:100px auto 20px;
	text-align: -webkit-center;
}
.title{
	font-size: 24px;
	position: relative;
	margin-top: 50px;
    margin-bottom: 10px;
}
.bnr_arton{
	width:75%;
	margin:0 auto 40px;
}
.bnr_arton img{
	width:100%;
}

@media screen and (max-width:768px){
.title{
	font-size: 30px;
}
.bnr_arton{
	width:100%;
	margin:0 auto 40px;
}
}

.container .title_before{
	padding-left:20px;
}
.container .title_before::before{
	content:'';
	width: 20px;
	height: 20px;
	position: absolute;
	top:13px;
	left: 0;
	background-image: url('../img/philippines/arrow.png');
	background-repeat: no-repeat;
}
.img_caption{
	color: #fff;
	position: absolute;
	left: 7px;
	bottom: 7px;
	text-shadow: black 1px 1px 10px, black -1px 1px 10px, black 1px -1px 10px, black -1px -1px 10px;
}
.txt_caption{
	font-size: 12px;
}
.content_box{
	margin-top: 50px;
}
/* city */
#city{
	max-width: 1000px;
	width:100%;
	background-color: #fff;
	margin: 0 auto;
	display: flex;
	justify-content:space-between;
	flex-wrap:wrap;
}

#city .img-left{
	width:65.5%;
}
#city .img-left img{
	width:100%;
}
#city .img-right img{
	width:100%;
}
#city .img-right{
	width:33.65%;
	display:block;
}
#city .img-right .box,
#city .img-left .box{
	position: relative;
}

#city .content{
	padding-top: 10px;
	padding-bottom: 10px; 	
}

/* //city */

/* philipnes_map*/
.philipines_map{
	margin-top: 50px;
}
.philipines_map .img_box{
	
}
.philipines_map .border_radius{
	margin-top:50px;
	margin-bottom:100px;
	padding: 30px;
	border: solid 1px #000;
	border-radius: 15px;
}

.philipines_map .title{
	font-size: 24px;
	margin-bottom: 10px;
	margin-top: 0;
}
.philipines_map .text{
	font-size: 16px;
}


/* //phillipne_map*/

.img img{
	width:100%;
}
.img_box img{
	width:100%;
}

/* asean*/
#asean{
	margin: 50px auto 10px;
}
#asean .container01{
	margin-top: 10px;
}


#asean .flex_box{
	display: flex;
	width:100%;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
}
#asean .flex_box .left_box{
	width: 49.5%;
}
#asean .flex_box .right_box{
	width: 48.5%;
}

#asean .right_box img{
	display: block;
	width:100%;
}
#asean .left_box img{
	display: block;
	width:100%;
}
#asean .container02{
	margin-top: 50px;
}

#asean .container03{
	margin-top: 50px;
}

#asean  .container03 .content_box{
	margin-top: 20px;
	margin-bottom: 50px;
}

#asean .glaph_title{
	
}
#asean .img_graph .img_caption{
	position: relative;
	text-shadow: none;
	color: #000;
	padding-left: 1.5em;
}
/* //asean*/


/* #caption */
#caption{
	margin-top: 50px;
	margin-bottom: 50px;
}

/* //#caption */

/* contact */

#contact{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;	
}
#contact .contact_btn p{
	margin-bottom: 0;
}
#contact .contact_btn a{
    display:block;
	color: #fff;
	background: #836b23;
	padding:10px;
	text-decoration: none;
	border-radius: 8px;
	transition: .8s;
    text-align:center;
}
#contact .contact_btn a:hover{
	opacity: .8;
	transition: .8s;
}
#contact address{
    width: 75%;
    margin-bottom:40px;
    text-align: justify;
    font-family: "ヒラギノUD明朝 W4 JIS2004", "Hiragino UD Serif W4", "ヒラギノ明朝 ProN W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Sawarabi Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "HG明朝E", "serif";
}
#contact > address > ul{
    margin:0 auto;
    padding-inline-start: 20px;
}
#contact > address > ul > li{
    font-size:14px;
    margin-bottom:7px;
    list-style: disc;
}
#contact > address > h4{
    font-size:18px;
    margin-bottom:20px;
}
#contact > address > dl{
    margin-bottom:7px;
    margin-left:20px;
}
#contact > address > dl > dt{
    font-size:14px;
    margin-left:-0.4em;
}
#contact > address > dl > dd{
	font-size:14px;
}
@media all and (-ms-high-contrast: none) {
    #contact > address > dl{
        margin-left:40px;
    }
}

/* //contact */

.detail_left .kome{
	margin:5px 0 10px;;
}
#detail::before{
	display:block;
	content:'';
	width:100%;
	height:2em;
	position:absolute;
	top:0;
	background-image:url("/content/dam/31sumai/lp/the-arton/img/bar_01.png");
	background-repeat: no-repeat;
	background-size:100% auto;
}
#detail::after{
	display:block;
	content:'';
	width:100%;
	height:2em;
	position:absolute;
	bottom:-2em;
	background-image:url("/content/dam/31sumai/lp/the-arton/img/bar_02.png");
	background-repeat: no-repeat;
	background-size:100% auto;
}
img.bar-top{
	width:100%;
	margin-bottom:30px;
}
img.bar-bottom{
	width:100%;
	margin-top:30px;
}
img.map{
	width:40%;
}
.detail{
	width:100%;
	color:#FFF;
	float:right;
	text-align:justify;
}
dl.detail{
	width:100%;
	position:relative;
}
dl.detail dt{
	display:inline-block;
	width:10%;
	border: solid 1px;
	padding: 5px;
	margin-bottom:0.5em;
	text-align: center;
	font-size: 1.3em;
}
dl.detail dd{
	width:85%;
	display: inline-block;
	text-align:left;
	margin-left:10px;
	font-size: 1.5em;
}
#detail section hr{
	clear: both;
	margin:20px 0 20px;
	border-top:solid 1px #FFF;
	border-bottom:none;
	border-left:none;
	border-right:none;
	width:100%;
}
.detail_left{
	display:inline-block;
	width:54%;
	color:#FFF;
}
.detail_right{
	display:inline-block;
	width:44%;
	color:#FFF;
	float: right;
}
.detail_left dl dt::before{
	content:'[';
	position:absolute;
	left:0;
}
.detail_left dl dt::after{
	content:']';
	position:absolute;
	right:0;
}
.detail_left dl dt{
	width:20%;
	display: inline-block;
	position:relative;
	text-align: center;
	margin-bottom:10px;
	font-size:1em;
}
.detail_left dl dd{
	width:75%;
	display: inline-block;
	position:relative;
	text-align: left;
	float:right;
}
.detail_right dl dt::before{
	content:'[';
	position:absolute;
	left:0;
}
.detail_right dl dt::after{
	content:']';
	position:absolute;
	right:0;
}
.detail_right dl dt{
	width:30%;
	display: inline-block;
	position:relative;
	text-align: center;
	margin-bottom:10px;
	font-size:1em;
}
.detail_right dl dd{
	width:65%;
	display: inline-block;
	position:relative;
	text-align: left;
	float:right;
}


#column{
	background-color: #00101d;
	width:100%;
	color:#FFF;
}
#column h2{
	text-align: center;
	font-size: 1.9em;
	letter-spacing: 0.2em;
	padding:122px 0 10px;
}
#column p{
	line-height: 2em;
	font-size:1.05em;
}
#column hr{
	padding-bottom:86px;
	border-top:solid 1px #FFF;
	border-bottom:none;
	border-left:none;
	border-right:none;
	width:40px;
}
.column-left{
	width:45%;
	margin:0;
	padding:0;
	display: inline-block;
}
.column-left img{
	width:100%;
}
.column-right{
	float:right;
	width:50%;
	margin:0;
	padding:0;
	display: inline-block;
	text-align: justify;
}
.column-right h3{
	text-align: left;
	font-size: 1.6em;
	letter-spacing: 0.2em;
	padding:0 0 30px;
	line-height: 1.8em;
}
.column-right_02{
	float:right;
	width:45%;
	margin:0;
	padding:0;
	display: inline-block;
}
.column-right_02 img{
	width:100%;
}
.column-left_02{
	width:50%;
	margin:0;
	padding:0;
	display: inline-block;
	text-align: justify;
}
.column-left_02 h3{
	text-align: left;
	font-size: 1.6em;
	letter-spacing: 0.2em;
	padding:0 0 30px;
	line-height: 1.8em;
}
.column_02{
	clear: both;
	display: block;
	padding:100px 0;
	height:auto;
}
#seminar img{
	width:100%;	
}
#seminar{
	margin:100px auto 0;
	position:relative;
}
#seminar a{
/*
	width:100%;
	display:block;
	position:absolute;
	bottom:5%;
	text-align: center;
*/
}
#seminar a img{
	width:100%;
	margin:0 auto;
}

small{
	clear: both;
	display:inline-block;
	font-size: 11px;
	line-height: 1.5em;
	color:#FFF;
	text-align: justify;
}
.kome{
}
.kome ul{
	margin-left:1em;
	padding:0;
}
.kome ul li{
	text-indent: -1em;
	list-style: none;
	text-align: justify;
}
.kome ul li::before{
	content:'※';
	font-size: 1.3em;
}
#notice{
	padding:30px 0;	
}


/*main-content*/
#main-content{
	width: 100%;
	/*padding-top: 60px;*/
	padding-bottom: 80px;
}
#main-content .title{
	color:#836b23;
	font-size: 30px;
	text-align:left;
	margin-bottom: 45px;
}
@media screen and (max-width:768px){
	#main-content .title{
		font-size: 27px;
	}
}

#main-content .text{
	font-size: 18px;
	text-align: left;
}
/* //main-content* */







#main_project {
  background: #f7f5ef;
  padding: 80px 0;
}

.project__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.project__title {
  color: #836b23;
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

.project__list {
  display: flex;
  gap: 40px;
	list-style: none;
}

.project__item {
  flex: 1;
}

.project__item-title{
	font-size: 24px;
	padding-top: 10px;
}


.project__text{
	font-size: 14px;
}

.project__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== SP ===== */
@media screen and (max-width: 767px) {
  .project__list {
    flex-direction: column;
	margin-left: -35px;
  }
}




/* ===== mapエリア ===== */
.map-area__inner {
  position: relative;       /* absoluteの基準 */
  max-width: 1000px;        /* 地図の最大幅 */
  width: 100%;
  margin: 0 auto;
}

/* 地図画像 */
.map-area__map {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ボタン共通 ===== */
.map-btn {
  position: absolute;
}

.map-btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ボタン個別：サイズ＋位置（PC） ===== */
.btn01 {
position: absolute;
  width: 203px;
  top: 25%;
  left: 6%;
}

.btn01 a {
  display: block;
}

.btn01 a:hover {
  opacity: 0.8;
}

/* 画像 */
.btn01 img {
  width: 100%;
  height: auto;
  display: block;
}


.btn02 {
  position: absolute;
  width: 224px;
  top: 26%;
  right: 35%;
  display: flex;
  flex-direction: column;
}

/* 各リンク */
.btn02 a {
  display: block;
}

/* 画像 */
.btn02 img {
  width: 100%;
  height: auto;
  display: block;
}

.btn02 a:hover {
  opacity: 0.8;
}

.btn03 {
  position: absolute;
  width: 224px;
  bottom: 40%;
  left: 31%;
  display: flex;
  flex-direction: column;
}

/* 各リンク */
.btn03 a {
  display: block;
}

/* 画像 */
.btn03 img {
  width: 100%;
  height: auto;
  display: block;
}

.btn03 a:hover {
  opacity: 0.8;
}

.btn04 {
  width: 246px;
  bottom: 23%;
  right: 16%;
}

.btn04 a:hover {
  opacity: 0.8;
}

/* ===== SP対応 ===== */
@media screen and (max-width: 767px) {

  /* ボタンを少し小さく＆比率基準に */
  .btn01 { 
	 width: 60%;
     top: 20%;
     left: 1%;
	}
  .btn02 { 
	 width: 40%;
     top: 18%;
     right: 16%; 
	}
  .btn03 { 
	 width: 40%;
	 bottom: 28%;
	 left: 30%;
	}
  .btn04 { 
	 width: 65%;
	 bottom: 12%;
	 right: 6%;
	}
}








/*#main_project{
	width: 100%;
	background-color: #f7f5f0;
}
.main_project_con{
    max-width: 1000px;
	padding-top: 10px;
	padding-bottom: 30px;
    margin: auto;
}

.main_project_con .title{
	color: #836b23;
    font-size: 30px;
    text-align: center;
    margin-bottom: 45px;
}*/


/* global_map
#global_map{
	width: 100%;
	margin: 0 auto 50px;
	max-width: 1000px;
}
#global_map img{
	width: 100%;
}
#global_map .global_map_title{
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}*/
/* //global_map*/

footer{
	background-color: #FFF;
	padding:30px 0 0;
	border-top:solid 1px #FFF;
	border-bottom:none;
	border-left:none;
	border-right:none;
	color: #000;
	text-align: left;
}
footer .footer_inner{
	text-align: center;
	background: #f6f6f6;
	padding:30px 0;
	margin-top: 30px;
}
footer p{
	margin-bottom:30px;
	font-size: 16px;
}
footer img{
	padding:0;
}
footer .footer_inner ul li{	
	display: inline-block;
	padding-right: 8px;
	margin-right: 8px;
	border-right:#4d4d4d 1px solid;
	list-style: none;
	font-size: 12px;
} 
footer .footer_inner ul li a{
	text-decoration: none;
	color: #333;
}
footer .footer_inner p {
    font-size: 10px;
	padding-top: 10px;
	margin-bottom: 0;
}


@media screen and (max-width:750px){
	section{
		width:94%;
		margin: auto;
	}
	figcaption{
		font-size: 1em;
	}
	figcaption_right{
		font-size: 1em;
		bottom: 13px;
		right: 13px;
	}
	#logo{
		margin:0 auto;
		padding:20px 3px 30px;
	}
	#logo a{
		width:70%;
		padding:0;
	}
	#logo img{
		width:100%;
	}
	.sp_logo{
		width: 100%;
		margin: 0 auto;
		text-align:center;
		margin-top: 30px;
	}
	#copy{
		width:100%;
		display: block;
		text-align:center;
		background-color:#00101d;
		color:#FFF;
	}
	#copy h1{
		font-size:40px;
		padding:10px 0 7px;
		letter-spacing: 0.1em;
		line-height: 1.4em;
	}
	figure{
		display: block;
	}
	#mv figure:nth-child(2){
		width:100%;
	}
	#mv .img-right{
		position:relative;
		display: block;
		width:100%;
	}
	dl.detail dt{
		width:9%;
		font-size: 15px;
		padding: 2px;
	}
	dl.detail dd{
		width:86%;
		font-size: 17px;
	}
	dl.detail{
		margin-bottom:20px;
	}
	.up{
		position: relative;
		top: 0.8em;
	}
	.detail_left{
		clear:both;
		display:block;
		width:100%;
		font-size: 15px;
	}
	.detail_right{
		clear:both;
		display:block;
		width:100%;
		float: none;
		font-size: 15px;
	}
	.detail_left dl dt{
		width:25%;
	}
	.detail_left dl dd{
		width:70%;
	}
	.detail_right dl dt{
		width:25%;
	}
	.detail_right dl dd{
		width:70%;
	}

	section#column, section#column_02{
		width:100%;
	}
	#column h2{
		text-align: center;
		font-size: 40px;
		letter-spacing: 0.1em;
		padding:60px 0 10px;
		display: block;
	}
	#column hr{
		padding-bottom:40px;
		clear:both;
	}
	.column-left, .column-right{
		float:none;
		width:100%;
	}
	#column hr.hr_02{
		clear:both;
		display: block;
		margin: 40px auto 0;
		width: 80px;
	}
	.column_02{
		clear: both;
		display: block;
		padding:40px 0px 0px;
	}
	.column-right h3, .column-left h3, .column-right_02 h3, .column-left_02 h3{
		font-size: 38px;
		letter-spacing: 0.1em;
		padding:30px 0 30px;
		line-height: 1.7em;
	}
	#column p{
		line-height: 1.8em;
		font-size:18px;
		letter-spacing: 0.05em;
	}
	.column-left_02, .column-right_02{
		width:100%;
	}
	address{
		font-size: 1em;
		text-align: center;
	}
	#seminar{
		clear: both;
		margin:60px auto 20px;
		position:relative;
	}
	footer p{
		margin-bottom:15px;
		font-size: 20px;
	}
	footer a{
		font-size: 13px;
	}
	small{
		font-size: 11px;
	}
	/*global_map
	#global_map{
		margin-bottom: 50px;
	}
	
	#global_map .global_map_title{
		font-size:12px;
	}*/
	
	
	
	
	/*main-content*/
	#main-content{
		width: 95%;
		padding-top: 30px;
	}
	/*city*/
	#city{
		width: 95%;
	}
	#city .img-left{
		width: 100%;
	}
	#city .img-right{
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-wrap:wrap;
		margin-top: -1.25vw;
	}
	#city .img-right .box{
		width: 50%;
	}

	/* philippines_map*/
	.philipines_map .img_box img{
		width: 100%;
	}
	/* asean */
	#asean .flex_box{
		flex-flow: column-reverse;
	}
	#asean img{
		width: 100%;
	}
	#asean .flex_box .left_box, #asean .flex_box .right_box{
		width: 100%;
	}
	/*potential*/
	#potential img{
		width: 100%;
	}
	/*project*/
	#project img{
		width: 100%;
	}
	#project .main_title img{
		width: inherit;
	}
	/*contact*/
	#contact{
		margin:0 auto;
	}
	#contact address{
		width: 100%;
	}
	#contact .contact_btn{
		width: 100%;
		margin-top: 50px;
		text-align: center;
	}
	
	#contact .contact_btn a{
		font-size: 34px;
	}

	footer .footer_inner{
		box-sizing: border-box;
		width: 100%;
		padding-right:5%;
		padding-left:5%;
		margin-top: 90px;
	}
	footer img{
        width:80%;
        margin-top: 20px;	
	}
    #contact .contact_btn a{
        width:70%;
        margin:auto;
    }
    #contact address{
        width: 100%;
        margin-bottom:40px;
        text-align: justify;
    }
    #contact > address > h4{
        font-size:24px;
        margin-bottom:40px;
    }
    #contact > address > ul > li{
        font-size: 13px;
        margin-bottom:20px;
        line-height: 2em;
    }
    #contact > address > dl > dt{
        font-size:13px;
        margin-left:-0.8em;
    }
    #contact > address > dl > dd{
        font-size:13px;
        line-height: 2em;
    }
    #contact > address > dl{
        margin-bottom:20px;
    }
}