@charset "UTF-8";
#main {
  padding: 0 40px;
}

@media (max-width: 600px) {
  #main {
    padding: 0 20px;
  }
}
.container {
  width: 750px;
  max-width: 100%;
  margin-bottom: 140px;
}

.contact {
  font-size: 22px;
  line-height: 1em;
  margin-bottom: 70px;
}
.contact a {
  border-bottom: 1px solid #524E46;
  display: inline-block;
}

@media (max-width: 600px) {
  .contact {
    margin-bottom: 40px;
  }
}
.company_info dl {
  font-size: 16px;
  line-height: 1.3em;
  margin-bottom: 15px;
}
.company_info a {
  font-size: 17px;
  line-height: 1em;
  border-bottom: 1px solid #524E46;
  display: inline-block;
}

@media (max-width: 600px) {
  .company_info {
    margin-bottom: 20px;
  }
}
/* 簡易的なCSS（スマホ対応グリッドレイアウト） */
.insta-feed {
  display: grid;
  grid-template-columns: 33.3333% 33.3333% 33.3333%;
  gap: 1px;
  width: 100%;
  margin: 0 auto;
}

.insta-item {
  position: relative;
  width: 100%;
  padding-top: 133.3334%;
  overflow: hidden;
  background: #f0f0f0;
}

.insta-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 枠に合わせてトリミング */
  transition: transform 0.3s ease;
}

.insta-item:hover img {
  transform: scale(1.1); /* ホバー時に拡大 */
}

/* 動画アイコンなどを重ねる場合のスタイル例 */
.video-mark {
  display: none;
}