@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aclonica&display=swap');


/********************************************
header
********************************************/
header h1{
	text-align: center;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 2rem 0;
	color: #112d54;
color: #fff;
}
header h1 span{
	display: block;
	font-family: 'Aclonica', sans-serif;
	font-size: 55%
}
header {
    background-image: url(../images/common/bg.jpg);
    background-position: center center;
    background-size: cover;
    padding: 1rem 0;
}

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

header h1 {
    text-align: left;
    font-size: 2.5vh;
    font-size: 2.8vh;
    margin: 0rem 2rem 0.5rem 2rem;
}

}

/********************************************
nav
********************************************/

.nav-body{
    position: relative;
}
.nav-body.fixed {
    position: fixed;
    top: 10px;
    z-index: 10000;
    z-index: 998;
    width: 100%;
}
.nav-body.fixed nav:after{
    display:none;
}

nav{
	background: #eee;
    border-radius: 1rem;
	max-width:850px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
	padding: 1rem 1rem 1rem 1rem;
    margin-top: 0rem;
}
.scroll-prevent nav{
	    border-radius: 1rem 1rem 0 0;
}

nav:before{
	content: "";
}
nav:after{
    content: "";
    background-image: url(../images/common/town.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    height: 50px;
    width: 150px;
    display: block;
    right: 0rem;
    top: -49px;
    position: absolute;
    transition: all 0.4s;
}
nav ul{
	display: flex;
	font-size: 1.6rem;
}
nav li{
	margin: 0 5px;
}
nav li a{
	padding: 1.5rem 3rem;
    background: #000;
    color: #fff;
    border-radius: 0.5rem;
    position: relative;
	display: block;
	overflow: hidden;
}

html:lang(en) nav li a,
html:lang(ko) nav li a,
html:lang(th) nav li a,
html:lang(zh-Hans) nav li a,
html:lang(zh-Hant) nav li a{
    padding: 1.5rem 2rem;
}


nav li.learning a{
	background: #F39800;
}
nav li.entertainment a{
	background: #8E4898;
}
nav li.safety a{
	background: #0BB18D;
}
nav li.ticket a{
	background: #E62E8B;
}
nav li.sdgs a{
	background: #009fe8;
}

nav li a::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

nav li a:hover::before {
  left: 100%;
}


nav li a span{}

.nav-button {
    display: block;
    cursor: pointer;
    color: #22AC38;
    position: absolute;
    right: 0;
    padding: 0 0 0 25px;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
}


/*
.nav-button{
	display: block;
    cursor: pointer;
    color: #22AC38;
	padding: 0 0 0 25px;
	top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
*/


.nav-button span {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0px;
    background:#22AC38;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.nav-button span::before {
    content: "";
    width: 10px;
    height: 2px;
    display: block;
    -webkit-transition: 300ms;
    transition: 300ms;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
}
.nav-button span::after {
    content: "";
    width: 10px;
    height: 2px;
    display: block;
    -webkit-transition: 300ms;
    transition: 300ms;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.nav-button.active span::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-button.active span::after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}


.nav-wrap {
	max-width: 850px;
	margin: 0 auto;
	left: 0;
	right: 0;
}

.nav-wrap ul{
	display: flex;
	flex-wrap: wrap;
	margin: 1rem 2px 1rem 1rem;
	font-size: 1.6rem;
}
.nav-wrap ul li{
    position: relative;
margin: 0 1%;
}

.nav-wrap ul li:after{
  position: absolute;
  bottom: 3px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #22AC38;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.nav-wrap ul li a{
	color: #22AC38;
    display: block;
	padding: 0.5rem 0rem 0.5rem 2rem;
    position: relative;
}
.nav-wrap ul li:hover:after{
	transform: scale(1, 1);
}

.nav-wrap ul li a:before {
	content:"";
    position: absolute;
    left: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: opacity, border-color, background-color;
    transition-property: opacity, border-color, background-color;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    border-color: transparent;
    width: 14px;
    height: 14px;
	border-color: #22AC38;
	top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.nav-wrap ul li a:after {
	content:"";
    display: block;
    position: absolute;;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: border-color;
    transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    margin: auto;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    width: 4px;
    height: 4px;
    content: "";
	border-color: #22AC38;
    left: 5px;
	top: 46%;
    transform: translateY(-50%);
    position: absolute;
    -webkit-transform: translateX(-25%) rotate(45deg);
    transform: translateX(-25%) rotate(45deg);
}


.nav-wrap ul li a span{}


.nav-wrap ul li a.htb_link {
    color: #112d54;
}
.nav-wrap ul li a.htb_link:before,
.nav-wrap ul li a.htb_link:after {
    border-color: #112d54;
}
.nav-wrap.open {
	display: block;
}
.nav-wrap.close {
  display: none;
}
.nav-wrap {
/*	display: block !important;*/
}
.nav-button {
	display: block;
	cursor: pointer;
}
.nav-wrap {
    border-radius:0 0 1rem 1rem ;
	position: fixed;
	position: absolute;
	left: 0;
	top: 1rem;
	opacity: 0;
	display: none;
	z-index: 9;
	background-color: #fff;
	width: 100%;
	height: auto;
	transition: 300ms;

}

.nav-wrap.open {
	opacity: 1;
    transform: translateY(60px);
   transition: 300ms;
background: #eee;
}



@media screen and (max-width: 736px) {
	nav {
	    margin: 0 1.5%;
	}
	nav:after {
	    background-position: center button;
	    height: 40px;
	    width: 100px;
	    top: -38px;
	}
	nav div {
		white-space: nowrap;
		    overflow-x: auto;
	    -webkit-overflow-scrolling: touch;
	    font-size: 1.6rem;
	    padding-bottom: 0rem;
	    position: relative;
	}
	nav div::-webkit-scrollbar {
	    height: 4px;
	}
	nav div::-webkit-scrollbar-thumb {
	    background: #888;
	    border-radius: 8px;
	}
	nav div::-webkit-scrollbar-track {
	    background: #e2e2e2;
	    border-radius: 8px;
	}

	nav div ul{
	    font-size: 1.6rem;
	    position: relative;
	    animation-name: naviAnime;
	    animation-duration: 1s;
	    animation-delay: 2s;
	    animation-timing-function: linear;
	    flex-wrap: wrap;
	}
	@keyframes naviAnime{
	    0% {
	        left: 0px;
	    }
	    50% {
	        left: -15px;
	    }
	    100% {
	        left: 0px;
	    }
	}

	nav li {
	margin: 5px;
    width: 15%;
	}
	nav li:nth-child(4) {
    width: 43%;
	}
	nav li:nth-child(6) {
    width: 60%;
	}
	nav li a {
	    padding: 1.5rem 2rem;
	    padding: 1rem 0.5rem;
	    font-size: 1.4rem;
	    text-align: center;
	}
	.nav-wrap.open {
		padding-top: 0.5rem;
	    transform: translateY(52px);
	    transform: translateY(105px);
	    margin: 0 1.5%;
	    width: auto;
	}
	.nav-wrap ul{
		font-size: 1.4rem;
	}

}



/********************************************
.btn
********************************************/

a.btn-txt {
    color: #22AC38;
    padding: 0.5rem 1rem 0.5rem 2rem;
    position: relative;
    font-size: 1.4rem;
    text-align: left;
    display: inline-block;
    width: auto;
	transition: transform .3s;
}
a.btn-txt:after {
    position: absolute;
    bottom: 3px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #22AC38;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
a.btn-txt:hover:after{
	transform: scale(1, 1);
}


a.btn-txt span:before {
    content: "";
    position: absolute;
    left: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: opacity, border-color, background-color;
    transition-property: opacity, border-color, background-color;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    border-color: transparent;
    width: 14px;
    height: 14px;
    border-color: #22AC38;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
a.btn-txt span:after {
    content: "";
    display: block;
    position: absolute;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: border-color;
    transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    margin: auto;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    width: 4px;
    height: 4px;
    content: "";
    border-color: #22AC38;
    left: 5px;
    top: 45%;
    transform: translateY(-50%);
    position: absolute;
    -webkit-transform: translateX(-25%) rotate(45deg);
    transform: translateX(-25%) rotate(45deg);
}

a.btn-anc {
    color: #22AC38;
    padding: 0.5rem 1rem 0.5rem 2rem;
    position: relative;
    font-size: 1.4rem;
    text-align: left;
    display: inline-block;
    width: auto;
	transition: transform .3s;
}
a.btn-anc:after {
    position: absolute;
    bottom: 3px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #22AC38;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
a.btn-anc:hover:after{
	transform: scale(1, 1);
}

a.btn-anc span:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 16px;
    height:16px;
    border-radius: 50%;
    background: #22AC38;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

a.btn-anc span:after {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);

	top: 14px;
    left: 5px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

a.btn {
	font-size: 1.4rem;
    background: #fff;
    color: #22ac38;
	padding: 1rem 4rem 1rem 3rem;
	display: inline-block;
    text-align: center;
    margin: 2%;
    position: relative;
    border: 2px #1f9231 solid;
    box-sizing: border-box;
}
a.btn.btn_block {
	display: block;
    margin: 2% auto;
}

a.btn.btn_w {
    background: transparent;
    color: #fff;
    border: 2px #fff solid;
}

a.btn:hover {
	background: #22ac38;
    color: #fff;
    border: 2px #ffffff solid;
}
a.btn.btn_w:hover {
	background: #fff;
    color: #22ac38;
    border: 2px #fff solid;
}

a.btn:before {
	content:"";
    position: absolute;
    left: 1rem;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: opacity, border-color, background-color;
    transition-property: opacity, border-color, background-color;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    border-color: transparent;
    width: 14px;
    height: 14px;
	border-color: #22AC38;
	top: 50%;
    transform: translateY(-50%);
    position: absolute;
}


a.btn:after {
	content:"";
    display: block;
    position: absolute;;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: border-color;
    transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    margin: auto;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    width: 4px;
    height: 4px;
    content: "";
	border-color: #22AC38;
    left: 1.5rem;
	top: 46%;
    transform: translateY(-50%);
    position: absolute;
    -webkit-transform: translateX(-25%) rotate(45deg);
    transform: translateX(-25%) rotate(45deg);
}
a.btn.prev:after{
    -webkit-transform: translateX(-25%) rotate(220deg);
    transform: translateX(-25%) rotate(220deg);
    left: 1.7rem;
}
a.btn.next:before {
	left: auto;
    right: 1rem;
}
a.btn.next:after {
	left: auto;
    right: 1.5rem;
}

a.btn:hover:before,a.btn:hover:after{
	border-color: #fff;
}
a.btn.btn_w:before,a.btn.btn_w:after{
	border-color: #fff;
}
a.btn.btn_w:hover:before,a.btn.btn_w:hover:after{
	border-color: #22AC38;
}

a.btn.btn_no:before,
a.btn.btn_no:after{
	display:none;
}


.btn_arrow {
	position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
	padding: 2px 0;
    width: 18px;
    overflow: hidden;
}

.btn_arrow_circle {
    border-radius: 50%;
    background-color: #22ac38;
    width: 24px;
    height: 24px;
	position: absolute;
    top: 50%;
    right: 5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}


.btn_arrow span{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn_arrow_circle span{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}


.btn_arrow span:before {
	content:"";
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    background-color: #22ac38;
    width: calc(100% - 8px);
    height: 2px;
}
.btn_arrow span:after {
	content:"";
    display: block;
    -webkit-transform: translateX(-25%) rotate(45deg);
    transform: translateX(-25%) rotate(45deg);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    border-top: 1px solid #22ac38;
    border-right: 1px solid #22ac38;
    border-width: 2px;
    width: 8px;
    height: 8px;
}

.btn_arrow_circle span:before {
	content:"";
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    background-color: #fff;
    width: calc(100% - 8px);
    height: 2px;
	width: 8px;
}
.btn_arrow_circle span:after {
	content:"";
    display: block;
    -webkit-transform: translateX(-25%) rotate(45deg);
    transform: translateX(-25%) rotate(45deg);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    border-width: 2px;
    width: 8px;
    height: 8px;
}

.btn_arrow_circle_blue{
	background: #112d54;
}
a.btn.btn_blue:hover {
    color: #112d54;
}


/********************************************
.txt-***
********************************************/


.txt-w100{
	font-weight: lighter;
}

.txt-w300{
    font-weight: 300!important;
}
.txt-w500{
    font-weight: 500!important;
}

.txt-w700{
    font-weight: 700!important;
}

.txt-cat{
	font-size: 6.4rem;
}

.txt-xxxlarge{
	font-size: 4.2rem;
    line-height: 1.4;
}

.txt-xxlarge{
	font-size:3.4rem;
    line-height: 1.4;
}

.txt-xlarge{
	font-size:2.4rem;
    line-height: 1.4;
}
.txt-large{
	font-size:2rem;
    line-height: 1.4;
}
.txt-xmiddle{
	font-size:1.6rem;
}

.txt-middle{
	font-size:1.4rem;
}
.txt-small{
	font-size:1.2rem;
}
.txt-xsmall{
	font-size:0.9rem;
}

.img-notes {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 0.8vw;
    width: 99%;
    padding: 0.5%;
}

@media screen and (max-width: 736px) {
	.txt-cat {
	    font-size: 4rem;
	}
	.txt-xxlarge {
	    font-size: 3.3vh;
	}
	.txt-xlarge {
	    font-size: 3vh;
	}
	.txt-large {
	    font-size: 2.4vh;
	}

}


/********************************************
.overflow-x
********************************************/

@media screen and (max-width: 736px) {
	.overflowX_sp {
	    white-space: nowrap;
	    overflow-x: auto;
	    -webkit-overflow-scrolling: touch;
	}

}

/********************************************
..text-shadow-***
********************************************/

.text-shadow-wh02 {
    text-shadow: #fff 1px 0px 0.5px, #fff -1px 0px 0.5px, #fff 0px -1px 0.5px, #fff 0px 1px 0.5px, #fff 1px 1px 0.5px, #fff -1px 1px 0.5px, #fff 1px -1px 0.5px, #fff -1px -1px 0.5px, #fff 0.5px 1px 0.5px, #fff -0.5px 1px 0.5px, #fff 0.5px -1px 0.5px, #fff -0.5px -1px 0.5px, #fff 1px 0.5px 0.5px, #fff -1px 0.5px 0.5px, #fff 1px -0.5px 0.5px, #fff -1px -0.5px;
    color: #333;
}

/********************************************
.deco-***
********************************************/

.deco-cat{
    position: relative;
    padding: 0.5rem 0;
}

.deco-cat:before{
	content: "";
    width: 100%;
    height: 2px;
    background: #22ac38;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.deco-cat:after{
    content: "";
    width: 24px;
    height: 24px;
    background: #000;
    border: 1px #fff solid;
    display: block;
    border-radius: 9999px;
    position: absolute;
    top: -12px;
    left: 0;
}
.deco-cat span:before{
    content: "";
    width: 18px;
    height: 18px;
    background: #000;
    border: 1px #fff solid;
    display: block;
    border-radius: 9999px;
    position: absolute;
    top: -8px;
	left: 40px;
}
.deco-cat span:after{
    content: "";
    width: 18px;
    height: 18px;
    background: #000;
    border: 1px #fff solid;
    display: block;
    border-radius: 9999px;
    position: absolute;
    top: -8px;
	left: 70px;
}
.deco-cat.learning:after{
    background-color: #F39800;
}
.deco-cat.learning span:before{
    background-color: #8E4898;
}
.deco-cat.learning span:after{
    background-color: #0BB18D;
}
.deco-cat.safety:after{
    background-color: #0BB18D;
}
.deco-cat.safety span:before{
    background-color: #F39800;
}
.deco-cat.safety span:after{
    background-color: #8E4898;
}
.deco-cat.entertainment:after{
    background-color: #8E4898;
}
.deco-cat.entertainment span:before{
    background-color: #0BB18D;
}
.deco-cat.entertainment span:after{
    background-color:#F39800 ;
}

.deco-cat.information:after{
    background-color: #0099D9;
}
.deco-cat.information span:before{
    background-color: #F39800;
}
.deco-cat.information span:after{
    background-color: #8E4898;
}

.deco-cat.learning{
    color: #F39800;
}
.deco-cat.entertainment{
    color: #8E4898;
}
.deco-cat.safety{
    color: #0BB18D;
}
.deco-cat.information{
    color: #0099D9;
}


/********************************************
.ttl-****
********************************************/

.ttl-cat {
	display: block;
    font-size: 5rem;
}

.ttl-cat span {
    margin: 1rem 0;
    padding: 0 2rem 1rem 2rem;
    position: relative;
    display: inline-block;
}
.ttl-cat span:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #eee, #eee 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #eee, #eee 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ttl-cat.pink span:after {
    background-image: -webkit-repeating-linear-gradient(135deg, #e62e8b, #e62e8b 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #e62e8b, #e62e8b 1px, transparent 2px, transparent 5px);
}
.ttl-cat.green span:after {
    background-image: -webkit-repeating-linear-gradient(135deg, #22AC38, #22AC38 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #22AC38, #22AC38 1px, transparent 2px, transparent 5px);
}
.ttl-cat.blue span:after {
    background-image: -webkit-repeating-linear-gradient(135deg, #0099D9, #0099D9 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #0099D9, #0099D9 1px, transparent 2px, transparent 5px);
}

.ttl-border-b{
    margin: 2rem 0;
    padding: 3px 0;
    color: #333;
    border-bottom: 2px solid #e2e2e2;
    position: relative;
}
.ttl-border-b::after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background: #22ac38;
    position: absolute;
    bottom: -3px;
    left: 0;
}

.ttl-inline span {
    display: inline-block;
    border-radius: 1rem;
	border: 2px #ffffff solid;
    padding: 0 4rem;
}

.ttl-green{
	background: #22ac38;
    text-align: left;
    padding: 0.8rem;
	color: #fff;
}
.ttl-green span{
	border-left: 5px #fff solid;
	padding: 0 0 0 10px;
    display: block;
}

.ttl-orange{
    background: #e6502e;
    text-align: center;
    padding: 0.6rem 2.5rem;
    color: #fff;
    display: block;
    border-radius: 9999px;
}
.ttl-orange span{
    display: block;
}
.ttl-white{
    background: #fff;
    text-align: center;
    padding: 0.6rem 2.5rem;
    color: #000;
    display: block;
    border-radius: 9999px;
}
.ttl-white span{
    display: block;
}

.ttl-gold{
    background: #cfa607;
    text-align: center;
    padding: 0.3rem 2.5rem;
    color: #fff;
    display: block;
    border-radius: 9999px;
}
.ttl-gold span{
    display: block;
}

.ttl-safety{
    background: #0BB18D;
    text-align: left;
    padding: 0.8rem;
	color: #fff;
}
.ttl-safety span{
	border-left: 5px #fff solid;
	padding: 0 0 0 10px;
    display: block;
}

.ttl-ticket{
}
.ttl-ticket span{
	background: #1d326f;
    display: inline-block;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 9999px;
    line-height: 1;
}


@media screen and (max-width: 736px) {
	.ttl-cat {
	    font-size: 3rem;
	}
	.ttl-cat span {
	    margin: 1rem 0;
	    padding: 0 1rem 1rem 1rem;
	}
}
/********************************************
.*-body
********************************************/

.w-body {
	background: #fff;
}
.g-body {
	background: #eee;
    border-radius: 1rem;
    padding: 2rem;
}
.b-body {
    background: #def;
    border-radius: 1rem;
    padding: 2rem;
}
.sky-body {
    background: #def;
    border-radius: 1rem;
    padding: 2rem;
}
.p-body {
    background: #e63e8c;
    border-radius: 1rem;
    padding: 2rem;
}

/********************************************
hr
********************************************/
hr.clear {
    position: relative;
    display: block;
}

hr.hr-border{
    height: auto;
}
hr.hr-border:before {
	content:"";
    height:1px;
    width:100%;
	background: #ddd;
	position: relative;
    display: block;
}


/********************************************
#btn-sdgs
********************************************/

#btn-SDGs {
	background-image: url(../images/btn-sdgs.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 160px;
    height: 160px;
    display: block;
    position: fixed;
    top: 20%;
    right: 1%;
    text-indent: -9999px;
    z-index: 1;
}

/********************************************
.img-****
********************************************/
.img-box{
	background-position: center bottom;
    background-size: cover;
background-repeat: no-repeat;
	width: 100%;
	padding-top:70%;
    position: relative;
}

.img-circle{
    border-radius: 92% 68% 83% 82% / 78% 70% 92% 75%;
}

/********************************************
.sdg-icon
********************************************/

.sdg-icon{
    text-align: left;
    margin: 1rem 0;
}
.sdg-icon span{
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 65px;
    height: 65px;
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 5px;
}
.sdg-icon .sdg_icon_01{
	background-image: url(../images/SDGs/icon/sdg_icon_01_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_02{
	background-image: url(../images/SDGs/icon/sdg_icon_02_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_03{
	background-image: url(../images/SDGs/icon/sdg_icon_03_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_04{
	background-image: url(../images/SDGs/icon/sdg_icon_04_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_06{
	background-image: url(../images/SDGs/icon/sdg_icon_06_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_07{
	background-image: url(../images/SDGs/icon/sdg_icon_07_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_08{
	background-image: url(../images/SDGs/icon/sdg_icon_08_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_09{
	background-image: url(../images/SDGs/icon/sdg_icon_09_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_10{
	background-image: url(../images/SDGs/icon/sdg_icon_10_ja_3-290x290.png);
}
.sdg-icon .sdg_icon_11{
	background-image: url(../images/SDGs/icon/sdg_icon_11_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_12{
	background-image: url(../images/SDGs/icon/sdg_icon_12_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_13{
	background-image: url(../images/SDGs/icon/sdg_icon_13_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_14{
	background-image: url(../images/SDGs/icon/sdg_icon_14_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_15{
	background-image: url(../images/SDGs/icon/sdg_icon_15_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_16{
	background-image: url(../images/SDGs/icon/sdg_icon_16_ja_2-290x290.png);
}
.sdg-icon .sdg_icon_17{
	background-image: url(../images/SDGs/icon/sdg_icon_17_ja_2-290x290.png);
}

/********************************************
footer
********************************************/

#footer {
    background: #112d54;
}



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

*color:

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

.c_red { color: #ff0000; }
.c_blue { color: #0099D9; }
.c_green { color: #22AC38; }
.c_orange { color: #F39800; }
.c_gray { color:#999999; }
.c_black { color:#000; }
.c_white { color:#fff; }
.c_gold { color:#cfa607; }
.c_purple { color:#8E4898; }
.c_navy { color:#112d54; }
.c_peppermint { color:#0BB18D; }
.c_pink { color:#E62E8B; }
.c_gold{ color:#cfa607; }

.bg_clear{ background-color:transparent!important; }
