@charset "UTF-8";
*,
*::before,
*::after {
    box-sizing: border-box;
	margin: 0;
}

body {
	font-size: 15px;
    margin: 0;
    color: #333;
	background: #f7fcff;
    font-family: "BIZ UDPGothic", sans-serif;
    letter-spacing: .1em;
    line-height: 1.7; }

p{
	line-height: 2;
}

ul {
    padding: 0; 
}

a {
    text-decoration: none;
    display: block;
    color: #272727;
	cursor: pointer;
	transition: .3s;
}

li {
    list-style: none; 
}

.container{
    max-width: 90%;
    margin: 0 auto;
    padding: 100px 0; 
}

img {
    width: 100%;
    height: auto; 
}

.wrap{display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;}

/*-------header-------------------------------------*/
header {
	position: fixed;
    top: 0;
    height: 70px;
	background: #fff;
    width: 100%;
    z-index: 100;
	box-shadow: 0px 8px 8px -5px rgba(0, 0, 0, 0.1);
}
header .header_inner {
	display: flex;
    justify-content: space-around;
    flex-wrap: nowrap; 
	height: 70px;
    align-items: center;
}
header .header_inner #logo {
	width: 20%;
	margin: auto 0;
}
header .header_inner #logo a {
	display: block; 
}
header .header_inner #logo a img {
	width: 50%; 
}
header .header_inner #pc_navi {
	width: 70%; 
}
header .header_inner #pc_navi nav ul.pc_nav_li {
	display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
	padding: 0;
    margin: 0;
	align-items: center; }
header .header_inner #pc_navi nav ul.pc_nav_li li{
	margin-right: 40px;
}
header .header_inner #pc_navi nav ul.pc_nav_li li a {
	display: block;
    color: #267bb9ff;
    position: relative; 
	padding: 5px 10px;
	border-radius: 5px;
}
header .header_inner #pc_navi nav ul.pc_nav_li li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
header .header_inner #pc_navi nav ul.pc_nav_li li a:hover {
	background: rgba(0,0,0,0.1);
}
header .header_inner #pc_navi nav ul.pc_nav_li li a:hover::after {
  transform: scale(1, 1);
}
header .header_inner #pc_navi nav ul.pc_nav_li li.contact_btn {
    background: #267bb9ff;
    transition: all .3s;
	margin-right: 0;
	border-radius: 5px;
    padding: 5px 25px 5px 15px; }
header .header_inner #pc_navi nav ul.pc_nav_li li.contact_btn a {
    color: #fff;
	padding: 0;
	border-radius: 0;
}
header .header_inner #pc_navi nav ul.pc_nav_li li.contact_btn a::after{
	display: none;
}
header .header_inner #pc_navi nav ul.pc_nav_li li.contact_btn .arrow-line {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 2px;
    background: #fff;
	top: -5px;
	right: -10px;
	
}

header .header_inner #pc_navi nav ul.pc_nav_li li.contact_btn .arrow-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

/*-------kv-------------------------------------*/
.kv{
	padding-top: 90px; 
	position: relative;
}
.kv_img{
	background: url("../img/kv-img.webp")no-repeat center;
	background-size: cover;
	max-width: 85%;
    border-radius: 40px;
    height: 70vh;
    margin: 0 auto;
	position: relative;
}
.kv_img img{
	width: 400px;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.kv h2{
	position: absolute;
	bottom: 8%;
	left: 5%;
	font-size: 32px;
	color: #fff;
	font-weight: normal;
	margin: 0;
}
.kv .sns_icon{
	position: absolute;
	left: 2%;
	top: 55%;
    transform: translate(0, -50%);
}
.kv .sns_icon a{
	width: 45px;
	margin-bottom: 20px;
	position: relative;
}
.kv .sns_icon a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #267bb9ff;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.kv .sns_icon a:hover::after {
  transform: scale(1, 1);
}


/*-------トップコラム-------------------------------------*/
#colum .container{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#colum .container article{
	border-top: 1px solid #267bb9ff;
	width: 70%;
}
.sidebar{
	width: 24%;
}
h2.title{
	font-size: 32px;
	line-height: 1.35;
	color: #267bb9ff;
	padding-top: 20px;
}
h2.title span{
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.75;
	position: relative;
    top: -5px;
    left: 10px;
	color: #333;
}
#colum .colum_list{
	margin-top: 40px;
}
#colum .colum_list li{
	width: calc(100% / 2 - 20px)
}
#colum .colum_list li a{
	display: flex;
}
#colum .colum_list li a .date{
	color: #267bb9ff;
	font-weight: bold;
}
#colum .colum_list li a .date p{
	line-height: 1;
}
#colum .colum_list li a .date .day{
	width: 100%;
	font-size: 55px;
}
#colum .colum_list li a .content img{
	border-radius: 30px;
    border: 2px solid #003d69ff;
}
#colum .colum_list li a .content .content_txt{
	position: relative;
    left: -30px;
    top: -60px;
}
#colum .colum_list li a .content .content_txt p.category{
    background: #267bb9ff;
    border-radius: 12px 12px 0px 0px;
    margin: 0px 0px -12px 0px;
    padding: 0px 12px 10px 25px;
	display: inline-block;
	color: #fff;
	position: relative;
}
#colum .colum_list li a .content .content_txt p.category::before{
	position: absolute;
	content: "";
	width: 8px;
	height: 3px;
	border-radius: 4px;
	background: #fff;
	top: 40%;
	left: 10px;
    transform: translate(0, -50%);
}
#colum .colum_list li a .content .content_txt h3{
    background: #ffffff;
    border-bottom: 4px solid #003d69ff;
    border-left: 2px solid #003d69ff;
    border-radius: 12px 12px 12px 12px;
    border-right: 2px solid #003d69ff;
    border-top: 2px solid #003d69ff;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.75;
    margin: -1px 0px 0px 0px;
    padding: 15px 20px 15px 20px;
	position: relative;
	z-index: 10;
}
#wrapper {
  overflow: hidden;
}

.slick-list{
  overflow: visible;
}
.slick-item{
	padding: 0 30px;
	height: 220px;
}
.slick-item a{
	color: #fff;
	position: relative;
}
.slick-item a img{
	border-radius: 40px;
	height: 220px;
    object-fit: cover;
}
.slick-item .property_detail{
	position: absolute;
    bottom: 5%;
    left: 5%;
}
.slick-item .property_detail ul {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.slick-item .property_detail ul li{
	display: block;
  font-size: 10px;
  background: #267bb9ff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 2px 20px;
  text-align: center;
  margin-bottom: 5px;
  white-space: nowrap;
}
.slick-next,
.slick-prev {
    position: absolute;
    top: 40px;
    z-index: 1;
    width: 60px!important;
    height: 60px!important;
    border-radius: 50%!important;
    background: #fff!important;
}

.slick-prev:before,
.slick-next:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #267bb9ff;
    border-right: 2px solid #267bb9ff;
    opacity: 1;
    content: '';
	color: transparent!important;
}

.slick-prev:before {
    transform: translate(-25%, -50%) rotate(-135deg);
}

.slick-next:before {
    transform: translate(-75%, -50%) rotate(45deg);
}
.slick-next{
	right: 40px!important;
}
.slick-prev{
	left: 40px!important;
}
#property{
	background: url("../img/property-bg.jpg")no-repeat center;
	background-size: cover;
	padding: 60px 0;
}
#property .property_head{
	color: #fff;
	text-align: center;
}
#property .property_head h2{
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.4;
	margin-bottom: 20px;
}
#property .property_head p{
	font-size: 14px;
}
#wrapper{
	margin-top: 70px;
}
.btn{
	margin: 40px auto 0;
	width: 200px;
}
.btn a{
	border-radius: 40px;
	background: #267bb9ff;
	color: #fff;
	font-weight: bold;
	padding: 15px;
	text-align: center;
	line-height: 1.4;
}
#category .container h2.title{
	border-top: 1px solid #267bb9ff;
}
#category .category_list{
	margin-top: 40px;
	margin-left: 8%;
}
#category .category_list li{
	width: calc(100% / 2 - 50px);
	margin-bottom: 30px;
}
#category .category_list li a .content .img{
	border-radius: 30px;
    border: 2px solid #003d69ff;
	width: 100%;
	height: 240px;
}
#category .category_list li a .content .img img{
	border-radius: 30px;
	object-fit: cover;
	height: 240px;
}
#category .category_list li a .content .content_txt{
	position: relative;
    left: -30px;
    top: -60px;
}
#category .category_list li a .content .content_txt p.category{
    background: #267bb9ff;
    border-radius: 12px 12px 0px 0px;
    margin: 0px 0px -12px 0px;
    padding: 0px 12px 10px 35px;
	display: inline-block;
	color: #fff;
	position: relative;
	font-size: 24px;
}
#category .category_list li a .content .content_txt .property-category li{
	background: #267bb9ff;
    border-radius: 12px 12px 0px 0px;
    margin: 0px 0px -12px 0px;
    padding: 10px 12px 20px 26px;
	display: inline-block;
	color: #fff;
	position: relative;
	font-size: 12px;
	width: auto;
}
#category .category_list li a .content .content_txt p.category::before, #category .category_list li a .content .content_txt .property-category li::before{
	position: absolute;
	content: "";
	width: 12px;
	height: 4px;
	border-radius: 4px;
	background: #fff;
	top: 40%;
	left: 10px;
    transform: translate(0, -50%);
}
#category .category_list li a .content .content_txt h3{
    background: #ffffff;
    border-bottom: 4px solid #003d69ff;
    border-left: 2px solid #003d69ff;
    border-radius: 12px 12px 12px 12px;
    border-right: 2px solid #003d69ff;
    border-top: 2px solid #003d69ff;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.75;
    margin: -1px 0px 0px 0px;
    padding: 15px 20px 15px 20px;
	position: relative;
	z-index: 10;
}
footer{
	background: url("../img/footer_bg.jpg")no-repeat;
	background-size: cover;
	text-align: center;
	background-position: 50% 48%;
}
footer .container{
	padding: 60px 0;
}
footer img{
	width: 300px;
}
footer ul{
	display: flex;
	justify-content: center;
}
footer ul li{
	margin: 0 20px;
}
footer ul a{
	color: #fff;
}
footer p.copyright{
	text-align: left;
	font-size: 10px;
	padding-top: 60px;
	color: #fff;
}
footer ul.sns a{
	margin: 20px 10px 0;
}
footer ul.sns a img{
	width: 25px;
}

/*会社概要*/

.sub_kv{
	background: url("../img/com_kv.jpg")no-repeat center;
	background-size: cover;
	height: 350px;
	position: relative;
	padding-top: 70px;
}
.sub_kv h1{
	position: absolute;
	top: 55%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
	font-size: 32px;
	color: #fff;
}
.property_kv{
	background: url("../img/property_kv.jpg")no-repeat center;
	background-size: cover;
}

.Breadcrumbs{
	display: flex;
	justify-content: flex-end;
	align-content: center;
	max-width: 90%;
	margin: 0 auto;
	font-size: 14px;
}
.Breadcrumbs a{
	padding-right: 20px;
	position: relative;
}
.Breadcrumbs a::after{
	position: absolute;
	content: "/";
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	
}
.Breadcrumbs p.active{
	padding-left: 10px;
}

.com_main h2{
	font-size: 28px;
	border-bottom: 2px solid #267bb9ff;
	padding-bottom: 10px;
	width: 70%;
	margin: 0 auto;
	color: #267bb9ff;
}
table{
	width: 70%;
	margin: 30px auto 0;
}
table tr {
    border-top: 1px solid #eeeeee;
}

table th,
table td {
    padding: 24px 0;
    border: none;
}

table th {
    width: 30%;
	font-weight: normal;
	text-align: left;
}

#contact{
	background: #fff;
	text-align: center;
	padding: 100px 0;
}
#contact h2{
	color: #267bb9ff;
	font-size: 28px;
	margin: 0px 0px 16px 0px;
}
#contact p{
	color: #003d69ff;
	margin: 0px 0px 48px 0px;
}
#contact .btn{
	width: 100%;
    display: inline-flex;
    justify-content: center;
    margin-top: 0;
}
#contact .btn a{
	padding: 16px 32px 16px;
	border-radius: 16px;
}
.btn a:hover{
	background: #e7e7e7;
}

/*コラム一覧*/
.colum_kv{
	background: url("../img/property-bg.jpg")no-repeat;
	background-size: cover;
	background-position: 50% 40%;
}

#form_main .container{
	max-width: 60%;
}

#form_main .container p.bold{
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 20px;
}


/*サイドバー*/
.sidebar aside ul li{
	background: #fff;
	border-radius: 8px;
	margin: 24px 0 0;
	padding: 24px;
}
.sidebar aside ul li h2{
	border-top: 1px solid #267bb9ff;
	padding-top: 10px;
	color: #267bb9ff;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}
.sidebar aside ul li ul li{
	border-top: 1px solid #f3f3f3;
	padding: 12px 0;
	font-size: 14px;
	margin-top: 0;
}
.sidebar aside ul li ul li:nth-child(1){
	border-top: 0;
}
.sidebar aside ul li.cat_menu ul li a{
	position: relative;
}
.sidebar aside ul li.cat_menu ul li a::after{
	content: '';
	width: 8px;
	height: 8px;
	border-top: solid 1px #333;
	border-right: solid 1px #333;
	position: absolute;
	right: 10px;
	top: 8px;
	transform: rotate(45deg);
}
.sidebar aside ul li.tag ul li{
	border: none;
	margin-right: 10px;
	padding: 5px 0 5px 14px;
	position: relative;
	font-size: 12px;
}
.sidebar aside ul li.tag ul li::before{
	position: absolute;
	content: "#";
	font-size: 12px;
	color: #333;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
}
.sidebar aside ul li.tag ul{
	display: flex;
	flex-wrap: wrap;
}
.single_main{
	padding-top: 70px;
}
.single_main .container{
	padding-top: 0;
	align-items: flex-start;
}
.single_main .container article, .category_main .container article{
	background: #fff;
	width: 74%;
	padding: 40px;
}
.single_main .container h1{
	background: #267bb9ff;
	border-radius: 10px;
	box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.2);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.4;
	justify-content: center;
	display: flex;
	color: #fff;
	padding: 15px;
}
.single_head .wrap{
	justify-content: flex-start;
	gap: 0px 30px;
	flex-wrap: nowrap;
	margin-top: 30px;
}
.single_head img{
	margin-top: 40px;
}
.single_head p.category, .single_head .property-category li{
	background: #267bb9ff;
    border-radius: 24px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0px 0px 0px 0px;
    padding: 0px 24px 0px;
    max-width: 100%;
}
.single_head .property-category{
	display: flex;
}
.single_head .property-category li{
	margin-right: 10px;
}
.single_head p.date{
	color: #267bb9ff;
    font-size: 14px;
    font-weight: 400;
    height: auto;
    margin: 0px 0px 0px 0px;
    max-width: 100%;
}
.single_content p{
	margin-bottom: 15px;
}
.single_content h2{
	background: #267bb9ff;;
    border-bottom: 3px solid #003d69ff;
    border-left: 1px solid #003d69ff;
    border-radius: 30px;
    border-right: 1px solid #003d69ff;
    border-top: 1px solid #003d69ff;
    color: #fff;
    font-size: 24px;
    text-align: center;
	margin-bottom: 20px;
	padding: 10px;
}
.single_content h3, .single_content h4{
	background: #fff;
    border-bottom: 2px solid #7aa2bfff;
    border-left: 8px solid #7aa2bfff;
    border-right: 0px solid #7aa2bfff;
    border-top: 0px solid #7aa2bfff;
    color: #7aa2bfff;
    font-size: 20px;
    margin: 10px 15px 20px 0px;
    padding-left: 5px;
}
.related_article{
    background: #FFFFFF;
    border-radius: 8px;
    justify-content: flex-start;
    margin: 48px 0px 0px 0px;
    padding: 40px;
    width: 100%;
    max-width: 100%;
}
.related_article h2{
	color: #000000;
    font-size: 24px;
    font-weight: 600;
    height: auto;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin: 0px 0px 0px 0px;
    text-align: center;
    width: auto;
    max-width: 100%;
	position: relative;
}
.related_article h2::after{
	position: absolute;
	content: "";
	background: #267bb9ff;
    border-radius: 4px;
    height: 5px;
    width: 14px;
    bottom: -10px;
	left: 50%;
	transform: translate(-50%, 0);
}

@media (max-width: 767px) {
	.sp_none{display: none;}
  #pc_navi {
    display: none; }

  header {
    height: 70px; }

  header .header_inner {
	  justify-content: space-between;
    height: 70px; }

  header .header_inner #logo a img {
	  width: 100%;
    margin-left: 1rem; }
	header .header_inner #logo{
		width: 30%;
	}

  #nav-toggle {
    top: 0;
	  top: -25px;
    right: 15px;
	  z-index: 1000;
	  position: relative;
    cursor: pointer;}
    #nav-toggle > div {
      position: relative;
      width: 30px; }
    #nav-toggle span {
        width: 90%;
        height: 3px;
        display: block;
        background: #333;
        position: absolute;
        transition: transform .4s ease-in-out, top .3s ease;
        border-radius: 3px; }
      #nav-toggle span:nth-child(1) {
        top: 15px; }
      #nav-toggle span:nth-child(2) {
        top: 23px; }
      #nav-toggle span:nth-child(3) {
        top: 31px; }
    .open #nav-toggle span:nth-child(1) {
      top: 22px;
      transform: rotate(45deg); }
    .open #nav-toggle span:nth-child(2) {
      top: 22px;
      width: 0;
      left: 50%; }
    .open #nav-toggle span:nth-child(3) {
      top: 22px;
      width: 30px;
      transform: rotate(-45deg); }

  #gloval-nav {
    background: #EFF1F2;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-left: 40px;
	padding-right: 40px;
    padding-top: 80px;
    z-index: 990;
    display: flex;
    visibility: hidden;
    font-size: 20px;
    opacity: 0;
    transition: opacity .4s ease, visibility .4s ease; }
	
	#gloval-nav nav{
		width: 100%;
	}

  #gloval-nav ul {
    list-style: none;
    padding: 0; }
	
	#gloval-nav ul li{
		border-bottom: 1px solid #C3C3C3;
	}
	#gloval-nav ul li:last-child{
		border: none;
	}
	#gloval-nav ul li a{
		font-size: 16px;
		font-weight: bold;
		display: block;
		padding: 20px 10px;
		color: #267bb9ff;
		line-height: 1.2;
		position: relative;
	}
	#gloval-nav ul li a::after{
		content: '';
		width: 8px;
		height: 8px;
		border-top: solid 1px #333;
		border-right: solid 1px #333;
		position: absolute;
		right: 10px;
		top: 25px;
		transform: rotate(45deg);
	}

  /* open */
  .open {
    overflow: hidden; }
    .open #gloval-nav {
      visibility: visible;
      opacity: 1; }
    .open #gloval-nav ul {
      padding: 0; }
    .open #gloval-nav li {
      opacity: 1;
      transform: translateX(0);
      transition: transform 1s ease, opacity .9s ease; }
	.open #gloval-nav li.tell{margin-top: 45px; margin-left: 40px; font-size: 28px;}
	
	header .header_inner #sp_navi{
		display: flex;
		justify-content: flex-end;
	}
	
	header .header_inner #sp_navi .cta_btn{
		width: 80px;
		height: 70px;
		text-align: center;
	}
	header .header_inner #sp_navi .contact_btn {
		background: #2A88E0;
		transition: all .3s;
		margin-right: 0;
		padding: 0 5px; }
	header .header_inner #sp_navi .recruit_btn {
		background: #A5D2FC;
		padding: 0 5px;
	}
	header .header_inner #sp_navi .cta_btn a {
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		height: 70px; 
	}
	header .header_inner .contact_btn a p, header .header_inner .recruit_btn a p{
		font-size: 10px;
		color: #fff;
		margin: 0;
	}
	header .header_inner .contact_btn a p i.fa, header .header_inner .recruit_btn a p i.fa{
		font-size: 25px;
		display: block;
		color: #fff;
	}
	
	/*TOPページ*/
	.container{
		padding: 80px 0;
	}
	.kv .sns_icon{
		display: none;
	}
	.kv_img img{
		width: 280px;
	}
	.kv h2{
		font-size: 24px;
		margin-right: 5%;
	}
	
	#colum .container article, #colum .container .sidebar{
		width: 100%;
	}
	#colum .colum_list li{
		width: 100%;
	}
	#colum .colum_list li a .date p{
		font-size: 10px;
	}
	#colum .colum_list li a .date .day{
		font-size: 38px;
	}
	#colum .colum_list li a .content .content_txt{
		left: -55px;
	}
	.slick-next{
		right: 10px !important;
	}
	.slick-prev{
		left: 10px !important;
	}
	.slick-next, .slick-prev{
		width: 40px !important;
    	height: 40px !important;
	}
	#property .property_head h2{
		font-size: 25px;
	}
	#category .category_list{
		margin-top: 30px;
		margin-left: 15%;
	}
	#category .category_list li{
		width: 100%;
		margin-bottom: 0;
	}
	#category .category_list li a .content .content_txt p.category{
		font-size: 18px;
	}
	footer ul{
		flex-wrap: wrap;
	}
	footer ul li{
		width: 100%;
		text-align: left;
		margin-top: 15px;
		margin-left: 0;
	}
	footer ul.sns{
		justify-content: flex-start;
	}
	footer ul.sns a{
		margin-left: 0;
		margin-right: 20px;
	}
	
	table th,table td {
		width: 100%;
		font-size: 14px;
		padding: 16px 8px 16px;
	}
	table th {
		width: 100%;
	}
	table{
		width: 100%;
	}
	.com_main h2{
		width: 100%;
		font-size: 20px;
	}
	#contact{
		padding: 60px 0;
		margin: 0 10px 30px;
		border-radius: 10px;
	}
	#contact h2{
		font-size: 20px;
	}
	#contact p{
		font-size: 14px;
		margin-left: 15px;
		margin-right: 15px;
	}
	.sub_kv{
		height: 220px;
	}
	.sub_kv h1{
		font-size: 24px;
	}
	.Breadcrumbs{
		font-size: 12px;
	}
	.single_main .container article{
		width: 100%;
		padding: 20px;
	}
	.sidebar{
		width: 100%;
		margin-top: 30px;
	}
	.single_main .container h1{
		width: 100%;
		font-size: 22px;
	}
}

@media (min-width: 768px) {
  .pc_none {
    display: none; }
	
  header .header_inner #logo {
    margin-left: 2em; }

  #sp_navi {
    display: none; }
}


.search-form {
  position: relative;
  max-width: 420px;
	margin-top: 24px;
}

.search-input {
  width: 100%;
  padding: 14px 52px 14px 20px;
  border-radius: 999px;
  border: none;
  background: #f3f3f3;
  font-size: 13px;
  outline: none;
}

.search-input::placeholder {
  color: #b5b5b5;
}

.search-button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #333;
}

.search-button svg {
  display: block;
}
.related-list{
	display: flex;
	margin-top: 30px;
	flex-wrap: wrap;
}
.related-list li{
	width: calc(100% / 2);
}
.related-list li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.related-list li a img{
	width: 45%;
	border-radius: 8px;
}
.related-list li a div{
	width: 50%;
	align-items: flex-start;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	justify-content: space-between;
}
.related-list li a div h3{
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}
.related-list li a div p{
	font-size: 12px;
	margin-top: 30px;
}
.cat_head{
	text-align: center;
}
.cat_head p.small{
	color: #666666;
	font-size: 14px;
	letter-spacing: 0.05em;
}
.cat_head h2{
	color: #267bb9ff;
	font-size: 24px;
	font-weight: 600;
	margin-top: 6px;
	line-height: 1.4;
}
.cat_head .search-form{
	margin: 24px auto 0;
}
.category_main{
	padding-top: 70px;
}
.category_main .container{
	align-items: flex-start;
	padding-top: 0px;
}
.sidebar aside ul li.cat_menu{
	margin-top: 0;
}
.category_main .column_list{
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
}
.category_main .column_list li{
	width: calc(100% / 3 - 10px);
	margin: 0 5px 30px;
}
.category_main .column_list li img{
	border-radius: 8px;
}
.category_main .column_list li h3{
	margin-top: 12px;
	font-size:16px;
	line-height: 1.4;
	font-weight: 600;
}
.category_main .column_list li p{
	margin-top: 5px;
	font-size: 14px;
}

/*----------------------------コンタクトフォーム-----------------------------*/
.wpcf7-list-item-label a{display: inline-block; color: #4E80CE;}
div.wpcf7 { 
	padding:0px; }
div.wpcf7 p { 
	padding: 0; 
	margin:0; 
	font-size: 16px;
	line-height: 100%;
	 }
div.wpcf7 input.wpcf7-text, .wpcf7 textarea, .wpcf7-date{ 
	border:1px solid #267bb9ff; 
	padding:16px; font-size:14px; 
	line-height: 100%; color: #999; 
	margin-top: 25px; width: 100%; 
	border-radius: 5px;
	font-weight: normal;}
input[type=text]:focus{
	border-radius: 0;
}
div.wpcf7 textarea { width:100%; height:200px; }
.wpcf7 input[type="submit"] {
  cursor:pointer;
	display:block;
	padding: 16px 32px;
	font-size: 16px;
	border-radius: 40px!important;
    height: 60px;
    background: .wpcf7;
	font-weight: 600;
	color: #fff;
	margin-top: 30px;
	text-align: center;
	background: #267bb9ff;
	border: none!important;
}
.form_area span.grey{
	color: #999;
	font-size: 14px;
	margin-top: 10px;
	position: relative;
    top: 6px;
}
.wpcf7 .center{
	padding-top: 40px;
}
.wpcf7 input.wpcf7-submit:active { box-shadow:none; bottom:-2px; position:relative;  background: #2A88E0;}
.wpcf7 input:focus, .wpcf7 textarea:focus { border:1px solid #009de1; }
.wpcf7-captchac { border:1px solid #ccc; }

div.wpcf7 p.form_name{
	padding: 40px 0px 0; 
}
.form_area{
	margin: 30px auto 0;
	max-width: 900px;
}
 
 
/* エラー個所をわかりやすく表示 */
.wpcf7 .wpcf7-not-valid { background: #ffb6c1; }
.wpcf7 span.wpcf7-not-valid-tip {font-size: 80%;}
.wpcf7 .wpcf7-response-output {margin: 10px 0 0; padding: 8px 35px 8px 14px; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }
.wpcf7 .wpcf7-validation-errors {color: #B94A48; background-color: #F2DEDE; border: 1px solid #EED3D7;}
.wpcf7 .wpcf7-mail-sent-ok {color: #3A87AD; background-color: #D9EDF7; border: 1px solid #BCE8F1;}
 
/* 必須赤色表示 */
.wpcf7 .required {
	background: #267bb9ff;
	color: #fff;
	font-size: 12px;
	border-radius: 16px;
	padding: 4px 8px;
	margin-left: 8px;
}

input :not(*):placeholder-shown, div.wpcf7 input.wpcf7-text, .wpcf7 textarea{
	color: #333;
}
input[type="text"]:focus, input[type="email"]:focus, textarea{
	outline: none;
	outline-color: #333;
}

@media (min-width: 768px){
	.wpcf7-form-control.wpcf7-radio .wpcf7-list-item{
		display: inline-block;
		margin-left: 20px;
	}
}

@media (max-width: 767px){
	div.wpcf7 input.wpcf7-submit{
		width: 100%;
	}
	#form_main .container{
		max-width: 90%;
	}
	.category_main .container article, .category_main .column_list li{
		width: 100%;
	}
	.related-list li{
		width: 100%;
	}
	.related-list li:nth-child(1){
		margin-bottom: 20px;
	}
	.related_article{
		padding: 0;
	}
}

.pagination {
  margin: 40px 0;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 8px 14px;
}

.pagination .current {
  font-weight: bold;
  border-bottom: 2px solid #267bb9ff;
}
/*# sourceMappingURL=style.css.map */
