@charset "UTF-8";

/*************************************************************
パーパスジャパン　旅行記
[css/default.css]
18.06.02
**************************************************************/

/* 目次
-------------------------------------------------------------
1) reset
2) float, clear
3) fonts
4) flexbox
5) container
6) input
7) gotop
-------------------------------------------------------------*/



/* 1) reset
-------------------------------------------------------------*/
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;
}
address, button, caption, cite, code, dfn, em, input, optgroup, option, select, textarea, th, var {
	font-weight: normal;
	font-style: normal;
}
nav ul, ul li, ol li {
    list-style: none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	text-decoration: none;
	color: #333;
}
a:hover {
	text-decoration: none;
	color: #999;
	opacity: 0.6;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
mark {
    background-color:#fff;
    font-weight:bold;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
table, th, td {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid rgba(0,0,0,0.1);
    margin:0;
    padding:0;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
}
body {
	position: relative;
	font-size: 14px;
	line-height: 1.3;
	font-family:'メイリオ',Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	word-wrap: break-word;
	color: #333;
}
article {
	position: relative;
}

/* 2) clear
-------------------------------------------------------------*/
.fleft { float: left; }
.fright { float: right; }
.clear { clear: both; }
.clearfix:after {
	display: block;
	clear: both;
	content: "";
}

/* 3) fonts
-------------------------------------------------------------*/
.eng {
	font-family: Arial,Helvetica,'メイリオ',Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic',sans-serif; 
}
.bold { font-weight: bold; }
.f13 { font-size: 13px !important; }
.f14 { font-size: 14px !important; }
.f15 { font-size: 15px !important; }
.f16 { font-size: 16px !important; }
.f17 { font-size: 17px !important; }
.f18 { font-size: 18px !important; }
.f19 { font-size: 19px !important; }
.f20 { font-size: 20px !important; }

/* 4) flexbox
-------------------------------------------------------------*/
.flexbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

/* 5) container
-------------------------------------------------------------*/
.container1280 {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
}
.container1000 {
	position: relative;
	max-width: 960px;
	padding: 0 20px;
	margin: 0 auto;
}

/* 6) input, select
-------------------------------------------------------------*/
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}
input[type="search"]:focus {
  outline-offset: -2px;
}
input[type="search"]::-webkit-search-decoration {
  display: none;
}
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: searchfield-decoration;
  display: inline-block;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
select::-ms-expand {
	display: none;
}

/* 7) gotop
-------------------------------------------------------------*/
#gotop {
	position: fixed;
	right:20px;
	bottom:20px;
	width:38px;
	height:38px;
	opacity:0;
}

@media screen and (max-width:999px){
	#gotop { display: none; }
}