﻿@charset "UTF-8";

/* --------------------
      image_area
-------------------- */

.image_area {   
    margin: 218px auto 75px; 
    padding: 0 20px; 
}

.image_container {
    max-width: 1700px;
    height: 334px;
    border-radius: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;   
    background-image: url(../img/outline/mainimg_outline.jpg);
    position: relative;
}

.image_container .image_box {
    width: 100%;
    height: 334px;
    border-radius: 30px;   
    mix-blend-mode: multiply;
    background-color: #D5D5D6;
    opacity: 0.8;
}

.page_title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.page_title img {
    width: 47px;
    margin-right: 20px;
}
.page_title h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #01214B;
}
.page_title h2 .sub_en {
    font-size: 1.4rem;
    color: #B3DDF2;
    display: block;
}

@media screen and (max-width: 1180px) {
    .image_area {
        margin-top: 80px;
    }
    .image_container {
        height: 240px;
    }
    .image_container .image_box {
        height: 240px;
    }
}
@media screen and (max-width: 760px) {
    .image_area {
        margin-bottom: 50px;
    }
    .image_container {
        height: 180px;
    }
    .image_container .image_box {
        height: 180px;
    }

    .page_title h2  {
        font-size: 2.4rem;
    }
    
    .page_title h2 .sub_en {
        font-size: 1.4rem;
    }
    .page_title img {
        width: 36px;
    }
}

/* --------------------
      outline_area
-------------------- */
#outline_area {
    margin-bottom: 200px;
}

.outline_table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.outline_table dt {
    max-width: 200px;
    width: 16%;
    height: 62px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #01214B;    
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D4E4F2;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;

}
.outline_table dd {
    max-width: 1000px;
    width: 82%;
    height: 62px;
    text-align: left;
    font-size: 1.6rem;
    color: #01214B;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 24px;
    background-color: #EAEAEA;
    border-bottom: 3px solid #fff;
}

@media screen and (max-width: 760px) {
    .outline_table {
        flex-direction: column;
    }
    .outline_table dt {
        max-width: 800px;
        width: 100%;
        border-right: none;
    }
    .outline_table dd {
        width: 100%;
        margin-bottom: 10px;
    }
}