/* NEWS　ボタン */
.news_btn {
	color: #fff;
	font-size: 0.9em;
	line-height: 1em;
	margin: 0 5px 10px 0;
	padding: 0 0 0 10px;
	display: flex;
	justify-content: flex-end;
}

.btn002-02 {
    height: 36px;
    position: relative;
    text-decoration: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
	margin: 0;
}


/* くの字アイコン */
.btn002-02 .arrow {
    width: 22px;
    height: 22px;
    position: relative;
    display: grid;
    place-items: center;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
}
.btn002-02 .arrow span {
    margin-left: 5px;
    clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
    height: 10px;
    aspect-ratio: 1;
    background-color: #ea6da4;
}
.btn002-02 .arrow__item02 {
    position: absolute;
    transform: translateX(-400%);
}
/* ホバーアニメーション */
.btn002-02:hover .arrow__item01 {
    transition: transform 0.3s ease-in-out;
    transform: translateX(400%);
}
.btn002-02:hover .arrow__item02 {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

.news_btn a {
	color: #fff;
}
.news_btn a:hover {
	text-decoration: none;
}


/* トップ　ボタン */
.center_btn {
	font-size: 1.1em;
	line-height: 1em;
	font-weight: 600;
	display: flex;
    justify-content: center;
    margin: 60px auto 60px;
}

.center_btn a {
	color: #c40000;
}
.center_btn a:hover {
	text-decoration: none;
}


/* Footer　ボタン */
.contact_btn {
    font-size: 1em;
    background-color: #c40000;
    border-radius: 40px;
    color: #fff;
    padding: 0; /* paddingを0に変更 */
    border: none;
    cursor: pointer;
    display: inline-block;
    width: 220px;
    box-sizing: border-box;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact_btn a {
    display: flex; /* flexを追加 */
    align-items: center;
    justify-content: space-between; /* 両端揃え */
    color: #fff !important; /* 白色を強制適用 */
    text-decoration: none;
    width: 100%;
    height: 100%;
    padding: 15px 30px; /* paddingをaタグに移動 */
    border-radius: 40px; /* border-radiusも継承 */
    transition: background-color 0.3s ease;
}

.contact_btn:hover {
    background-color: #df3535;
}

.contact_btn:hover a {
    color: #fff !important; /* ホバー時も白色を保持 */
}

.contact_btn:active {
    transform: translateY(1px);
}