@charset "UTF-8";

/*  Font
---------------------------------------------*/
/*montserrat*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');


/* lang=zh-CN */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');

/* lang=zh-TW */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap');

/* lang=ko */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap');

/* lang=vi */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap&subset=vietnamese%27');


/* Yu Gothic for Windows */
@font-face {
	font-family: YuGothic;
	font-weight: normal;
	src: local(YuGothic-Medium), local('Yu Gothic Medium'); /* for Chrome */
}
@font-face {
	font-family: YuGothic;
	font-weight: bold;
	src: local(YuGothic-Bold), local('Yu Gothic'); /* for Chrome */
}


/*==================================================================
	base.css

	1 - Reset          : reset / font / general / box-sizing
	2 - layout         : 940gridSystem

===================================================================*/

/* ------------------------------------------------------------------
	Reset
-------------------------------------------------------------------*/
html {
	overflow-x: hidden;
	background: #fff;
}
body {
	overflow-x: hidden;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	word-wrap: break-word;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
	margin: 0;
	padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
menu {
	display: block;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
[hidden] {
	display: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
fieldset,
img {
	border: none;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}
ul,
ol,
menu {
	list-style: none;
}
caption,
th {
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}
q:before,
q:after {
	content: '';
}
abbr,
acronym {
	border: none;
	font-variant: normal;
}
sup {
	vertical-align: text-top;
}
sub {
	vertical-align: text-bottom;
}
input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}
legend {
	color: #000;
}
a img,
map a {
	border: none;
}
a:hover,
a:active,
a:focus {
	outline: 0;
}
embed {
	width: 100%;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
img,
object,
embed {
	max-width: 100%;
	height: auto;
}
object,
embed {
	height: 100%;
}
img {
	-ms-interpolation-mode: bicubic;
}

:root{
	font-size: 62.5%;
	height: 100%;

	--font-family-zh-CN: 'Noto Sans SC', sans-serif;
	--font-family-zh-TW: 'Noto Sans TC', sans-serif;
	--font-family-ko: 'Noto Sans KR', sans-serif;
	--font-family-vi: 'Noto Sans', sans-serif;
}
html{
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}
body {
	font:
		14px/1.5 'YuGothic',
		'ヒラギノ角ゴ Pro W3',
		'Hiragino Kaku Gothic Pro',
		'メイリオ',
		'Meiryo',
		'ＭＳ Ｐゴシック',
		'MS PGothic',
		sans-serif;
	color: #333;
	letter-spacing: 0.05em;
	line-height: 1.8em;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

/* 言語設定 */
html[lang='zh-CN'] body {
	font-family: var(--font-family-zh-CN);
}
html[lang='zh-TW'] body {
	font-family: var(--font-family-zh-TW);
}
html[lang='ko'] body {
	font-family: var(--font-family-ko);
}
html[lang='vi'] body {
	font-family: var(--font-family-vi);
}

select,
input,
button,
textarea,
button {
	font:
		99% arial,
		sans-serif;
}
table {
	font-size: inherit;
	font: 100%;
}
pre,
code,
kbd,
samp,
tt {
	font-family: monospace;
	line-height: 1;
}
/* hiwrite */
p::selection,
p::-moz-selection,
a::selection,
a::-moz-selection {
	background: #ffae10;
}
/* color */
.f-c-blue {
	color: #8ddcdd;
}
.f-c-k {
	color: #333;
}
/* family */
.f-mont {
	font-family: 'Montserrat', sans-serif;
}

/*  General
---------------------------------------------*/
table {
	empty-cells: show;
}
input {
	line-height: 1;
}
form img,
input,
select {
	vertical-align: middle;
}
textarea {
	resize: none;
}
select {
	padding: 1px;
}
label {
	margin-right: 5px;
}
legend {
	display: none;
}
input[type='text'],
input[type='password'],
textarea {
	padding: 3px 4px 0 3px;
	border: 1px solid #999;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-size: 13px;
}
/*  box-sizing
---------------------------------------------*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*  img
---------------------------------------------*/
img.img-100per,
.img-100per img {
	width: 100%;
}
img.img-50per,
.img-50per img {
	width: 50%;
}

.mb15 {
	margin-bottom: 15px;
}


#reserve .c-uniq-reservation__modal-select select{
	padding: 0 0 0 15px;

}