/* CSS Document */

body{
	background:#f9f8f7;
	letter-spacing:1px;
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
}


li{
	list-style: none;
}

a{
	text-decoration: none;
	color: inherit;
}

section{
	width: 100%;
}


.page-link-header{
 	padding-top: 100px;
    margin-top:-100px;
}

img{
	width: 100%;
}


#news-item img{
	display: inline-block;
	max-width: 800px!important;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-top: 10px;
}


/* button */

.button{
	display: flex;
	width: 100%;
	justify-content: flex-end;
}

.button a{
    padding: 5px 30px;
	border-bottom: 1px solid #aea47e;
	transition: ease-in-out 600ms;
}


.button a span{
	color: #514d40;
    font-weight: 600;
	position: relative;
	padding-right:20px;
	letter-spacing: 2px;
}

.button a span::before{
	position: absolute;
	content: '';
	display: block;
	right: 0;
	top: 45%;
	width: 0;
	height: 0;
	border-left: 5px solid transparent; /* 左侧边为透明 */
	border-right: 5px solid transparent; /* 右侧边为透明 */
	border-bottom: 5px solid #514d40;
	transform: rotate(90deg) translateY(-50%);
}

.button a:hover span::before{
	animation: arrow 1s ease infinite;
  }
  



.button2{
	margin:50px auto;
	display: flex;
	width: 100%;
	justify-content: center;
}

.button2 a{
    padding: 10px 50px;
	background: #fff;
	border: 1px solid #ef8200;
	transition: ease-in-out 600ms;
}


.button2 a span{
	color: #ef8200;
    font-weight: 600;
	position: relative;
	padding-right:20px;
	letter-spacing: 6px;
	transition: ease-in-out 600ms;
	font-size: 18px;
}

.button2 a span::before{
	position: absolute;
	content: '';
	display: block;
	right: 0;
	top: 40%;
	width: 0;
	height: 0;
	border-left: 5px solid transparent; /* 左侧边为透明 */
	border-right: 5px solid transparent; /* 右侧边为透明 */
	border-bottom: 5px solid #ef8200;
	transform: rotate(90deg) translateY(-50%);
	transition: ease-in-out 600ms;
}

.button2 a:hover{
	background: #ef8200;
}

.button2 a:hover span{
	color: #fff;
}

.button2 a:hover span::before{
	border-bottom: 5px solid #fff;
	animation: arrow 900ms linear infinite;
  }
  


/* button ///*/



/* animation */
  @keyframes arrow {
	50% {
	  right: -5px;
	}
	100% {
	  right: 0px;
	}
  }


@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

/* animation */

/*////////共通↑↑↑///////*/


#header{
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	height: 100px;
	z-index: 5;
	position: sticky;
	top: 0;
	background: rgba(248, 248, 248, 0.9);
}

.header-above{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.header-above nav ul{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

#header .h1-box{ 
    height: 100%;
    padding: 10px 0 10px 30px;
}

#header h1 {
	font-size: 12px;
    line-height: 15px;
	font-weight: 500;
	letter-spacing: 1px;
}



.h1-box a{
    width: 18vw;
    display: flex;
    max-width: 180px;
    height: calc(100% - 10px);
    justify-content: center;
    align-items: center;
}

.h1-box img{
    width: 18vw;
    aspect-ratio: 32 / 5;
    display: block;
    max-width: 180px;
}


/* pagetop */



.pagetop {
	z-index: 4;
	cursor: pointer;
	position: fixed;
	right: 10px;
	bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	transition: .3s;
	background: #148245;
	border: 1px solid #148245;
	opacity: 0;
}


.pagetop span{
	display: block;
    right: 0;
    top: 45%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.pagetop:hover {
    border: 1px solid #148245;
	background: #fff;
}

.pagetop:hover span{
	border-bottom: 8px solid #148245;
	
}



/* pagetop ///*/


/* footer */

footer{
	width: 100%;
    padding-top: 80px;
    background: #fff;
}

.ft-contact-info{
	display: flex;
    flex-direction: column;
	width: 30%;
	min-width: 450px;
}

.footer-above-bk{
	padding:30px 50px;
	width: 100%;
}

.footer_logo{
	display: flex;
    flex-direction: column;
	margin-bottom: 30px;
}

.footer_logo span{
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 26px;
 	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}

.footer_logo img{
	width: 200px;
    margin-bottom: 10px;
}


.ft-above{
	padding:15px 20px 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	max-width: 1300px;
    margin: auto;
}

.ft_contact{
	font-family: "Noto Sans JP", sans-serif;
}

.ft_contact p{
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 26px;
    font-weight: 400;
}


/* sitemap */

#sitemap ul{
    display: flex;
    margin: 50px auto;	
	justify-content: center;
}

#sitemap ul a{
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 36px;
	text-align: center;
}

#sitemap ul a span{
	font-weight: 400;
	font-size: 15px;
	line-height: 36px;
}

#sitemap ul li{
	display: flex;
	flex-direction: column;
	text-align: center;
}

#sitemap ul p{
    padding: 0 2vw;
	border-left: 1px solid #ef8200;
}

#sitemap ul a:hover{
	text-decoration: underline;
}

#sitemap ul li:first-child p{
	border-left: none;
}

/* sitemap //*/


.ft-map,
.ft-map iframe{
	width:100%;
	height:400px;
}

.cp_right{
	background: #0a2a2d;
	text-align: center;
}

.cp_right p{
	color: #fff;
	font-size: 12px;
	padding:5px;
}

/* footer ///*/



/* h1h2h3*/


.main-area{
	max-width: 1300px;
	width: 100%;
	margin: 150px auto;
	padding:0 50px;
}




.main-area p{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 32px;
	padding-bottom: 30px;
}



	
	
/* h1h2h3/// */


@media(max-width:1300px){

	.sp-none-1300{
		display: none;
	}
}


@media(max-width:1200px){

	#header {
		height: 85px;
	}

	.ft-above {
		justify-content: flex-start;
		padding: 0;
	}

	.ft-contact-info {
		min-width: 450px;
	}

	.footer-right {
		width: 100%;
		min-width: inherit;
		justify-content: space-around;
	}

	.footer-above-bk {
		padding: 20px 30px
	}

	.mrt-link {
		margin-left: 10px;
	}
	
	footer .sitemap ul li{
		width: 125px;
	}
	
	footer .sitemap ul li span{
		font-size: 11px;
		letter-spacing: 0;
		line-height: 20px;
		bottom: 1px;
	}

	.ft_contact {
		margin: 10px 0 0 3px;
	}
	
	.footer_logo img {
		width: 160px;
	}
	
	
	footer .sitemap ul li span:hover{
		border-bottom: none;
	}

	.main-area p {
		font-family: "Noto Sans JP", sans-serif;
		font-size: 16px;
		letter-spacing: 1px;
		line-height: 30px;
		padding-bottom: 14px;
	}

	.main-area {
		max-width: 1300px;
		width: 100%;
		margin: 100px auto;
		padding: 0 30px;
	}

	.main-area h3, .main-area h3 span {
		font-weight: 400;
		font-size: 35px;
	}


	

}


@media(max-width:1500px){

	#sitemap ul p {
		padding: 0 1vw;
	}
}



@media(max-width:1000px){
	

	
	.page-link-header {
		padding-top: 70px;
		margin-top: -70px;
	}
	
	#header {
		height: 70px;
	}


	#header .h1-box {
		padding: 5px 0 10px 10px;
	}

	footer {
		padding-top: 40px;
	}

	.ft-above {
		flex-direction: column;
	}

	.footer-above-bk {
        padding: 20px 10px;
    }

	.footer_logo {
		margin-bottom: 10px;
	}

	.footer-right {
		margin-top: 20px;
        justify-content: flex-start;
	}

	.mrt-link {
        margin-left: 20px;
    }
	
	#sitemap ul p {
		padding: 0 5px;
	}

	#sitemap ul a {
		font-size: 16px;
	}

	.main-area {
		margin: 60px auto;
        padding: 0 10px;
    }

	.main-area h3, .main-area h3 span {
        font-weight: 400;
        font-size: 28px;
    }
	
	.sp-none-1000{
		display: none;
	}
	
	
	
}



@media(max-width: 900px){
	.sp-none-900{
		display: none;
	}
	
	
	#sitemap ul {
        margin-bottom: 60px;
    	flex-direction: column;
		padding: 0;
	}
	
	#sitemap ul li {
    	flex-direction: row;
	}
	
	#sitemap ul a p{
		position: relative;
		border-left:none;
        padding: 0 15px;
    }
		
	#sitemap ul a p::before{
		position: absolute;
		display: block;
		content: '';
		width: 3px;
		height: 13px;
		border: 1px solid #ef8200;
		background: #ef8200;
		left:5px;
		top:50%;
		transform: translateY(-50%);
	}
	
	#sitemap ul a span{
		position: relative;
        padding-right: 20px;
		padding-left: 13px;
    }
	
	#sitemap ul a span::before{
		position: absolute;
		display: block;
		content: '';
		width: 4px;
		height: 2px;
		background:#ef8200;
		left:4px;
		top:50%;
		transform: translateY(-50%);
	}
	
	#sitemap ul a:hover{
		text-decoration: none;
	}
	

}
	


@media(min-width:851px){
	.pc-none-851{
		display: none;
	}
}

@media(max-width:850px){
	.sp-none-850{
		display: none;
	}

	#sitemap ul li {
    	flex-direction: column;
		border-bottom: 1px solid #aea47e;
		padding: 10px 0;
	}
	
	#sitemap ul a {
    	text-align: left;
	}
	
	#sitemap ul li p {
    	text-align: left;
	}
	
	#sitemap ul a span {
        margin-left: 10px;
		font-size: 14px;
		line-height: 20px;
    }
	
	#sitemap ul a span::before {
        width: 1px;
        height: 7px;
        background: rgba(183, 160, 110, 1);
        transform: translateY(-50%) rotate(90deg);
	}
	
	
}


@media(min-width:801px){
	.pc-none-801{
		display: none;
	}
}


@media(max-width:800px){

	
	
	#header h1 {
		font-size: 10px;
	}


	#header .h1-box {
		padding: 5px 0 10px 10px;
	}

	
	.h1-box a {
		width: 150px;
		max-width: 150px;
		justify-content: flex-start;
	}

	.h1-box img {
		width: 100%;
		max-width: 100%;
	}

	
	.footer-right {
        flex-direction: column;
    }
	
	.mrt-link {
        margin-left: 0;
        margin-top: 20px;
    }
	
	
	.br-none-800{
		display: none;
	}


	.button2 {
		margin: 20px auto;
	}

	.button2 a {
		padding: 8px 40px;
	}

	.button2 a span {
		padding-right: 15px;
		letter-spacing: 2px;
		font-size: 16px;
	}

	#sitemap ul a {
        font-size: 14px;
    }	
}



@media(min-width:651px){
	.pc-none-651{
		display: none;
	}
}




@media(max-width:650px){
	.br-none-650{
		display: none;
	}
	
}


@media(max-width:600px){
	
	.br-none-600{
		display: none;
	}
	
	.main-area h3, .main-area h3 span {
        font-weight: 400;
        font-size: 25px;
    }
	
	
	.footer-right {
		margin-top: 40px;
	}
	
	.footer_logo span,
	.ft_contact p,
	.radio dl dt,
	.radio dl dd {
		font-size: 16px;
		letter-spacing: 1px;
		line-height: 26px;
	}
	
	.ft-contact-info {
        min-width: 100%;
    }
	
	
	
	.radio h3 {
    	font-size: 14px;
    	letter-spacing: 2px;
	}
	
	.radio dl {
		margin-top: 5px;
	}
	
	

}


@media(min-width:451px){
	.pc-none-451{
		display: none;
	}
}


@media(max-width:450px){
	
	#sitemap ul {
        margin-bottom: 60px;
        flex-direction: column;
        padding: 0;
    }
	
	.radio {
		min-width: 100%;
	}
	
		
	.main-area {
        margin: 40px auto;
    }
	
	.main-area h3, .main-area h3 span {
        font-weight: 400;
        font-size: 23px;
        letter-spacing: 1px;
        padding-left: 10px;
    }



}
