@charset "utf-8";


/*　　Home / メインイメージ
-------------------------------------------------------*/
#main-img {
  position: relative;
	height: 100vh;
	max-width: 100vw;
	overflow: hidden;
}
#main-img .main-bg {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0));
	z-index: 100;
}
#main-img .main-text {
	position: absolute;
	height: 54.680vh;
	top: 16%;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 300;
}
#main-img .main-text img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: auto;
	margin: auto;
	height: 54.680vh;
}
#main-img .main-text img.img-text {
	z-index: 10;
}
#main-img .main-text img.img01 {
	z-index: 3;
	animation: fluffyFloat1 6s ease-in-out infinite;
}
#main-img .main-text img.img02 {
	z-index: 2;
	animation: fluffyFloat2 6s ease-in-out infinite;
}
#main-img .main-text img.img03 {
	z-index: 1;
	animation: fluffyFloat3 6s ease-in-out infinite;
}
/* 1つ目：ゆるやかで左右にふわふわ */
@keyframes fluffyFloat1 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(-4px, -8px) rotate(-2deg); }
  50%  { transform: translate(5px, -4px) rotate(2deg); }
  75%  { transform: translate(-3px, -6px) rotate(-1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* 2つ目：上下の動きをやや強くして軽く回転 */
@keyframes fluffyFloat2 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  20%  { transform: translate(3px, -10px) rotate(1.5deg); }
  40%  { transform: translate(-5px, -6px) rotate(-2deg); }
  60%  { transform: translate(4px, -12px) rotate(2deg); }
  80%  { transform: translate(-2px, -7px) rotate(-1.5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* 3つ目：ゆったり大きめの軌道でふわふわ */
@keyframes fluffyFloat3 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  30%  { transform: translate(-6px, -12px) rotate(-2.5deg); }
  50%  { transform: translate(6px, -8px) rotate(2deg); }
  70%  { transform: translate(-4px, -14px) rotate(-1.5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}


#main-img .main-banner {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding-top: 1.4vw;
	height: 9.5vw;
	background: linear-gradient(to right, rgba(20,137,228,0.3), rgba(70,184,134,0.3));
	z-index: 200;
}
#main-img .main-banner ul {
	width: 100%;
	gap: 0 3vw;
}
#main-img .main-banner ul li {
	width: 28.5vw;
}
#main-img .main-banner ul li a {
	display: block;
	transition-duration: 0.2s;
}
#main-img .main-banner ul li a:hover {
	transform: scale(1.05);
}
#main-img .slide-img > img {
  object-fit: cover;
  height: calc(100vh - 8px);
  width: 100%;
}
#main-img .print-img {
	display: none;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
#main-img .swiper-slide-active .slide-img,
#main-img .swiper-slide-duplicate-active .slide-img,
#main-img .swiper-slide-prev .slide-img {
  animation: zoom-out 8s linear 0s 1 normal both;
}
#main-img .swiper-slide-active .slide-text img,
#main-img .swiper-slide-duplicate-active .slide-text img,
#main-img .swiper-slide-prev .slide-text img {
  animation: img-text 8s 0s;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes img-text {
  0% {
		opacity: 1;
    transform: translateX(-50%) scale(1);
    /*　easing: ease-out; */
		easing: ease-in;
  }
	12% {
		opacity: 1;
    transform: translateX(0) scale(1);
    easing: ease-in;
  }
	70% {
		opacity: 1;
    transform: translateX(0) scale(1);
    easing: ease-in;
  }
  100% {
		opacity: 0;
    transform: translateY(60px) scale(1);
    easing: ease-in;
  }
}

.slide-text {
  content: "";
	position: absolute;
	left: 0;
	top: 40%;
	width: 50%;
	transform: translateY(-20%) translateX(0);
}
.slide-text > img {
	width: 100%;
}
.slide-img > img {
  object-fit: cover;
  height: 100vh;
  width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1270px){
#main-img {
  height: 70vh;
	margin-top: 60px;
}
#main-img .slide-img > img {
  height: 70vh;
}
#main-img .main-text img {
	height: 50vw;
}
#main-img .main-text {
	height: 50vw;
	top: 16%;
}
#main-img .main-banner {
	padding-top: 1.5vw;
	height: 13.5vw;
	z-index: 200;
}
#main-img .main-banner ul {
	width: 100%;
	gap: 0 3vw;
}
#main-img .main-banner ul li {
	width: 42vw;
}
}

@media screen and (min-width: 768px) and (max-width: 1270px) and (orientation : landscape) {
}

@media screen and (max-width: 767px){
#main-img {
  height: 152vw;
	margin-top: 60px;
}
#main-img .slide-img > img {
 height: 152vw;
}
#main-img .main-text img {
	height: 70vw;
}
#main-img .main-text {
	height: 70vw;
	top: 9%;
}

#main-img .main-banner {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px 0;
	height: auto;
	background: linear-gradient(to right, rgba(20,137,228,0.3), rgba(70,184,134,0.3));
	z-index: 200;
}
#main-img .main-banner ul {
	width: 90%;
	gap: 10px 0;
	margin: 0 auto;
}
#main-img .main-banner ul li {
	width: 100%;
}
}

@media screen and (max-width: 767px) and (orientation : landscape) {
}



/*　 Home
-------------------------------------------------------*/
.home-cont01-img01 {
	height: 103px;
	margin-bottom: 20px;
	text-align: center;
	border-radius: 8px;
	background-image: url("../images/pages/home_cnt01_img01.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.home-cont01-text01 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 103px;
	color: #fff;
	text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
	letter-spacing: 0.1em;
}
.home-cont01-title01 {
	margin-bottom: 30px;
	letter-spacing: 0.1em;
}
.home-cnt01-bg {
	padding-bottom: max(10.5vw, 210px);
	background-image: url("../images/pages/home_cnt01_bg01.png"),url("../images/pages/home_cnt01_bg02.png");
	background-repeat: no-repeat, no-repeat;
	background-position: center top, center bottom;
	background-size: 100% auto, 100% auto;
}
.home-cont01-box01 {
	position: relative;
}
.home-cont01-box01-2 {
	min-height: 500px;
	padding: 3.5vw 0;
}
.home-cont01-title02 {
	position: relative;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	background-color: #e6f2fc;
}
.home-cont01-title02::before {
	content: "";
	position: absolute;
	top: 5px;
	bottom: 5px;
	left: 5px;
	right: 5px;
	border: 2px solid #fff;
	border-radius: 8px;
}
.home-cont01-title02-sub {
	margin-bottom: 5px;
	padding: 5px;
	color: #fff;
	text-align: center;
	border-radius: 8px;
	background: #2f7ec8;
}
.home-cont01-icon01 {
	display: inline-block;
	padding-left: 85px;
	line-height: 1.5;
	text-align: left;
	background-image: url("../images/pages/home_cnt01_icon01.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 66px;
}
.home-cont01-img02 {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 48.5%;
}
.home-cont01-box02 {
	position: relative;
}
.home-cont01-box02-2 {
	min-height: 500px;
	padding: 3.5vw 0;
}
.home-cont01-title03 {
	position: relative;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	background-color: #e6f6f1;
}
.home-cont01-title03::before {
	content: "";
	position: absolute;
	top: 5px;
	bottom: 5px;
	left: 5px;
	right: 5px;
	border: 2px solid #fff;
	border-radius: 8px;
}
.home-cont01-title03-sub {
	margin-bottom: 5px;
	padding: 5px;
	color: #fff;
	text-align: center;
	border-radius: 8px;
	background: #5aab4c;
}
.home-cont01-icon02 {
	display: inline-block;
	padding-left: 85px;
	line-height: 1.5;
	text-align: left;
	background-image: url("../images/pages/home_cnt01_icon02.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 66px;
}
.home-cont01-img03 {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 48.5%;
}
.home-services-business-bg {
	background-image: url("../images/pages/home_services_business_bg.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
}
.home-services-myhome-bg {
	background-image: url("../images/pages/home_services_myhome_bg.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
}
.home-services-business-img01,
.home-services-myhome-img01 {
	position: relative;
}
.home-services-business-title01 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 5.95vw;
	line-height: 5.95vw;
	color: #fff;
	font-size: 3.5vw;
	text-align: center;
	letter-spacing: -0.03em;
	background: linear-gradient(to right, rgba(20,137,228,0.2), rgba(9,77,185,0.2));
}
.home-services-myhome-title01 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 5.95vw;
	line-height: 5.95vw;
	color: #fff;
	font-size: 3.5vw;
	text-align: center;
	letter-spacing: -0.03em;
	background: linear-gradient(to right, rgba(112,198,82,0.2), rgba(42,133,55,0.2));
}
.home-services-business-box01,
.home-services-myhome-box01 {
	border-left: 1px solid #ccc;
	margin-left: 40px;
	padding-left: 40px;
}
.home-reasons {
	background-image: url("../images/pages/home_reasons_bg.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}
.home-reasons-list {
	gap: 20px 2.5%;
}
.home-reasons-list li {
	width: 18%;
}
.home-reasons-list li:nth-child(2n){
	margin-top: 130px;
}
.home-casestudies {
	background: linear-gradient(#fff 321px,#f7f8f9 321px);
}
.casestudies-slide {
  position: relative;
  overflow: hidden;
}
.casestudies-slide .swiper {
  overflow: visible;
}
.casestudies-slide .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.casestudies-slide .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.casestudies-slide .slide {
  overflow: hidden;
  width: 280px;
}
.casestudies-slide .slide-img {
  position: relative;
  overflow: hidden;
  padding-top: 100%; /* 1:1 */
  border: 0;
  background: #fff;
}
.casestudies-slide .slide-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.casestudies-slide p {
  margin-top: 10px;
}
.home-faq-bg {
	padding: 80px 0;
	background-image: url("../images/pages/home_faq_bg.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 2000px auto;
}
@media screen and (min-width: 2001px){
.home-faq-bg {
	background-size: 100% auto;
}
}
.home-faq-q {
	position: relative;
	margin-bottom: 10px;
	padding-left: 48px;
}
.home-faq-q::before {
	content: "Q";
	position: absolute;
	top: 0;
	left: 0;
	width: 38px;
	height: 38px;
	line-height: 1.3;
	color: #ff9900;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	border-radius: 8px;
	border: 2px solid #ff9900;
}
.home-faq-a {
	padding-left: 48px;
}
.home-voice-text01 {
	position: relative;
	margin-bottom: 10px;
	padding-left: 48px;
}
.home-voice-text01::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 38px;
	height: 38px;
	line-height: 1.3;
	color: #ff9900;
	font-weight: 700;
	text-align: center;
	border-radius: 8px;
	border: 2px solid #ef8bb0;
	background-image: url("../images/common/icon_voice.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px auto;
}
.home-voice-text02 {
	padding-left: 48px;
}

@media screen and (min-width: 768px) and (max-width: 1270px){
.home-cont01-img01 {
	height: 75px;
}
.home-cont01-text01 {
	font-size: 1.6rem;
	line-height: 75px;
}
.home-cnt01-bg {
	padding-bottom: 100px;
	background-position: center top 33%, center bottom;
}
.home-cont01-box01-2 {
	min-height: 0;
}
.home-cont01-box02-2 {
	min-height: 0;
}
.home-cont01-icon01 {
	padding-left: 65px;
	background-size: 50px;
}
.home-cont01-icon02 {
	padding-left: 65px;
	background-size: 50px;
}
.home-services-business-bg {
	background-position: bottom 15% center;
}
.home-services-business-box01,
.home-services-myhome-box01 {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
	border-top: 1px solid #ccc;
	margin-top: 30px;
	padding-top: 30px;
}
.home-services-myhome-bg {
	background-position: bottom 35% center;
}
.home-reasons-list li:nth-child(2n){
	margin-top: 80px;
}
.home-casestudies {
	background: linear-gradient(#fff 220px,#f7f8f9 220px);
}
.casestudies-slide .slide {
  width: 180px;
}
.home-faq-bg {
	padding: 80px 0 60vw;
	background-image: url("../images/pages/home_faq_bg.jpg");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 140% auto;
}
.home-faq-q {
	padding-left: 40px;
}
.home-faq-q::before {
	width: 30px;
	height: 30px;
	font-size: 1.8rem;
}
.home-faq-a {
	padding-left: 40px;
}
}

@media screen and (max-width: 767px){
.home-cont01-img01 {
	height: 60px;
}
.home-cont01-text01 {
	font-size: 1.4rem;
	line-height: 60px;
}
.home-cnt01-bg {
	padding-bottom: 80px;
	background-image: none, none;
}
.home-cont01-box01-2 {
	min-height: 0;
	padding: 20px 0 0;
}
.home-cont01-box02-2 {
	min-height: 0;
	padding: 20px 0 0;
}
.home-cont01-img02 {
	position: relative;
	top: 0;
	bottom: auto;
	left: 0;
	width: 100%;
	height: 50vw;
}
.home-cont01-img03 {
	position: relative;
	top: 0;
	bottom: auto;
	right: 0;
	width: 100%;
	height: 50vw;
}
.home-cont01-icon01 {
	padding-left: 65px;
	background-size: 50px;
}
.home-cont01-icon02 {
	padding-left: 65px;
	background-size: 50px;
}
.home-services-business-bg {
	background-image: none;
}
.home-services-business-box01,
.home-services-myhome-box01 {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
	border-top: 1px solid #ccc;
	margin-top: 30px;
	padding-top: 30px;
}
.home-services-business-title01 {
	position: relative;
	height: 12vw;
	line-height: 12vw;
	font-size: 5vw;
	background: linear-gradient(to right, rgba(20,137,228,1), rgba(9,77,185,1));
}
.home-services-myhome-title01 {
	position: relative;
	height: 12vw;
	line-height: 12vw;
	font-size: 5vw;
	background: linear-gradient(to right, rgba(112,198,82,1), rgba(42,133,55,1));
}
.home-services-myhome-bg {
	background-image: none;
}
.home-reasons {
	background-image: url("../images/pages/home_reasons_bg.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 150% auto;
}
.home-reasons-list {
	gap: 20px 3.33%;
}
.home-reasons-list li {
	width: 30%;
}
.home-reasons-list li:nth-child(2n){
	margin-top: 0;
}
.home-reasons-list li:nth-child(2){
	margin-top: 30px;
}
.home-reasons-list li:nth-child(3){
	margin-top: 60px;
}
.home-reasons-list li:nth-child(4){
	margin-top: -30px;
}
.home-reasons-list li:nth-child(5){
}
.home-casestudies {
	background: linear-gradient(#fff 210px,#f7f8f9 210px);
}
.casestudies-slide .slide {
  width: 180px;
}
.home-faq-bg {
	padding: 80px 0 65vw;
	background-image: url("../images/pages/home_faq_bg.jpg");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 170% auto;
}
.home-faq-q {
	padding-left: 40px;
}
.home-faq-q::before {
	width: 30px;
	height: 30px;
	font-size: 1.8rem;
}
.home-faq-a {
	padding-left: 40px;
}
}



/*　　ページタイトルイメージ / パンクズ / ページナビ
-------------------------------------------------------*/
.page-image-box {
	padding-top: 80px;
}
.page-header {
	position: relative;
	height: 20vw;
	overflow: visible;
}
.page-title {
	position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	width: min(100%, 700px);
	color: #fff;
	line-height: 1;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	text-shadow: 3px 3px 8px rgba(0,0,0,0.3);
}
.page-title-en {
	position: absolute;
	bottom: -0.7vw;
	left: 0;
	right: 0;
	color: #f7f8f9;
	font-size: 6vw;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	text-shadow: 3px 3px 8px rgba(0,0,0,0.15);
}
.pankuzu {
	padding: 12px 0;
	font-size: 1.2rem;
	color: #666;
	background: #f7f8f9;
}
.pankuzu.no-bg {
	background: transparent;
}
.pankuzu .icon-home {
	padding-left: 20px;
	background-image: url("../images/common/icon_home.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 15px auto;
}
.pankuzu span {
	margin: 3px;
}
.pankuzu span:first-child {
	margin-left: 0;
}
.pankuzu a {
	color: #666;
}
.pankuzu a:hover {
	color: #2b52d4;
	text-decoration: underline;
}


@media screen and (min-width: 768px) and (max-width: 1270px){
.page-image-box {
	padding-top: 60px;
}
.page-header {
	height: 26vw;
}
.page-title {
	width: 70%;
	font-size: 2.4rem;
}
.page-title-en {
	bottom: -0.9vw;
	font-size: 8vw;
}
.pankuzu {
	padding: 8px 0;
	font-size: 1rem;
}
}

@media screen and (max-width: 767px){
.page-image-box {
	padding-top: 60px;
}
.page-header {
	height: 30vw;
}
.page-title {
	width: 85%;
	font-size: 1.8rem;
}
.page-title-en {
	bottom: -1vw;
	font-size: 9.5vw;
}
.pankuzu {
	padding: 8px 0;
	font-size: 1rem;
}
}



/*　　お知らせ
-------------------------------------------------------*/
.news-category-list {
	width: 100%;
	padding-bottom: 30px;
	border-bottom: 1px solid #dedede;
}
.news-category-list li a {
	display: inline-block;
	margin-right: 10px;
	padding: 3px 15px 3px 30px;
	color: #282828;
	border-radius: 50px;
	background-color: #e2e4e6;
	background-image: url("../images/common/icon_category.png");
	background-repeat: no-repeat;
	background-position: left 12px top 9px;
	background-size: 15px auto;
}
.news-category-list li a:hover {
	color: #282828;
	background-color: #c8dbee;
}
.news-category-list li.all-news a {
	padding: 2px 14px 2px 14px;
	border: 1px solid #ccc;
	background-image: none;
	background-color: #fff;
}
.news-category-list li.all-news a:hover {
	color: #282828;
	background-color: #c8dbee;
}
.news-box {
	border-bottom: 1px solid #ccc;
}
.news-list li a {
	display: block;
	color: #282828;
}
.news-list li a:hover {
	color: #2b52d4;
	text-decoration: underline;
}
.news-list li a img {
	transition-duration: 0.2s;
}
.news-list li a:hover img {
	transform: scale(1.15);
}
.news-thumbnail {
	overflow: hidden;
}
.news-list-date {
	margin-top: 10px;
	font-size: 1.4rem;
}
.news-list-txt01 {
	margin-top: 5px;
	font-weight: 700;
	line-height: 1.5;
}
.news-detail-box01 {
	border-bottom: 1px dotted #ccc;
}
.news-detail-thumbnail {
	width: 200px;
	margin-right: 30px;
	overflow: hidden;
}
.news-detail-txt {
	flex: 1;
}
.news-img01 {
	margin-top: 50px;
	padding-bottom: 50px;
	border-bottom: 1px dotted #ccc;
}
.news-detail-img01 {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px dotted #ccc;
	text-align: center;
}
.news-detail-content ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 20px;
}
.news-detail-content ol {
  list-style-type: decimal;
  list-style-position: outside;
  margin-left: 20px;
}
.news-detail-content blockquote {
	font-style: italic;
	font-size: 1.6rem;
}


.news-detail-content h1 {
	margin-top: 2em;
	color: #282828;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.5;

	padding-left: 15px;
	border-left: 5px solid #ffcc00;
}
.news-detail-content h2 {
	margin-top: 2em;
	color: #282828;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
	
	padding-left: 15px;
	border-left: 5px solid #ffcc00;
}

.news-detail-content h3 {
	margin-top: 2em;
	color: #282828;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}
.news-detail-content h4 {
	margin-top: 2em;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	color: #282828;
}
.news-detail-content h5,
.news-detail-content h6 {
	margin-top: 2em;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	color: #282828;
}	
.news-detail-content p {
	margin-top: 20px;
}
.news-detail-content ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 20px;
}
.news-detail-content ol {
  list-style-type: decimal;
  list-style-position: outside;
  margin-left: 20px;
}
.news-detail-content a:hover {
	text-decoration: underline;
}

@media screen and (min-width: 768px) and (max-width: 1270px){
.news-category-list li a {
	margin-right: 5px;
	padding: 3px 12px 3px 28px;
	background-position: left 12px top 8px;
	background-size: 14px auto;
}
.news-category-list li.all-news a {
	padding: 2px 12px 2px 12px;
}
.news-list-date {
	font-size: 1.2rem;
}
.news-list-txt01 {
	font-size: 1.2rem;
}
.news-detail-thumbnail {
	width: 160px;
}
.news-img01 {
	margin-top: 30px;
	padding-bottom: 30px;
}
.news-detail-content h1 {
	font-size: 2.4rem;
	padding-left: 10px;
}
.news-detail-content h2 {
	font-size: 1.8rem;
	padding-left: 10px;
}
.news-detail-content h3 {
	font-size: 1.6rem;
}
.news-detail-content h4 {
	font-size: 1.6rem;
}
.news-detail-content h5,
.news-detail-content h6 {
	font-size: 1.6rem;
}
}

@media screen and (max-width: 767px){
.news-category-list li a {
	margin-right: 5px;
	padding: 3px 12px 3px 28px;
	background-position: left 12px top 8px;
	background-size: 14px auto;
}
.news-category-list li.all-news a {
	padding: 2px 12px 2px 12px;
}
.news-category-select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	height: 40px;
	font-size: 1.6rem;
	line-height:1.6;
	padding: 3px 10px;
	color: #282828;
	border: 1px solid #ccc;
	border-radius: 8px;
	background-color: #fff;
	background-image: url("../images/common/arrow_select_menu.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 10px auto;
}
.news-list-date {
	font-size: 1.2rem;
}
.news-list-txt01 {
	font-size: 1.2rem;
}
.news-detail-thumbnail {
	width: 70%;
	margin: 0 auto 20px;
}
.news-detail-txt {
	width: 100%;
}
.news-img01 {
	margin-top: 30px;
	padding-bottom: 30px;
}
.news-detail-img01 {
	margin-top: 30px;
	padding-top: 30px;
}
.news-detail-content h1 {
	font-size: 2.2rem;
	padding-left: 10px;
}
.news-detail-content h2 {
	font-size: 1.8rem;
	padding-left: 10px;
}
.news-detail-content h3 {
	font-size: 1.6rem;
}
.news-detail-content h4 {
	font-size: 1.6rem;
}
.news-detail-content h5,
.news-detail-content h6 {
	font-size: 1.5rem;
}
}



/*　　選ばれる理由
-------------------------------------------------------*/
.reasons-detail-box {
	padding: 15px;
	border: 1px solid #dedede;
	border-radius: 8px;
}
.reasons-detail-img {
	width: 35%;
	margin-right: 5%;
}
.reasons-detail-text {
	width: 60%;
}
.reasons-detail-num {
	display: inline-block;
	padding: 3px 30px;
	margin-right: 10px;
	color: #fff;
	text-align: center;
	border-radius: 50px;
	background: #ff9900;
}

@media screen and (min-width: 768px) and (max-width: 1270px){
}

@media screen and (max-width: 767px){
.reasons-detail-img {
	width: 100%;
	margin-right: 0;
}
.reasons-detail-num {
	display: block;
	margin: 0 0 10px 0;
}
.reasons-detail-text {
	width: 100%;
}
}



/*　　賃貸物件オーナー様向けサービス
-------------------------------------------------------*/
.owner-service-bg {
	background-image: url("../images/pages/home_services_business_bg.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
}
.owner-strengths-num {
	display: inline-block;
	margin-right: 10px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	font-weight: 700;
	text-align: center;
	border-radius: 8px;
	background: #2f7ec8;
}
.owner-services {
	padding: 15px;
	border: 1px solid #dedede;
	background: rgba(255,255,255,0.7);
}

@media screen and (min-width: 768px) and (max-width: 1270px){
.owner-service-bg {
	background-position: top 23% center;
}
}

@media screen and (max-width: 767px){
.owner-service-bg {
	background-image: none;
}
}



/*　　マイホームのお客様向け
-------------------------------------------------------*/
.myhome-service-bg {
	background-image: url("../images/pages/home_services_myhome_bg.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
}
.myhome-services {
	padding: 15px;
	border: 1px solid #dedede;
	background: rgba(255,255,255,0.7);
}
.myhome-plan-img {
	border: 8px solid #e5e6f0;
	border-radius: 15px;
}
.myhome-plans-num {
	display: inline-block;
	margin-right: 10px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	font-weight: 700;
	text-align: center;
	border-radius: 8px;
	background: #5aab4c;
}

@media screen and (min-width: 768px) and (max-width: 1270px){
.myhome-service-bg {
	background-position: top 23% center;
}
}

@media screen and (max-width: 767px){
.myhome-service-bg {
	background-image: none;
}
}



/*　　よくあるご質問
-------------------------------------------------------*/
.faq-box dt {
	display: block;
	position: relative;
	padding: 15px 60px 15px 60px;
	color: #282828;
	border: 1px solid transparent;
	border-radius: 8px;
	background-color: #f7f8f9;
	background-image: url("../images/common/icon_faq_toggle01.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 20px;
	cursor: pointer;
}
.faq-box dt::before {
	content: "Q";
	position: absolute;
	top: 12px;
	left: 12px;
	width: 38px;
	height: 38px;
	line-height: 1.3;
	color: #ff9900;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	border-radius: 8px;
	border: 2px solid #ff9900;
	background: #fff;
}
.faq-box dt:hover {
	color: #282828;
	background-color: #eaecee;
}
.faq-box dt.active {
	color: #282828;
	border: 1px solid #ccc;
	border-radius: 8px 8px 0 0;
	background-image: url("../images/common/icon_faq_toggle02.png");
	background-position: right 10px center;
}
.faq-box dd {
	position: relative;
	display: none;
	padding: 15px 20px 20px 60px;
	border: 1px solid #ccc;
	border-top: 0;
	border-radius: 0 0 8px 8px;
}
.faq-box dd::before {
	content: "A";
	position: absolute;
	top: 12px;
	left: 12px;
	width: 38px;
	height: 38px;
	line-height: 1.3;
	color: #013b96;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	border-radius: 8px;
	border: 2px solid #013b96;
	background: #fff;
}

@media screen and (min-width: 768px) and (max-width: 1270px){
.faq-box dt {
	padding: 15px 50px 15px 50px;
}
.faq-box dt::before {
	top: 14px;
	width: 30px;
	height: 30px;
	font-size: 1.8rem;
}
.faq-box dd {
	padding: 15px 15px 15px 50px;
}
.faq-box dd::before {
	width: 30px;
	height: 30px;
	font-size: 1.8rem;
}
}

@media screen and (max-width: 767px){
.faq-box dt {
	padding: 15px 40px 15px 50px;
}
.faq-box dt::before {
	top: 14px;
	width: 30px;
	height: 30px;
	font-size: 1.8rem;
}
.faq-box dd {
	padding: 15px 15px 15px 50px;
}
.faq-box dd::before {
	width: 30px;
	height: 30px;
	font-size: 1.8rem;
}
}



/*　　施工事例紹介
-------------------------------------------------------*/
.casestudies-bg {
	background-image: url("../images/pages/home_reasons_bg.png");
	background-repeat: no-repeat;
	background-position: top 100px center;
	background-size: 100% auto;
}
.casestudies-main {
	width: 74.166%;
}
.casestudies-swiper-box {
	position: relative;
	margin: 0;
	padding: 30px;
	border: 1px solid #dedede;
	background: rgba(255,255,255,0.8);
}
.casestudies-swiper-box02 {
	position: relative;
}
.casestudies-swiper-box .swiper {
width: 100%;
height: 100%;
}
.casestudies-swiper-box .swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
}
.casestudies-swiper-box .swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
.casestudies-swiper-box .swiper {
width: 100%;
height: 300px;
margin-left: auto;
margin-right: auto;
}
.casestudies-swiper-box .swiper-slide {
background-size: cover;
background-position: center;
}
.casestudies-swiper-box .mySwiper2 {
height: 80%;
width: 85%;
}
.casestudies-swiper-box .mySwiper {
margin-top: 20px;
height: 20%;
box-sizing: border-box;
padding: 10px 0;
}
.casestudies-swiper-box .mySwiper .swiper-slide {
width: 25%;
height: 100%;
opacity: 0.4;
cursor: pointer;
}
.casestudies-swiper-box .mySwiper .swiper-slide-thumb-active {
opacity: 1;
}
.casestudies-swiper-box .swiper-slide img {
display: block;
width: 100%;
height: 100%;
max-height: 600px;
object-fit: cover;
}
.casestudies-swiper-box .swiper-button-prev {
	left: -10px;
}
.casestudies-swiper-box .swiper-button-next {
	right: -10px;
}
.casestudies-swiper-box .swiper-button-prev::after,
.casestudies-swiper-box .swiper-button-next::after {
  color: #999;
  font-size: 30px !important;
}
.casestudies-swiper-box .swiper-button-prev:hover::after,
.casestudies-swiper-box .swiper-button-next:hover::after {
  color: #2b52d4;
}
.casestudies-detail-category li {
	display: inline-block;
	padding-left: 21px;
	margin-right: 20px;
	background-image: url("../images/common/icon_label.png");
	background-repeat: no-repeat;
	background-position: left top 6px;
	background-size: 16px auto;
}
.casestudies-list li {
	padding: 15px;
	line-height: 1.4;
	border: 1px solid #dedede;
	background: rgba(255,255,255,0.8);
}
.casestudies-list li figure {
	display: block;
	position: relative;
	width: 100%;
	padding-top: 75%;
	margin-bottom: 10px;
}
.casestudies-list li figure a {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
}
.casestudies-list li figure a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  object-position: center;
}
.casestudies-photo-box li figure {
	position: relative;
	border: 1px solid #dedede;
	width: 100%;
	padding-top: 75%;
}
.casestudies-photo-box li figure a {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
}
.casestudies-photo-box li figure a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
  object-position: center;
}
.casestudies-heading {
	padding-bottom: 5px;
	border-bottom: 1px solid #dedede;
}
.casestudies-photo-box li:hover {
	opacity: 0.7;
}

.casestudies-sub {
	width: 20.833%;
	padding-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
}
.casestudies-cate-heading {
	padding: 10px 10px 10px 50px;
	color: #fff;
	background-color: #013b96;
	background-image: url("../images/common/icon_search.png");
	background-repeat: no-repeat;
	background-position: left 15px center;
	background-size: 24px auto;
}
.casestudies-cate-list {
	padding: 10px;
}
.casestudies-cate-list li {
	padding: 5px 0;
	border-bottom: 1px dotted #ccc;
}
.casestudies-cate-list li a {
	display: block;
	padding: 5px 5px 5px 30px;
	color: #282828;
	background-image: url("../images/common/icon_label.png");
	background-repeat: no-repeat;
	background-position: left 5px top 10px;
	background-size: 16px auto;
}
.casestudies-cate-list li a:hover {
	color: #2b52d4;
	background-color: #fff;
}

@media screen and (min-width: 768px) and (max-width: 1270px){
.casestudies-main {
	width: 100%;
	margin-bottom: 50px;
}
.casestudies-sub {
	width: 100%;
}
.casestudies-cate-list {
	display: flex;
  flex-wrap: wrap;
	padding: 10px;
}
.casestudies-cate-list li {
	width: calc(90% / 2);
	margin-right: 5%;
	padding: 5px 0;
	border-bottom: 1px dotted #ccc;
}
.casestudies-cate-list li a {
	padding: 5px 5px 5px 26px;
	background-size: 14px auto;
}
}

@media screen and (max-width: 767px){
.casestudies-main {
	width: 100%;
	margin-bottom: 50px;
}
.casestudies-swiper-box {
	padding: 15px;
}
.casestudies-swiper-box .swiper-button-prev::after,
.casestudies-swiper-box .swiper-button-next::after {
  font-size: 20px !important;
}
.casestudies-list li {
	padding: 10px;
}

.casestudies-sub {
	width: 100%;
}
.casestudies-cate-list {
	display: flex;
  flex-wrap: wrap;
	padding: 10px;
}
.casestudies-cate-list li {
	width: calc(90% / 2);
	margin-right: 5%;
	padding: 5px 0;
	border-bottom: 1px dotted #ccc;
}
.casestudies-cate-list li a {
	padding: 5px 5px 5px 26px;
	background-size: 14px auto;
}
}



/*　　ご相談から保証対応まで
-------------------------------------------------------*/
.voices-bg {
	background-image: url("../images/pages/voices_bg01.png");
	background-repeat: repeat;
	background-position: top center;
	background-size: 2000px auto;
}
.voices-box {
	padding: 30px;
	margin: auto;
	border-radius: 8px;
	background: #f7f8f9;
}
.voices-box02 {
	padding: 40px;
	border: 1px solid #dedede;
	border-radius: 8px;
	background: #fff;
}
.voices-text01 {
	display: inline-block;
	padding: 3px 20px;
	margin-right: 10px;
	color: #fff;
	border-radius: 8px;
	background: #ef8bb0;
}
.voices-icon-customer {
	display: block;
	width: fit-content;
	margin-left: auto;
	padding-left: 32px;
	min-height: 24px;
	color: #999;
	background-image: url( "../images/common/icon_customer.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 24px auto;
}
.voices-icon-customer span {
	padding-right: 5px;
}

@media screen and (min-width: 768px) and (max-width: 1270px){
.voices-bg {
	background-image: none;
}
.voices-box {
	padding: 3%;
}
.voices-box02 {
	padding: 20px;
}
.voices-icon-customer {
	padding-left: 28px;
	min-height: 20px;
	background-size: 20px auto;
}
}

@media screen and (max-width: 767px){
.voices-bg {
	background-image: none;
}
.voices-box {
	padding: 0;
	background: transparent;
}
.voices-box02 {
	padding: 15px;
}
.voices-text01 {
	padding: 3px 10px;
}
.voices-icon-customer {
	padding-left: 28px;
	min-height: 20px;
	background-size: 20px auto;
}
}



/*　　ご相談から保証対応まで
-------------------------------------------------------*/
.flow-detail-box {
	position: relative;
	padding: 15px;
	border: 1px solid #dedede;
	border-radius: 8px;
}
.flow-detail-box::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -40px;
	left: 0;
	right: 0;
	margin: auto;
	width: 80px;
	height: 49px;
	background-color: #fff;
	background-image: url("../images/common/flow_arrow.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 60px auto;
}
.flow-detail-box:last-child::after {
	display: none;
}
.flow-detail-img {
	width: 35%;
	margin-right: 5%;
}
.flow-detail-text {
	width: 60%;
}
.flow-detail-num {
	display: inline-block;
	padding: 3px 30px;
	margin-right: 10px;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	border-radius: 50px;
	background: #ff9900;
}

@media screen and (min-width: 768px) and (max-width: 1270px){
.flow-detail-box::after {
	bottom: -20px;
	width: 50px;
	height: 22px;
	background-size: 30px auto;
}
}

@media screen and (max-width: 767px){
.flow-detail-box::after {
	bottom: -20px;
	width: 50px;
	height: 22px;
	background-size: 30px auto;
}
.flow-detail-img {
	width: 100%;
	margin-right: 0;
}
.flow-detail-num {
	display: block;
	margin: 0 0 10px 0;
}
.flow-detail-text {
	width: 100%;
}
}



/*　　会社概要
-------------------------------------------------------*/
.company-logo {
	width: 80%;
	margin: auto;
	padding: 50px 10px;
	border-top: 1px solid #013b96;
	border-bottom: 1px solid #013b96;
}
.company-logo img {
	display: block;
	width: 350px;
	margin: auto;
}
.company-access-map {
	height: 500px;
	padding: 8px;
	background: #f7f8f9;
}
.company-access-map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1270px){
.company-logo {
	width: 80%;
	padding: 30px 10px;
}
.company-logo img {
	width: 60%;
}
}

@media screen and (max-width: 767px){
.company-logo {
	width: 80%;
	padding: 30px 10px;
}
.company-logo img {
	width: 90%;
}
}



/*　　wpプラグイン ページナビ
-------------------------------------------------------*/
.wp-pagenavi {
	clear: both;
	padding: 10px 0 !important;
	text-align: center !important;
	background-color: transparent;
}
.wp-pagenavi a, .wp-pagenavi span {
	display: inline-block;
	text-decoration: none;
	border: 1px solid #dedede !important;
	border-radius: 6px !important;
	padding: 4px 14px !important;
	margin: 4px !important;
  color: #282828 !important;
	font-family: 'Barlow', sans-serif;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
	border-color: #999 !important;
}
.wp-pagenavi a:hover {
	color: #282828 !important;
	border: 1px solid #ccc !important;
	background-color: #f5f6f8 !important;
}
.wp-pagenavi span.current {
	font-weight: 700 !important;
	color: #fff !important;
	border: 1px solid #666 !important;
  background-color: #666 !important;
}
.wp-pagenavi .extend {
	display: none;
}
.wp-pagenavi .pages {
	background: #f7f8f9;
}

@media screen and (min-width: 768px) and (max-width: 1270px){
.wp-pagenavi {
	padding: 0 !important;
}
.wp-pagenavi a, .wp-pagenavi span {
	padding: 6px 15px !important;
	margin: 3px !important;
}
}

@media screen and (max-width: 767px){
.works-pagenav {
	margin: 40px auto !important;
}
.wp-pagenavi {
	padding: 0 !important;
}
.wp-pagenavi a, .wp-pagenavi span {
	padding: 2px 8px !important;
	margin: 2px !important;
}
}


