@charset "utf-8";


/*********************************+footer*********************************/

.footer {
    padding-top: 5%;
    margin-bottom: 12%;
}

.footer-box2 {
    width: 100%;
    color: #3d3d3d;
    padding-bottom: 8%;
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.footer-flex img {
    width: 8%;
}

.fixed-bottom {
    position: fixed;
    bottom: 0;
    z-index: 999;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.information-box {
    text-align: center;
}
.information-title {
    font-size: var(--size-xlarge);
}
.information-text {
    font-size: var(--size-medium);
}

@media screen and (min-width: 768px) {
    .footer-box2 {
        width: 100%;
        margin: 0 auto;
    }
    .footer-flex {
        justify-content: left;        
    }
    .information-box {
        text-align: left;
    }
    .information-title {
        text-align: center;
    }
    .information-text {
        font-size: var(--size-small);
        text-align: left;
    }
}

/*********************************+
sns
*********************************/

.sns-list {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
}
.sns-list .item {width: 10%;}
.sns-list .item img {width: 100%;}

.sns-list-left {
    display: flex;
    align-items: center;
    justify-content: left;
    column-gap: 5px;
    margin-bottom: 6%;
}
.sns-list-left .item {width: 15%;}
.sns-list-left .item img {width: 100%;}

.sns-list-right {
    display: flex;
    align-items: center;
    justify-content: right;
    column-gap: 5px;
}
.sns-list-right .item {width: 15%;}
.sns-list-right .item img {width: 100%;}

/*********************************+
table
*********************************/

/* テーブル全体の枠組み（緑の角丸背景） */
.company-table {
  width: 100%;
  margin: 0 auto 6%;
  background-color: var(--main-color);
  border-radius: 30px;
  border: 2px solid #a5d6a7;
  border-collapse: separate; 
  border-spacing: 0;
  overflow: hidden;
    color: #fff;
}

/* セルの共通設定 */
.company-table th,
.company-table td {
  padding: 24px 20px;
  vertical-align: top; 
}

/* 一番下の区切り線を消す */
.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

/* --- ここからレイアウトの調整 --- */

/* 左側：アイコンのマス */
.company-table .icon-cell {
  width: 60px;       /* アイコン用の狭い幅に固定 */
  padding-right: 0;  /* 右側の余白を消して、文字と近づける */
  text-align: center;
  font-size: 28px;   /* アイコンを少し大きめに */
}

/* 右側：情報（テキスト）のマス */
.company-table .info-cell {
  text-align: left;
}

/* 右側の中の「タイトル（所在地など）」 */
.company-table .info-title {
  display: block;      /* ブロック要素にして必ず改行させる */
  font-weight: bold;
  font-size: clamp(12px,10vw,20px); 
  margin-bottom: 8px;  /* ★タイトルと住所の間の余白（ここで間隔を調整できます） */
}

/* 右側の中の「実際のデータ（住所など）」 */
.company-table .info-text {
  margin: 0;           /* デフォルトの余白をリセット */
  line-height: 1.6;    /* 行間を読みやすく */
}

.info-text a {color:#fff;}
.company-table p {font-size: clamp(12px,10vw,20px);  }


/*******************************
iframe
*******************************/
.iframe-wrapper {
/*	display: flex;
	justify-content: center;
	width: 100%;
    padding-bottom: 11.25%; 
    gap: 0 30px;*/
    margin: 0 auto 20px;
    aspect-ratio: 3 / 2;
}

@media screen and (min-width: 768px) {
    .iframe-wrapper {
        width: 100%;
        padding-bottom: 0;
        margin: 0;
    }    
}