@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Noto+Sans+JP:wght@100..900&display=swap');

/*-----------------------
   Contents
------------------------*/
#wrapper,
header, footer { max-width: 1250px; }

#contents { background-color: #E8E8E8; }

#themeColor {
	height: 25px;
	background: rgb(35,115,27);
	background: -moz-linear-gradient(top,  rgba(35,115,27,1) 0%, rgba(14,83,7,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(35,115,27,1) 0%,rgba(14,83,7,1) 100%);
	background: linear-gradient(to bottom,  rgba(35,115,27,1) 0%,rgba(14,83,7,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#23731b', endColorstr='#0e5307',GradientType=0 );
}

#titles {
	background-color: #262626;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 10px 25px 10px 30px;
    gap: 10px;
}

#contents h1 {
	font-family: "Eras Demi ITC", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 1.8rem;
	margin: 0;
	color: #40a631;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

#contents h1 span {
	color: white;
	font-size: 1.2rem;
	margin-left: 1rem;
}

.robots {
	font-size: 0.95rem;
	margin: 50px 50px 0;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.robots dt { flex-shrink: 0;}

.robots dd {
	color: black;
}

#contents h2 {
	font-size: 110%;
	margin-bottom: 20px;
}

#contents h3 {
	font-size: 100%;
	margin-bottom: 10px;
}

#contents p {
	line-height: 1.5;
	margin-bottom: 0.5em;
}

/* 右上ナビ*/
nav#rightNavi {
	margin: 0 0 0 auto;
}

nav#rightNavi ul {
	display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav#rightNavi ul li {
	list-style: none;
	height: 80px;
}

nav#rightNavi ul li#toHome { background: url("../../../common/images/Top.png") no-repeat; }
nav#rightNavi ul li#toTryRent { background: url("../../images/categoryTop.png") no-repeat; }

nav#rightNavi ul li a {
	display: block;
	width: 86px;
	height: 80px;
}


/* パンくずリスト*/
#contents nav#breadcrumbs {
	line-height: 1.5;
	color: #000;
	font-size: 0.85rem;
	padding: 10px 30px;
}

#contents nav#breadcrumbs ul { 
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
}

#contents nav#breadcrumbs a {
	text-decoration: none;
	color: #000;
}

#contents nav#breadcrumbs a:hover {
	color: darkgreen;
	text-decoration: underline;
}

#contents nav#breadcrumbs li:not(:last-child)::after {
    content: "　＞";
    font-size: 0.55rem;
}

/* 申し込みフォーム */
#application {
    max-width: 1025px;
	margin: 50px auto 0;
}

#application .formHeader .text {
    display: flex;
    align-items: flex-start;
    gap: 12px 50px;
    color: #4A4A4A;
    padding-bottom: 50px;
}

#application .formHeader img { 
    max-width: 150px;
    height: auto;
    flex-shrink: 0;
}

#application .formHeader h3 {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
    font-style: normal;
    color: seagreen;
    text-align: center;
    padding-bottom: 32px;
}

#application .formHeader h2 {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-optical-sizing: auto;
    font-style: normal;
    color: #3E3731;
    background-color: rgba(0,0,0,0);
    border-top: 3px solid #7F7B75;
    border-bottom: 3px solid #7F7B75;
    padding-top: 22px;
    padding-bottom: 22px;
    margin: 0 0 32px 0;
    text-align: center;
}

#application .formHeader h4 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-optical-sizing: auto;
    font-style: normal;
    margin-bottom: 0.5rem;
}

#application .formHeader p:last-child {
    text-align: right;
    margin-top: 50px;
}


#application iframe {
	border: none;
	width: 100%;
	height: calc(100vh - 100px);
}


/* article */
#article {
	margin: 50px 50px 0 50px;
	color: black;
	font-size: 0.95rem;
	line-height: 1.5;
}

#article a {
	color: dodgerblue;
	text-decoration: none;
}

#article a:hover {
	text-decoration: underline;
}


/* modal */
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
	left: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
}



@media only screen and (max-width: 1025px) {
    
   #contents nav#breadcrumbs {  padding: 15px 22px; }
	
	#article {
		margin-right: 35px;
		margin-left: 30px; 
	}
    
    #contents h1 {
		text-shadow: 2px 2px 3px #000;
		z-index: 99;
	}
	
	#contents h1 span {
		display: none;
	}
    
    #application {
        padding-right: 50px;
        padding-left: 50px;
    }
    
}

@media only screen and (max-width: 850px) {
    .robots {
        margin: 50px 30px 0;
        align-items: flex-start;
    }
}

/* -SP- -599px */
@media screen and (max-width: 599px){
    
   #contents nav#breadcrumbs {  padding: 15px 15px; }
    
    #application {
        padding-right: 22px;
        padding-left: 22px;
    }
    
    #application .formHeader .text {
        flex-direction: column-reverse;
        justify-content: center;
    }
    
    #application .formHeader img { max-width: 100px; }
    
    #application .formHeader p:last-child { margin-top: 22px; }

}


