@charset "UTF-8";

:root {
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Roboto Condensed", sans-serif;
    --font-size-xl: min(1.29vw, 18px);
    --font-size-l: min(1.14vw, 16px);
    --font-size-base: min(1.07vw, 15px);
    --font-size-s: min(1vw, 14px);
    --font-size-xs: min(0.93vw, 13px);
    --base-white: #fff;
    --base-black: #333;
    --sub-gray: #e5e5e5;
    --main-green: #5db430;
    --sub-green: #f0f8ee;
    --gradation-green: linear-gradient(140deg, rgb(95, 187, 70), rgb(56, 210, 179));
    --content-width: 87.14vw;
    --content-full-width: 95.71vw;
    --max-content-width: 1400px;
    --max-full-width: 2000px;
    --num5: min(0.36vw, 5px);
    --num10: min(0.71vw, 10px);
    --num15: min(1.07vw, 15px);
    --num20: min(1.43vw, 20px);
    --num30: min(2.14vw, 30px);
    --num40: min(2.86vw, 40px);
    --num50: min(3.57vw, 50px);
    --num60: min(4.29vw, 60px);
    --num70: min(5vw, 70px);
    --num80: min(5.71vw, 80px);
    --num90: min(6.43vw, 90px);
    --num100: min(7.14vw, 100px);
    --main-corner: min(0.57vw, 8px);
    --main-easing: cubic-bezier(.22, 1, .36, 1);
    --hover-transition: 1s var(--main-easing);
    --switch-transition: .3s ease;
}
.night {
    --base-white: #3a3f50;
    --base-black: #fff;
    --main-green: #34a4e6;
    --gradation-green: linear-gradient(-40deg, rgb(70,158,187) 0%, rgb(70,125,187));
}

html, body {
    font-family: var(--font-jp);
    font-size: var(--font-size-base);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.025em;
    font-feature-settings: "palt";
}
body {
    position: relative;
    background-color: var(--base-white);
    min-height: 100vh;
    color: var(--base-black);
    transition: background-color var(--switch-transition), color var(--switch-transition);
}
body, dd, dl, dt, figure, h1, h2, h3, h4, h5, h6, html, ol, p, ul {
    margin: 0;
    padding: 0;
}
ul, li, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
table, tr, th, td {
    border-collapse: collapse;
    border-spacing: 0;
    padding: 0;
    margin: 0;
}
a {
    color: var(--base-black);
    outline: none;
    border: 0;
    text-decoration: none;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
iframe {
    border: none;
}
.pc_none {
    display: none;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
#bg_bottom.background {
    top: auto;
    bottom: 0;
    transform: scaleY(-1);
}
#bg_bottom.background img {
    width: 100%;
    height: 110vw;
    object-fit: cover;
    max-width: none;
}
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: var(--num20);
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    width: var(--content-full-width);
    margin-inline: auto;
    padding: var(--num20) var(--num30);
    border-radius: var(--main-corner);
    box-sizing: border-box;
    z-index: 9999;
    transition: background-color var(--switch-transition);
}
.night #header {
    background-color: rgba(58, 63, 80, 0.7);
}
#header .logo {
    width: 12.43vw;
    max-width: 174px;
}
.sp_menu {
    display: none;
}
.gnavi_wrap > ul {
    display: flex;
    column-gap: var(--num40);
}
.gnavi_wrap > ul > li > a {
    display: block;
    font-family: var(--font-en);
    font-size: var(--font-size-xl);
    transition: color var(--hover-transition);
}
@media (hover: hover) {
    .gnavi_wrap > ul > li > a:hover {
        color: var(--main-green);
    }
}
#header .other {
    display: flex;
    column-gap: var(--num10);
}
.sns {
    display: flex;
    align-items: center;
    column-gap: var(--num10);
    margin-right: var(--num10);
}
.sns > a > img {
    width: 2.29vw;
    max-width: 32px;
    height: 2.29vw;
    max-height: 32px;
}
.lang {
    display: grid;
    place-items: center;
    background-color: #ccc;
    padding: 0 var(--num15);
    border-radius: 100vmax;
    font-size: 0;
}
.lang .gt_float_switcher {
    position: relative;
    box-shadow: none;
    background: transparent;
    overflow: visible;
    font-size: var(--font-size-xs);
}
.lang .gt_float_switcher .gt-selected {
    background: transparent;
}
.lang .gt_float_switcher .gt-selected .gt-current-lang {
    padding: 0;
}
.lang .gt_float_switcher img {
    width: 1.79vw;
    max-width: 25px;
    margin-right: 0;
}
.lang .gt_float_switcher .gt_options {
    position: absolute;
    top: min(2.86vw, 40px);
    right: calc(var(--num15) * -1);
    width: 14.29vw;
    max-width: 200px;
    background-color: var(--base-white);
    border-radius: var(--main-corner);
}
.lang .gt_float_switcher .gt_options a {
    color: var(--base-black);
}
.lang .gt_float_switcher .gt_options a:hover {
    background-color: var(--main-green);
}
.lang .gt-lang-code {
    display: none;
}
.lang .gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
    transform: rotate(0deg) translateY(1px);
}
.lang .gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow.gt_arrow_rotate {
    transform: rotate(-180deg);
}
.switch {
    position: relative;
    display: flex;
    align-items: center;
    width: 6.43vw;
    max-width: 90px;
    background-color: #ccc;
    border: 2.5px solid #ccc;
    border-radius: 100vmax;
    box-sizing: border-box;
    font-size: 0;
    transition: background-color var(--hover-transition), border-color var(--hover-transition);
}
.switch > a {
    position: relative;
    width: 100%;
    padding: min(0.5vw, 7px) 0;
    box-sizing: border-box;
    z-index: 2;
}
.switch > a > span {
    display: block;
    width: 1.21vw;
    max-width: 17px;
    height: 1.21vw;
    max-height: 17px;
    margin-inline: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
}
#switch_day > span {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23777%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%202px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M6%2C10c0%2C2.2%2C1.8%2C4%2C4%2C4s4-1.8%2C4-4-1.8-4-4-4-4%2C1.8-4%2C4%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M1%2C10h1M10%2C1v1M18%2C10h1M10%2C18v1M3.6%2C3.6l.7.7M16.4%2C3.6l-.7.7M15.7%2C15.7l.7.7M4.3%2C15.7l-.7.7%22%2F%3E%3C%2Fsvg%3E');
}
#switch_night > span {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23777%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%201.7px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M10%2C2.2h.3c-2.6%2C2.4-2.8%2C6.6-.3%2C9.2%2C1.8%2C2%2C4.7%2C2.6%2C7.2%2C1.6-1.7%2C4-6.2%2C5.9-10.2%2C4.2-4-1.7-5.9-6.2-4.2-10.2%2C1.2-2.9%2C4.1-4.8%2C7.2-4.8h0%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M14.3%2C3.1c0%2C1%2C.8%2C1.7%2C1.7%2C1.7-1%2C0-1.7.8-1.7%2C1.7%2C0-1-.8-1.7-1.7-1.7%2C1%2C0%2C1.7-.8%2C1.7-1.7%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M16.1%2C9.1h1.7M16.9%2C8.3v1.7%22%2F%3E%3C%2Fsvg%3E');
}
.night #switch_night > span {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23fff%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%201.7px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M10%2C2.2h.3c-2.6%2C2.4-2.8%2C6.6-.3%2C9.2%2C1.8%2C2%2C4.7%2C2.6%2C7.2%2C1.6-1.7%2C4-6.2%2C5.9-10.2%2C4.2-4-1.7-5.9-6.2-4.2-10.2%2C1.2-2.9%2C4.1-4.8%2C7.2-4.8h0%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M14.3%2C3.1c0%2C1%2C.8%2C1.7%2C1.7%2C1.7-1%2C0-1.7.8-1.7%2C1.7%2C0-1-.8-1.7-1.7-1.7%2C1%2C0%2C1.7-.8%2C1.7-1.7%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M16.1%2C9.1h1.7M16.9%2C8.3v1.7%22%2F%3E%3C%2Fsvg%3E');
}
.switch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--base-white);
    border-radius: 100vmax;
    transform: translateX(0%);
    transition: transform var(--switch-transition);
    z-index: 1;
}
.night .switch::before {
    transform: translateX(100%);
}
@media (hover: hover) {
    .switch:hover {
        background-color: #bbb;
        border-color: #bbb;
    }
}

#main {
    position: relative;
    padding-top: min(9.29vw, 130px);
    z-index: 3;
}
.container {
    width: var(--content-width);
    max-width: var(--max-content-width);
    margin-inline: auto;
}
.btn {
    display: flex;
    align-items: center;
}
.btn > a {
    position: relative;
    width: 100%;
    background-image: var(--gradation-green);
    padding: var(--num15) min(1.45vw, 16px);
    border-radius: 100vmax;
    color: #fff;
    font-weight: 500;
}
.btn > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: var(--num20);
    width: 0.57vw;
    max-width: 8px;
    height: 0.96vw;
    max-height: 13.5px;
    margin: auto;
    background: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2012.3%2021.4%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23fff%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M2.6%2C20.9l9.3-9.2c.3-.3.4-.7.4-1.1s-.2-.8-.4-1.1L2.6.4C2-.1%2C1-.1.4.4.2.7%2C0%2C1.1%2C0%2C1.5s.2.8.4%2C1.1l8.3%2C8.1L.4%2C18.8C.2%2C19.1%2C0%2C19.5%2C0%2C19.9c0%2C.4.2.8.4%2C1.1.6.6%2C1.5.6%2C2.1%2C0Z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center / 100% auto;
    transition: right var(--hover-transition);
}
@media (hover: hover) {
    .btn > a:hover::after {
        right: var(--num15);
    }
}
.column {
    display: flex;
}
.box_txt {
    display: grid;
    place-items: center;
    border: 1px solid var(--base-black);
    border-radius: var(--main-corner);
    padding: var(--num10);
    font-size: var(--font-size-xs);
}
.notes {
    font-size: min(0.68vw, 9.5px);
}
.news_list > ul > li {
    border-bottom: 1px solid var(--sub-gray);
}
.news_list > ul > li:first-child {
    border-top: 1px solid var(--sub-gray);
}
.news_list > ul > li > * {
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--num30) var(--num40) var(--num30) 0;
    line-height: 1.6;
}
.news_list > ul > li > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0.61vw;
    max-width: 9px;
    height: 1.04vw;
    max-height: 15px;
    margin: auto;
    background: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2012.3%2021.4%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23333%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M2.6%2C20.9l9.3-9.2c.3-.3.4-.7.4-1.1s-.2-.8-.4-1.1L2.6.4C2-.1%2C1-.1.4.4.2.7%2C0%2C1.1%2C0%2C1.5s.2.8.4%2C1.1l8.3%2C8.1L.4%2C18.8C.2%2C19.1%2C0%2C19.5%2C0%2C19.9c0%2C.4.2.8.4%2C1.1.6.6%2C1.5.6%2C2.1%2C0Z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center / 100% auto;
    transition: right var(--hover-transition);
}
.night .news_list > ul > li > a::after {
    background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2012.3%2021.4%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23fff%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M2.6%2C20.9l9.3-9.2c.3-.3.4-.7.4-1.1s-.2-.8-.4-1.1L2.6.4C2-.1%2C1-.1.4.4.2.7%2C0%2C1.1%2C0%2C1.5s.2.8.4%2C1.1l8.3%2C8.1L.4%2C18.8C.2%2C19.1%2C0%2C19.5%2C0%2C19.9c0%2C.4.2.8.4%2C1.1.6.6%2C1.5.6%2C2.1%2C0Z%22%2F%3E%3C%2Fsvg%3E');
}
@media (hover: hover) {
    .news_list > ul > li > a:hover > p {
        opacity: .4;
    }
    .news_list > ul > li > a:hover::after {
        right: -5px;
    }
}
.news_list .date {
    flex-shrink: 0;
    width: 12.93%;
    font-family: var(--font-en);
}
.news_list > ul > li > * > p {
    font-size: var(--font-size-s);
    text-align: justify;
}
.news_list > ul > li > a > p {
    transition: opacity var(--hover-transition);
}










#footer {
    position: relative;
    width: var(--content-full-width);
    margin-inline: auto;
    padding: var(--num100) 0 var(--num60);
    z-index: 2;
}
.banner > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: var(--num20);
}
.banner > ul > li {
    width: 50%;
}
#footer .banner > ul > li {
    width: calc(100% / 3);
}
.banner > ul > li a {
    transition: opacity var(--hover-transition);
}
@media (hover: hover) {
    .banner > ul > li a:hover {
        opacity: .8;
    }
}
.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: var(--num30);
    margin-top: var(--num50);
    color: #333;
}
.footer_bottom a {
    color: #333;
}
.footer_bottom .menu {
    display: flex;
    column-gap: var(--num20);
    font-size: min(0.79vw, 11px);
}
.footer_bottom .copyright {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-en);
    font-size: min(0.71vw, 10px);
}
.pagetop > a {
    display: flex;
    align-items: center;
    column-gap: var(--num15);
    font-family: var(--font-en);
    font-size: var(--font-size-xs);
}
.pagetop .arrow {
    display: inline-block;
    position: relative;
    width: 1px;
    height: 0.71vw;
    max-height: 10px;
    background-color: #333;
}
.pagetop .arrow::before {
    content: "";
    position: absolute;
    top: -0.08em;
    right: 50%;
    width: 0.43vw;
    max-width: 6px;
    height: 0.43vw;
    max-height: 6px;
    border: 1px solid #333;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: rotate(-45deg);
    transform-origin: top right;
}


@media screen and (max-width: 767px) {
    :root {
        --font-size-xl: 4vw;
        --font-size-l: 3.5vw;
        --font-size-base: 3.2vw;
        --font-size-s: 3vw;
        --font-size-xs: 2.5vw;
        --content-full-width: 92vw;
        --content-width: 92vw;
        --num5: 1vw;
        --num10: 1.5vw;
        --num15: 2vw;
        --num20: 3.5vw;
        --num30: 4.5vw;
        --num40: 6.5vw;
        --num50: 8.5vw;
        --num60: 10.5vw;
        --num70: 12.5vw;
        --num80: 14.5vw;
        --num90: 16.5vw;
        --num100: 18.5vw;
        --main-corner: 2vw;
    }
    
    .pc_none {
        display: block;
    }
    .sp_none {
        display: none;
    }
    
    #bg_top.background img {
        height: 140vw;
    }
    #bg_bottom.background img {
        height: 480vw;
    }

    #header {
        padding: 3vw var(--num20);
    }
    #header .logo {
        order: 1;
        position: relative;
        width: 26vw;
        z-index: 2;
    }
    .gnavi {
        order: 3;
        margin-left: var(--num20);
        z-index: 1;
    }
    .sp_menu {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 5vw;
        height: 3vw;
        z-index: 9999;
    }
    .sp_menu span {
        display: block;
        background-color: var(--base-black);
        width: 100%;
        height: 1px;
        transition: all var(--hover-transition);
    }
    .sp_menu.open span:nth-of-type(1) {
        transform: rotate(45deg) translate(1vw, 1vw);
    }
    .sp_menu.open span:nth-of-type(2) {
        width: 0%;
    }
    .sp_menu.open span:nth-of-type(3) {
        transform: rotate(-45deg) translate(1vw, -1vw);
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, .6);
        z-index: 9998;
    }
    .gnavi_wrap {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        background-color: var(--base-white);
        width: var(--content-full-width);
        padding: 20vw var(--num40) 12vw;
        border-radius: var(--main-corner);
        box-sizing: border-box;
        z-index: 9998;
    }
    .gnavi_wrap > ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--num40) var(--num40);
    }
    .gnavi_wrap > ul > li {
        border-bottom: 1px solid var(--sub-gray);
        padding-bottom: var(--num15);
    }
    .gnavi_wrap > ul > li > a {
        font-size: 4.5vw;
    }
    #header .other {
        order: 2;
        position: relative;
        margin-left: auto;
        z-index: 2;
    }
    .sns > a > img {
        width: 6vw;
        height: 6vw;
    }
    .lang .gt_float_switcher {
        font-size: var(--font-size-s);
    }
    .lang .gt_float_switcher img {
        width: 5vw;
    }
    .lang .gt_float_switcher .gt_options {
        top: 8vw;
        width: 46vw;
    }
    .switch {
        position: fixed;
        bottom: 3vw;
        left: 50%;
        transform: translateX(-50%);
        width: 28vw;
        max-width: 100%;
        z-index: 9999;
    }
    .switch > a {
        padding: var(--num15) 0;
    }
    .switch > a > span {
        width: 4vw;
        height: 4vw;
    }

    #main {
        padding-top: 20vw;
    }
    .box_txt {
        padding: var(--num15);
    }
    .notes {
        font-size: var(--font-size-xs);
    }
    .btn > a {
        padding: var(--num20) 0;
    }
    .btn > a::after {
        width: 1.5vw;
        height: 3vw;
    }
    .news_list > ul > li > * {
        flex-direction: column;
        align-items: flex-start;
        row-gap: var(--num10);
    }
    .news_list > ul > li > a::after {
        width: 1.5vw;
        height: 3vw;
    }

    #footer {
        padding-bottom: var(--num100);
    }
    .banner > ul {
        flex-direction: column;
        row-gap: var(--num15);
    }
    .banner > ul > li {
        width: 100%;
    }
    #footer .banner > ul > li {
        width: 80%;
        margin-inline: auto;
    }
    .pagetop .arrow::before {
        width: 1vw;
        height: 1vw;
    }
    .footer_bottom {
        flex-wrap: wrap;
        row-gap: var(--num50);
        padding-top: var(--num40);
    }
    .footer_bottom .menu {
        order: 1;
        column-gap: var(--num30);
        font-size: var(--font-size-xs);
    }
    .footer_bottom .copyright {
        order: 3;
        position: static;
        transform: none;
        width: 100%;
        font-size: 2vw;
        text-align: center;
    }
    .pagetop {
        order: 2;
    }
    .pagetop > a {
        justify-content: flex-end;
    }
    .pagetop .arrow {
        height: 1.8vw;
    }
}