@charset "UTF-8";
/* 共通事項 */
html {
    font-size: 100%;
}

body {
    background-color: #fff6fb;
}

a {
    text-decoration: none;
    color: black;
}

/* ヘッダー */

header {
    background-color: #f3c1da;
    height: 50%;
    width: 100%;
}
.logo {
    width: 150px;
    margin: 15px 0 15px 20px;
}


.menu-1, .menu-2 {
  font-family: "DotGothic16";
}

.menu-1 {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.menu-2 {
    display: flex;
    justify-content: center;
    gap: 1.5rem;

}

/* 題名 */
h1 {
    text-align: center;
    margin: 50px 0 40px 0;
    font-family: "DotGothic16";
}
.form {
    font-family: "Zen Maru Gothic";
    font-size: 20px;
    margin-top: 30px;
    text-align: center;
}

.writte {
    margin-right: 260px;
    justify-content: flex-start;
}


.text {
    background-color: #fff;
    border: #333 solid 1px;
    border-radius: 5px;
    height: 50px;
    width: 300px;
    margin: 5px 0 30px 20px;
}

.text-b {
    background-color: #fff;
    border: #333 solid 1px;
    border-radius: 5px;
    height: 200px;
    width: 300px;
    margin: 5px 0 30px 20px;
}

.btn {
    font-family: "Zen Maru Gothic";
    text-align: center;
    font-size: 25px;
    background-color: #f3c1da;
    color: #333;
    border: #333 solid 1px;
    border-radius: 20px;
    width: 150px;
    height: 50px;
    padding: 5px;
    margin: auto;
}

a {
    text-decoration: none;
}

/* コピーライト */
.copyright {
  background-color: #f3c1da;
  text-align: center;
  color: #333;
  padding: 30px;
  font-size: 20px;
  margin-top: 50px;
}

/* レスポンシブ */
@media (min-width: 820px) {
    /* ヘッダー */
header {
    background-color: #f3c1da;
    height: 80%;
    width: 100%;
}
.logo {
    width: 200px;
}

.menu {
    text-align: center;
}

.menu-1, .menu-2 {
    display: inline;
    font-size: 22px;
    gap: 2rem;
}


/* 題名 */
h1 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* 記事 */

.form {
    text-align: center;
}

.writte {
    margin-right: 260px;
    justify-content: flex-start;
}

/* コピーライト */

.copyright {
  background-color: #f3c1da;
  text-align: center;
  color: #333;
  padding: 30px;
  font-size: 20px;
  margin-top: 150px;
}


}