@charset "utf-8";


/* ---------------------------------------------
　base modules
------------------------------------------------ */

.body {
    position: relative;
	min-width: 1120px; /* コンテンツ幅に書き直す */
	clear:both;
}
@media screen and (min-width : 1120px){
	body{
		overflow-x: hidden;
	}
}
.wrap{ clear:both; }

.inner {
	width: 1120px; /* コンテンツ幅に書き直す */
	margin: 0 auto;
}

#contact .inner {
	width: auto;
}

.pc { display: block; }
.sp { display: none; }

/* ---------------------------------------------
　header
------------------------------------------------ */

/*.header{
	position:relative;
	width:100%;
	height: 280px;
	margin:0 auto;
	z-index: 1;
}*/

.header .logo{
	position:absolute;
	left: 100px;
	top: 0;
}

.header span {
    color: #fff;
	font-weight: bold;
	text-shadow: 0 0 3px rgba(0, 0, 0, .3);
}

.header__logo-image {
	filter: drop-shadow(0 0 3px rgba(0, 0, 0, .1));
}

.header .tel {
    position: absolute;
    top: 20px;
    right: 20px;
}

.header .bx-wrapper .bx-viewport{
	left: 0;
}

/* ---------------------------------------------
　container
------------------------------------------------ */

.container{
	width: 100%;
    min-height: 440px;
	margin:0 auto;
	background-color: #f8f7f1;
}


/* ------ navigation -------------------------------- */

.container nav {
	display: none; /*リニューアルにつき非表示*/
	position: fixed;
	width: 80px;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
    z-index: 999;
    pointer-events: none;
}
.container .sidebar nav{
	z-index: 0;
}
.container nav .menu-area {
	display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    width: calc(100% - 80px);
    height: 100%;
    top: 0;
    right: 0;
    background-color: #ffffff;
	pointer-events: auto;
    z-index: 999;
}
.container nav .menu-area.view {
	display: flex;
}
.container nav .menu-area.view .menu-area-inner{
	width: 845px;
}
.container nav .menu-area.view .title-menu{
	display: block;
	margin-bottom: 30px;
}
.container nav .menu-area.view .title-menu img{
	display: block;
	margin: auto;
}
.container nav .menu-area.view .title-menu span{
	display: block;
	margin: 20px auto 0;
    text-align: center;
	font-size: 1.8rem;
	color: #333;
}
.container nav .menu-area.view .list-menu-cover{
	display: flex;
	justify-content: space-between;
	margin-bottom: 48px;
}
.container nav .menu-area.view  .list-menu{
	width: 408px;
	background: url(/themes/main/images/line_menu01.png) 50% 0 no-repeat;
}
.container nav .menu-area.view .list-menu + .list-menu{
	margin-left: 29px;
}
.container nav .menu-area.view .list-menu li{
	height: 55px;
	background: url(/themes/main/images/line_menu01.png) 50% 100% no-repeat;
	position: relative;
}
.container nav .menu-area.view .list-menu li a,
.container nav .menu-area.view .list-menu li > span{
	display: block;
	width: 100%;
	height: 100%;
	padding-left: 39px;
	line-height: 55px;
    text-align: left;
	font-size: 1.6rem;
	color: #333;
}
.container nav .menu-area.view .list-menu li:before{
	content: "\003e";
	display: inline-block;
	margin-right: 10px;
    transform: scaleX(0.5);
    position: absolute;
    left: 22px;
    top: 31%;
}
.container nav .menu-area.view .cate-menu .list-menu li:before{
    top: 26%;
}
.container nav .menu-area.view .list-menu-sub{
	text-align: center;
	font-size: 0;
}
.container nav .menu-area.view .list-menu-sub li{
	display: inline-block;
	padding-left: 1em;
	font-size: 1.5rem;
}
.container nav .menu-area.view .list-menu-sub li:before{
	content: "\002f";
	margin-right: 1em;
}
.container nav .menu-area.view .list-menu-sub li:first-child:before{
	display: none;
}

	
.container nav .btn-area {
	position: absolute;
	width: 80px;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	margin-top: 0;
	background: #fff;
    transform: translateX(-80px);
    transition: all 0.3s;
    opacity: 1;
	pointer-events: auto;
}

.container.js-scroll nav .btn-area {
    transform: translateX(0);
}
.container.js-ft nav .btn-area {
	opacity: 0;
	pointer-events: none;
}

.container nav .btn-area .menu-btn {
	display: block;
	position: absolute;
	width: 16px;
	height: 13px;
	top: 48px;
	right: 0;
	left: 0;
	margin: auto;
}

.container nav .btn-area .menu-btn .menu-trigger,
.container nav .btn-area .menu-btn .menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
	
.container nav .btn-area .menu-btn .menu-trigger {
	position: relative;
	width: 100%;
	height: 100%;
}

.container nav .btn-area .menu-btn .menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #333;
	transition: all .4s;
}

.container nav .btn-area .menu-btn .menu-trigger span:nth-of-type(1) {
	top: 0;
}
.container nav .btn-area .menu-btn .menu-trigger span:nth-of-type(2) {
	top: 5px;
}
.container nav .btn-area .menu-btn .menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.container nav .btn-area .menu-btn .menu-trigger::after {
	content: url(/themes/main/images/nav-menu.png);
	position: absolute;
	left: -4px;
	bottom: -24px;
	display: block;
}
.container nav .btn-area .menu-btn .menu-trigger.view span:nth-of-type(1) {
	top: 5px;
	transform: rotate( 45deg);
}
.container nav .btn-area .menu-btn .menu-trigger.view span:nth-of-type(2) {
	opacity: 0;
}
.container nav .btn-area .menu-btn .menu-trigger.view span:nth-of-type(3) {
	top: 5px;
	transform: rotate( -45deg);
}
.container nav .btn-area .menu-btn .menu-trigger.view::after {
	content: url(/themes/main/images/nav-close.png);
	left: -7px;
}

.container nav .btn-area .name {
	position: absolute;
	width: 27px;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 1.6rem;
	color: #333;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	letter-spacing: 2px;
	transform: translateY(-50%);
}
/* ------ title -------------------------------- */

.page-title{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 1200px;
    height: 280px;
    top: 0;
    left: 0;
}
.page-title h1{
	position: relative;
	padding: 0 0 0 140px;
	line-height: 1;
	font-size: 3.0rem;
	font-weight:bold;
	color: #fff;
	z-index: 1;
	text-shadow: 0 0 3px #000;
}
.page-title .title-img{
	position: absolute;
	width: 100%;
	height: 280px;
	top: 0;
    left: 0;
	overflow: hidden;
}
.page-title .title-img img{
	position: absolute;
	width: 100%;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);

}

/* ------ topic-path --------------------------- */

.container .topic-path {
	padding: 40px 0 0 140px;
	text-align:left;
	color:#333;
	font-size: 1.2rem;
	list-style: none;
}

.topic-path a,
.topic-path a:link,
.topic-path a:hover,
.topic-path a:visited,
.topic-path a:active {
	color: #333333;
	text-decoration:none;
}

/* ------ pagetop ------------------------------ */

.pagetop{
	width: 980px;
	margin: 10px auto;
	text-align:right;
	font-size:78%;
}

.pagetop a,
.pagetop a:link,
.pagetop a:hover,
.pagetop a:visited,
.pagetop a:active {
	text-decoration:none;
	color:#666;
	padding:5px 10px 5px 15px;
}

/* content
------------------------------------------------ */

.content {
	width: calc(100% - 205px);
    min-width: 1120px;
	padding: 0 65px 100px 140px;
	text-align: left;
}

/* ------ navigation -------------------------------- */

.container nav .menu-area.view .menu-area-inner{
    width: 1025px;
}
.container nav .menu-area.view .cate-menu{
    float: left;
}
.container nav .menu-area.view .cate-menu .title-menu img{
    margin: 0;
}
.container nav .menu-area.view .cate-menu .title-menu span{
    margin: 10px auto 0;
    text-align: left;
    font-size: 1.4rem;
}
.container nav .menu-area.view .cate-menu .list-menu{
    width: 300px;
}
.container nav .menu-area.view .cate-menu .list-menu li{
    height: 42px;
	position: relative;
}
.container nav .menu-area.view .cate-menu .list-menu li a,
.container nav .menu-area.view .cate-menu .list-menu li > span{
    height: 42px;
    line-height: 42px;
    font-size: 1.3rem;
}
.container nav .menu-area.view .cate-menu .list-menu li a:before{
    line-height: 42px;
}
.container nav .menu-area.view .commute-menu{
    margin-left: 70px;
}
.container nav .menu-area.view .sub-menu{
    float: left;
    margin-left: 90px;
    padding-left: 67px;
    background: url(/themes/main/images/line_menu02.png) 0 50% no-repeat;
}
.container nav .menu-area.view .sub-menu li{
    margin-bottom: 25px;
    text-align: left;
    font-size: 1.4rem;
	position: relative;
	padding-left: 17px;
}
.container nav .menu-area.view .sub-menu li a{
    color: #333;
}
.container nav .menu-area.view .sub-menu li:before{
    content: "\003e";
    display: inline-block;
    margin-right: 10px;
    transform: scaleX(0.5);
	position: absolute;
	left: 0;
	top: 0;
}
.container nav .menu-area.view .sub-menu li ul{
    margin: 15px 0 0 15px;
}
.container nav .menu-area.view .sub-menu li ul li{
    margin-bottom: 15px;
    font-size: 1.3rem;
	padding-left: 0;
}
.container nav .menu-area.view .sub-menu li ul li a{
    color: #666;
}

.container nav .menu-area.view .sub-menu li ul li:before {
	left: -17px;
}

/* ------ news --------------------------------- */

.content .news {
    display: table;
    margin-top: 30px;
    width: 100%;
    background: url(../top/images/border-news.png) top left repeat-x;
}

.content .news a {
    display: table-row;
	background-image: url(../top/images/border-news.png);
	background-repeat: repeat-x;
	background-position: 0% 100%;
}
.content .news a:after {
    content: "";
    display: table-cell;
    width: 37px;
    background-image: url(../top/images/arrow-news.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
}

.content .news p {
    display: table-cell;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    margin: 0;
}

.content .news p.date {
    width: 120px;
    padding-left: 20px;
}

.content .news p.cate {
    width: 100px;
    padding: 0 30px 0 0;
    white-space: nowrap;
}
.content .news p.cate span{
    display: inline-block;
    width: 68px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    border-radius: 11px;
}
.content .news p.cate span + span{
    margin-left: 10px;
}
.content .news p.cate .cate-camp{
    background-color: #f6b8b7;
}
.content .news p.cate .cate-commute{
    background-color: #91cbd3;
}

.content .news p.title {
    width: auto;
    padding-right: 20px;
}



/* sidebar
------------------------------------------------ */

.sidebar{
	float:right;
	width:330px;
    margin-right: 65px;
	text-align:left;
}


/* ------ local-navigation --------------------- */

.sidebar .local-navigation{
	clear: both;
	margin-bottom: 45px;
}

.sidebar .local-navigation h2{
	margin: 0 0 25px;
	padding: 0;
}

.sidebar .local-navigation ul{
	margin: 0;
	padding-left: 15px;
}

.sidebar .local-navigation li a{
	display:block;
	padding-left: 0.8em;
	text-indent: -0.8em;
	line-height: 2.5;
	font-size: 1.6rem;
}

.sidebar .local-navigation li a:link,
.sidebar .local-navigation li a:visited,
.sidebar .local-navigation li a:hover,
.sidebar .local-navigation li a:active{
	text-decoration:none;
}
.sidebar .local-navigation li a:hover,
.sidebar .local-navigation li a:active{
	text-decoration: underline;
	opacity: 1;
}

.sidebar .local-navigation li a:before{
    content: "\003e";
    display: inline-block;
    margin-right: 14px;
	line-height: 2.5;
	font-size: 1.8rem;
    transform: scaleX(0.5);
}
.sidebar .newtopics.local-navigation li a:before{
	color: #f2cf2e;
}
.sidebar .backnumber.local-navigation li a:before{
	color: #fec9c8;
}
.sidebar .category.local-navigation li a:before{
	color: #addce4;
}

.sidebar .backnumber.local-navigation li {
	float: left;
	width: 155px;
}
.sidebar .tagcloude.local-navigation ul{
	padding: 0 15px;
}
.sidebar .tagcloude.local-navigation li{
	display: inline-block;
	margin: 0 8px 10px 0;
	font-size: 0;
}
.sidebar .tagcloude.local-navigation li a{
	padding: 0 10px;
	height: 30px;
	text-indent: 0;
	line-height: 30px;
	font-size: 1.4rem;
	border: 1px solid #fff;
	background-color: #fff;
	border-radius: 5px;
}
.sidebar .tagcloude.local-navigation li a:hover{
	text-decoration: none;
	background-color: #f8f7f1;
	opacity: 1;
}
.sidebar .tagcloude.local-navigation li a:before{
	display: none;
}


/* ------ banner ------------------------------- */

.sidebar .banner{
	margin-top:0;
}

.sidebar .banner li{
	margin-bottom:10px;
}


/* ---------------------------------------------
　cv
------------------------------------------------ */

.cv{
	text-align: center;
	background: #fec9c8;
	padding: 50px 0 50px 80px;
	color: #fff;
}

.cv ul{
	width: 1000px;
	margin: 0 auto;
}

.cv ul li{
	float: left;
	width: 26.6%;
	margin: 0 0 0 5%;
	padding-bottom: 30px;
}

.cv ul li dt{
	color: #fff;
	font-size: 110%;
}

.cv ul li .img{
	width: 100%;
	overflow: hidden;
}

.cv ul li .img img{
	width: 90%;
	border-radius: 20px;
	border: 10px solid #fff;
	margin-top: 10px;
}

.cv ul li:hover .img img { border-color: #addce4 ; }

.cv ul li .title{
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-size: 30px;
	font-weight: 700;
	margin: 10px 10px 0;
	line-height: 1em;
	color: #fff;
}

.cv ul li .text{
	margin: 5px 10px 0;
	color: #fff;
}

.cv .tel{
	clear: both;
}

.cv .tel dt, 
.cv .tel dd{
	display: inline-block;
}

.cv .tel dt{
	text-align: left;
	padding-right: 30px;
}

.cv .tel dd{
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-weight: 400;
	font-size: 70px;
	line-height: 1em;
	letter-spacing: 5px;
	color: #fff;
}

.cv a, 
.cv a:link, 
.cv a:hover, 
.cv a:active, 
.cv a:visited{
	color: #fff;
}


/* ---------------------------------------------
　footer
------------------------------------------------ */

.footer{
	background:#f8f7f1;
	clear:both;
	color: #333;
    position: relative;
    z-index: 1;
}

.footer #map {
	width: 100%;
	height: 350px;
}

.footer .inner{
	width:1200px;
	margin:0 auto;
	display: table;
	padding: 50px 0 40px;
}

.footer a,
.footer a:link,
.footer a:hover,
.footer a:visited,
.footer a:active {
	color:#333;
	text-decoration:none;
}

.footer address{
	width: 277px;
	display: table-cell;
	text-align:left;
	background: url(/themes/main/images/footer-border.png) top right repeat-y;
}

.footer address .name{
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 14px;
}

.footer address .tel{
	margin-top: 20px;
}

.footer-navigation01{
	width: 320px;
	text-align:left;
	display: table-cell;
	padding-left: 51px;
	box-sizing: border-box;
}

.footer-navigation02{
	width: 260px;
	text-align:left;
	display: table-cell;
	background: url(/themes/main/images/footer-border.png) top right repeat-y;
}

.footer-navigation01 dl,
.footer-navigation02 dl{
	margin-top: 14px;
}

.footer-navigation01 dl dt,
.footer-navigation02 dl dt{
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-navigation01 dl dd,
.footer-navigation02 dl dd{
	line-height: 1;
}

.footer-navigation01 dl dd a,
.footer-navigation02 dl dd a{
	font-size: 1.3rem;
	position: relative;
	padding-left: 12px;
}

.footer-navigation01 dl dd + dd,
.footer-navigation02 dl dd + dd{
	margin-top: 14px;
}

.footer-navigation01 dl dd a::before,
.footer-navigation02 dl dd a::before{
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	border-right: #333 1px solid;
	border-top: #333 1px solid;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -3px;
}

.footer-navigation03{
	width: 342px;
	text-align:left;
	display: table-cell;
	padding-left: 50px;
	box-sizing: border-box;
}

.footer-navigation03 > ul > li{
	line-height: 1;
}

.footer-navigation03 > ul > li + li{
	margin-top: 17px;
}

.footer-navigation03 > ul > li > a{
	position: relative;
	padding-left: 12px;
}
.footer-navigation03 > ul > li > a::before{
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	border-right: #333 1px solid;
	border-top: #333 1px solid;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -3px;
}

.footer-navigation03 > ul > li ul{
	margin-left: 12px;
}

.footer-navigation03 > ul > li ul li{
	margin-top: 12px;
}

.footer-navigation03 > ul > li ul li a{
	font-size: 1.3rem;
	color: #666;
}

.copyright{
	padding: 20px 0;
	text-align: center;
	background: #666;
	line-height: 1;
}

.map-area #map {
	width: 100%;
	/* height: 350px; */
}


