@charset "utf-8";

/*-----------------------------------
   Contents
    last updated: 2025.07.03

    \E/cuppingTest/
------------------------------------*/
#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 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
}

#contents h1 span.productName { 
    font-family: "Shin Go Bold", sans-serif;
    color: white;
}

#contents h1 span.serviceName {
	font-family: "Eras Demi ITC", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 1.8rem;
	color: #40a631;
}

.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 p#breadcrumbs {
	line-height: 1.5;
	color: #000;
	font-size: 0.85rem;
	padding: 10px 30px;
}

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

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

#formContents { padding:  50px; }


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

#article .scroll-x { overflow-x:  auto;}

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

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

#article .basicTable { width: 100%;}

#article .basicTable th { font-weight: normal;}


/* 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: 1023px) {
	
	#article {
		margin-right: 35px;
		margin-left: 30px; 
	}
    
    #contents h1 {
		text-shadow: 2px 2px 3px #000;
		z-index: 99;
	}
}

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


