@charset "utf-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* モバイルレイアウト : 480 px およびそれ以下. */
#main-menu li:first-child {
    display: none;
}
.gridContainer{
    background-image: url("images/index00.png") ;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}
.topGuide{
    padding: 2.5em 0 0 0;
}
.topGuide p{
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    line-height: 175%;
    color:#fff;
}
.linkBlock{
    background: #FC9AA4;
    box-sizing: border-box;
    padding: 50px 0;
    border-top-left-radius: 50% 30%;
    border-top-right-radius: 50% 30%;
}
.linkBlock > div{
    display: inline-block;
    width: 25%;
    vertical-align: middle;
    border-right: solid 1px #fff;
    box-sizing: border-box;
}
.linkBlock > div:last-child{
    border-right: none;
}
.linkBlock a{
    display: inline-block;
    width: 100%;
    text-align: center;
}
.contents1{
    background: #FC9AA4;
    padding: 0 0 50px 0;
}
h2{
    font-size: 16px;
    line-height: 170%;
    text-align: center;
    margin: 1em 0;
    text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff, 2px -2px 2px #fff, -2px 2px 2px #fff;
}
h2 .large{
    font-size: 25px;
}
.contentBox{
    background: #fff;
    border-radius: 13px;
    padding: 1em 0.5em 3em 0.5em;
    position: relative;
}
.jobList > div{
    display: inline-block;
    box-sizing: border-box;
    width: calc(96% / 2) ;
    margin: 5px 1%;
    vertical-align: top;
}
.jobList .imageBox img{
    width: 100%;
}
.jobList .textBox p{
    text-align: center;
    font-size: 15px;
    margin: 0 0;
}
.contentButtonBlock{
    position: absolute;
    width: 100%;
    bottom: -2em;
    left: 0 ;
    text-align: center;
}
.button3{
    font-size: 25px;
    background: #7CD6C9;
    padding: 0.25em 1em;
    box-shadow: 0 7px 0 0 #fff;
}
.button4{
    font-size: 19px;
    line-height: 170%;
    padding: 0.25 2em;
}
.flowList > div{
    display: inline-block;
    box-sizing: border-box;
    width: 98% ;
    margin: 1em 1%;
    position: relative;
    border-radius: 25px;
    box-shadow: 1px 2px 3px 0px #ccc;
    overflow: hidden;
}
.flowList .imageBox{
    position: relative;
}
.flowList .imageBox img{
    width: 100%;
}
.flowList .label{
    position: absolute;
    top:10%;
    left:10%;
}
.flowList .label h3{
    margin: 0 ;
}
.flowList .textBox{
    position: absolute;
    bottom: 0 ;
    left: 0;
    background: #fff;
    width: 100%;
}
.flowList .textBox p{
    margin: 0.5em 0;
    font-size: 14px ;
    text-align: center;
}
.flowBlock .large, .voiceBlock .large, .supportBlock .large{
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}
.voiceList > div, .supportList > div{
    display: inline-block;
    box-sizing: border-box;
    width: 98% ;
    margin: 1em 1%;
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 1px 2px 3px 0px #ccc;
}
.voiceList .imageBox img{
    width: 100%;
}
.voiceList .textBox{
    position: absolute;
    top:5%;
    left: 5%;
    width: 50%;
}
.supportList .item{
    position: relative;
}
.supportList .imageBox img{
    width: 100%;
}
.supportList .textBox{
    position: absolute;
    bottom:0;
    left: 0;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 0.25em 2em;
}
.supportList .textBox p{
    line-height: 125%;
    font-size: 16px;
    margin: 0 0;
}
.voiceList .textBox p{
    font-size: 16px;
    margin: 0 0;
}

/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.topGuide{
    padding: 12em 0 0 0;
}
.topGuide p{
    font-size: 32px;
}
h2{
    font-size: 19px;
}
h2 .large{
    font-size: 31px;
}
.jobList > div{
    width: calc(94% / 3) ;
    margin: 5px 1%;
}
.jobList .textBox p{
    font-size: 19px;
}
.flowBlock .large, .voiceBlock .large, .supportBlock .large{
    font-size: 24px;
}
.contentBox{
    border-radius: 13px;
    padding: 2em 1em 5em 1em;
}
.button3{
    font-size: 40px;
    padding: 0.25em 2em;
}
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 768px) {
.flowList > div{
    width: calc(94% / 3) ;
    margin: 1em 1%;
}
.flowList .textBox p{
    font-size: 16px ;
}
.voiceList > div, .supportList > div{
    width: calc(96% / 2) ;
}
.voiceList .textBox p, .supportList .textBox p{
    font-size: 19px;
}
.supportList .textBox p{
    font-size: 19px;
}
}