@CHARSET "UTF-8";
/*******************************************************************************
 * LOOK Planning＆Design Inc.
 * WEB SITE ver.2021
 * RESPONSIVE
 * PC width min-width:768px
 * SP max-width: 767px(iPhone6+ ヨコイチまで)
*******************************************************************************/
@import url(base.css);

/******************************************************************************


 * 画像切り替え.imgSwitch
 
 
******************************************************************************/
.imgSwitch ul.tab {
		display: grid;
        grid-template-columns:repeat(2, 1fr);
        margin-top: 10px;
        gap:10px;
	}
.imgSwitch ul.tab li {
		cursor: pointer;
 		padding: 10px 0 10px;
 		font-size:1.5rem;
		letter-spacing:1.5px;
 		text-align: center;
  		background: #fff;
  		color: #3A3A3A;
  		border: 1px solid #E6E6E6;
        position: relative;
	}
.imgSwitch ul.tab li:after{
        position: absolute;
        content: "";
        clip-path: polygon(0 0, 0 100%, 100% 50%);
        background-color: #E5B26E;
        height: 10px;
        width: 10px;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
    }
.imgSwitch ul.tab li:hover{background:#E6E6E6;}
.imgSwitch ul.tab li.current {
		background:#E5B26E;
		color:#FFF;
  		border: 1px solid #E5B26E;
	}
.imgSwitch div.contents{ margin:0 auto 5px; text-align:center;}
.imgSwitch div.contents>div.content { display: none; }
.imgSwitch div.contents>div.content>img { width:100%; }
.imgSwitch div.contents>div.content:last-child{	display: block;	}
	
@media screen and (max-width:767px){
    .imgSwitch ul.tab li{
		font-size:1.4rem;
	}
}


/******************************************************************************


 * メインイメージ
 
 
******************************************************************************/
#MainImgBox{
	width: 100%;
	max-width:1400px;
	margin:auto;
    position: relative;
}
.MainImg__item:nth-of-type(2) {
	position:absolute;
	left: 0;
	top: 0;
}
.MainImg__item.appear {
    opacity: 1;
	animation: fadeIn 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.MainImg__item.disappear {
	animation: fadeOut 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
	0%{ opacity: 1; }
	100%{ opacity: 0; }
}
@keyframes fadeOut {
	0%{ opacity: 0; }
	100%{ opacity: 1; }
}

.MainImgSwitch{
    position: relative;
}
/**キャッチコピー**/
#MainImgBox h2{
    max-width: 750px;
    width: 80%;
	position:absolute;
    top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    z-index:5;
}
#MainImgBox h2>img{
    height: auto;
    filter: drop-shadow(0px 0px 4px #3f3f3f);
}

/**切り替えボタン**/
.SwitchBtn{
    position: absolute;
    bottom:30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;   
    z-index: 6;
    cursor: pointer;
}
.SwitchBtn>span {
    display: flex;
    flex-shrink: 0;
    font-size: 2rem;
    line-height: 1.3;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    font-weight: bold;
    border: 2px solid #fff;
    color: #fff;
    box-shadow: 0px 0px 4px #aaa;
}
.SwitchBtn.after>span{
    border-radius: 50%;
    background: #E5B26E;
    border: 2px solid #E5B26E;
}
@media screen and (max-width:767px){
    #MainImgBox{
        margin-bottom:30px;
    }
    /**キャッチコピー**/
    #MainImgBox h2{
        top: 40%;
    }
    /**切り替えボタン**/
    .SwitchBtn{
        bottom:10px;
    }
    .SwitchBtn>span {
        font-size: 1.3rem;
        width: 60px;
        height: 60px;
        border: 1px solid #fff;
    }
}


/******************************************************************************


 * problems
 
 
******************************************************************************/
#problems {
	width: 100%;
	margin:80px auto 180px;
}
#problems>h2{
	font-size:3.2rem;
	line-height:1.7;
	color:#EA8B03;
	text-align:center;
	margin:0 0 20px;
}
#problems>h2>span{
	font-size:4.2rem;
	display:block;
}
#problems>h2>em{
	font-size:4.2rem;
	margin-right:2px;
	display:inline-block;
}
#problems>p{
	font-size:2rem;
	line-height:2;
	font-weight:bold;
	text-align:center;
}
#problems>p>span{
	color:#EA8B03;
}
/****/
#problems>ul{
	max-width:1160px;
	margin:0 auto 120px;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 30px;
}
#problems>ul>li{
	background:#F3F4F4;
	text-align:center;
	font-size:2.2rem;
	line-height:1.3;
	font-weight:bold;
	padding:20px 10px;
}
#problems>ul>li>figure{
	margin:0 auto 30px;
}
#problems>ul>li>figure>img{
    width: auto;
	height:140px;
}
#problems>ul>li>p>span{
	color:#EA8B03;
	display:block;
}

/****/
#problems>div>ul{
	width:100%;
	max-width:1400px;
	margin:180px auto 0;
    display: grid;
    grid-template-columns:repeat(2, auto);
    align-items: center;
    gap:60px;
}
#problems>div>ul>li{
    position:relative;
}
#problems>div>ul>li:nth-of-type(1):after{
    content: "";
    position: absolute;
    right:-40px;
    top:50%;
    display: block;
    width: 30px;
    height: 30px;
    border-right: 10px solid #676560;
    border-top: 10px solid #676560;
    transform:  translateY(-50%) rotate(45deg);
}
#problems>div>ul>li>figure{
    position: relative;
}
#problems>div>ul>li>figure>figcaption{
	font-size:3rem;
    position: absolute;
    color: #fff;
    top:4%;
    right:15px;
    text-shadow:1px 1px 3px #333;
}
#problems>div>ul>li:last-of-type>figure>figcaption{
    left: 15px;
}

@media screen and (max-width:767px){
	#problems {
		margin:30px auto 80px;
		padding:0 16px;
	}
	#problems>h2{
		font-size:2rem;
		line-height:1.5;
		margin:30px auto;
	}
    #problems>h2>span{
    	font-size:2.4rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
	#problems>h2>em{
		font-size:3rem;
	}
	#problems>p{
		font-size:1.6rem;
	}
	/****/
	#problems>ul{
		margin:30px 0 50px;
		display: block;
	}
	#problems>ul>li{
		width :100%;
		padding:20px;
		margin:0 0 10px;
		background:#F3F4F4;
		font-size:1.6rem;
		line-height:1.3;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#problems>ul>li>figure{
		margin:0 20px 0 0;
	}
	#problems>ul>li>figure>img{
		width:auto;
		height:50px;
	}
		
	/****/
	#problems>div>ul{
		margin-top:50px;
        display: flex;
        flex-direction: column;
        gap:50px;
	}
	#problems>div>ul>li{
		position:relative;
	}
	#problems>div>ul>li:nth-of-type(1):after{
        left:50%;
        top:auto;
        bottom: -30px;
        width: 20px;
        height: 20px;
        border-right: 5px solid #676560;
        border-top: 5px solid #676560;
        transform:  translateX(-50%) rotate(135deg);
    }
    #problems>div>ul>li>figure{
        text-align: center;
    }
	#problems>div>ul>li>figure>figcaption,
    #problems>div>ul>li:last-of-type>figure>figcaption{
		font-size:2rem;
        left: 50%;
        right:0;
    	transform: translateX(-50%);
	}
}
/******************************************************************************


 * Uses
 
 
******************************************************************************/
#Uses {
	width: 100%;
	margin:100px auto;
    position: relative;
}
#Uses:before,#Uses:after {
    content: "";
    position: absolute;
    left:50%;
    bottom:-100px;
    display: block;
    width: 40px;
    height: 40px;
    border-right: 10px solid #aaa;
    border-top: 10px solid #aaa;
    transform:  translateX(-50%) rotate(135deg);
}
#Uses:after {
    bottom:-130px;
}
#Uses>h2{
	font-size:3.2rem;
	line-height:1.7;
	color:#EA8B03;
	text-align:center;
	margin-bottom:40px;
}
#Uses>section{
	margin-bottom:180px;
}

/****************/
/**** imgBox ****/
/****************/
#Uses .imgBox{
	background:#F7F7F7;
	margin-bottom:50px;
    padding: 20px 0;
}
#Uses .imgBox .imgSwitch{
    max-width: 900px;
	margin:auto;
}
#Uses .imgBox figure{
	position:relative;
}
#Uses .imgBox figcaption{
	position:absolute;
	top:4%;
	left: 50%;
	transform: translateX(-50%);
	font-size:3rem;
	letter-spacing:0.8rem;
	color:#FFF;
    text-shadow:1px 1px 3px #333;
}

/*****************/
/**** flexBox ****/
/*****************/
#Uses>section>div.flexBox{
	width:90%;
	max-width:900px;
	margin:auto;
    display: grid;
    grid-template-columns:36% auto;
    gap: 40px;
}
#Uses>section>div.flexBox>div:first-child{
	text-align:center;
}
#Uses>section>div.flexBox p.title{
	color:#E5B26E;
	font-size:6rem;
	margin-bottom:20px;
	text-align:center;
}
#Uses>#Web>div.flexBox p.title{
	font-size:5rem;
}
#Uses>#Web>div.flexBox>div>figure,
#Uses>#Works>div.flexBox>div>figure{
	width:80%;
	margin:auto;
}
#Uses>section>div.flexBox h3{
	color:#3B3932;
	font-size:2.6rem;
	line-height:1.4;
	margin-bottom:30px;
}
#Uses>section>div.flexBox p.txt{
	font-size:1.5rem;
	font-weight:bold;
	line-height:2;
}
#Uses>section>div.flexBox p.sns{
	margin-top:10px;
    display:inline-grid;
    grid-template-columns:repeat(3, 30px);
    gap: 10px;
}
@media screen and (max-width:767px){
	#Uses {
		margin:30px auto 100px;
	}
    #Uses:before,#Uses:after {
        bottom:-40px;
        display: block;
        width: 20px;
        height: 20px;
        border-right: 5px solid #aaa;
        border-top: 5px solid #aaa;
    }
    #Uses:after {
        bottom:-55px;
    }
	#Uses>h2{
		font-size:2rem;
		line-height:1.5;
		margin:30px auto;
	}
	#Uses>section{
		margin-bottom:50px;
	}
	
    /****************/
    /**** imgBox ****/
    /****************/
    #Uses .imgBox{
        background:#F7F7F7;
        margin-bottom:50px;
        padding: 20px 16px;
    }
    #Uses .imgBox .imgSwitch{
        max-width: 900px;
        margin:auto;
    }
    #Uses .imgBox figure{
        position:relative;
    }
    #Uses .imgBox figcaption{
        position:absolute;
        top:4%;
        left: 50%;
        transform: translateX(-50%);
        font-size:2rem;
        letter-spacing:0.8rem;
        color:#FFF;
    }
	
	/*****************/
	/**** flexBox ****/
	/*****************/
	#Uses>section>div.flexBox{
		width:100%;
        padding:0 16px;
		margin:auto;
		display:block;
	}
	#Uses>section>div.flexBox>div:first-child{
		width:100%;
		margin-bottom:20px;
	}
	#Uses>section>div.flexBox>div:last-child{
		width:100%;
	}
	#Uses>section>div.flexBox p.title{
		font-size:3rem;
		margin-bottom:8px;
	}
	#Uses>section>div.flexBox figure{
		margin:auto
	}
	#Uses>#Web>div.flexBox>div>figure{width:140px;}
	#Uses>#Dm>div.flexBox>div>figure{width:210px;}
	#Uses>#Works>div.flexBox>div>figure{width:180px;}
	#Uses>section>div.flexBox h3{
		color:#3B3932;
		font-size:1.8rem;
		line-height:1.4;
		margin-bottom:10px;
	}
	#Uses>section>div.flexBox p.sns{
		font-size:2rem;
		margin-top:10px;
	}
	#Uses>section>div.flexBox p.sns>img{
		width:24px;
	}
}


/******************************************************************************


 * Guide
 
 
******************************************************************************/
#Guide {
	width: 100%;
	margin:100px auto;
}
#Guide>h2{
	background:#F7F7F7;
	font-size:3.5rem;
	line-height:1.7;
	color:#3B3932;
	text-align:center;
	padding:120px 0 150px;
}
#Guide>h2>span{
	display:block;
	font-size:2.6rem;
	font-weight:bold;
}
#Guide>figure{
	width:70%;
	max-width:900px;
	margin:-100px auto 0;
    position:relative;
}
#Guide>figure>figcaption{
	position:absolute;
	top:4%;
	left:4%;
	font-size:3rem;
	color:#FFF;
    text-shadow:1px 1px 3px #333;
}

/**flexBox**/
#Guide>div.flexBox{
	width:70%;
	max-width:900px;
	margin:50px auto 0;
	display:flex;
	justify-content: center;
}
#Guide>div.flexBox>h3>span{
	display:block;
	background:#E5B26E;
	padding:10px 10px 8px;
	color:#FFF;
	font-size:3.4rem;
	line-height:1.2;
}
#Guide>div.flexBox>h3>span>span{
	display:block;
	font-size:2.4rem;
}
#Guide>div.flexBox>ol{
	display:block;
	font-size:2.4rem;
	margin-left:80px;
}
#Guide>div.flexBox>ol>li{
	font-size:1.8rem;
	line-height:2;
	font-weight:bold;
	list-style-type:decimal;
	text-align:left;
}
#Guide>div.flexBox>ol>li>em{
	background:linear-gradient(transparent 90%, #FF0000 0%);
}
@media screen and (max-width:767px){
	#Guide {
		width: 100%;
		margin:60px auto;
	}
	#Guide>h2{
		font-size:2rem;
		line-height:1.5;
		color:#3B3932;
		text-align:center;
		padding:30px 0 130px;
	}
	#Guide>h2>span{
		display:block;
		font-size:1.8rem;
		font-weight:bold;
		margin-top:10px;
	}
	#Guide>figure{
		width:90%;
		margin:-100px auto 0;
	}
    #Guide>figure>figcaption{
        font-size:2rem;
    }

	/**flexBox**/
	#Guide>div.flexBox{
		width:90%;
		display:block;
		margin:20px auto 0;
	}
	#Guide>div.flexBox>h3>span{
		font-size:2rem;
	}
	#Guide>div.flexBox>h3>span>span{
		display: inline-block;
		font-size:1.6rem;
		margin-right:4px;
	}
	#Guide>div.flexBox>ol{
		display:block;
		margin:20px 0 0 30px;
	}
	#Guide>div.flexBox>ol>li{
		font-size:1.5rem;
		line-height:1.6;
		margin-bottom:10px;
	}
}


/******************************************************************************


 * Price
 
 
******************************************************************************/
#Price {
	background:#F7F7F7;
	width: 100%;
	margin:100px auto 0;
	padding:80px 0;
}
#Price>h2{
	font-size:2.6rem;
	color:#3B3932;
	text-align:center;
	margin-bottom:20px;
}
#Price>h2>span{
	display:table;
	margin:20px auto 0;
	background:#3B3932;
	color:#FFF;
	font-size:2.4rem;
	padding:10px 20px 6px;
}
#Price>p{
	text-align:center;
	font-size:1.5rem;
	line-height:1.6;
	font-weight:bold;
}
#Price>p>a{
	margin:80px auto 0;
	display:table;
	background: #000;
	border-radius: 5px;
	font-size: 2.6rem;
	padding: 20px 80px 15px 50px;
	text-align: center;
	color: #FFF;
	line-height: 1.3;
	letter-spacing: 1.5px;
	position: relative;
	display: inline-block;
	transition: all .3s;
}
#Price>p>a:before{
	position: absolute;
	top: 0;
	bottom: 0;
	right:30px;
	margin: auto;
	content: "";
	vertical-align: middle;
	box-sizing: border-box;
	width: 24px;
	height: 24px;
	border: 1px solid #fff;
	border-radius: 50%;
}

#Price>p>a:after{
	position: absolute;
	top: 0;
	bottom: 0;
	right:39px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#Price>p>a:hover{
	opacity: 0.5;
}
/***/
#Price>div{
	width:90%;
	max-width:960px;
	background:#FFF;
	margin:50px auto 0;
	padding:40px 30px;
	text-align:center;
}
#Price>div>h3{
	font-size:4rem;
	position: relative;
	display: inline-block;
	margin:0 auto 10px;
	padding-left:50px;
}
#Price>div>h3:before{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 18px 0 18px 24px;
	border-color: transparent transparent transparent #FF9615;
	position: absolute;
	top: 50%;
    left: 0;
    transform: translateY(-50%);
}
#Price>div>h3>span{
	display:inline-block;
	margin-left:15px;
	background:#3B3932;
	font-size:4.5rem;
	color:#FFF;
	padding:10px 6px 6px;
}
#Price>div>h3+p{
	text-align:center;
	font-size:2.5rem;
	margin-bottom:20px;
}
#Price>div>p{
	text-align:center;
	font-size:3.6rem;
	font-weight:bold;
	margin-bottom:30px;
}
#Price>div>p>small{
	font-size:2rem;
	font-weight:normal;
}
#Price .imgSwitch{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 30px;
}

@media screen and (max-width:767px){
	#Price {
		margin:60px auto 0;
		padding:60px 16px;
	}
	#Price>h2{
		font-size:2rem;
	}
	#Price>h2>span{
		font-size:1.8rem;
		padding: 6px 20px;
	}
	#Price>p>a{
		margin:30px auto 0;
		font-size:1.8rem;
	}
	/***/
	#Price>div{
		width:100%;
		padding:30px 10px 10px;
	}
	#Price>div>h3{
		font-size:2.2rem;
		line-height:1.2;
		padding-left:30px;
	}
	#Price>div>h3:before{
		border-width: 10px 0 10px 16px;
	}
	#Price>div>h3>span{
		display:inline-block;
		margin-left:10px;
		background:#3B3932;
		font-size:2.2rem;
		color:#FFF;
		padding:0 6px 2px;
	}
	#Price>div>p{
		font-size:2rem;
		line-height:1.3;
	}
    #Price>div>h3+p{
        font-size:1.8rem;
        margin-bottom:10px;
    }
	#Price>div>p>small{
		font-size:1.6rem;
	}
    #Price .imgSwitch{
        grid-template-columns:repeat(1, 1fr);
    }
}


/******************************************************************************


 * Faq
 
 
******************************************************************************/
#Faq {
	background:#F7F7F7;
	width: 100%;
	margin:0 auto 100px;
	padding:100px 0;
}
#Faq>h2{
	font-size:3.5rem;
	color:#3B3932;
	text-align:center;
	margin-bottom:20px;
}
#Faq>h2>span{
	margin-left:10px;
}
/***/
#Faq>div{
	width:90%;
	max-width:1200px;
	margin:50px auto 0;
}
#Faq>div>h3{
	font-size:1.8rem;
	margin:0 10px 10px;
}
#Faq>div>dl{
	background:#FFF;
	border-bottom: 1px solid #ccc;
}
#Faq>div>dl>dt{
	font-size:1.8rem;
	font-weight:bold;
	line-height:1.2;
	color:#EA8B03;
	position:relative;
	cursor: pointer;
	transition: all .5s ease;
	padding:20px 50px 20px 60px;
}
#Faq>div>dl>dt:before{
	content: "Q";
	position: absolute;
	border:#EA8B03 solid 1px;
	border-radius:50%;
	padding:4px 8px;
	left: 15px;
	top: 50%;
    transform: translateY(-50%);
}
#Faq>div>dl>dt:after{
	content: "";
	position: absolute;
	right: 20px;
	top: 42%;
    transform: translateY(-50%);
    width:10px;
    height:10px;
    border-top: 2px solid #8FB0AB;
    border-right: 2px solid #8FB0AB;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
#Faq>div>dl>dt.active:after{
	content: "";
	position: absolute;
	right: 20px;
	top: 42%;
    transform: translateY(-50%);
    width:10px;
    height:10px;
    border-top: 2px solid #8FB0AB;
    border-right: 2px solid #8FB0AB;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#Faq>div>dl>dd{
	font-size:1.5rem;
	line-height:1.6;
	position:relative;
	padding:20px 20px 20px 60px;
}
#Faq>div>dl>dd:before{
	content: "A";
	font-weight:bold;
	position: absolute;
	border:#000 solid 1px;
	border-radius:50%;
	padding:1px 6px 0 7px;
	left: 18px;
	top:20px;
}

@media screen and (max-width:767px){
	#Faq {
		padding:50px 16px 50px;
		margin-bottom:20px;
	}
	#Faq>h2{
		font-size:2rem;
		color:#3B3932;
		text-align:center;
		margin-bottom:20px;
	}
	#Faq>h2>span{
		display:block;
		margin-top:10px;
	}
	/***/
	#Faq>div{
		width:100%;
	}
	#Faq>div>h3{
		font-size:1.8rem;
		margin:0 10px 10px;
	}
	#Faq>div>dl>dt{
		font-size:1.5rem;
	}
	#Faq>div>dl>dt:before{
		padding:4px 8px;
	}
	#Faq>div>dl>dd:before{
		padding:0 8px;
	}
}

/******************************************************************************


 * #Company
 
 
******************************************************************************/
#Company {
	margin:100px auto 130px;
	padding-top:30px;
}
#Company>h2 {
    font-size: 3.5rem;
    color: #3B3932;
    text-align: center;
    margin-bottom: 50px;
}
#Company>table{
	margin:auto;
}
#Company>table th{
	padding:10px;
	width:30%;
	font-weight:normal;
}
#Company>table td{
	padding:10px;
	line-height:1.7;
}
@media screen and (max-width:767px){
	#Company{
		padding:20px 16px 0;
		margin:50px 0 0;
	}
	#Company>h2{
		font-size:1.8rem;
		color: #3B3932;
		text-align: center;
		margin-bottom:20px;
	}
	#Company>table{
		width:100%;
		font-size:1.5rem;
	}
	#Company>table th{
		width:100%;
		background:#efefef;
		display:block;
		padding:10px;
	}
	#Company>table td{
		display:block;
	}
}


/******************************************************************************


 * #Contact
 
 
******************************************************************************/
/** PC ***********************************************************************/
@media screen and (min-width:768px),print{
	#Contact {
		margin: 0 auto;
		padding-top:30px;
	}
	#Contact>h2{
		font-size: 3.5rem;
		color: #3B3932;
		text-align: center;
		margin-bottom:50px;
	}
	#Contact table{
		width:100%;
		max-width:1000px;
		background:#FFF;
		margin:0 auto 20px;
		line-height:1.8;
	}
	#Contact table th,
	#Contact table td{
		border: 1px solid #c8c8c8;
	}
	#Contact table th{
		width:30%;
		text-align:left;
		color:#3a3a3a;
		font-size:1.5rem;
		padding:15px 20px 15px 30px;
		font-weight:normal;
		vertical-align:middle;
	}
	#Contact table th span{
		background:#f94d55;
    	-webkit-border-radius: 3px;
    	-moz-border-radius: 3px;
   	 	border-radius: 3px;
		color:#FFF;
		padding:2px 5px 0;
		font-size:1.2rem;
		float:right;
	}
	#Contact table td{
		text-align:left;
		color:#3a3a3a;
		font-size:1.5rem;
		padding:15px;
		vertical-align:middle;
	}
	#Contact table td input[type="text"],
	#Contact table td textarea{
		width:70%;
		padding:5px;
    	outline: none;
   	 	border: 1px solid #DDD;
    	-webkit-border-radius: 3px;
    	-moz-border-radius: 3px;
    	border-radius: 3px;
   		font-size:1.6rem;
	}
	#Contact table td input.zip{ width:30%;}
	input[type="text"]:focus,
	texture:focus,
	textarea:focus,
	texture:focus{
		box-shadow: 0 0 7px #3498db;
    	border: 1px solid #3498db;
	}
	#Contact table td div label{
		display:block;
		margin:5px 0;
	}
	#Contact table td label>input	{
		margin-right:5px;
		vertical-align:0;
	}
	#Contact table td label>span{
		margin-left:10px;
	}
	/**エラー**/
	#Contact table td p.error{
		margin:0;
    	color:red;
		font-size:1.2rem;
	}
	/**********ボタン***********/
	form>div{
		text-align:center;
	}
	input[type="submit"],
	input[type="reset"],
	input[type="button"]{
		width:200px;
		background: #fff; /* Old browsers */
		background: linear-gradient(to bottom, #fff 0%,#eee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
   		background: -moz-linear-gradient(top, #FFF 0%, #EEE);
    	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
    	border: 1px solid #c8c8c8;
    	color: #111;
    	padding: 15px 0;
		margin:20px 10px 0;
    	-webkit-border-radius: 3px;
    	-moz-border-radius: 3px;
   	 	border-radius: 3px;
		cursor:pointer;
	}
	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover{
		background: #fff; /* Old browsers */
		background: linear-gradient(to bottom, #EFEFEF 0%,#eee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		background: -moz-linear-gradient(top, #EFEFEF 0%, #EEE);
    	background: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#EEE));
	}
/*******************************************
	 			確認画面
********************************************/
	#confirmWrap {
		width:100%;
		margin:100px auto 0;
		padding:50px 0 30px;
		color:#555;
		line-height:120%;
		font-size:90%;
	}
	#confirmWrap p {
		font-size:1.6rem;
		line-height:1.5;
		margin-bottom:30px;
	}
	#confirmWrap table.formTable{
		background:#FFF;
		width:1000px;
		margin:50px auto 20px;
		line-height:1.8;
	}
	#confirmWrap table.formTable td,
	#confirmWrap table.formTable th{
		border: 1px solid #c8c8c8;
		padding:10px;
	}
	#confirmWrap table.formTable th{
		width:35%;
		color:#3a3a3a;
		font-size:1.5rem;
		font-weight:normal;
	}
	#confirmWrap .error_messe{
		margin:5px 0;
		color:red;
	}
/*******************************************
	 		送信完了
********************************************/
	#thanks{
		text-align:center;
		margin:200px 0;
	}
	#thanks>p{
		font-size:2rem;
		line-height:3;
	}
	#thanks>p>a{
		font-size:1.6rem;
		color:#3a3a3a;
		line-height:1.5;
		border:solid #c8c8c8 1px;
		display:table;
		padding:10px 50px;
		margin:50px auto 0;
		background: #fff; /* Old browsers */
		background: linear-gradient(to bottom, #fff 0%,#eee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
   		background: -moz-linear-gradient(top, #FFF 0%, #EEE);
    	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
		-webkit-border-radius: 3px;
    	-moz-border-radius: 3px;
   	 	border-radius: 3px;
	}
}
	
/** SMART PHONE **************************************************************/
@media screen and (max-width:767px){
	#Contact {
		margin:50px auto 0;
		padding:20px 16px;
	}
	#Contact>h2{
		font-size:1.8rem;
		line-height:1.3;
		color: #3B3932;
		text-align: center;
		margin-bottom:20px;
	}
	#Contact table{
		width:100%;
		background:#FFF;
		margin:0 auto 20px;
		line-height:1.8;
	}
	#Contact table td{
		display:block;
	}
	#Contact table th{
		display:block;
		text-align:left;
		background:#ececec;
		color:#3a3a3a;
		font-size:1.5rem;
		padding:10px 15px;
		font-weight:normal;
	}
	#Contact table th span{
		float:right;
		background:#f94d55;
    	-webkit-border-radius: 3px;
    	-moz-border-radius: 3px;
   	 	border-radius: 3px;
		color:#FFF;
		padding:2px 5px;
		font-size:1.2rem;
		margin-left:5px;
	}
	#Contact table td{
		text-align:left;
		color:#3a3a3a;
		font-size:1.5rem;
		padding:15px 10px;
	}
	#Contact table td.other{
		background:#f6f6f4;
	}
	#Contact table td input[type="text"],
	#Contact table td textarea{
		width:100%;
		padding:8px;
    	outline: none;
   	 	border: 1px solid #DDD;
    	-webkit-border-radius: 3px;
    	-moz-border-radius: 3px;
    	border-radius: 3px;
   		font-size: 1.6rem;
	}
	#Contact table td input.zip{ width:50%;}
	input[type="text"]:focus,
	texture:focus,
	textarea:focus,
	texture:focus{
		box-shadow: 0 0 7px #3498db;
    	border: 1px solid #3498db;
	}	
	#Contact table td label{
		display:block;
		margin:3px 0;
	}
	#Contact table td label span{
		display:block;
		vertical-align:top;
		margin-left:30px;
	}
	#Contact table td label input{
		float:left;
		width:20px;
		height:20px;
		margin:4px 5px 0 0;
	}
	#Contact table td textarea{
		margin-top:5px;
	}
	/**エラー**/
	#Contact table td p.error{
		margin:0;
    	color:red;
		font-size:1.2rem;
	}
	/**********ボタン***********/
	form>div{
		text-align:center;
	}
	input[type="submit"],
	input[type="reset"],
	input[type="button"]{
		width:120px;
		background: #fff; /* Old browsers */
		background: linear-gradient(to bottom, #fff 0%,#eee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
   		background: -moz-linear-gradient(top, #FFF 0%, #EEE);
    	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
    	border: 1px solid #c8c8c8;
    	color: #111;
    	padding: 15px 0;
		margin: 0 10px 20px;
    	-webkit-border-radius: 3px;
    	-moz-border-radius: 3px;
   	 	border-radius: 3px;
		cursor:pointer;
	}
/*******************************************
	 			確認画面
********************************************/
	#confirmWrap {
		width:100%;
		margin:20px auto 0;
		padding:30px 16px 20px;
		color:#555;
		line-height:120%;
		font-size:90%;
	}
	#confirmWrap p {
		font-size:1.6rem;
		line-height:1.5;
		margin-bottom:30px;
	}
	#confirmWrap table.formTable{
		width:100%;
		border:#d3d3d3 solid 1px;
		background:#FFF;
		margin:30px auto 20px;
		line-height:1.8;
	}
	#confirmWrap table.formTable td{
		display:block;
		padding:10px 10px;
	}
	#confirmWrap table.formTable th{
		display:block;
		text-align:center;
		background:#ececec;
		color:#3a3a3a;
		font-size:1.5rem;
		padding:10px 0;
		font-weight:normal;
	}
	#confirmWrap .error_messe{
		margin:5px 0;
		color:red;
	}

/*******************************************
	 		送信完了
********************************************/
	#thanks{
		text-align:center;
		margin:70px 0 50px;
	}
	#thanks>p{
		font-size:1.6rem;
		line-height:2;
	}
	#thanks>p>a{
		font-size:1.6rem;
		color:#3a3a3a;
		line-height:1.5;
		border:solid #c8c8c8 1px;
		display:table;
		padding:10px 50px;
		margin:50px auto 0;
		background: #fff; /* Old browsers */
		background: linear-gradient(to bottom, #fff 0%,#eee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
   		background: -moz-linear-gradient(top, #FFF 0%, #EEE);
    	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
		-webkit-border-radius: 3px;
    	-moz-border-radius: 3px;
   	 	border-radius: 3px;
	}
}

