@charset "UTF-8";

/* fullSlideShow
===================================*/
#fullSlideShow {
  position: relative;
    width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../images/MainVisual_bg.webp);
}
/*
#fullSlideShow {
	width: 100%;
	text-align: left;
	position: relative;
	overflow: hidden;
}

#fullSlideShow ul {
	top: 50%;
	left: 50%;
	width: 100%;
	position: fixed;
	overflow: hidden;
	z-index: 1;
}

#fullSlideShow ul li {
	top: 0;
	left: 0;
	width: 100%;
	display: none;
	position: absolute;
}

#fullSlideShow ul li img {
    width: 100%;
    background-position: center bottom;
}

#fullSlideShow ul li:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
	transition: opacity 0.2s linear;
}
*/
#fullSlideShow .MainTitle {
	position: absolute;
	z-index: 80;
	top: 0.4%;
	left: 0.4%;
    /*animation*/
    transition: all 0.5s;
}

#fullSlideShow .MainLabel {
	position: absolute;
	z-index: 80;
	bottom: 1.5%;
	right: 1%;
    text-align: right;
    /*animation*/
    transition: all 0.5s;
}

#fullSlideShow .MainObi {
    width: 100%;
    position: absolute;
    z-index: 80;
    bottom: 0;
    left: 0;
    padding: 0.8em 1em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #258D3F;
}

#fullSlideShow .MainTitle img,
#fullSlideShow .MainLabel img{
	max-width: 100%;
    height: auto;
    /*animation*/
    transition: all 0.5s;
}

#fullSlideShow .MainTitle img{
    width: auto;
    max-height: 88vh;
}

#fullSlideShow h2 {
	font-family:  'Noto Sans JP', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size: 3.0vw;
    font-weight: 900;
	line-height: 1.4;
	color: #FFFFFF;
	text-align: center;
}

#fullSlideShow h2 span{
	font-size: 2.6vw;
}

#fullSlideShow .dwn {
	position: absolute;
	z-index: 80;
	left: 50%;
	right: auto;
	bottom: 4%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	font-weight: 300;
}

.page-scroll {
    width: 60px;
    height: 60px;
    margin-top: 15px;
    padding: 2px 11px;
    /*border: 2px solid #FFF;
    border-radius: 100%!important;*/
    font-size: 4.0rem;
    color: #FFF;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.page-scroll:hover,
.page-scroll:focus {
    outline: 0;
    color: #FFF;
    /*background: rgba(0,0,0,.1);*/
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}

.page-scroll i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.page-scroll:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

#fullSlideShow .ccm {
	position: absolute;
	z-index: 99;
	top: 20px;
	right: 20px;
    /*animation*/
    transition: all 0.5s;
}

/* SideNavi
------------------------------------
.fullSlideShow .btnPrev,
.fullSlideShow .btnNext {
    margin-top: -29px;
    top: 50%;
    width: 26px;
    height: 58px;
    position: fixed;
    z-index: 10;
}
.fullSlideShow .btnPrev {
	left: 20px;
	background-color: transparent;
	background-image: url(../images/fsnav_prev.png);
	background-repeat: no-repeat;
	background-position: center center;
}
.fullSlideShow .btnNext {
	right: 20px;
	background-color: transparent;
	background-image: url(../images/fsnav_next.png);
	background-repeat: no-repeat;
	background-position: center center;
}
------------------------------------*/

/* アニメーション設定 */

.arrowWrap {
	position: absolute;
	z-index: 22;
	right: 10px;
	bottom: 30px;
	height: 180px
}
.arrowInner p {
	font-size: 12px;
	color: #F7B52C;
	text-align: end;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.arrow {
	width: 1px;
	height: 90px;
	margin: 20px auto 0;
	background-color: #EEEEEE;
	position: relative;
	overflow: hidden;
}
.arrow::before {
	content: '';
	width: 1px;
	height: 90px;
	margin: 50px auto 0;
	background-color: #F7B52C;
	position: absolute;
	top: -150px;
	left: 0;
	-webkit-animation: arrow 2.5s ease 0s infinite normal;
	animation: arrow 2.5s ease 0s infinite normal;
}
 @keyframes arrow {
 0% {
 -webkit-transform: translate3d(-50%, 0, 0);
 transform: translate3d(-50%, 0, 0);
}
 60% {
 -webkit-transform: translate3d(-50%, 100px, 0);
 transform: translate3d(-50%, 100px, 0);
}
 100% {
 -webkit-transform: translate3d(-50%, 100px, 0);
 transform: translate3d(-50%, 100px, 0);
}
}

/* global_nav
===================================*/

#global_nav {
	width: 100%;
    /*position: absolute;
    z-index: 88;
    bottom: 90px;
    left: 0;*/
    overflow: hidden;
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

#global_nav div {
	font-size: 1.4rem;
    line-height: 1.5;
	text-align: center;
	margin: 0 6px;
}

#global_nav div a {
    display: block;
    padding: 0.5em 1.2em;
    background-color: #FFFFFF;
    color: #258D3F;
    border-radius: 10px;
    transition: all 0.5s;
}

#global_nav div a:hover {
    background-color: #F7B52C;
    color: #FD531E;
}



/* top_contents
===================================*/

#top_contents {
	width: 100%;
	overflow: hidden;
	background-color: #FFFFFF;
	z-index: 1;
	position: relative;
    padding-top: 4em;
}

#top_contents h3 {
	font-size: 3.6rem;
	font-weight: 900;
    letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 1em;
}

#top_contents h3 em {
	font-size: 6.0rem;
    font-weight: 900;
}

#top_contents h3 span {
	font-size: 2.8rem;
}

#top_contents h4 {
	font-size: 3.6rem;
	font-weight: 900;
    letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 0.5em;
}

#top_contents h4 span{
	font-size: 2.0rem;
    display: block;
    line-height: 1.2;
}

#top_contents p.read {
	font-size: 1.6rem;
	text-align: center;
	margin-bottom: 2em;
}

#top_contents p.read em {
	color: #FD5723;
    font-weight: 500;
}

#top_contents p.lead_ul {
    display: inline;
	font-size: 2.4rem;
    font-weight: 700;
	text-align: center;
    background: linear-gradient(transparent 60%, #FFFF00 30%);
    margin: 2em auto 0;
}

@media only screen and (min-width:1px) and (max-width:768px) {
#top_contents p.lead_ul {
	font-size: 2.0rem;
}
}
@media only screen and (min-width:1px) and (max-width:470px) {
#top_contents p.lead_ul {
	font-size: 1.6rem;
}
}
    
/* top_step
===================================*/

#top_step {
	width: 100%;
	position: relative;
}
#top_step .inner {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 3em;
}
#top_step ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
    padding-top: 2.5em;
}

#top_step li {
    width: 22.6%;
    vertical-align: top;
    background-color: #F5F5F5;
    position: relative;
}

#top_step li:last-child{
    background-color: #FFFFFF;
}

.step {
	width: 100%;
    text-align: center;
    position: absolute;
	top: -80px;
    left: 0;
	z-index: 2;
}

.step_ph {
	position: relative;
	text-align: center;
    margin-bottom: 1.5em;
}

.step img,
.step_ph img {
	max-width: 100%;
	height: auto;
}

#top_step h5 {
    text-align: center;
    font-size: 4.0rem;
    font-weight: 900;
    line-height: 1.2;
    border-bottom: 1px solid #31A134;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#top_step h5.comp {
    font-size: 5.0rem;
    color: #31A134;
    margin-bottom: 0;
}

#top_step p {
    font-size: 1.4rem;
    line-height: 1.4;
	text-align: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.step_arrow {
	position: absolute;
	top: 43%;
    left: -50px;
    z-index: 3;
}

#top_step p.flow {
    width: 100%;
	display: block;
	padding-top: 20px;
}


/* top_point
===================================*/

#top_point {
	width: 100%;
	position: relative;
}

#top_point .inner {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 5em;
}
#top_point ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

#top_point li {
    width: 32%;
    vertical-align: top;
    background-color: #F0EFEA;
    border-radius: 10px;
    padding-top: 50px;
    padding-right: 20px;
    padding-bottom: 30px;
    padding-left: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.point_ph {
	position: relative;
	text-align: center;
    margin-bottom: 2em;
}

.point {
    position: absolute;
    top: -35px;
    left: 0;
    z-index: 3;
    width: 100%;
    text-align: center;
}

.point img,
.point_ph img {
	max-width: 100%;
	height: auto;
}

#top_point h5 {
    text-align: left;
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: #FD531E;
}

#top_point h5 span{
    font-size: 2.4rem;
}

#top_point p {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
	text-align: center;
    margin-bottom: 0;
}


/* top_company
===================================*/

#top_company {
	width: 100%;
	position: relative;
}

#top_company .inner {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 3em;
}

#top_company ul {
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

#top_company li {
    /*width: 18%;
    margin: 1% 1%;*/
    vertical-align: middle;
    width: 30%;
    margin: 1.5% 1.5%;
}

#top_company li img {
    max-width: 100%;
    height: auto;
}

/* top_sample
===================================*/

#top_sample {
	width: 100%;
	position: relative;
    background-color: #F8F8E2;
}

#top_sample .inner {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
    padding-top: 3em;
	padding-bottom: 4em;
}

#top_sample p.caption {
	font-size: 1.2rem;
}

#top_sample p.caption span {
	font-weight: bold;
	/*font-size: 1.2rem;*/
}

#top_sample p.price {
	font-size: 1.6rem;
    font-weight: 700;
    color: #FD5723;
}

#top_sample p.price em{
	font-size: 3.2rem;
    font-weight: 700;
}

#top_sample ul {
	width: 100%;
	padding-left: 40px;
	padding-right: 40px;
}

#top_sample li {
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: top;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -ms-transition: opacity 0.5s ease-out;
    text-align: left;
}

#top_sample li .inside{
    padding: 20px;
    border-radius: 10px;
    /*background-color: #F5F5F5;*/
    background-color: #FFFFFF;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.slider {
	width: 100%;
}

.sample_ph {
	overflow: hidden;
	margin-bottom: 1em;
	position: relative;
	text-align: center;
}

.sample_ph img {
	width: 100%;
	height: auto;
    max-height: 315px;
    object-fit: cover;
	transition: transform 0.25s ease-out;
	transform: scale(1.00);
}



/* top_faq
===================================*/

#top_faq {
	width: 100%;
	background-color: #F0EFEA;
}

#top_faq .inner {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 3em;
	padding-bottom: 6em;
	position: relative;
}

#top_faq ul {
	width: 90%;
    margin: 0 auto;
    padding-top: 2em;
}

#top_faq li {
    width: 100%;
    text-align: left;
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom: 1px solid #FFFFFF;
}

#top_faq h5 {
	background-image: url(../images/faq_tab.png);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 5px;
    padding-left: 40px;
    margin-bottom: 10px;
    font-size: 2.0rem;
	font-weight: 700;
    letter-spacing: 0.1em;
    text-align: left;
}

#top_faq p {
	font-size: 1.6rem;
    text-align: justify;
    padding-left: 40px;
}

#top_faq p span {
	font-size: 1.8rem;
	color: #FD531E;
	display: block;
}

#top_faq .btn_set p.asap {
    font-size: 3.2rem;
    font-weight: 900;
	text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 40px;
    margin-bottom: 0.5em;
}



/* top_review
===================================*/

#top_review {
	width: 100%;
	/*background-color: #F0EFEA;*/
    background-color: #F8F8E2;
}

#top_review .inner {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 3em;
	padding-bottom: 6em;
	position: relative;
}

#top_review ul {
	width: 90%;
    margin: 0 auto;
    padding-top: 2em;
}

#top_review li {
    width: 100%;
    text-align: left;
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom: 1px solid #FFFFFF;
}

#top_review h5 {
	/*background-image: url(../images/faq_tab.png);
	background-repeat: no-repeat;
	background-position: left top;*/
	padding-top: 5px;
    /*padding-left: 40px;*/
    margin-bottom: 10px;
    font-size: 2.0rem;
	font-weight: 700;
    letter-spacing: 0.1em;
    text-align: left;
}

#top_review h5 span {
	font-size: 2.3rem;
	color: #FD531E;
	padding-right: 15px;
	display: inline;
}

#top_review p {
	font-size: 1.6rem;
    text-align: justify;
    padding-left: 90px;
}

#top_review p span {
	font-size: 1.8rem;
	color: #FD531E;
	display: block;
}

#top_review .btn_set p.asap {
    font-size: 3.2rem;
    font-weight: 900;
	text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 40px;
    margin-bottom: 0.5em;
}


/* top_message
===================================*/

#top_message {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    background-color: #F0EFEA;
    background-image: url(../images/top_message_bg.webp);
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
}

#top_message .inner{
    max-width: 100%;
    text-align: center;
    overflow: hidden;
    padding-top: 0em;
    padding-bottom: 40em;
}

#top_message h3 {
	font-family: 'Noto Serif JP', 'Times New Roman', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HiraMinProN-W3', 'HGS明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
    font-size: 3.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2em;
}

#top_message p.message {
    font-size: 2.0rem;
    font-weight: 700;
    text-align: center;
    line-height: 2.4;
}













/* ==============================================================================
[Media Queries] 
============================================================================== */


@media only screen and (min-width:1px) and (max-width:960px) {

/* fullSlideShow
===================================*/

#fullSlideShow .MainLabel img{
	max-width: 80%;
    height: auto;
}

/* top_step
===================================*/

#top_step li {
    padding-bottom: 1em;
}

#top_step h5 {
    font-size: 2.4rem;
}

#top_step h5.comp {
    font-size: 2.8rem;
}

#top_step p {
    font-size: 1.4rem;
}

.step_arrow {
	top: 30%;
}

/* top_point
===================================*/

#top_point h5 {
    font-size: 3.2rem;
}

#top_point h5 span{
    font-size: 2.2rem;
}

} /*@mediaEnd*/


@media only screen and (min-width:1px) and (max-width:740px) {

/* fullSlideShow
===================================*/

#fullSlideShow .MainLabel img{
	max-width: 60%;
    height: auto;
}

/* global_nav
===================================*/

#global_nav {
	display: none;
}

/* top_contents
===================================*/

#top_contents {
    padding-top: 3em;
}

#top_contents h3 {
	font-size: 3.2rem;
}

#top_contents h3 em {
	font-size: 5.0rem;
}

#top_contents h3 span {
	font-size: 2.4rem;
}

#top_contents h4 {
	font-size: 3.2rem;
}

#top_contents p.read {
	font-size: 1.4rem;
}


/* top_step
===================================*/

#top_step .inner {
	margin-bottom: 3em;
}

#top_step ul {
    padding-top: 2em;
}

#top_step li {
    width: 22.6%;
}

.step {
	width: 100%;
	top: -60px;
    text-align: center;
}

.step img{
    max-width: 80%;
}
    
.step_ph {
	position: relative;
	text-align: center;
    margin-bottom: 1.5em;
}

.step_ph img {
	max-width: 100%;
	height: auto;
}

#top_step h5 {
    font-size: 2.0rem;
}

#top_step h5.comp {
    font-size: 2.4rem;
}

#top_step p {
    font-size: 1.2rem;
}

.step_arrow {
	position: absolute;
	top: 20%;
    left: -30px;
}

.step_arrow img{
	max-width: 80%;
    height: auto;
}

/* top_point
===================================*/

#top_point .inner {
	margin-bottom: 3em;
}

#top_point h5 {
    font-size: 3.0rem;
}

#top_point h5 span{
    font-size: 2.0rem;
}

#top_point p {
    font-size: 1.2rem;
}

/* top_message
===================================*/

#top_message h3 {
    font-size: 2.8rem;
}

#top_message p.message {
    font-size: 1.6rem;
}
    
} /*@mediaEnd*/













/* ==============================================================================
[Media Queries] 
============================================================================== */

@media only screen and (min-width:1px) and (max-width:480px) {
    
/* fullSlideShow
===================================*/

#fullSlideShow .MainTitle {
    width: 100%;
    text-align: left;
    padding: 20px;
    /*top: 0;*/
	top: 40px;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 33;
}

#fullSlideShow .MainLabel {
    top: 250px;
    /*left: 20px;
	right: auto;
	text-align: left;*/
	right: 20px;
	bottom: auto;
    text-align: right;
	z-index: 11;
}

#fullSlideShow .MainLabel img{
    max-width: 50%;
    height: auto;
}

#fullSlideShow .btn_set {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
	bottom: 30px;
    z-index: 22;
}
    
#fullSlideShow .btn_set p.asap{
    /*color: #FD531E;*/
    color: #FFFFFF;
    font-size: 1.6rem;
     padding: 0 30px;
    margin-bottom: 0.5em;
}

#fullSlideShow .btn_set p.asap:before, .btn_set p.asap:after {
    content: '';
    position: absolute;
    bottom: 14px;
    display: inline-block;
    width: 18px;
    height: 2px;
    background-color: #F7B52C;
}

#fullSlideShow .ccm {
	/*top: 74px;*/
	right: 20px;
	max-width: 90px;
}
    

/* top_contents
===================================*/

#top_contents {
    padding-top: 0em;
}

#top_contents h3 {
	font-size: 2.8rem;
}

#top_contents h3 em {
	font-size: 3.6rem;
}

#top_contents h3 span {
	font-size: 2.0rem;
}

#top_contents h4 {
	font-size: 2.4rem;
}

#top_contents p.read {
	font-size: 1.2rem;
}

#top_contents p.read br{
	display: none;
}

/* top_step
===================================*/

#top_step .inner {
	margin-bottom: 1em;
}

#top_step ul {
    width: 80%;
    margin: 0 auto;
    padding-top: 1em;
}

#top_step li {
    width: 100%;
    padding-bottom: 1.5em;
	margin-bottom: 7em;
}
    
#top_step li:last-child {
	margin-bottom: 0px;
}

.step {
	width: 100%;
	top: -55px;
    text-align: center;
}

.step img{
    max-width: 40%;
}
    
.step_ph {
    margin-bottom: 1em;
}

#top_step h5 {
    font-size: 2.0rem;
}

#top_step h5 br{
    display: none;
}
    
#top_step h5.comp {
    font-size: 2.4rem;
}

#top_step p {
    font-size: 1.2rem;
}
    
.step_arrow {
	position: absolute;
    width: 100%;
    text-align: center;
	top: -110px;
    left: 0;
}

.step_arrow img{
	max-width: 60%;
    transform:rotate(90deg);
}

#top_step p.flow {
    display: none;
}

/* top_point
===================================*/

#top_point ul {
	width: 80%;
	margin: 0 auto;
}
    
#top_point li {
	width: 100%;
	margin-bottom: 4em;
}
    
#top_point li:last-child {
	margin-bottom: 0px;
}

.point_ph {
    margin-bottom: 1em;
}

.point {
    top: -35px;
}

.point img {
	max-width: 80%;
	height: auto;
}

#top_point h5 {
    font-size: 2.4rem;
}

#top_point h5 br{
    display: none;
}
    
#top_point h5 span{
    font-size: 2.0rem;
}

#top_point p {
    font-size: 1.2rem;
}

/* top_company
===================================*/

#top_company .inner {
	margin-bottom: 0em;
}

#top_company li {
    vertical-align: middle;
    width: 46%;
    margin: 2% 2%;
}

/* top_sample
===================================*/


#top_sample .inner {
	padding-top: 1.5em;
	padding-bottom: 2em;
}

#top_sample li {
	padding-left: 0px;
	padding-right: 0px;
}

.sample_ph img {
	width: 100%;
	height: auto;
    max-height: 230px;
}
    
/* top_faq
===================================*/

#top_faq .inner {
	padding-top: 3em;
	padding-bottom: 0em;
}

#top_faq ul {
	width: 100%;
    padding-top: 1em;
}

#top_faq li {
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
}

#top_faq h5 {
    font-size: 1.6rem;
    letter-spacing: 0;
}

#top_faq p {
	font-size: 1.2rem;
}

#top_faq p span {
	font-size: 1.4rem;
}

#top_faq .btn_set p.asap{
    font-size: 2.4rem;
    padding: 0 30px;
    margin-bottom: 0.5em;
}
    
/* top_message
===================================*/

#top_message .inner{
    max-width: 100%;
    text-align: center;
    overflow: hidden;
    padding-top: 0em;
    padding-bottom: 30em;
}

#top_message h3 {
    font-size: 2.4rem;
    margin-bottom: 2em;
}

#top_message p.message {
    font-size: 1.4rem;
    text-align: left;
    line-height: 2.0;
}

} /*@mediaEnd*/