@charset "utf-8";
/*
Template: 
Theme Name: 
*/

/*----------------------------------------------------
	color area(PC)
----------------------------------------------------*/

#color_area {
    width: 100%;
    background: var(--background-color1);
}


/*----------------------------------------------------
	ボックス(PC)
----------------------------------------------------*/

.box {
    clear: both;
    width: 95%;
    max-width: var(--max-width);
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    padding: 70px 0 70px;
    position: relative;
}

.box_top {
    clear: both;
    width: 95%;
    max-width: var(--max-width);
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    padding: 70px 0 70px;
    position: relative;
}

.box_tc {
    clear: both;
    width: 95%;
    max-width: var(--max-width);
    height: auto;
    margin: 0 auto;
    text-align: center;
    padding: 70px 0 70px;
    position: relative;
}

.box_bb {
    margin: 65px auto 30px;
    padding: 45px 65px 25px;
    background: #fff;
    text-align: left;
    border: 1px solid var(--border-color);
}


/*----------------------------------------------------
	ボックス(スマートフォン)
----------------------------------------------------*/

@media screen and (max-width: 768px) {

.box,
.box_tc {
    width: 90%;
    height: auto;
    text-align: left;
    overflow: hidden;
    margin: 0 auto;
    padding: 60px 0 50px;
}

.box_top {
    width: 90%;
    height: auto;
    text-align: left;
    overflow: hidden;
    margin: 0 auto;
    padding: 50px 0 50px;
}

.box_bb {
    padding: 45px 45px 25px;
}

}