@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;
	text-align: center;
	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: 0.9vw;
	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: 1vw;
	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-image {
	position: relative;
	height: 20vw;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}
.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: #fff;
	font-size: 6vw;
	font-weight: 700;
	text-align: center;
	line-height: 1;
}
.pankuzu {
	padding: 8px 0;
	font-size: 1.2rem;
	background: #f7f8f9;
}
.pankuzu.no-bg {
	background: transparent;
}
.pankuzu {
	color: #666;
}
.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-image {
	height: 26vw;
}
.page-title {
	width: 70%;
	font-size: 2.4rem;
}
.page-title-en {
	bottom: -0.9vw;
	font-size: 8vw;
}
.page-index-image {
	background-repeat: no-repeat;
	background-position: left top 60px;
	background-size: 40.5vw auto;
}
.pankuzu {
	font-size: 1rem;
}
}

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



/*　　お知らせ
-------------------------------------------------------*/
.news-category-list {
	margin-top: 10px;
}
.news-category-list li {
	margin: 10px 30px 0 0;
	padding-left: 26px;
	background-image: url("../images/common/icon_category.png");
	background-repeat: no-repeat;
	background-position: left top 6px;
	background-size: 20px auto;
}
.news-box {
	border-bottom: 1px solid #ccc;
}
.news-list li {
	margin-bottom: 60px;
}
.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;
}

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

.news-list li {
	margin-bottom: 30px;
}
.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-list li {
	margin-bottom: 30px;
}
.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;
}
}



/*　　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: "Roboto", 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;
}
}


