body {
	margin:0;
	padding:0;
}
* {
	box-sizing:border-box;
}

@media only screen and (max-width: 599px) {
	.sp_only {
		display: block;
	}
	.tablet_only {
		display: none;
	}
	.pc_only {
		display: none;
	}
	.pc_tablet_only {
		display:none;
	}
	.ie_only {
		display: none;
	}
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
	.sp_only {
		display: none;
	}
	.tablet_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
	.pc_tablet_only {
		display:block;
	}
	.ie_only {
		display: none;
	}
}

@media only screen and (min-width: 1025px) {
	.sp_only {
		display: none;
	}
	.tablet_only {
		display: none;
	}
	.pc_only {
		display: block;
	}
	.pc_tablet_only {
		display:block;
	}
	.ie_only {
		display: none;
	}
}




/* ********** WRAP ********** */
@media only screen and (max-width: 599px){
	.wrapper {
		color:#111;
	}
}
@media only screen and (min-width: 600px) and (max-width:1024px) {
	.wrapper {
		padding:0 2rem;
		color:#111;
	}
}
@media only screen and (min-width: 1100px) {
	.wrapper {
		width: 1100px;
		margin-left: auto;
		margin-right: auto;
		color:#111;
	}
}



/* ********** fluid-box ********** */
.fluid-box {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.fluid-box-inner {
    margin: 0 auto;
    max-width: 1100px;
}



/* ********** flexbox ********** */
.flexbox,
.flexbox-center {
    display: block;
}

.flexbox-item-2col {
    width: 100%;
}

.flexbox-item-3col {
    width: 100%;
}

.flexboxsp {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
    
.flexbox-centersp {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
	justify-content: center;
}

.flexbox-item-2colsp {
    width: 48%;
}

.flexbox-item-3colsp {
    width: 32.1%;
}



@media only screen and (min-width: 768px) {
    .flexbox {
        width: 100%;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    
    .flexbox-center {
        width: 100%;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: space-between;
        /* align-items: flex-end; */
    }

    .flexbox-item-2col {
        width: 48%;
    }

    .flexbox-item-3col {
        width: 30%;
    }
    
    .order01 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .order02 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
}



/* ********** top_fixed ********** */
.top_fixed {
    //position: fixed;
    position: relative;
    width: 100vw;
    z-index: 10;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0.25em 0 rgba(216, 216, 216, 0.1), -0.25em 0.25em 0.25em rgba(216, 216, 216, 0.2);
}
    
.board-nav-list {
    border-top: 1px solid #fff;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.board-nav-list li {
    width: 50%;
}

.board-nav li a {
    font-size: .75rem;
    color: #fff;
    letter-spacing: .05em;
    padding: 1.7rem 0 1rem;
    display: block;
    text-align: center;
    transition: .5s;
}

.board-nav li:nth-of-type(1) a {
    color: #fff;
    background-color: #3F5776;
}

.board-nav li:nth-of-type(2) a {
    border-left: 1px solid #fff;
    color: #fff;
    background-color: #dc815b;
}

.board-nav li div::after {
    content: "\f105";
    font-family: FontAwesome;
    margin-left: 0.5em;
}


@media only screen and (min-width: 768px) {
    .board-nav li a {
        font-size: .8rem;
        padding: 1rem 0;
    }

    .board-nav li:nth-of-type(1) a:hover {
        opacity: .7;
    }

    .board-nav li:nth-of-type(2) a:hover {
        opacity: .7;
    }
}
    
    
/* ********** breadcrumb ********** */
.breadcrumb {
    display:flex;
    flex-wrap: wrap;
    margin: 0.7rem auto 0.5rem;
    padding: 0 0.3rem;
    font-size: 11px;
    color: #111;
}
.breadcrumb li {
	letter-spacing:-0.3px;
}
.breadcrumb li::after {
    content: "\f105";
    font-family: FontAwesome;
    margin-right: 0.3rem;
    margin-left: 0.3rem;
}

.breadcrumb li:last-child {
	font-weight:bold;
}

.breadcrumb li:last-child::after {
	content: none;
}


@media only screen and (min-width: 768px) {
	.breadcrumb {
		margin: 3em 0 1rem 0;
		padding:0;
		font-size: 13px;
	}
}



/* ********** mv/mt ********** */
.mt {
    //padding: 0 0 1rem;
    //font-weight: bold;
    //text-align: center;
    //background: #eee;
}

.mt h1 {
    font-size: 2rem;
    text-align: center;
    padding: 1.5rem 0 1rem;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
    color: #dc815b;
}

.mt h1 span {
    font-size: 1.3rem;
    color: #248176;
    //color: #7e4026;
    margin-left: .3rem;
}

.mt p {
    line-height: 1.5;
    margin-top: .5rem;
    padding: 0 1rem;
    color: #111;
}


@media only screen and (min-width: 768px) {
    .mv {
        position: relative;
        width: 100%;
        height: 650px;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .mt {
        /* position: absolute; */
        /* top: 7%; */
        /* left: 3%; */
        /* text-align: left; */
        /* background: none; */
    }

    .mt h1 {
    	font-size: 3.7rem;
        padding: .5rem .5rem;
    }
    
    .mt h1 span {
        font-size: 2.7rem;
    }
}



/* ********** main ********** */
.livingboard h2 {
    font-size: 1.5rem;
    text-align: center;
    color: #111;
}

.livingboard h3 {
    font-size: 1.4rem;
    text-align: center;
    padding: 0rem 0 1rem;
    color: #111;
}

.livingboard p,
.livingboard li {
    /* font-size: .85rem; */
    /* line-height: 1.7; */
}

section {
    /* padding: 3.5rem 1.5rem; */
}

.livingboard01 {
    padding: 2rem 1.5rem 1rem;
}
.livingboard02 {
    padding: 3rem 1.5rem 2.5rem;
}
.livingboard03 {
    padding: 2rem 1.5rem 2.5rem;
}

@media only screen and (min-width: 768px) {
    .livingboard h2 {
        font-size: 2rem;
    }

    .livingboard h3 {
        font-size: 2rem;
        padding: 0;
    }

    .livingboard p,
    .livingboard li {
        /* font-size: 1rem; */
    }

    .livingboard01 {
        padding: 5rem 0;
    }

    .livingboard02 {
        padding: 3rem 0 0;
    }

    .livingboard03,
    .livingboard04 {
        padding: 5rem 0;
    }
	.flexbox-item-2col .image img {
    	margin-bottom:0.2rem;
    }
}



/* ********** livingboard01 ********** */
.livingboard01 p {
    margin: 2rem 0 0;
    font-size: 0.9rem;
    line-height: 2;

}

.livingboard01 img {
    width: 100%;
    display: block;
    margin: 2rem auto 0;
}


@media only screen and (min-width: 768px) {
    .livingboard01 p {
        margin: 2rem 0 4rem;
        line-height:2;
        font-size:1rem;
    }
    
    .livingboard01 img {
        margin: 0 auto;
    }
}



/* ********** livingboard02 ********** */
.livingboard02 .panel-group01 .panel01 {
    width: 100%;
}

.livingboard02 .panel-group01 .panel01 img {
    display: block;
    border: 5px solid #dc815b;
    margin-bottom: 4rem;
}

.livingboard02 .tab-group01 {
    width: 100%;
    margin-top: 2rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.livingboard02 .tab-group02 {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.livingboard02 .tab-group01 .tab01,
.livingboard02 .tab-group02 .tab02 {
    width: 33.3%;
    font-weight: bold;
    padding: .5rem;
    text-align: center;
    cursor: pointer;
    background: #eee;
}

.livingboard02 .tab-group01 .tab01.is-active01,
.livingboard02 .tab-group02 .tab02.is-active02 {
    background: #dc815b;
    color: #fff;
    transition: all 0.2s ease-out;
}

.livingboard02 .panel-group02 {
    background: #fff3ef;
    padding: 2rem 1.5rem 1.3rem;
    border-top: 2px solid #dc815b;
    border-bottom: 2px solid #dc815b;
}

.livingboard02 .panel-group02 p:first-of-type {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #111;
}

.livingboard02 .panel-group02 p:nth-of-type(2) {
    margin: 1rem 0 2rem;
    line-height: 1.7;
    font-size: 0.85rem;
}



.livingboard02 .panel-group02 .listbox {
    background: #fff;
    padding: 1rem;
    margin: 2rem auto 2.5rem;
}

.livingboard02 .panel-group02 .listbox li {
   margin: 1rem 0;
    font-size:0.85rem;
    line-height:1.7;
    text-indent: -0.8rem;
    margin-left: 0.8rem;
}

.livingboard02 .panel-group02 .flexboxsp .flexbox-item-3colsp {
    margin-bottom: 1rem;
    height: auto;
    line-height: 1;
}

.livingboard02 .panel-group02 .flexbox-centersp .flexbox-item-3colsp {
    margin: 0 .7rem;
    height: auto;
}

.livingboard02 .panel01,
.livingboard02 .panel02 {
    display:none;
}

.livingboard02 .panel01.is-show01,
.livingboard02 .panel02.is-show02 {
    display: block;
    width: 100%;
}


@media only screen and (min-width: 768px) {
    .livingboard02 .panel-group02 {
    	padding: 4rem 1rem 3rem;
    }
    .livingboard02 .panel-group01 .panel01 img {
		display: block;
		border: 5px solid #dc815b;
		margin-bottom:7rem;
	}
    .livingboard02 .tab-group01,
	.livingboard02 .tab-group02 {
		font-size:1.2rem;
	}
    .livingboard02 .panel-group02 p:first-of-type {
        font-size: 2rem;
    }

    .livingboard02 .panel-group02 p:nth-of-type(2) {
        margin: 1rem 0 2.3rem;
        font-size:1rem;
    }

    .livingboard02 .panel-group02 .listbox {
        margin: 0;
        padding: 1.7rem;
    }
    
    .livingboard02 .panel-group02 .listbox li {
        font-size: .9rem;
        margin: 1rem .5rem;
        text-indent: -0.9rem;
        margin-left: 1.3rem;
        line-height: 1.7;
    }
}



/* ********** livingboard03 ********** */
.livingboard03 h4 {
    border-left: 5px solid #dc815b;
    padding-left: .5rem;
    margin: 1.7rem 0 .7rem;
    font-size: 1rem;
    color: #111;
}
.livingboard03 p {
	font-size:0.85rem;
	line-height:1.5rem
}
.livingboard03 .flexbox {
    margin-top: 2rem;
}

.livingboard03 .flexbox-item-2col p {
    font-weight: bold;
    color: #111;
    font-size: 1rem;
    margin: 0 auto .5rem;
    text-align: center;
}

.livingboard03 .flexbox-item-2col img {
    width: 100%;
    display: block;
    margin: 0 auto 2rem;
}


@media only screen and (min-width: 768px) {
    .livingboard03 h4 {
        border-left: 7px solid #dc815b;
        font-size: 1.2rem;
    }
     .livingboard03 p {
		font-size:1rem;
		line-height:1.7rem
	}
    .livingboard03 .flexbox-item-2col p {
        margin: 0 auto;
    }

    .livingboard03 .flexbox-item-2col img {
        width: 70%;
        margin: 0 auto;
        padding: 1rem;
    }

}



/* ********** livingboard04 ********** */
.livingboard04 {
    background: #eee;
    margin: 0 0 3.5rem;
    padding: 4rem 1.5rem 1rem;
}

.livingboard04 .flexbox-item-3col {
    position: relative;
    text-align: center;
    margin: 3rem 0 4rem;
    background: #fff;
    padding: 1rem 1.5rem 1.2rem;
}

.livingboard04 .flexbox-item-3col p {
    text-align: left;
    font-size: .85rem;
    padding:0;
    line-height:1.7;
}

.livingboard04 .flexbox-item-3col img:nth-of-type(1) {
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -30px;
    width: 60px;
    height: auto;
}

.livingboard04 .flexbox-item-3col img:nth-of-type(2) {
    margin-top: 1.5rem;
}

.livingboard04 h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #dc815b;
    font-size:1.1rem;
}


@media only screen and (min-width: 768px) {
    .livingboard04 {
        background: url(/idc_recommend/livingboard/images/bg_point.jpg) 50% 0 no-repeat;
        background-size: cover;
    }

    .livingboard04 .flexbox-item-3col {
        margin-top: 5rem;
        height: 430px;
    }

    .livingboard04 .flexbox-item-3col img:nth-of-type(2) {
        position: absolute;
        bottom: 2.5rem;
        right: 13%;
        width: 73%;
    }
    .livingboard04 .flexbox-item-3col p {
        text-align: left;
        font-size: .85rem;
        padding:0 1.5rem;
    }
    .livingboard04 h4 {
		margin-top: 2rem;
		margin-bottom: 1rem;
		color: #dc815b;
		font-size: 1.1rem;
	}
}





/* ********** banner_list ********** */
.banner_list {
    text-align: center;
}
.banner_item {
    margin-top: 1rem;
}
.banner_item:last-of-type {
    margin-bottom: 3rem;
}
.banner_item p {
    font-size: .9rem;
}
.banner_item .linktext {
    text-decoration: underline;
}

@media only screen and (min-width: 768px) {
    .banner_item a:hover {
        opacity: .7;
    }
    .banner_item:last-of-type {
        margin-bottom: 5rem;
    }
}





/* --------------------------------------------
 20220111 - fair 
-------------------------------------------- */
/* ********************* 

footer_campaign_col

********************** */
.footer_campaign_col {
	padding: 1.5rem 1.5rem 1rem;
}
.footer_campaign_col ul {
	display:flex;
	justify-content:space-between;
	flex-flow:column wrap;
}
.footer_campaign_col ul li {
	width:100%;
	margin-bottom: 1.5rem;
}

@media only screen and (min-width: 768px) {
	.footer_campaign_col {padding: 0;margin-top: 7rem;}
	.footer_campaign_col ul {
		display:flex;
		justify-content:space-between;
		flex-flow:column wrap;
	}
	.footer_campaign_col ul li {
		margin-bottom: 2rem;
	}
}




/* ********************* 

tokuten_wrap

********************** */
.tokuten_wrap {
    color:#414141;
    background:#fff5e8;
    padding: 2rem 2rem 1.5rem;
    /* margin-bottom:3rem; */
}
.tokuten_wrap h3 {
	padding: 0.3rem 0;
	//letter-spacing:2px;
	font-size: 1rem;
	text-align:center;
}
.tokuten_wrap h3 span {
	font-size: 1.3rem;
	background: #f9bd5e;
	padding: 0.3rem 2.5rem;
	line-height: 3;
	color: #fff;
}
.tokuten_wrap ul {
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-flow:column-reverse wrap;
}
.tokuten_wrap ul li:first-child {
	//width:calc(60%);
	text-align:left;
	margin-right:0;
}
.tokuten_wrap ul li:last-child {
	//width: calc(39%);
	padding: 1rem 0;
}

@media only screen and (min-width: 768px) {
	.tokuten_wrap {
        color:#414141;
        background: #fff5e8;
        padding: 2rem 3rem 0;
 }
	.tokuten_wrap h3 {
		padding:0.8rem 0;
		letter-spacing:2px;
		font-size: 1.3rem;
	}
	.tokuten_wrap h3 span {
		font-size: 1.5rem;
		background: #f9bd5e;
		padding: 0rem 2.5rem;
		width: 42%;
		display: block;
		line-height: 1.7;
		text-align: center;
		margin: 0 auto;
		color: #fff;
		margin-top: 1rem;
	}
	.tokuten_wrap ul {
		display:flex;
		justify-content:space-between;
		align-items:center;
		flex-flow:row nowrap;
	}
	.tokuten_wrap ul li:first-child {
		width: calc(59%);
		text-align:left;
		margin-right: 2rem;
	}
	.tokuten_wrap ul li:last-child {
		width: calc(37%);
		padding: 1rem 0;
	}
}



/*
 tokuten smy
----------------------------------------  */
.tokuten {
	text-align:center;
}
.tokuten__title {
    font-size:1.1rem;
    display:inline-block;
    border-bottom:2px solid #3b3b3b;
    padding-bottom:0.5rem;
    font-weight:bold;
    letter-spacing: 1px;

    margin-bottom:1rem;
}
.tokuten__title__text {
	font-size: 0.9rem;
	margin-bottom:1rem;
	text-align:left;
	line-height: 1.6;
}
.tokuten__brand {

}
.tokuten__brand__title {
	font-size:0.8rem;
    display:inline-block;
    margin-bottom:0.3rem;
    text-indent: -0.4rem;
}
.tokuten__brand__text {
	font-size:0.8rem;
	margin-bottom:1rem;
	line-height: 1.6;
}
.tokuten__brand__note {
	font-size:0.7rem;
}

@media only screen and (min-width: 768px) {
	.tokuten {
        text-align:left;
	}
	.tokuten__title {
		font-size:1.2rem;
		display:inline-block;
		border-bottom:2px solid #3b3b3b;
		padding-bottom:0.5rem;
		margin-bottom:1rem;
		font-weight:bold;
		letter-spacing: 0.5px;
	}
	.tokuten__title__text {
		font-size: 0.9rem;
		margin-bottom: 1rem;
		line-height: 1.5;
	}
	.tokuten__brand {

	}
	.tokuten__brand__title {
		font-size:0.9rem;
		display:inline-block;
		margin-bottom:0.5rem;
        text-indent: -0.4rem;
	}
	.tokuten__brand__text {
		font-size: 0.85rem;
		margin-bottom: 1rem;
		line-height: 1.5;
	}
	.tokuten__brand__note {
		font-size:0.8rem;
	}
}

/* ----------------------------------
 services
---------------------------------- */
@media only screen and (max-width:599px) {
	.services {
		margin: auto 1rem 0;
		padding: 0 0;
	}
	.service10_tit {
		padding: 0 2rem;
		font-family: 'Noto Serif JP', serif;
		font-weight:bold;
		font-size: 2rem;
		color: #dc815b;
		text-align:center;
		margin:1rem auto 0.5rem
	}
	.services .service10_lead {
	margin-top: 0;
	margin-bottom:2rem;
	font-size: 1.1rem;
	line-height: 1.5;
	text-align:center;
}
.services .service10_lead span {
	font-size:1.4rem;
	font-weight:bold;
	letter-spacing:1px;
	}
}

@media only screen and (min-width:600px) and (max-width:1024px) {
    .services {
		margin:0 auto;
	}
	.service10_tit {
		padding: 0 2rem;
		font-family: 'Noto Serif JP', serif;
		font-weight:bold;
		font-size: 3rem;
		color: #dc815b;
		text-align:center;
		margin-top:5rem;
		}
	.services .service10_lead {
		margin-top: 1rem;
		font-size: 1.3rem;
		line-height: 1.5;
		text-align:center;
	}
	.services .service10_lead span {
		font-size:1.8rem;
		font-weight:bold;
		letter-spacing:1px;
	}
}

@media only screen and (min-width: 1025px) {
	.services {
		margin:0 auto;
		/* padding: 5rem 0 0; */
	}
	.service10_tit {
		padding: 0 2rem;
		font-family: 'Noto Serif JP', serif;
		font-weight:bold;
		font-size: 4rem;
		color: #dc815b;
		text-align: center;
		margin: 6rem auto 0;
		}
	.services .service10_lead {
		margin-top: 1rem;
		font-size: 1.5rem;
		line-height: 1.7;
		text-align:center;
	}
	.services .service10_lead span {
		font-size:2rem;
		font-weight:bold;
		letter-spacing:1px;
	}
}


/* 
 features_sp
-------------------------- */
@media only screen and (max-width:599px) {
	.features_sp {
	   padding-bottom: 1rem;
	   text-align:center;
	   padding-top: 1rem;
	   border: 1px solid #ddd;
	   margin-bottom: 1.5rem;
	   box-shadow: 5px 5px #eee;
	}
	.features_sp .cnt_number_sp:nth-of-type(11) {
		margin-top:2rem;
	}
	.features_sp .cnt_number_sp:nth-of-type(17) {
		margin-top:2rem;
	}
	.features_subtitle_sp {
		display: inline;
		text-align: center;
		font-size: 0.95rem;
		font-weight: bold;
		margin-left: 0;
		line-height:1.2;
	}
	.features_sp p {
		font-size: 0.7rem;
		line-height: 1.6;
		letter-spacing:0.5px;
		margin-top: 0.8rem;
		text-align:left;
		padding: 0 1rem;
	}

	.cnt_number_sp {
		font-family: 'Alegreya', serif;
		font-size: 2.3rem!important;
		text-align:center;
		line-height: 1.2;
		color: #dc815b;
	}

	.features_sp .note {
		font-size:0.7rem;
		margin-top:0;
	}
}

/* 
 btn_service_smy_sp
-------------------------- */
@media only screen and (max-width:599px) {
	.btn_service_smy_sp {
		margin:0.5rem;
	}
	.btn_service_smy_sp a {
		display:block;
		font-size:0.7rem;
		text-align:right;
		color:#8d8d8d;
		text-decoration:underline;
		padding: 0 1rem;
	}
}


@media only screen and (min-width:600px) and (max-width:1024px) {
	.features {
	   text-align:left;
	   padding: 3rem 2vw 0;
	}
	.features ul {
		display:flex;
		flex-flow:row wrap;
		justify-content:space-between;
	}
    .features  ul li:first-child {
		width:100%;
	}
	.features  ul li {
		width:calc(32.5%);
		border:1px solid #333;
		background-color:#fff;

		margin-bottom:1rem;
	}
    .features__contents {
		font-size: 0.9rem;
		letter-spacing:0.5px;
		margin-top:0;
		padding: 0.5rem 1rem 2rem;
	}    
    .features__contents__title {
    }
    .features__contents__cnt-number {
		font-size: 3.5rem;
		font-family: 'Alegreya', serif;
		color: #dc815b;
	}
	.features__contents__subtitle {
		display: inline;	
		text-align: center;
		font-size: 1.55rem;
		margin-left:1rem;
		line-height:1;
	}
    .features__contents__text {
    	margin-top: 1.5rem;
    	line-height:1.7;
    	font-size: 0.85rem;
    }
    .features ul li:first-child .features__contents__text {
    	margin-top: 0.8rem;
    }
    .features__contents__text-bb {
        //color: #44584a;
        margin-top:1rem;
    }
	.features__contents__note {
		font-size:0.7rem;
		margin-top:0.5rem;
	}
	.features__contents__btn {
        margin-top: 1rem;
    }
    .features__contents__btn a {
        display:block;

		font-size:0.8rem;

		text-align:right;
		color:#8d8d8d;
		text-decoration:underline;
    }
}


/* 
 features (tablet & pc)
-------------------------- */
@media only screen and (min-width: 1025px) {
	.features {
	   text-align:left;
	   padding: 3rem 0;
	}
	.features ul {
		display:flex;

		flex-flow:row wrap;
		justify-content:space-between;
	}
    .features  ul li:first-child {
		width:100%;
	}
	.features  ul li {
		width:calc(32.5%);
		border:1px solid #333;
		background-color:#fff;
		margin-bottom:1rem;
	}
    .features__contents {
		font-size: 0.9rem;
		letter-spacing:0.5px;
		margin-top:0;
		padding: 0.5rem 1.2rem 2rem;
	}    
    .features__contents__title {
    }
    .features__contents__cnt-number {
		font-size: 3.5rem;
		font-family: 'Alegreya', serif;
		color: #dc815b;
	}
	.features__contents__subtitle {
		display: inline;	
		text-align: center;
		font-size: 1.55rem;
		margin-left:1rem;
		line-height:1;
	}
    .features__contents__text {
    	margin-top: 1.5rem;
    	line-height:1.7;

    	font-size:0.85rem;
    }
    .features ul li:first-child .features__contents__text {
    	margin-top: 0.8rem;
    }
    .features__contents__text-bb {
        //color: #44584a;
        margin-top:1rem;
    }
	.features__contents__note {
		font-size:0.7rem;
		margin-top:0.5rem;
	}
	.features__contents__btn {
        margin-top: 0rem;
    }
    .features ul li:nth-child(2) .features__contents__btn{
    	margin-top: 2.2rem;
    }
    .features ul li:nth-child(3) .features__contents__btn{
    	margin-top:1rem;
    }
    .features ul li:nth-child(4) .features__contents__btn{
    	margin-top:2.4rem;
    }
	.features ul li:nth-child(6) .features__contents__btn{
    	margin-top: 2.5rem;
    }
    .features ul li:nth-child(7) .features__contents__btn{
    	margin-top: 2.5rem;
    }
    .features ul li:nth-child(10) .features__contents__btn{
    	margin-top: 6rem;
    }     
    .features__contents__btn a {
        display:block;
		font-size:0.8rem;
		text-align:right;
		color:#8d8d8d;
		text-decoration:underline;
    }
}


/* 
 btn_raiten
-------------------------- */
.btn_raiten {
	text-align:center;
	margin-bottom:3rem;
}
.btn_raiten p {
	font-size:0.9rem;
	margin-bottom: 1rem;
	line-height:1.6;
	//font-weight:bold;
}
.btn_raiten a {
	border:solid 1px #ffffff;
    background-color:#dc815b;
	padding:0.5rem 0 0.5rem 0;
	display:block;
	width:85%;
	margin:0 auto;
	position:relative;
	font-size:0.85rem;
    color:#fff;
}
.btn_raiten a::after {
	content: "\f105";
	font-family: FontAwesome;
	position: absolute;
	top: 52%;
	right: 1rem;
	transform: translateY(-50%);
	color: #ffffff;
}
.btn_raiten a:hover {
   	border:solid 1px #dc815b;
   	background-color:#fff;
   	box-sizing:border-box;
   	transition: all 0.3s;	
   	color:#dc815b;
   	opacity:0.8;
   }


@media only screen and (min-width: 768px) {
	.btn_raiten {
		text-align:center;
		margin-top:4rem;
		margin-bottom:2rem;
	}
	.btn_raiten p {
		font-size:1rem;
		margin-bottom: 1rem;
		line-height:1.6;
		//font-weight:bold;
	}
	.wrapper .btn_raiten:first-child {
		margin-top:5rem;
	}
	.btn_raiten a {
		font-size: 1rem;
		position: relative;
		display: inline-block;
		cursor: pointer;
		text-align: center;
		text-decoration: none;
		border: solid 2px #dc815b;
		background-color: #dc815b;
		width:45%;
		padding:0.6rem 0;
	}
	.btn_raiten a::after {
		content: "\f105";
		font-family: FontAwesome;
		position: absolute;
		top: 52%;
		right: 1rem;
		transform: translateY(-50%);
		color: #fff;
	}
    .btn_raiten a:hover {
    	border:solid 2px #dc815b;
    	background-color:#fff;
    	box-sizing:border-box;
    	transition: all 0.3s;
    	opacity:0.8;	
    	color:#dc815b;
    }
    .btn_raiten:hover::after {
    	color:#dc815b;
    }
	.btn_raiten a:hover::after {
		color:#dc815b;
	}
}




/*
campaign_bnr
------------------------- */
@media only screen and (max-width:1024px) {
	.bnr_cam {
		//margin: 6rem auto 0;
		padding: 0 2rem 5rem;
		text-align: center;
	}
	.bnr_cam a {
		display:block;
	}
	.bnr_cam a:hover {
		opacity:0.7;
	}
}

@media only screen and (min-width:1025px) {
	.bnr_cam {
		margin: 6rem auto 0;
		text-align: center;
	}
	.bnr_cam a {
		display:block;
	}
	.bnr_cam a:hover {
		opacity:0.7;
	}
}






