@charset "utf-8";
/*===========================
add
===========================*/
a.link-item {
    text-decoration: none !important;
}
/* 横並び */
.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
/* 共通 */
.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}
/* アイコン */
.link-item i {
    font-size: 30px;
    color: #333;
}
/* メール */
.mail {
    width: 50px;
    height: 50px;
    background: #f1f1f1;
    border-radius: 50%;
}
/* インスタ */
.insta {
    width: 50px;
    height: 50px;
    background: #f1f1f1;
    border-radius: 50%;
}
/* テキストボタン */
.text-btn {
    padding: 8px 16px;
    background: var(--basic-color);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
}
/* ホバー */
.link-item:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}
/* セクション全体 */
.message-section {
    /*padding: 100px 20px;
  background: #fafafa;*/
}
/* 内側 */
.message-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center; /* PC中央 */
}
/* タイトル */
.message-title {
    font-size: 26px;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}
h3.message-title::before, h3.message-title::after {
    height: 0;
}
/* テキスト */
.message-text {
    /*font-size: 15px;
  line-height: 2;
  color: #555;*/
    margin-bottom: 20px;
}
/* スマホ */
@media screen and (max-width: 768px) {
    .message-inner {
        text-align: left; /* スマホ左寄せ */
    }
    .message-title {
        font-size: 20px;
    }
}