@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_w1500 {
    clear: both;
    width: 95%;
    max-width: 1500px;
    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;
    overflow: hidden;
    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);
}


.box_lr {
    clear: both;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    overflow: hidden;
}

.box_l50 {
    width: 47%;
    height: auto;
    float: left;
    overflow: hidden;
}

.box_r50 {
    width: 47%;
    height: auto;
    float: right;
    overflow: hidden;
}


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

@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,
.box_w1500 {
    width: 90%;
    height: auto;
    text-align: left;
    overflow: hidden;
    margin: 0 auto;
    padding: 50px 0 50px;
}

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

.box_lr {
    margin-bottom: 0;
}

.box_l50 {
    width: 100%;
    height: auto;
    float: none;
    margin: 0 auto;
}

.box_r50 {
    width: 100%;
    height: auto;
    float: none;
    margin: 0 auto;
}

}