/* 文字セット */
@charset "UTF-8";

/* スライドショーのスタイル設定 */
.top-slide {
    position: relative;
    width: 100%;
    height: 400px;
}
.slide-image {
    width: 100%;
    height: 100%;
}

.slide-text {
    position: absolute;
    top: 30%;
    left: 20%;
    font-size: 3em;
}

/* オンラインショップセクションのスタイル設定 */
.online-shop {
    margin: 1em;
}

/* プロモーション部分のスタイル設定 */
.shop-promo {
    display: flex;
    align-items: center;
    width: 100%;
    height: 200px;
}
.promo-text {
    width: 20%;
    font-size: 1.25em;
    border-radius: 50%;
    text-align: center;
}
.promo-images{
    width: 80%;
}
.promo-images ul{
    display: flex;
}
.promo-images li{
    width: 20%;
    height: 200px;
    margin-left: 5%;

}
.promo-image {
    height: 200px;
}

/* ショップポイントのスタイル設定 */
.shop-points {
    margin-top: 1em;
    padding: 1em;
    font-size: 1.5em;
    text-align: center;
    background-color: #090f1c;
}
.shop-points h2, .shop-points p {
    font-family: "sample02";
    background: linear-gradient(to right, #FFD700, #FCF6BA, #FFD700, #FCF6BA, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* 情報セクションのスタイル設定 */
.info-section {
    width: 100%;
    margin-top: 1em;
    display: flex;
    align-items: top;
}
/* 新着情報のセクションのスタイル設定 */
.news{
    width:32%;
    margin-right: 1%;
}
.news h2 {
    font-size: 1.5em;
    text-align: center;
    padding-bottom: 0.5em;
}
.news ul{
    height: 90%;
    padding:1em;
    font-size: 1.1em;
    border: 2px solid #FFD700;
    border-radius: 1em;
}
.news li{
    margin-top: 0.5em;
    padding:0 1em 0.5em;
    border-bottom: 1px solid #FFD700;
}

/* 会社情報セクションのスタイル設定 */
.company-info {
    width: 32%;
    margin: 0 1%;
}
.company-info h2 {
    font-size: 1.5em;
    text-align: center;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #FFD700;
}
.company-info dl {
    display: flex;
    font-size: 1.25em;
    padding: 0.5em 1em 0.5em 1em;
    border-bottom: 2px solid #FFD700;
}
.company-info dt {
    width: 7em;
}

/* 地図のスタイル設定 */
.map {
    width: 32%;
    margin-left: 1%;
}
.map iframe {
    width: 100%;
    height: 80%;
}
.map p{
    height: 20%;
    padding-top:4%;
    font-size: 1.25em;
}

.top-slide {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden; /* スライドを表示範囲内に収めるために追加 */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide-image {
    width: 100%;
    height: 100%;
}

.slide-text {
    position: absolute;
    top: 30%;
    left: 20%;
    font-size: 3em;
}