body {
    overflow-x: hidden;
}

.content1 {
    display: block;
    position: relative;
    height: 100%;
    /*一度高さ10000pxで作って最後にpaddingとかで調整*/
    width: 100%;
    padding: 5vw 0 10vw 5%;
    background-color: #eff1f3;
}

.con1_head {
    display: inline-block;
    position: relative;
    left: 10%;
    top: 0;
    background-color: rgb(255, 255, 255);
    border-radius: 1vw;
    font-size: 3vw;
    color: black;
    padding: 0.5vw 1.5vw;
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.53);
}

.con1_1 {
    display: block;
    position: relative;
    width: 70%;
    /*background-color: blue;*/
    left: 10%;
    margin: 7vw 0 10vw 0;
}

.nen {
    display: block;
    position: relative;
    width: 100%;
    /*background-color: red;*/
    font-size: 2.7vw;
    border-bottom: double 1vw #FFC778;
}

.hikoro_head {
    display: block;
    position: relative;
    width: 35%;
    padding: 1vw 1vw 1vw 7vw;
    background: #17a6da;
    font-size: 1.8vw;
    color: #ffffff;
    margin: 3vw 0 0 5vw;
    line-height: 1.3;
    z-index: 1;
    font-weight: bold;
}

.hikoro_head:before {
    position: absolute;
    content: '';
    left: -2px;
    top: -2px;
    border: none;
    border-left: solid 6vw #edeff1;
    border-bottom: solid 7vw transparent;
    z-index: 0
}

.tane_head {
    display: block;
    position: relative;
    width: 35%;
    padding: 1vw 1vw 1vw 7vw;
    background: #3acb12;
    font-size: 1.8vw;
    color: #ffffff;
    margin: 3vw 0 0 5vw;
    line-height: 1.3;
    z-index: 1;
    font-weight: bold;
}

.tane_head:before {
    position: absolute;
    content: '';
    left: -2px;
    top: -2px;
    border: none;
    border-left: solid 6vw #edeff1;
    border-bottom: solid 7vw transparent;
    z-index: 0
}

/*comps*/
.comp_container {
    display: block;
    position: relative;
}

.comp_table {
    width: 100%;
    display: block;
    position: relative;
    margin: 2vw 0 0 10vw;
    font-size: 2vw;
    list-style: none;
}

.comp_table td {
    padding: 0 2vw 0 0;
}

.comp_img {
    display: inline-block;
    position: relative;
    width: 2.5vw;
    /*background-color: red;*/
    top: 0.4vw;
}


.con1_button {
    text-align: center;
}

.btn,
a.btn,
button.btn {
    font-size: 1.5vw;
    font-weight: 700;
    /*line-height: 1.5;*/
    position: relative;
    display: inline-block;
    /*padding: 1rem 4rem;*/
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
    margin: 2vw 0 0 0;

}

.btn:hover {
    color: black;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.86), -1px -1px 0 rgba(255, 255, 255, 0.23),
    -1px 1px 0 rgba(255, 255, 255, 0.27), 1px -1px 0 rgba(255, 255, 255, 0.23),
    0px 1px 0 rgba(255, 255, 255, 0.27), 0 -1px 0 rgba(255, 255, 255, 0.15),
    -1px 0 0 rgba(255, 255, 255, 0.27), 1px 0 0 rgba(255, 255, 255, 0.28);
}

a.btn-flat {
    overflow: hidden;
    /*ボタン大きさ調整*/
    padding: 0.5vw 2vw;
    color: #ffffff;
    border-radius: 1vw;
    background: #000;
}

a.btn-flat span {
    position: relative;
}

a.btn-flat:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    background: #ffffff;
}

a.btn-flat:hover:before {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}


