    /*  */
    h1, h2, h3, div {
      color: #404040;
    }
    h4, h5, h6 {
      color: #353535;  
    }
    p, ul, li {
      color: #353535;
    }


    /* Edge対応 */
    img {
        pointer-events: none;
    }
    /* パンくずリストライン版　*/
    .breadcrumb {
        background-size: cover;
        /*background-color: #f1f2f2;*/
        padding: 10px 0 10px 60px;
        margin-top: 82px;
    }

    .breadcrumb-001 {
        display: flex;
        gap: 0 22px;
        list-style: none;
        padding: 0;
        font-size: .9em;
    }

    .breadcrumb-001 li {
        display: flex;
        align-items: center;
        font-size: 0.8rem;
    }

.breadcrumb-001 li:first-child::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 4px;
    background-repeat: no-repeat;
    content: '';
}

.breadcrumb-001 li:not(:last-child)::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    margin-left: 10px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    content: '';
}

.breadcrumb-001 a {
    color: #333333;
    text-decoration: none;
    position: relative;
}

.breadcrumb-001 a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #434343;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.breadcrumb-001 a:hover::after {
    transform: scaleX(1);
}
    @media only screen and (max-width: 750px) {
    .breadcrumb {
        padding: 10px 0 10px 10px;
        }
    }

    /* 画像アイコン　*/
    .titleimage {
        max-width: 80%;
        max-height: 50px;
        width: auto;
    }

    /* コンテンツ背景あり　*/
    .feature-service {
        background-color: #f1f2f2;
        padding:60px 0;
    }

    /* コンテンツ背景なし　*/
    .sub-service {
        background-color: #fff;
        padding:60px 0;
    }

/*--------------------------------------------
CONTENT
--------------------------------------------*/

    .newpage-content {
        background-position: left top 340px;
        padding: 60px 0 100px 0;
    }


    /********* sp *********/

    @media only screen and (max-width: 750px) {
        .newpage-content {
            background: none;
            padding: 40px 0 0 0;
        }
    }

/*-------------------
　　　　モーダル
----------------------*/
.gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thumbnail {
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
    width: 200px; /* サムネイルの幅を固定 */
    height: auto; /* 高さは自動調整 */
    object-fit: cover; /* アスペクト比を保ちつつコンテナにフィット */
    pointer-events: auto;
}

.thumbnail:hover {
    transform: scale(1.05);
}

/* モーダルウィンドウの基本スタイル */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden; /* visibility を使うと transition が効きやすい */
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 1000;
}

/* :target 疑似クラスで表示状態を制御 */
.modal:target {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 90%;
    max-height: 90%;
    display: flex; /* 画像を中央に配置するため */
    justify-content: center;
    align-items: center;
}

.modal-content img {
    max-width: 100%;
    max-height: calc(90vh - 40px); /* padding分を考慮 */
    display: block;
    border-radius: 3px;
}

/* モーダル背景クリックで閉じるためのリンク */
.modal-close-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* コンテンツより後ろに配置 */
}

/* 閉じるボタン */
.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2em;
    color: #333;
    text-decoration: none;
    line-height: 1;
}

.modal-close-btn:hover {
    color: #000;
}


/* メインタイトル */
/*    .top-title {
        padding: 30px 30px 0 ;
        font-size: 26px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .top-title img {
        height: 40px;
        max-width: 100px;
        object-fit: contain;
    }
    @media screen and (max-width: 750px) {
       .top-title {
            display: flex;
            font-weight: 600;
            font-size: 24px;
            margin-bottom: 8px;
            text-align: left;
            padding: 30px 20px 0 ;
            gap: 5px;
        }   
    }    
*/

/* メインタイトル */
    .top-title {
        font-size: 26px;
        font-weight: 600;
        display: flex;
/*        justify-content: center;*/
        margin: 20px auto 0;
        padding-top: 50px;
        max-width: 900px;
        gap: 10px;
    }
    .top-title h1 {
        font-size: 1.8rem;
        font-weight: 600;
    }    
    .top-title img {
        height: 40px;
        max-width: 60px;
        object-fit: contain;
        align-items: center;
    }
    @media screen and (max-width: 750px) {
       .top-title {
            font-weight: 600;
            margin-bottom: 8px;
            padding-left: 20px;
            padding-top: 10px;
            gap: 5px;
        }  
        .top-title h1 {
            font-size: 1.6rem;
            font-weight: 600;
        }          
        .top-title img {

        }
    }    



/* セクションタイトル */
    .section-title {
        text-align: center;
        padding: 30px 0;
    }
     .en {
       
    }
    .section-title h1 {
        font-family: 'Roboto', "Helvetica Neue", "Helvetica", "Hiragino Sans", sans-serif;
        color: #d23056;
        font-weight: 800;
        font-size: 30px;
        margin-bottom: 8px;
        line-height: 1;
    }
    .section-title span {
        /*font-family: "Yu Gothic", "Meiryo", sans-serif;*/
        display: block;
        color: #888;
        font-weight: bold;
        font-size: 16px;
        margin-bottom: 12px;
    }
    .section-title::after {
        display: block;
        width: 30px;
        height: 1px;
        background-color: #000;
        margin: 0 auto;
    }

/* コンテンツA */
    .main-a {
      background: #fff;
      background-size: cover;
      display: block;
      padding: 2rem 1rem;
    }
    .main-a h2 {
        color: #000;
        font-weight: 600;
        font-size: 40px;
        margin-top: 30px;
        margin-bottom: 60px;
        text-align: center;
    }
    .undermark {
        background:linear-gradient(transparent 70%, #ffd0db 70%);
    }    
    .main-a h3 {
        font-weight: 600;
        font-size: 20px;
        text-align: center;
        margin: 20px 0;    
    }
    @media screen and (max-width: 750px) {
        .main-a h2 {
            font-weight: 600;
            font-size: 24px;
            margin-bottom: 8px;
            text-align: left;
        }   
        .main-a h3 {
            font-weight: 600;
            font-size: 18px;
            text-align: center;
        }
    }
/* コンテンツA --end */

/* コンテンツB */
    .main-b {
        background: #f5f5f5;
        background-size: cover;
        display: block;
        padding: 2rem 1rem 4rem;
    }
    .main-b h2 {
        font-size: 24px;
        margin-bottom: 40px;
        text-align: center;
        font-weight: 600;
    }
/*    .main-b h2 span {
        color: #d23056;
    }*/
    /*---- h2のPC改行・スマホ一行の設定 ----*/
    /* デフォルト：スマホ（1行表示） */
    .br-pc {
      display: inline;
    }

    /* PCでは改行（= ブロック要素に） */
    @media (min-width: 768px) {
      .br-pc {
        display: block;
      }
    }

    @media screen and (max-width: 750px) {
        .main-b h2 {
            font-weight: 600;
            font-size: 24px;
            margin-bottom: 8px;
            text-align: center;
        } 
    }
    .main-b p {
        color: #454545;
        text-align: center;
        font-size: 1.1rem;
    }

/* コンテンツC */
    .main-c {
        /*background: #d23056;*/
        background:transparent linear-gradient(0deg, #d23056de 0%, #d23056 100%);/*#d23056de*/
        background-size: cover;
        display: block;
        padding: 4rem 1rem;
    }
    .main-c h2 {
        font-size: 28px;
        margin-bottom: 25px;
        text-align: center;
        font-weight: 600;
        color: #fff;
    }
    .main-c h2 span {
        color: #fff;
    }

    @media screen and (max-width: 750px) {
        .main-c h2 {
            font-weight: 600;
            font-size: 24px;
            margin-bottom: 20px;
            text-align: center;
        }   
    }
    .main-c p {
        color: #fff;
        text-align: center;
        margin-bottom: 20px;
    }



/*****************/
/*    about      */
/*****************/
    .about {
        display: block;
        align-items: center;
        margin: 50px auto;
        justify-content: center; /* 中央揃え */
        max-width: 800px;
    }
    .main_text {
        justify-content: center; /* 中央揃え */
        align-items: center;
        font-size: 16px;
        line-height: 1.8;
        max-width: 800px;
        height: auto;
        padding-left: 10px;
        padding-bottom: 30px;
    }
    .main_text p {
        color: #454545;
        font-size: 1.1rem;
    }
    .main_text span {
        font-weight: 600;
    }

    @media screen and (max-width: 750px) {
        .main_text p {
            text-align: left;
            line-height: 1.6;
        }
    }


    .gallery_about {
/*        gap: 15px;*/
        flex-wrap: wrap;
        text-align: center;
    }
    .gallery_about img {
        height: auto;
        padding: 10px 5px;
        width: 700px;
    }

    .balloon-001 {
        display: flex;
        justify-content: center;
        position: relative;
        max-width: 400px;
        padding: .4em 1em 1em;
        border-radius: 5px;
        background-color: #f2f2f2;
        color: #333333;
        margin: 40px auto;    
        margin-bottom: 25px;
        font-size: 20px;
        font-weight: 600;
        align-items: end;
    }
    @media screen and (max-width: 750px) {
    .balloon-001 {
        margin: 10px auto 40px;          
       }
    }

    .balloon-001::before {
        position: absolute;
        bottom: -15px;
        width: 30px;
        height: 15px;
        background-color: #f2f2f2;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        content: '';
    }
    .balloon-001 span {
        background: linear-gradient(transparent 60%, #2589d040 0%);
        color: #d23056;
        font-size: 30px;
    }
    @media screen and (max-width: 750px) {
        .about {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
            padding: 0 20px;
        }

        .left-text, .about img {
            flex: none;
            max-width: 100%;
            width: 100%;
        }

        .left-text {
            font-size: 15px;
            line-height: 1.6;
        }
        .balloon-001 span {
            font-size: 25px;
        }
    }
/* About --end */


/*****************/
/*    お悩み      */
/*****************/
    /* お悩みA */
    .problem-box-a {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 800px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .problem-item-a {
        background: #fff;
        border-radius: 10px;
        padding: 20px 30px;
        flex: 1;
        max-width: 300px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .plobrem-a h2{
        font-size: 24px;
        margin: 20px 0 20px;
        text-align: center;
        font-weight: 600;
    }
    .plobrem-a h2 span {
        color: #d23056;
    }
    .problem-item-a img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
        padding: 20px;
    }
    .problem-item-a p {
        font-size: 15px;
        color: #333;
        line-height: 1.6;
        font-weight: 500;
        text-align: left;
    }

    /* お悩みB */
    .problem-box-b {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 800px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .problem-item-b {
        background: #EAF6FF;
        border-radius: 10px;
        padding: 20px 30px;
        flex: 1;
        max-width: 300px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .plobrem-b h2{
        font-size: 24px;
        margin: 40px 0 20px;
        text-align: center;
        font-weight: 600;
    }
    .plobrem-b h2 span {
        color: #0E6EB8;
    }
    .problem-item-b img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
        padding: 20px;
    }
    .problem-item-b p {
        font-size: 15px;
        color: #333;
        line-height: 1.6;
        font-weight: 500;
        text-align: left;
    }
    /* お悩みレスポンシブ */
    @media screen and (max-width: 750px) {
        .problem-box-a {
            flex-direction: column;
            align-items: center;
        }
        .problem-item-a {
            max-width: 90%;
        }
        .problem-box-b {
            flex-direction: column;
            align-items: center;
        }
        .problem-item-b {
            max-width: 90%;
        }
    }





/* コンテンツZ */
    .main-z {
      font-family: "Hiragino Kaku Gothic ProN", sans-serif;
      background: #f5f5f5;
      margin: 0;
      padding: 20px;
    }
    .main-z h2 {
      text-align: center;
      font-size: 28px;
      color: #d23056;
      margin-bottom: 5px;
      font-weight: 600;
    }

    .main-z p.sub {
      text-align: center;
      color: #888;
      margin-bottom: 30px;
    }

    .problem-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .problem-block {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      flex: 1 1 45%;
      min-width: 320px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .problem-block h3 {
      font-size: 20px;
      margin-bottom: 15px;
      border-left: 5px solid #d23056;
      padding-left: 10px;
      color: #333;
    }

    .problem-list {
      display: flex;
      flex-direction: column;
    }

    .problem-item {
      display: flex;
      align-items: center;
      background: #fafafa;
      padding: 10px;
      border-radius: 8px;
    }

    .problem-item img {
      width: 60px;
      height: auto;
    }

    .problem-item p {
      margin: 0;
      font-size: 14px;
      color: #333;
    }

    @media screen and (max-width: 750px) {
        .problem-item {
            flex-direction: row;
            align-items: flex-start;
        }
        .problem-item img {
            width: 50px;
        }
    }

/*****************/
/*  ソリューション    */
/*****************/
    .solution-image-text {
        display: flex;
        align-items: center;
        gap: 2rem;
        margin: 70px auto;
        justify-content: center;
        max-width: 900px;
    }
    .solution-image-text img {
        max-width: 400px;
        height: auto;
        flex: 1; /* 1:1配置のため */
        /*box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);*/
    }
    .solution-image-text-right {
        display: flex;
        align-items: center;
        gap: 2rem;
        margin: 70px auto;
        justify-content: center; 
        max-width: 900px;
    }
    .solution-image-text-right img {
        max-width: 400px;
        height: auto;
        flex: 1; /* 1:1配置のため */
        /*box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);*/
    }
    .solution-text {
        font-size: 16px;
        line-height: 1.8;
        max-width: 400px;
        height: auto;
        flex: 1; /* 1:1配置のため */
    }
    .solution-text h3 {
        font-size: 26px;
        color: #454545;
        font-weight: 600;
        margin-bottom: 10px;
        margin-top: -30px;
        text-align: left;
    }
    .solution-text p{
        font-size: 16px;
        color: #454545;
    }
    .number {
        color: rgb(0 0 0 / 8%);
        display: inline-block;
        font-weight: 600;
        font-size: 80px;
    }
    @media screen and (max-width: 750px) {
        .solution-image-text {
            display: block;
            padding: 22px;
        }
        .solution-image-text-right {
            flex-direction: column-reverse;
            padding: 22px;

        }
    }

/*****************/
/*  User         */
/*****************/
/*強調*/
.impact-a {
    text-align: center;
    margin: 20px 0 40px;
}
.impact-a h2 {
    font-size: 30px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
    .impact-a h2 {
        font-size: 24px;
    }
}

.impact-a h2 .br-pc {
      display: inline;
    }

    @media (min-width: 768px) {
      .impact-a h2 .br-pc {
        display: block;
      }
    }

.impact-a p {
    font-size: 26px;
    color: #0E6EB8;
    font-weight: 500;
    margin-bottom: 50px;
}
.impact-a p span{
    font-family: 'Tahoma','Verdana','Arial','Futura','Helvetica',sans-serif;
    font-size: 70px;
    font-weight: 600;
}
@media screen and (max-width: 750px) {
    .impact-a p span{
        font-size: 60px;
    }
}

/* QAlist  */
.qa-list {
    padding: 20px 0 30px;
    width: 300px;
    margin: 0 auto;
}


/*graph*/
.pie-chart-1 {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    padding: 30px 0;
    border-radius: 50%;
    background-image: conic-gradient(#2589d0 93%, #cccccc 93% 100%);
}

.pie-chart-1 span {
    position: absolute;
    top: 70%;
    right: 50%;
    transform: translate(50%, -50%);
    color: #fff;
    font-weight: 600;
    font-size: 1.3em;
}

.pie-chart-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    background-image: radial-gradient(#fff 55%, transparent 55%), conic-gradient(#2589d0 93%, #f2f2f2 93% 100%);
    font-weight: 600;
    font-size: 28px;
    color: #454545;
    text-align: center;
}


/*****************/
/*  Voice    */
/*****************/
/* comment */
/*.comment {
    padding: 20px;
    margin: 0 auto;
    max-width: 650px;
    text-align: left; 
}
.comment p {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    padding-left: 20px;
}
.comment ul {
    list-style-type: disc ; 
    padding-left: 1.5em;     
}
.comment-list ul li {
    font-size: 14px;
    margin-bottom: 0.5em;
}


*/
.comment {
    list-style-type: none;
    text-align: left; 
    margin: 0 auto;    
    max-width: 800px;
}
.comment p {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
}
.comment ul {
    padding-left: 20px;
    padding: 20px;
    background-color: #EAF6FF;
    border-radius: 10px;
}
.comment li {
    display: flex;
    align-items: flex-start;
    gap: 0 10px;
    padding: .3em;
}

.comment li::before {
    display: inline-block;
    width: 10px;
    height: 5px;
    margin-top: 10px; /* 上方向に少し下げて1行目と揃える */
    border-bottom: 2px solid #2589d0;
    border-left: 2px solid #2589d0;
    transform: rotate(-45deg) translateY(-1.5px);
    content: '';
    flex-shrink: 0; /* 幅が縮まないように固定 */
}
/* 2カラム  */
.comment-2 {
    display: flex;
    list-style-type: none;
    text-align: left; 
    margin: 0 auto;    
    max-width: 650px;
    padding: 20px 0;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    justify-content: center;
}
.comment-2 p {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
}
.comment-2 ul {
    padding: 20px;
    padding-left: 30px;
    background-color: #EAF6FF;
    border-radius: 10px;
    max-width: 500px;
}
.comment-2 li {
    display: flex;
    align-items: flex-start;
    gap: 0 10px;
    padding: .3em;
    font-size: 1rem;
}

.comment-2 li::before {
    display: inline-block;
    width: 10px;
    height: 5px;
    margin-top: 10px; /* 上方向に少し下げて1行目と揃える */
    border-bottom: 4px solid #2589d0;
    border-left: 4px solid #2589d0;
    transform: rotate(-45deg) translateY(-1.5px);
    content: '';
    flex-shrink: 0; /* 幅が縮まないように固定 */
}
.comment-2 img {
    max-width: 300px;
    padding: 20px;
}
@media (max-width: 650px) {
    .comment-2 {
        display: block;
    }
}
/* 運用会社様の声 */
.voice-2 {
    max-width: 800px;
    padding: 20px 0;
    margin: 80px auto;
    text-align: center;
    background-color: #FFF3F6;
    border-radius: 10px;
}
.voice-2 h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0;
}
.voice-2 h3 {
    font-size: 30px;
    font-weight: 600;
    color: #d23056;    
    margin: 10px 0;
}
.comment-3 {
    display: flex;
    align-items: center;
    justify-items: center;  
    gap: 1rem;  
    padding: 20px 0;
}
.comment-3 img {
    max-width: 300px;
    padding: 20px 20px 20px 40px;
}
.comment-3 span {
    padding: 20px;
    max-width: 430px;
    border-radius: 10px;
}
.comment-3 p {
    font-size: 16px;
    text-align: left;
}
@media (max-width: 650px) {
    .voice-2 {
        max-width: 400px;
        padding: 10px;
        padding-top: 20px;
    }
    .comment-3 {
       display: block;
       padding: 20px;
    }
    .comment-3 img {
        padding: 20px;
    }
    .comment-3 span {
        max-width: 300px;
        padding: 10px;
    }

}
/*********/
/*　Flow */
/*********/

.flow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  font-family: 'Noto Sans JP',sans-serif;
}

.flow-step {
  text-align: center;
  width: 100px;
}

.flow-step p {
  font-weight:600;
}

.flow-step img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}
.arrow2 {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  color: #d23056;
}
.arrow {
  font-size: 24px;
  color: #0073c6; /* 青い矢印 */
}
 @media (max-width: 600px) {
     .flow-step {
        display: flex;
        flex-direction: column;
        align-items: center;
     }
      .flow-step img {
        width: 40px;
        height: 40px;
      }
      .flow-step p {
      }
      .flow-container {
        gap: 10px;
      }
      .flow-text{
        text-align: left;
      }

      .arrow2 {
        width: 1.2em;
        height: 0.6em;
/*        transform: rotate(90deg);
*/      }
    }
/*************/
/*　Function */
/*************/

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    .feature-box {
      background-color: #f9f9f9;
      border-radius: 3px;
      min-height: 140px;
      height: 180px;
    }

    .feature-box h3 {
      background-color: #ecebeb;
      justify-content: center;
      align-items: center;
      color: #232323;
      padding: .5em 0;
      font-size: 18px;
      margin: 0 0 10px;
    }

    .feature-box p {
      font-size: 16px;
      line-height: 1.8;
      margin: 0;
      padding: 10px 20px 20px;
    }

    .note {
      text-align: right;
      max-width: 800px;
      margin: 0 auto;
      font-size: 1px;
      color: #555;
    }

    .note span {
      display: block;
      font-size: 12px;
      color: #999;
    }

    @media (max-width: 750px) {
      .feature-grid {
        grid-template-columns: 1fr;
      }
    }


/*test*/

    .card-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 900px;
      margin: 30px auto;
    }
    .card {
      background-color: #f2f2f2;
      border-radius: 20px;
      color: white;
      padding: 30px 20px;
      flex: 1 1 300px;
      max-width: 250px;
      box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
    @media (max-width: 750px) {
        .card {
            flex: 1 1 250px;
        }
    }    
    .card h3 {
      font-size: 20px;
      margin-bottom: 20px;
    }
    .card img {
      width: 50px;
      height: 50px;
      margin-bottom: 20px;
    }
    .card p {
      font-size: 16px;
      line-height: 1.5;
      text-align: left;
    }
    @media (max-width: 750px) {
      .card-container {
        flex-direction: column;
        align-items: center;
      }

      .card {
        width: 90%;
        max-width: none;
      }
    }


/*************/
/*お問い合わせ */
/*************/
/*.button-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    border: 1px solid #ffffff;
    border-radius: 5px;
    background-color: #fff;
    color: #393d3e;
    font-size: 18px;
    font-weight: 600;
}
*/
/*お問い合わせ*/

/*右と左の斜め線*/
.contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 20px 10px;
  font-weight: bold;
  font-size: 16px;
  margin: 0 auto;
}
.contact-box .line {
  width: 40px;
  height: 1px;
  border-top: 2px solid white;
  transform: rotate(30deg);
}
.contact-box .line.left {
  margin-right: 10px;
  transform: rotate(56deg);
}
.contact-box .line.right {
  margin-left: 10px;
  transform: rotate(123deg);
}
.contact-box p {
   margin-bottom: 0; 
}
@media (max-width: 750px) {
    .contact-box p {
        font-size: 102%; 
    }
    .contact-box .line {
      width: 150px;
      height: 1px;
      border-top: 2px solid white;
      transform: rotate(30deg);
    }
}

/*ボタン*/
.cta-button {
  position: relative;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #d11b0b;
  text-align: center;
  max-width: 300px;
  background: #fff;
  margin: auto;
  border-radius: 8px;
  transition: 0.3s;
}
@media screen and (max-width: 425px) {
  .cta-button {
    font-size: 1.6rem;
  }
}
.cta-button a {
  display: block;
  padding: 25px 0;
  position: relative;
  z-index: 2;
    background-color: transparent;
    text-decoration: none;
    color: #d23056;
    font-size: 18px;
}
.cta-button:before {
  content: "";
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 2px solid #d23056;
  border-radius: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
}
.cta-button:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #d23056;
  border-right: 2px solid #d23056;
  transform: rotate(45deg);
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 425px) {
  .cta-button:after {
    width: 8px;
    height: 8px;
    right: 15px;
  }
}
.cta-button:hover {
    opacity: 0.7;

}
.cta-button:hover:before {
    border: 2px solid transparent;
}



