* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-padding-top: 70px; /* 固定ヘッダの高さ分 */
  height: 100%;
  margin: 0;
}
/* body*/
body{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    height: 100%;
    margin: 0;
}
/* header*/
header{
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 100000;
}
.header {
    width: 100%;
    height: 5.5vw;
    background-color: #293341;
    display: flex;
    align-items: center;
}

.header-logo {
    width: 250px;
}

.header-logo img {
    width: 17vw;
    height: auto;
    margin-left: 50px;
}

.nav {
    margin-left: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: 35px;
}
.nav-link h3 {
    margin: 0;
    font-size: 1.2vw;
    font-weight: bold;
    color: white;
}
.nav-link h3:hover{
    color:#5EC0B8;
}
.menu-btn{
    padding: 0.6rem 1.5rem;
    background-color: #5EC0B8;
    color: #fff;
    border-radius: 100vh;
    margin: auto 50px auto 35px;
}
.menu-btn:hover{
    background-color: #3D817B;
}
.btn2 a{
    display:inline-block;
	text-align: center;
    text-decoration: none;
    color: white;
    font-size: 1.2vw;
    font-weight: bold;
}
/* ハンバーガーメニューの基本スタイル */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    z-index: 100001; /* 他の要素の上に表示されるように調整 */
    margin-right: 20px;
}

.hamburger span {
    background-color:  #fff;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ナビゲーションアイテムのスタイル */
.nav-items {
    padding: 20px 0;
}
.nav-items:last-child{
    display: none;
}
.btn2 a {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem; /* ビュー幅ではなく、固定サイズを使用 */
    font-weight: bold;
}


/* キービジュアル */

.visual{
    position: relative; /* 子要素の位置指定のために設定 */
    height: auto;
    width: 100%;
}
.visual img{
    width: 100%;
  height: auto;
  display: block;
}
.btn {
    position: absolute;
    top: 73%; /* ボタンの位置を調整 */
    left: 23%; /* ボタンの位置を調整 */
    transform: translate(-58%, -20%); /* ボタンを中央に配置 */
}
.btn-01 {
    display: inline-block;
    padding: 4% 6%;
    width: 25vw;
    height: 4.5vw;
    background-color: #5EC0B8;
    color: #fff;
    text-decoration: none;
    font-size: 1.5vw;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    line-height:2.7vw; /* ボタン内のテキストを中央に配置 */
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}

.btn-01:hover {
    background-color: #3D817B;
}
/* ninzineとは */
#explanation{
    background-color: white;
    width: 100%;
}
#explanation h1{
    margin: 0;
    padding: 45px 0;
    text-align: center;
    font-size: 40px;
}
.ex-content{
    margin: 0 auto;
    width: 838px;
    padding: 30px 25px;
    background-color: #F1F9F9;
    border: 2px solid #5EC0B8;
    border-radius: 8px;
}
#explanation img{
    width: 520px;
}
.ex-img{
    display: flex;
    justify-content: center;
}
.visual-sp{
    display: none;
}
/* こんな方におすすめです */
.recommendation{
    margin-top: -53px;
    width: 100%;
    background-color: #F1F9F9;
}
.recommendation h1{
    padding: 45px 0;
    text-align: center;
    font-size: 40px;
    margin: 0 auto;
}
.container{
    max-width: 1040px;
    display: flex;
    justify-content: space-around; /* 項目を均等に配置 */
    margin: 0 auto;
    background-color: #F1F9F9;
}
.container p{
    text-align: center;
    padding-top: 15px;
    font-weight: 500;
}
.container-box{
    width: 225px;
    height: 225px;
    background-color: white;
    padding-top: 15px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 75px;
}
/* こんなシーンで */
.type{
    width: 100%;
    background-color: white;
    padding-bottom: 25px;
}
.type h1{
    font-size: 40px;
    text-align: center;
    padding: 45px 0 55px 0;
    margin: 0;
}
.type-box{
    max-width: 1040px;
    justify-content: space-around; /* 項目を均等に配置 */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.type-box-item{
    width: 480px;
    position: relative; 
}
.type-box-item .photo{
    width: 480px;
    position: relative;

}
.type-box-item .num{
    position: absolute; /* 絶対位置に設定 */
    top: -25px; /* 上からのオフセットを調整 */
    left: 10px; /* 左からのオフセットを調整 */
    z-index: 1; /* 重ね順を指定 */
}
.type-box-item h3{
    font-size: 20px;
    margin: 15px 0;
    text-align: center;
}
.tag-group{
    display: flex;
}
.tag{
    color: white;
    background-color: #5EC0B8;
    padding: 8px 10px;
    margin:15px 20px 50px 0px;
}
/* ninzineのおすすめポイント */
#point-contents{
    width: 100%;
    padding-bottom: 45px;
    background-color: #F1F9F9;
}
#point-contents h1{
    font-size: 40px;
    padding: 45px 0;
    text-align: center;
    margin: 0;
}
.point-box{
    width: 840px;
    margin: 0 auto 30px auto;
    background-color: white;
    border-radius: 10px;
    padding: 30px 35px;
    display: flex;
}
.point-box br{
    display: none;
}
.document{
    width: 600px;
}
.document h3{
    font-size: 20px;
    margin: 10px 0px;
}
.point-num{
    background-color: #FDA832;
    padding: 3px 25px;
    display: inline-block;
    color: white;
    font-weight: 700;
    border-radius: 30px;
}
.green-icon{
    margin-left: 22px;
    display: flex; /* フレックスボックスを使用 */
    align-items: center; /* 子要素を上下中央に配置 */
}
/* ninzineにできること */

#ability-slider {
    position: relative;
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.ability {
    overflow: hidden;
    width: 100%;
}

.slide-container {
    display: flex;
    transition: transform 0.5s ease;
}

.abi-contents {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}
.display img{
    width: auto;
    height: 350px;
}
.slide-left, .slide-right {
    background-color: #FDA832;
    border: none;
    border-radius: 50%;
    color: white;
    padding: 15px;
    width: 55px;  /* ボタンの幅 */
    height: 55px; /* ボタンの高さ */
    display: flex; /* コンテンツを中央に揃えるため */
    align-items: center; /* コンテンツを中央に揃えるため */
    justify-content: center; /* コンテンツを中央に揃えるため */
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    z-index: 10; /* ボタンが他の要素より前面に表示されるようにする */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 影の指定 */
}

.slide-left {
    position: absolute;
    left: 50px; /* 左端からの位置を調整 */
    top:380px;
}

.slide-right {
    position: absolute;
    right: 50px; /* 右端からの位置を調整 */
    top:380px;
}

.slide-left.disabled {
    background-color: #d3d3d3; /* グレーにする */
    cursor: not-allowed; /* 無効化カーソル */
}

.slide-right.disabled {
    background-color: #d3d3d3; /* グレーにする */
    cursor: not-allowed; /* 無効化カーソル */
}
.ability{
    width: 100%;
    background-color: white;
    text-align: center;
    margin-bottom: 55px;
}
.ability h1{
    font-size: 40px;
    text-align: center;
    margin: 0%;
    padding: 45px 0px;
    position: sticky;
    top: 0;
    writing-mode: horizontal-tb; /* 横書きモードを強制する */
    transform: none; /* 余計な変形がないように */
    white-space: nowrap; /* テキストが折り返されないようにする */
}
.abi-contents h2{
    font-size: 24px;
    padding: 35px 0 10px 0;
}
.abi-contents h3{
    font-size: 24px;
    padding-top: 30px;
}
/* ninzineの集客サポート */
.support{
    width: 100%;
    background-color: #F1F9F9;
    padding-bottom: 75px;
}
.support h1{
    font-size: 40px;
    text-align: center;
    padding: 45px 0 20px 0;
    margin: 0;
}
.sup-p{
    text-align: center;
}
.sup-box{
    width: 840px;
    margin: 35px auto 0px auto;
    background-color: white;
    padding: 30px 110px;
    border-radius: 11px;
}
.sup-contents{
    display: flex;
    font-weight: bold;
    justify-content: space-between;
}
.sup-item{
    display: flex;
    gap: 30px;
    /* justify-content: space-between; */
    padding: 30px 0;
    padding-left: 35px;
}
.sup-check{
    color: #7A7A7A;
}
/* 料金おご案内 */
#plan{
    width: 100%;
    background-color: white;
    padding-bottom: 75px;
    margin: 0 auto;
}
#plan h1{
    font-size: 40px;
    text-align: center;
    padding: 45px 0;
    margin: 0px;
}
.plan-container{
    display: flex;
    width: 840px;
    margin: 0 auto;
    justify-content: space-between;
}
.plan-box{
    display: flex;
    background-color: #F1F9F9;
    border-radius: 11px;
    padding: 25px 30px 10px 35px;
    border: 2px solid #5EC0B8;
}
.plan-thema1{
    line-height: 1.4;
    color: #293341;
    white-space: nowrap;
    display: inline-block;
    width: 144px;
}
.plan-price1{
    padding-left: 20px;
    display: flex;
    align-items: flex-end;
}
.plan-price2{
    padding-left: 20px;
}
.price{
    font-size: 18px;
    padding-top: 5px;
}
.share{   
    width: 840px;
    margin: 0 auto;
}
.share img{
    display:block;
    margin-left: auto;
    width: 381px;
}
.attention{
    width: 840px;
    margin: 0 auto;
    padding-top: 50px;
}
.plan-p{
    color: #5F5F5F;
}
/* 導入の流れ */
.flow{
    margin: 0 auto;
    background-color: #F1F9F9;
    padding-bottom: 75px;
}
.flow h1{
    text-align: center;
    font-size: 40px;
    padding: 45px 0;
    margin: 0;
}
.flow-box{
    background-color: white;
    padding: 20px 30px;
    width: 840px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
}
.flow-title{
    display: flex;
    padding-bottom: 9px;
}
.flow-title img{
    padding-right: 18px;
}
.flow-title h2{
    line-height:52px;
}
.flow-p{
    width: 650px;
}
.flow-icon{
    display: flex;
    justify-content: center;
}
.icon2{
    padding-right: 13px;
}
.flow-icon .icon3{
    width: 100px;
    height: auto;
}
.flow-icon img{
    width: 100%;
    height: 100%;
}
.triangle {
    background: #5EC0B8;
    height: calc(44px / 2);
    width: 44px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin: 25px auto;
  }
.btn1{
    margin: 65px auto 0 auto;
    text-align: center;
}
.btn-02 {
    display: inline-block;
    width: 347px;
    height: 63px;
    background-color: #5EC0B8;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    line-height: 63px; /* ボタン内のテキストを中央に配置 */
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
/* よくあるご質問 */
.question-container{
    width: 840px; 
    margin: 0 auto;  
    padding-bottom: 35px;
}
.question-container h1{
    padding: 45px 0;
    font-size: 45px;
    margin: 0 auto;
    text-align: center;
}
.question{
    display: flex;
}
.q{
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-align: center;
    padding: 2px 23px 5px;
    background-color: #5EC0B8;
}
.question h3{
    padding-left: 18px;
    font-weight: 500;
    line-height: 41px;
}
.border{
    border-bottom: 1px dashed #D4D4D4;
    padding-top: 15px;
}
/* アコーディオンメニュー */
.accordion {
    margin: 0px auto 40px;
    max-width: 840px;
    }
    .toggle {
    display: none;
    }
    .option {
    position: relative;
    background-color: #F1F9F9;
    padding: 20px;
    margin-bottom: 40px;
    }
    .title,
    .q-sentence {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
    }

    .title::after,
    .title::before {
    content: "";
    position: absolute;
    right: 2em;
    top: 1.9em;
    width: 2px;
    height: 1.2em;
    background-color: #474747;
    transition: all 0.3s;
    }
    .title::after {
    transform: rotate(90deg);
    }
    .q-sentence {
    max-height: 0;
    overflow: hidden;
    }
    .q-sentence p {
    margin-left: 82px;
    padding-top: 1em;
    margin-right: 5em;
    }
    .toggle:checked + .title + .q-sentence {
    max-height: 500px;
    transition: all 1.5s;
    }
    .toggle:checked + .title::before {
    transform: rotate(90deg) !important;
    }
    .mata{
        display: none;
    }
 /* アコーディオンメニュー */
/* まずはご気軽にご相談ください */
.inquiry{
    background-color: #F1F9F9;
    padding-bottom: 75px;
    margin: 0 auto;
}
.inquiry h3{
    padding: 45px 0;
    text-align: center;
}
.btn2{
    text-align: center;
}
/* フッター */
footer{
    background-color: #293341;
    margin: 0 auto;
}
footer ul{
    display: flex;
    padding-top: 45px;
    list-style: none;
    justify-content: space-between;
    width: 400px;
    margin: 0 auto;
}
footer li a{
    text-decoration: none;
    color:white;
}
footer p{
    color: white;
    font-size: 14px;
    text-align: center;
    padding: 110px 0px 20px 0;
}
/* お問い合わせフォーム */
#contact-form{
    background-color: #F1F9F9;
    padding-bottom: 80px;
}
#contact-form h1{
    margin: 0 auto;
    text-align: center;
    padding: 85px 0 15px 0;
}
.form-container p{
    text-align: center;
}
.form-box{
    width: 700px;
    margin: 0 auto;
    padding-top: 40px;
}
.form-item{
    width: 700px;
    margin: 0 auto;
}
.form-item2{
    width: 340px;
}
.must-box{
    display: flex;
    padding-top: 20px;
}
.must p{
    margin-left: 10px;
    font-size: 14px;
    padding: 2px 4px;
    color: white;
    background-color: #FDA832;
    border-radius: 1px;
    text-align: center;
}
.position{
    display: flex;
    justify-content: space-between;

}
input {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
    padding-top: 15px;
    font-size: 16px;
  }
.must-box2{
    padding-top: 20px;
}
.form-title{
    font-weight: bold;
    margin-bottom: 9px;
    text-align: left !important;
}
.text{
    width: 100%;
    height: 60px;
    /* margin: 0 auto; */
    background-color: white;
    border: 1px solid #717171;
    font-size: 16px;
    padding-left: 20px;
}
.text2{
    height: 60px;
    width: 340px;
    background-color: white;
    border: 1px solid #717171;
    font-size: 16px;
    padding-left: 20px;
}
.text-form{
    width: 100%;
    height: 225px;
    background-color: white;
    border: 1px solid #717171;
    padding-left: 20px;
    resize: none;
    margin-bottom: 35px;
}
input[type="checkbox"] {
    position: relative;
    margin-right: 15px;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    vertical-align: -5px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  
  input[type="checkbox"]:checked:before {
    position: absolute;
    top: 3px;
    left: 6px;
    transform: rotate(50deg);
    width: 6px;
    height: 10px;
    border-right: 2px solid #3D817B;
    border-bottom: 2px solid #3D817B;
    content: '';
  }
.privacy{
    display: flex;
    align-items:center;
    justify-content: center;

}
.submit-btn{
    margin: 35px 0 20px 0;
    display: inline-block;
    padding: 10px 30px;
    width: 50vh;
    height: 8vh;
    background-color: #5EC0B8;
    color: #fff;
    text-decoration: none;
    font-size: 3vh;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    line-height:6.5vh; /* ボタン内のテキストを中央に配置 */
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.submit-btn:hover{
    background-color: #3D817B;
}
.text-submit{
    text-align: center;
}
.note{
    width: 700px;
    padding: 25px 0 50px;
}
.note p{
    text-align: left;
}
.phone{
    width: 700px;
    padding: 35px 65px;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 100px;
}
.phone h3{
    padding-bottom: 20px;
}
.phone h2,h3,h4{
    text-align: center;
}
.phone-num{
    padding: 20px 0;
    width: 400px;
    margin: 0 auto;
    background-color: #F1F9F9;
}
.phone h4 {
    padding-top: 13px;
}

/* 確認画面 */
.send-btns{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}
.send{
    margin: 35px 0 20px 0;
    display: inline-block;
    padding: 10px 30px;
    width: 300px;
    height: 8vh;
    background-color: #5EC0B8;
    color: #fff;
    text-decoration: none;
    font-size: 3vh;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    line-height:5vh; /* ボタン内のテキストを中央に配置 */
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.send:hover{
    background-color: #3D817B;
}
.back{
    margin: 35px 40px 25px 0;
    display: inline-block;
    padding: 10px 30px;
    width: 300px;
    height: 8vh;
    background-color: #717171;
    color: #fff;
    text-decoration: none;
    font-size: 3vh;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    line-height:5vh; /* ボタン内のテキストを中央に配置 */
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
/* 送信完了画面 */
#submit-form{
    background-color: #F1F9F9;
    padding-top: 85px;
}
.submit-container h1{
    text-align: center;
    font-size: 24px;
}
.pc-icon{
    width: 120px;
    margin: 20px auto;
}
.pc-icon img{
    width: 100%;
}
.submit-container p{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}
.btn3 { 
    text-align: center;
    padding-bottom: 80px;
}
.btn-03{   
    display: inline-block;
    width: 347px;
    height: 63px;
    background-color: #5EC0B8;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    line-height: 63px; /* ボタン内のテキストを中央に配置 */
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
/* 利用規約 */
.terms{
    background-color: #F1F9F9;
    padding:100px 0;
}
.terms-text{
    width: 838px;
    margin: 0 auto;
}
.terms h1{
    text-align: center;
    margin-top: 0;
}
.terms h2{
    padding-top: 30px;
}
.terms-date{
    padding-top: 50px;
}
/* プラポリ */
.privacy{
    background-color: #F1F9F9;
    padding:100px 0;
}
.privacy-text{
    width: 838px;
    margin: 0 auto;
}
.privacy h1{
    text-align: center;
    margin-top: 0;
}
.privacy h2{
    padding-top: 30px;
}
.privacy-date{
    padding-top: 50px;
}
/* スマホ画面 */
@media screen and (max-width: 768px) {
    .visual{
        display: none;
    }
    .visual-sp{
        display: flex;
    }
    /* ヘッダー */
    .nav-menu {
        display: none; /* デフォルトで非表示 */
        flex-direction: column;
        width: 100%;
        height: 100vh; /* ビューポートの高さに合わせる */
        position: fixed; /* 画面の固定位置にする */
        top: 50px;
        left: -100%; /* 画面外から表示 */
        background-color: #F1F9F9;
        z-index: 100000; /* 他の要素の上に表示 */
        transition: left 0.3s ease; /* スライドインアニメーション */
        display: flex; /* デフォルトでは非表示ですが、スライドイン時には flex を使用 */
        align-items: center; /* 垂直方向に中央揃え */
        text-align: center;
        padding-top: 70px;
    }
    .nav-link  {
        margin-left: 0px;
    }

    .nav-menu.active {
        display: flex; /* メニューを表示 */
        left: 0; /* 画面の左端に表示 */
    }
    .menu-btn{
        display: none; /* デフォルトで非表示 */
    }
    
    .hamburger {
        display: flex; /* ハンバーガーメニューを表示 */
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 11px;
        position: relative;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: -11px;
        position: relative;
    }

    .header-logo img {
        margin-left: 35px;
        width: 130px;
    }
    .nav-link h3{
        color: #293341;
        font-size: 18px;
        text-align: center;
    }
    .header {
        flex-wrap: nowrap; /* ヘッダーの要素が折り返されないように調整 */
        height: 50px; /* 高さを調整 */
        width: 100%;
    }
    .hamburger.active ~ .nav-menu,
.hamburger.active ~ .menu-btn {
    display: flex;
    left: 0; /* 画面の左端に表示 */
}
.menu-btn2{
    padding: 0.6rem 1.5rem;
    background-color: #5EC0B8;
    color: #fff;
    border-radius: 100vh;
    margin: 30px auto 0 auto; 
}
.nav-items:last-child{
    display: flex;
}
.nav-items h3 {
    text-align: center !important;
}

.nav-items {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
}
.visual-sp img{
    width: 100%;
    height: 100%;
}
.visual-sp .btn-01{
    display: flex;
    justify-content: center;
    width: 300px;
    height: 60px;
    background-color: #5EC0B8;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    line-height: 35px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.btn {
        position: absolute;
        top: 71%; /* ボタンの位置を調整 */
        left: 56%; /* ボタンの位置を調整 */
        transform: translate(-58%, -20%); /* ボタンを中央に配置 */
}
/* ninzineとは */
#explanation h1{
    padding: 45px 0 30px 0;
    font-size: 24px;
}
.ex-content{
    width: 335px;
    padding: 14px 14px;
}
#explanation img{
    width: 340px;
}
/* こんな方におすすめです */
.recommendation{
    margin-top: -35px;
    padding-bottom: 60px;
}
.recommendation h1{
    padding: 45px 0 30px 0;
    font-size: 24px;
}
.container{
    max-width: 335px;
    justify-content: space-around; /* 項目を均等に配置 */
    margin: 0 auto;
    background-color: #F1F9F9;
    display: flex;
    flex-wrap: wrap;
    gap: 21px;
}
.container p{
    text-align: center;
    padding: 10px 0 14px;
    font-weight: 500px;
}
.container-box img{
    height: 80px;
}
.container-box{
    width: 157px;
    height: auto;
    background-color: white;
    margin-bottom: 0px;

}
/* こんなシーンで */
.type{
    width: 100%;
    background-color: white;
    padding-bottom: 10px;
}
.type h1{
    font-size: 24px;
    text-align: center;
    padding: 45px 0 40px 0;
    margin: 0;
}
.type-box{
    max-width: 335px;
    justify-content: space-around; /* 項目を均等に配置 */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.type-box-item{
    width: 335px;
    position: relative; 
}
.type-box-item .photo{
    width: 335px;
    position: relative;

}
.type-box-item .num{
    position: absolute; /* 絶対位置に設定 */
    top: -23px; /* 上からのオフセットを調整 */
    left: 10px; /* 左からのオフセットを調整 */
    z-index: 1; /* 重ね順を指定 */
    width: 90px;
}
.type-box-item h3{
    font-size: 20px;
    margin: 15px 0;
    text-align: center;
}
.tag-group{
    display: flex;
}
.tag{
    color: white;
    font-size: 14px;
    background-color: #5EC0B8;
    padding: 7px 9px;
    margin:15px 12px 50px 0px;
}
/* ninzineのおすすめポイント */
#point-contents{
    padding-bottom: 40px;
    background-color: #F1F9F9;
}
#point-contents h1{
    font-size: 24px;
    padding: 45px 0 30px 0;
}
.point-box{
    width: 335px;
    margin: 0 auto 20px;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    display: block;
}
.point-box br{
    display: inline;
}
.document{
    width: 305px;
}
.document h3{
    font-size: 20px;
    margin: 10px 0px;
    text-align: left;
}
.green-icon{
    margin: 20px auto 0;
    display: flex; /* フレックスボックスを使用 */
    justify-content: center;
}
/* ninzineにできること */

#ability-slider {
    position: relative;
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.ability {
    overflow: hidden;
    width: 100%;
}

.slide-container {
    display: flex;
    transition: transform 0.5s ease;
}

.abi-contents {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}
.display img{
    width: auto;
    height: 250px;
}
.slide-left, .slide-right {
    background-color: #FDA832;
    border: none;
    border-radius: 50%;
    color: white;
    padding: 15px;
    width: 45px;  /* ボタンの幅 */
    height: 45px; /* ボタンの高さ */
    display: flex; /* コンテンツを中央に揃えるため */
    align-items: center; /* コンテンツを中央に揃えるため */
    justify-content: center; /* コンテンツを中央に揃えるため */
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    z-index: 10; /* ボタンが他の要素より前面に表示されるようにする */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 影の指定 */
}

.slide-left {
    position: absolute;
    left: 5px;
    top: 215px;
}

.slide-right {
    position: absolute;
    right: 5px;
    top: 215px;
}

.slide-left.disabled {
    background-color: #d3d3d3; /* グレーにする */
    cursor: not-allowed; /* 無効化カーソル */
}

.slide-right.disabled {
    background-color: #d3d3d3; /* グレーにする */
    cursor: not-allowed; /* 無効化カーソル */
}
.ability{
    width: 100%;
    background-color: white;
    text-align: center;
    margin-bottom: 60px;
}
.ability h1{
    font-size: 24px;
    padding: 45px 0px 30px;
}
.abi-contents h2{
    font-size: 20px;
    padding: 25px 0 10px 0;
}
.abi-contents h3{
    font-size: 18px;
    padding-top: 20px;
}
/* ninzineの集客サポート */
.support{
    width: 100%;
    background-color: #F1F9F9;
    padding-bottom: 60px;
}
.support h1{
    font-size: 24px;
    text-align: center;
    padding: 45px 0 15px 0;
    margin: 0;
}
.sup-p{
    width: 335px;
    text-align: left;
    margin: 0 auto;
}
.sup-box{
    width: 335px;
    margin:20px auto 0px auto;
    background-color: white;
    padding: 20px 25px;
    border-radius: 10px;
}
.sup-contents{
    display: block;
}
.sup-contents .sup1,.sup2{
    display: block;
    font-weight: 500;
    text-align: left;
}
.sup-item{
    display: flex;
    gap: 15px;
    /* justify-content: space-between; */
    padding: 15px 0 0 0;
    padding-left: 0px;
}
.sup-item img{
    width: 85px;
}
.sup-check{
    padding-top: 20px;
    color: #7A7A7A;
    font-size: 14px;
}
/* 料金おご案内 */
#plan{
    padding-bottom: 60px;
}
#plan h1{
    font-size: 24px;
    text-align: center;
    padding: 45px 0 30px 0;
    margin: 0px;
}
.plan-container{
    display: block;
    width: 335px;
    margin: 0 auto;
    justify-content: space-between;
}
.plan-box{
    display: flex;
    background-color: #F1F9F9;
    border-radius: 11px;
    padding: 15px 30px 10px;
    border: 2px solid #5EC0B8;
}
.plan-box:first-child{
    margin-bottom: 20px;
}
.plan-thema1{
    line-height: 1.4;
    font-size: 20px;
    color: #293341;
    white-space: nowrap;
    display: inline-block;
    width: 110px;
}
.plan-price1{
    padding-left: 20px;
    display: flex;
    align-items: flex-end;
}
.plan-price1 img{
    margin-top: 40px;
    width: 140px;
}
.plan-price2{
    padding-left: 20px;
}
.plan-price2 img{
    width: 130px;
}
.price{
    font-size: 18px;
    padding-top: 5px;
}
.share{
    width: 335px;
}
.share img{   
    width: 335px;
    margin: 0 auto;
}
.attention{
    width: 335px;
    margin: 0 auto;
    padding-top: 30px;
}
.plan-p{
    color: #5F5F5F;
    font-size: 14px;
}
/* 導入の流れ */
.flow{
    margin: 0 auto;
    background-color: #F1F9F9;
    padding-bottom: 60px;
}
.flow h1{
    text-align: center;
    font-size: 24px;
    padding: 45px 0 30px 0;
    margin: 0;
}
.flow-box{
    background-color: white;
    padding: 15px;
    width: 335px;
    margin: 0 auto;
    display: block;
    justify-content: space-between;
    border-radius: 10px;
}
.flow-title{
    display: flex;
    padding-bottom: 9px;
}
.flow-title img{
    padding-right: 18px;
}
.flow-title h2{
    line-height:52px;
    font-size: 20px;
}
.flow-p{
    width: 100%;
}
.flow-icon{
    display: flex;
    justify-content: center;
}
.icon2{
    padding-right: 0px;
}
.flow-icon .icon3{
    width: 100px;
    height: auto;
}
.flow-icon img{
    margin-top: 15px;
    width: 100%;
    height: 86px;
}
.triangle {
    background: #5EC0B8;
    height: calc(44px / 2);
    width: 44px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin: 25px auto;
  }
.btn1{
    margin: 40px auto 0 auto;
    text-align: center;
}
.btn-02 {
    display: inline-block;
    width: 300px;
    height: 60px;
    background-color: #5EC0B8;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    line-height: 60px; /* ボタン内のテキストを中央に配置 */
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
/* よくあるご質問 */
.question-container{
    width: 335px; 
    margin: 0 auto;  
    padding-bottom: 30px;
}
.question-container h1{
    padding: 45px 0 30px;
    font-size: 24px;
}
.question{
    display: flex;
}
.q{
    padding: 8px 10px;
    height: 35px;
    background-color: #5EC0B8;
    display: flex;
    align-items: center;
}
.q p{
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-align: center;
    line-height: 40px;
}
.question h3{
    padding-left: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    width: 240px;
    text-align: left;
}
.border{
    border-bottom: 1px dashed #D4D4D4;
    padding-top: 15px;
}
/* アコーディオンメニュー */
.accordion {
    margin: 0px auto 40px;
    max-width: 840px;
    }
    .toggle {
    display: none;
    }
    .option {
    position: relative;
    background-color: #F1F9F9;
    padding: 15px;
    margin-bottom: 30px;
    }
    .title::after,
    .title::before {

    right: 1.6em;
    
    }
    .title::after {
    transform: rotate(90deg);
    }
    .q-sentence {
    max-height: 0;
    overflow: hidden;
    }
    .q-sentence p {
    margin-left: 42px;
    margin-right: 0px;
    width: 240px;
    padding-top: 1em;
    margin-right: 5em;
    }
    .toggle:checked + .title + .q-sentence {
    max-height: 500px;
    transition: all 1.5s;
    }
    .toggle:checked + .title::before {
    transform: rotate(90deg) !important;
    }
    .mata{
        display: inline;
    }
 /* アコーディオンメニュー */
 /* まずはご気軽にご相談ください */
.inquiry{
    background-color: #F1F9F9;
    padding-bottom: 60px;
    margin: 0 auto;
}
.inquiry h3{
    padding: 45px 0 30px;
    font-size: 20px;
    text-align: center;
}
.btn2{
    text-align: center;
}
/* フッター */
footer{
    background-color: #293341;
    margin: 0 auto;
}
footer ul{
    display: flex;
    padding-top: 45px;
    list-style: none;
    font-size: 14px;
    justify-content: space-between;
    width: 280px;
    margin: 0 auto;
}
footer li a{
    text-decoration: none;
    color:white;
}
footer p{
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 70px 0px 20px 0;
}
/* お問い合わせ */
#contact-form{
    background-color: #F1F9F9;
    padding-bottom: 100px;
}
#contact-form h1{
    margin: 0 auto;
    text-align: center;
    font-size: 24px;
    padding: 45px 0 15px 0;
}
.form-container p{
    text-align: left;
    width: 335px;
    margin: 0 auto;
}
.form-title{
    display: block;
    margin: 0 !important;
    width: auto !important;
}
.form-box{
    width: 335px;
    margin: 0 auto;
    padding-top: 20px;
}
.form-item{
    width:  auto;
    margin: 0 auto;
}
.form-item2{
    width: 340px;
}
.must-box{
    display: flex;
    width: 340px;
    padding-top: 20px;
    padding-bottom: 8px;
    text-align: left;
}
.must-box2{
    display: flex;
    width: 155px;
    padding-top: 20px;
    padding-bottom: 8px;
    text-align: left;
}
.must{
    margin-right: auto;
    text-align: left !important;
}
.must p{
    margin-left: 10px;
    width: 40px;
    font-size: 14px;
    padding: 1px 5px;
    color: white;
    background-color: #FDA832;
    border-radius: 1px;
    text-align: left !important;
}
.position{
    display: flex;
    justify-content: space-between;

}
input {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
    padding-top: 15px;
    font-size: 16px;
  }
.text{
    width: 100%;
    height: 60px;
    /* margin: 0 auto; */
    background-color: white;
    border: 1px solid #717171;
    font-size: 16px;
    padding-left: 20px;
}
.text2{
    height: 60px;
    width: 155px;
    background-color: white;
    border: 1px solid #717171;
    font-size: 16px;
    padding-left: 20px;
}
.text-form{
    width: 100%;
    height: 225px;
    background-color: white;
    border: 1px solid #717171;
    padding: 15px;
    resize: none;
    margin-bottom: 35px;
}
input[type="checkbox"] {
    position: relative;
    margin-right: 15px;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    vertical-align: -5px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  
  input[type="checkbox"]:checked:before {
    position: absolute;
    top: 3px;
    left: 6px;
    transform: rotate(50deg);
    width: 6px;
    height: 10px;
    border-right: 2px solid #3D817B;
    border-bottom: 2px solid #3D817B;
    content: '';
  }
.privacy{
    display: flex;
    align-items:center;
    justify-content: center;

}

.submit-btn{
    display: flex;
    justify-content: center;
    width: 300px;
    height: 60px;
    background-color: #5EC0B8;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    line-height: 35px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
    margin: 35px auto 20px;
}
.submit-btn:hover{
    background-color: #3D817B;
}
.text-submit{
    text-align: center;
}
.note{
    width: 335px;
    padding: 25px 0 50px;
}
.note p{
    text-align: left;
}
.phone{
    width: 335px;
    padding: 35px 30px;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 0px;
}
.phone h3{
    padding-bottom: 20px;
}
.phone h2,h3,h4{
    text-align: center;
}
.phone-num{
    padding: 20px 0;
    width: auto;
    margin: 0 auto;
    background-color: #F1F9F9;
}
.phone h4 {
    padding-top: 13px;
}

/* 確認画面 */
.send-btns{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}
.send{
    margin: 35px 0 20px 0;
    display: inline-block;
    padding: 5px 10px;
    width: 155px;
    height: 48px;
    background-color: #5EC0B8;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    line-height:5vh; /* ボタン内のテキストを中央に配置 */
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.send:hover{
    background-color: #3D817B;
}
.back{
    margin: 35px 15px 25px 0;
    display: inline-block;
    padding: 5px 10px;
    width: 155px;
    height: 48px;
    background-color: #717171;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    line-height:5vh; /* ボタン内のテキストを中央に配置 */
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
/* 送信完了画面 */
#submit-form{
    background-color: #F1F9F9;
    padding-top: 45px;
}
.submit-container h1{
    text-align: center;
    font-size: 20px;
}
.pc-icon{
    width: 120px;
    margin: 20px auto;
}
.pc-icon img{
    width: 100%;
}
.submit-container p{
    margin: 0 auto;
    width: 335px;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 40px;
}
.btn3 { 
    text-align: center;
    padding-bottom: 80px;
}
.btn-03{   
    display: inline-block;
    width: 300px;
    height: 60px;
    background-color: #5EC0B8;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    line-height: 63px; /* ボタン内のテキストを中央に配置 */
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
/* 利用規約 */
.terms{
    background-color: #F1F9F9;
    padding:70px 0;
}
.terms-text{
    width: 335px;
    margin: 0 auto;
}
.terms h1{
    text-align: center;
    margin-top: 0;
}
.terms h2{
    padding-top: 30px;
}
.terms-date{
    padding-top: 50px;
}
/* プラポリ */
.privacy{
    background-color: #F1F9F9;
    padding:70px 0;
}
.privacy-text{
    width: 335px;
    margin: 0 auto;
}
.privacy h1{
    text-align: center;
    margin-top: 0;
}
.privacy h2{
    padding-top: 30px;
}
.privacy-date{
    padding-top: 50px;
}

}