body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #222;
  background: #f7f8fc;
}

/* 共通 */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ヘッダー */
.header {
  background: #2f356f;
  padding: 30px 0;
  text-align: center;
  margin: auto;
}

.logo img {
  height: 45px;
  margin: 0 8px;
}


/* FV */
.fv {
  position: relative;
  height: 85vh;
}

.fv-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-inner {
  position: absolute;
  top: 20%;
  left: 10%;
  color: #fff;
}

.fv h1 {
  font-size: 42px;
  line-height: 1.4;
}

.fv h1 span {
  color: #6ee7d2;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 26px 9px;
  border-radius: 50px;
  background: #fff;
  color: #e68a2e;
  font-size: 19px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.phone-icon1 {
  width: 16px;
  object-fit: contain;
  margin-right: 5px;
  margin-bottom: -2px;
}

.time {
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 0.1em;
}
.time span{
  font-size: 13px;
  display: inline-block;
  line-height: 1.4;
  margin-top: 5px;
  opacity: 0.8;
  letter-spacing: 0.05em;
}
.fv-bottom {
  position: absolute;
  bottom: 30px;
  width: 100%;
  background: rgba(124,234,224,0.4);
  text-align: center;
  padding: 5px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.05em;
}


/* コンセプト */
.concept {
  padding: 50px 0;
  text-align: center;
}

.concept h2{
  border-bottom: 4px dotted #2f356f;
  display: inline-block;
  margin: auto;
}

.lead {
  color: #777;
  margin-bottom: 40px;
}

.concept-grid {
  display: flex;
  gap: 20px;
  margin: 0 40px;
}

.card {
  flex: 1;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
/* レスポンシブ */
@media (max-width: 768px) {
  .concept-grid {
    flex-direction: column;
    gap: 40px;
  }
}


/* 3カラム */
.info3 {
  background: #f3f3f3;
  padding: 50px 30px;
  font-family: "Noto Sans JP", sans-serif;
}

.info3-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
}

/* カラム */
.info-col {
  flex: 1;
  padding: 0 20px;
}

/* 縦線 */
.info-col.border {
  border-left: 1px solid #ddd;
}

/* 見出し */
.info-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.info-head h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2f356f;
  margin: 0;
}

/* アイコン */
.icon {
  height: 32px;
}

/* 本文 */
.info-col p {
  font-size: 15px;
  line-height: 1.9;
}

/* マーカー */
.marker {
  background: linear-gradient(transparent 60%, #cfe8ea 60%);
}

/* 電話 */
.tel-link {
  display: inline-block;
  margin-top: 10px;
  color: #2f356f;
  text-decoration: underline;
  font-weight: 600;
}

/* 住所 */
.address1 {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 30px;
  color: #2f356f;
  text-decoration: underline;
  font-weight: 600;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .info3-inner {
    flex-direction: column;
    gap: 40px;
  }

  .info-col.border {
    border-left: none;
    border-top: 1px solid #ddd;
    padding-top: 30px;
  }
}


/* 詳細 */
.detail2 {
  background: #f3f3f3;
  border-top: 4px dotted #333;
}
.detail2-bg {
  padding: 50px 30px;
  max-width: 1100px;
  margin: auto;
}

.detail2-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 30px 20px;
  border-bottom: 1px solid #ddd;
}

.detail2-row:last-child {
  border-bottom: none;
}

/* 左側 */
.detail2-left {
  width: 200px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.detail2-left h3 {
  margin: 0;
  font-size: 20px;
  color: #2f356f;
  font-weight: 600;
}

/* メインアイコン */
.main-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/* 右側 */
.detail2-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* サブアイコン */
.sub-icon {
  width: 60px;
  object-fit: contain;
}

/* テキスト */
.detail2-right p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .detail2-row {
    flex-direction: column;
    gap: 20px;
  }

  .detail2-left {
    width: auto;
  }
}


/* アクセス */
.access-section {
    width: 100%;
    background-color: #fff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0px 20px;
}

/* 青いタイトルバー */
.access-title {
    background-color: #333366; /* 濃紺 */
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

/* 上部レイアウト */
.info-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-name p {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 5px;
}

/* 電話番号周り */
.phone-number {
    color: #e68a2e; /* オレンジ */
    font-size: 2.0rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    letter-spacing: 0.05em;
    text-decoration: none;

    text-align: right;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0px;
    min-width: 300px;
}

.phone-icon {
  width: 27px;
  height: 27px;
  object-fit: contain;
  margin-right: 5px;
  margin-top: 5px;
}

.business-hours {
    font-size: 0.95rem;
    font-weight: bold;
    margin-top: 5px;
}

/* マップ */
.map-container {
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* 下部住所・駐車場 */
.info-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: bold;
    margin-bottom: 60px;
}

.address {
    font-size: 1rem;
    margin: -10px;
}

.parking-label {
    background-color: #333366;
    color: white;
    padding: 5px 20px;
    font-size: 0.9rem;
}

/* フッター */
.footer {
    text-align: center;
    padding: 10px 0;
    font-size: 0.7rem;
}

/* レスポンシブ調整（スマホ用） */
@media (max-width: 768px) {
    .info-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-box {
        text-align: left;
        width: 100%;
    }
    .phone-number {
        justify-content: flex-start;
        margin-top: -25px;
    }
    .info-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
