@charset "utf-8";

/* =========== 共通 =========== */

@font-face {
    font-family: "GOTHIC";
    src: url('../font/GOTHIC.TTF') format('truetype');
    font-weight: 400;
}

html {
    font-size: 10px;
    box-sizing: border-box;
}

body {
    font-family: "GOTHIC", Arial, sans-serif;
    font-size: 1.8rem;
    line-height: 1.8;
    color: #4B2B2B;
}

section {
    padding-top: 90px;
    padding-bottom: 90px;

}

h2,
h3 {
    text-align: center;
}

h2 {
    font-size: 4rem;
    padding-bottom: 90px;
}

h3 {
    font-size: 2.5rem;
    line-height: 2;
    background-color: #BEE2E0;
    margin: 5px;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

a {
    text-decoration: none;
    cursor: pointer;
}

img{
    vertical-align: bottom;
}
.wrap_h3 {
    padding: 5px 10px;
    background-color: #BEE2E0;

}

section .wrapper,
footer .wrapper {
    width: 100%;
    max-width: 1027px;
    margin: 0 auto;
}

.grid_container {
    display: grid;
}

@media screen and ( max-width:768px) {
    /* main{
        padding: 0 15px;
    } */
    .grid_container {
        display: block;
    }
    section {
        padding-top: 30px;
        padding-bottom: 30px;
    
    }
    h2 {
        font-size: 2.5rem;
        padding-bottom: 30px;
        font-weight: 700;
    }
    section .wrapper{
        width: 80%;
    }

    main figure{
        margin-top: 30px
    };
}




.flex_container {
    display: flex;
}

figure {
    /* margin: 0 !important;   */
    margin: 0;
}

.btn_area button {
    border: unset;
    width: 200px;
    height: 40px;
    font-family: "GOTHIC", Arial, sans-serif;
    text-align: center;
    font-size: 1.8rem;
    color: #4B2B2B;
    margin-bottom: 80px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .2));
}
