@charset "utf-8";
/**
 * 共通部品
 *
 * @format
 */

html {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 100px;
}

@media screen and (max-width:768px) {
    .wrapper {
        padding: 0 20px;
    }
}

/* ここから記述します。 */
/* ------------body-------------- */
body {
    margin: 0 auto;
}
/* ------------header-------------- */

.header {
    width: 100%;
    padding: 38px 0;
    color: #fff;
    background-color: #188888;
}

/* ------------レスポンシブ-------------- */
@media screen and (max-width:768px) {
    .header {
        padding: 16px;
    }
}

.header_inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ------------レスポンシブ-------------- */
@media screen and (max-width:768px) {
    .header_inner {
        flex-direction: column;
    }
}

.header_titile {
    font-size: 24px;
    font-weight: bold;
}

.header_nav_list {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
/* ------------/header-------------- */
/* ------------firstView-------------- */
.firstView {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    background: url(../image/FV.png)no-repeat center / cover;
}

.firstView_title {
    margin: 0;
    padding: 8px 32px;
    font-size: 40px;
    font-weight: bold;
    background-color: #fff;
}
/* ------------/firstView-------------- */
/* ------------section--コース-------------- */

.coure {
    padding: 80px 0;
}

/* ------------レスポンシブ-------------- */
@media screen and (max-width:768px) {
    .coure {
            padding: 64px 0;
        }
    }

.section_title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 4px;
}

.section_title_sub {
    text-align: center;
    margin-bottom: 64px;
    font-size: 18px;
}

/* ------------レスポンシブ-------------- */
@media screen and (max-width:768px) {
    .section_title_sub {
            margin-bottom: 40px;
        }
    }

.coure_Menu_container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* ------------レスポンシブ-------------- */
@media screen and (max-width:768px) {
.coure_Menu_container {
        flex-direction: column;
    }
}


.coure_Menu_box {
   background: #fff;
   filter: drop-shadow(0 4px 15px rgba(51,51,51,0.25)); 
}

.coure_Menu_img {
    width: 100%;
    height: auto;
}

.coure_Menu_textBox {
    padding: 24px;
}

.coure_Menu_title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.coure_Menu_text {
    font-size: 16px;
}
/* ------------/section--コース-------------- */
/* ------------section--news-------------- */
.news {
    background-color: #F1F8F8;
    padding: 80px 0;
}
.news_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 64px;
}

/* ------------レスポンシブ-------------- */
@media screen and (max-width:768px) {
    .news_list {
            gap: 32px;
        }
    }


.news_listBox {
    display: flex;
    background-color: #fff;
}

/* ------------レスポンシブ-------------- */
@media screen and (max-width:768px) {
    .news_listBox {
            flex-direction: column;
        }
    }

.news_dt {
    width: 22%;
    color: #fff;
    background-color: #188888;
    text-align: center;
    padding: 24px 0;
}

/* ------------レスポンシブ-------------- */
@media screen and (max-width:768px) {
    .news_dt {
        width: 100%;
        padding: 12px;
        }
    }

.news_dd {
    width: 78%;
    padding: 24px 50px 24px 24px;
    margin: 0;
}

/* ------------レスポンシブ-------------- */
@media screen and (max-width:768px) {
    .news_dd {
        width: 100%;
        padding: 12px;
        }
    }

.button {
    display: block;
    background-color: #EC8812;
    color: #fff;
    padding: 16px 64px;
    margin: 0 auto;
    font-size: 20px;
    cursor: pointer;
}
/* ------------/section--news-------------- */
/* ------------section--contact-------------- */
.contact {
    max-width: 640px;
    margin: 0 auto;
    padding: 80px 0;
}

/* ------------レスポンシブ-------------- */
@media screen and (max-width:768px) {
    .contact {
        padding:64px 30px;
        }
    }


.contact_form {
    display: flex;
    flex-direction: column;
}

label[for] {
    cursor: pointer;
}

.contact_label {
    margin-bottom: 12px;
}

.contact_input,.contact_textarea {
    border: solid 1px #c4c4c4;
    padding: 10px;
    margin-bottom: 32px;
    font-size: 16px;
}

.contact_textarea {
    min-height: 160px;
}

.contact_button {
    margin-top: 64px;
}
/* ------------/section--contact-------------- */
/* ------------footer------------- */
.footer {
    background: #188888;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 30px 0;
}
/* ------------/footer------------- */



/* ------------/body-------------- */
