/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ボディとフォント設定 */
body {
    /* font-family: 'Arial', sans-serif; */
    line-height: 1.6;
    background-color: #f5f3ed;
    color: #333;
    font-family: "Poppins", sans-serif;

}

/* ヘッダーの設定 */
h1 img {
    width: 300px;
    /* 大きめに設定 */
    height: auto;
    object-fit: contain;
    margin-left: 40px;
    transition: all 0.3s ease;
}

/* ここまで */



header {
    width: 100%;
    height: 150px;
    background-color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #f5f3ed;
}



ul {
    display: flex;
    list-style: none;
}



ul.menu2 img {
    width: 20px;
}

.headeritem {
    margin-left: 40px;
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: #333;
}

nav {
    margin-right: 70px;
}

a:hover {
    opacity: 0.5;
}

/* 動画を乗せる練習 */

.container-video {
    position: relative;
    height: 600px;
    overflow: hidden;
    opacity: 0.01;
    animation: load 1.5s 0.8s ease-out forwards;
}

.container-video #video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    overflow: hidden;
    transform: translate(-50%, -50%) scale(1.05);
}

@keyframes load {
    100% {
        opacity: 1;
    }
}

.table-center {
    display: table;
    width: 100%;
    position: relative;
    height: 100%;
}

.table-center>div {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    text-align: center;
}

.table-center>div p {
    color: #fff;
    text-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px;
    font-size: 2em;
    font-weight: 600;
}

/* ここまで */


/* フッター */

.footer {
    padding: 40px 20px;
    text-align: center;
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
}

.footer-title {
    /* font-size: 28px;
    font-weight: bold;
    color: #556038; */
    margin: 0;

}

.footer-title img {
    width: 300px;
    /* 大きめに設定 */
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;


}

.footer-sub {
    font-size: 16px;
    margin: 10px 0 20px;
}

.footer-icons {
    margin-bottom: 20px;
}

.sns-icon {
    width: 30px;
    height: 30px;
    margin: 10px 10px;
    transition: opacity 0.3s;
}

.sns-icon:hover {
    opacity: 0.7;
}

.footer-links {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

footer .copyright {
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
}


/* ここまで */

/* ライン */
.line-wrapper {
    text-align: center;
    margin: 80px 0;
}

.animated-line {
    display: inline-block;
    width: 1200px;
    height: 1px;
    background-color: #888;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 1s ease-out;
}

.animated-line.visible {
    transform: scaleX(1);
}

/* ここまで */