@charset "utf-8";
* {
    margin: 0;
    padding: 0;
}
.container {
    max-width: 800px;
    padding: 0 30px ;
    margin-left: auto;
    margin-right: auto;
}
.header {
    height: 70px;
    width: 100%;
    box-shadow: 0 0 10px #dddddd;
    background-color: white;
    z-index: 9999;
}
.header-left {
    float: left;
}
.header-right {
    float: right;
}
.clear {
    clear: both;
}
.header-left {
    height: 70px;
    margin-top: 0px;
    display: flex;
    position: relative;
}
.header-logo {
    font-size: 21px;
    font-family: "Times New Roman","Noto Serif Japanese";
    color: green;
    width: 25px;
    height: 25px;
    left: 50%;
    top: 50%;
    display: inline-block;
    border-radius: 50%;
    border: solid 2px green; /*上下5pxのボーダー*/
    text-align: center;
    margin: auto auto;
    line-height: 26px; /*円の高さ-上下のボーダー*/
}
.header-corp {
    line-height: 72px;
    width: 170px;
    padding: 0 10px;
    font-size: 20px;
    font-family: "MSゴシック", sans-serif ;
    text-align: center;
}
.header-right a {
    line-height: 70px;
    margin-top: 5px;
    padding: 0 10px;
    font-size: 16px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    color: #5a5c5f;
    text-decorarion: none;
}
.header-right a:after {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
    transform: translate(-100%,0);
    transition: transform cubic-bezier(0.215,0.61,0.355,1) 0.4s;
    content: "";
}
.header-right a:hover:after {
    transform: translate(0,0);
}

/* スマホ用ハンバーガーメニュー */
/* responsive.cssに記載  */

/* フッター */
.footer {
    height: 300px;
    width: 100%;
    text-align: center;
    background-color: white;
}
.footer-1 {
    height: 100px;
    background-color: white;
    padding-top: 50px;
    border-top: solid;
    border-top-color: black;
}
.footer-logo {
    font-size: 60px;
    font-family: "Times New Roman","Noto Serif Japanese";
    color: green;
    width: 60px;
    height: 60px;
    left: 50%;
    top: 50%;
    display: inline-block;
    border-radius: 50%;
    border: solid 3px green; /*上下5pxのボーダー*/
    text-align: center;
    margin: auto auto;
    line-height: 65px; /*円の高さ-上下のボーダー*/
}
.footer-2 {
    height: 50px;
    margin: 10px auto;
    padding-top: 20px;
    width: 100%;
}
.footer-2 a {
    font-size: 16px;
    color: #5a5c5f;
    padding: 5px 10px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-decorarion: none;
}
.footer-2 ul {
    list-style-type: none;
    margin: 0px auto 0;
    text-align: center;
    position: relative;
    left: 50%;
    float: left;
}
.footer-2 li {
    height: 34px;
    float: left;
    padding: 0 5px 0 5px;
    position: relative;
    left: -50%;
    float: left;
}
.footer-2 a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
    transform: translate(-100%,0);
    transition: transform cubic-bezier(0.215,0.61,0.355,1) 0.4s;
    content: "";
}
.footer-2 a:hover:after {
    transform: translate(0,0);
}

.clear {
    clear: both;
}
.footer-3-1 {
    height: auto;
}
.footer-3 {
    height: 20px;
    margin: 5px 0;
    text-align: center;
    font-size: 15px;
    color: #00231d;
}