@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Verdana', 'Hiragino Sans', 'Meiryo', sans-serif;
    line-height: 1;
    color: #333;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* 共通 setting */
.container {
    width: 960px;
    margin: 0 auto;
}

/* header */
header .header_innner {
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: space-between;
}

nav ul {
    display: flex;
}

nav li a {
    display: block;
    padding: 12px 25px;
    color: #444;
}

nav li a:hover {
    color: #2f06fb;
    background-color: #a8ddf0;
}

/* main_image */
.main_image {
    background-image: url(../img/main_back_image.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 450px;
}

/* slogan */
.slogan {
    text-align: center;
    padding: 60px 0 160px;
}

.slogan h2 {
    font-size: 22px;
    margin-bottom: 40px;
}

.slogan>p {
    line-height: 2;
    padding-bottom: 120px;
}

.slogan>ul {
    display: flex;
    justify-content: space-between;
}

.slogan li {
    width: 280px;
}

/* consul */
.consul {
    padding: 60px 0 160px;
}

.consul h3 {
    font-size: 20px;
    padding: 8px 10px;
    background-color: #a8ddf0;
    border-left: 4px solid #555;
    margin-bottom: 10px;
}

.consul h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.consul .consul_item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    ;
}

.consul .consul_item .photo {
    width: 280px;
}

.consul .consul_item .text {
    width: 600px;
}

.consul .consul_item .text p {
    line-height: 1.8;
}

footer {
    background-color: #555;
}

.footer_inner p {
    padding: 70px 0;
    text-align: right;
}

.footer_inner small {
    color: #fff;
}