@charset "utf-8";

/*____________________________________________________________________________

SITE TITLE: LOCONDO MAGAZINE
TITLE: PC

UPDATED: 2023.1
_____________________________________________________________________________*/

/*----------------------------------------------------------------------------
	common
----------------------------------------------------------------------------*/
* {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: 'Lato', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', '游ゴシック体', 'YuGothic', 'メイリオ', 'Meiryo', 'Osaka', sans-serif;
	color: #333;
	font-size: 13px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a {
	text-decoration: none;
	color: #333;
}
img {
	height: auto;
	vertical-align: bottom;
}
h1, h2, h3, h4, h5 {
	font-weight: normal;
}
.cb {
	clear: both;
}
.mt30 {
	margin-top: 30px;
}
.mt50 {
	margin-top: 30px;
}
.bborder {
	border-bottom: solid 1px #f5f5f5;
}


/*----------------------------------------------------------------------------
	フォーム
----------------------------------------------------------------------------*/
label {
	font-weight: bold;
	display: block;
	vertical-align: middle;
	overflow: hidden;
}
input[type="text"], input[type="tel"], input[type="url"], input[type="email"], input[type="password"], input[type="date"], input[type="month"], input[type="number"] {
	border: 1px solid #b2b2b2;
	width: 100%;
	height: 2em;
	font-size: 14px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1) inset;
	-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1) inset;
	border-radius: 3px;
	-moz-border-radius: 3px;
}
input[type="button"] {
	font-size: 14px;
}
input[type="radio"] {
	padding: 0;
}
button {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	text-align: center;
	font-weight: bold;
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	color: #fff;
}

/* textarea */
textarea {
	resize: none;
	font-weight: normal;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	-moz-border-radius: 3px;
	line-height: 120%;
}

/* placeholder */
::-webkit-input-placeholder {
	color: #808080;
}
:-moz-placeholder {
	color: #808080;
}
blockquote {
	background: #f5f5f5;
	border-left: 3px solid #666;
	padding: 1em 1em 2em 2em;
	margin: 20px 0;
	font-size: 12px;
}
.single_list blockquote p {
	color: #666;
	font-size: 13px;
}


/*----------------------------------------------------------------------------
	header
----------------------------------------------------------------------------*/
header {
	position: relative;
	display: flex;
	align-items: center;
	width: 1000px;
	margin: 0 auto;
	padding: 20px 0;
}
.header_inner {
	margin: auto;
}
h1.logo a {
	background: url(../images/logo.svg) no-repeat center;
	display: block;
	width: 230px;
	height: 58px;
	text-indent: -9999px;
}

/* searchBox */
#searchBox {
	position: absolute;
	top: 50%;
	right: 0;
	width: 280px;
	transform: translateY(-50%);
}
#search_mini_form {
	position: relative;
}
#searchText:focus {
  outline: none;
}
.searchBtn {
  background-color: transparent;
  position: absolute;
	top: 0;
  right: 0;
  width: 45px;
  height: 45px;
	text-align: -webkit-center;
  border: none;
	padding: 0;
  cursor: pointer;
}
.searchBtn:before {
	content: '';
  background-image: url(../images/icon_search.svg);
  display: block;
  width: 26px;
  height: 26px;
}
#searchText:-webkit-input-placeholder,
#searchText:-ms-input-placeholder,
#searchText:-moz-placeholder {
  color: #666;
  font-weight: normal;
}
#searchText:focus:-webkit-input-placeholder,
#searchText:focus:-ms-input-placeholder,
#searchText:focus:-moz-placeholder {
  visibility: hidden !important;
}
#searchBox input[type="text"] {
	background: #f5f5f5;
	width: 100%;
	height: 45px;
	font-size: 13px;
	border: 1px solid #f5f5f5;
	border-radius: 0;
	-moz-border-radius: 0;
	padding-left: 16px;
	box-shadow: none;
	-webkit-box-shadow: none;
}


/*----------------------------------------------------------------------------
	SIDE NAV
----------------------------------------------------------------------------*/
.sidelist_list {
	width: 170px;
	float: left;
	margin-right: 30px;
	margin-bottom: 30px;
}
.sidelist_list.fixed {
	position: fixed;
	top: 10px;
}
.sidelist_list h2 {
	font-size: 15px;
	font-weight: bold;
	margin-left: 0;
	padding-left: 0;
}
.sidelist_list ul {
	border-top: 1px solid #f5f5f5;
	margin-top: 10px;
	padding-top: 10px;
}
.sidelist_list ul a {
	color: #666;
	display: block;
	padding: 10px 4px;
	transition: all 300ms 0s ease;
}
.sidelist_list ul a:hover {
	background: #e1f5fe;
	padding-left: 8px;
}
.sidelist_list ul.sidebnr {
	border: none;
}
.sidelist_list ul.sidebnr a:hover {
	background: none;
	padding-left: 4px;
}
.sidelist_list ul.sidebnr a:hover img {
	opacity: 0.7;
}


/*----------------------------------------------------------------------------
	footer
----------------------------------------------------------------------------*/
/* bread */
.bread {
	width: 1000px;
	clear: both;
	margin: 0 auto;
	padding-top: 10px;
}
.bread ul {
	text-align: right;
	margin: 20px 0;
}
.bread ul li {
	display: inline;
	font-size: 11px;
}
.bread ul li a {
	color: #999;
	position: relative;
	padding: 0 20px 0 0px;
	margin-right: 10px;
	font-weight: bold;
}
.bread ul li a:hover {
	color: #666;
}
.bread ul li a::after {
	position: absolute;
	content: "";
	top: 50%;
	right: 0px;
	width: 12px;
	height: 10px;
	margin-top: -6px;
	background: url(../images/arw.png) top left no-repeat;
	background-size: 12px 10px;
}

/* app area */
.footer_wrapper {
	padding: 30px 0 1px 0;
	clear: both;
	background: #f5f5f5;
	border-top: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
}
.footer_info {
	width: 1000px;
	margin: 0 auto;
}
.footer_info h3 {
	font-size: 18px;
	color: #666;
	margin-bottom: 20px;
}
.footer_info p.appurl {
	margin: 10px 0 20px 0;
}
.footer_info p.appurl a {
	color: #03a9f4;
}
.footer_info p.appurl a:hover {
	color: #30bcfb;
}
.footer_info p {
	color: #666;
	line-height: 150%;
}
.footer_infoblock {
	overflow: hidden;
}
.appimg {
	width: 380px;
	height: 210px;
	float: left;
	display: block;
}
.apptxt {
	margin-top: 15px;
	width: 570px;
	float: right;
}
.footer_list {
	padding: 0 15px;
	width: 1000px;
	margin: 30px auto;
	text-align: center;
}
.footer_list li {
	display: inline;
	margin: 1em;
}
.footer_list li a {
	color: #666;
	padding-right: 16px;
	background: url(../images/blank.png) no-repeat center right;
}
.footer_list li a:hover {
	color: #999;
}
.btn_appimg {
	margin-top: 20px;
}
.btn_appimg li {
	display: inline;
}
.btn_appimg li a {
	display: block;
	float: left;
	margin-right: 5px;
}
.btn_appimg li a:hover img {
	opacity: 0.7;
}
.btn_appimg img {
	width: auto;
}

/* footer */
footer {
	color: #666;
	text-align: center;
	margin: auto;
	border-top: 1px solid #bebebe;
	padding: 40px 0;
}
footer h2 {
	padding-bottom: 30px;
}
footer h2 a {
	background: url(../images/logo.svg) no-repeat center;
	background-size: cover;
	display: block;
	width: 180px;
	height: 45px;
	text-indent: -9999px;
	margin: auto;
	padding: 0;
}
footer small {
	font-size: 10px;
}


/*----------------------------------------------------------------------------
	slide menu
----------------------------------------------------------------------------*/
#main {
	background: #fff;
}
.button {
	width: 30px;
	height: 30px;
	display: block;
	background-repeat: no-repeat;
	background-image: url(https://media.aws.locondo.jp/contents/img/sp/al_header-icon-menu.png);
	background-size: contain;
	background-position: center;
	float: right;
	margin-top: -5px;
}
#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 77%;
}
#page-top a {
	text-decoration: none;
	color: #fff;
	text-align: center;
	display: block;
	border-radius: 5px;
}
#page-top a:hover {
	text-decoration: none;
}


/*----------------------------------------------------------------------------
	パンくずリスト
----------------------------------------------------------------------------*/
.breadcrumbs {
	padding: 20px 0 20px 0;
	display: block;
	font-size: 11px;
}