@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400&family=Varela+Round&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  -webkit-font-smoothing: antialiased;
  /* Mac用 */
  -moz-osx-font-smoothing: grayscale;
  /* Mac用 */
  /* ↓★★ 原因となっていた以下の行を削除、またはコメントアウトします ★★ */
  /* transform: rotate(0.03deg); */
  line-height: 1.6;
  color: #333;
  background-color: #FFFFFF;
}

main,
footer {
  transform: rotate(0.04deg);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.l-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 15px 20px;
  /* 余白を15px 20pxに統一 */
  box-sizing: border-box;
}

.l-header {
  /* 固定配置（最重要：fixedの末尾の「d」を確認してください） */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* 背景と見た目 */
  background-color: rgba(255, 255, 255, 0.6);
  /* 60%透過 */
  backdrop-filter: blur(8px);
  /* すりガラス効果 */
  border-bottom: 1px solid #e0e0e0;
}
.l-header .l-container {
  height: 70px;
}
.l-header__logo {
  font-size: 24px;
  margin: 0;
  /* 念のためh1のデフォルト余白をリセット */
}
.l-header__logo img {
  width: 100%;
  max-width: 320px;
  display: block;
}
.l-header__inq {
  transform: rotate(0.04deg);
  font-size: 14px;
  margin: 0;
  /* 念のためh1のデフォルト余白をリセット */
  background-color: #ffffff;
  display: flex;
  border-radius: 10px;
  padding: 4px 10px;
}
.l-header__inq__title {
  background-color: #3C7EBF;
  color: #ffffff;
  padding: 4px 12px;
  font-weight: bold;
  margin: 5px 10px;
  border-radius: 5px;
}
.l-header__inq__tel {
  font-weight: bold;
}
.l-header__inq__time {
  font-size: 10px;
}

.l-hero-area {
  width: 100%;
  background-image: url("../img/bg-hero.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 100px;
  /* ヘッダーの高さ(70px)+余白分を確保 */
  box-sizing: border-box;
}

.l-container section {
  text-align: center;
  /* background-color: aquamarine; */
  width: 100%;
  min-height: 465px;
  padding: 60px 5px;
}

.l-footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* 背景色を変えるモディファイヤ */
.l-footer--blue {
  background-color: #3C7EBF;
  color: #ffffff;
  /* 必要に応じて文字色も反転 */
}

picture.c-hero img {
  display: block; /* ★これが必要 */
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

h2 {
  color: #49B8E9;
  padding: 0 0 5px 0;
  border-bottom: solid 2px #49B8E9;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px auto;
}

.pc-column-vertical .wp-block-columns {
  flex-direction: column;
}

.pc-column-vertical .wp-block-column {
  width: 100% !important;
}

/* コメント *//*# sourceMappingURL=style.css.map */