@charset "UTF-8";

body {
    margin: 0;
}

h1, h2, h6, p {
    font-family: "Zen Old Mincho", serif;
}

/* ヘッダー（reckの文字） */

header {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    color: white;
    -webkit-text-stroke: 1px black;
}

header img {
    height: clamp(30px, 5vw, 6vw);
    padding-top: 5px;
    margin: auto 0;
}

header h1 {
    margin: 0;
    font-family: "Meiryo";
    font-size: clamp(30px, 5vw, 6vw);
}

/* ナビゲーション */

nav {
    display: flex;
    line-height: 14px;
    justify-content: space-around;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}

nav div:first-child {
    margin-left: 2%;
}

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

nav a:hover {
    color: #7AD0AD;
}

nav h2 {
    font-size: clamp(10px, 2vw, 2.2vw);
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
}

/* メインコンテンツ */

.line, .mail, .tel {
    display: flex;
    align-items: baseline;
    margin: 20px auto;
    margin-left: 20%;
    border-bottom: 1px solid #dcdcdc;
}

.line a, .mail a, .tel a {
    color: #7AD0AD;
    text-decoration: none;
    margin: auto 30px;
}

.line h6, .mail h6, .tel h6 {
    font-size: 4vw;
    margin: 0;
}

.line p, .mail p, .tel p {
    font-size: 3.5vw;
}

/* コンタクトフォームへ */

.to-contact {
    position: relative;
    text-align: center;
    margin-top: 100px;
}

.to-contact img {
    display: block;
    width: 90%;
    margin: 0 auto;
    height: 150px;
    object-fit: cover;
    filter: brightness(0.5);
    border-radius: 2%;
}

.contact-form {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央に配置 */
    color: white; /* 文字色を白に設定 */
    text-align: center; /* 文字を中央揃え */
  }

.contact-form button {
    width: 40%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: 1px solid white;
    border-radius: 5px;
}

/* フッター */

footer {
    width: 100%;
    margin-top: 100px;
    border-top: 1px solid black;
}

.footer-top {
    color: white;
    display: flex;
    -webkit-text-stroke: 1px black;
}

.footer-top img {
  height: clamp(30px, 5vw, 6vw);
  padding-top: 5px;
  margin: auto 0;
}

.footer-top h1 {
    margin: 5px auto 5px 5px;
    font-family: "Meiryo";
    font-size: clamp(25px, 4.5vw, 5.5vw);
}

.footer-bottom h6 {
    text-align: center;
    margin: 0;
    line-height: 30px;
    font-size: clamp(8px, 1.2vw, 1.2vw);
}