@charset "utf-8";

/* 共通 */
html {
    font-size: 100%;
}

body {
    font-size: 0.9rem;
    width: 100%;
    height: auto;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.wrapper {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 30px;
}

.nav {
    position: relative;
    font-family: "BIZ UDPMincho", serif;
    font-size: 1.5rem;
    font-weight: lighter;
    padding-bottom: 10px;
    color: #fff;
    text-align: center;
}

.cont-title {
    font-size: 2.2rem;
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
}

.jump {
    font-size: 2rem;
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
}

.text {
    font-size: 1rem;
}


.toptitle{
    font-size: 2.2rem;
}

.border {
    border-top: #FCC800 solid 1.5px;
    width: auto;
    margin: 0 60px 0 0;
}

.border2 {
    border-top: #c4554e solid 1.5px;
    width: auto;
    margin: 15px 0 0 60px;
}

.border-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-35px);
}

.kirakira,
.kirakira2 {
    background-color: #F6F7F8;
    height: 50px;
}

.kirakira2 {
    transform: translateY(3px);
}

@media (max-width: 800px) {
    .sm-cont-title {
        font-size: 2.2rem;
        font-family: "BIZ UDPMincho", serif;
        font-weight: 400;
        font-style: normal;
        line-height: 4.5rem;
    }

    .jump {
        font-size: 1.75rem;
        font-family: "BIZ UDPMincho", serif;
        font-weight: 400;
        font-style: normal;
    }


    .kirakira,
    .kirakira2 {
        background-color: #F6F7F8;
        width: auto;
        height: 30px;
    }
    .border-box {
        transform: translateY(-25px);
    }
    .border {
        border-top: #FCC800 solid 1px;
        margin: 0 40px 0 0;
    }
    .border2 {
        border-top: #c4554e solid 1px;
        margin: 7px 0 0 40px;
    }
    .kirakira {
        transform: translateY(5px);
    }
    .kirakira2 {
        transform: translateY(5px);
    }
    .border-box .cont-title {
        font-size: 1.2rem;
        padding: 0 20px;
    }

}

/* 準備中 
-------------------------------------------*/
#content {
    padding: 300px 0 600px;
    background-color: #F6F7F8;
}

#content h1 {
    text-align: center;
    margin-bottom: 50px;
    color: #EE827C;
}

#content a {
    text-align: center;
}
#content .text {
    text-decoration: solid;
}


/* ヘッダー 
--------------------------------------------*/
header {
    background-color: #EE827C;
    height: 150px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.header-content .site-title {
    line-height: 1px;
}

.header-content .logo {
    width: 200px;
}

.header-content ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-content li {
    margin: 0 30px;
}
.header-content li a {
    display: block;
    font-family: "BIZ UDPMincho", sans-serif;
    font-weight: bold;
    font-size: 1rem;
}

.header-content .nav {
    position: relative;
}
.header-content .nav::after {
    position: absolute;
    content: "";
    background: linear-gradient(to right, #EE827C 10%, #FCC800 20%,#FCC800 80%, #EE827C 90%);
    height: 1.5px;
    width: 100%;
    bottom: -5px;
    left: 0px;
}

/**worknavi**/
.worknavi{
    margin: 0 auto;
    text-align: left;
    font-size: 2vw;
    color: #EE827C;
    display: grid;
    place-items: center;
}
.worknavi li{
    margin-bottom: 2vw;
}
.worknavi a{
    text-decoration: none;
    color: #EE827C;
    text-align: left;
}
.worknavi img{
    width: 10vw;
    margin-bottom: 2vw;
}
/****/


@media (min-width: 1200px) {
    .sm-header {
        display: none;
    }
}

/* ハンバーガーメニュー & スマホ */
.h-menu-input {
    display: none;
}
@media (max-width: 1200px) {
    .sm-header {
        height: 150px;
        position: relative;
    }
    /* アイコン設置場所 */
    .h-menu-btn {
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        position: fixed;
        z-index: 200;
        cursor: pointer;
        top: 40px;
        right: 15px;
    }

    /* アイコン */ 
    .h-menu-btn span,
    .h-menu-btn span::before,
    .h-menu-btn span::after {
        content: '';
        display: block;
        height: 2px;
        width: 30px;
        background-color: #fff;
        transition: 0.5s;
        position: absolute;
    }
    
    /* 棒の位置調節 */
    .h-menu-btn span::before {
        bottom: 8px;
    }
    .h-menu-btn span::after {
        top: 8px;
    }

    /* クリック時のアイコン変化 */
    #hamburger:checked ~ .h-menu-btn span::before {
        bottom: 0;
        transform: rotate(-45deg);
        width: 30px;
    }

    #hamburger:checked ~ .h-menu-btn span {
        background: rgba(255, 255, 255, 0);
    }

    #hamburger:checked ~ .h-menu-btn span::after {
        top: 0;
        transform: rotate(45deg);
        width: 30px;
    }

    /* メニューのデザイン */
    .header-content {
        display: none;
    }
    
    .sm-header .logo {
        width: 200px;
        margin: 30px 0 0 30px;
    }
    
    .sm-content {
        width: 100%;
        height: 100%;
        position: fixed;
        padding: 50px;
        top: 0;
        left: 100%;
        z-index: 100;
        background-color: #EE827C;
        transition: 0.5s;
        overflow: scroll;
    }

    .sm-content li {
        padding: 20px 0 0 0;
        text-align: right;
    }
    .sm-content a {
        color: #fff;
        font-size: 1.75rem;
        padding: 0 30px 0 0;
    }
    .sm-content ul {
        flex-direction: column;
        justify-content: right;
        margin: 40px 0 0 10px;
    }
    .sm-content ul:first-child {
        margin: 80px 10px 0 10px;
    }
    .sm-content ul .nav {
        position: relative;
        text-align: right;
        font-size: 2.75rem;
        padding: 0 15px 20px 20px;
    }
    .sm-content ul .nav::after {
        position: absolute;
        content: "";
        background: linear-gradient(
            to left, 
            #FCC800 80%,
            #EE827C 80%, 
            #EE827C calc(80% + 10px),
            #FCC800 calc(80% + 10px),
            #FCC800 95%,
            #EE827C 95%,
            #EE827C calc(95% + 10px),
            #FCC800 calc(95% + 10px)
            );
        height: 1.5px;
        width: 100%;
        bottom: 0px;
        right: 0px;
    }

    /* クリック時にメニューを表示 */
    #hamburger:checked ~ .sm-content {
        left: 0;
    }
}
@media (min-width: 800px) {
    .sm-line2 {
        position: relative;
        background-color: #EE827C;
        border: solid 1px #FCC800;
        margin: 0 50px 0 0;
        height: 100px;
        width: 100%;

    }
    .sm-line {
        display: inline-block;
        color: #fff;
        margin: 0 20px 0 0;
        height: 100px;
        width: 100%;
        background-color: #EE827C;
        border: solid 1px #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        text-align: left;
        transform: translateX(10px) translateY(-10px);
    }
    .sm-line:hover {
        background-color: #FCC800;
        border: solid 1.5px #fff;
        width: calc(100% + 1px);
        height: 101px;
        transform: translateX(0) translateY(0);
    }
    /*
    .sm-line::before {
    /* 左上の切り欠き部分 
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #EE827C;
    border-right: #fff 1px solid;
    left: -15px;
    top: -15px;
    transform: rotate(45deg);
    z-index: 2;
    }
    .sm-line::after {
    /* 右下の切り欠き部分 
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #EE827C;
    border-left: #fff 1px solid;
    right: -15px;
    bottom: -15px;
    transform: rotate(45deg);
    z-index: 2;
    }
    */

    .sm-line img {
        display: none;
    }

    .sm-content .sotomoji {
        position: relative;
        font-size: 2rem;
        color: #fff;
        text-align: center;
        margin-bottom: 20px;
    }
    .sm-content .sotomoji::before,
    .sm-content .sotomoji::after{
        position: absolute;
        content: '';
        background-color: #FCC800;
        width: 1.5px;
        height: 50px;
    }
    .sm-content .sotomoji::before {
        transform: rotate(-30deg) translateX(-30px) translateY(-20px);
    }
    .sm-content .sotomoji::after {
        transform: rotate(30deg) translateX(30px) translateY(-20px);
    }

    .sm-line .text {
        color: #fff;
        font-size: 2.75rem;
        line-height: 2rem;
    }
}


/* スマホ */
@media (max-width:800px) {
    .sm-content {
        padding: 15px;
    }
    .sm-content ul {
        margin: 15px 0 0 0;
    }
    .sm-content ul .nav {
        position: relative;
        text-align: right;
        font-size: 2rem;
        padding: 10px 15px 20px 20px;
    }
    .sm-content li {
        padding-top: 10px;
    }
    .sm-content li a {
        font-size: 1.5rem;
    }

    .sm-line2 {
        position: relative;
        background-color: #EE827C;
        border: solid 1px #FCC800;
        margin: 0 50px 20px 0;
        height: 80px;
        width: 100%;

    }
    .sm-line {
        display: inline-block;
        color: #fff;
        height: 80px;
        width: 100%;
        background-color: #EE827C;
        border: solid 1px #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        text-align: left;
        transform: translateX(10px) translateY(-10px);
    }
    .sm-line:hover {
        background-color: #FCC800;
        border: solid 1.5px #fff;
        width: calc(100% + 1px);
        height: 101px;
        transform: translateX(0) translateY(0);
    }
    /*
    .sm-line::before {
    /* 左上の切り欠き部分 
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #EE827C;
    border-right: #fff 1px solid;
    left: -15px;
    top: -15px;
    transform: rotate(45deg);
    z-index: 2;
    }
    .sm-line::after {
    /* 右下の切り欠き部分 
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #EE827C;
    border-left: #fff 1px solid;
    right: -15px;
    bottom: -15px;
    transform: rotate(45deg);
    z-index: 2;
    }
    */

    .sm-line img {
        display: none;
    }

    .sm-content .sotomoji {
        position: relative;
        font-size: 1.5rem;
        color: #fff;
        text-align: center;
        margin: 50px 0 20px 0;
    }
    .sm-content .sotomoji::before,
    .sm-content .sotomoji::after{
        position: absolute;
        content: '';
        background-color: #FCC800;
        width: 1.5px;
        height: 30px;
    }
    .sm-content .sotomoji::before {
        transform: rotate(-30deg) translateX(-20px) translateY(0px);
    }
    .sm-content .sotomoji::after {
        transform: rotate(30deg) translateX(20px) translateY(0px);
    }

    .sm-line .text {
        color: #fff;
        font-size: 1.5rem;
        line-height: 2rem;
    }

}


/* LINE登録ボタン
----------------------------*/
@media (min-width: 1200px) {
    #line,
    #line a {
        position: fixed;
        right: 20px;
        bottom: 20px;
        line-height: 1rem;
        font-family: "BIZ UDPMincho", serif;
        background: #EE827C;
        color: #fff;
        border: solid 2px #fff;
        border-radius: 20px;
        box-shadow: 0 2px 10px -6px rgba(0,0,0,.5), 0 3px 10px -4px rgba(0,0,0,.2);
        z-index: 50;
    }

    #line {
        padding: 20px;
    }
    #line a {
        padding: 10px;
    }
    #line .touroku{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 230px;
    }
    #line .sumaho {
        width: 80px;
    }

    #line .text {
        font-size: 1.25rem;
        line-height: 2rem;
        padding-left: 10px;
    }

    #sm-line {
        display: none;
    }
}
@media (max-width: 1200px) {
    #line,
    #line a {
        position: fixed;
        right: 15px;
        bottom: 15px;
        line-height: 1rem;
        font-family: "BIZ UDPMincho", serif;
        background: #EE827C;
        color: #fff;
        border: solid 2px #fff;
        border-radius: 20px;
        box-shadow: 0 2px 10px -6px rgba(0,0,0,.5), 0 3px 10px -4px rgba(0,0,0,.2);
        z-index: 50;
    }

    #line {
        padding: 15px;
    }
    #line a {
        padding: 10px;
    }
    #line .touroku{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 180px;
    }
    #line .sumaho {
        width: 50px;
    }

    #line .text {
        font-size: 1.1rem;
        line-height: 2rem;
        padding-left: 15px;
    }

    #sm-line {
        display: none;
    }
}

@media (max-width: 800px) {
    /* スマホ用 登録ボタン（画面下）
    @keyframes animation {
        0% {
            bottom: 0;
            opacity: 1;
        }
        1% {
            bottom: -100px;
            opacity: 0;
        }
        100% {
            bottom: -200px;
            opacity: 0;
        }
    }
    #sm-line,
    #sm-line a {
        position: fixed;
        right: auto;
        bottom:0;
        line-height: 1rem;
        font-family: "BIZ UDPMincho", serif;
        background: #EE827C;
        color: #fff;
        width: 100%;
        border-top: solid 1px #fff;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 5px 5px 3px rgba(0,0,0,1), none;
        z-index: 50;

        animation-name: animation;
        animation-duration: 1s;

        /*
        animation: progress 0.5s linear;
        -webkit-animation: progress 0.5s linear;
        animation-timeline: progress(block);
        -webkit-animation-timeline: progress(block);
        transition: bottom 0.5s ease-in;
        -webkit-transition: bottom 0.5s ease-in;
        
    }

    #sm-line {
        padding: 20px;
    }
    #sm-line a {
        padding: 15px;
    }

    #sm-line .touroku{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    #sm-line .sumaho {
        height: 40px;
    }
    #sm-line .text {
        font-size: 1.5rem;
        padding-left: 15px;
        letter-spacing: 0.1rem;
    }
    #sm-line .text span {
        padding-right: 2px;
        letter-spacing: 0.1rem;
        
    }

    */

    #line {
        display: none;
    }

}


/* メインビジュアル
---------------------------- */
#mainvisual {
    position: relative;
    margin: 0 auto;
}
#mainvisual .text {
    position: absolute;
    color: #3A4258;
    font-size: 4rem;
    font-family: "BIZ UDPMincho", serif;
    background-color: rgba(255, 255, 255, 60%);
    text-align: right;
    letter-spacing: 0.5rem;
    line-height: 7rem;
    padding: 15px;
    top: 10%;
    right: 5%;
    z-index: 10;
}
#mainvisual .text span {
    padding: 10px;
    border-bottom: solid #FCC800 1.5px;
}

#mainvisual .pc-photo {
    max-width: 1920px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    #mainvisual .text {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
        line-height: 4rem;
        top: 5%;
        right: 3%;
        padding: 3px 3px 5px;
        z-index: 10;
    }
    #mainvisual .text span {
        padding: 0 5px 3px 5px;
        border-bottom: solid #FCC800 1px;
    }
}


@media (min-width:800px) {
    #mainvisual .sm-photo {
        display: none
    }
}
@media (max-width: 800px) {
    #mainvisual .pc-photo {
        display: none;
    }

    #mainvisual .sm-photo {
        max-width: 800px;
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    #mainvisual .text {
        font-size: 1.25rem;
        letter-spacing: 0.25rem;
        line-height: 2rem;
        top: 5%;
        right: 3%;
        padding: 3px 3px 5px;
        z-index: 10;
    }
    #mainvisual .text span {
        padding: 0 5px 3px 5px;
        border-bottom: solid #FCC800 1px;
    }
}



/* 境界線 */
@media (min-width:1200px) {
    .shapedividers_com-110{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-110::before{ 
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat;
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 170% 136px;
        background-position: 68% 100%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23F2A19D"/></svg>'); 
        }
        
        @media (min-width:2100px){
        .shapedividers_com-110::before{
        background-size: 170% calc(2vw + 136px);
        }
    }
}

@media (max-width:1200px) {
    .shapedividers_com-86{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-86::before{
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        bottom: -1px;
        left: -1px;
        right: -1px;
        top: -1px;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat; 
        background-size: 100% 90px;
        background-position: 50% 0%;    
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>'); 
        }
        
        @media (min-width:768px){
        .shapedividers_com-86::before{
        background-size: 208% 79px;
        background-position: 53% 100%;   
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23F2A19D"/></svg>'); 
        }  
        }
         
        @media (min-width:1025px){
        .shapedividers_com-86::before{ 
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 100% 90px;
        background-position: 50% 0%;  
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>'); 
        }
        }
        @media (min-width:2100px){
        .shapedividers_com-86::before{
        background-size: 100% calc(2vw + 90px);
        }
        }              
}

@media (max-width:800px) {
    .shapedividers_com-6162{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-6162::before{
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        bottom: -1px;
        left: -1px;
        right: -1px;
        top: -1px;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat; 
        background-size: 238% 81px;
        background-position: 58% 100%;    
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23F2A19D"/></svg>'); 
        }
        
        @media (min-width:768px){
        .shapedividers_com-6162::before{
        background-size: 100% 90px;
        background-position: 50% 0%;   
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>'); 
        }  
        }
         
        @media (min-width:1025px){
        .shapedividers_com-6162::before{ 
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 100% 90px;
        background-position: 50% 0%;  
        }
        }
        @media (min-width:2100px){
        .shapedividers_com-6162::before{
        background-size: 100% calc(2vw + 90px);
        }
    }
         
}



/* 私たちについて
---------------------------- */
#about {
    background-color: #F2A19D;
    color: #fff;
    height: 1400px;
}

#about .wrapper {
    text-align: center;
    margin-top: 100px;
}

#about a {
    color: #fff;
}

#about img {
    width: 300px;
    margin: 50px 0 60px;
}

#about span {
    padding-bottom: 10px;
    background-image: url(PNG/kyokusen.png);
    background-size: 100px;
    background-position-y: 20px;
}

#about .text {
    width: 590px;
    margin: 90px auto 90px;
    text-align: left;
    line-height: 3rem;
}

#about .button {
    text-align: center;
}

#about .jump  {
    position: relative;
    display: inline-block;
    text-align: center;
    padding-bottom: 15px;
}
#about .jump::before,
#about .jump::after {
    position: absolute;
    content: '';
    bottom: 0;
}
#about .jump::before {
    right: -15px;
    width: 170px;
    height: 1.5px;
    background: linear-gradient(
        to left, 
        #FFCD81 65%,
        #F2A19D 65%, 
        #F2A19D calc(65% + 10px),
        #FFCD81 calc(65% + 10px),
        #FFCD81 88%,
        #F2A19D 88%,
        #F2A19D calc(88% + 10px),
        #FFCD81 calc(88% + 10px)
    );
}
#about .jump::after {
    right: -30px;
    width: 15px;/*三角形の横サイズ*/
    height: 15px;/*三角形の縦サイズ*/
    background-color: #FFCD81;/*三角形の色*/
    clip-path: polygon(0% 0%, 100% 100%, 0% 100%);/*三角形を指定*/
}

@media (min-width: 800px) {
    #about .sm-cont-title {
        display: none;
    }
}

@media (max-width: 800px) {
    #about .cont-title {
        display: none;
    }
    #about {
        height: 1350px;
    }
    #about .wrapper {
        margin-top: 50px;
    }
    /* 電球 */
    #about img {
        width: 230px;
        margin: 50px 0 50px 0;
    }

    #about .text {
        width: auto;
        margin: 50px 0 70px 0;
    }
    #about span {
        padding-bottom: 40px;
        background-image: url(PNG/kyokusen\ s.png);
        background-size: 95px;
        background-position-y: 23px;
    }

    #about .jump {
        padding-bottom: 15px;
    }
    #about .jump::before {
        right: -15px;
        width: 150px;
        height: 1px;
        background: linear-gradient(
            to left, 
            #FFCD81 65%,
            #F2A19D 65%, 
            #F2A19D calc(65% + 10px),
            #FFCD81 calc(65% + 10px),
            #FFCD81 88%,
            #F2A19D 88%,
            #F2A19D calc(88% + 10px),
            #FFCD81 calc(88% + 10px)
        );
    }
    #about .jump::after {
        right: -25px;
        width: 15px;/*三角形の横サイズ*/
        height: 15px;/*三角形の縦サイズ*/
        background-color: #FFCD81;/*三角形の色*/
        clip-path: polygon(0% 0%, 100% 100%, 0% 100%);/*三角形を指定*/
    }
}


/* 境界線 */
@media (min-width:800px) {
    .shapedividers_com-368{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-368::before{ 
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat;
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 300% 264px;
        background-position: 55% 100%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23c4554e"/></svg>'); 
        }
        
        @media (min-width:2100px){
        .shapedividers_com-368::before{
        background-size: 300% calc(2vw + 264px);
        }
    }
}

@media (max-width:800px) {
    .shapedividers_com-5937{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-5937::before{
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        bottom: -1px;
        left: -1px;
        right: -1px;
        top: -1px;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat; 
        background-size: 266% 81px;
        background-position: 59% 100%;    
        transform: rotateY(180deg);
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23EE827C"/></svg>'); 
        }
        
        @media (min-width:768px){
        .shapedividers_com-5937::before{
        background-size: 100% 90px;
        background-position: 50% 0%;   
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>'); 
        }  
        }
         
        @media (min-width:1025px){
        .shapedividers_com-5937::before{ 
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 100% 90px;
        background-position: 50% 0%;  
        }
        }
        @media (min-width:2100px){
        .shapedividers_com-5937::before{
        background-size: 100% calc(2vw + 90px);
        }
    }
         
}

@media (min-width:800px) {
    .shapedividers_com-1883{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-1883::before{ 
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        z-index: 50;
        pointer-events: none;
        background-repeat: no-repeat;
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 249% 300px;
        background-position: 50% 100%; 
        transform: rotateY(180deg); background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23EE827C"/></svg>'); 
        }
        
        @media (min-width:2100px){
        .shapedividers_com-1883::before{
        background-size: 249% calc(2vw + 300px);
        }
    }
}

@media (max-width:800px) {
    .shapedividers_com-3939{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-3939::before{
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        bottom: -1px;
        left: -1px;
        right: -1px;
        top: -1px;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat; 
        background-size: 238% 84px;
        background-position: 58% 100%;    
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23c4554e"/></svg>'); 
        }
        
        @media (min-width:768px){
        .shapedividers_com-3939::before{
        background-size: 100% 90px;
        background-position: 50% 0%;   
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>'); 
        }  
        }
        
        @media (min-width:1025px){
        .shapedividers_com-3939::before{ 
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 100% 90px;
        background-position: 50% 0%;  
        }
        }
        @media (min-width:2100px){
        .shapedividers_com-3939::before{
        background-size: 100% calc(2vw + 90px);
        }
    }
}
     
 

/* 紺　背景色 */
#navy {
    background-color: #EE827C;
    color: #fff;
    padding: 150px 0 100px;
}
#navy a {
    color: #fff;
}

@media (max-width: 800px) {
    #navy {
        padding: 50px 0 50px;
    }
}

/* 学習について
--------------------------------------- */
.learn01 {
    padding-bottom: 150px;
}

.learn01 .box2 {
    position: relative;
    border: 1px solid #FCC800;
    width: 80vw;
    height: 90%;
    margin: 100px 0 0 10%;
}
/* キラキラ　金 */
.learn01 .kirakira-g {
    position: absolute;
    right: -15px;
    background-color: #EE827C;
    transform: translateY(-32px);
    height: 50px;
}

.learn01 .box {
    position: relative;
    background-color: #EE827C;
    border: 1px solid #fff;
    width: auto;
    margin: 0;
    padding: 50px;
    height: auto;
    transform: translateX(-35px) translateY(-35px);
}
/* キラキラ 白 */
.learn01 .kirakira-w {
    position: absolute;
    background-color: #EE827C;
    padding: 0 20px 10px 0;
    left: -20px;
    transform: translateY(-110px);
    height: 65px;
}

.learn01 .learn01-title {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 40px;
    background-color: #EE827C;
    transform: translateY(-85px);
}
.learn01 .cont-title {
    background-color: #EE827C;
    padding: 0 2rem 0 15px;
}
/* 電球 */
.learn01 .denkyu2 {
    width: 55px;
    background-color: #EE827C;
}


.learn01 .learn01-cont {
    display: flex;
    justify-content: space-between;
    margin: 100px 100px 50px 100px;
}
.learn01 .text {
    line-height: 3rem;
    margin-right: 60px;
    width: 50%;
}

.learn01 .grid {
    display: grid;
    grid-template-columns: 15vw 15vw;
    justify-content: center;
    gap: 5%;
    column-gap: calc(5% + 5px);
    width: 50%;
    margin-left: 5%;
}
.learn01 .kotei {
    background-color: #c4554e;
}
.learn01 .grid img {
    width: 100%;
    transform: translateX(-15px) translateY(-10px);
}


.learn01 .jump  {
    position: relative;
    display: block;
    text-align: right;
    width: 50%;
    right: 0;
    bottom: 50%;
    padding: 0 100px 15px 0;
}
.learn01 .jump::before,
.learn01 .jump::after {
    position: absolute;
    content: '';
    bottom: 0;
}
.learn01 .jump::before {
    right: 80px;
    width: 180px;
    height: 1.5px;
    background: linear-gradient(
        to left, 
        #FCC800 65%,
        #EE827C 65%, 
        #EE827C calc(65% + 10px),
        #FCC800 calc(65% + 10px),
        #FCC800 88%,
        #EE827C 88%,
        #EE827C calc(88% + 10px),
        #FCC800 calc(88% + 10px)
    );
}
.learn01 .jump::after {
    right: 70px;
    width: 15px;/*三角形の横サイズ*/
    height: 15px;/*三角形の縦サイズ*/
    background-color: #FCC800;/*三角形の色*/
    clip-path: polygon(0% 0%, 100% 100%, 0% 100%);/*三角形を指定*/
}


/* sp */
@media (max-width:1200px) {
    .learn01 .learn01-cont {
        flex-direction: column;
        margin: 50px;
    }
    .learn01 .text {
        width: 100%;
        margin: 0 0 50px 0;
    }
    .learn01 .grid {
        width: 100%;
        margin: 0;
        grid-template-columns: 30vw 30vw;
    }

    .learn01 .jump  {
        width: 100%;
        right: 0;
        bottom: 50%;
        padding: 0 30px 15px 0;
    }
    .learn01 .jump::before {
        right: 20px;
    }
    .learn01 .jump::after {
        right: 10px;
    }

}
@media (max-width: 800px) {
    .learn01  {
        padding: 0 15px 150px 35px;
    }
    .learn01 .wrapper {
        padding: 0;
    }

    .learn01-title .denkyu2 {
        width: auto;
        height: 55px;
    }
    .learn01 .learn01-title {
        justify-content: left;
        position: static;
        margin: 10px 0 0 10px;
        transform: translateY(0)
    }
    .learn01 .cont-title {
        font-size: 2.4rem;
        padding: 5px 0 0 8px;
    }
    .learn01 .box2 {
        width: 100%;
        margin: 50px auto 0;
    }
    .learn01 .box {
        padding: 10px 5px;
        margin: 0 0 0;
        transform: translateX(-10px) translateY(-15px);
    }
    /* キラキラ　白 */
    .learn01 .kirakira-w {
        height: 27px;
        padding: 0 3px 3px 0;
        left: -8px;
        transform: translateY(-20px);
    }

    .learn01 .learn01-cont {
        flex-direction: column;
        margin: 0 auto;
    }

    .learn01-cont .text {
        width: 100%;
        margin: 40px 0 50px;
        padding: 0 15px;
    }
    .learn01-cont .grid {
        width: 100%;
        grid-template-columns: none;
        justify-content: center;
        gap: 30px;
        grid-column: 0;
        padding: 0 0 0 20px;
        margin: 0 auto;
    }
    .grid .phot {
        width: 100%;
    }
    .grid .kotei {
        margin: 0 auto;
    }
    .grid img {
        transform: translateX(-3px) translateY(-3px);
        max-width: 400px;
        width: 100%;
        height: 200px;
    }
    /* キラキラ　金 */
    .learn01 .kirakira-g {
        height: 23px;
        right: -8px;
        padding: 0;
        background-color: #EE827C;
        transform: translateY(-13px);
    }
    

    .learn01 .jump {
        width: 100%;
        bottom: 0;
        padding-right: 35px;
        display: inline-block;
        justify-content: right;
        margin: 50px 0;
    }
    .learn01 .jump::before {
        right: 20px;
        width: 140px;
        height: 1px;
        background: linear-gradient(
            to left, 
            #FCC800 60%,
            #EE827C 60%, 
            #EE827C calc(60% + 10px),
            #FCC800 calc(60% + 10px),
            #FCC800 85%,
            #EE827C 85%,
            #EE827C calc(85% + 10px),
            #FCC800 calc(85% + 10px)
        );
    }
    .learn01 .jump::after {
        right: 10px;
    }
}

/* 利用について　アクセス
---------------------------------------------- */
.sub-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0 130px;
}

.sub-cont img {
    height: 5vw;
    margin-bottom: 2vw;
}

.sub-cont .use {
    margin: 0 50px 0 0;
}
.sub-cont .access {
    margin: 0 0 0 50px;
}
.sub-cont .box2 {
    border: 1px solid #FCC800;
    width: 30vw;
    height: 30vw;
    border-radius: 30px;
    padding: 0;
}
.sub-cont .box {
    background-color: #EE827C;
    border: 1px solid #fff;
    text-align: center;
    width: auto;
    height: 100%;
    padding: 30% 0;
    border-radius: 30px;
    transform: translateX(-40px) translateY(-40px);
}


/* sp */
@media (max-width: 1200px) {
    .sub-cont {
        flex-direction: column;
        padding: 0 0 50px 0;
    }
    .sub-cont img {
        margin: 0 100px 0 0;
        height: 150px;
    }
    .sub-cont .use {
        margin: 0 0 0 50px;
    }
    .sub-cont .box2 {
        width: 80vw;
        margin: 50px auto;
    }
    .sub-cont .box {
        display: flex;
        justify-content: left;
        align-items: center;
        width: 80vw;
        padding: 50px 150px 50px 100px;
        text-align: left;
        transform: translateX(-30px) translateY(-30px);
    }
}

@media (max-width: 800px) {
    .sub-cont {
        padding: 0;
    }

    .sub-cont .use {
        margin: 0;
    }
    .sub-cont .access {
        margin: 0;
    }
    .sub-cont img {
        height: 20vw;
        padding: 15px 0;
        margin: 0 30px 0 30px;
    }
    .sub-cont .box2 {
        width: 90vw;
        margin: 0 0 40px 15px;
        border-radius: 20px;
    }
    .sub-cont .box {
        width: 100%;
        padding: 0 0 0 0;
        border-radius: 20px;
        transform: translateX(-10px) translateY(-10px);
    }
    .sub-cont .cont-title {
        font-size: 1.2rem;
        font-weight: 200;
        line-height: 4.5rem;
        text-align: left;
    }

}


/* 境界線 */
@media (min-width:800px) {
    .shapedividers_com-618{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-618::before{ 
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat;
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 234% 198px;
        background-position: 43% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23EE827C"/></svg>'); 
        }
        
        @media (min-width:2100px){
        .shapedividers_com-618::before{
        background-size: 234% calc(2vw + 198px);
        }
    }
}

@media (max-width:800px) {
    .shapedividers_com-2516{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-2516::before{
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        bottom: -1px;
        left: -1px;
        right: -1px;
        top: -1px;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat; 
        background-size: 217% 83px;
        background-position: 37% 0%;    
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23EE827C"/></svg>'); 
        }
        
        @media (min-width:768px){
        .shapedividers_com-2516::before{
        background-size: 100% 90px;
        background-position: 50% 0%;   
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>'); 
        }  
        }
         
        @media (min-width:1025px){
        .shapedividers_com-2516::before{ 
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 100% 90px;
        background-position: 50% 0%;  
        }
        }
        @media (min-width:2100px){
        .shapedividers_com-2516::before{
        background-size: 100% calc(2vw + 90px);
        }
        }
         
}



/* 背景　白 */
#white {
    background-color: #F6F7F8;
    color: #EE827C;
}
#white a {
    color: #EE827C;
}

/* お知らせ
---------------------------------------- */
#news {
    margin-top: 400px;
    padding-bottom: 200px;
    width: 80%;
}
#news .wrapper {
    max-width: 1520px;
}
#news .cont-title {
    background-color: #F6F7F8;
    font-size: 2.25rem;
    padding: 0 2rem;
}



/* 準備中 */
#news .text {
    font-size: 2rem;
    margin: 30px 130px 30px 130px;
    border-bottom: #cacaca solid 1px;
}

@media(max-width:800px){
    #news .cont-title {
        font-size: 2.25rem;
        padding: 0 15px;
    }
}

/* 記事のタイトル、リンク

#news .blog {
    width: auto;
    padding: 100px;
}
.blog dl {
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 0 200px;
    border-bottom: #cacaca solid 1px;

}
.blog dt {
    font-size: 2rem;
    padding: 0 20px;
}
.blog dd {
    font-size: 3rem;
    font-family: "BIZ UDPMincho", sans-serif;
    padding-left: 30px;
}

*/

#news .button {
    text-align: right;
    display: inline;
}

#news .jump  {
    position: relative;
    text-align: right;
    padding: 0 100px 15px 0;
}
#news .jump::before,
#news .jump::after {
    position: absolute;
    content: '';
    bottom: 0;
}
#news .jump::before {
    right: 80px;
    width: 180px;
    height: 1.5px;
    background: linear-gradient(
        to left, 
        #FCC800 65%,
        #F6F7F8 65%, 
        #F6F7F8 calc(65% + 10px),
        #FCC800 calc(65% + 10px),
        #FCC800 88%,
        #F6F7F8 88%,
        #F6F7F8 calc(88% + 10px),
        #FCC800 calc(88% + 10px)
    );
}
#news .jump::after {
    right: 70px;
    width: 15px;/*三角形の横サイズ*/
    height: 15px;/*三角形の縦サイズ*/
    background-color: #FCC800;/*三角形の色*/
    clip-path: polygon(0% 0%, 100% 100%, 0% 100%);/*三角形を指定*/
}

@media (max-width: 800px) {
    #news {
        margin-top: 200px;
        padding-bottom: 100px;
        width: 100%;
    }

    /* 準備中 */
    #news .text {
        margin: 10px 50px 30px;
        font-size: 1.5rem;
    }

    /* タイトル、リンク */
    #news .blog {
        padding: 30px;
    }
    #news dl {
        margin: 0 20px;
        padding: 0 20px;
        border-bottom: #cacaca solid 0.75px;
    }
    #news dt {
        font-size: 1rem;
        padding: 0;
    }
    #news dd {
        font-size: 2rem;
        padding: 10px 0 10px 30px;
    }

    #news .jump {
        font-size: 1.25rem;
        padding: 0 35px 0 0;
    }
    #news .jump::before,
    #news .jump::after {
        bottom: -10px;
    }
    #news .jump::before {
        right: 20px;
        width: 120px;
        height: 1px;
        background: linear-gradient(
            to left, 
            #FCC800 60%,
            #F6F7F8 60%,
            #F6F7F8 calc(60% + 10px),
            #FCC800 calc(60% + 10px),
            #FCC800 85%,
            #F6F7F8 85%,
            #F6F7F8 calc(85% + 10px),
            #FCC800 calc(85% + 10px)
        );
    }
    #news .jump::after {
        right: 10px;
        width: 13px;/*三角形の横サイズ*/
        height: 13px;/*三角形の縦サイズ*/
    }
}


/* SNS
---------------------------*/
#sns {
    margin-top: 100px;
    padding-bottom: 600px;
    width: 80%;
}

#sns .box2 {
    position: relative;
    width: auto;
    height: 15vw;
    border: #c4554e solid 1.5px;
    margin: 0 50px 0 63px;
}
/* キラキラ　青 */
#sns .kirakira3-b {
    position: absolute;
    right: -15px;
    background-color: #F6F7F8;
    transform: translateY(-25px);
    height: 45px;
}


#sns .box {
    position: relative;
    width: auto;
    height: 100%;
    border: #FCC800 solid 1.5px;
    transform: translateX(-27px) translateY(-27px);
}
/* キラキラ 金 */
#sns .kirakira3-g {
    position: absolute;
    left: -43px;
    transform: translateY(-47px);
    background-color: #F6F7F8;
    z-index: 10;
    height: 50px;
}

#sns .cont-title {
    position: absolute;
    font-size: 2.25vw;
    width: 35vw;
    padding: 0 0 10px 0;
    background-color: #F6F7F8;
    text-align: center;
    left: 50%;
    transform: translateX(-50%) translateY(-10%);
}
#sns .sns-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 6.5vw 0 1vw ;
}
#sns a {
    display: block;
}
#sns .sns-item img {
    width: 3vw;
}

@media (min-width:800px) {
    #sns .sm-sns {
        display: none;
    }
}

/* sp */
@media (max-width: 800px) {
    #sns {
        margin: 50px 0 0 0;
        padding-bottom: 200px;
        width: 100%;
    }
    #sns .box2 {
        display: none;
    }

    #sns .sm-sns {
        padding: 0 15px;
    }

    .sm-sns .border01-g {
        position: relative;
        border-top: 1px  #FCC800 solid;
    }
    /* キラキラ　金 */
    .sm-sns .kirakira2-g {
        position: absolute;
        height: 30px;
        background-color: #F6F7F8;
        left: 20px;
        transform: translateY(-20px);
    }
    .sm-sns .bottom .border01-g {
        margin-right: 10px;
    }

    .sm-sns .border01-b {
        position: relative;
        border-top: 1px #c4554e solid;
        margin-top: 7px;
    }
    /* キラキラ　青 */
    .sm-sns .kirakira2-b {
        position: absolute;
        height: 30px;
        right: 20px;
        background-color: #F6F7F8;
        transform: translateY(-20px);
    }
    .sm-sns .top .border01-b {
        margin-left: 10px;
    }


    #sns .cont-title {
        position: static;
        padding: 0;
        margin: 20px auto;
        font-size: 1.55rem;
        width: auto;
        left: 0;
        background: none;
        transform: none;
    }

    #sns .sns-box {
        margin: 0 15px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    #sns .sns-item {
        text-align: left;
        margin: 0 0 0 5px;
    }
    #sns a {
        margin-top: 60px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    #sns .sns-item img {
        width: 7vw;
    }
    #sns .text  {
        font-size: 1.25rem;
        padding-left: 20px;
    }
}



/* 境界線 */

/* 青 #c4554e */
@media (min-width:1200px) {
    .shapedividers_com-5806{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-5806::before{ 
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat;
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 310% 251px;
        background-position: 0% 100%; 
        transform: rotateY(180deg); background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23c4554e"/></svg>'); 
        }
        
        @media (min-width:2100px){
        .shapedividers_com-5806::before{
        background-size: 310% calc(2vw + 251px);
        }
    }
}

@media (max-width:1200px) {
    .shapedividers_com-9697{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-9697::before{
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        bottom: -1px;
        left: -1px;
        right: -1px;
        top: -1px;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat; 
        background-size: 100% 90px;
        background-position: 50% 0%;    
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>'); 
        }
        
        @media (min-width:768px){
        .shapedividers_com-9697::before{
        background-size: 226% 138px;
        background-position: 53% 100%;  
        transform: rotateY(180deg); 
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -0.1 35.28 2.17" preserveAspectRatio="none"><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" fill="%23c4554e"/></svg>'); 
        }  
        }
         
        @media (min-width:1025px){
        .shapedividers_com-9697::before{ 
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 100% 90px;
        background-position: 50% 0%;  
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>'); 
        }
        }
        @media (min-width:2100px){
        .shapedividers_com-9697::before{
        background-size: 100% calc(2vw + 90px);
        }
        }
           
}

@media (max-width:800px) {
    .shapedividers_com-1264{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-1264::before{
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        bottom: -1px;
        left: -1px;
        right: -1px;
        top: -1px;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat; 
        background-size: 255% 240px;
        background-position: 74% 100%;    
        transform: rotateY(180deg);
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23c4554e"/></svg>'); 
        }
        
        @media (min-width:768px){
        .shapedividers_com-1264::before{
        background-size: 100% 90px;
        background-position: 50% 0%;   
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>'); 
        }  
        }
         
        @media (min-width:1025px){
        .shapedividers_com-1264::before{ 
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 100% 90px;
        background-position: 50% 0%;  
        }
        }
        @media (min-width:2100px){
        .shapedividers_com-1264::before{
        background-size: 100% calc(2vw + 90px);
        }
        }
          
}
     

@media (min-width:1200px) {
    .shapedividers_com-3622{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-3622::before{ 
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat;
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 228% 236px;
        background-position: 20% 100%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -0.1 35.28 2.17" preserveAspectRatio="none"><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" fill="%23EE827C"/></svg>'); 
        }
        
        @media (min-width:2100px){
        .shapedividers_com-3622::before{
        background-size: 228% calc(2vw + 236px);
        }
    }
}

@media (max-width:1200px) {
    .shapedividers_com-7057{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-7057::before{
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        bottom: -1px;
        left: -1px;
        right: -1px;
        top: -1px;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat; 
        background-size: 100% 90px;
        background-position: 50% 0%;    
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>'); 
        }
        
        @media (min-width:768px){
        .shapedividers_com-7057::before{
        background-size: 226% 139px;
        background-position: 19% 100%;   
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -0.1 35.28 2.17" preserveAspectRatio="none"><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" fill="%23EE827C"/></svg>'); 
        }  
        }
         
        @media (min-width:1025px){
        .shapedividers_com-7057::before{ 
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 100% 90px;
        background-position: 50% 0%;  
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>'); 
        }
        }
        @media (min-width:2100px){
        .shapedividers_com-7057::before{
        background-size: 100% calc(2vw + 90px);
        }
    }             
}

@media (max-width:800px) {
    .shapedividers_com-9622{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-9622::before{
        content:'';
        font-family:'shape divider from ShapeDividers.com';
        position: absolute;
        bottom: -1px;
        left: -1px;
        right: -1px;
        top: -1px;
        z-index: 3;
        pointer-events: none;
        background-repeat: no-repeat; 
        background-size: 255% 189px;
        background-position: 57% 100%;    
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23EE827C"/></svg>'); 
        }
        
        @media (min-width:768px){
        .shapedividers_com-9622::before{
        background-size: 100% 90px;
        background-position: 50% 0%;   
        background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fbd8c2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fbd8c2"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fbd8c2"/></svg>'); 
        }  
        }
         
        @media (min-width:1025px){
        .shapedividers_com-9622::before{ 
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 100% 90px;
        background-position: 50% 0%;  
        }
        }
        @media (min-width:2100px){
        .shapedividers_com-9622::before{
        background-size: 100% calc(2vw + 90px);
        }
        }
                           
}
     
     
     
/* フッター
--------------------------------------------------- */
footer {
    background-color: #EE827C;
    color: #fff;
    padding: 100px 0 200px;
}
footer .wrapper {
    padding: 0 50px;
    max-width: 1600px;
}
footer a {
    color: #fff;
}

.footer-icon {
    width: 300px;
}

footer .footer-cont {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

.footer-text {
    width: 30%;
}
footer p {
    font-size: 1rem;
    margin-bottom: 30px;
}


footer .contact-btn {
    background: #fff;
    border-radius: 60px;
    padding: 20px;
    width: 80%;
}
.contact-btn p {
    text-align: center;
    margin-bottom: 0;
    color: #EE827C;
    font-weight: bold;
}
.contact-btn p:first-child {
    padding-bottom: 10px;
}


.footer-nav {
    display: flex;
    justify-content: space-between;
    width: 70%;
}
.footer-nav .list1 .nav,
.footer-nav .list2 .nav,
.footer-nav .list3 .nav {
    position: relative;
    font-size: 1.5rem;
    text-align: left;
    padding-bottom: 15px;
    margin-bottom: 1rem;
}
.footer-nav .list1 .nav::after {
    position: absolute;
    content: "";
    background: linear-gradient(
        to right, 
        #FCC800 80%,
        #EE827C 80%, 
        #EE827C calc(80% + 10px),
        #FCC800 calc(80% + 10px),
        #FCC800 95%,
        #EE827C 95%,
        #EE827C calc(95% + 10px),
        #FCC800 calc(95% + 10px)
        );
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0px;
}
.footer-nav .list2 .nav::after {
    position: absolute;
    content: "";
    background: linear-gradient(
        to right, 
        #FCC800 75%,
        #EE827C 75%, 
        #EE827C calc(75% + 10px),
        #FCC800 calc(75% + 10px),
        #FCC800 90%,
        #EE827C 90%,
        #EE827C calc(90% + 10px),
        #FCC800 calc(90% + 10px)
        );
    height: 1px;
    width: 90%;
    bottom: 0;
    left: 0px;
}
.footer-nav .list3 .nav::after {
    position: absolute;
    content: "";
    background: linear-gradient(
        to right, 
        #FCC800 75%,
        #EE827C 75%, 
        #EE827C calc(75% + 10px),
        #FCC800 calc(75% + 10px),
        #FCC800 90%,
        #EE827C 90%,
        #EE827C calc(90% + 10px),
        #FCC800 calc(90% + 10px)
        );
    height: 1px;
    width: 100%;
    bottom: 0px;
    left: 0px;
}

.footer-nav a {
    font-size: 1.05rem;
}

.footer-nav .list1 li,
.footer-nav .list2 li {
    padding-bottom: 20px;
    text-align: left;
}
.footer-nav .list1 a,
.footer-nav .list2 a {
    margin-left: 20px;
}


.footer-nav .list3 li{
    margin-bottom: 80px;
}


footer .jump {
    text-align: center;
}
footer .jump .nav {
    position: relative;
    padding-bottom: 15px;
}
footer .jump .nav::after {
    position: absolute;
    content: "";
    background: linear-gradient(to right, #EE827C 5%, #FCC800 20%,#FCC800 80%, #EE827C 95%);
    height: 1px;
    width: 250px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


/* sp */
@media (max-width: 800px) {
    footer {
        padding-bottom: 250px;
    }
    footer .wrapper {
        padding: 0 30px;
    }

    .footer-icon {
        margin: 0 auto;
    }
    .footer-cont {
        flex-direction: column;
    }
    .footer-text {
        width: 100%;
    }
    .footer-text p {
        font-size: 1rem;
    }

    footer .contact-btn {
        border-radius: 60px;
        padding: 15px;
        width: 300px;
        margin: 50px auto 100px;
    }
    .contact-btn p {
        font-size: 1.3rem;
        text-align: center;
        color: #EE827C;
        font-weight: bold;
    }
    .contact-btn p:first-child {
        padding-bottom: 5px;
    }


    .footer-nav {
        flex-direction: column;
        width: 100%;
    }

    .footer-nav .list1,
    .footer-nav .list2,
    .footer-nav .list3 {
        margin: 0 0 70px 0;
    }

    .footer-nav .list1 a,
    .footer-nav .list2 a,
    .footer-nav .list3 a {
        font-size: 1.1rem;
    }

    .footer-nav .list1 .nav::after,
    .footer-nav .list2 .nav::after,
    .footer-nav .list3 .nav::after {
        background: linear-gradient(
            to right, 
            #FCC800 80%,
            #EE827C 80%, 
            #EE827C calc(80% + 10px),
            #FCC800 calc(80% + 10px),
            #FCC800 95%,
            #EE827C 95%,
            #EE827C calc(95% + 10px),
            #FCC800 calc(95% + 10px)
            );
        height: 1px;
        width: 100%;
        bottom: -10px;
        left: 0px;
    }
    .worknavi{
        margin: 0 auto;
        text-align: left;
        font-size: 4vw;
        color: #EE827C;
        display: grid;
        place-items: center;
    }
    .worknavi li{
        margin-bottom: 4vw;
    }
    .worknavi a{
        text-decoration: none;
        color: #EE827C;
        text-align: left;
    }
    .worknavi img{
        width: 20vw;
        margin-bottom: 4vw;
    }
}