@charset "UTF-8";
body{
    background: #FFFDE8;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.6;
    color: #414141;
}

body a {
    color: #414141;
    text-decoration: none;
  }

img{
    display: block;
    max-width: 100%;
    border-style: none;
}

/* main */
.inner{
    max-width: 1000px;
    width: 90%;
    margin-inline:auto;
}
h2{
    margin-top: 3em;
    color: #1DBFFF;
    font-size: 48px;
    text-align: center;
    padding-bottom: 50px;
    margin-bottom: 80px;
    background: url(../images/bg_ttl_02.png) center bottom no-repeat;
    background-size: 20px;
}
section{
    margin: 100px 0;
}
.method_cmn_ttl{
    text-align: center;
    color: #FF7A21;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 50px;
    /*margin-bottom: 40px;
    background: url(../images/bg_ttl.png) center bottom no-repeat;*/
    background-size: 20px;
     word-break: keep-all;
     overflow-wrap: break-word;
}
.credit_link a{
    text-decoration: underline;
    color: #371dff;
}

.center{
    text-align: center;
}

.method{
    display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 4%;
        row-gap: 40px;
        margin-top: 60px;
        margin-inline:auto;
        width: 100%;
        padding: 0;
        counter-reset: number 0;
}
.method_card{
    background-color: #fff;
    padding: 30px;
    border-radius:16px;
    list-style: none;
}
.method_card .num{
    color: #FF7A21;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    padding-bottom: 6px;
    margin-bottom: 35px;
    border-bottom: 1px solid #ff7a21;
}
.method_card .num::after{
    font-size: 1.5em;
    font-style: normal;
    padding-left: 0.2em;
    counter-increment: number 1;      /* number カウンタの増加数をセット */
  content: "" counter(number, decimal-leading-zero);
}
.method_card .txt{
    margin-bottom: 10px;
}
.method_card .red{
    color: #dc2300;
}
.method_card .sml{
    font-size: 14px;
}
.method_card img{
    width: 70%;
    margin: 25px auto;
    border: 0.5px solid #ececec;
}
.method_card .box{
    border: 1px solid #1DBFFF;
    margin: 5%;
}
.method_card .box p{
    margin: 0 0 3px;
    color: #fff;
    display: inline-block;
    padding: 2px 10px;
    background-color: #1DBFFF;
}
.method_card .box ul{
    padding: 10px 2em 20px;
}
.method_card .box ul li{
    list-style-type: disc;
}

.credit_f_link{
    margin-top: 100px;
}
.credit_f_link h3{
    padding-bottom: 30px;
}

@media screen and (max-width:767px) {
    .inner{
        width: 95%;
    }
    h2{
        font-size: 28px;
    }
    .method_cmn_ttl{
        font-size: clamp(1rem, 0.6421rem + 1.7897vw, 1.5rem);
    }
    .method{
        grid-template-columns: 1fr;
        width: 80%;
    }
    .method_card{
        padding: 8%;
    }
}

@media screen and (max-width:599px) {
    .method{
        width: 100%;
    }
}

