/* 白背景ボタン */
.goto_wrap {
	margin: 0;
}

a.goto-btn {
color: var(--color-main-blue);
font-size: 1.1rem;
font-weight: 500;
letter-spacing: 1px;
border: none;
padding: 18px 40px;
border-radius: 50px;
cursor: pointer;
background-color: #fff;
position: relative;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
width: 260px;
transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
margin-top: 50px;
}

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

.goto-btn::after {
content: '';
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
width: 16px;
height: 16px;
clip-path: polygon(0 12%, 12% 0, 57% 50%, 12% 100%, 0 88%, 38% 50%, 0 12%);
background-color: var(--color-main-blue);
}

/* 青背景ボタン */
a.goto-btn-blue {
color: #fff;
font-size: 1.1rem;
font-weight: 500;
letter-spacing: 1px;
border: none;
padding: 18px 40px;
border-radius: 50px;
cursor: pointer;
background-color: var(--color-main-blue);
position: relative;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
width: 260px;
transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
margin-top: 40px;
}

.goto-btn-blue:hover {
color: #fff;
background-color: #8d9ad0;
text-decoration: none;
transform: translateY(-4px);
}

.goto-btn-blue::after {
content: '';
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
width: 16px;
height: 16px;
clip-path: polygon(0 12%, 12% 0, 57% 50%, 12% 100%, 0 88%, 38% 50%, 0 12%);
background-color: #fff;
}

/* 青背景ボタン（大） */
a.goto-btn-blue-lg {
color: #fff;
font-size: 1.2rem;
font-weight: 500;
letter-spacing: 2px;
border: none;
padding: 28px 60px;
border-radius: 50px;
cursor: pointer;
background-color: var(--color-main-blue);
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-top: 40px;
max-width: 340px;
}

.goto-btn-blue-lg:hover {
color: #fff;
background-color: #8d9ad0;
text-decoration: none;
transform: translateY(-4px);
}

.goto-btn-blue-lg::after {
content: '';
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
width: 18px;
height: 18px;
clip-path: polygon(0 12%, 12% 0, 57% 50%, 12% 100%, 0 88%, 38% 50%, 0 12%);
background-color: #fff;
}

/* 青背景ボタン（横長） */
a.goto-btn-blue-s {
color: #fff;
font-size: 1rem;
font-weight: 500;
border: none;
padding: 17px 40px;
border-radius: 50px;
cursor: pointer;
background-color: var(--color-main-blue);
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: 30px auto 0;
max-width: 300px;
}

.goto-btn-blue-s:hover {
color: #fff;
background-color: #8d9ad0;
text-decoration: none;
transform: translateY(-4px);
}

.goto-btn-blue-s::after {
content: '';
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
width: 16px;
height: 16px;
clip-path: polygon(0 12%, 12% 0, 57% 50%, 12% 100%, 0 88%, 38% 50%, 0 12%);
background-color: #fff;
}


/* テキスト+◯矢印ボタン */
.top_01_btn {
	font-size: 1.2em;
	line-height: 1em;
	font-weight: 600;
	margin: 0 0 50px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--color-main-blue);
}

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

/* くの字アイコン */
.btn001 .arrow {
    width: 41px;
    height: 41px;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50px;
	border: 1px solid var(--color-gray);
    overflow: hidden;
}
.btn001 .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;
}
.btn001 .arrow__item02 {
    position: absolute;
    transform: translateX(-400%);
}

/* ホバーアニメーション */
.btn001 .btn-label {
  display: inline-block;
  transition: color 0.3s ease;
}

.btn001:hover .btn-label {
  color: var(--color-main-blue);
}

.btn001:hover .arrow__item01 {
    transition: transform 0.3s ease-in-out;
    transform: translateX(400%);
}
.btn001:hover .arrow__item02 {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}
.top_01_btn a {
	color: var(--color-main);
}
.top_01_btn a:hover {
	text-decoration: none;
}
.top_01_btn .arrow span {
	background-color: #777;
}


/* テキスト+◯矢印ボタン横並び */
.top_03_btn {
	font-size: 1.2em;
	line-height: 1em;
	font-weight: 600;
	margin: 0 0 50px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--color-main-blue);
	width: 45%;
}
.top_03_btn:first-child {
	margin-right: 10%;
}
.top_03_btn .arrow span {
	background-color: #777;
}
.top_03_btn a:hover {
	text-decoration: none;
}



/* 画像背景の採用ボタン */
.entry_btn {
	color: #fff;
	font-size: 2em;
	line-height: 1em;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 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: 64px;
    height: 64px;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50px;
    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%);
}

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

.entry-banner:first-child {
	border-right: 1px solid var(--color-main-blue);
}

.entry-banner .btn002-02 .arrow {
	background-color: transparent;
	border: 2px solid #fff;
}

.entry-banner .btn002-02 .arrow span {
	background-color: #fff;
}

a.btn_flex {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px auto 60px;
	padding: 0.8em;
	font-size: 1.1rem;
	font-weight: 600;
	border: 2px solid var(--color-main-blue);
	width: 300px;
	color: var(--color-main);
	text-decoration: none;
	background-color: #fff;
}

.btn_flex:hover {
	text-decoration: none;
	background-color: var(--color-light-blue);
}

.btn_flex img {
	width: 100px;
}



@media screen and (max-width: 1280px) {
/*footer-1100*/
.entry_btn {
    font-size: 1.8em;
    line-height: 1em;
    font-weight: 600;
}
}


@media screen and (max-width: 1175px) {
/*footer-1100*/
.entry_btn {
    font-size: 1.5em;
    line-height: 1em;
    font-weight: 600;
}

.btn002-02 .arrow {
    width: 50px;
    height: 50px;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50px;
    overflow: hidden;
}
}


@media screen and (max-width: 912px) {
/*footer-1100*/
.entry-banner .entry_btn {
    padding: 0 30px 0 50px;
}

.entry_btn {
    font-size: 1.3em;
}
}


@media screen and (max-width: 820px) {
/*slide2-820*/
.top_flex_01 .top-links_01 {
    width: 18%;
    flex-shrink: 0;
    padding-left: 0;
    min-width: 240px;
}

.top_01_btn {
    font-size: 1.05em;
    margin: 0 0 20px;
}

.btn001 .arrow {
    width: 36px;
    height: 36px;
}

.top_flex_03 {
    width: 80%;
}

.top_03_btn {
    font-size: 1.05em;
    margin: 0 0 20px;
    width: 45%;
}
}


@media screen and (max-width: 768px) {
.goto_wrap {
	text-align: center;
	display: flex;
	justify-content: center;
}
}

@media screen and (max-width: 640px) {
a.goto-btn {
	margin: 40px auto 0;
}

.top_03_btn {
margin: 0 0 20px;
width: 100%;
}

a.goto-btn-blue-lg {
padding: 22px 60px;
max-width: 290px;
}
}
