* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Helvetica Neue,
    Arial,
    Noto Sans,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    Segoe UI Symbol,
    "Noto Color Emoji";
}

body {
  color: #483f43;
  font-size: 17px;
  background-color: white;
  background-image: url(/wp-content/themes/hoge/img/bg-pc-main.svg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  margin: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

/* ヘッダー */
header {
  position: relative;
  width: 100%;
}

header .logo {
  display: block;
  position: relative;
  width: 10%;
  top: 3rem;
  left: 3rem;
}

header .pcMenu {
  position: absolute;
  right: calc(((100vw - 30rem) / 2) / 2);
  transform: translateX(50%);
}

header .pcMenu ul {
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
  line-height: 2.7;
  margin-top: 6rem;
}

header .pcMenu li,
header .spMenu li {
  list-style: none;
}

header .spMenu,
#menu-btn-check {
  display: none;
}

@media screen and (max-width: 1280px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    z-index: 110;
    width: 100%;
    top: 0;
    background: white;
    padding: clamp(8px, 1.2vw, 15px) clamp(10px, 2vw, 40px);
    box-sizing: border-box;
  }

  header .logo {
    display: inline-block;
    width: auto;
    top: 0;
    left: 0;
    line-height: 0;
    margin: 5px 0;
    padding: 0;
  }

  header .logo img {
    width: auto;
    height: clamp(42px, 8vw, 70px);
    vertical-align: bottom;
  }

  header .pcMenu {
    display: none;
  }

  header .spMenu {
    position: absolute;
    display: block;
    width: 100%;
    height: auto;
    top: 100%;
    left: 0;
    z-index: 105;
    background: white;
    transform: translateY(-10px);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition:
      transform 0.3s ease-out,
      opacity 0.3s,
      visibility 0s linear 0.3s;
  }

  #menu-btn-check:checked ~ .spMenu {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      visibility 0s linear 0s;
  }

  .menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 110;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }

  .menu-btn span,
  .menu-btn span::before,
  .menu-btn span::after {
    content: "";
    position: absolute;
    display: block;
    width: clamp(31px, 7vw, 55px);
    height: 2px;
    background-color: #483f43;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .menu-btn span::before {
    bottom: clamp(9px, 2vw, 65px);
  }

  .menu-btn span::after {
    top: clamp(9px, 2vw, 65px);
  }

  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
  }

  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .spMenu ul {
    list-style: none;
  }

  .spMenu li {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    line-height: 3.5;
    border-bottom: solid 1px #e3aaaa;
    padding-left: 4rem;
  }

  .spMenu li:last-of-type {
    border-bottom: none;
  }

  .spMenu li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 25px;
    width: 8px;
    height: 8px;
    border-bottom: solid 2px #e3aaaa;
    border-right: solid 2px #e3aaaa;
    transform: translateY(-50%) rotate(45deg);
  }

  .spMenu .headerIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin: 0 auto 1.5rem;
  }

  .spMenu .headerIcon a {
    width: 13%;
  }

  .spMenu .headerIcon a:first-of-type img {
    width: 70%;
  }
}
/* ヘッダー */

/* 全体 */
img {
  display: block;
  max-width: 100%;
  margin: auto;
}

.all {
  max-width: 30rem;
  background: transparent;
  margin: 0 auto;
}

.main {
  background: white;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1280px) {
  .all {
    max-width: unset;
    width: 100%;
  }
}
/* 全体 */

/* FV、CTA */
.fv {
  overflow: hidden;
  width: 100%;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

.fv img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

@media screen and (max-width: 1280px) {
  .fv {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

.ctaBtn {
  width: 100%;
  margin: 0 auto 2rem;
}

.ctaBtn img {
  width: 95%;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.55));
}

@media screen and (max-width: 1280px) {
  .ctaBtn {
    margin: 0 auto clamp(1.5rem, 4vw, 4rem);
  }
}
/* FV、CTA */

/* お知らせ */
.news {
  width: 100%;
  margin: 0 auto 1rem;
}

.news h1 {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  color: #483f43;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.2rem;
}

.news h1::before {
  position: absolute;
  content: "";
  width: 15%;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border: solid 2px #e3aaaa;
  border-radius: 3px;
}

.news .topic {
  width: 90%;
  font-weight: bold;
  line-height: 1.7;
  margin: 0 auto;
}

.news .topic .contents {
  width: 100%;
  margin: 0 auto 5px;
}

.news .topic .contents .date {
  width: auto;
  text-align: left;
  margin: 0;
}

.news .topic .contents a {
  color: #483f43;
  text-decoration: none;
}

.news .topic .contents a .title {
  width: fit-content;
  margin: 0;
}

.news .topic .contents .date,
.news .topic .contents a .title {
  font-size: 16px;
}

@media screen and (max-width: 1280px) {
  .news h1 {
    font-size: clamp(20px, 5vw, 48px);
    margin-bottom: clamp(2rem, 6vw, 4rem);
  }

  .news h1::before {
    width: 17%;
    bottom: -30%;
    border: solid clamp(3px, 0.5vw, 5px) #e3aaaa;
    border-radius: 4px;
  }

  .news .topic {
    width: 100%;
  }

  .news .topic .contents a {

}

  .news .topic .contents .date {
    min-width: clamp(60px, 10vw, 120px);
  }

  .news .topic .contents .date,
  .news .topic .contents a .title {
    font-size: 3.8vw;
  }
}
/* お知らせ */

/* フッター */
.footer {
  width: 100%;
  background: #e3aaaa;
  margin: 0 auto;
  padding: 1.5rem 0;
}

.footer p {
  color: white;
  font-size: 14px;
  text-align: center;
  padding-bottom: 3px;
}

.footer p:last-child {
  padding-bottom: 0;
}
/* フッター */
