@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);
}
.border-box .cont-title {
    background-color: #F6F7F8;
    padding: 0 2rem;
}

.kirakira,
.kirakira2 {
    background-color: #F6F7F8;
    height: 50px;
}

.kirakira2 {
    transform: translateY(3px);
}


@media (max-width: 800px) {
    .sm-cont-title {
        font-size: 3.25rem;
        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;
    }

}



/* ヘッダー 
--------------------------------------------*/
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;
}


@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: 800px) {
    #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: 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;
    }

}

     
 
/* 紺　背景色 */
#navy {
    background-color: #EE827C;
    color: #fff;
    padding: 100px 0 300px;
}
#navy a {
    color: #fff;
}

@media (max-width: 800px) {
    #navy {
        padding: 50px 0 110px;
    }
}

/* ページメニュー
----------------------------------------------*/
.menu .top {
    text-align: center;
    padding: 0 0 150px;
}
.menu .top .denkyu {
    width: 300px;
}

.menu .cont-title {
    margin: 100px 0 0 0;
}

/*
.menu ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 10vw 0 0 0;
}
.menu .jump:nth-of-type(3) {
    position: relative;
    text-align: center;
    display: inline-block;
    padding-bottom: 0px;
}
.menu .jump:nth-of-type(3)::before {
    content: url(PNG/kirakira\ y.png);
    position: absolute;
    transform: translateX(-55px);
}

.menu .jump:nth-of-type(3)::after {
    position: absolute;
    content: "";
    background: linear-gradient(
        to right, 
        #FFCD81 65%,
        #EE827C 65%, 
        #EE827C calc(65% + 10px),
        #FFCD81 calc(65% + 10px),
        #FFCD81 85%,
        #EE827C 85%,
        #EE827C calc(85% + 10px),
        #FFCD81 calc(85% + 10px)
         );
    height: 1.25px;
    width: 130px;
    bottom: -16px;
    left: calc(50% + 10px);
    transform: translateX(-50%);
    
}
*/

@media (max-width:800px) {
    .menu .wrapper {
        padding: 0 10px;
    }
    .menu .top .denkyu {
        width: 200px;
    }

    .menu .cont-title {
        font-size: 1.5rem;
        margin: 100px 0 0 0;
    }

    /*
    .menu ul {
        display: grid;
        grid-template-columns: 50% 50%;
        row-gap: 40px;
        text-align: center;
        margin: 150px 0 0 0;
    }
    .menu a {
        font-size: 1.25rem;
    }
    .menu .jump:nth-of-type(3) a {
            font-size: 1.25rem;
    }

    .menu .jump:nth-of-type(3)::before {
        content: url(PNG/sm-kirakira\ y.png);
        transform: translateX(-100%) translateY(17px);
    }
    .menu .jump:nth-of-type(3)::after {
        background: linear-gradient(
            to right, 
            #FFCD81 55%,
            #EE827C 55%, 
            #EE827C calc(55% + 10px),
            #FFCD81 calc(55% + 10px),
            #FFCD81 80%,
            #EE827C 80%,
            #EE827C calc(80% + 10px),
            #FFCD81 calc(80% + 10px)
            );
        height: 1px;
        width: 75px;
        bottom: -10px;
        left: calc(50% + 5px);
        transform: translateX(-50%);
    }
    */
}


/* 境界線 */
@media (min-width:800px) {
    /* 白 */
    .shapedividers_com-5318{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-5318::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: 231% 60px;
        background-position: 60% 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-5318::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-5318::before{ 
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 179% 131px;
        background-position: 18% 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="%23f6f7f8"/></svg>'); 
        }
        }
        @media (min-width:2100px){
        .shapedividers_com-5318::before{
        background-size: 179% calc(2vw + 131px);
        }
        }
         
    
    /* 青 */
    .shapedividers_com-322{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-322::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: 231% 60px;
        background-position: 60% 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-322::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-322::before{ 
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 230% 180px;
        background-position: 49% 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="%23c4554e"/></svg>'); 
        }
        }
        @media (min-width:2100px){
        .shapedividers_com-322::before{
        background-size: 230% calc(2vw + 180px);
        }
        }
         
}
         
        
@media (max-width:800px) {
    /* 白 */
    .shapedividers_com-486{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-486::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: 313% 71px;
        background-position: 28% 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="%23f6f7f8"/></svg>'); 
        }
        
        @media (min-width:768px){
        .shapedividers_com-486::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-486::before{ 
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 185% 180px;
        background-position: 65% 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="%23f6f7f8"/></svg>'); 
        }
        }
        @media (min-width:2100px){
        .shapedividers_com-486::before{
        background-size: 185% calc(2vw + 180px);
        }
        }
         
         
    /* 青 */
    .shapedividers_com-8878{
        overflow:hidden;
        position:relative;
        }
        .shapedividers_com-8878::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: 374% 99px;
        background-position: 40% 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="%23c4554e"/></svg>'); 
        }
        
        @media (min-width:768px){
        .shapedividers_com-8878::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-8878::before{ 
        bottom: -0.1vw;
        left: -0.1vw;
        right: -0.1vw;
        top: -0.1vw; 
        background-size: 185% 180px;
        background-position: 65% 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="%23f6f7f8"/></svg>'); 
        }
        }
        @media (min-width:2100px){
        .shapedividers_com-8878::before{
        background-size: 185% calc(2vw + 180px);
        }
        }
         
}



/* 背景　白 */
#white {
    background-color: #F6F7F8;
    color: #EE827C;
}
#white a {
    color: #EE827C;
}


/* メイン
------------------------------------------- */

.content {
    margin: 5vw auto 30vw;
    text-align: left;
    width: 80%;
}

.news {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    gap: 80px;
    row-gap: 120px;
    justify-content: center;
    align-items: center;
    margin: 80px 0 0;
    padding: 0 50px;
}
.news .item {
    text-align: center;
}

.news dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 1.5rem;
}
.news .sub-title {
    font-family: "BIZ UDPMincho", serif;
    font-size: 2.5rem;
    text-align: left;
    padding: 0 20px;
}

.news img {
    border-radius: 30px;
}

.page {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 200px 0;
}
.page a{
    font-family: "BIZ UDPMincho", serif;
    font-size: 2rem;
    padding: 15px;
    margin: 0 15px;
}

.page a .main {
    text-align: center;
    position: relative;
}
.page a .main::after {
    position: absolute;
    content: "";
    background: linear-gradient(to right, #F6F7F8 0%, #FCC800 40%,#FCC800 60%, #F6F7F8 100%);
    height: 1.5px;
    width: 50px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%)
}




@media (max-width:800px) {
    .content {
        margin: 100px auto 300px;
        width: 100%;
    }

    .news{
        grid-template-columns: none;
        gap: 0;
        row-gap: 50px;
        justify-content: center;
        align-items: center;
        margin: 15px 0 40px;
        padding: 0 30px;
    }
    .news .item {
        width: 100%;
    }
    .news img {
        border-radius: 20px;
    }
    .news .sub-title {
        margin: 0;
        padding: 0 20px;
        font-size: 1.75rem;
    }
    .news dl {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 20px;
        font-size: 1.1rem;
    }

    .page {
        margin: 100px 0;
    }
    .page a{
        font-size: 1.5rem;
        padding: 10px;
        margin: 0 10px;
    }
    
    .page a .main::after {
        width: 40px;
    }
}


/* 境界線 */

/* 青 */
@media (min-width:800px) {
    .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: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:800px) {
    .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: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: 270px;
}
.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: 100px;
    }
    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.25rem;
        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 .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;
    }
}