@charset 'utf-8';

.vision_list {
    padding-bottom: 60px;
}

.vision_list ol {
    display: flex;
    justify-content: space-between;
}

.vision_list li {
    text-align: center;
    height: 168px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    flex-basis: 32%;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.vision_list li .number {
    display: table;
    margin: 0 auto;
    border-bottom: 2px solid #002b82;
    text-align: center;

    font-family: Lato;
    font-weight: bold;
    font-style: italic;
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 30px;
    margin-bottom: 9px;
    text-align: center;
    color: #002b82;
}

.vision_list li .text {
    display: block;
    width: 100%;
    text-align: center;

    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #000;
}

/*vision*/

#vision {
    padding-top: 77px;
    /* background: #f6f6f6; */
    padding-bottom: 80px;
}

/*company*/

#company {
    padding-top: 77px;
}

.map_list {
    margin-top: 20px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
}

.map_list .photo {
    flex-basis: 48%;
}

.map_list .photo img {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
}

.map_list .map {
    flex-basis: 48%;
}

.map_list .map iframe {
    width: 100%;
    height: 310px;
    margin-bottom: 20px;
}

.map_list .txt,
.map_list address {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 24px;
    text-align: left;
    color: #3b4043;
}

@media screen and (max-width: 767px) {
    .vision_list {
        padding-bottom: 0px;
    }

    .vision_list ol {
        flex-wrap: wrap;
    }

    .vision_list li {
        height: 115px;
        flex-basis: 100%;
        margin-bottom: 10px;
    }

    .vision_list li .text {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .map_list {
        flex-wrap: wrap;
    }

    .map_list .photo {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    .map_list .map {
        flex-basis: 100%;
    }

    .map_list .map iframe {
        height: 180px;
    }

    .map_list .txt,
    .map_list address {
        font-size: 15px;
    }
}

/* strategy */

#strategy {
    padding-bottom: 90px;
}

#strategy .strategy-flex-container {
    display: flex;
    justify-content: space-between;
}

#strategy .strategy-img {
    width: 48%;
    margin-right: 50px;
}

#strategy .strategy-img img {
    width: 100%;
    vertical-align: middle;
}

#strategy .strategy-text-container {
    flex: 1;
}

#strategy .strategy-hd {
    font-family: "Yu Mincho";
    font-weight: normal;
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 40px;
    text-align: left;
    color: #000;
    margin-bottom: 35px;
}

#strategy .strategy-body {
    font-family: YuGothic, "Yu Gothic", "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 30px;
    text-align: left;
    color: #000;
    margin-bottom: 23px;
}

#strategy .strategy-btn {
    text-decoration: none;
    position: relative;
    display: block;
    width: 90%;
    max-width: 184px;
    border: 1px solid #002b82;
    background: #fff;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 48px;
    text-align: center;
    color: #002b82;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    float: right;
}

#strategy .strategy-btn:hover {
    background: #002b82;
    color: #fff;
}

#strategy .strategy-btn:hover::after {
    border-color: #fff;
}

#strategy .strategy-btn::after {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    top: 2px;
    bottom: 0;
    right: 17px;
    margin: auto;
    border-right: 2px solid #002b82;
    border-bottom: 2px solid #002b82;
    transform: rotate(-45deg);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#strategy .strategy-hd-centered {
    font-family: "Yu Mincho";
    font-weight: normal;
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 40px;
    text-align: center;
    color: #000;
    margin-bottom: 37px;
}

@media screen and (max-width: 767px) {
    #strategy {
        padding-bottom: 70px;
    }
    #strategy .strategy-flex-container {
        flex-direction: column;
    }
    #strategy .strategy-img {
        width: 100%;
        margin-bottom: 20px;
    }
    #strategy .strategy-text-container {
        width: 100%;
    }
    #strategy .strategy-hd-centered  {
		font-size: 22px;
    	margin-bottom: 20px;
    }
    #strategy .strategy-body {
        font-size: 14px;
    }
    #strategy .strategy-btn {
        font-size: 14px;
    }
}