@charset "UTF-8";



/*----------------------------------------------------
   ●●
----------------------------------------------------*/

/* --------  768〜　PC調整   --------*/
@media screen and ( min-width:768px) {
}
/* --------  〜767　スマホ調整   --------*/
@media screen and ( max-width:767px) {
}



/*----------------------------------------------------
   スライダー
----------------------------------------------------*/
/* 大枠 */
#main-slider {
	overflow: hidden;
	position: relative;
}
/*  */
#main-slider .slider.slick-slider {
	margin-bottom: 0;
	position: relative;
	line-height: 0;
}
/* スライダー（背景画像設定） */
#main-slider .slider .slick-list li p {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
}

/* 矢印を囲む枠の位置設定 */
#main-slider .slider-arrow {
	width: 100%;
	max-width: 1000px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
/* 矢印のサイズ */
#main-slider .slider-arrow .slick-prev,
#main-slider .slider-arrow .slick-next {
	width: 65px;
	height: 65px;
}
/* 矢印の位置 */
#main-slider .slider-arrow .slick-prev {
	left: 5px;
}
#main-slider .slider-arrow .slick-next {
	right: 5px;
}
/* 矢印の画像の設定をリセット */
#main-slider .slider-arrow .slick-arrow:before {
	content:""!important;
	width: 100%!important;
	height: 100%!important;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
	background: url("../img/arrow.svg")!important;
	background-size: contain!important;
}
/* 矢印ホバー */
#main-slider .slider-arrow .slick-arrow:hover:before {
	opacity: .8;
}
/* 矢印の画像を反転（前へ） */
#main-slider .slider-arrow .slick-prev:before {
	-moz-transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform:rotateY(180deg);  /* Y軸を基準点に回転する */
}

/* --------  768〜　PC調整   --------*/
@media screen and ( min-width:1000px) {
/* スライダーの個別枠 */
#main-slider .slick-slide {
    margin: 0;
	width: 100%;
	max-width: 1000px;
}
/* 中央に表示されている画像以外の画像を透過 */
#main-slider .slick-slide:not(.slick-center) p {
    -webkit-filter: opacity(50%);
    -moz-filter: opacity(50%);
    -o-filter: opacity(50%);
    -ms-filter: opacity(50%);
    filter: opacity(50%);
    transition: 0.2s linear;
}
/* スライダー画像の高さを設定 */
#main-slider .slider .slick-list li p {
	height: 600px;
}
/* ホバー */
#main-slider .slider .slick-list li a p {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
#main-slider .slider .slick-list li a:hover p {
	filter:Alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
}
}
/* --------  〜767　スマホ調整   --------*/
@media screen and ( max-width:999px) {
#main-slider .slider .slick-list li p {
	height: 450px;
}
}
/* --------  〜767　スマホ調整   --------*/
@media screen and ( max-width:767px) {
#main-slider .slider .slick-list li p,
#main-slider .slider .slick-list .slick-slide {
	height: 240px;
	overflow: hidden;
}
/* 矢印のサイズ */
#main-slider .slider-arrow .slick-prev,
#main-slider .slider-arrow .slick-next {
	width: 45px;
	height: 45px;
}
}




/*----------------------------------------------------
   sec 基本設定
----------------------------------------------------*/
.sec {
	background-color: #FFF;
	position: relative;
	z-index: 50;
}
.sec .w-inner {
	position: relative;
	z-index: 50;
}
.sec:before {
	content: "";
	display: inline-block;
	border-radius: 50% / 100% 100% 0 0;
	background: #FFF;
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	transform: translate(-50%,0);
	z-index: 40;
}
/* --------  768〜　PC調整   --------*/
@media screen and ( min-width:768px) {
.sec {
	padding: 30px 0 120px;
}
.sec:before {
	width: 450px;
	height: 100px;
	top: -50px;
}
}
/* --------  〜767　スマホ調整   --------*/
@media screen and ( max-width:767px) {
.sec {
	padding: 20px 0 50px;
}
.sec:before {
	width: 80%;
	max-width: 280px;
	height: 100px;
	top: -20px;
}
}




/*----------------------------------------------------
   重要なお知らせ
----------------------------------------------------*/
#important-news {
	background-color: #fff3f2;
}
#important-news:before {
	background: #fff3f2;
}
#important-news .sec-title {
	color: #fe7758;
}
#important-news .sec-title .important-news-icon {
	color: #fe7758;
	background-color: #FFF;
	border: solid 2px #fe7758;
	width: 45px;
	height: 45px;
	text-align: center;
	border-radius: 50%;
	margin: 0 auto 5px;
	box-sizing: border-box;
}
#important-news .sec-title .important-news-icon span {
	font-weight: 600;
}
/* --------  768〜　PC調整   --------*/
@media screen and ( min-width:768px) {
#important-news {
	padding-left: 20px;
	padding-right: 20px;
}
#important-news .important-news-list li {
	margin-bottom: 1.5em;
}
#important-news .important-news-list li a {
	font-size: 17px;
	display: block;
	border-bottom: solid 1px #000;
	padding-bottom: 5px;
	padding-left: 10em;
	position: relative;
}
#important-news .important-news-list li a span {
	position: absolute;
	left: 0;
	top: 0;
}
#important-news .important-news-list li a:hover {
	color: #fe7758;
	border-bottom: solid 1px #fe7758;
}
}
/* --------  〜767　スマホ調整   --------*/
@media screen and ( max-width:767px) {
#important-news .sec-title .important-news-icon,
#important-news .sec-title .important-news-icon span {
	font-size: 26px!important;
}
#important-news .important-news-list {
	width: 92%;
	margin-left: auto;
	margin-right: auto;
}
#important-news .important-news-list li {
	margin-bottom: 1em;
}
#important-news .important-news-list li a {
	font-size: 14px;
	display: block;
	border-bottom: solid 1px #000;
	padding-bottom: 1em;
}
#important-news .important-news-list li a span {
	display: block;
	margin-bottom: 5px;
}
}


/*----------------------------------------------------
   サービス（メインボタン）
----------------------------------------------------*/
.service-list li {
	position: relative;
	padding: 0 10px 10px 0;
	box-sizing: border-box;
	-ms-flex-item-align: center;
	align-self: center;
}
.service-list li:before {
	content: "";
	border-radius: 25px;
	background-color: #ffd4c5;
	position: absolute;
	right: 0px;
	bottom: 0px;
}
.service-list li a {
	border: solid 3px #ff9873;
	border-radius: 25px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	position: relative;
	background-color: #FFF;
}
.service-list li a .btn-more {
	font-weight: 500;
	text-align: center;
	background-color: #ff7c4d;
	color: #FFF;
	border-radius: 60px;
	box-sizing: border-box;
	margin: 0 auto;
	position: relative;
}
.service-list li a .btn-more:after {
	content: "";
	border-top: solid 3px #FFF;
	border-right: solid 3px #FFF;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0,-50%) rotate(45deg);
	-ms-transform: translate(0,-50%) rotate(45deg);
	transform: translate(0,-50%) rotate(45deg);
}
/* --------  768〜　PC調整   --------*/
@media screen and ( min-width:768px) {
#service {
	padding-left: 20px;
	padding-right: 20px;
}
.service-list {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 20px;
}
.service-list li {
	width : 30%;
	margin-bottom: 3.5em;
}
.service-list li:before {
	width: 96%;
	height: 88%;
}
.service-list li a {
	/*flex*/
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	/*flex-縦*/
 	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
	/*flex-垂直方向中央*/
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/*flex-水平方向中央*/
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 25px 15px;
}
.service-list li a .pic {
	width: 84%;
	margin: 0 auto;
	max-width: 180px;
}
.service-list li a h4 {
	font-size: 24px;
	font-weight: 500;
	margin: .6em 0 .7em;
	text-align: center;
}
.service-list li a .btn-more {
	font-size: 17px;
	width: 90%;
	max-width: 210px;
	padding: .4em 1em;
}
.service-list li a .btn-more:after {
	width: 7px;
	height: 7px;
	right: 13px;
}
.service-list li a:hover {
	transform: translate(-5px,-5px);
	border: solid 3px #ff6731;
}
.service-list li a:hover h4 {
	color: #ff6731;
}
.service-list li a:hover .btn-more {
	background-color: #ff6731;
}
}
/* --------  872〜995　PC調整   --------*/
@media screen and ( min-width:768px) and ( max-width:822px) {
.service-list li {
	width: 48%;
}
}
/* --------  〜767　スマホ調整   --------*/
@media screen and ( max-width:767px) {
#service .service-list,
#service .service-list-sub {
	width: 94%;
	margin-left: auto;
	margin-right: auto;
}
.service-list {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.service-list li {
	width: 49%;
	/*width: 100%;*/
	margin-bottom: 1em;
	padding: 0;
}
.service-list li:before {
	display: none;
}
.service-list li a {
	/*flex*/
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	/*flex-縦*/
 	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
	/*flex-垂直方向中央*/
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/*flex-水平方向中央*/
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 15px 5px;
	border: solid 2px #ff9873;
	border-radius: 15px;
}
.service-list li a .pic {
	width: 84%;
	margin: 0 auto;
	max-width: 180px;
}
.service-list li a h4 {
	font-size: 17px;
	font-weight: 500;
	margin: .6em 0 .7em;
	text-align: center;
}
.service-list li a .btn-more {
	font-size: 14px;
	width: 90%;
	max-width: 400px;
	padding: .4em 1em;
}
.service-list li a .btn-more:after {
	width: 5px;
	height: 5px;
	right: 13px;
	border-top: solid 2px #FFF;
	border-right: solid 2px #FFF;
}
}


/*----------------------------------------------------
   サービス（サブボタン）
----------------------------------------------------*/
/* --------  768〜　PC調整   --------*/
@media screen and ( min-width:768px) {
.service-list-sub {
 	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
 	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.service-list-sub li {
 	width: 30%;
	position: relative;
	padding: 0 10px 10px 0;
	box-sizing: border-box;
	-ms-flex-item-align: center;
	align-self: center;
	margin-bottom: 2em;
}
.service-list-sub li:before {
	content: "";
	width: 98%;
	height: 92%;
	border-radius: 25px;
	background-color: #ffd4c5;
	position: absolute;
	right: 0px;
	bottom: 0px;
}
.service-list-sub li a {
 	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: solid 3px #ff9873;
	border-radius: 25px;
	padding: 15px 15px 15px 20px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	position: relative;
	background-color: #FFF;
}
.service-list-sub li .icon {
 	width: 65px;
	flex-shrink: 0;
}
.service-list-sub li .service-name {
 	padding-left: .5em;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0.07em;
}
.service-list-sub li .service-name span {
 	display: block;
	font-size: 14px;
}
/* -最初の2つだけ大きく出す（2列） */
/*.service-list-sub li:nth-child(1),
.service-list-sub li:nth-child(2) {
 	width: 48%;
}*/
/* -最初の2つだけ左余白を大きく */
/*.service-list-sub li:nth-child(1) a,
.service-list-sub li:nth-child(2) a {
	padding: 15px 15px 15px 25px;
}*/
/* -助成金のアイコンが縦長なので余白を小さく */
.service-list-sub li.s-subsidy a {
	padding: 10px 15px 10px 20px;
}
/* -助成金のアイコンが縦長なので小さくする */
.service-list-sub li.s-activenet a {
 	padding: 15px 15px 15px 15px;
}
.service-list-sub li.s-activenet a .icon {
 	width: 58px;
}
.service-list-sub li.s-subsidy a .icon {
 	width: 60px;
}
/* -Uネットの名前の左余白 */
.service-list-sub li.s-unet a .service-name {
 	padding-left: 1em;
}
.service-list-sub li a:hover {
	transform: translate(-3px,-3px);
	border: solid 3px #ff6731;
}
.service-list-sub li a:hover .service-name {
	color: #ff6731;
}
}
/* --------  872〜995　PC調整   --------*/
@media screen and ( max-width:822px) {
.service-list-sub li {
	width: 49%;
}
}
/* --------  〜767　スマホ調整   --------*/
@media screen and ( max-width:767px) {
.service-list-sub li {
 	width: 100%;
	position: relative;
	box-sizing: border-box;
	-ms-flex-item-align: center;
	align-self: center;
	margin-bottom: .5em;
}
.service-list-sub li a {
 	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: solid 2px #ff9873;
	border-radius: 15px;
	padding: 15px 20px 15px 15px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	position: relative;
	background-color: #FFF;
}
.service-list-sub li a:after {
	content: "";
	width: 5px;
	height: 5px;
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	position: absolute;
	top: 50%;
	right: 13px;
	-webkit-transform: translate(0,-50%) rotate(45deg);
	-ms-transform: translate(0,-50%) rotate(45deg);
	transform: translate(0,-50%) rotate(45deg);
}
.service-list-sub li .icon {
 	display: none;
}
.service-list-sub li .service-name {
 	padding-left: .5em;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0.07em;
}
.service-list-sub li .service-name span {
 	display: block;
	font-size: 12px;
	line-height: 1.5;
}
/* -助成金のアイコンが縦長なので小さくする */
.service-list-sub li.s-subsidy a .icon {
 	width: 60px;
}
/* -Uネットの名前の左余白 */
/*.service-list-sub li.s-unet a {
	padding: 15px;
}*/
/* -Uネットの名前の左余白 */
/*.service-list-sub li.s-unet a .service-name {
 	padding-left: 1em;
}*/
}
/* --------  872〜995　PC調整   --------*/
@media screen and ( min-width:768px) and ( max-width:995px) {
.service-list-sub li a {
	padding: 15px;
}
.service-list-sub li:nth-child(1) a,
.service-list-sub li:nth-child(2) a {
	padding: 15px 15px 15px 15px;
}
.service-list-sub li a .service-name {
	font-size: 20px;
}
}
/* --------  872〜995　PC調整   --------*/
@media screen and ( min-width:768px) and ( max-width:871px) {
.service-list-sub li {
	width: 32%;
}
}


/*----------------------------------------------------
   お知らせ
----------------------------------------------------*/
#news .news-list {
  opacity: 0;
  transition: opacity .3s linear;
}
#news .news-list.slick-initialized{
  opacity: 1;
}
#news,
#news:before {
	background-color: #fff0b5;
}
#news .not-news {
	text-align: center;
}
#news .up-days p {
	margin-bottom: 1em;
	font-size: 17px;
}
#news .up-days p span.new {
	padding: 0 1em;
	margin-right: 1em;
	font-size: 11px;
	display: inline-block;
	background-color: #de0000;
	color: #FFF;
	border-radius: 60px;
	vertical-align: middle;
}
#news .list-txt {
	margin-top: .8em;
}
#news .news-list .slick-list {
	padding: 20px 0;
}
#news .news-list .slick-list li {
	box-sizing: border-box;
	padding: 5px 10px;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
#news .news-list .slick-list li a {
	display: block;
	padding: 35px 25px 35px;
	background-color: #FFF;
	border-radius: 20px;
	box-shadow: 0px 1px 6px 0px rgba(218,212,185,0.7);
	border: solid 2px transparent;
	box-sizing: border-box;
}
#news .news-list .slick-list li:hover {
	transform:scale(1.03,1.03);
}
#news .news-list .slick-list li a:hover {
	border: solid 2px #ffe47a;
}
#news .list-pht {
	height: 180px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
#news .list-txt .news-category {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	margin: 1em 0 .5em;
}
#news .list-txt .news-category p {
  	font-size: 13px;
	font-weight: 400;
	border-radius: 5px;
	/*color: #FFF;*/
	text-align: center;
	padding: 0.2em .8em;
	margin-right: .5em;
	margin-bottom: .5em;
	line-height: 1.4;
	box-sizing: border-box;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#news .list-txt .news-category p.cate-news {
	background-color: #ff9f94;
}
#news .list-txt .news-category p.cate-senior {
	background-color: #89dbd8;
}
#news .list-txt h4 {
	letter-spacing: 0.05em;
	font-weight: 400;
}
#news .news-list {
	margin-bottom: 2em;
}
#news .news-slide-btn {
	position: relative;
	text-align: center;
}
#news .news-slide-dot {
	display: inline-block;
}
#news .slick-dots {
	position: relative;
	bottom: auto;
	display: inline-block;
	vertical-align: middle;
	width: auto;
}
#news .slick-dots li {
	vertical-align: middle;
	margin: 0 1px;
}
#news .slick-dots li button:before {
	font-size: 12px;
}
#news .slick-dots li.slick-active button:before {
	color: #6a3e00;
	filter:Alpha(opacity=100);
	-moz-opacity:1;
	opacity:1!important;
}
#news .news-slide-btn .slick-prev,
#news .news-slide-btn .slick-next {
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	display: inline-block!important;
	vertical-align: middle;
	transform: none;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	border: solid 2px #a49174;
	background-color: #FFF;
	box-sizing: border-box;
}
#news .news-slide-btn .slick-prev {
	margin-right: 10px;
}
#news .news-slide-btn .slick-next {
	margin-left: 10px;
}
#news .news-slide-btn .slick-prev,
#news .news-slide-btn .slick-next,
#news .news-slide-btn .slick-prev:before,
#news .news-slide-btn .slick-next:before {
	filter:Alpha(opacity=100);
	-moz-opacity:1;
	opacity:1!important;
}
#news .news-slide-btn .slick-prev:hover,
#news .news-slide-btn .slick-next:hover,
#news .news-slide-btn .slick-prev:hover:before,
#news .news-slide-btn .slick-next:hover:before {
	filter:Alpha(opacity=85);
	-moz-opacity:0.85;
	opacity:0.85!important;
}
#news .news-slide-btn .slick-prev:before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 16px 8px 0;
	border-color: transparent #a49174 transparent transparent;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
#news .news-slide-btn .slick-next:before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 16px;
	border-color: transparent transparent transparent #a49174;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

#news .no-img {
	background-image: url("../img/no_img.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 75px auto;
	box-sizing: border-box;
	background-color: #f6f6f6;
}

#news .btn-news {
	margin: 2em auto 0;
	width: 86%;
	max-width: 425px;
}
#news .btn-news a {
	display: block;
	color: #a49174;
	border: solid 2px #a49174;
	border-radius: 100px;
	background-color: #FFF;
	text-align: center;
	padding: .8em 1em;
	font-size: 20px;
	box-sizing: border-box;
	position: relative;
}
#news .btn-news a:after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: solid 3px #a49174;
	border-right: solid 3px #a49174;
	position: absolute;
	right: 18px;
	top: 50%;
	-webkit-transform: translate(0,-50%) rotate(45deg);
	-ms-transform: translate(0,-50%) rotate(45deg);
	transform: translate(0,-50%) rotate(45deg);
}

/* --------  768〜　PC調整   --------*/
@media screen and ( min-width:768px) {
#news .list-txt h4 {
	font-size: 17px;
}
#news .slick-track {
  display: flex;
}
#news .slick-slide {
  height: auto !important;
}
#news .slick-slide div,
#news .slick-slide div li,
#news .slick-slide div li a {
  height: 100%;
  box-sizing: border-box;
}
#news .slick-slide div li a div {
  height: auto !important;
}
}
/* --------  〜767　スマホ調整   --------*/
@media screen and ( max-width:767px) {
#news .news-list {
	width: 92%;
	margin: 0 auto 1.5em;
	opacity: 1;
}
#news .news-list li {
	margin-bottom: 1em;
}
#news .news-list li:last-child {
	margin-bottom: 2.5em;
}
#news .news-list li a {
	background-color: #FFF;
	padding: 10px 15px 15px;
	border-radius: 10px;
	/*padding: 20px;
	border-radius: 20px;
	box-shadow: 0px 1px 6px 0px rgba(218,212,185,0.7);*/
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
#news .news-list li a .up-days {
	width: 100%;
	height: auto;
	margin-bottom: .5em;
}
#news .news-list li a .up-days p {
	margin-bottom: 0;
	font-size: 16px;
}
#news .news-list li a .up-days p span {
	vertical-align: text-bottom;
}
#news .news-list li a .list-pht {
	width: 30%;
	height: auto;
}
#news .news-list li a .list-txt {
	width: 70%;
	margin-top: 0;
	box-sizing: border-box;
	padding: .5em 0 .5em 1em;
}
#news .news-list li a .list-txt h4 {
	font-size: 14px;
}
#news .list-txt .news-category {
	margin: 0 0 .3em;
}
#news .list-txt .news-category p {
  	font-size: 10px;
	font-weight: 500;
	margin-right: .7em;
	margin-bottom: .5em;
}
#news .news-slide-btn {
	display: none;
}
#news .btn-news {
	margin: 0em auto 1em;
	width: 92%;
	max-width: 425px;
}
#news .btn-news a {
	font-size: 16px;
	font-weight: 500;
}
#news .no-img {
	background-size: 50px auto;
}
}



/*----------------------------------------------------
   右京区地域情報
----------------------------------------------------*/
/* --------  768〜　PC調整   --------*/
@media screen and ( min-width:768px) {
#ukyouku-area {
	padding: 30px 0;
	position: relative;
	z-index: 80;
}
#ukyouku-area:before {
	display: none;
}
#ukyouku-area .w-inner {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-webkit-box-orient: horizontal;
  	-webkit-box-direction: reverse;
  	-ms-flex-direction: row-reverse;
  	flex-direction: row-reverse;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.area-map {
	width: 45%;
	position: relative;
	z-index: 80;
	padding: 30px 0;
	box-sizing: border-box;
}
.local-info {
	width: 55%;
	padding-left: 10%;
	padding-right: 20px;
	box-sizing: border-box;
}
.area-map .area-inner {
	position: relative;
	z-index: 90;
	width: 100%;
	padding-top: 150%;
}
.area-map .area-inner #ukyouku-area-map {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.area-map .area-choice {
	width: 40%;
	max-width: 150px;
	height: 0;
	padding-top: 32%;
	background-image: url("../img/area_choice_pc.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
	left: 94%;
	top: 10%;
}
.area-map:before {
	content: "";
	display: inline-block;
	border-radius: 50% / 100% 100% 0 0;
	background: #FFF;
	width: 130%;
	height: 200px;
	top: -100px;
	left: 50%;
	position: absolute;
	-webkit-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	transform: translate(-50%,0);
	z-index: 80;
}
.area-map:after {
	content: "";
	display: inline-block;
	border-radius: 50% / 0 0 100% 100%;
	background: #FFF;
	width: 130%;
	height: 200px;
	bottom: -100px;
	left: 50%;
	position: absolute;
	-webkit-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	transform: translate(-50%,0);
	z-index: 80;
}
}
/* --------  〜767　スマホ調整   --------*/
@media screen and ( max-width:767px) {
#ukyouku-area {
	padding: 30px 0 20px;
	position: relative;
	z-index: 80;
}
.area-map,
.local-info {
	width: 92%;
	margin: 0 auto;
}
.area-map .area-inner {
	position: relative;
	z-index: 90;
}
.area-map .area-choice {
	width: 80%;
	max-width: 120px;
	margin: 1.5em auto 0;
	height: 0;
	padding-top: 30%;
	background-image: url("../img/area_choice_sp.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.area-map:after {
	content: "";
	display: inline-block;
	border-radius: 50% / 0 0 100% 100%;
	background: #FFF;
	width: 80%;
	max-width: 280px;
	height: 100px;
	bottom: -40px;
	left: 50%;
	position: absolute;
	-webkit-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	transform: translate(-50%,0);
	z-index: 80;
}
}
/* --------  〜767　スマホ調整   --------*/
@media screen and ( min-width:768px) and ( max-width:850px) {
.area-map .area-choice {
	width: 40%;
	max-width: 120px;
	position: absolute;
	left: 94%;
	top: 10%;
}
}




/*----------------------------------------------------
   マップ
----------------------------------------------------*/
.area-map .cls-1 {
	fill: #fad2c3;
}
.area-map .cls-2 {
	fill: #fff;
}
/* --------  768〜　PC調整   --------*/
@media screen and ( min-width:768px) {
.area-map a:hover .cls-1 {
	fill: #ff6731;
}
.area-map a:hover #txt-keihoku,
.area-map a:hover #txt-utano,
.area-map a:hover #txt-touin,
.area-map a:hover #txt-mizuo,
.area-map a:hover #txt-saiin2,
.area-map a:hover #txt-saiin1,
.area-map a:hover #txt-yamanouchi,
.area-map a:hover #txt-yasui,
.area-map a:hover #txt-hanazono,
.area-map a:hover #txt-omuro,
.area-map a:hover #txt-umedu,
.area-map a:hover #txt-kitaumedu,
.area-map a:hover #txt-minamiuzumasa,
.area-map a:hover #txt-tokiwano,
.area-map a:hover #txt-nishikyougku,
.area-map a:hover #txt-kuzuno,
.area-map a:hover #txt-uzumasa,
.area-map a:hover #txt-sagano,
.area-map a:hover #txt-arashiyama,
.area-map a:hover #txt-hirosawa,
.area-map a:hover #txt-saga,
.area-map a:hover #txt-takao,
.area-map a:hover #txt-keihoku {
	fill: #FFF;
}
}
/* --------  〜767　スマホ調整   --------*/
@media screen and ( max-width:767px) {
}



/*----------------------------------------------------
   バナー
----------------------------------------------------*/
/* --------  768〜　PC調整   --------*/
@media screen and ( min-width:768px) {
#banner {
	padding-top: 150px;
	padding-bottom: 75px;
}
}
/* --------  〜767　スマホ調整   --------*/
@media screen and ( max-width:767px) {
#banner {
	padding-top: 60px;
}
}










