/* 2025.06.10- TOPページ改良用CSS 大塚*/

@media screen and (min-width: 1025px) {

    html,
    body {
        overflow-x: hidden;
        background-color: #e6f0ff;
        font-family: 'Noto Sans JP', sans-serif;
        /*フォント変更*/
    }

    /* ヘッダー右側ロゴ */
    .toppage-header-logo-right  {
        width: 120px;
    }

    .toppage-header-logo-right img {
        display: block;
        /* 上下の余白を消す */
        margin-top: 14px;
    }

    /* ヘッダーナビゲーション */
    body #header .area {
        float: right;
        height: 80px;
        width: auto;
        display: flex;
        align-items: center;
    }

    /*メインビュー*/
    .swiper {
        width: 100%;
        height: 100vh;
        overflow-x: hidden;
    }

    .swiper-wrapper {
        display: flex;
        height: 100%;
    }

    .swiper-slide {
        flex-shrink: 0;
        width: 100%;
        position: relative;
    }

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: none;
        object-position: 80% 50%;
        display: block;
    }
	
    .toppage-slide-fullimg {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        object-position: bottom !important;
    }

    .toppage-main-text-overlay {
        position: absolute;
        /*メインビューの文字位置指定*/
        top: 50%;
        left: 25%;
        transform: translate(-50%, -50%);
        /*メインビューの文字位置指定*/
        text-align: center;
        color: #333;
        z-index: 10;
        width: 40%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .toppage-main-text-overlay-fullimg {
       position: absolute;
        /*メインビューの文字位置指定*/
        top: 35%;
        left: 70%;
        transform: translate(-50%, -50%);
        /*メインビューの文字位置指定*/
        color: #fff;
        z-index: 10;
        width: 40%;
        padding: 0 20px;
        width: 600px;
        box-sizing: border-box; 
    }

    .toppage-main-title {
        font-size: 3rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        /*文字に影つけ*/
    }

    .toppage-subtitle {
        font-size: 1.5rem;
        text-align: start;
        /*説明文は右寄せ*/
        margin-bottom: 2rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        /*文字に影つけ*/
    }

    .toppage-slide-view-more {
        display: inline-block;
        font-weight: bold;
        color: #fff;
        background-color: #4b9dcf;
        border: 1px solid #4b9dcf;
        border-radius: 0.3rem;
        padding: 1rem 2rem;
        margin-top: 1rem;
        width: 25%;
        box-shadow: 0 4px 10px rgba(75, 157, 207, 0.4);
        transition: background-color .45s ease, color .45s ease;
        /*0.45秒かけて色を変える*/
    }

    /* VIER MOREにマウスをホバーさせると色を反転させる */
    .toppage-slide-view-more:hover {
        color: #4b9dcf;
        background-color: #fff;
    }


    /* information */
    .toppage-information-section {
        box-sizing: border-box;
        padding: 20px 60px 20px 60px;
    }

    .information-title {
        font-size: 2rem;
        font-weight: bold;
        color: #4b9dcf;
        text-align: center;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        /*文字に影つけ*/
        padding: 20px;
        border-bottom: 2px solid #4b9dcf;

    }

    .toppage-information {
        display: flex;
        height: 25px;
        font-size: 1rem;
        padding: 2px;
        border-bottom: 1px solid #dedede;
    }

    .toppage-information article {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .toppage-information p {
        width:200px;
        text-align: right;
    }

    .toppage-information a {
        color: #212121;
    }

    .toppage-information-view-more {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        height: 25px;
        width: 120px;
        margin: 0 auto;
        padding: 20px;
    }

    .toppage-information-view-more a {
        color: #212121;
    }

    /* スローガン
    .toppage-slogan-section {
        padding: 100px 20px;
        text-align: center;
        font-weight: bold;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        文字に影つけ
    } 

    .toppage-slogan-title {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #4b9dcf;
    }

    .toppage-slogan-message {
        font-size: 2rem;
        color: #666;
        margin: 0 auto;
    }
    */

    /* 会社有概要 */
    .toppage-company-list {
        display: flex;
        gap: 40px;
        padding: 40px;
        align-items: baseline;
        justify-content: center;
    }

    .toppage-company-list a {
        display: block;
    }

    .toppage-company-list img {
        width: 100%;
        height: 300px;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        transition: transform 0.45s ease;
    }

    .toppage-company-list img:hover {
        transform: scale(1.1);
        /*0.45秒かけて画像を1.1倍にズーム*/
    }


    .toppage-company-list p {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 600;
        margin-top: 1.5rem;
        color: #4b9dcf;
        border-bottom: 2px solid #4b9dcf;
        padding-bottom: 0.4rem;
        letter-spacing: 2px;
        /*文字間を空ける*/
    }


    #toppage-company {
        margin: 50px 0;
    }

    /* 事業内容 */
    #toppage-services {
        margin: 150px 0 150px;
    }

    .toppage-services-title {
        margin-bottom: 50px;
        display: flex;
        justify-content: center;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        /*文字に影つけ*/
    }

    .toppage-service {
        color: #4b9dcf;
        font-weight: bold;
        font-size: 2.5rem;
        border-bottom: 2px solid #4b9dcf;
        border-right: 3px solid #4b9dcf;
        transform: skew(-10deg);
        /*文字を斜めに*/
    }

    .toppage-service span {
        padding: 10px;
    }

    .toppage-business-area {
        color: #fff;
        background-color: #4b9dcf;
        font-size: 2.0rem;
        padding: 10px;
        transform: skew(-10deg);
        /*背景を斜めに*/
    }

    .toppage-business-area span {
        display: inline-block;
        padding: 0 10px;
        transform: skew(10deg);
        /*文字を斜めから戻す*/
    }

    .toppage-services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* 3列1行 */
    }

    .toppage-service-item a {
        display: block;
        /*リンク領域を画像全体に*/
    }

    .toppage-service-item img {
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
        transition: transform 1.2s ease;
    }

    .toppage-service-item a:hover img {
        transform: scale(1.1);
        /*1.2秒かけて画像を1.1倍にズーム*/
    }


    .toppage-service-item {
        position: relative;
        overflow: hidden;
    }

    .toppage-service-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 60%);
        /*画像下部より薄黒いグラデーションで装飾*/
        z-index: 1;
        pointer-events: none;
        /*マウスイベントが背後の要素に届くようにする。これが無いと、リンクの反応を妨げてしまう。*/
    }

    .toppage-service-item span {
        position: absolute;
        bottom: 10px;
        left: 10px;
        color: #fff;
        z-index: 2;
        font-size: 1.8rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        /*文字に影つけ*/
        letter-spacing: 2px;
        /*文字間空ける*/
    }

    /* 採用情報 */
    #toppage-recruit {
        margin: 150px 0 150px;
    }

    .toppage-recruit-title {
        margin-bottom: 50px;
        display: flex;
        justify-content: center;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        /*文字に影つけ*/
    }

    .toppage-recruit {
        color: #4b9dcf;
        font-weight: bold;
        font-size: 2.5rem;
        border-bottom: 2px solid #4b9dcf;
        border-right: 3px solid #4b9dcf;
        transform: skew(-10deg);
        /*文字を斜めに*/
    }

    .toppage-recruit span {
        padding: 10px;
    }

    .toppage-recruit-jp {
        color: #fff;
        background-color: #4b9dcf;
        font-size: 2.0rem;
        padding: 10px;
        transform: skew(-10deg);
        /*背景を斜めに*/
    }

    .toppage-recruit-jp span {
        display: inline-block;
        padding: 0 10px;
        transform: skew(10deg);
        /*文字を斜めから戻す*/
    }

    .toppage-recruit-area {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* パネルを2列3行にする */
        position: relative;
    }

    .toppage-recruit-items1 {
        background-image: url('../../../../images/recruit_bg1_pexels.jpg');
        background-size: cover;
        background-position: center;
        padding: 120px;
    }
    
    .toppage-recruit-items2 {
        background-image: url('../../../../images/recruit_bg2_pexels.jpg');
        background-size: cover;
        background-position: center;
        padding: 120px;
    }

    .toppage-recruit-items1 ul,
    .toppage-recruit-items2 ul {
        display: grid;
        gap: 20px;
        max-width: 800px;
    }

    .toppage-recruit-item {
        height: 80px;
        border: 2px solid rgba(75, 157, 207, 0.5);
        /* 半透明緑の枠線 */
        background-color: rgba(255, 255, 255, 0.7);
        /* 半透明の背景 */
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s;
        /* 0.3秒で背景色を変更する */
    }

    .toppage-recruit-item a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        /* リンクをliの範囲全体にする */
    }

    .toppage-recruit-item div {
        font-size: 1.6rem;
        color: #333;
        letter-spacing: 1px;
    }

    .toppage-recruit-item span {
        color: #4b9dcf;
        margin-right: 15px;
        font-size: 2rem;
    }

    .toppage-recruit-item a:hover {
        /* リンクにホバー時背景色を変更する */
        border: none;
        background-color: rgba(75, 157, 207, 0.7);
        /* リンクにホバー時、背景色を不透明にする */
    }

    .toppage-recruit-item a:hover span {
        color: rgba(255, 255, 255, 0.7);
        /* リンクにホバー時、文字色を白色にする */
    }

    .toppage-recruit-more {
        position: absolute;
        left: 50%;
        /* 左端が中央にくる */
        transform: translateX(-50%);
        /* 自分自身の幅の50%だけ左にずらす */
        bottom: 15px;

        height: 40px;
        width: 200px;
        border: 2px solid rgba(75, 157, 207, 0.5);
        /* 半透明緑の枠線 */
        background-color: rgba(255, 255, 255, 0.7);
        /* 半透明の背景 */
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s;
        /* 0.3秒で背景色を変更する */
    }

    .toppage-recruit-more a {
        font-size: 1.4rem;
        color: #333;
        letter-spacing: 1px;
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .toppage-recruit-more a:hover {
        /* リンクにホバー時背景色を変更する */
        border: none;
        background-color: rgba(75, 157, 207, 0.7);
        /* リンクにホバー時、背景色を不透明青にする */
    }

    /* BACK TO TOP */
    .back-to-top {
        margin: 70px 0 70px 35px;
        font-size: 1rem;
    }

    .back-to-top a {
        color: #4b9dcf;
        border-bottom: 1px solid transparent;
        /*透明の下線を用意*/
        transition: border-bottom .45s ease;
        /*0.45秒かけて滑らかに下線を変化*/
    }

    .back-to-top a:hover {
        border-bottom: 1px solid #4b9dcf;
        /*下線を表示*/
    }

    .toppage-recruit-grid a:hover div {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
    .back-to-top span {
        display: inline-block;
        margin-right: 10px;
        transform: skew(-10deg);
        /* 文字を少し斜めにする */
    }

    body #wrapper {
        overflow: auto !important;
    }

    /* cmn.cssを編集しないためにこのファイルで編集 */
    #footer {
        position: relative !important;
        /* absoluteの無効化 */
        left: auto !important;
        /* leftを無効化 */
        transform: none !important;        
    }
}

/* レスポンシブ対応　iPad以下の表示 */
@media screen and (max-width: 1024px) {

    html,
    body {
        background-color: #e6f0ff;
        font-family: 'Noto Sans JP', sans-serif;
        /*フォント変更*/
    }

    .toppage-header-logo-right {
        display: none;
        /*SP画面ではロゴを非表示に*/
    }

    /*メインビュー*/
    .swiper {
        width: 100%;
        height: 100vh;
        overflow-x: hidden;
    }

    .swiper-wrapper {
        display: flex;
        height: 100%;
    }

    .swiper-slide {
        flex-shrink: 0;
        width: 100%;
        height: 80vh;
        position: relative;
    }

    .swiper-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: none;
        overflow: hidden;
        display: block;
    }

    .toppage-slide-fullimg {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: bottom !important;
    }

    .toppage-main-text-overlay {
        position: absolute;
        /*メインビューの文字位置指定*/
        top: 82%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: bold;
        text-align: center;
        color: #4b9dcf;
        z-index: 10;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .toppage-main-text-overlay-fullimg {
       position: absolute;
        /*メインビューの文字位置指定*/
        top: 35%;
        left: 60%;
        transform: translate(-50%, -50%);
        /*メインビューの文字位置指定*/
        color: #fff;
        z-index: 10;
        width: 40%;
        padding: 0 20px;
        box-sizing: border-box; 
        width: 380px;
    }

    .toppage-main-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
        /*文字が目立つように影つけ*/
    }

    .toppage-subtitle {
        display: none;
        /* font-size: 1rem;
        text-align: start; /*説明文は右寄せ
        margin-bottom: 1rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); */
    }

    .toppage-slide-view-more {
        display: inline-block;
        font-weight: bold;
        color: #fff;
        background-color: #4b9dcf;
        border: 1px solid #4b9dcf;
        border-radius: 0.3rem;
        padding: 0.5rem 1rem;
        width: 25%;
        box-shadow: 0 4px 10px rgba(75, 157, 207, 0.4);
        transition: background-color .45s ease, color .45s ease;
        /*0.45秒かけて色を変える*/
    }

    /* VIER MOREにマウスをホバーさせると色を反転させる */
    .toppage-slide-view-more:hover {
        color: #4b9dcf;
        background-color: #fff;
    }

     /* information */
    .toppage-information-section {
        box-sizing: border-box;
        padding: 20px 60px 20px 60px;
    }

    .information-title {
        font-size: 2rem;
        font-weight: bold;
        color: #4b9dcf;
        text-align: center;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        /*文字に影つけ*/
        padding: 20px;
        border-bottom: 2px solid #4b9dcf;

    }

    .toppage-information {
        font-size: 1rem;
        padding: 8px;
        border-bottom: 1px solid #dedede;
    }

    .toppage-information article {
               
    }

    .toppage-information p {
        width:200px;
    }

    .toppage-information a {
        color: #212121;
    }

    .toppage-information-view-more {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        height: 25px;
        width: 120px;
        margin: 0 auto;
        padding: 20px;
    }

    .toppage-information-view-more a {
        color: #212121;
    }

    /* スローガン 
    .toppage-slogan-section {
        padding: 90px 20px;
        text-align: center;
        font-weight: bold;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        文字に影つけ
    }

    .toppage-slogan-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #4b9dcf;
    }

    .toppage-slogan-message {
        font-size: 1rem;
        color: #666;
        margin: 0 auto;
    }
    */

    /* 会社概要 */
    .toppage-company-container {
        padding: 20px;

    }

    .toppage-company-container img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    /* SP版時は文字と画像の表示順を逆にする */
    .toppage-company-container a {
        display: flex;
        flex-direction: column-reverse;
    }

    .toppage-company-container p {
        text-align: center;
        margin-top: 1.1rem;
        margin-bottom: 1rem;
        font-size: 1.4rem;
        padding-bottom: 0.4rem;
        color: #4b9dcf;
        border-bottom: 2px solid #4b9dcf;
    }

    #toppage-company {
        margin-bottom: 40px;
    }

    /* 事業内容 */
    .toppage-services-title {
        margin-bottom: 35px;
        display: flex;
        justify-content: center;
        text-align: center;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        /*文字に影つけ*/
    }

    .toppage-service {
        color: #4b9dcf;
        font-weight: bold;
        font-size: 2rem;
        border-bottom: 2px solid #4b9dcf;
        border-right: 3px solid #4b9dcf;
        transform: skew(-10deg);
        /*文字と線を斜めに*/
    }

    .toppage-services-title span {
        padding: 0 10px;
    }

    .toppage-business-area {
        color: #fff;
        background-color: #4b9dcf;
        font-size: 1rem;
        padding: 10px;
        width: 30%;
        transform: skew(-10deg);
        /*背景を斜めに*/
    }

    .toppage-business-area span {
        display: inline-block;
        transform: skew(10deg);
        /*文字を斜めから戻す*/
    }

    .toppage-services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .toppage-service-item a {
        display: block;
        /*リンク領域を画像全体に*/
    }

    .toppage-service-item img {
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
        transition: transform 1.2s ease;
    }

    .toppage-service-item a:hover img {
        transform: scale(1.1);
        /*1.2秒かけて画像を1.1倍にズーム*/
    }

    .toppage-service-item {
        position: relative;
        overflow: hidden;
    }

    #toppage-services {
        margin-bottom: 40px;
    }

    /*文字が目立つ様に画像に薄く影つけ*/
    .toppage-service-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent 60%);
        /*画像下部より薄黒いグラデーションで装飾*/
        z-index: 1;
        pointer-events: none;
        /*マウスイベントが背後の要素に届くようにする。これが無いと、リンクの反応を妨げてしまう。*/
    }

    .toppage-service-item span {
        position: absolute;
        bottom: 10px;
        left: 10px;
        color: #fff;
        z-index: 2;
        font-size: 1rem;
        font-weight: bold;
        letter-spacing: 1px;
        /*文字間を空ける*/
    }

    img {
        transition: transform 0.3s ease;
    }

    img:hover {
        transform: scale(1.1);
    }

    /* 採用情報 */
    .toppage-recruit-title {
        margin-bottom: 35px;
        display: flex;
        justify-content: center;
        text-align: center;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        /*文字に影つけ*/
    }

    .toppage-recruit {
        color: #4b9dcf;
        font-weight: bold;
        font-size: 2rem;
        border-bottom: 2px solid #4b9dcf;
        border-right: 3px solid #4b9dcf;
        transform: skew(-10deg);
        /*文字と線を斜めに*/
    }

    .toppage-recruit-title span {
        padding: 0 10px;
    }

    .toppage-recruit-jp {
        color: #fff;
        background-color: #4b9dcf;
        font-size: 1rem;
        padding: 10px;
        width: 30%;
        transform: skew(-10deg);
        /*背景を斜めに*/
    }

    .toppage-recruit-jp span {
        display: inline-block;
        transform: skew(10deg);
        /*文字を斜めから戻す*/
    }

    .toppage-recruit-area {
        position: relative;
    }

    .toppage-recruit-items1 {
        background-image: url('../../../../images/recruit_bg1_pexels.jpg');
        background-size: cover;
        background-position: center;
        padding: 55px;
    }
    
    .toppage-recruit-items2 {
        background-image: url('../../../../images/recruit_bg2_pexels.jpg');
        background-size: cover;
        background-position: center;
        padding: 55px 55px 70px;
    }

    .toppage-recruit-items1 ul,
    .toppage-recruit-items2 ul {
        display: grid;
        gap: 12px;
        max-width: 800px;
    }

    .toppage-recruit-item {
        height: 65px;
        border: 2px solid rgba(75, 157, 207, 0.5);
        /* 半透明緑の枠線 */
        background-color: rgba(255, 255, 255, 0.7);
        /* 半透明の背景 */
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s;
        /* 0.3秒で背景色を変更する */
    }

    .toppage-recruit-item a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        /* リンクをliの範囲全体にする */
    }

    .toppage-recruit-item div {
        font-size: 1rem;
        color: #333;
        letter-spacing: 1px;
    }

    .toppage-recruit-item span {
        color: #4b9dcf;
        margin-right: 15px;
        font-size: 1rem;
    }

    .toppage-recruit-item a:hover {
        /* リンクにホバー時背景色を変更する */
        border: none;
        background-color: rgba(75, 157, 207, 0.7);
        /* リンクにホバー時、背景色を不透明にする */
    }

    .toppage-recruit-item a:hover span {
        color: rgba(255, 255, 255, 0.7);
        /* リンクにホバー時、文字色を白色にする */
    }

    .toppage-recruit-more {
        position: absolute;
        left: 50%;
        /* 左端が中央にくる */
        transform: translateX(-50%);
        /* 自分自身の幅の50%だけ左にずらす */
        bottom: 15px;

        height: 30px;
        width: 160px;
        border: 2px solid rgba(75, 157, 207, 0.5);
        /* 半透明緑の枠線 */
        background-color: rgba(255, 255, 255, 0.7);
        /* 半透明の背景 */
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s;
        /* 0.3秒で背景色を変更する */
    }

    .toppage-recruit-more a {
        font-size: 1rem;
        color: #333;
        letter-spacing: 1px;
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .toppage-recruit-more a:hover {
        /* リンクにホバー時背景色を変更する */
        border: none;
        background-color: rgba(75, 157, 207, 0.7);
        /* リンクにホバー時、背景色を不透明青にする */
    }

    /* BACK TO TOP */
    .back-to-top {
        margin-top: 60px;
        margin-bottom: 180px;
        font-size: 1rem;
        text-align: center;
    }

    .back-to-top a {
        color: #4b9dcf;
        border-bottom: 1px solid transparent;
        /*透明の下線を用意*/
        transition: border-bottom .45s ease;
        /*0.45秒かけて滑らかに下線を変化*/
    }

    .back-to-top a:hover {
        border-bottom: 1px solid #4b9dcf;
        /*下線を表示*/
    }

    .back-to-top span {
        display: inline-block;
        margin-right: 10px;
        transform: skew(-10deg);
    }

}