@charset "UTF-8";
/* CSS Document */
*{
	letter-spacing: 0.3px;
}
body {
  font-family: Arial,Helvetica,"游ゴシック",YuGothic,"Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
}

a{
	transition: .3s;
}
main{
	background-image: url("../img/");
	background-size: cover;
	
}
/* ページTOPに戻る */
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 10px;
  background: #33333380;
  opacity: 0.6;
  border-radius: 50%;
	z-index: 999999;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

 @media (min-width: 960px) {
	 .sp-d{
		 display: none;
	 }
}
@media (max-width: 959px) {
	.sp-d{
		display: inherit;
	}
	.pc-d{
		display: none;
	}
}
/*------------header------------*/
header{
	height: 80px;
	background-color: #e8f6ff;
}
header .wrap{
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	padding-top: 1%;
	padding-bottom: 3%;
}
header .left{
	display: flex;
	width: 28%;
	justify-content: flex-start;
	font-size: 21px;
	font-weight: bold;
	align-items: center;
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}


.menu {
    position: relative;
    width: 72%;
    max-width: 960px;
    margin: 0 auto;
	font-size: 13px;
}

.menu > li {
    float: left;
    width: calc(100% / 7); /* グローバルナビ7つの場合 */
    height: 50px;
    line-height: 50px;
}

.menu > li a {
    display: block;
	color: #fff;
}

.menu > li a:hover {
}
.menu .menu__single .init-bottom{
	color: #333333;
}
.menu .menu__single:nth-child(1) .init-bottom, .menu .menu__single:nth-child(2) .init-bottom{
	pointer-events: none;
}
ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

ul.menu__third-level {
    visibility: hidden;
    opacity: 0;
}

ul.menu__fourth-level {
    visibility: hidden;
    opacity: 0;
}

.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li {
    border-top: 1px solid #fff;
	color: #fff;
}

.menu__third-level li {
    border-top: 1px solid #fff;
}

.menu__second-level li a:hover {
    background: #38b3df;
}

.menu__third-level li a:hover {
    background: #2a1f1f;
}

.menu__fourth-level li a:hover {
    background: #1d0f0f;
}
.menu__single .hover:hover{
}
.hover {
	display: inline-block;
	position: relative;
	text-decoration: none;
}
.hover::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #006599;
	transition: all 0.3s ease 0s;
}
.hover:hover {
	cursor: pointer;
}
.hover:hover::after {
	width: 100%;
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}
.menu > li.menu__single {
    position: relative;
	text-align: center;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: 100%;
    background: #333333;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

li.menu__single:hover ul.menu__second-level {
    top: 50px;
    visibility: visible;
    opacity: 1;
	z-index: 999;
}


/*　ハンバーガー */
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3584bb;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #3584bb;
    transition: all 0.5s;/*アニメーション設定*/
	padding: 5%;

  	bottom: 0;
  	overflow-y: auto;
}

.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
	font-size: 120%;
	line-height: 2;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 24px;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
	padding: 5%;
}


.hamburger-menu ul{
	padding: 0;
}
.hamburger-menu .sp-menu-second-level{
	padding-left: 5%;
}
.hamburger-menu .sp-menu-second-level li:last-child{
	border-bottom: none;
	
}
.hamburger-menu .no-events{
	pointer-events: none;
	background-color: #fff;
	color: #3584bb;
	width: 40%;
	padding: 0;
	text-align: center;
	margin-top: 20px;
	font-weight: bold;
	letter-spacing: 2px;
	text-indent: 2px;
}
.menu-content ul li .no-events::before{
	display: none;
}

@media (max-width: 959px) {
	header{
		width: 100%;
		background-color: #e8f6ff;
		position: fixed;
		z-index: 9999;
		box-shadow: 0px 8px 15px -15px #777777;
	}
	.sp-left{
		height: 80px;
		position: fixed;
		width: auto!important;
		padding-left: 2%;
	}

}
@media (max-width: 519px) {}

/*------------HOME------------*/

.hero{
	background: linear-gradient(180deg, #e8f6ff 0%, #e8f6ff 80%, #fff 80%, #fff 100%);
	margin-bottom: 80px;
}
/*.hero .swiper-slide{
	padding-right: 10%;
}*/
.hero .swiper-slide img{
	width: 100%;
}
.hero .swiper-button-next{
	display: none;
}
.hero .swiper-button-prev{
	display: none;
}
.hero .swiper{
	position: relative;
}
.hero .hero-text{
	position: absolute;
	width: 45%;
	top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
	animation-name: fade;
    animation-duration: 3s;

}
@keyframes fade{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
	}
}
main{
	padding-bottom: 80px;
}
main .wrap{
	margin: 0 auto;
	text-align: center;
}
main p{
	line-height: 1.8;
}
main a:hover{
	opacity: .3;
}
.button{
	width: 250px;
	background-color: #fff!important;
	border: solid 1px;
	font-size: 14px;
	padding: 10px 15px!important;
	margin: 0 auto;
	display: block;
	border-radius: 100vw;
}
.button:after{
	content: ">";
	float: right;
}

.button a{
	display: block!important;
}
.con-1{
	width: 960px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.con-1 h2{
	font-size: 38px;
	font-weight: bold;
	margin-top: -50px;
	margin-bottom: 40px;
}
.con-1 h3{
	font-size: 24px;
	font-weight: bold;
	width: 90%;
	margin: 0 auto;
	margin-bottom: 40px;
	line-height: 1.5;
	color: #006599;
}
.con-1 .wrap{
	background-color: #e8f6ff;
	background-image:url(../img/con1-bg.jpg);
	background-size: cover;
	padding: 3%;
	padding-bottom: 15%;
}
.con-1 p{
	margin-bottom: 40px;
}

.link{
	display: flex;
	justify-content: space-around;
	background-color: #fff0!important;
	margin-top: -90px;
	padding-left: 2.5%;
	padding-right: 2.5%;
	width: 100%;
}
.link .link-box{
	width: 33%;
	padding: 0;
	background-color: #fff;
	border: solid 1px;
	margin: 15px;
	padding-bottom: 20px;
}
.link .img{
	height: 180px;
	margin-bottom: 10px;
}
.link :nth-child(1) .img{
	background-image: url("../img/index01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.link :nth-child(2) .img{
	background-image: url("../img/index02.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.link :nth-child(3) .img{
	background-image: url("../img/index03.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.link .link-box p{
	height: 4rem;
	padding: 4% 5%;
	text-align: justify;
}
.con-2{
	background: linear-gradient(#A9CBF1, #badaee);
	margin-bottom: 60px;
}
.con-2 .wrap{
	display: flex;
	width: 960px;
	margin: 0 auto;
	padding-top: 5%;
	padding-bottom: 5%;
}
.con-2 .img{
	width: 60%;
	background-image: url("../img/index04.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.con-2 .right{
	width: 40%;
	padding: 8% 4%;
	background-color: #fff;
}
.con-2 h2{
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 40px;
}
.con-2 p{
	margin-bottom: 40px;
	text-align: justify;
}
.con-3{
	width: 960px;
	margin: 0 auto;
}
.con-3 h2{
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 40px;
}
.con-3 .slider{
	height: 300px;
	margin-bottom: 40px;
}
.con-3 .swiper {
        width: 90%;
        height: 100%;
      }
.con-3 .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
	margin-right: 23px;
}
.con-3 .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
	margin-left: 23px;
}
.con-3 .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	}
.con-3 .swiper-slide img {
	display: block;
	width: 180px;
	height: 180px;
	object-fit: cover;
	border-radius: 50%;
	margin: 0 auto;
	border: solid 1px;
	}
.con-3 .swiper-slide{
	display: flex;
	flex-direction: column;
}
.con-3 .swiper-slide p{
	font-size: 75%;
	text-align: justify;
	padding: 7% 15% 0 15%;
}
.con-3 .swiper-slide p span{
	color: #006599;
	font-size: 90%;
}
.con-3 .swiper-pagination{
	display: none;
}

.con-3 .swiper-slide a:hover{
	opacity: .5;
}


.con-3 a{
	margin-bottom: 60px;
}
.con-4{
	background-color: #006599;
	padding-top: 5%;
	padding-bottom: 5%;
}
.con-4 .wrap{
	width: 960px;
	margin: 0 auto;
	background-color: #fff;
	padding: 3% 5%;
}
.con-4 .h2-wrap{
	display: flex;
	margin-bottom: 40px;
}
.con-4 h2{
	font-size: 38px;
	font-weight: bold;
	text-align: left;
	border-bottom: solid 2px #006599;
	width: 5em;
}

@media (min-width: 1697px) {
	.con-4 h2{
		width: 6em;
}
}


.con-4 .border-bottom{
	border-bottom: solid 2px #CDCDCD;
	width: 100%;
}
.con-4 table th{
	color: #fff;
}
table{
	width: 80%;
	margin: 0 auto;
	margin-bottom: 40px;
}
table tr{
	line-height: 1.5;
	border: solid 5px #fff;
	display: flex;
	align-items: center;
	background-color: #f5f1ee;
}
table th{
	width: 40%;
	background-color: #38B3DF;
	padding: 2%;
	padding-left: 3%;
	font-weight: normal;
}
table td{
	width: 60%;
	background-color: #f5f1ee;
	padding: 2%;
}
.con-5{
	padding-top: 60px;
	background-color: #e8f6ff;
	padding-bottom: 60px;
	margin-bottom: 40px;
}
.con-5 h2{
	font-size: 38px;
	font-weight: bold;
	margin-bottom: 60px;
}
.con-5 .wrap{
	display: flex;
	width: 960px;
	margin: 0 auto;
	justify-content: space-between;
}
.con-5 .wrap div{
	width: 46%;
}
.con-5 .youtube-text-wrap{
	width: 100%!important;
}
.con-5 h3{
	text-align: left;
	font-size: 26px;
	font-weight: bold;
	line-height: 50px;
	display: flex;
	margin-bottom: -14px;
	margin-left: 25px;
	margin-top: -35px;
}
.con-5 .blog h3:before{
	content:"";
	width: 40px;
	height: 45px;
	background-image: url(../img/blog.png);
	display: inline-block;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-right: 10px;
}
.con-5 .youtube h3:before{
	content:"";
	width: 40px;
	height: 45px;
	background-image: url(../img/youtube_logo.png);
	display: inline-block;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-right: 10px;
}
.con-5 .youtube .html5-video-player a{
	font-size: 90%!important;
}
.con-5 .wrap .box{
	background-color: #fff;
	padding-bottom: 5%;
	position: relative;
}
.con-5 ul{
	padding-top: 10%;
	padding-bottom: 5%;
}
.con-5 ul li{
	width: 80%;
	margin: 0 auto;
	margin-bottom: 20px;
	font-size: 80%;
}
.con-5 ul li p{
	display: block;
}

.con-5 .blog{
	text-align: left;
}
.con-5 .blog ul li{
	height: auto;
}
.con-5 .blog ul li .date{
	font-size: 90%;
}
.con-5 .blog ul li .title{
	display: block;
	font-size: 120%;
	color: #006599;
}
.con-5 .blog ul li .cat{
	background-color: #38B3DF;
	color: #fff;
	padding: 3px 5px;
	font-size: 90%;
}
.con-5 .blog ul li .text{
	width: 100%;
	font-size: 90%;
	}

.con-5 .button{
	position: absolute;
	left: 50%;
	bottom: 4%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	text-align: center;
}
.con-5 .youtube_wrap{
	width: 100%!important;
	margin: 0 auto;
}

	.youtube_wrap{
    padding-top: 56.25%;
    width: 100%;
    position: relative;
}
 
.youtube_wrap iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.con-6{
	background-color: #badaee;
	margin-left: 30%;
	margin-bottom: 80px;
}
.con-6 .wrap{
	display: flex;
	margin-left: -30%;
}
.con-6 h2{
	font-size: 38px;
	font-weight: bold;
	color: #fff;
	background-color: #006599;
	display: inline-block;
	padding: 4% 12%;
	margin-top: 37px;
}
.con-6 .left{
	width: 50%;
}
.con-6 .right{
	width: 50%;
	padding-top: 5%;
	padding-bottom: 5%;
	margin-left: -15%;
}
.con-7{
	width: 960px;
	margin: 0 auto;
}
.con-7 h2{
	font-size: 38px;
	font-weight: bold;
	margin-bottom: 20px;
}
.con-7 .img{
	width: 300px; 
	height: 200px;
	margin: 0 auto;
	background-image: url("../img/contact.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.con-7 p{
	margin-bottom: 40px;
}
.con-7 a{
	margin-bottom: 40px;
}
.pp{
	width: 960px;
	margin: 0 auto;
}
.pp a{
	font-size: 90%;
	border-bottom: solid 1px;	
}

@media (max-width: 959px) {
	main{
		padding-top: 80px;
	}
	main .wrap > div{
		width: 100%;
	}
	.swiper-slide{
		width: 100%!important;
		padding-right: 0!important;
	}
	.hero .hero-text{
		width: 60%;
		top: 70%;
	}
	.con-1 .link-box .button{
		width: 80%;
	}
	.con-2 .button{
		width: 80%;
	}
	.con-2 .wrap {
		width: 100%;
	}
	.con-3 .swiper-slide a{
		width: 100%;
	}
	.con-3 .swiper-slide a p{
		text-align: center;
	}
	.con-4 .wrap{
		width: 100%;
		padding-bottom: 5%;
	}
	.con-4 h2{
		width: 100%;
		text-align: center;
		line-height: 2;
	}
	.con-4 .border-bottom{
		display: none;
	}
	.con-5 .wrap .box{
		width: 50%;
		margin: 1%;
	}
	.con-5 .wrap{
		width: 100%;
	}
	.con-6{
		margin-left: inherit;
	}
	.con-6 .wrap{
		flex-direction: column;
		margin-left: inherit;
	}
	.con-6 .wrap div{
		width: 100%;
	}
	.con-6 .right{
		margin-left: inherit;
	}
}
@media (max-width: 799px) {
	.con-1 .wrap{
		margin-bottom: 40px;
	}
	.con-1 h2{
		font-size: 31px;
	}
	.con-1 h3{
		font-size: 21px;
	}
	.link{
		flex-direction: column;
	}
	.link .link-box{
		width: 90%;
		margin: 0 auto;
		margin-bottom: 40px;
	}
	.link .link-box p{
		text-align: center;
	}
	.link :nth-child(2) .img{
		background-position-y: -130px;
		}
	.link :nth-child(3) .img{
		background-position-y: -100px;		
	}
	.con-1 .link-box .button{
		width: 250px;
	}
	.con-2 .wrap{
		flex-direction: column;
	}
	.con-2 .wrap .img{
		width: 100%;
		height: 350px;
	}
	.con-2 .wrap .right{
		width: 100%;
		padding-left: 10%;
		padding-right: 10%;
	}
	.con-2 .button{
		width: 250px;
	}
	.con-5 iframe{
		width: 100%;
	}
}
@media (max-width: 699px) {
	.link :nth-child(2) .img{
		background-position: center;
	}
	.link :nth-child(3) .img{
		background-position: center;
	}
	.con-1 h3 span{
		display: block;
	}
	.con-4 table{
		width: 100%;
	}
	.con-5 .wrap{
		flex-direction: column;
	}
	.con-5 .wrap .box{
		width: 90%;
		margin: 0 auto;
		margin-bottom: 60px;
	}
	.con-5 .blog ul{
		margin-bottom: 40px;
	}
	.con-5 .blog ul li{
		height: auto;
	}

	.con-5 .blog ul li .cat{
		height: 2em;
		padding: 0 5px 0 5px;
		line-height: 2em;
		width: auto;
	}
	.con-5 .blog ul li .date{
		width: auto;
		margin-right: 5px;
	}
	.con-5 .blog ul li .title{
		width: 100%;
	}
	.con-5 .youtube_list{
		margin-bottom: 40px;
	}


	.youtube_wrap{
    padding-top: 56.25%;
    width: 100%;
    position: relative;
}
 
.youtube_wrap iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
	.con-5 .youtube-text-wrap{
		width: 55%!important;
		text-align: left;
		padding-left: 5px;
	}
	.con-5 .youtube-text-wrap .title{
		font-size: 120%;
	}
}
@media (max-width: 519px) {
	.hero .hero-text{
		width: 80%;
		top: 70%;
	}
	.con-1 h2{
		font-size: 21px;
	}
	.con-1 h3{
		font-size: 16px;
	}
	.con-1 .wrap{
		margin-bottom: 60px;
	}
	.con-4 table tr{
		flex-direction: column;
	}
	.con-4 table th{
		width: 100%;
		line-height: 1.5;
		text-align: center;
	}
	.con-4 table td{
		width: 100%;
	}
	.con-5 ul .youtube_list_item{
		flex-direction: column;
	}
	.con-5 iframe{
		width: 100%;
	}
	.con-5 .youtube-text-wrap{
		width: 100%!important;
	}
}

/*--------------------------------------------*/

#page-main{
	width: 960px;
	margin: 0 auto;
	padding-top: 80px;
	padding-bottom: 80px;
}
#page-main h2{
	font-size: 38px;
	font-weight: bold;
	margin-bottom: 80px;
	position: relative;
	padding-top: 20px;
}
#page-main h2:before{
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	width: 0;
	border-top: solid 4px #BADAEE;
	transform: translateX(-50%);
	animation: border_anim .2s linear forwards;
}

@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 80px;
	}
}
.title-icon{
	color: #006599;
	margin-bottom: 10px;
	animation-name: fade;
    animation-duration: 3s;

}
#page-main h3{
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	border-bottom: dotted 2px #e3e0de;
	line-height: 2.5;
	text-align: center;
	color: #006599;
}


@media (max-width: 959px) {
	#page-main{
		width: 100%!important;
		padding-top: 120px;
	}
	#page-main h3{
		font-size: 21px!important;
	}
}
@media (max-width: 799px) {
	#page-main h2{
		font-size: 31px!important;
		margin-bottom: 40px;
	}

	#page-main h3{
		font-size: 26px!important;
	}
	#page-main section .border-bottom{
		padding-left: 10px;
		padding-right: 10px;
	}
}
@media (max-width: 519px) {
	#page-main h2{
		font-size: 26px!important;
	}

	#page-main h3{
		font-size: 21px!important;
	}

}

/*------------丸山不動産鑑定事務所の強み------------*/
#strengths section{
	display: flex;
	margin-bottom: 60px;
}
#strengths section div{
	width: 50%;
	text-align: left;
	padding: 1% 3%;
}
#strengths section .img{
	height: 400px;
}
#strengths .s-1 .img{
	background-image: url(../img/strengths1.jpg);
	background-size: cover;
}
#strengths .s-2 .img{
	background-image: url(../img/strengths2.jpg);
	background-size: cover;
}
#strengths .s-3 .img{
	background-image: url(../img/strengths3.jpg);
	background-size: cover;
}
#strengths .s-2{
	flex-direction: row-reverse;
}
@media (max-width: 799px) {
	#strengths section{
		flex-direction: column-reverse;
	}
	#strengths .s-2{
		flex-direction: column-reverse;
	}
	#strengths section div{
		width: 100%!important;
	}
	#strengths section p{
		width: 90%;
		margin: 0 auto;
	}
	#strengths .s-3 .img{
		background-position: center;
	}

}
/*------------事務所概要------------*/
#company table{
	margin-bottom: 80px;
}
#company table tr, #company table th, #company table td{
	background-color: #fff;
	text-align: left;
}
#company table tr{
	border-bottom: solid 1px;
	padding-top: 2%;
	padding-bottom: 2%;
}
#company table tr:last-child{
	border-bottom: none;
}
#company table th{
	width: 28%;
}
#company table td{
	width: 75%;
}
#company table .br{
	line-height: 1.5;
}
#company .history{
	margin-bottom: 0;
	width: 100%;
}
#company .history tr{
	border: none;
	padding: 0;
	align-items: flex-start;
}
#company .history tr:not(:last-child){
	margin-bottom: 2%;
}
#company .history td{
	line-height: 1.2;
}
#company .history tr td:first-child{
	width: 30%;
}
#company .history tr td:last-child{
	width: 70%;
}

#company .map iframe{
	width: 960px;
	height: 450px;
}
@media (max-width: 959px) {
	#company .map iframe{
		width: 100%;
	}

}
@media (max-width: 799px) {
	#company  table tr{
		flex-direction: column;
		border-bottom: none;
	}
	#company table th{
		width: 100%;
		font-size: 21px;
		border-bottom: solid 1px #badaee;
		color: #006599;
		padding-left: 1%;
		font-weight: bold;
	}
	#company table td{
		width: 100%;
	}
	#company .history tr td:first-child{
	width: 100%;
}
	#company .history tr td:last-child{
	width: 100%;
		padding-left: 4%;
}
}
/*------------ご挨拶------------*/
#message .img{
	width: 250px;
	height: 300px;
	background-color: #808080;
	margin: 0 auto;
	margin-bottom: 80px;
}
#message section{
	margin-bottom: 60px;
}
#message section h3{
	border-bottom: dotted 2px #e3e0de;
	line-height: 2.5;
}
#message section p{
	text-align: left;
	width: 80%;
	margin: 0 auto;
}
#message .sign p{
	text-align: right;
}
/*------------プロフィール------------*/
#profile .s-1{
	display: flex;
	width: 80%;
	margin: 0 auto;
	margin-bottom: 60px;
}
#profile .s-1 .img{
	width: 35%;
	background-image: url(../img/profile.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-right: 20px
}
#profile .s-1 table{
	width: 65%;
	text-align: left;
	margin-bottom: 0;
	font-size: 14px;
}
#profile .s-1 table tr{
	border: none;
	background-color: #fff;
	border-bottom: solid 1px;
	border-left: solid 1px;
	border-right: solid 1px;
}
#profile .s-1 table tr:first-child{
	border-top: solid 1px;
}
#profile .s-1 table th{
	width: 20%;
	background-color: #fff;
}
#profile .s-1 table td{
	width: 80%;
	background-color: #fff;
	border-left: solid 1px;
}
#profile .s-2 .wrap{
	text-align: left;
	border-left: solid 3px;
	width: 70%;
	margin: 0 auto;
	padding-left: 40px;
	padding-bottom: 40px;
}
#profile .s-2 .wrap h3{
	margin-bottom: 80px;
	line-height: 80px;
	display: flex;
	background-color: #006599;
	margin-left: -40px;
	width: 50%;
	color: #fff;
	border-bottom: none;
	border-radius: 0 100vw 100vw 0;
}
#profile .s-2 .wrap h3:before{
	content: "";
	display: inline-block;
	height: 80px;
	width: 80px;
	border-radius: 50%;
	background-color: #badaee;
	margin-left: -41px;
	margin-right: 27px;
}
#profile .s-2 .wrap h4{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 30px;
	display: flex;
}
#profile .s-2 .wrap h4:before{
	content: "";
	display: inline-block;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background-color: #38B3DF;
	margin-left: -57px;
	margin-right: 27px;
}
#profile .s-2 .wrap .last:before{
	content: "";
	display: inline-block;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	border: solid 1px;
	background-color: #fff!important;
	margin-left: -57px;
	margin-right: 27px;
}
#profile .s-2 .wrap div{
	margin-bottom: 40px;
}
@media (max-width: 959px) {
	#profile .s-1{
		flex-direction: column;
	}
	#profile .s-1 .img{
		width: 45%;
		height: 300px;
		margin: 0 auto 40px;
	}
	#profile .s-1 table{
		width: 90%;
	}
}
@media (max-width: 799px) {
	#profile .s-2 .wrap{
		width: 85%;
	}
}
@media (max-width: 699px) {
	#profile .s-1{
		width: 95%;
	}
	#profile .s-1 table{
		width: 100%;
	}
	#profile .s-1 table th{
		width: 30%;
	}
	#profile .s-2 .wrap h3{
		width: 100%;
	}
}
@media (max-width: 519px) {
	#profile .s-1 .img{
		width: 80%;
	}
}
@media (max-width: 349px) {
	#profile .s-1 table th{
		width: 35%;
	}
}
/*------------報酬規定------------*/
#remuneration section, #case section{
	text-align: left;
	margin-bottom: 80px;
}
#remuneration .s-1, #case .s-1{
	margin-bottom: 80px;
	text-align: center;
}
#remuneration .s-1 p{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}
#remuneration .s-1 .wrap{
	display: flex;
}
#remuneration .s-1 .box{
	width: calc(100% / 3);
	font-size: 18px;
	margin: 30px;
}
#remuneration .s-1 .box div{
	height: 5em;
	line-height: 5em;
}
#remuneration .s-1 .box div:first-child{
	background-color: #006599;
	color: #fff;
}
#remuneration .s-1 .box div:last-child{
	border: solid 1px;
}
section .border-bottom{
	border-bottom: solid 1px;
	line-height: 2;
	padding-left: 80px;
	padding-right: 80px;
	text-align: left;
}
#remuneration section:not(.s-1) p, #case section:not(.s-1) p{
	padding-left: 80px;
	padding-right: 80px;
	margin-bottom: 40px;
}
#remuneration section table{
	border: solid 1px;
}
#remuneration section table tr{
	background-color: #fff;
	border: none;
	border-bottom: solid 1px;
    width: 100%;
}
#remuneration section table tr:last-of-type{
	border-bottom: none;
    display: inherit;
}
#remuneration section table th{
	background-color: #fff;
	font-weight: normal;
    padding: 2%;
    width: 40%;
}
#remuneration section table td{
	background-color: #fff;
	padding: 2%;
    width: 60%;
    border-left: solid 1px;
}
@media (max-width: 699px) {
	#remuneration .s-1 p span{
		display: block;
	}
	#remuneration .s-1 .box{
		margin: 10px;
	}
}
@media (max-width: 519px) {
	#remuneration .s-1 .wrap{
		flex-direction: column;
	}
	#remuneration .s-1 .box{
		width: 90%;
		margin: 0 auto 20px;
	}
	#remuneration section table{
		width: 90%;
	}
	#remuneration section:not(.s-1) p, #case section:not(.s-1) p{
		padding-left: 40px;
		padding-right: 40px;
	}
	#remuneration section .border-bottom{
		padding-left: 20px;
		padding-right: 20px;
	}
}
/*------------お客様別依頼例------------*/
#case .s-1 .wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#case .s-1 .wrap a{
	width: calc(100% / 4);
	border-radius: 20px;
	height: 5em;
	margin: 10px;
	line-height: 5em;
	background-color: #badaee;
	border: solid 1px #006599;
	border-bottom: solid 5px #006599;
}
#case .s-1 .wrap a:hover{
	opacity: .5;
	border-bottom: solid 1px #006599;
	transform: translateY(5px);
}
#case section p{
	font-weight: bold;
}
#case ul{
	list-style: disc;
	width: 80%;
	margin: 0 auto;
	line-height: 1.8;
	margin-bottom: 20px;
}
#case ul li{
	width: 90%;
	margin: 0 auto;
}
@media (max-width: 959px) {
	#page-main #case h3{
		padding-top: 80px;
		margin-top: -80px;
	}
}
@media (max-width: 699px) {
	#case .s-1 .wrap a{
		width: calc(100% / 3);
		margin: 20px;
	}
	}
@media (max-width: 519px) {
	#case .s-1 .wrap a{
		width: 45%;
		margin: 10px;
	}
}
@media (max-width: 399px) {
	#case .s-1 .wrap a{
		width: 80%;
	}
}
/*------------お客様の声------------*/
#voice h3{
	border-bottom: none;
}
#voice ul{
	background-color: #E9F6FF;
	padding: 3% 10%;
	border-radius: 26px;
	padding-top: 13%;
}
#voice ul li{
	background-color: #fff;
	margin-bottom: 15%;
	padding: 5%;
	border-radius: 26px;
}
#voice ul .img{
	background-color: #fff;
	width: 100px;
	height: 100px;
	display: inline-block;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50%;
	border: solid 1px;
	margin-top: -40%;
}
#voice ul .voice1 .img{
	background-image: url(../img/voice1.png);
	background-position: -3px 10px;
}
#voice ul .voice2 .img{
	background-image: url(../img/voice2.png);
	background-position: -3px 10px;
}
#voice ul .voice3 .img{
	background-image: url(../img/voice3.png);
	background-position: -1px 10px;
}
#voice ul .voice4 .img{
	background-image: url(../img/voice4.png);
	background-position: 0.8px 10px;
}
#voice ul .voice5 .img{
	background-image: url(../img/voice5.png);
	background-position: 0px 10px;
}
#voice ul li h4{
	font-size: 21px;
	font-weight: 600;
	border-bottom: solid 2px;
	margin-top: 20px;
	margin-bottom: 20px;
	line-height: 1.6;
}
#voice ul li p{
	text-align: left;
}
#v-1, #v-2, #v-3, #v-4, #v-5{
	display: block;
	padding-top: 80px;
	margin-top: -80px;
}
@media (max-width: 959px) {
#v-1, #v-2, #v-3, #v-4, #v-5{
	padding-top: 150px;
	margin-top: -150px;
}
}
@media (max-width: 799px) {
	#voice ul{
		padding-top: 15%;
	}
	#voice ul li{
		margin-bottom: 20%;
	}
}
@media (max-width: 699px) {
	#voice ul{
		padding-top: 20%;
	}
	#voice h3{
		font-size: 21px!important;
	}
	#voice ul li{
		margin-bottom: 25%;
	}
}
@media (max-width: 519px) {
	#voice h3{
		font-size: 18px!important;
	}
	#voice ul{
		padding: 1% 5%;
		padding-top: 23%;
	}
	#voice ul li{
		margin-bottom: 30%;
	}
	
}
@media (max-width: 399px) {
	#voice h3 span{
		display: block;
	}
	#voice h3{
		line-height: 1.5;
	}
	#voice ul{
		padding: 8% 5%;
		padding-bottom: 23%;
	}
	#voice ul li{
		margin-top: 35%;
		margin-bottom: 0%;
	}
}
/*------------よくある質問------------*/
#faq dl{
	text-align: left;
}
#faq dt{
	width: 80%;
	margin: 0 auto;
	margin-bottom: 20px;
}
#faq dt:before{
  	content: 'Q';
	padding: 5px 6px;
	border-radius: 50%;
	background: #38B3DF;
	color: #fff;
	margin-right: 5px;
	font-size: 120%;
}
#faq dd{
	margin-bottom: 40px;
	padding-left: 37px;
	line-height: 1.5;
	border-bottom: solid 1px #505050;
	padding-bottom: 40px;
}
#faq dd p{
	width: 80%;
	margin: 0 auto;
}
#faq dd a{
	color: #006599;
	border-bottom: solid 1px;
}
@media (max-width: 519px) {
	#faq dt{
		width: 90%;
		line-height: 1.6;
	}
	#faq dd{
		padding-left: 0;
	}
	#faq dd p{
		width: 90%;
	}
}
/*------------プライバシーポリシー------------*/
#privacy-policy p{
	text-align: left;
	margin-bottom: 20px;
}
#privacy-policy .strong{
	margin-bottom: 0;
	font-weight: bold;
}

/*------------お問い合わせ------------*/
#contact p{
	text-align: left;
	width: 80%;
	margin: 0 auto;
	margin-bottom: 40px;
}
#contact table{
	text-align: left;
}
#contact th, #contact tr, #contact td{
	background-color: inherit;
}
#contact tr{
	border-top: solid 1px #ACACAC;
	padding-top: 10px;
	padding-bottom: 10px;
}
#contact tr:last-child{
	border-bottom: solid 1px #ACACAC;
}
#contact th{
	padding-left: 10%;
}

#contact input, #contact textarea{
	background-color: #E5E5E5;
	padding: 1%;
}
#contact .consult_form_error{
	text-align: left;
	color: rgba(211,0,3,1.00);
	width: 80%;
	margin: 0 auto;
	margin-bottom: 20px;
}
#contact .required th:before{
	content: '必須';
	background-color: rgba(211,0,3,1.00);
	color: #fff;
	padding: 5px;
	font-size: 80%;
	margin-right: 5px;
}
#contact .not-required th:before{
	content: '任意';
	background-color: #ACACAC;
	color: #fff;
	padding: 5px;
	font-size: 80%;
	margin-right: 5px;
}
#contact .policy{
	text-align: center;
	font-size: 80%;
}
#contact .policy a{
	color: #006599;
	border-bottom: solid 1px;
}
#contact form .submit{
	background-color: #006599;
	padding: 20px 50px;
	color: #fff;
	font-weight: bold;
	font-size: 120%;
	border-radius: 6px;
	transition: .3s;
	width: 300px;
}
#contact form .submit:hover{
	opacity: .5;
}
#contact input{
	width: 100%;
}
#contact .input_postnum{
	width: 50%;
}
#contact textarea{
	width: 100%;
}
@media (max-width: 799px) {
	#contact th{
		padding-left: 0;
	}
}
@media (max-width: 699px) {
	#contact table th{
		width: 30%;
	}
	#contact table td{
		width: 70%;
	}
}
@media (max-width: 599px) {
	#contact tr{
		flex-direction: column;
	}
	#contact table th{
		width: 100%;
	}
	#contact table td{
		width: 100%;
	}
	#contact .input_postnum{
		width: 35%;
	}
	#contact .tel1{
		width: 45%;
	}
}
@media (max-width: 519px) {
	#contact .input_postnum{
		width: 50%;
	}
	#contact .tel1{
		width: 70%;
	}
}
/*------------thanks page------------*/
.confirmation{
	width: 80%;
	background-color: #fff4f3;
	font-size: 90%;
	padding: 2% 5%;
	margin: 0 auto;
	margin-top: 40px;
}

@media (max-width: 959px) {
	.confirmation{
		width: 80%!important;
	}
}
@media (max-width: 519px) {
	#thanks p span{
		display: block;
	}
}


/*------------footer------------*/
footer{
	background-color: #f5f1ee;
}
footer a:hover{
	opacity: .4;
}
footer .footer-menu{
	color: #333333;
	display: flex;
	justify-content: space-between;
	width: 900px;
	margin: 0 auto;
	padding-top: 3%;
	padding-bottom: 3%;
}
.footer-menu div p{
	margin-bottom: 10px;
	font-weight: 600;
}
.footer-menu div a{
	display: block;
	font-size: 85%;
	margin-bottom: 10px;
	font-weight: lighter;
	color: #006599;
}
.footer-menu .home::before {
  content: '\f015';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 5px;
}
.footer-bottom{
	text-align: center;
	background-color: #006599;
	padding-top: 3%;
	padding-bottom: 3%;
	color: #fff;
}
.footer-bottom p, .footer-bottom div{
	width: 960px;
	margin: 0 auto;
}
.footer-bottom p{
	font-size: 26px;
}
.footer-bottom .address{
	margin-top: 15px;
}
.footer-bottom div p{
	font-size: 14px;
	line-height: 1.5;
}
.reCAPTCHA{
	text-align: center;
	font-size: 12px;
	background: #006599;
	color: #fff;
}
.reCAPTCHA a{
	color: #fff;
	text-decoration: underline;
}
.copyright{
	text-align: center;
	background-color: #006599;
	padding-top: 0%;
	padding-bottom: 1%;
}
.copyright p{
	color: #fff;
	font-size: 12px;
	width: 960px;
	margin: 0 auto;
}
@media (max-width: 959px) {
	footer .footer-menu{
		width: 100%;
		padding-left: 3%;
		padding-right: 3%;
	}
	.footer-bottom p, .footer-bottom div, .copyright p{
		width: 100%;
	}
}
@media (max-width: 799px) {
	footer .footer-menu{
		flex-wrap: wrap;
		padding-left: 7%;
		padding-right: 7%;
	}
	footer .footer-menu div{
		width: 50%;
		margin-bottom: 5%;
	}
	footer .footer-menu div:first-child{
		width: 100%;
	}
	footer .footer-menu div:nth-child(2){
		width: 48%;
	}
	footer .footer-menu div:nth-child(3){
		width: 26%;
	}
	footer .footer-menu div:nth-child(4){
		width: 26%;
	}
}
@media (max-width: 599px) {
	footer .footer-menu{
		flex-direction: column;
		padding-top: 6%;
	}
	footer .footer-menu div{
		width: 100%!important;
		text-align: center;
	}
}
@media (max-width: 519px) {}
/* =========================
   報酬規定ページの表だけリセット＆再定義
   ========================= */
#remuneration section table{
  width: 90%;
  margin: 0 auto 40px;
  border-collapse: collapse;   /* セル境界を一体化 */
  border-spacing: 0;
  table-layout: fixed;
  background: #fff;
  border: 1px solid #333;      /* 外枠（不要なら消す） */
}

/* グローバルの flex/border を無効化 */
#remuneration section table tr{
  display: table-row !important;
  border: none !important;     /* 行の白い5pxボーダーを打ち消す */
  background: #fff !important;
}

#remuneration section table th,
#remuneration section table td{
  display: table-cell !important;
  border: 1px solid #333;      /* 内側の線を統一 */
  padding: 14px 16px;
  vertical-align: middle;      /* 上下中央 */
  background: #fff;
}

/* 幅の指定（必要なら） */
#remuneration section table th{ width: 40%; font-weight: normal; }
#remuneration section table td{ width: 60%; }
