@charset "utf-8";
@font-face { 
    font-family: Noto_Thin;
    src: url(font/NotoSansCJKtc-Thin.otf);
}
@font-face { 
    font-family: Noto_Reg;
    src: url(font/NotoSansCJKtc-Regular.otf);
}
@font-face { 
    font-family: Noto_Med;
    src: url(font/NotoSansCJKtc-Medium.otf);
}
@font-face { 
    font-family: Noto_Bold;
    src: url(font/NotoSansCJKtc-Bold.otf);
}

* {
    margin: 0;
    border: 0;
    box-sizing: border-box;
}
a:link {
    text-decoration: none;
  }

/* body */

body {
    width: 100%;
    height: 100%;
    background: #feffcf;
}
.top {
    width: 70%;
    height: 40vh;
    display: flex;
    padding-top: 12vh;
    margin-left: 15%;
    margin-right: 15%;
}
.logo {
    width: 150px;
}
.logo img {
    width: 150px;
}
.title {
    width: calc(100% - 150px);
    padding-left: 40px;
}
.name {
    width: 100%;
    font-family: Noto_Med;
    font-size: 30px;
    color: #656565;
    padding-top: 30px;
}
.about {
    width: 100%;
    font-family: Noto_Thin;
    font-size: 24px;
    color: #d2b53f;
    padding-top: 6px;
}
.bottom {
    width: 70%;
    height: calc(60vh - 36px);
    display: flex;
    padding-top: 6vh;
    margin-left: 15%;
    margin-right: 15%;
}
.left {
    width: 49%;
    height: 200px;
    border: solid 1px #d2b53f;
    border-radius: 16px;
    margin-right: 1%;
    padding-top: 16px;
    padding-left: 40px;
    padding-right: 40px;
}
.left_title {
    font-family: Noto_Thin;
    font-size: 20px;
    color: #898b54;
}
.talk {
    font-family: Noto_Med;
    font-size: 30px;
    color: #898b54;
    padding-top: 16px;
    text-align: center;
}
.right {
    width: 49%;
    height: 200px;
    background-color: #f0f2a5;
    border-radius: 16px;
    margin-left: 1%;
    padding-top: 16px;
    padding-left: 40px;
    padding-right: 40px;
}
.right_title {
    font-family: Noto_Thin;
    font-size: 20px;
    color: #898b54;
}
.contact {
    font-family: Noto_Reg;
    font-size: 24px;
    color: #898b54;
    padding-top: 16px;
}
footer {
    width: 100%;
    height: 36px;
    background: #feffcf;
    border-top: solid 0.5px #d2b53f;
    position: absolute;
    font-family: Noto_Reg;
    font-size: 13px;
    line-height: 32px;
    color: #656565;
    text-align: center;
}


@media screen and (max-width: 767px) {

    .top {
        width: 80%;
        height: auto;
        display: block;
        padding-top: 60px;
        margin-left: 10%;
        margin-right: 10%; 
    }
    .logo {
        width: 100%;
        text-align: center;
    }
    .logo img {
        width: 100px;
    }
    .title {
        width: 100%;
        padding-left: 0;
    }
    .name {
        font-size: 26px;
        text-align: center;
    }
    .about {
        font-size: 22px;
        text-align: center;
        padding-top: 16px;
    }
    .bottom {
        width: 80%;
        height: auto;
        display: block;
        padding-top: 40px;
        margin-left: 10%;
        margin-right: 10%;
    }
    .left {
        width: 100%;
        height: auto;
        border-radius: 10px;
        margin-right: 0;
        margin-bottom: 16px;
        padding-left: 0;
        padding-right: 0;
    }
    .left_title {
        text-align: center;
    }
    .talk {
        font-size: 24px;
        padding-top: 12px;
        padding-bottom: 30px;
    }
    .right {
        width: 100%;
        height: auto;
        border-radius: 10px;
        margin-left: 0;
        margin-bottom: 60px;
        padding-left: 0;
        padding-right: 0;
    }
    .right_title {
        text-align: center;
    }
    .contact {
        font-size: 20px;
        text-align: center;
        padding-top: 12px;
        padding-bottom: 30px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
    
    .top {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
    }
    .bottom {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
    }
}
@media screen and (min-width: 1920px) {
    
    .top {
        max-width: 1440px;
    }
    .bottom {
        max-width: 1440px;
    }
}