@charset "UTF-8";

.orange {
    color: #F58F20;
}


#buttons + .block_html ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
#buttons + .block_html ul li {
    list-style-type: none;
    padding: 0;
	width: 17%;
    aspect-ratio: 1 / 1;
}
#buttons + .block_html ul li .btn,
#buttons + .block_html ul li a.btn,
#buttons + .block_html ul li button.btn {
    font-size: 3.0rem;
    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;
    color: #212529;
    border-radius: 0.5rem;
}

#buttons + .block_html ul li a.btn-3d-circle {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    border-radius: 50%;
}

#buttons + .block_html ul li .btn-3d-circle-content {
    display: block;
    line-height: 100px;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    border-radius: 50%;
    background: #f2f5f6;
    background: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(#f2f5f6),
            color-stop(37%, #e3eaed),
            to(#c8d7dc)
    );
    background: -webkit-linear-gradient(top, #f2f5f6 0%, #e3eaed 37%, #c8d7dc 100%);
    background: linear-gradient(to bottom, #f2f5f6 0%, #e3eaed 37%, #c8d7dc 100%);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 150px;
    perspective: 150px;
}
#buttons + .block_html ul li .btn-3d-circle:hover .btn-3d-circle-content {
    -webkit-transform: rotateY(0.5turn) rotateX(-0.03turn);
    transform: rotateY(0.5turn) rotateX(-0.03turn);
}
#buttons + .block_html ul li .btn-3d-circle:hover .btn-3d-circle-front {
    opacity: 0;
}
#buttons + .block_html ul li .btn-3d-circle:hover .btn-3d-circle-back {
    top: calc(50% - 2rem);
    left: calc(50% - 0.75rem);
    opacity: 1;
}
#buttons + .block_html ul li .btn-3d-circle-back {
    position: absolute;
    display: block;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    letter-spacing: 0;
    opacity: 0;
}
@media screen and (max-width: 1200px){
	#buttons + .block_html ul li .btn,
	#buttons + .block_html ul li a.btn,
	#buttons + .block_html ul li button.btn {
		font-size: 2.9vw;
	}
}
@media screen and (max-width: 800px){
	#buttons + .block_html ul li {
		width: 30%;
	}
	#buttons + .block_html ul li .btn,
	#buttons + .block_html ul li a.btn,
	#buttons + .block_html ul li button.btn {
		font-size: 4.5vw;
	}
}

#p1 ~ .contents_box01.w40 .inner_item_img {
    border-radius: 20px;
}


/*--選ばれる5つの理由パーツ調整--*/
#buttons + .block_html ul li .btn-3d-circle-content {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
	outline: 3px solid var(--i_bg_color);
    outline-offset: -8px;
}
#buttons + .block_html ul li .btn,
#buttons + .block_html ul li a.btn, 
#buttons + .block_html ul li button.btn {
    color: #ffffff;
}
#buttons + .block_html ul li:nth-child(1) .btn-3d-circle-content {
    background: #18cc56;
}
#buttons + .block_html ul li:nth-child(2) .btn-3d-circle-content {
    background: #0994eb;
}
#buttons + .block_html ul li:nth-child(3) .btn-3d-circle-content {
    background: #a8631e;
}
#buttons + .block_html ul li:nth-child(4) .btn-3d-circle-content {
    background: #d12136;
}
#buttons + .block_html ul li:nth-child(5) .btn-3d-circle-content {
    background: #824ecc;
}

/*追加*/
#buttons + .block_html ul {
    flex-wrap: wrap;
}