@charset "utf-8";

:root {
	/* ページ全体の背景色 */
	--body-bg: #c2cfee linear-gradient(180deg, #fae9e9 30%, #c2cfee 100%) fixed;
	/* メインの文字色 */
	--main-text-color: #18193f;
	/* アクセントカラー */
	--accent: #4671d8;
	/* レイアウトボックスの背景色 */
	--sub-bg-color: #fff;
}



html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}