@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap&subset=japanese');

html{
	font-size: 10px;
}
body{
	font-family: 'Noto Sans JP', sans-serif;
 font-size: 1.6rem;
	color: #333;
}
a{
	text-decoration: none;
	color: #333;
}
img{
	width: 100%;
}
ul[class], ol[class], nav ul, nav ol {
  list-style-type: none;
  padding: 0;
}
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* header */
header{
	width: 100%;
	height: 70px;
	box-sizing: border-box;
	padding: 12px 0;
	box-shadow: 0 0 4px rgba(0,0,0,.2);
}
.header_inner{
	max-width:1100px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_logo{
	width: 270px;
}
.header_search_form{
	display: flex;
	align-items: center;
}
.header_search_box{
	width: 300px;
	height: 30px;
	padding: 8px 16px;
	box-sizing: border-box;
	border: 1px solid #cccccc;
	border-right: none;
	border-radius: 15px 0 0 15px;
	font-size: 1.4rem;
	background: #fff;
	/* background-image: url('/assets/common/images/icon_search_b.png');
	background-repeat: no-repeat;
	background-size: 14px 14px;
	background-position: 10px 8px; */
}
.header_search_btn{
	width: 48px;
	height: 30px;
	border-radius:0 15px 15px 0;
	background-color: #00ac97;
	background-image: url('/assets/common/images/icon_search_w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px;
}


/* footer */
footer{
	width: 100%;
	padding: 64px 0 72px;
	background: #f5f5f5;
}
.footer_inner{
	max-width:1100px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer_nav{
	margin-bottom: 40px;
}
.footer_nav_list{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
	line-height: 1;
}
.footer_nav_list li::after{
	content: "|";
	margin: 0 1.5rem;
}
.footer_nav_list li:last-child::after{
	content: none;
	margin-right: 0;
}
.footer_company_name{
	font-size: 1.4rem;
	line-height: 1;
	margin: 0;
}

/* main */
.l-sec{
	width: 100%;
	padding: 60px 0 120px;
}
.l-sec_inner{
	max-width:1100px;
	margin: 0 auto;
	padding: 0 20px;
}
.l-sec_cont{
	margin-bottom: 64px;
}
.l-sec_cont:last-child{
	margin-bottom: 0;
}

@media screen and (max-width:768px) {
	header {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 12px 0;
	}
	.header_inner {
    display: block;
	}
	.header_logo {
		display: block;
    width: 200px;
    margin: 8px auto 16px;
	}
	.header_search_box {
    width: 100%;
	}
	.l-sec {
    padding: 48px 0 72px;
	}
	footer {
    padding: 48px 0 48px;
	}
	.footer_nav_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    line-height: 2.5;
	}
	.footer_nav_list li::after {
    content: "|";
    margin: 0 1.5rem;
	}
	.footer_nav {
    margin-bottom: 24px;
	}
}
/*ぱんくず*/
.breadcrumbArea {
  max-width: 1100px;
  padding: 0 20px;
  margin: 16px auto 0;
}
.breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.6;
}
.breadcrumb li {
  font-size: 1.2rem;
}
.breadcrumb li::after {
  content: ">";
  margin: 0 1em;
}
.breadcrumb li:last-child::after {
  content: none;
  margin: 0;
}

