/* 基本リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    /* background-color: #FFFAF0; */
    background-color: #fff;
    /* 明るいクリーム色 */
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

/* コンテナ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダー */
header {
    background-color: #ffffff;
    /* 白 */
    border-bottom: 5px solid #7f5bff;
    /* 紫 */
    border-radius: 0 0 20px 20px;
    /* 下部を丸く */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header-inner {
    max-width: 1200px;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}


header logo {
    display: block;
    width: 100px;
}

.header-inner {
    display: flex;
    height: 80px;
    align-items: center;
}

a.header-logo {
    display: block;
    width: 50%;
    height: 90%;
}

a.header-logo img {
    object-fit: contain;
    height: 100%;
}

/* .toggle-menu-button {
    display: none;
} */

.header-site-menu {
    background-color: hsl(0, 0%, 100%);
    padding: 10px;
}

/* header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
} */
.header-site-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

/* header nav ul li {
    margin: 0 15px;
} */
.header-site-menu ul li {
    margin-right: 20px;
}

/* header nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 10px;
    transition: background-color 0.3s;
} */

.header-site-menu ul li a {
    color: #333;
    text-decoration: none;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: rgb(0, 0, 0);
    cursor: pointer;
}


header nav ul li a:hover {
    color: #7f5bff;
}

/* .toggle-menu-button{
    display: none;
    padding: 0;
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: #aaa;
    font-size: 30px;
  }
  .open .toggle-menu-button{
    z-index: 110;
    color: #212a2b;
  }
  .toggle-menu-button .fa-bars{
    display: revert;
  }
  .open .toggle-menu-button .fa-bars {
    display: none;
  }
  .toggle-menu-button .fa-xmark{
    display: none;
  }
  .open .toggle-menu-button .fa-xmark {
    display: revert;
  } */
/* メインセクション */
main section {
    margin: 40px 0;
    padding: 20px;
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/*メインビュー*/
.slideshow-container {
    max-width: 1800px;
    position: relative;
    margin: auto;
}

.slide {
    display: none;
}

.slideshow-container img {
    width: 100%;
    height: auto;
}

.fade {
    animation: fade 1.5s ease-in-out;
}

@keyframes fade {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}

/* ホームセクション
#home h2 {
    font-size: 2em;
    text-align: center;
    color: #FF69B4;
}

#home p {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 20px;
}

#home .btn {
    display: inline-block;
    background-color: #FF69B4;
    color: #FFF;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

#home .btn:hover {
    background-color: #FFB6C1;
} */

/* サービスセクション */
#services h2,
#about h2,
#portfolio h2,
#contact h2 {
    font-size: 2em;
    text-align: center;
    color: #2088c4;
    margin-bottom: 20px;
}

#services ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#services li {
    flex: 0 0 30%;
    background-color: #dadfea;
    /* 薄い水色å */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

#services li:hover {
    transform: translateY(-10px);
}

#services h3 {
    font-size: 1.2em;
    color: #679edd;
    margin-bottom: 10px;
    text-align: center;
}

#services p {
    font-size: 1em;
    color: #333;
}

/* ポートフォリオセクション
.portfolio-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.portfolio-item {
    flex: 0 0 48%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.portfolio-item img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.portfolio-item h3 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 1.5em;
    color: #FFF;
    background-color: rgba(255, 105, 180, 0.8);
    padding: 5px 10px;
    border-radius: 10px;
}

.portfolio-item:hover {
    transform: translateY(-10px);
} */
/* 会社概要　エリア */
.ka-main {
    display: block;
}

.ka-container.w-container {
    display: flex;
    justify-content: center;
}

.ka-in a {
    color: #679edd;
    text-decoration: underline;
}

.ka-in th {
    flex: 0 0 50%;
}

.ka-in tr {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    margin-top: 35px
}

.ka-in td {
    flex: 0 0 80%;
}

.ka-in .ka-2 {
    letter-spacing: 1rem;
    margin-right: 10px;
}

/* コンタクトセクション */
form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #679edd;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 2px solid #dadfea;
    font-size: 1em;
}

form button,
.send-button {
    display: block;
    margin: auto;
    background-color: #679edd;
    color: #FFF;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover,
.send-button:hover {
    background-color: #679edd;
}

.send-container {
    display: flex;
    justify-content: center;
}
.send-container table th{
    width: 33%;
}

.send-container table{
    width: 50%;
}
.send-container table td{
    width: 45%;
    padding-bottom: 10px;
}

.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-container a {
    margin: 0 10px;
}

/* フッター */
footer {
    background-color: #fff;
    /* padding: 20px 0; */
    text-align: center;
    padding-top: 30px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
    border-radius: 20px 20px 0 0;
    /* 上部を丸く */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

footer nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-top: 3%;
}

footer nav ul li {
    margin: 0 15px;
}

footer nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 10px;
    transition: background-color 0.3s;
}

footer nav ul li a:hover {
    background-color: #FFF;
    color: #679edd;
}

.footer-logo {
    display: block;
    margin-top: 50px;
}

.footer-logo a {
    display: block;
    width: 55%;
    margin: 0 auto;
}

.footertel {
    font-size: 20px;
    font-weight: bold;
    margin-top: 28px;
}

.copyright {
    text-align: center;
    margin: 0;
    font-size: 1em;
    font-weight: bold;
    margin-top: 50px;
}

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

    /*ハンバーガーメニュー*/
    .header-inner {
        justify-content: space-between;
    }

    .header-site-menu ul {
        display: none;
        flex-direction: column;
        background-color: #ede3ff;
        width: 250px;
        text-align: center;
        position: absolute;
        right: 0;
        z-index: 100;

    }

    .header-site-menu ul.show {
        display: flex;
        gap:1rem;
    }

    .header-site-menu ul li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }
}

@media(max-width: 800px) {
    .services li {
        margin-top: 45px;
        display: flex;
        flex-direction: column;
    }

    #services li {
        flex: none;
        width: 100%;
    }

    .footer nav ul {
        display: block;
    }

    footer nav ul li a {
        line-height: 3;
    }

    /*ハンバーガーメニュー*/
    /* .header-site-menu {
        display: none;
        flex-direction: column;
        background-color: #333;
        width: 100%;
    }

    .header-site-menu ul.show {
        display: flex;
    }

    .header-site-menu ul li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }   */

}