/* NEWS　ボタン */
.news_btn {
	font-size: 1.1em;
	line-height: 1em;
	font-weight: 600;
	margin: 0;
}

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

/* くの字アイコン */
.btn002-02 .arrow {
    width: 54px;
    height: 54px;
    position: relative;
    display: grid;
    place-items: center;
    background-color: var(--color-red);
    border-radius: 30px;
    overflow: hidden;
}
.btn002-02 .arrow span {
    margin-left: 4px;
    clip-path: polygon(0 0%, 25% 0, 75% 50%, 25% 100%, 0 100%, 50% 50%, 0 0%);
    height: 12px;
    aspect-ratio: 1;
    background-color: #fff;
}
.btn002-02 .arrow__item02 {
    position: absolute;
    transform: translateX(-400%);
}

/* ホバーアニメーション */
.btn002-02 .btn-label{
  display:inline-block;
  transform: translateX(0);
  transition: transform .3s ease;
}

.btn002-02:hover .btn-label{
  transform: translateX(4px); /* お好みで 3〜6px 程度 */
}

.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: var(--color-red);
}
.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: var(--color-red);
}
.center_btn a:hover {
	text-decoration: none;
}


/* Footer　ボタン */
.contact_btn {
    font-size: 1em;
    background-color: var(--color-red);
    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);
}


/* 募集要項　ボタン */
.recruitment_wrap {
    margin-top: -20px;
	margin-bottom: 35px;
}

.recruitment-button {
    color: inherit;
    text-decoration: none !important;
    background-color: #f1f1f1;
    margin: 0;
    padding: 2em 20px 2em 30px;
    width: 100%;
    max-width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none !important;
    border-bottom: 1px solid #c40000 !important;
    box-sizing: border-box;
    outline: none;
}

.recruitment-button:hover {
    background-color: #f7f7f7;
}

.recruitment-button:focus,
.recruitment-button:active,
.recruitment-button:visited {
    border-bottom: 1px solid #c40000 !important;
}

.button-text {
    color: #c40000 !important;
    font-size: 1.2em;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.recruitment_wrap .arrow {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.recruitment_wrap .arrow::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #c40000;
    border-bottom: 2px solid #c40000;
    transform: translateY(-50%) rotate(-45deg);
}


/* リクルートページ　エントリーボタン */
.entry_wrap {
	display: flex;
	flex-wrap: wrap;
	 justify-content: space-between;
	width: 100%;
	margin: 40px 0 10px;
	padding: 0;
}

.entry-btn {
color: #fff !important;
font-size: 1.25em;
font-weight: 500;
letter-spacing: 2px;
border: none;
padding: 30px 40px;
border-radius: 50px;
cursor: pointer;
background-color: rgba(248, 87, 87, 0.7);
box-shadow: 0px 2px 8px -3px rgba(0, 0, 0, 0.3);
transition: background-color 0.3s ease;
position: relative;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
width: 48%;
}

.entry-btn:hover {
background-color: rgba(248, 87, 87, 0.9);
text-decoration: none;
}

.entry-btn::after {
content: '';
position: absolute;
right: 20px;
width: 14px;
height: 14px;
clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
background-color: white;
}


/* インタビューボタン */
.btn003 {
    height: 40px;
    position: relative;
    transition: all 0.3s ease;
	margin: 0;
    position: absolute;
	bottom: 30px;
	right: 20px;
}

/* くの字アイコン */
.btn003 .arrow {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background-color: #dcdde1;
    border-radius: 30px;
	transition: background-color 0.3s ease;
}
.btn003 .arrow span {
    margin-left: 4px;
    clip-path: polygon(0 0%, 25% 0, 75% 50%, 25% 100%, 0 100%, 50% 50%, 0 0%);
    height: 12px;
    aspect-ratio: 1;
    background-color: #fff;
}
.btn003 .arrow__item02 {
    position: absolute;
    transform: translateX(-400%);
}
.interview_list:hover .btn003 .arrow {
    background-color: #c40000;
}
.interview_list_02:hover .btn003 .arrow {
    background-color: #c40000;
}


@media screen and (max-width: 912px) {
/* 採用情報エントリーボタン */
.entry-btn {
padding: 24px;
margin: 0 auto 20px;
}

.btn003 {
   bottom: 20px;
    right: 10px;
}
}


@media screen and (max-width: 640px) {
/* NEWS　ボタン */
.news_btn {
	display: flex;
    justify-content: flex-end;
    width: 100%;
	font-size: 0.85em;
	margin: 10px 0 0;
}

/* くの字アイコン */
.btn002-02 .arrow {
    width: 30px;
    height: 30px;
}

#slide2 .description {
    margin: 20px 0 0;
}


/* 採用情報エントリーボタン */
.entry-btn {
width: 100%;
font-size: 1em;
line-height: 1.5em;
padding: 20px;
}

.btn003 {
   bottom: 20px;
    right: 10px;
}
}
