
/* 上部の黒帯 */
.top-header {
    width: 100%;
}

/* TOP ▲ 部分 */
.top-title {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 20px;
    letter-spacing: 2px;
}

/* メニュー部分（半透明背景） */
.nav-bar {
    padding: 15px 0;
    display: block;
}

/* メニュー横並び */
.nav-bar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

/* リンクスタイル */
.nav-bar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
}

.nav-bar a:hover {
    opacity: 0.7;
}

/* 中盤の背景画像セクション */
.background-footer-section {
    position: relative;  /* slick矢印のため必須 */
    background-image: url('/wp-content/themes/original/images/footer_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    padding: 10px 20px 50px;
}

.background-footer-section > * {
    position: relative;
    z-index: 1;
}

/* 左右を横並び */
.footer-container {
	display: flex;
	align-items: flex-start;
	justify-content: center; /* 中央寄せ */
    margin-top: 30px;
}

.footer-left,
.footer-right {
	width: 50%;     /* ← 左右で50%ずつ */
}

/* 左側は縦並び */
.footer-left {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* 右側も縦並び */
.footer-right {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-right {
	border: 1px solid #fff;   /* 白い罫線 */
	padding: 20px;            /* 枠と内容の余白 */
	border-radius: 8px;       /*（任意）少し角丸で高級感 */
}

/* スマホ対応（縦並びに変更） */
@media screen and (max-width: 768px) {
    .nav-bar {
		display: none;
	}
	.footer-container {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
    .footer-left,
    .footer-right {
        width: 100%;     /* ← 左右で50%ずつ */
    }
	.footer-right {
		align-items: center;
	}
    .footer-logo img{
        width: 100%;
        height: 80px;
        object-fit: contain;
    }
}

.footer-logo img{
   width: 70%;
}

.footer-subtext{
    margin: 5px 0 0;
    font-size: 14px;
}

.footer-adress{
    margin-top: 30px;
    font-size: 20px;
}

.footer-content{
    font-size: 20px;
}

.U_line {
    width: 100%;
    height: 2px;       /* 線の太さ */
    background: #fff;  /* 線の色 */
}

.footer-tel{
    margin-top: 30px;
    font-size: 20px;  
}

.footer-mail{
     margin-top: 30px;
    font-size: 20px;  
}

.mail-link {
    display: inline-flex;     /* 横並びにする */
    align-items: center;      /* アイコンと文字を縦中央揃え */
    gap: 8px;                 /* アイコンと文字の間隔 */
    text-decoration: none;    /* 下線を消す */
    color: white;             /* 文字色 */
}

.mail-link i {
    font-size: 20px;          /* アイコンの大きさ */
    color: white;
}