﻿@charset "UTF-8";
/* CSS Document */
/*=========================================== 
スマホ向けのレイアウトの指定：～768px 
===========================================*/
@media only screen and (min-width: 0px) {

body{
	overflow-x: hidden;
}
	
#container{
	width:100%;
	margin:0 auto;
	overflow: hidden;
}

#wrapper{
	width:100%;
	margin:0 auto;
}

/*メインビジュアル*/
.mv{
	background-image: url("../images/solicitation_mv.jpg");
	background-size: cover;
}


/*コンテンツ*/
.contents{
	width:90%;
	margin: 60px auto 0;
  text-align: center;
}
.contents h2.heading{
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
  color: rgb(26,128,92);
	text-align: center;
	letter-spacing: 0.20em;
  margin-bottom: 40px;
  display: inline-block;
}

/*下線をつける*/
.contents h2.heading::after{
  content: " ";
  display: block;
  border-bottom: 3px solid rgb(228,216,80);
  width: 80%;
  margin: 20px auto 0;
}
.contents .work:nth-of-type(2) h2.heading::after{
  border-bottom: 3px solid rgb(231,118,151);
}

.contents img{
  width: 100%;
  height: auto;
}
.contents p{margin-bottom: 20px;}
.contents p a.financial {color: rgb(26,128,92);}
.contents p.name{text-align: right;}
}


/*=========================================== 
PC向けのレイアウトの指定：768px〜
===========================================*/
@media only screen and (min-width: 769px) {

#container{
	width:100vw;
}

/*コンテンツ*/
.contents{
	width: auto;
	max-width: 940px;
	padding: 0 10px;
}
.contents h2.heading{
	font-size: 36px;
	font-size: 3.6rem;
  margin-bottom: 60px;
}
.contents img{
  width: 100%;
  height: auto;
}
.contents p{margin-bottom: 40px;}
}


/*=========================================== 
PC向けのレイアウトの指定：960px〜
===========================================*/
@media only screen and (min-width: 961px) {

.contents .list .left-side{
	float: left;
}

.contents .list .right-side{
	float: right;
}
}
