html{
    font-size:100px;
    background-color:#f8cbca;
    overflow-x: clip;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 768px){
    html{
    font-size:50px
    }
}

body{
    font-family:"kaisei-harunoumi","AB-yurumin regure",sans-serif;
    font-weight:400;
    font-size:medium;
    color:#daebd7;
    overflow-x: clip;
    padding: 0;
    margin: 0;
}

header{
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #ffffffad;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.header .logo{
    width:.5rem
}

@media screen and (max-width: 500px){
    header{
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 70px;
    background-color: #ffffffad;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    }
}

@keyframes UpAnime{
    from{
        opacity:1;
        transform:translateY(0)
    }
    to{
        opacity:0;
        transform:translateY(-100px)
    }
}

@keyframes DownAnime{
    from{
        opacity:0;
        transform:translateY(-100px)
    }
    
    to{
        opacity:1;
        transform:translateY(0)
    }
}

header .UpMove{
    position:fixed;
    width:100%;animation:
    UpAnime .5s forwards
}

.header .DownMove{
    position:fixed;
    width:100%;
    animation:DownAnime .5s forwards
}

.header-content{
    display:flex;
    align-items:center;
}

.logo-link{
    display:block;
    margin-right:.1rem
}

.header-title{
    font-size:35px;
    color:#3b6e82;
    padding-left: 120px;
    padding-top: 30px;
}

h1{
    font-size:.65rem;
    text-align:center;
    font-weight:normal;
}

h2{
    font-size:.55rem;
    text-align:center;margin:0 0 .2rem 0;
    font-weight:normal;
}

p{
    line-height:.3rem;
    font-size:.3rem;
    margin-top:.2rem;
}

.worries{
    padding:80px 20px;
    text-align:center;
}

.worries h2{
    font-size:28px;
    margin-bottom:50px;
    line-height:1.6;
}

.worries h2 span{
    color:#4aa3c2;
}

.worry-list{
    display:flex;
    justify-content:space-between;
    gap:30px;
    max-width:1100px;
    margin:0 auto 50px;
}

.worry-item{
    background:#fff;
    border-radius:50%;
    width:230px;
    height:230px;
    padding:30px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:space-between;
}

.worry-item .text{
    font-size:25px;
    line-height:1.6;
}

.worry-item .text span{
    color:#4aa3c2;
    font-weight:bold;
}

.cta{
    display:inline-block;
    background:#e46b3f;
    color:#fff;
    padding:15px 40px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
}

small{
    background:#333;
    color:#fff;
    display:block;
    text-align:center;
    padding:.2rem
}

.head{
    font-size:.5rem;
    text-align:center;
    margin-bottom:.3rem;
    padding:.1rem;
    line-height:initial;
}

.sentence{
    font-size:.24rem;
    margin:.6rem;
    line-height:.34rem
}

.ham-button{
    display:none
}

@media screen and (max-width: 768px){
    .ham-button{
        display:block;
        cursor:pointer;
        height:1rem;
        width:1rem;
        position:fixed;
        right:.2rem;
        top:.2rem;
        z-index:10;
    }

    .ham-button span,.ham-button span::before,.ham-button span::after{
        display:block;
        background-color:#3b6e82;
        height:.08rem;
        width:100%;
        position:absolute;
        transition:all .3s ease-in-out
    }

    .ham-button span{
        top:50%
    }

    .ham-button span::before{
        content:"";
        top:-0.2rem
    }

    .ham-button span::after{
        content:"";
        top:.2rem
    }
}

.ham-input:checked~.ham-button span{
    background-color:rgba(0,0,0,0)
}

.ham-input:checked~.ham-button span::before{
    transform:rotate(45deg) translate(5px, -5px)
}

.ham-input:checked~.ham-button span::after{
    transform:rotate(-45deg) translate(5px, 5px)
}

.ham-menu{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,.85);
    z-index:9;
    align-items:center;
    justify-content:center
}

.ham-menu ul{
    list-style:none;
    padding:0;
    margin:0;
    text-align:center
}

.ham-menu ul li{
    margin-bottom:1rem
}

.ham-menu ul li a{
    color:#fff;
    text-decoration:none;
    font-size:1.5rem
}

nav ul{
    list-style:none;
    display:flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content:flex-end;
    gap: 20px;
    position:fixed;
    top:0;
    right:20px;
    z-index: 4;
    font-size: 20px;
    padding: 0;
}

@media screen and (max-width: 500px){
    nav ul{
        display:flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        justify-content:flex-end;
        gap: 10px;
        font-size: 10px;
        position:fixed;
        top:0;
        right:10px;
        z-index: 4;
        padding: 0;
    }
}

nav ul li a{
    display:block;
    text-decoration:none;
    color:#3b6e82;
    padding:.2rem;
    transition:all .3s
}

nav ul li ahover,nav ul li aactive{
    color:#50bdbf;
}

@media screen and (max-width: 768px){
    nav ul li a{
        font-size:.2rem
    }
}

nav ul li .current a{
    color:#50bdbf;
}

section{
    padding:.3rem;
    color:#3b6e82;
}

.logo{
    position: absolute;
    color:#3b6e82;
    text-decoration:none;
    height: auto;
    max-width: 110px;
    padding-left: 10px;
    transform: translate(5%, 5%);
    position:fixed;
    top:0;
    z-index: 4;
}

@media screen and (max-width: 767px){
    .logo{
        position: absolute;
        color:#3b6e82;
        text-decoration:none;
        height: auto;
        max-width: 140px;
        transform: translate(-5%, 15%);
        position: fixed;
        top:0;
        z-index: 4;
    }
}

span{
    display:block;
    text-align:center
}

span.main{
    font-size:.1rem
}

span.sub{
    padding:.1rem;
    font-size:.1rem
}

.overview.info-container{
    display:flex;
    flex-wrap:wrap;
    text-align:center
}

.overview .info-container .info-item{
    display:block;
    width:150%;
    box-sizing:border-box;
    padding:.05rem;margin-bottom:.05rem
}

.overview .info-container .info-item .info-title{
    margin-right:.1rem;
    font-weight:bold;
    font-size:.41rem
}

.overview .info-container .info-item span:not(.info-title){
    font-size:.35rem;
    margin-left:-0.11rem;
    color:#50bdbf
}

.info-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around
}

.info-container .info-item{
    width:calc(50% - 1rem);
    margin:.5rem
}

.top-img img{
    width:80%;
    display:block;
    margin:0 auto
}

@media screen and (max-width: 768px){
    .top-img img{
        width:75%
    }
}

.kanji{
    font-family:"kaisei-harunoumi";
    font-weight:bold
}

.schedule{
    margin:0;
    padding:0;
    line-height:1.3em;
    justify-content:center
}

.time-schedule{
    min-width:400px;
    max-width:400px;
    list-style:none;
    margin:0 auto 0 6em;
    margin-top:.8rem;
    padding-left:20px;
    box-sizing:border-box
}

.time-schedule li{
    width:auto;
    margin:0 0;
    padding:5px 0;
    position:relative;
    display:flex
}

.time-schedule span.time{
    width:calc(50% + 1em);
    margin-left:-8em;
    padding:0 0 5px;
    margin-top:15px;
    vertical-align:top;
    position:relative;
    text-align:right;
    box-sizing:border-box;
    font-size:.27rem
}

.time-schedule span.time::after{
    content:"";
    position:absolute;
    right:-35px;
    top:0;
    width:20px;
    height:20px;
    border-radius:10px
}

.time-schedule .sch_box{
    display:inline-block;
    width:100%;
    margin-left:30px;
    padding:15px 10px 15px 10px;
    vertical-align:middle;
    background:#efefef;
    box-sizing:border-box;
    border-radius:6px;
    align-items:center
}

.time-schedule .sch_title{
    font-size:.25rem;
    font-weight:700px
}

.time-schedule .sch_tx{
    font-size:14px;
    font-weight:normal
}

.details-title{
    font-size:.33rem;
    font-weight:bold;
    text-align:center;
    margin-bottom:.2rem
}

@media screen and (max-width: 768px){
    .time-schedule{
        min-width:unset;
        max-width:100%;
        margin-left:0;
        padding-left:0
    }
    
    .time-schedule span.time{
        width:3em;margin-left:-4em
    }
    
    .time-schedule .sch_box{
        margin-left:.2rem
    }
}

.slider{
    padding-top: 110px;
    z-index: 1;
}

@media screen and (max-width: 767px){
    .slider{
        padding-top: 70px;
        z-index: 1;
    }
}

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

.slider .slick-slide{
    margin:0 10px;
    overflow:visible
}

.contact-div{
    text-align:center
}

.contact-div span{
    font-size:.3rem
}

.details{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center
}

.details .schedule{
    width:100%;
    max-width:960px;
    margin:0 auto
}

.details .schedule h3{
    margin-bottom:1rem
}

.details .details-title{
    margin-bottom:.5rem
}

.details .time-schedule{
    list-style:none;
    padding:0
}

@media screen and (max-width: 768px){
    .time-schedule li{
        flex-direction:column;
        align-items:center
    }
    
    .time-schedule li span.time{
        font-size:.32rem;
        margin-bottom:.25rem;
        margin-left:0;
        width:auto;
        text-align:center
    }
    
    .time-schedule li .sch_box{
        width:80%;
        margin-top:.25rem;
        padding:10px;
        font-size:.28rem
    }
}

.loading{
    position: fixed;
    inset: 0;              /* ← top/left/width/height 全部まとめて指定 */
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading img{
    width: 150px;
}

body > *:not(.loading){
    transition: opacity 1.5s ease, transform 1.5s ease;
}

body.is-loading > *:not(.loading){
    opacity: 0;
    transform: translateY(20px);
}

body.is-loaded > *:not(.loading){
    opacity: 1;
    transform: translateY(0);
}

.schedule-hidden{
    display:inline-block
}

.entry-ul{
    min-width:400px;
    max-width:400px;
    list-style:none;
    margin:0 auto 0 6em;
    margin-top:.8rem;
    padding-left:20px;
    box-sizing:border-box
}

.entry-ul li{
    width:auto;
    margin:0 0;
    padding:5px 0;
    position:relative;
    display:flex
}

.entry-ul span.time{
    width:calc(50% + 1em);
    margin-left:-8em;
    padding:0 0 5px;
    margin-top:15px;
    vertical-align:top;
    position:relative;
    text-align:right;
    box-sizing:border-box;
    font-size:.27rem
}

.entry-ul span.time::after{
    content:"";
    position:absolute;
    right:-35px;
    top:0;
    width:20px;
    height:20px;
    border-radius:10px
}

.ent_box{
    display:inline-block;
    width:100%;
    margin-left:30px;
    padding:15px 10px 15px 10px;
    vertical-align:middle;
    box-sizing:border-box;
    border-radius:6px;
    align-items:center
}

.ent_title{
    font-size:.25rem;
    font-weight:700px
}

.ent_tx{
    font-size:14px;
    font-weight:norma
}

.details-title{
    font-size:.33rem;
    font-weight:bold;
    text-align:center;
    margin-bottom:.2rem
}

@media screen and (max-width: 768px){
    .entry-ul{
        min-width:unset;
        max-width:100%;
        margin-left:0;
        padding-left:0
    }
    
    .entry-ul span.time{
        width:3em;
        margin-left:-4em
    }
    
    .entry-ul .sch_box{
        margin-left:.2rem
    }
}

.entry_link{
    display:block;
    text-align:center;
    margin-top:.5rem;
    font-size:.3rem;
    color:#50bdbf;
    text-decoration:none;
    border:1px solid #50bdbf;
    padding:.1rem .3rem;
    border-radius:.1frem;
    transition:all .3s
}

.entry_link:hover{
    background:#3b6e82;
    color:#3b6e82
}

@media screen and (max-width: 768px){
    .schedule-hidden{
        display:inline-block
    }
}/*# sourceMappingURL=styles.css.map */

.sns {
    display: flex;
    gap: 15px; /* ボタン間の隙間 */
    margin-top: 0;
    justify-content: center;
    width: auto;
    height: 90px;
}

.sns-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px; /* ロゴと文字の間 */
    padding: 0.5rem 1rem;
    border-radius: 1.2rem;
    text-decoration: none;
    color: snow;
    font-weight: bold;
    font-size: 25px;
    overflow: hidden;
    transition: background 0.3s, filter 0.3s, transform 0.3s, box-shadow 0.3s;
    /*will-change: transform;
    isolation: isolate;*/
}

.sns-btn img {
    height: 40px;        /* Instagram規約より29px以上 */
    width: auto;
}

.sns-btn.x img {
    height: 35px;
    width: auto;
}

/* 個別色 */
.sns-btn.instagram {
    background: linear-gradient(45deg, #e6c100, #e66e00, #e6005e, #be00b1, #6a32e1); /* Instagram ピンク */
    isolation: isolate;
}
.sns-btn.instagram::before {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, #ffd600, #ff7a00, #ff0069, #d300c5, #7638fa); /* Instagram ピンク */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: inherit;
    clip-path: inset(0 100% 0 0);
    transition: clip-path .3s ease;
}
.sns-btn.instagram:hover {
    /*filter: brightness(1.3);*/
    transform: scale(1.05, 1.05);
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .8);
}
.sns-btn.instagram:hover::before, .sns-btn.x:hover::before {
    clip-path: inset(0 0 0 0);
}

.sns-btn.x {
    background-color: black;
}

.sns-btn.x::before {
    content: "";
    position: absolute;
    background-color: snow;
    mix-blend-mode: difference;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    border-radius: inherit;
    /*transform: scaleX(0);
    transform-origin: -50% 0;*/
    clip-path: inset(0 100% 0 0);
    transition: clip-path .3s ease;
}

.sns-btn.x:hover {
    /*background-color: #1DA1F2; */
    transform: scale(1.05);
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .8);
}

.information {
    position: absolute;
    background: #1E8EA4;
    padding-top: 15px;
    padding-bottom: 10px;
    z-index: 900;
    width: 100%;
    left: 0;
}

address {
    font-style: normal;
}

address ul {
    padding: 0;
}
address ul li {
    list-style: none;
}
address a {
    border-color: snow;
}
.bottom p {
    color: inherit;
    text-align: center;
    font-size: 20px;
}

.linkText {
    transition: opacity 0.2s ease;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px dashed;
}
.linkText:hover {
    opacity: .6;
}

.font-noto-sans-jp {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    padding-top: 30px;
}
.followme {
    font-weight: bold;
}

.textNoBreak {
    word-break: keep-all;
    overflow-wrap: break-word;
}

.btnContent {
    position: relative;
    z-index: 1;
}