@charset "UTF-8";

/* Reset
-------------------------------------------------------------- */

/**
* html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
* Richard Clark (http://richclarkdesign.com)
* http://cssreset.com
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

body {
	line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}

nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}

/* change colours to suit your needs */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

/* change colours to suit your needs */
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

/* change border colour to suit your needs */
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}

input, select {
	vertical-align:middle;
}


/*=========== Reset + =============*/

h1,h2,h3{
	font-weight: 400;
}

ol,ul {
	list-style: none;
}

li img{
	vertical-align:bottom;
}

img{
	border:0;
}


/* Common
-------------------------------------------------------------- */

html {
	font-size: 62.5%; /*10px 以下のsize指定はrem*/
	-webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-y: scroll;
}

body{
	background:#fff;
  font-family: "Noto Sans Thai", Leelawadee, thonburi, Tahoma, sans-serif;
  font-size: 1.4rem;
	font-weight: 400;
	line-height:1;
	color:#000;
	text-align:left;
}

.clear{
	clear:both;
}

.clearfix::after {
	display: block;
	clear: both;
	content: "";
}

.pc_none{
	display: none;
}
.sp_none{
	display: block;
}

@media only screen and (max-width: 767px) {
	.pc_none{
		display: block;
	}
	.sp_none{
		display: none;
	}
}


/* Common
-------------------------------------------------------------- */

#wrap{
	width:100%;
	min-width: 1260px;
	position: relative;
}

@media only screen and (max-width: 767px) {
	#wrap{
		min-width: 100%;
	}
}


/*===========HEADER=============*/

header{
	width:100%;
	position: absolute;
	top:0;
	left:0;
	z-index: 100;
}

@media only screen and (max-width: 767px) {
	header{
		height: 65px;
	}
	header > p img{
		width: 50%;
		height: auto;
	}
}

/*===========NAV=============*/

.btn_menu{
	position: fixed;
	top: 23px;
	right: 53px;
	z-index: 1000;
	width: 62px;
	height: 62px;
	background: url("../images/common/menu.png") left bottom no-repeat;
	background-size: 62px 62px;
	cursor: pointer;
}
.btn_menu.active{
	background-image: url("../images/common/menu_close.png");
}

nav{
	position: fixed;
	top: 0;
	right: 0;
	width:450px;
	height: 100%;
	background: #eacc84;
	transition: all 0.2s;
	transform: translate(450px);
	z-index: 999;
}
nav.open{
	transform: translate(0);
}
nav .menu{
	padding: 90px 35px 35px;
}
nav .menu li{
	font-size: 2.0rem;
	line-height: 4;
	border-bottom: 1px solid #000;
}
nav .lang{
	background: url("../images/common/icon_lang.png") left center no-repeat;
	background-size: 30px auto;
	padding: 0 0 0 45px;
	margin: 0 35px;
	letter-spacing: -10px;
	display: flex;
	justify-content: space-between;
}
nav .lang li{
	font-size: 1.4rem;
	padding: 8px;
	border: 1px solid #000;
	text-align: center;
	letter-spacing: 0;
}
nav li a{
	display: block;
	color: #000;
	text-decoration: none;
}
nav li a:hover{
	color:#fff;
}
nav .lang li:hover{
	border-color: #fff;
}

@media only screen and (max-width: 767px) {
	.btn_menu{
		top:10px;
		right: 10px;
		width: 45px;
		height: 45px;
		background-size: 45px 45px;
	}
	nav{
		width:320px;
		transform: translate(320px);
	}
	nav .menu{
		padding: 60px 15px 15px;
	}
	nav .menu li{
		font-size: 1.6rem;
		line-height: 1.5;
		padding: 10px 0;
	}
	nav .lang{
		background-position: left top;
		background-size: 20px auto;
		padding: 0 0 0 30px;
		margin: 0 15px;
		display: block;
	}
	nav .lang li{
		display: inline-block;
		box-sizing: border-box;
		width:48%;
		font-size: 1.3rem;
		margin-bottom: 8px;
	}
	nav .lang li:nth-of-type(odd){
		margin-right: 4%;
	}
}


/*===========ARTICLE=============*/

article{
	width:100%;
}

article .foot_link{
	margin: 0 auto;
	padding: 0 0 50px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
article .foot_link li{
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1.1;
	text-align: center;
	padding: 0 15px;
}
article .foot_link li a{
	display:block;
	font-size: 1.6rem;
	height: 50px;
	padding: 0 30px;
	border: 1px solid #c7ab69;
	background: #fff;
	color: #c7ab69;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	margin-top: 10px;
}
article .foot_link li a:hover{
	background: #c7ab69;
	color: #fff;
}

@media only screen and (max-width: 767px) {
	article .foot_link{
		padding: 0 0 30px;
		display: block;
	}
	article .foot_link li{
		padding: 0 20px;
		margin-bottom: 20px;
	}
	article .foot_link li:nth-last-of-type(1){
		margin-bottom: 0;
	}
	article .foot_link li a{
		height: 40px;
		padding: 0;
		line-height: 40px;
		margin-top: 5px;
	}
}


/*===========FOOTER=============*/

footer{
	width:100%;
	height: 140px;
	background: #eacc84;
	display: block;
	padding-top: 44px;
}
footer p{
	font-size: 1.2rem;
	color: #fff;
}
footer .copy{
	text-align: center;
	font-size: 1.4rem;
}
footer .copy p{
	display: inline-block;
}
footer p.copypolicy{
	margin-left: 10px;
}
footer p.copypolicy a{
	color: #fff;
}
footer p.provieded{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
}
footer p.footerlogo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
	margin-top:10px;
}
footer p.footerlogo img {
	width: 200px;
}
@media only screen and (max-width: 767px) {
	footer p{
		font-size: 1.0rem;
	}
	footer .copy p{
		display: flex;
		justify-content: center;
		align-items: center;
	}
	footer p.copypolicy{
		margin-left: 0;
		margin-top: 5px;
	}
	footer p.provieded{
	font-size: 1.4rem;
	}
	footer p.footerlogo {
		margin-bottom: 26px;
	}
}


/*===========PAGETOP=============*/

#page_top {
	width:62px;
	height: 62px;
	background: #b46e32;
	border-radius: 50%;
	position: fixed;
	bottom: 53px;
	right: 53px;
}
#page_top a {
	position: relative;
	width: 62px;
	height: 62px;
}
#page_top a:hover {
	opacity: 0.5;
}

@media screen and (max-width: 768px){
	#page_top {
		width:45px;
		height: 45px;
		bottom: 20px;
		right: 20px;
	}
	#page_top a {
		width: 45px;
		height: 45px;
	}
	#page_top img{
		width: 100%;
		height: auto;
	}
}


/*===========GDPR=============*/

.gdpr{
	width:100%;
	background: #fff;
  padding: 10px 0;
	border-bottom: 1px solid #f8f0d9;
	display: none;
	position: relative;
	z-index: 1000;
}
.gdpr .inner{
	width:840px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.gdpr .inner p{
	line-height: 1.2;
}
.gdpr .gdpr_close {
	width: 20px;
	max-width: 20px;
	height: 20px;
	position: relative;
	cursor: pointer;
	margin-top: -3px;
}
.gdpr .gdpr_close span {
	background: #000;
	width: 20px;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
}
.gdpr .gdpr_close span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}
.gdpr .gdpr_close span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media only screen and (max-width: 768px) {
	.gdpr .inner{
		box-sizing: border-box;
		width: 100%;
		padding: 0 10px;
	}
	.gdpr .inner p{
		padding-right: 10px;
	}
	.gdpr .gdpr_close{
		margin: 0 5px 0 0;
	}
}



/* Animation
-------------------------------------------------------------- */

@keyframes fadeIn{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

@keyframes flash{
	0%,100%{
		opacity: 1;
	}
	50%{
		opacity: 0.2;
	}
}

@keyframes sldLine {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


/* waves
-------------------------------------------------------------- */
.waves {
  position:relative;
  width: 100%;
  height:50px;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:50px;
  max-height:60px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/* タイ語用br
-------------------------------------------------------------- */
br.spbr {
	display: none;
}
br.pcbr {
	display: block;
}
br.sppc {
	display: block;
}
@media only screen and (max-width: 767px) {
	br.spbr {
		display: block;
	}
	br.pcbr {
		display: none;
	}
	br.sppc {
		display: block;
	}
	.spcenter {
		text-align: center !important;
	}
}

