/* 1024px以上の幅の場合に適応される */
@media screen and (max-width: 1024px) {
    /* 1024px以下の幅の場合に適応される ipad air*/
}
@media screen and (max-width: 768px) {
    /* 768px以下の幅の場合に適応される ipad mini*/
}
@media screen and (max-width: 480px) {
    /* 480px以下の幅の場合に適応される Iphone */
}

.component-big-title{
    background-color: rgba(0, 0, 0, 0.72);
    font-style: italic;
    color:white;
    font-size:40px;
    padding:0 calc(50vw - 45%);
    margin:50px 0px 50px calc(50% - 50vw);
    white-space:nowrap;
}
@media screen and (max-width: 480px) {
    /* 480px以下の幅の場合に適応される Iphone */
    .component-big-title{
        font-size:30px;
    }
}

body {
    font-size:18px;
    overflow-x:hidden;
}
/* 1024px以上の幅の場合に適応される */
@media screen and (max-width: 1024px) {
    /* 1024px以下の幅の場合に適応される ipad air*/
    body {
        font-size:16px;
    }
}
@media screen and (max-width: 768px) {
    /* 768px以下の幅の場合に適応される ipad mini*/
}
@media screen and (max-width: 480px) {
    /* 480px以下の幅の場合に適応される Iphone */
}



/* ヘッダー */
nav {
    position:fixed;
    display:grid;
    grid-template-columns: 1fr 3fr 1fr;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.72);
    height:50px;
    width:100%;
    z-index:999;
}
nav ul{
    padding-left:0px;
}
nav .logo{
    font-size:30px;
    color:white;
    white-space: nowrap;
    font-family: "ヒラギノ角ゴシック" sans-serif;
    font-style: oblique;
    margin-left:15px;
}
nav .logo img{
    height:45px;
    margin:3px;
}
.nav-links {
    display:flex;
    list-style: none;
    margin:auto;
    gap:50px;
    font-size:20px;
}
nav a{
    text-decoration: none;
    color:white;
    white-space: nowrap;
}
nav a:hover{
    color: #949494;
}
.burger{
    display:none;
    cursor: pointer;
}
/* 1024px以上の幅の場合に適応される */
@media screen and (max-width: 1024px) {
    /* 1024px以下の幅の場合に適応される ipad air*/
    .nav-links {
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    /* 768px以下の幅の場合に適応される ipad mini*/
}
@media screen and (max-width: 480px) {
    /* 480px以下の幅の場合に適応される Iphone */
    nav .logo{
        font-size:26px;
        color:white;
        white-space: nowrap;
        font-family: "ヒラギノ角ゴシック" sans-serif;
        font-style: oblique;
    }
    nav .logo img{
        height:40px;
        margin:1px;
    }
    .nav-links {
        /* list-style:circle; */
        display:block;
        position:fixed;
        min-width:50%;
        right:0px;
        top:50px;
        font-size:18px;
        text-align: left;
        background-color: rgba(0, 0, 0, 0.72);
        height:100%;
        transition:all 0.5s ease-in-out;
        opacity: 0.9;
        transform: translate(100%);
        padding-left:20px;
        padding-right:20px;
    }
    .nav-links li{
        opacity: 0;
    }
    .nav-active {
        transform: translate(0%) !important;
    }
    .nav-item {
        border-bottom:white 1px solid;
        margin-top:10%;
        margin-bottom:20%;
    }
    .burger{
        display: block;
        width:45px;
        margin-left:auto;
        margin-right:5px;
    }
    .burger div {
        height:2px;
        margin-left:10px;
        margin-right:10px;
        margin-top:7px;
        margin-bottom:7px;
        background-color: white;
    }
    .navToggle .line1 {
        transform: rotate(45deg) translateX(6px) translateY(7px);
    }
    .navToggle .line2 {
        opacity: 0;
    }
    .navToggle .line3 {
        transform: rotate(-45deg) translateX(6px) translateY(-7px);
    }
}

@keyframes navLinksFade {
    0% {
        opacity: 0;
        transform: translate(100%);
    }
    100% {
        opacity: 1;
        transform: translate(0%);
    }
}



/* フッター */
.footerFixed{
    min-height: 100vh; /* ←コンテンツの高さの最小値＝ブラウザの高さに指定 */
    position: relative;/* ←相対位置 */
    padding-bottom: 200px; /* ←フッターの高さを指定 */
    box-sizing: border-box;
    /* ↑ヘッダーやフッターを含むすべての要素の高さ＝min-height:100vhになるように指定 */
}
footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items:center;
    justify-content:center;
    border-top:1px #ddd solid;
    background-color:rgba(0, 0, 0, 0.72);
    padding-left:15%;
    padding-right:15%;
    color:white;
    padding-top:1%;
    padding-bottom:1%;
    gap:3px;
    position: absolute;/* ←絶対位置 */
    bottom: 0;
    width:100%;
}
.footer .item {
    text-align: center;
}
.footer .item a{
    text-decoration: none;
    color:white;
}
.footer .item .logo{
    font-size:36px
}
.footer .item img{
    height:60px;
}

.footer .content{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.footer .content a{
    text-decoration: none;
    color:white;
    padding-left:20px;
    padding-right:20px;
}

.footer .content a:not(:last-child) {
    border-right:1px solid white;
}


.footer img{
    width:150px;
    margin:3px;
}
.footer br{
    display:none;
}
/* 1024px以上の幅の場合に適応される */
@media screen and (max-width: 1024px) {
    /* 1024px以下の幅の場合に適応される ipad air*/
    .footer {
        padding-left:5%;
        padding-right:5%;
    }
    .footer br{
        display:block;
    }
}
@media screen and (max-width: 768px) {
    /* 768px以下の幅の場合に適応される ipad mini*/
}
@media screen and (max-width: 480px) {
    /* 480px以下の幅の場合に適応される Iphone */
    .footer {
        grid-template-columns: 1fr;
        padding-left:0%;
        padding-right:0%;
    }
    .footer br{
        display:block;
    }
}



/* トップページ */
.index {
    max-width:1200px;
    margin:auto;
    padding:0px 10px 0px 10px;
    text-align: center;
}
.index span.black-title{
    display: inline-block;
    font-size:40px;
    min-width:350px;
    border-bottom:3px solid black;
    margin-bottom:50px;
    text-align: center;
}
.index span.white-title{
    display: inline-block;
    font-size:40px;
    min-width:350px;
    color:white;
    border-bottom:3px solid white;
    margin-bottom:40px;
}


.index .top-img {
    position:relative;
    margin:0 calc(50% - 50vw);
    background-color: black;
}
.index .top-img .text1{
    position: absolute;
    color:white;
    font-size:50px;
    top:20%;
    left:20%;
    text-align: left;
    z-index: 1;

}
.index .top-img .text2{
    position: absolute;
    color:white;
    font-size:20px;
    bottom:28%;
    left:50%;
    transform: translateX(-50%);
    z-index: 1;
}
.index .top-img img{
    object-fit: cover;
    width:100%;
    height:600px;
    opacity: 0.7;
}
.index .top-img a{
    position:absolute;
    left:50%;
    bottom:10%;
    transform: translateX(-50%);
    display:flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color:white;
    font-size:30px;
    width:480px;
    height:60px;
    border-radius: 30px;
    text-decoration: none;
}
.index .top-img a:hover{
    background-color: rgb(31, 31, 31);
}


.index h1{
    font-size:18px;
    font-weight: normal;
    text-align: left;
    padding-top:30px;
    padding-bottom:30px;
    margin-bottom:0;
    max-width:800px;
    margin:auto;
}




.index .content1{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
    align-items: center;
    gap:30px;
    margin:auto;
    padding:50px 0;
    border-bottom:1px solid #dfdfdf;
    border-top:1px solid #dfdfdf;
}
/* .index .content1-wrapper{
    margin: 0 calc(50% - 50vw);
    background-color: #393939;
} */

.index .content1 .item{
    border: 1px solid #eee;
}
.index .content1 img{
    width:100%;
    height:180px;
    object-fit: cover;
}
.index .content1 .item .title1,
.index .content1 .item .title2,
.index .content1 .item .title3{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:26px;
    color:white;
    height:50px;
}
.index .content1 .item .title1{
    background-color: #130091;


}
.index .content1 .item .title2{
    background-color: #130091;


}
.index .content1 .item .title3{
    background-color: #00581B;
}

.index .content1 .item .text{
    text-align: left;
    min-height:150px;
    padding:20px;
}


.index .content1 .item a{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color:white;
    text-decoration: none;
    width:200px;
    height:40px;
    margin:3% auto;
}
.index .content1 .item a:hover{
    background-color: rgb(49, 49, 49);
}


.index .content2{
    position:relative;
    margin:50px calc(50% - 50vw);
    height:600px;
}
.index .content2 .back1{
    position:absolute;
    top:0;
    left:0;
    height:90%;
    width:60%;
    background-color: #2D2D2D;
    z-index:2;
}
.index .content2 .back2{
    position:absolute;
    top:10%;
    right:0;
    height:90%;
    width:60%;
    background-color: #130091;
    z-index:1;
}

.index .content2 .news{
    position:absolute;
    top:15%;
    left:50%;
    z-index:3;
    transform: translateX(-50%);
    width:800px;
}
.index .content2 .news a{
    display: block;
    text-decoration: none;
    color:white;
    margin-bottom:30px;
    font-size:20px;
    border-bottom:1px solid white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}
.index .content2 .news a:hover{
    background-color: #393939;
}





.index .content3 {
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
    max-width:1500px;
    margin:auto;
    margin-bottom:100px;
}
.index .content3 img{
    width:100%;
    height:200px;
    object-fit: cover;
}
.index .content3 .name{
    padding:10px;
}

.index .content4{
    display: grid;
    grid-template-columns: 1fr;
    margin:auto;
    border:1px solid #eee;
}
.index .content4 .item1,
.index .content4 .item2{
    display: grid;
    grid-template-columns: 1fr 8fr;
    grid-template-areas:
             "no title"
             "no text";
    grid-template-rows: max-content 1fr;
    background-color: #DFDFDF;
    min-height:150px;
    text-align: left;
}
.index .content4 .item2{
    background-color: white;
}

.index .content4 .no{
    grid-area: no;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:50px;
}
.index .content4 .title{
    grid-area: title;
    display: flex;
    align-items: center;
    padding:10px 10px 0px 10px;
    font-size:30px;
}
.index .content4 .text{
    grid-area: text;
    padding:10px;
}   

.index .content5{
    text-align: center;
}
.index .content5 iframe{
    height:400px;
    width:600px;
}

/* 1024px以上の幅の場合に適応される */
@media screen and (max-width: 1024px) {
    /* 1024px以下の幅の場合に適応される ipad air*/
    .index .content1{
        gap:20px;
    }

    .index .content2{
        height:600px;
    }
    .index .content2 .back1,
    .index .content2 .back2{
        width:90%;
    }
    .index .content2 .news{
        width:85%;
    }
    .index .content2 .news a{
        font-size:18px;
    }
    .index .content3 img{
        height:150px;
    }
}
@media screen and (max-width: 768px) {
    /* 768px以下の幅の場合に適応される ipad mini*/
}
@media screen and (max-width: 480px) {
    /* 480px以下の幅の場合に適応される Iphone */
    .index span.black-title,
    .index span.white-title{
        font-size:30px;
        min-width:250px;
    } 

    .index .top-img img{
        height:400px;
    }
    .index .top-img a{
        left:50%;
        bottom:10%;
        font-size:18px;
        width:250px;
        height:50px;
    }
    .index .top-img .text1{
        position: absolute;
        color:white;
        font-size:26px;
        top:25%;
        left:10%;
    }
    .index .top-img .text2{
        position: absolute;
        color:white;
        font-size:16px;
        bottom:30%;
        left:50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }




    .index .content1{
        grid-template-columns: repeat(1,1fr);
        gap:30px;
    }

    .index .content2{
        position:relative;
        margin-top:50px;
        height:550px;
    }
    .index .content2 .back1,
    .index .content2 .back2{
        width:90%;
    }
    .index .content2 .news{
        width:90%;
    }
    .index .content2 .news a{
        font-size:16px;
    }
   
    .index .content3 {
        grid-template-columns: repeat(1,1fr);
    }
    .index .content3 img{
        height:220px;
    }
    .index .content5 iframe{
        height:200px;
        width:90%;
    }
}

/* 料金ページ */
/* お問い合わせページ */

/* ブログページ */
.blog {
    max-width:1500px;
    margin:auto;
    padding:50px 10px 0px 10px;
}




.blog .category{
    padding-left:10px;
    margin-bottom:20px;
}
.blog .content1{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
}
.blog .content1 a{
    text-decoration: none;
    color:black;
}
.blog .content1 .item .item-wrapper{
    text-align: left;
    border-bottom:1px solid #eee;
    border-left:1px solid #eee;
    border-right:1px solid #eee;
}

.blog .content1 .item img{
    width:100%;
    height:300px;
    object-fit: cover;
    border:1px solid #eee;
}
.blog .content1 .item .title{
    margin:10px 10px 0px 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height:55px;
}
.blog .content1 .item .other{
    display: flex;
    justify-content: space-between;
    padding:10px;
}






.blog .pagination{
    display:flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    margin-top:40px;
}
.blog a{
    text-decoration: none;
    color:black;
    text-align: center;
}
.blog .pagination .page_number{
    display: flex;
    justify-content: center;
    align-items: center;
    width:30px;
    height:30px;
    background-color: white;
    border:1px solid black;

}
.blog .pagination .now_page{
    display: flex;
    justify-content: center;
    align-items: center;
    width:30px;
    height:30px;
    background-color: rgba(0, 0, 0, 0.72);
    color:white;
}
.blog .pagination .previous,
.blog .pagination .next{
    position:relative;
    color:black;
    margin:0 20px;
    width:80px;
}
.blog .pagination .none{
    width:120px;
}
.blog .pagination .previous:before{
    position:absolute;
    top:50%;
    left:-16px;
    transform: translateY(-50%) rotate(45deg);
    content:"";
    display:inline-block;
    border-left:black solid 3px;
    border-bottom:black solid 3px;
    width: 16px;
    height: 16px;
}
.blog .pagination .next:after{
    position:absolute;
    top:50%;
    right:-16px;
    transform: translateY(-50%) rotate(45deg);
    content:"";
    display:inline-block;
    border-right:black solid 3px;
    border-top:black solid 3px;
    width: 16px;
    height: 16px;
}

/* 1024px以上の幅の場合に適応される */
@media screen and (max-width: 1024px) {
    /* 1024px以下の幅の場合に適応される ipad air*/
    .blog .content1{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width: 768px) {
    /* 768px以下の幅の場合に適応される ipad mini*/
}
@media screen and (max-width: 480px) {
    /* 480px以下の幅の場合に適応される Iphone */
    .blog .content1{
        grid-template-columns: repeat(1,1fr);
    }
    .blog .pagination .page_number,
    .blog .pagination .now_page{
        display: none;
    }

}



.blog-detail {
    max-width:1000px;
    margin:auto;
    padding:50px 10px 0px 10px;
}
.blog-detail a{
    display: inline-block;
    margin-top:10px;
}
.blog-detail .top-image img{
    margin-top:10px;
    height:500px;
    width:100%;
    object-fit: cover;
}
.blog-detail .title {
    margin-top:10px;
    font-size:30px;
    border-bottom:2px solid black;
}
.blog-detail .text{
    margin-top:10px;
}
.blog-detail .code{
    background-color: black;
    color:white;
    padding:10px;
    margin-bottom:50px;
}
/* 1024px以上の幅の場合に適応される */
@media screen and (max-width: 1024px) {
    /* 1024px以下の幅の場合に適応される ipad air*/
}
@media screen and (max-width: 768px) {
    /* 768px以下の幅の場合に適応される ipad mini*/
}
@media screen and (max-width: 480px) {
    /* 480px以下の幅の場合に適応される Iphone */
    .blog-detail .top-image img{
        height:300px;
    }
}



/* お問い合わせ */
.contact{
    max-width:1000px;
    margin:auto;
    padding:50px 10px 0px 10px;
}

.contact .button-wrapper{
    margin:25px 0;
}
.contact input {
    width:100%;
    height:35px;
    border:1px solid black;
    border-radius: 3px;
    padding:10px;
    margin-bottom: 10px;
}
.contact textarea {
    width:100%;
    border:1px solid black;
    border-radius: 3px;
    padding:10px;
    margin-bottom: 10px;
}
.contact input:focus,
.contact textarea:focus{
    outline:3px solid rgba(0, 0, 0, 0.72);
}
.contact button {
    display: block;
    background-color: rgba(0, 0, 0, 0.72);
    color:white;
    min-width:150px;
    height:40px;
    border:none;
    border-radius: 3px;
    margin:auto;
}
.contact button:hover{
    background-color: rgba(0, 0, 0, 0.5);
}
/* 1024px以上の幅の場合に適応される */
@media screen and (max-width: 1024px) {
    /* 1024px以下の幅の場合に適応される ipad air*/
}
@media screen and (max-width: 768px) {
    /* 768px以下の幅の場合に適応される ipad mini*/
}
@media screen and (max-width: 480px) {
    /* 480px以下の幅の場合に適応される Iphone */
}





/* サービス紹介 */
.service-web {
    max-width:1500px;
    margin:auto;
    padding:40px 10px 0px 10px;
}

.service-web .button a{
    display: inline-block;
    margin-bottom:30px;
    background-color: #2D2D2D;
    text-decoration: none;
    color:white;
    font-size: 22px;
    padding:5px 30px;
    border-radius: 5px;
    min-width:220px;
    margin-top:30px;
}
.service-web .button a:hover{
    background-color: #404040;
}
.service-web .service-title{
    font-size:30px;
    border-bottom:2px solid black;
    max-width:300px;
    text-align: center;
    margin:30px auto;
    line-height:50px;
}
.service-web .content1{
    text-align: center;
    margin:30px auto 0px auto;
    max-width:1200px;
}
.service-web .content1 .main{
    font-size:30px;
    margin-bottom:40px;
}
.service-web .content1 .text {
    margin-top:15px;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    padding:2%;
}
.service-web .content1 .text span {
    color:red;
}
.service-web .content1 .text div {
    margin-top:10px;
    font-size:14px;
}



.service-web .content2 {
    display:grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: center;
    align-items: center;
    gap:30px;
    margin-bottom:80px;
}
.service-web .content2 .item {
    border:1px solid #eee;
    height:100%;
}
.service-web .content2 .item img{
    width:100%;
    height:250px;
    object-fit: cover;
}
.service-web .content2 .item .title{
    text-align: center;
    font-size:40px;
    font-weight:bold;
}
.service-web .content2 .item .text{
    padding:10px 20px;
}




.service-web .content3{
    display: grid;
    grid-template-columns: 1fr;
    max-width:1500px;
    margin:0 auto 80px 0;
    border:1px solid #eee;
}
.service-web .content3 .item1,
.service-web .content3 .item2{
    display: grid;
    grid-template-columns: 1fr 8fr;
    grid-template-areas:
             "no title"
             "no text";
    grid-template-rows: max-content 1fr;
    background-color: #DFDFDF;
    min-height:150px;
    text-align: left;
}
.service-web .content3 .item2{
    background-color: white;
}

.service-web .content3 .no{
    grid-area: no;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:50px;
}
.service-web .content3 .title{
    grid-area: title;
    display: flex;
    align-items: center;
    padding:10px 10px 0px 10px;
    font-size:30px;
}
.service-web .content3 .text{
    grid-area: text;
    padding:10px;
}






.service-web table{
    margin:auto;
    margin-bottom:10px;
    margin-top:30px;
}
.service-web th {
    border:1px solid black;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.72);
    color:white;
}
.service-web td {
    border:1px solid black;
    padding-left:5px;
}
/* 1024px以上の幅の場合に適応される */
@media screen and (max-width: 1024px) {
    /* 1024px以下の幅の場合に適応される ipad air*/
    .index .content4 .item1,
    .index .content4 .item2{
        grid-template-columns: 1fr 6fr;
    }
    .service-web .content2 .item img{
        height:150px;
    }
    .service-web .content2 .item .title{
        font-size:30px;
    }
}
@media screen and (max-width: 768px) {
    /* 768px以下の幅の場合に適応される ipad mini*/
}
@media screen and (max-width: 480px) {
    /* 480px以下の幅の場合に適応される Iphone */
    .service-web .content2 {
        grid-template-columns: repeat(1,1fr);
    }
  
    .service-web .content2 .item img{
        height:200px;
    }

    .service-web .content3 .item1,
    .service-web .content3 .item2{
        grid-template-columns: 1fr 4fr;
        min-height:180px;
    }
    .service-web .content3 .no{
        font-size:40px;
    }
    .service-web .content3 .title{
        font-size:24px;
    }



    .service-web th{
        display:none;
    }
    .service-web td{
        display:block;
        border:1px solid black;
    }


    .service-web tbody:before{
        display:block;
        height:100%;
        border:1px solid black;
        background-color: rgba(0, 0, 0, 0.72);
        color:white;
        padding-left:10px;
    }

    .service-web tbody:nth-child(1):before{
        content:"・ページ内容";
    }
    .service-web tbody:nth-child(2):before{
        content:"・デザイン";
    }
    .service-web tbody:nth-child(3):before{
        content:"・機能";
    }
    .service-web tbody:nth-child(4):before{
        content:"・サーバー・ドメイン";
    }
    .service-web tbody:nth-child(5):before{
        content:"・月額費用";
    }
}








/* サービス紹介-IT */
.service-it {
    max-width:1200px;
    margin:auto;
    padding:40px 10px 0px 10px;
}
.service-it a{
    display: inline-block;
    margin-bottom:30px;
    background-color: #2D2D2D;
    text-decoration: none;
    color:white;
    font-size: 22px;
    padding:5px 30px;
    border-radius: 5px;
}
.service-it a:hover{
    background-color: #404040;
}


.service-it .content1{
    text-align: center;
    margin:30px auto 50px auto;
    max-width:1200px;
}
.service-it .content1 .main{
    font-size:30px;
    margin-bottom:40px;
}
.service-it .content1 .text {
    margin-top:15px;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    padding:2%;
}
.service-it .content1 .text span {
    color:red;
}
.service-it .content1 .text div {
    margin-top:10px;
    font-size:14px;
}


.service-it .content2 {
    background-color: #FFF9DE;
    margin:0 calc(50% - 50vw);
    text-align:center;
}
.service-it .content2 .title{
    font-size:30px;
    max-width:1200px;
    margin:auto;
    padding:30px 10px 0px 10px;
}
.service-it .content2 .text{
    max-width:1200px;
    margin:auto;
    padding:30px 10px;
    text-align: left;
    max-width:900px;
}
.service-it .content2 .grid {
    display:grid;
    grid-template-columns: 1fr 2fr;
    justify-content: center;
    align-items: center;
    max-width:1200px;
    margin:auto;
    padding:30px 10px 0px 10px;
    gap:30px;
}
.service-it .content2 .grid img{
    width:300px;
    height:300px;
    object-fit: cover;
    margin:auto;
}
.service-it .content2 .grid .item .point{
    display:flex;
    align-items: center;
    background-color: #F8F830;
    padding:10px 0px 10px 20px;
    margin-bottom:20px;
    margin-top:20px;
    border-radius: 20px;
    text-align: left;
}
.service-it .content2 .grid .item .point img{
    width:35px;
    height:35px;
    margin-right:10px;
    margin-left:0px;
}

.service-it .content3 .title{
    font-size: 30px;
    text-align: center;
    margin-top:30px;
    margin-bottom:30px;
}
.service-it .content3 .grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
}
.service-it .content3 .grid .item{
    border:1px solid #ddd;
    border-radius: 15px;
}
.service-it .content3 .item .first{
    font-size:26px;
    font-weight: bold;
    text-align: center;
}
.service-it .content3 .item .first img{
    height:55px;
    width:55px;
    margin-right:10px;
}



.service-it .content3 .item .first{
    border-bottom:1px solid #ddd;
}
.service-it .content3 .item .first,
.service-it .content3 .item .second,
.service-it .content3 .item .third{
    padding:15px 15px;
}



/* 1024px以上の幅の場合に適応される */
@media screen and (max-width: 1024px) {
    /* 1024px以下の幅の場合に適応される ipad air*/
    .service-it .content3 .grid{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 768px) {
    /* 768px以下の幅の場合に適応される ipad mini*/
}
@media screen and (max-width: 480px) {
    /* 480px以下の幅の場合に適応される Iphone */
    .service-it .content2 .grid {
        grid-template-columns: 1fr;
    }
    .service-it .content3 .grid{
        grid-template-columns: 1fr;
    }
}














@font-face {
    font-family: '装甲明朝';
    src: url("../css/SoukouMincho.8ea6a82277f6.ttf");
}

@font-face {
    font-family: '源暎ちくご明朝';
    src: url("../css/GenEiChikugoMin3-R.a35f31aeb1b3.ttf");
}

@font-face {
    font-family: '源暎ぽっぷる Black';
    src: url("../css/GenEiPOPle-Bk.bb84a7288cbe.ttf");
}

@font-face {
    font-family: '源暎アンチック v5';
    src: url("../css/GenEiAntiqueNv5-M.0010a0368bf5.ttf");
}

@font-face {
    font-family: 'ほのか新明朝 Light';
    src: url("../css/Honoka_Shin_Mincho_L.1acc602e45e0.otf");
}

@font-face {
    font-family: '02うつくし明朝体';
    src: url("../css/UtsukushiFONT.8be8e3090091.otf");
}

@font-face {
    font-family: '07やさしさゴシック';
    src: url("../css/07やさしさゴシック.83ece7199d4b.ttf");
}

@font-face {
    font-family: '赤薔薇シンデレラ';
    src: url("../css/akabara-cinderella.ec65a1febaa1.ttf");
}

@font-face {
    font-family: 'アームドレモン';
    src: url("../css/ArmedLemon.06cdb98363a3.TTF");
}

@font-face {
    font-family: '851テガキカクット';
    src: url("../css/ArmedLemon.06cdb98363a3.TTF");
}

@font-face {
    font-family: 'ほのか新アンティーク丸';
    src: url("../css/Honoka-Shin-Antique-Maru_R.068e4461a86a.otf");
}

@font-face {
    font-family: 'マメロン 3.5 Hi Regular';
    src: url("../css/Mamelon-3.5-Hi-Regular.c7db0639eadf.otf");
}

@font-face {
    font-family: '源柔ゴシック Medium';
    src: url("../css/GenJyuuGothic-Medium.05db42c21a3a.ttf");
}

@font-face {
    font-family: 'kawaii手書き文字';
    src: url("../css/KTEGAKI.d8eb39d954a1.ttf");
}

@font-face {
    font-family: 'いろはマル Medium';
    src: url("../css/irohamaru-Medium.bd31fd9bd935.ttf");
}

@font-face {
    font-family: 'タイムマシンわ号';
    src: url("../css/timemachine-wa.ad98c6c21c19.ttf");
}

@font-face {
    font-family: '黒薔薇ゴシック regular';
    src: url("../css/kurobara-gothic-regular.53c18290d4ea.ttf");
}

@font-face {
    font-family: 'ほのか新アンティーク角 Medium';
    src: url("../css/Honoka-Shin-Antique-Kaku_M.6fbd40766075.otf");
}

@font-face {
    font-family: '04かんじゅくゴシック';
    src: url("../css/かんじゅくゴシック.b3adf2f1842f.otf");
}

@font-face {
    font-family: 'フォントポにほんご';
    src: url("../css/FontopoNIHONGO.10ce123f75a5.otf");
}

@font-face {
    font-family: '自由の翼フォント';
    src: url("../css/JiyunoTsubasa.a5f100eade99.ttf");
}

@font-face {
    font-family: '超極細ゴシック';
    src: url("../css/chogokubosogothic_5.824a0c4e8bbe.ttf");
}

@font-face {
    font-family: 'せのびゴシック';
    src: url("../css/Senobi-Gothic-Regular.f97c14111191.ttf");
}

@font-face {
    font-family: 'さつき源代明朝';
    src: url("../css/SatsukiGendaiMincho-M.c340017cdbda.ttf");
}

@font-face {
    font-family: '棘丸ゴシック Regular';
    src: url("../css/TogeMaruGothic-400-Regular.d4cbe312ae2f.ttf");
}







/* シート */
.sheet {
    max-width: 1300px;
    padding:40px 10px 0px 10px;
    margin:auto;
    font-size:16px;
    /* font-family: '源暎ちくご明朝'; */
    /* font-family: sans-serif, serif; */
    /* font-family: "游明朝体", monospace; */
    /* font-family:fantasy; */
}
.sheet h2 {
    border-bottom:3px solid black;
    padding-bottom:5px;
}
.sheet .content {
    display: grid;
    grid-template-columns:1fr 5fr;
    margin-bottom:40px;
    border:1px solid black;
}

.sheet .content .title{
    display: flex;
    align-items: center;
    padding-right:15px;
    padding-left:15px;
    border-right:black solid 1px;
    border-bottom:1px solid black;
}



/* .sheet input[type="text"],
.sheet input[type="tel"],
.sheet input[type="email"]
.sheet input[type="url"]{
    height:30px;
}
.sheet label{
    width:100%;
} */

.sheet input{
    margin-right:5px;
}
.sheet label{
    margin:5px 0;
}

.sheet .block-item label,
.sheet .block-item input{
    width:100%;
}
/* .sheet .inline-item label,
.sheet .inline-item input[type="text"],
.sheet .inline-item input[type="url"], */
.sheet textarea{
    width:100%;
}


.sheet .content .item-wrapper .second-grid{
    display:grid;
    align-items: center;
    grid-template-columns: max-content 1fr;
    row-gap: 5px;
}
.sheet .content .item-wrapper .second-grid:not(:nth-child(1)){
    padding-top:10px;
    margin-top: 10px;
}

.sheet .content .inline-item {
    display:grid;
    grid-template-rows:repeat(8,max-content);
    grid-auto-flow: column;
    column-gap: 10px;
}
.sheet .content .item-wrapper .inline-item .select-color{
    display:flex;
    align-items: center;
}
.sheet .content .item-wrapper {
    border-bottom:1px solid black;
    padding:10px;
}
.sheet button{
    margin:auto;
    background-color: #2D2D2D;
    color:white;
    border:none;
    font-size: 18px;
    border-radius: 5px;
    padding:5px 30px;
}
.sheet button:hover{
    background-color: #404040;
}

/* 1024px以上の幅の場合に適応される */
@media screen and (max-width: 1024px) {
    /* 1024px以下の幅の場合に適応される ipad air*/
}
@media screen and (max-width: 768px) {
    /* 768px以下の幅の場合に適応される ipad mini*/
}
@media screen and (max-width: 480px) {
    /* 480px以下の幅の場合に適応される Iphone */
    .sheet .content {
        grid-template-columns:1fr;
        border:none;
    }
    .sheet .content .title{
        display: flex;
        align-items: center;
        margin-top:10px;
        font-size:20px;
        border:none;
        border-bottom:none;
        padding:0;
    }
    .sheet .content .inline-item {
        grid-template-rows:repeat(100,max-content);
        grid-template-columns: 1fr;
    }
    .sheet .content .item-wrapper {
        border-bottom:1px solid #ddd;
        padding-top:0px;
        padding-bottom:10px;
    }
    .sheet .content .item-wrapper .second-grid{
        grid-template-columns: 1fr;
    }
}




.sheet .form-block .item:first-child{
    display:inline-block;
}
.sheet .form-block button {
display:inline-block;
padding: 0px 10px;
border-radius: 4px;
background-color: rgba(0, 0, 0,0.72);
color: white;
}
.sheet .form-block .close-icon {
    cursor: pointer;
}
.sheet .form-block .item:nth-child(1) span{
    display: none;
    background-color: #00581B;
}
.sheet .form-block button:hover,
.sheet .form-block .close-icon:hover {
    opacity: .7;
}
.sheet .form-block button:active {
    opacity: .4;
}






.payment {
    max-width:1500px;
    margin:auto;
    padding:100px 10px 0px 10px;
}
.payment .grid {
    margin:auto;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 50px 10fr;
    justify-content: center;
    align-items: center;
    row-gap: 30px;
}












  
  






























  
nav .has-child{
    position:relative;
}
nav .has-child li{
    margin-bottom:10%;
}
nav li.has-child ul{
    /*絶対配置で位置を指定*/
    position: absolute;
    left:0;
    top:40px;
    /*形状を指定*/
    background:rgba(0, 0, 0, 0.72);
    width:150px;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all 0.3s;
    list-style: none;
    padding-left:20px;
}


/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul{
    visibility: visible;
    opacity: 1;
}

nav ul ul li a{
    border-bottom:1px solid #ccc;
}
nav ul ul {
    padding-top:10px;
    padding-bottom:10px;
}

/*==768px以下の形状*/
@media screen and (max-width:480px){
    nav .has-child{
        border-bottom:white 1px solid;
        margin-top:10%;
        margin-bottom:20%;
    }

    nav li.has-child ul,
    nav li.has-child ul ul{
    position: relative;
    left:0;
    top:0;
    width:100%;
    visibility:visible;/*JSで制御するため一旦表示*/
    opacity:1;/*JSで制御するため一旦表示*/
    display: none;/*JSのslidetoggleで表示させるため非表示に*/
    transition:none;/*JSで制御するためCSSのアニメーションを切る*/
    }

    /*矢印の位置と向き*/
    nav ul li.has-child::before{
    left:20px;  
    }
    nav ul ul li.has-child::before{
        transform: rotate(135deg);
    left:20px;
    }
    nav ul li.has-child.active::before{
        transform: rotate(-45deg);
    }
}
  
  