@charset "utf-8";

/*
Theme Name:jasmy_developer
Theme URI:
Author:
*/

/* WP */
/* -------------------------------------------------- */
/* 投稿の画像配置 */
.alignright { display: block; margin: 0 0 10px auto; }/* 配置位置 左 */
.alignleft { display: block; margin: 0 auto 10px 0; }/* 配置位置 右 */
.aligncenter { display: block; margin: 0 auto 10px; }/* 配置位置 中央 */

/* LINK */
/* -------------------------------------------------- */
a:link,
a:visited { text-decoration: none; color: #000; }
a:hover  { text-decoration: none; color: #000; }
a:active { text-decoration: none; color: #000; }

a{
	-webkit-transition: all .3s;
	transition: all .3s;
}
a img{
	-webkit-transition: all .3s;
	transition: all .3s;
}

a:hover img{
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

/* CLEARFIX */
/* -------------------------------------------------- */
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	*zoom: 1;
}

/* OUTLINE */
/* -------------------------------------------------- */
html {
	font-size: 62.5%;/* 10px */
	position: relative;
	height: 100%;

	padding-top: constant(safe-area-inset-top);
	padding-bottom: constant(safe-area-inset-bottom);
	padding-left: constant(safe-area-inset-left);
	padding-right: constant(safe-area-inset-right);

	padding-top: env(safe-area-inset-top);
	padding-bottom: env(safe-area-inset-bottom);
	padding-left: env(safe-area-inset-left);
	padding-right: env(safe-area-inset-right);

}

body {
	background: #FFFFFF;
	color: #000;
	font-size: 15px;
	font-size: 1.5rem;
	position: relative;
	height: 100%;
}

p{
	color: #000;
	font-size: 18px;
	font-size: 1.8rem;
	line-height:1.6;
}

#container {
	position: relative;
/*
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka,"ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
*/
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	line-height: 1.6;
	height: 100%;
	margin:0;
	padding:0;
}

.mintyo{
/*
	font-family: 'Noto Serif JP', serif !important;
*/
}
/* COMMON */
/* -------------------------------------------------- */
/* GoogleMap */
#gMap {
	width: 100%;
	height: 400px;
}

/* 入力系 */
input[type='email'],
input[type='date'],
input[type='tel'],
input[type='password'],
input[type='text']{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height:45px;
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border:1px solid rgba(0,0,0,0.3);
	background:#FFF;
	font-size: 16px;
	font-size: 1.6rem;
	padding:0 15px;
}
input[type='text']:disabled{
	border:1px solid #7F7F7F;
	background:#EFEFEF;
}
input[type='email']:focus,
input[type='date']:focus,
input[type='tel']:focus,
input[type="password"]:focus,
input[type="text"]:focus,
textarea:focus {
	outline: 0;
}
label{
	display:block;
}
textarea{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: sans-serif;
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border:1px solid rgba(0,0,0,0.3);
	background:#FFF;
	padding:15px;
	font-size: 16px;
	font-size: 1.6rem;
}

select{
	height:45px;
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border:1px solid rgba(0,0,0,0.3);
	background:#FFF;
	font-size: 16px;
	font-size: 1.6rem;
	padding:0 15px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position:relative;
	color:#000;
}
select::-ms-expand {
	display: none;
}

