@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap');

@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet');


/* エントリーボタン */
.btn-entry {
	font-weight: 500;
	letter-spacing: 0;
	display: block;
	width: 70px;
	height: 70px;
	position: fixed;
  	top: 100px;
	right: 15px;
	border-radius: 50px;
	background-color: rgba(0, 0, 0, 0.5);
	border: 2px solid rgba(178, 136, 80, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: transform 0.2s ease-out;
}
.btn-entry a:link, 
.btn-entry a:visited {
    color: var(--color-gold);
    font-size: 0.85em;
    line-height: 1.3em;
	text-transform: none;
	white-space: nowrap;      /* ← これが本命（ENTR / Y を禁止） */
	overflow-wrap: normal;    /* 念のため折返し解除 */
	word-break: normal;
}
/* --- hover時の処理 --- */
.btn-entry:hover {
	background-color: var(--color-gold);   /* 背景ゴールド */
}

.btn-entry:hover a {
	color: #000;   /* テキスト黒 */
}


.more_wrap {
	text-align: right;
	margin-top: 80px;
	margin-bottom: auto;
	margin-right: 40px;
}

/*ViewMoreボタン*/
.btnarrow5{
    color: var(--color-gold);
  font-size: 0.85em;
  line-height: 1em;
   position: relative;
  border: 1px solid var(--color-gold);
    padding: 18px 80px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    /*アニメーションの指定*/
    transition: all .2s linear;
  background-color: transparent;
}

.btnarrow5:hover{
  color:#000 !important;
  background-color: var(--color-gold);
  text-decoration: none;
}

/*矢印と下線の形状*/
.btnarrow5::before{
  content:"";
    /*絶対配置で下線の位置を決める*/
  position: absolute;
  top:50%;
  right:-0;
    /*下線の形状*/
  width:35px;
  height:1px;
  background:var(--color-gold);
    /*アニメーションの指定*/
    transition: all .2s linear;
}

/*hoverした際の移動*/
.btnarrow5:hover::before{
  right:0;
  width:15px;
  background:#000;
}


@media screen and (max-width: 640px) {
.more_wrap {
	text-align: center;
	margin: 80px auto auto;
}
}