@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&amp;family=Syne:wght@400..800&amp;family=Zen+Kaku+Gothic+Antique:wght@400;500;700&amp;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;
}

html,body{
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

#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);
    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;
}

:target {
    scroll-margin-top: 80px;
}

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

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

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

.bg_wave_top {
    position: relative;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 10px);
    margin-bottom: 40px;
}

/* 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: 30px auto;
}
a.btn_90{
    width: 90%;
}
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);
}


/**********************************
header
**********************************/
#global_nav{
    max-width: 1220px;
    width: 100%;
    margin: 20px auto;
    display: block;
}
#global_nav ul {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    text-align: center;
}
#global_nav ul li {
    width: 14%;
    border-right: 1px dotted var(--color-pink);
    display: flex;
}
#global_nav ul li:first-child {
    border-left: 1px dotted var(--color-pink);
}
#global_nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-text);
    font-size: clamp(0.75rem, 0.307rem + 0.92vw, 1rem);
    line-height: 1.4;
    padding: 3px 0 10px;
}
/* ハンバーガーボタン */
#hamburger {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-pink);
    border: none;
    cursor: pointer;
    position: fixed;
    bottom: 15px;
    right: 10px;
    z-index: 998;
    display: none;
}
#hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
    margin: 6px auto;
}
@media screen and (max-width: 768px) {
    #hamburger {
        display: inline-block;
    }
    #global_nav {
        margin: 0 auto;
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }
    #global_nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    #global_nav p.sp_title{
        margin: 30px auto 5px;
        text-align: center;
        font-size: var(--font-size-18);
        color: var(--color-pink);
        font-weight: 700;
        font-family: var(--font-en);
    }
    #global_nav ul {
        flex-direction: column;
        justify-content: center;
    }
    #global_nav ul li {
        width: 90%;
        margin: 0 auto;
        border-right: none;
        border-bottom: 1px dotted var(--color-pink);
        display: flex;
        align-items: center;
    }
    #global_nav ul li:first-child {
        border-left: none;
        border-top: 1px dotted var(--color-pink);
    }
    #global_nav ul li a {
        padding: 15px;
        font-size: var(--font-size-14);
    }
    #global_nav .daishi_link{
        width: 90%;
        border-radius: 10px;
        margin: 20px auto 0;
        text-align: center;
        padding: 12px 0;
        background: var(--color-light-pink);
        color: var(--color-pink);
        font-weight: 500;
    }
    #menu_close {
        width: 90%;
        border-radius: 10px;
        margin: 10px auto;
        text-align: center;
        padding: 15px 0;
        background: #eee;
        color: var(--colort-text);
        font-size: var(--font-size-14);
        border: none;
    }
    #global_nav.open {
        display: block;
    }
}

/**********************************
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;
}
}

/**********************************
sub_daishi
**********************************/
.sub_daishi{
    position: fixed;
    bottom:90px;
    right: 20px;
    z-index: 1000;
    border: var(--color-pink) 1px solid;
    background: #fff;
    color: var(--color-pink) !important;
    font-size: var(--font-size-14);
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 0;
    width: 140px;
    border-radius: 50px;
    letter-spacing: -1px;
}
@media only screen and (max-width: 767px) {
    .sub_daishi {
        display: none !important;
    }
}

/**********************************
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: var(--font-size-14);
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    width: 140px;
    padding: 15px 0;
    border-radius: 50px;
    letter-spacing: -1px;
    display: block;
}
#page_top a:hover,
.sub_daishi:hover{
    background-color: var(--color-pink);
    color: #fff !important;
    text-decoration: none !important;
    transition: 0.4s;
}

@media only screen and (max-width: 767px) {
    #page_top {
        display: none;
    }
    #page_top a {
        display: none;
    }
}