/*共通CSSここから*/
:root {
    --mainColor: #967b2e;
    --subColor: #f7f7f7;
    --accentColor: #000;
}

body {
    scroll-behavior: smooth;
}

main * {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

main p,
main ul li {
    font-size: 16px;
}

main a {
    transition: .4s all;
}

main img {
    width: 100%;
}


main .section_inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    box-sizing: border-box;
}

main .pc_none {
    display: none;
}

@media screen and (max-width:1024px) {
    main .section_inner {
        padding: 0 2%;
    }
}


@media screen and (max-width:768px) {
    main .pc_none {
        display: block;
    }

    main .sp_none {
        display: none;
    }
}


/*導線ボタンここから*/
main .link_btn,
main .inner_btn {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    box-sizing: border-box;
}

main .inner_btn {
    margin-bottom: 60px;
}

main .link_btn a,
main .inner_btn a {
    display: block;
    padding: 15px 0;
    background: var(--accentColor);
    font-size: 16px;
    color: #fff;
    transition: .4s all;
    border: 1px solid var(--accentColor);
    text-align: center;
    text-decoration: none;
}

main .inner_btn a {
    position: relative;
    background: #fff;
    color: var(--accentColor);
}

main .inner_btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(calc(-50% - 3px)) rotate(135deg);
    width: 8px;
    height: 8px;
    border: 1px solid var(--accentColor);
    border-width: 1px 1px 0 0;
    transition: .4s all;
}

@media screen and (min-width:1025px) {
    main .link_btn a:hover {
        background: #fff;
        color: var(--accentColor);
    }

    main .inner_btn a:hover::after {
        content: "";
        transform: translateY(calc(-50% + 2px)) rotate(135deg);
    }
}

@media screen and (max-width:1024px) {
    main .inner_btn {
        margin-bottom: 6%;
    }
}


/*h2＆サブテキストレイアウトここから*/
main .t_h2 {
    position: relative;
    margin-bottom: 30px;
    padding: 50px 0;
    text-align: center;
    font-size: 23px;
    color: var(--mainColor);
    font-weight: bold;
}

main .t_h2::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 100%;
    z-index: -1;
}

main .section002 .t_h2:first-of-type::after {
    background: url(https://www.gmt-j.com/html/itaku2023/img/sp/hatena.png) no-repeat center center / contain;
}

main .section002 .t_h2:last-of-type::after {
    width: 104px;
    background: url(https://www.gmt-j.com/html/itaku2023/img/sp/seal.png) no-repeat center center / contain;
}

main .section003 .t_h2::after {
    width: 100px;
    background: url(https://www.gmt-j.com/html/itaku2023/img/sp/yen.png) no-repeat center center / contain;
}

main .section004 .t_h2::after {
    width: 160px;
    background: url(https://www.gmt-j.com/html/itaku2023/img/sp/laptop.png) no-repeat center center / contain;
}

main .section005 .t_h2::after {
    width: 120px;
    background: url(https://www.gmt-j.com/html/itaku2023/img/sp/coin.png) no-repeat center center / contain;
}

main .t_p {
    margin-bottom: 60px;
    font-size: 16px;
    text-align: center;
    line-height: 2;
}

@media screen and (max-width:1024px) {
    main .t_h2 {
        margin-bottom: 3%;
    }

    main .t_p {
        margin-bottom: 6%;
    }
}

@media screen and (max-width:768px) {
    main .t_h2 {
        margin-bottom: 6%;
        padding: 25px 0;
    }

    main .t_p {
        text-align: left;
    }
}

/*section001*/
main .section001 {
    margin-bottom: 40px;
}

main .section001 h2 {
    margin-bottom: 30px;
}

main .section001 p {
    margin-bottom: 20px;
}

@media screen and (max-width:1024px) {
    main .section001 {
        margin-bottom: 4%;
    }

    main .section001 h2 {
        margin-bottom: 3%;
    }

    main .section001 p {
        margin-bottom: 2%;
    }
}

@media screen and (max-width:768px) {
    main .section001 {
        margin-bottom: 8%;
    }

    main .section001 p {
        margin-bottom: 4%;
    }
}


/*section002*/
main .section002 {
    margin-bottom: 80px;
}

main .section002 .section002_cnt {
    margin-bottom: 20px;
    padding: 30px 20px 40px;
    background: var(--subColor);
}

main .section002>div>div:nth-of-type(5) {
    margin-bottom: 60px;
}


main .section002 .section002_cnt h3 {
    padding: 10px 0 20px;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid var(--mainColor);
}

main .section002 .section002_cnt h3 span {
    position: relative;
}

main .section002 .section002_cnt h3 span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 40px;
    height: 60px;
    background: url(https://www.gmt-j.com/html/gmt/html/itaku2023/img/sp/seal.png) no-repeat center center / contain;
}

main .section002 .section002_cnt p {
    padding: 20px 0 0;
    font-size: 16px;
}

@media screen and (max-width:1024px) {
    main .section002 {
        margin-bottom: 8%;
    }

    main .section002 .section002_cnt {
        margin-bottom: 2%;
        padding: 3% 2% 4%;
    }

    main .section002>div>div:nth-of-type(5) {
        margin-bottom: 6%;
    }

    main .section002 .section002_cnt h3 {
        padding: 1% 0 2%;
    }

    main .section002 .section002_cnt p {
        padding: 2% 0 0;
    }
}

@media screen and (max-width:768px) {
    main .section002 .section002_cnt h3 {
        font-size: 18px;
    }

    main .section002 .section002_cnt h3 span::before {
        display: none;
    }

    main .section002 {
        margin-bottom: 12%;
    }

    main .section002 .section002_cnt {
        position: relative;
        margin-bottom: 4%;
        padding: 6% 4% 8%;
    }

    main .section002 .section002_cnt::before {
        content: "";
        position: absolute;
        top: 20px;
        left: 0;
        transform: translateY(-50%);
        width: 50px;
        height: 70px;
        background: url(https://www.gmt-j.com/html/gmt/html/itaku2023/img/sp/seal.png) no-repeat center center / contain;
        z-index: 10;
    }

    main .section002>div>div:nth-of-type(5) {
        margin-bottom: 10%;
    }

    main .section002 .section002_cnt h3 {
        padding: 2% 0 4%;
    }

    main .section002 .section002_cnt p {
        padding: 4% 0 0;
    }
}

/*section003*/
main .section003 {
    margin-bottom: 80px;
}

main .section003 table {
    border-collapse: collapse;
    width: 100%;
}

main .section003 table:first-of-type {
    margin-bottom: 40px;
}

main .section003 table caption {
    margin-bottom: 30px;
    font-size: 20px;
    text-align: center;
    color: var(--accentColor);
    font-weight: bold;
}

main .section003 thead tr {
    font-size: 22px;
    background: var(--subColor);
    text-align: center;
    font-weight: bold;
}

main .section003 th {
    padding: 10px;
    width: 50%;
    border: 1px solid #000;
}

main .section003 td {
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #000;
}

@media screen and (max-width:1024px) {
    main .section003 {
        margin-bottom: 8%;
    }

    main .section003 table:first-of-type {
        margin-bottom: 4%;
    }

    main .section003 table caption {
        margin-bottom: 3%;
    }
}

@media screen and (max-width:768px) {
    main .section003 {
        margin-bottom: 12%;
    }

    main .section003 table:first-of-type {
        margin-bottom: 8%;
    }

    main .section003 table caption {
        margin-bottom: 6%;
    }
}


/*section004*/
main .section004 {
    margin-bottom: 80px;
}

main .section004 .section004_cnt {
    margin-bottom: 50px;
}


main .section004 .section004_cnt h3 {
    margin-bottom: 20px;
}

main .section004 .section004_cnt h3 img {
    width: auto;
    max-width: 100%;
    height: 50px;
}

main .section004 .section004_cnt h3 p {
    font-size: 16px;
}

main .section004 .section004_cnt:first-of-type h3+p {
    margin-bottom: 40px;
}

main .section004 .section004_cnt h3+p+ul {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 40px;
    padding: 20px 35px;
    background: var(--subColor);
    box-sizing: border-box;
}

main .section004 .section004_cnt h3+p+ul+a {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 15px;
    color: #000;
}

main .section004 .section004_cnt h3+p+ul+a+p {
    margin-bottom: 40px;
}

@media screen and (max-width:1024px) {
    main .section004 {
        margin-bottom: 8%;
    }

    main .section004 .section004_cnt {
        margin-bottom: 5%;
    }


    main .section004 .section004_cnt h3 {
        margin-bottom: 2%;
    }

    main .section004 .section004_cnt:first-of-type h3+p {
        margin-bottom: 4%;
    }

    main .section004 .section004_cnt h3+p+ul {
        margin: 0 auto 4%;
        padding: 2% 4%;
    }

    main .section004 .section004_cnt h3+p+ul+a {
        margin-bottom: 2%;
    }

    main .section004 .section004_cnt h3+p+ul+a+p {
        margin-bottom: 4%;
    }
}

@media screen and (max-width:768px) {
    main .section004 {
        margin-bottom: 12%;
    }

    main .section004 .section004_cnt {
        margin-bottom: 10%;
    }


    main .section004 .section004_cnt h3 {
        margin-bottom: 4%;
    }

    main .section004 .section004_cnt:first-of-type h3+p {
        margin-bottom: 8%;
    }

    main .section004 .section004_cnt h3+p+ul {
        margin: 0 auto 8%;
        padding: 4% 8%;
    }

    main .section004 .section004_cnt h3+p+ul+a {
        margin-bottom: 4%;
    }

    main .section004 .section004_cnt h3+p+ul+a+p {
        margin-bottom: 8%;
    }
}

/*section005*/
main .section005 .section005_cnt {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    max-width: 550px;
    margin: 0 auto 40px;
}

main .section005 .section005_cnt .cnt_img {
    width: 48%;
    max-width: 243px;
    margin-right: 8%;
}

main .section005 .section005_cnt .cnt_txt {
    width: 48%;
    text-align: center;
}

main .section005 .section005_cnt .cnt_txt span {
    display: block;
    font-size: 18px;
}

main .section005 .section005_cnt .cnt_txt span:nth-of-type(2) {
    font-size: 28px;
    font-weight: bold;
}

main .section005 .section005_cnt .cnt_txt span:last-of-type {
    font-size: 16px;
}

main .section005 .link_btn {
    margin-bottom: 40px;
}

main .section005 ul {
    padding: 20px 35px;
    background: var(--subColor);
}

main .section005 ul a {
    color: #000;
}

@media screen and (max-width:1024px) {
    main .section005 .section005_cnt {
        margin: 0 auto 4%;
    }

    main .section005 .link_btn {
        margin-bottom: 4%;
    }

    main .section005 ul {
        padding: 2% 4%;
    }
}

@media screen and (max-width:768px) {
    main .section005 .section005_cnt {
        display: block;
        margin: 0 auto 8%;
    }

    main .section005 .section005_cnt .cnt_img{
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    main .section005 .section005_cnt .cnt_txt{
        width: 100%;
    }

    main .section005 .link_btn {
        margin-bottom: 8%;
    }

    main .section005 ul {
        padding: 2% 4%;
    }
}