@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Syne:wght@400..800&family=Zen+Kaku+Gothic+Antique:wght@400;500;700&display=swap');

/*
Syne : 400-800
Zen Kaku Gothic Antique : 400,500,700
*/

:root {
    --pcWidthThis: 1440;
    --spWidthThis: 375;

    --color-pink: #E5005A;
    --color-light-pink: #FFEEF2;
    --color-blue: #00479D;
    --color-light-blue: #E5F1FF;
    --color-red: #D80C18;
    --color-text: #333333;
    --color-line: #cccccc;

    --font-size-32: clamp(1.625rem, 1.493rem + 0.56vw, 2rem);
    --font-size-24: clamp(1.25rem, 1.162rem + 0.38vw, 1.5rem);
    --font-size-20: calc(20 / 16 * 1rem);
    --font-size-18: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
    --font-size-16: calc(16 / 16 * 1rem);
    --font-size-14: calc(14 / 16 * 1rem);
    --font-size-12: calc(12 / 16 * 1rem);

    --font-en: "Syne", sans-serif;
}

#contents{
    font-family: "Roboto","Zen Kaku Gothic Antique", sans-serif;
    font-size: var(--font-size-16);
    font-weight: 400;
    line-height: 1.8;
    text-align: justify;
    color: var(--color-text);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

#contents a {
    transition: all .2s linear;
    text-decoration: none;
}
#contents a:hover {
    opacity: 0.6;
    text-decoration: none;
}

#contents img{
    width: 100%;
    display: block;
}

#contents .sp {
    display: none !important;
}

@media only screen and (max-width: 767px) {
    #contents {
        font-size: var(--font-size-14);
    }
    #contents .sp {
        display: block !important;
    }
    #contents .pc {
        display: none !important;
    }
}

/* スクロールでフェードイン */
.fadeIn {
    transform: translate3d(0, 50px, 0);
    transition: 1s;
    opacity: 0;
}

.fadeIn.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1 !important;
}


/**********************************
parts
**********************************/

.inner144 {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
}

.inner120{
    max-width: 1220px;
    width: 90%;
    margin: 0 auto;
}

/* btn */
a.btn{
    max-width: 450px;
    width: 100%;
    color: var(--color-pink) !important;
    border: 2px solid var(--color-pink);
    background: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: var(--font-size-18);
    font-weight: 700;
    padding:15px 0;
    display: block;
    position: relative;
    text-decoration: none !important;
    margin: 0 auto;
}
a.btn:before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--color-pink);
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
}
a.btn:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 29px;
    bottom: 0;
    margin: auto;
}
a.btn:hover {
    color: #fff !important;
    background: var(--color-pink);
    opacity: 1 !important;
}
a.btn:hover:before{
    background: #fff;
}
a.btn:hover:after {
    border-top: solid 2px var(--color-pink);
    border-right: solid 2px var(--color-pink);
}



/*---------sns---------*/
#contents .sns {
    background: #f7f7f7;
    padding: 15px 0;
    margin: 0 auto 0;
}
#contents .sns ul {
    width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
#contents .sns ul li {
    width: 31%;
    margin: 0 2% 0 0;
    background: #fff;
    border-radius: 5px;
}
#contents .sns ul li:hover {
    opacity: 0.6;
    transition: 0.4s;
}
#contents .sns ul li a {
    display: flex;
    border-right: 10px;
    padding: 10px;
    line-height: 48px;
    font-size: 16px;
}
#contents .sns ul li:nth-child(3) {
    margin: 0;
}
#contents .sns ul li img {
    width: 45px;
    margin: 0 10px 0 0;
}

@media only screen and (max-width: 767px) {
#contents .sns {
    margin: 0 auto;
}
#contents .sns ul {
    width: 100%;
    display: block;
}
#contents .sns ul li {
    width: 95%;
    margin: 0 auto 10px;
}
#contents .sns ul li a {
    text-decoration: none;
    font-size: 14px;
}
#contents .sns ul li:nth-child(3) {
    margin: 0 auto 10px;
}
}

/*---------page_top---------*/
#page_top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1000;
}
#page_top a {
    border: var(--color-pink) 1px solid;
    background: #fff;
    color: var(--color-pink);
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 50px;
    letter-spacing: -1px;
}
#page_top a:hover {
    background-color: var(--color-pink);
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
}

@media only screen and (max-width: 767px) {
    #page_top {
        bottom: 20px;
        right: 10px;
    }
    #page_top a {
        padding: 10px;
        font-size: var(--font-size-12);
    }
}