@charset "utf-8";

/*--- PC版表示CSS ---*/
html {
    font-size: 62.5%;
    /* 10px */
    scroll-snap-type:y mandatory;
    scroll-behavior:smooth;
}

body {
    color: #333;
    background: #fff url(../images/bg_checkered.png) repeat 0 0 fixed;
    font-size: 1.4rem;
    /* 16px */
    line-height: 1.6em;
    position: relative;
    font-family: YakuHanJP, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Helvetica Neue', 'Helvetica', Arial, Meiryo, sans-serif;
    overflow-y:scroll;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 1.4rem;
        /* 14px */
        line-height: 1.4em;
    }
}



/*-------------------------------------
スワイプ効果
-------------------------------------*/

.panel {
    height:100dvh;
    scroll-snap-align:start;
    /* display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:30px; */
}



/*-------------------------------------
Google-Fonts
-------------------------------------*/
.noto-serif-jp-medium {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}



/*-------------------------------------
共通CSS
-------------------------------------*/
* {
    box-sizing: border-box;
}

img {
    vertical-align: bottom;
}

a {
    position: relative;
    z-index: 2;
    color: #666;
    text-decoration: none;
    transition: all 0.5s;
}

a:hover {
    transition: all 0.5s;
    opacity: 0.8;
}

a img:hover {
    transition: all 0.5s;
    opacity: 0.8;
}

a img {
    border-width: 0px;
    border-style: none;
    border-color: #fff;
    background: transparent;
}

a.anchor {
    display: block;
    padding-top: 10px;
    margin-top: -10px;
}

section {
    position: relative;
    width: 100%;
}

.w100pct {
    position: relative;
    width: 100%;
}

.w1000px {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.w1280px {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.w960px {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.w800px {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.w600px {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}




/*-------------------------------------
カラーコンポーネント
-------------------------------------*/
.txt_skyblue {
    color: #00A2E9 !important;
}

.txt_orange {
    color: #F45A03 !important;
}

.txt_brown {
    color: #6C5142 !important;
}

.txt_lightgray {
    color: #F0EFED !important;
}

.txt_black {
    color: #333 !important;
}

.txt_white {
    color: #fff !important;
}



.bg_checkered {
    background: #fff url(../images/bg_checkered.png) repeat 0 0 fixed;
}

.bg_skyblue {
    color: #fff !important;
    background: #00A2E9 !important;
}

.bg_orange {
    color: #fff !important;
    background: #F45A03 !important;
}

.bg_brown {
    color: #fff !important;
    background: #6C5142 !important;
}

.bg_lightgray {
    background: #F0EFED !important;
}

.bg_gray {
    color: #fff !important;
    background: #ccc !important;
}

.bg_black {
    color: #fff !important;
    background: #333 !important;
}

.bg_white {
    background: #fff !important;
}




/*-------------------------------------
ボタンコンポーネント
-------------------------------------*/
/* ボタンブルー */
.btn_skyblue a {
    color: #fff;
    background: #00A2E9;
    width: 320px;
    height: 64px;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_blue a:hover {
    background: #008FCE;
    opacity: 1.0;
}

/* ボタンオレンジ */
.btn_red a {
    color: #fff;
    background: #F45A03;
    width: 200px;
    height: 48px;
    border-radius: 24px;
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_red a:hover {
    background: #E85400;
    opacity: 1.0;
}

/* ボタンもっと見る アニメーション付 */
.btn_more {
    position: relative;
    color: transparent;
    background-color: #F45A03;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    text-align: center;
    line-height: 50px;
    padding: 0;
    overflow: hidden;
    white-space: inherit;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    display: block;
    transition: 0s;
}

.btn_more:hover {
    color: #fff;
    width: auto;
    padding: 0 2.5em 0 1.5em;
    opacity: 1.0;
}

.btn_more::after {
    position: absolute;
    top: 18px;
    right: 20px;
    content: '';
    width: 12px;
    height: 12px;
    border-top: #fff 3px solid;
    border-right: #fff 3px solid;
    transform: rotate(45deg);
    display: block;
}

@media screen and (max-width: 576px) {
    .btn_more {
        position: relative;
        color: #fff;
        background-color: #F45A03;
        width: auto;
        height: 40px;
        border-radius: 20px;
        text-align: center;
        line-height: 40px;
        padding: 0 2.0em 0 1.0em;
        overflow: hidden;
        white-space: inherit;
        font-family: 'M PLUS Rounded 1c', sans-serif;
        font-size: 1.8rem;
        font-weight: 500;
        display: block;
        transition: 0s;
    }

    .btn_more::after {
        position: absolute;
        top: 14px;
        right: 18px;
        content: '';
        width: 10px;
        height: 10px;
        border-top: #fff 3px solid;
        border-right: #fff 3px solid;
        transform: rotate(45deg);
        display: block;
    }
}

.btn_cv {
    position: relative;
    color: #fff;
    background: #00A2E9;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 2.0rem;
    padding: 0.75em 2.5em;
    border-radius: 100px;
}

@media screen and (max-width: 576px) {
    .btn_cv {
        font-size: 1.8rem;
        padding: 0.75em 2.5em;
    }
}

.btn_cv::before {
    position: absolute;
    top: 38%;
    right: 20px;
    content: '';
    width: 10px;
    height: 10px;
    border-top: #fff 2px solid;
    border-right: #fff 2px solid;
    transform: rotate(45deg);
    display: block;
}


/*-------------------------------------
ハンバーガー
-------------------------------------*/

.hamburger {
    display: none;
}

@media screen and (max-width: 1099px) {
    .hamburger {
        display: block;
        position: fixed;
        z-index: 1000;
        right: 24px;
        top: 20px;
        width: 31px;
        height: 31px;
        cursor: pointer;
        text-align: center;
        background: #ccc0;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 31px;
        height: 1px;
        left: 0;
        background: #e4007f;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 7px;
    }

    .hamburger span:nth-child(2) {
        top: 15px;
    }

    .hamburger span:nth-child(3) {
        top: 23px;
    }

    /* ナビ開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
        background: #e4007f;
        top: 15px;
        left: 0;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .hamburger.active span:nth-child(2) {
        background: #e4007f;
        top: 15px;
        left: 10px;
        width: 1px;
    }

    .hamburger.active span:nth-child(3) {
        background: #e4007f;
        top: 15px;
        left: 0;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        transform: rotate(135deg);
    }
}




@media screen and (min-width: 1100px) {
    .nav_menu {
        display: none;
    }
}

@media screen and (max-width: 1099px) {
    .nav_menu {
        position: fixed;
        z-index: 90;
        top: 0;
        right: 0;
        color: #333;
        background: #fff url(../images/sp/bg_menu.webp) no-repeat 50% 0 / cover;
        transform: translateX(-100vw);
        transition: all 0.6s;
        width: 100%;
        height: 100%;
        padding: 160px 20px 0;
        display: block;
        overflow-y: scroll;
    }

    /* .activeを、jsで付与・解除する */
    .nav_menu.active {
        transform: translateX(0%);
    }

    .nav_menu-overlay {
        position: fixed;
        z-index: 89;
        top: 0;
        right: 0;
        content: "";
        background: #3338;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease;
        width: 100%;
        height: 100%;
    }

    /* .activeを、jsで付与・解除する */
    .nav_menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }


    .menu_list {
        margin-bottom: 30px;
    }

    .menu_list li {
        position: relative;
        padding: 1.25em 0.5em;
        flex: 0 0 72px;
    }

    .menu_list li:before {
        position: absolute;
        top: 1.75em;
        right: 1.5em;
        transform: translateY(-50%);
        content: "";
        width: 12px;
        height: 12px;
        border-top: #00A2E9 2px solid;
        border-right: #00A2E9 2px solid;
        transform: rotate(45deg);
    }

    .menu_list li a {
        display: block;
    }

    .nav_menu_logo {
        width: 286px;
        margin: 0 auto;
    }

    #sp_menu {
        display: flex;
        flex-direction: column;
        row-gap: 1.6em;
        justify-content: center;
        width: 160px;
        margin: 30px auto;
    }

    #sp_menu a {
        position: relative;
        color: #003EA2;
        font-family: "Noto Serif JP", serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 1.6rem;
        display: block;
    }

        #sp_menu a::after {
            position: absolute;
            top: 24%;
            right: 0;
            content: '';
            width: 8px;
            height: 8px;
            border-top: #003EA2 solid 2px;
            border-right: #003EA2 solid 2px;
            transform: rotate(45deg);
        }
}

@media screen and (max-width: 375px) {
    .nav_menu {
        padding: 120px 20px 0;
    }
}




/*-------------------------------------
ファーストビュー
-------------------------------------*/
.fv {
    position: relative;
    background: url(../images/pc/bg_fv.webp) no-repeat 50% 0 / cover;
}

/*-- md - W576 --*/
@media screen and (max-width: 576px) {
    .fv {
        position: relative;
        background: url(../images/sp/bg_fv.webp) no-repeat 50% 50% / cover;
    }
}





/*-------------------------------------
ヘッダー
-------------------------------------*/
header {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100vw;
}

#global_menu {
    height: 80px;
    background: linear-gradient(180deg, #fff, #fff0);
    display: flex;
    justify-content: center;
    align-items: center;
}

#nav_pc {
    display: flex;
    column-gap: 2.0em;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.8rem;
}

#nav_pc a {
    color: #003EA2;
}

#nav_pc a:hover {
    color: #0086D9;
}

.header_cta a {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 100;
    width: 256px;
    height: 64px;
    background: url(../images/pc/btn_header_cta.webp) no-repeat 50% 50% / cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 2.0rem;
}

.header_cta a:after {
    position: absolute;
    top: 42%;
    right: 1.5em;
    content: '';
    width: 10px;
    height: 10px;
    border-top: #fff solid 2px;
    border-right: #fff solid 2px;
    transform: rotate(45deg);
    margin-left: 0.5em;
}





/*-------------------------------------
お悩み
-------------------------------------*/
.trouble01 {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url(../images/pc/bg_trouble01.webp) no-repeat 50% 0 / cover;
}

.trouble01__wrap {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url(../images/pc/image_trouble01.webp) no-repeat 50% 0 / contain;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .trouble01 {
        background: url(../images/sp/bg_trouble01.webp) no-repeat 50% 0 / cover;
    }

    .trouble01__wrap {
        position: relative;
        width: 100vw;
        height: 100vh;
        background: url(../images/sp/image_trouble01.webp) no-repeat 50% 0 / contain;
    }
}

.trouble02 {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url(../images/pc/bg_trouble02.webp) no-repeat 50% 100% / cover;
}

.trouble02__wrap {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url(../images/pc/image_trouble07.webp) no-repeat 50% 94% / 50%;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .trouble02 {
        background: url(../images/sp/bg_trouble02.webp) no-repeat 50% 100% / cover;
    }

    .trouble02__wrap {
        position: relative;
        width: 100vw;
        height: 100vh;
        background: url(../images/sp/image_trouble07.webp) no-repeat 50% 90% / 80%;
    }
}

.trouble__end {
    align-self: flex-end;
}

.trouble__start {
    align-self: flex-start;
    margin: -80px 0;
}

.trouble__end img,
.trouble__start img {
    width: 100%;
    height: auto;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .trouble__end {
        align-self: center;
    }

    .trouble__start {
        align-self: center;
        margin: 30px 0;
    }

    .trouble__end img,
    .trouble__start img {
        width: 100%;
        height: auto;
    }
}

/*-- xs - W375 --*/
@media (max-width: 375px) {
    .trouble__start {
        align-self: center;
        margin: -10px 0;
    }

    .trouble__end img,
    .trouble__start img {
        width: 100%;
        height: auto;
    }
}





/*-------------------------------------
Winn Ace
-------------------------------------*/
.winnace {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url(../images/pc/bg_winnace.webp) no-repeat 50% 50% / cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .winnace {
        background: url(../images/sp/bg_winnace.webp) no-repeat 50% 50% / cover;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.image_winnace {
    height: 600px;
    margin-bottom: 80px;
}

.image_winnace img {
    height: 100%;
    width: auto;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .image_winnace {
        height: 560px;
        margin-bottom: 40px;
    }
}

/*-- sm - W375 --*/
@media (max-width: 375px) {
    .image_winnace {
        height: 480px;
        margin-bottom: 40px;
    }
}

.btn_cta {
    position: relative;
    width: 400px;
    height: 80px;
    background: url(../images/pc/btn_cta.webp) no-repeat 50% 50% / cover;
    color: #fff;
    font-weight: 500;
    font-size: 2.4rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_cta::before {
    position: absolute;
    top: -35px;
    left: 10px;
    content: '';
    width: 105px;
    height: 145px;
    background: url(../images/pc/btn_bottle.webp) no-repeat 50% 50% / cover;
}

.btn_cta::after {
    position: absolute;
    top: 42%;
    right: 30px;
    content: '';
    width: 12px;
    height: 12px;
    border-top: #fff solid 2px;
    border-right: #fff solid 2px;
    transform: rotate(45deg);
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .btn_cta {
        position: relative;
        width: 335px;
        height: 64px;
        background: url(../images/sp/btn_cta.webp) no-repeat 50% 50% / cover;
        color: #fff;
        font-weight: 500;
        font-size: 1.8rem;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn_cta::before {
        position: absolute;
        top: -35px;
        left: 10px;
        content: '';
        width: 92px;
        height: 122px;
        background: url(../images/sp/btn_bottle.webp) no-repeat 50% 50% / cover;
    }

    .btn_cta::after {
        position: absolute;
        top: 42%;
        right: 30px;
        content: '';
        width: 12px;
        height: 12px;
        border-top: #fff solid 2px;
        border-right: #fff solid 2px;
        transform: rotate(45deg);
    }
}





/*-------------------------------------
こんな方におすすめ！
-------------------------------------*/
.recommend {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url(../images/pc/bg_osusume.webp) no-repeat 50% 50% / cover;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .recommend {
        background: url(../images/sp/bg_osusume.webp) no-repeat 50% 50% / cover;
    }
}

.slider_caption {
    color: #0086D9;
    font-weight: 600;
    font-size: 2.0rem;
    margin: 0.5em 0 0.25em;
}

.slider_description {
    font-size: 1.6rem;
    line-height: 1.4em;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .slider_caption {
        font-size: 1.6rem;
        margin: 0.5em 0 0.25em;
    }

    .slider_description {
        font-size: 1.4rem;
        line-height: 1.4em;
    }
}

.slider01 {
    width:85%;
    max-width:1000px;
    margin:0 auto;
}

.slider01 .slick-slide{
    margin:0 15px;
}

.slider01 .slick-list{
    margin:0 -15px;
}

.slider01 img {
    width:100%;
    height: 100%;
    display:block;
    border-radius:10px;
}





/*-------------------------------------
アバウト
-------------------------------------*/
.about {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url(../images/pc/bg_becouse.webp) no-repeat 50% 100% / contain;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .about {
        position: relative;
        width: 100%;
        min-height: 100vh;
        background: url(../images/sp/bg_becouse.webp) no-repeat 50% 100% / contain;
    }
}

.image_about {
    height: 600px;
}

.image_about img {
    width: 100%;
    height: 100%;
    aspect-ratio: 810 / 779;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .image_about {
        height: 600px;
    }

    .image_about img {
        aspect-ratio: 400 / 640;
    }
}

/*-- xs - W375 --*/
@media (max-width: 375px) {
    .image_about {
        height: 480px;
    }

    .xs_pt60 {
        padding-top: 60px !important;
    }
}





/*-------------------------------------
使える！
-------------------------------------*/
.way01 {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url(../images/pc/image_way09.webp) no-repeat 50% 0 / cover;
}

.way02 {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url(../images/pc/image_way10.webp) no-repeat 50% 100% / cover;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .way01 {
        background: url(../images/sp/image_way09.webp) no-repeat 50% 0 / cover;
    }

    .way02 {
        position: relative;
        background: url(../images/sp/image_way10.webp) no-repeat 50% 100% / cover;
    }
}

.way__top,
.way__bottom {
    text-align: center;
}

.way__top img,
.way__bottom img {
    width: 100%;
    height: auto;
    aspect-ratio: 18 / 21;
}

.way__bottom {
    margin-top: 80px;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .way__top,
    .way__bottom {
        font-size: 1.2rem;
        width: 40%;
    }

    .way__bottom {
        margin-top: 0;
    }
}

/*-- sm - W375 --*/
@media (max-width: 375px) {
    .way__out {
        display: none;
    }
}





/*-------------------------------------
Winn Aceが選ばれる理由　ポイント
-------------------------------------*/
.point {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url(../images/pc/bg_point.webp) no-repeat 50% 50% / cover;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .point {
        position: relative;
        width: 100%;
        min-height: 100vh;
        background: url(../images/sp/bg_point.webp) no-repeat 50% 50% / cover;
    }
}

.point img {
    width: 100%;
    height: auto;
}




/*-------------------------------------
お客様の声
-------------------------------------*/
.voice {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url(../images/pc/bg_voice.webp) no-repeat 50% 50% / cover;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .voice {
        position: relative;
        width: 100%;
        min-height: 100vh;
        background: url(../images/sp/bg_voice.webp) no-repeat 50% 50% / cover;
    }
}

.voice_article img {
    width: 380px;
    height: auto;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .voice {
        position: relative;
        width: 100%;
        min-height: 100vh;
        background: url(../images/sp/bg_voice.webp) no-repeat 50% 50% / cover;
    }

    .voice_article {
        width: 100%;
        margin: 0 auto;
    }

    .voice_article img {
        width: 100%;
        height: auto;
    }
}





/*-------------------------------------
よくある質問
-------------------------------------*/
dl.faq_content dt {
    color: #0063A0;
    border-bottom: #0063A0 solid 1px;
    font-weight: 600;
    font-size: 2.0rem;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
}

dl.faq_content dd {
    font-size: 1.8rem;
    line-height: 1.8em;
    margin-bottom: 2.0em;
}

@media (max-width: 576px) {
    dl.faq_content dt {
        font-size: 1.6rem;
        padding-bottom: 0.5em;
        margin-bottom: 0.5em;
    }

    dl.faq_content dd {
        font-size: 1.4rem;
        line-height: 1.7em;
        margin-bottom: 1.6em;
    }
}

@media (max-width: 375px) {
    dl.faq_content dt {
        font-size: 1.6rem;
        padding-bottom: 0.25em;
        margin-bottom: 0.25em;
    }

    dl.faq_content dd {
        font-size: 1.4rem;
        line-height: 1.6em;
        margin-bottom: 1.4em;
    }
}





/*-------------------------------------
スペース絆の紹介
-------------------------------------*/

.kizuna {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, #f6c7db88 10%, #f6c7db00 80%);
}

.kizuna_image,
.kizuna_content {
    width: 48%;
}

@media (max-width: 576px) {
    .kizuna_image,
    .kizuna_content {
        width: 85%;
    }
}

.kizuna_image img {
    width: 100%;
    height: auto;
}

.kizuna_samary {
    color: #000;
    font-weight: 700;
    font-size: 2.0rem;
    line-height: 2.4em;
    border-bottom: #e4007f dashed 1px;
    padding-bottom: 0.5em;
    display: inline;
}

.kizuna_description {
    margin-top: 1.0em;
    font-size: 1.6rem;
    line-height: 1.8em;
}

.to_contact {
    position: relative;
    color: #e4007f;
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 1.5em;
    width: 800px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 576px) {
    .kizuna_content {
        margin-top: 1.0em;
    }

    .kizuna_samary {
        font-size: 1.6rem;
        line-height: 1.8em;
        border-bottom: #e4007f dashed 1px;
        padding-bottom: 0.25em;
        display: inline;
    }

    .kizuna_description {
        margin-top: 1.0em;
        font-size: 1.4rem;
        line-height: 1.6em;
    }
}

.to_contact::before {
    position: absolute;
    top: 50%;
    left: 0;
    content: '';
    width: calc(400px - 5.0em);
    height: 1px;
    background-color: #e4007f;
    display: block;
}

.to_contact::after {
    position: absolute;
    top: 50%;
    right: 0;
    content: '';
    width: calc(400px - 5.0em);
    height: 1px;
    background-color: #e4007f;
    display: block;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .to_contact {
        position: relative;
        color: #e4007f;
        font-size: 1.8rem;
        margin-bottom: 1.5em;
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }

    .to_contact::before {
        position: absolute;
        top: 50%;
        left: 0;
        content: '';
        width: calc(50% - 4.0em);
        height: 1px;
        background-color: #e4007f;
        display: block;
    }

    .to_contact::after {
        position: absolute;
        top: 50%;
        right: 0;
        content: '';
        width: calc(50% - 4.0em);
        height: 1px;
        background-color: #e4007f;
        display: block;
    }
}

.meishou {
    position: relative;
    color: #000;
    font-weight: 600;
    font-size: 2.0rem;
    display: block;
    width: 640px;
    margin:0 auto;
    padding-left: 5.5em;
}

.meishou::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    content: '';
    width: 110px;
    height: 70px;
    background: url(../images/pc/image_kizuna03.webp);
    display: block;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .meishou {
        position: relative;
        font-size: 1.8rem;
        width: 90%;
        padding-left: 6.0em;
    }
}



/*-------------------------------------
フッター
-------------------------------------*/
footer {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: url(../images/pc/bg_footer.webp) no-repeat 50% 50% / cover;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    footer {
        background: url(../images/sp/bg_footer.webp) no-repeat 50% 50% / cover;
    }
}

.footer_image {
    width: 650px;
    height: 400px;
}

.footer_image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 900 / 840;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .footer_image {
        width: 100%;
        height: auto;
    }
}

.btn_cta_footer {
    position: relative;
    background: url(../images/pc/btn_footer_cta.webp) no-repeat 50% 50% /cover;
    color: #fff;
    font-weight: 500;
    font-size: 2.6rem;
    width: 450px;
    height: 86px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_cta_footer::after {
    position: absolute;
    top: 42%;
    right: 30px;
    content: '';
    width: 12px;
    height: 12px;
    border-top: #fff solid 2px;
    border-right: #fff solid 2px;
    transform: rotate(45deg);
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .btn_cta_footer {
        background: url(../images/sp/btn_footer_cta.webp)no-repeat 50% 50% /contain;
        font-size: 2.0rem;
        width: 80%;
        margin: 0 auto;
    }
}

.footer_menu {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 80px;
    font-size: 1.4rem;
}

/*-- sm - W576 --*/
@media (max-width: 576px) {
    .footer_menu {
        bottom: 60px;
        font-size: 1.2rem;
    }
}

/*-- xs - W375 --*/
@media (max-width: 375px) {
    .footer_menu {
        bottom: 40px;
    }

    .xs_pt60 {
        padding-top: 60px !important;
    }

    .xs_pt40 {
        padding-top: 40px !important;
    }

    .xs_pt20 {
        padding-top: 20px !important;
    }

    .xs_px40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .xs_my20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .xs_mt20 {
        margin-top: 20px !important;
    }

    .xs_mb40 {
        margin-bottom: 40px !important;
    }

    .xs_mb20 {
        margin-bottom: 20px !important;
    }

    .xs_gp0 {
        row-gap: 0 !important;
    }

    .xs_rgp5 {
        row-gap: 5px !important;
    }

    .xs_rgp10 {
        row-gap: 10px !important;
    }
}

.footer_menu div a {
    color: #fff;
}

.copyright {
    position: absolute;
    bottom: 10px;
    width: 100vw;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}

@media (max-width: 576px) {
    .copyright {
        font-size: 1.0rem;
    }
}



/*-------------------------------------
スクロールトップ
-------------------------------------*/

#page_top {
    position: fixed;
    z-index: 10;
    color: #fff;
    background: #e4007f;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    bottom: 30px;
    right: 5%;
    box-shadow: 0 4px 4px #33333380;
}

#page_top:hover {
    box-shadow: 0 0 4px #fff;
}

#page_top::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
}





/*-------------------------------------
NEWS - お知らせ
-------------------------------------*/




/*-------------------------------------
COMPANY - 会社概要
-------------------------------------*/





/*-------------------------------------
CONTACT - お問い合わせ
-------------------------------------*/




























/*--- 確認用ガイド ---*/
.css-gl {
    border: 1px dashed rgba(128, 128, 128);
    background: rgba(0, 0, 0, 0.1);
    background-blend-mode: multiply;
}

.block {
    width: 100%;
    height: 100px;
    border: 1px dashed rgba(128, 128, 128);
    background: rgba(0, 0, 0, 0.1);
    background-blend-mode: multiply;
}

/* 透明効果
mix-blend-mode: ***;
background-blend-mode: ***;

background-blend-mode: normal; 通常

background-blend-mode: darken; 比較(暗)
background-blend-mode: multiply; 乗算
background-blend-mode: color-burn; 焼き込みカラー

background-blend-mode: lighten; 比較(明)
background-blend-mode: screen; スクリーン
background-blend-mode: color-dodge; 覆い焼きカラー

background-blend-mode: overlay; オーバレイ
background-blend-mode: hard-light; ハードライト
background-blend-mode: soft-light; ソフトライト

background-blend-mode: difference; 差の絶対値
background-blend-mode: exclusion; 除外

background-blend-mode: hue; 色相
background-blend-mode: saturation; 彩度
background-blend-mode: color; カラー
background-blend-mode: luminosity; 輝度
*/










/*--- End ---*/
