@charset "UTF-8";

/*----------------------------------------
    共通項目
----------------------------------------*/
body{
    font-family: 'Noto Sans JP', sans-serif;
    color: #3D4459;
    letter-spacing: 2px;
    line-height: 40px;
    font-size: 16px;
}
h1 {
    margin: 0;
}
h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}
p {
    font-family: 'Noto Sans JP', sans-serif;
    color: #3D4459;
    letter-spacing: 2px;
    line-height: 30px;
    font-size: 16px;
    text-align: justify;
    margin: 0;
}
.wrapper {
    margin: auto;
    width: 90%;
}
.tag {
    width: fit-content;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    padding: 5px 12px;
    text-align: center;
    font-size: 14px;
    display: block;
    line-height: normal;
}

/*----------------------------------------
    position
----------------------------------------*/
.translate-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*----------------------------------------
    flex box
----------------------------------------*/
.flex-row-between-center {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flex-col--row-reverse-between-start {
    display: flex;
    flex-direction: column;
}
@media (min-width:768px) {
    .flex-col--row-reverse-between-start {
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: flex-start;
    }
}

/*----------------------------------------
    color
----------------------------------------*/
.gradation-red{
    background: linear-gradient(90deg, #F17979 0%, #873535 100%);
}
.gradation-blue{
    background: linear-gradient(90deg, #43C3EE 0%, #6955FF 100%);
}
.gradation-lightBlue{
    background: linear-gradient(90deg, rgba(70, 192, 239, 0.15) 0.98%, rgba(105, 89, 255, 0.105) 100%),
    linear-gradient(0deg, #E0F5FF, #E0F5FF);
}
.bg-lightBlue{
    background-color: #D1EEF94D;
}
/*----------------------------------------
    【app】color
----------------------------------------*/
.gradation-green{
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    border-radius: 50px;
    padding: 6px 13px;
    font-weight: bold;
    background: linear-gradient(0deg, rgba(6, 199, 85, 0.50) 0%, rgba(6, 199, 85, 0.50) 100%), linear-gradient(90deg, #43C3EE 0%, #6955FF 100%);
}

/*----------------------------------------
    img
----------------------------------------*/
.img-40-100 {
    width: 40%;
}
@media (min-width:768px) {
    .img-40-100 {
        width: 100%;
    }
}

/*----------------------------------------
    margin
----------------------------------------*/
.mt-25 {
    margin-top: 25px;
}

/*----------------------------------------
    width
----------------------------------------*/
.w-100-22 {
    width: 100%;
}
@media (min-width:768px) {
    .w-100-22 {
        width: 22%;
    }
}
.w-100-60 {
    width: 100%;
}
@media (min-width:768px) {
    .w-100-60 {
        width: 60%;
    }
}

/*----------------------------------------
    max-width
----------------------------------------*/
.max-w-960 ,
.max-w-1080 ,
.max-w-1120 ,
.max-w-1280 {
    max-width: 400px;
    margin: auto;
}
@media (min-width:768px) {
    .max-w-960 {
        max-width: 960px;
    }
    .max-w-1080 {
        max-width: 1080px;
    }
    .max-w-1120 {
        max-width: 1120px;
    }
    .max-w-1280 {
        max-width: 1280px;
    }
}

/*----------------------------------------
    copy right
----------------------------------------*/
.elementor-widget-container .elementor-heading-title {
    text-align: center;
}

/*----------------------------------------
    マーカー
----------------------------------------*/
.marker-blue{
    text-decoration: underline;
    text-decoration-color: #DBF5FE;
    text-underline-offset: -0.3em;
    text-decoration-thickness: 16px;
    text-decoration-skip-ink: none;
}

/*----------------------------------------
    【spot】お問い合わせボタン
----------------------------------------*/
.contact-btn{
    width: 240px;
    background-color: #0700DD;
    color: #fff;
    display: block;
    text-align: center;
    padding: 15px 0;
    font-size: 24px;
    border-radius: 5px;
    margin: 40px auto 0;
}
.contact-btn:hover {
    color: #FFFFFF;
    opacity: 0.7;
}

/*----------------------------------------
    【spot】リンクボタン
----------------------------------------*/
.link-btn {
    display: block;
    margin: 50px auto 0;
    padding: 5px 20px;
    width: fit-content;
    font-weight: 700;
    line-height: 30px;
    color: #0700DD;
    border: 1px solid #0700DD;
    border-radius: 25px;
}
@media (min-width:768px) {
    .link-btn {
        margin: 40px 0 0 auto;
    }
}
.link-btn:hover {
    color: #FFFFFF;
    background-color: #0700DD;
}

/*----------------------------------------
    【spot】title
----------------------------------------*/
.title-small{
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}
.title-24-20 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}
@media (min-width:768px) {
    .title-24-20 {
        font-size: 20px;
    }
}
.title-20-36 {
    font-weight: 700;
    font-size: 20px;
    line-height: 50px;
}
@media (min-width:768px) {
    .title-20-36 {
        font-size: 36px;
    }
}
.title-24 {
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
}

/*----------------------------------------
    【spot】クラウドWi-Fiの接続方法
----------------------------------------*/
.card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    text-align: center;
    width: 100%;
    max-width: 280px;
    height: 285px;
}
@media (min-width:768px) {
    .card{
        width: 30%;
    }
}

/*----------------------------------------
    【spot】4つのメリット
----------------------------------------*/
.merit-flex{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
}
.merit-bold{
    font-weight: 700;
    font-size: 20px;
}
@media (min-width:768px) {
    .merit-bold{
        font-size: 28px;
    }
}
.merit-check{
    width: 24px;
    height: 24px;
    margin-right: 17px;
}

/*----------------------------------------
    【spot】Wi-Fiスポットの特徴
----------------------------------------*/
.features-card{
    max-width: 320px;
    width: 100%;
    position: relative;
    margin: 50px 30px;
}

/*----------------------------------------
    【spot】組み合わせのメリット
----------------------------------------*/
.function-card--row,
.function-card--row-reverse {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.function-card--row {
    flex-direction: row;
}
.function-card--row-reverse {
    flex-direction: row-reverse;
}
@media (min-width:768px) {
    .function-card--row,
    .function-card--row-reverse{
        flex-direction: column;
        justify-content: space-between;
        height: 380px;
    }
}
@media (min-width:768px) {
    .h-center{
        display: flex;
        align-items: center;
        text-align: center;
        height: 80px;
    }
}

/*----------------------------------------
    【spot】教育機関向け・企業向け・自治体向け
----------------------------------------*/
.order-90-auto--100 {
    order: 2;
    width: 90%;
    margin: 15px auto 30px;
}
@media (min-width:768px) {
    .order-90-auto--100 {
        width: 32%;
        max-width: 370px;
        margin: 0;
    }
}
.location-flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 2px;
    text-align: justify;
    margin: 15px 0;
}
@media (min-width:768px) {
    .location-flex {
        align-items: center;
    }
}


/*----------------------------------------
    【app】共通項目
----------------------------------------*/
.flip-even-items > :nth-child(even) {
    flex-direction: row-reverse;
}
button:hover{
    background-color: #3DACDD;
}

/*----------------------------------------
    【app】テキストスタイル
----------------------------------------*/
.title{
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 40px;
    padding-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .title{
        font-size: 24px; 
    }
}
.min-title{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 40px;
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}
@media screen and (min-width: 768px) {
    .min-title{
        font-size: 32px;
        line-height: 50px;
        letter-spacing: 2px;
        margin-top: 16px;
        text-align: left;
        font-weight: bold;
    }
}
.min-text{
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 2px;
    margin-top: 24px;
}
.app-worry{
    text-align: start;
    line-height: 30px;
    letter-spacing: 2px;
    font-size: 16px;
    padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .app-worry{
        font-size: 20px;
        text-align: center;
    }
}

.app-title{
    text-align: center;
    line-height: 30px;
    letter-spacing: 2px;
    font-size: 16px;
    display: flex;
    align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
    .app-title{
        height: 200px;
    }
}
@media screen and (min-width: 768px) {
    .app-title{
        font-size: 20px; 
    }
}

.important-text{
    font-weight: bold;
    font-size: 20px;
}
@media screen and (min-width: 768px) {
    .important-text{
        font-size: 24px;
    }
}
.blue-button{
    background-color: #118FC6;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
}
.dots {
    -webkit-text-emphasis: filled;
    text-emphasis: filled;
}
/*----------------------------------------
    【app】マーカー
----------------------------------------*/
.marker-green{
    text-decoration: underline;
    text-decoration-thickness: 0.7em;
    text-underline-offset: -0.3em;
    text-decoration-skip-ink: none;
    text-decoration-color: #E5F6F7;
}

/*----------------------------------------
    【app】pcのみ、spのみの表示
----------------------------------------*/
.pc-only{
    display: none;
}
.sp-only{
    display: block;
}
@media screen and (min-width: 768px) {
    .sp-only{
        display: none;
    }
    .pc-only{
        display: block;
    }
}

/*----------------------------------------
    【app】スライドのスタイル
----------------------------------------*/
* {
    box-sizing: border-box;
}

.slider2 {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.slides2 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.slides2::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 10px;
}
.slides2::-webkit-scrollbar-track {
    background: transparent;
}
.slides2 > div {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100%;
    margin-right: 50px;
    border-radius: 10px;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 100px;
}

.author-info2 {
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.75rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
}
.author-info2 a {
    color: white;
}

.slider2 > a {
    display:none;
    width: 1.5rem;
    background: white;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 0 0.5rem 0;
    position: relative;
}
.slider2 > a:active {
    top: 1px;
}
.slider2 > a:focus {
    background: #000;
}

/* Don't need button navigation */
@supports (scroll-snap-type) {
    .slider2 > a {
        display: none;
    }
}

.carousel-pagination {
    text-align: center;
    margin-top: 10px;
}

.carousel-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #999; /* 未選択のドットの色 */
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-dot.active {
    background-color: #333; /* 選択されたドットの色 */
}

/*----------------------------------------
    【app】友達追加で簡単接続
----------------------------------------*/
.flow{
    width: 90%;
    max-width: 300px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    margin: auto;
}
@media screen and (min-width: 768px) {
    .flow{
        flex-direction: column;
        justify-content: center;
        width: 16%;
    }
}
.flow-text-center{
    width: auto;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
    .flow-text-center{
        font-size: 80%; 
    }
}
@media screen and (min-width: 768px) {
    .flow-text-center{
        margin: auto;
        text-align: center;
        height: 110px;
    }
}
.flow-next-pc {
    display: none;
}
@media screen and (min-width: 768px) {
    .flow-next-pc{
        display: block;
        height: fit-content;
        margin-top: 6%;
    }
}
.flow-next-sp {
    display: block;
    width: fit-content;
    margin: 10px auto;
}
@media screen and (min-width: 768px) {
    .flow-next-sp{
        display: none;
    }
}

/*----------------------------------------
    【app】アプリの機能
----------------------------------------*/
.background-bg {
    background-image: url('http://life-seedlp.local/wp-content/themes/hello-elementer/assets/images/lp/caption-bg.png');
    background-size: 100% 80px;
    background-repeat: no-repeat;
    padding-top: 30px;
    background-position: 0 220px;
    background-color: #F9F9F9;
    padding: 30px 0;
    margin-top: 80px;
}
@media screen and (min-width: 1024px) {
    .background-bg {
        background-size: 100% 120px;
        background-position: 0 300px;
        padding: 70px 0;
        margin-top: 120px;
    }
}
.function-title {
    padding: 30px 0 35px 0;
    font-weight: bold;
    height: 150px;
    justify-content: center;
}
.function-text {
    font-size: 14px;
    line-height: 24px;
}