/* 右に矢印アイコンボタン */
.btn001 {
    width: 250px;
    text-align: center;
    margin: 50px auto 20px;
    position: relative;
}
.btn001 a {
    color: #fff;
	font-size: 1em;
	line-height: 1em;
	font-weight: 400;
	padding: 18px 44px 18px 24px;
	display: block;
	background-color: var(--color-green);
	border-radius: 10px;
	position: relative;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn001 a::after {
	content: "";
	position: absolute;
	right: 18px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}
.btn001 a:hover {
	color: #fff;
	text-decoration: none;
	opacity: 0.75;
	transform: translateY(-3px);
}

/* 右に外部アイコンボタン */
.btn002 {
    width: 260px;
    text-align: center;
    margin: 15px 20px 20px 0;
    position: relative;
}

.btn002.bt_width {
    width: 200px;
    text-align: center;
    margin: 15px 20px 20px 0;
    position: relative;
}

.btn002 a {
    color: #fff !important;
    font-size: 0.9em;
    line-height: 1em;
    padding: 12px 36px 12px 10px;
    display: block;
    background-color: #222428;
    text-decoration: none !important;
    position: relative;
	border-radius: 5px;
}
.btn002 a i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0 !important;
}
.bbtn002 .link {
    position: absolute;
    right: 10px;
    top: 18px;
}
.btn002 a:hover {
	color: #fff;
	text-decoration: none;
	opacity: 0.75;
}


/* gotoボタン */
.goto_wrap {
	margin: 50px auto 0;
}

a.goto-btn {
color: #fff;
font-size: 1.1rem;
font-weight: 500;
letter-spacing: 1px;
background-color: #000;
position: relative;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
width: 100%;
transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
margin: 0 auto;
padding: 30px 40px;
cursor: pointer;
max-width: 530px;
}

.goto-btn:hover {
background-color: var(--color-gray);
text-decoration: none;
transform: translateY(-4px);
}

.goto_wrap_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin: 50px auto 0;
	padding: 0;

}

/* 2つ横並び（間隔は margin で確保。gapは使わない） */
.goto_wrap_flex .goto-btn {
	width: 48%;
	margin: 10px 1%; /* ← 上下10px・左右1%の間隔 */
}

/* SP：縦並び＆中央寄せ */
@media screen and (max-width: 640px) {
	.goto_wrap_flex .goto-btn {
		width: 100%;
		margin: 10px auto; /* ← 縦の間隔のみ。左右autoで中央 */
	}
}



/* goニュースボタン */
a.news-btn {
color: #fff;
font-size: 1.1rem;
letter-spacing: 1px;
font-style: italic;
background-color: #000;
position: relative;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
width: 100%;
transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
margin: 0;
padding: 18px 40px;
cursor: pointer;
max-width: 220px;
border: 2px solid #fff;
}

a.news-btn:hover {
background-color: var(--color-gray);
text-decoration: none;
transform: translateY(-4px);
}

.txt_style_none {
	font-style: normal !important;
}


/* gotoボタン */
.goto_wrap_r {
	margin: 50px 0 120px auto;
}

a.goto-btn-02 {
color: #fff;
font-size: 1.1rem;
font-weight: 500;
letter-spacing: 1px;
background-color: #000;
position: relative;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
width: 100%;
max-width: 360px;
transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
margin: 0 auto;
padding: 20px 30px;
cursor: pointer;
}

.goto-btn-02:hover {
background-color: var(--color-gray);
text-decoration: none;
transform: translateY(-4px);
}

/* 右寄せ */
.goto_wrap_r .goto-btn-02 {
	margin-left: auto;
	margin-right: 0;
}


/* FAQ内のボタン */
.faq_btn,
.faq_btn:link,
.faq_btn:visited {
	color: #fff;
	font-size: 0.95rem;
	line-height: 1.5;
	text-align: center;
	font-weight: 500;
	background-color: #000;
	display: inline-block;
	margin: 15px 0 10px;
	padding: 14px 50px 14px 24px;
	position: relative;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.faq_btn::after {
	content: "";
	width: 8px;
	height: 8px;
	margin: -4px 0 0;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 24px;
}

.faq_btn:hover {
	color: #fff;
	background-color: var(--color-gray);
	text-decoration: none;
	transform: translateY(-3px);
}



/* 1024：INDEXのボタンを一回り小さく */
@media screen and (max-width: 1024px) {
a.goto-btn {
	font-size: 1.1rem;
	padding: 28px 32px;
	max-width: 460px;
}
a.news-btn {
	font-size: 1.1rem;
	padding: 16px 32px;
	max-width: 230px;
}
	
	
.goto_wrap_r {
	margin: 50px 0 80px auto;
}
}

@media screen and (max-width: 640px) {
.goto_wrap {
	margin: 20px auto 0;
}

a.goto-btn {
font-size: 1rem;
padding: 22px;
max-width: 300px;
}

.goto_wrap_flex {
    margin: 40px auto 0;
}

a.news-btn {
font-size: 1rem;
padding: 14px 24px;
max-width: 200px;
}
}
