@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@500;700&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  background-color: #FBEEDD;
}
@media screen and (max-width: 680px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

.pc-none {
  display: none;
}
@media screen and (max-width: 680px) {
  .pc-none {
    display: block;
  }
}

@media screen and (max-width: 680px) {
  .sp-none {
    display: none;
  }
}

.l-inner {
  width: 680px;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 680px) {
  .l-inner {
    width: 100%;
    box-shadow: none;
  }
}

.campaign {
  margin-top: -3px;
}

.contact {
  padding: 48px 0 30px 0;
  background: linear-gradient(to bottom, #111111, #777777);
}

.contact-message {
  width: 80%;
  margin: 0 auto;
}

.contact-btn {
  transition: all 0.3s;
}
.contact-btn:hover {
  transform: translateY(-5px);
  filter: brightness(1.1);
  cursor: pointer;
}

.voice {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 80px;
  background: url(../img/voice-bg.jpg) no-repeat top center/cover;
}

.voice-wrap {
  background-color: #fff;
  width: 90%;
  padding: 40px 16px;
  margin: 0 auto;
}

.voice-title {
  width: 95%;
  margin: 0 auto 40px auto;
}

.voice-item {
  margin-bottom: 40px;
  width: 100%;
  padding-bottom: 20px;
}

.voice-item-title {
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(14px, 1vw + 10px, 18px);
  padding: 12px 0;
  text-align: center;
  background-color: #653B00;
}

.voice-item-youtube {
  width: 100%;
  margin: 0px auto;
}

.voice-item-youtube iframe {
  width: 100%;
  aspect-ratio: 9/10;
  height: auto;
  border-radius: 12px;
}

.reason {
  margin-top: -2px;
}

.profile {
  background-color: #FFFFFB;
  padding-bottom: 48px;
}

.profile-youtube {
  position: relative;
  margin: 0 auto;
  width: 90%;
  padding-top: 56.25%;
}

.profile-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (max-width: 680px) {
  .step {
    margin-top: -2px;
  }
}

.access {
  padding: 80px 40px;
  background-color: #F9F8EE;
}
@media screen and (max-width: 680px) {
  .access {
    padding: 50px 20px;
  }
}
.access .logo {
  width: 73%;
  margin: 0 auto;
  display: block;
}
.access .tel {
  margin-top: 48px;
  text-align: center;
}
.access .tel a {
  margin-bottom: 5px;
  display: block;
  transition: all 0.5s;
}
.access .tel a:hover {
  opacity: 0.6;
}
.access .tel .tel-head {
  margin-bottom: 10px;
}
.access .tel span {
  color: #653B00;
}
.access .access-text {
  margin-top: 48px;
}

.access-map {
  margin-top: 48px;
  position: relative;
  width: 100%;
  padding-top: 50%;
  overflow: hidden;
}

.access-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.footer {
  padding: 32px 0 24px 0;
  background-color: #C0AC7C;
}
@media screen and (max-width: 680px) {
  .footer {
    padding-bottom: 15vh;
  }
}
.footer p {
  text-align: center;
  color: #fff;
  font-size: 13px;
  margin-top: 48px;
}

.footer-wrap {
  display: flex;
  justify-content: center;
  gap: 21px;
}
.footer-wrap li a {
  color: #fff;
  transition: all 0.5s;
}
.footer-wrap li a:hover {
  opacity: 0.7;
}

.fixed-btn {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 28%;
  z-index: 100; /* 重なり順を上に */
  overflow: hidden; /* 光がボタンからはみ出さないように */
  transition: all 0.3s;
  /* スマホ対応のレスポンシブ設定 */
  /* 光の筋を作る */
}
@media screen and (max-width: 680px) {
  .fixed-btn {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 100%;
  }
}
.fixed-btn:hover {
  transform: translateY(-5px);
  filter: brightness(1.1);
  cursor: pointer;
}
@media screen and (max-width: 680px) {
  .fixed-btn:hover {
    /* スマホ時は中央寄せを維持しつつ浮かせる */
    transform: translateX(-50%) translateY(0);
  }
}
.fixed-btn:after {
  content: "";
  position: absolute;
  top: -50%; /* 斜めにするので少し大きめに */
  left: -150%; /* 開始位置を左側に隠す */
  width: 100px;
  height: 200%; /* 高さを出して斜めに横切らせる */
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  animation: shiny_btn 3s infinite ease-in-out;
}
.fixed-btn a {
  display: block;
  line-height: 0;
}

/* アニメーションの本体 */
@keyframes shiny_btn {
  0% {
    left: -150%;
  }
  30% {
    left: 150%; /* 30%の時点で右へ通り過ぎる（少し速めに光らせる） */
  }
  100% {
    left: 150%; /* 残りの時間は待機（光がループする間隔） */
  }
}/*# sourceMappingURL=main.css.map */