@charset "UTF-8";
/* 共通アイテム */
/* アンカーリンク スムーズスクロール */
html {
  scroll-behavior: smooth;
}

/* javaスクロールアニメーション */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
}

img {
  max-width: 100%;
}

a {
  display: block;
  transition: 0.3s;
}
a:hover {
  opacity: 0.5;
}

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

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.wrapper {
  width: 86%;
}

/* 注釈 */
.note {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}
@media (max-width: 768px) {
  .note {
    font-size: 0.8rem;
    line-height: 1.6;
  }
}

/* コンテンツ幅 */
.wrapper {
  margin-right: auto;
  margin-left: auto;
  max-width: 1240px;
  width: 86%;
}
@media (max-width: 768px) {
  .wrapper {
    width: 90%;
  }
}

/* CVボタン */
.c-btn {
  display: inline-block;
  width: 73%;
  margin-right: auto;
  margin-left: auto;
  filter: drop-shadow(0px 10px 0px #99901C);
  transition: 0.2s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .c-btn {
    width: 100%;
    filter: drop-shadow(0px 2px 0px #99901C);
  }
}
.c-btn:hover {
  filter: drop-shadow(0px 0px 0px #99901C);
  transform: translateY(10px);
}
@media (max-width: 768px) {
  .c-btn:hover {
    filter: drop-shadow(0px 0px 0px #99901C);
    transform: translateY(2px);
  }
}

/* ナビボタン */
.nav_btn {
  position: fixed;
  width: 68px;
  height: 68px;
  top: 40px;
  right: 40px;
  z-index: 200;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .nav_btn {
    top: 20px;
    right: 20px;
  }
}
.nav_btn span {
  position: absolute;
  width: 60%;
  height: 3px;
  border-radius: 3px;
  background-color: #000;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}
.nav_btn {
  /* ハンバーガーメニュー線 通常時(横3本線) */
}
.nav_btn span:nth-child(1) {
  top: 18px;
}
.nav_btn span:nth-child(2) {
  top: 33px;
}
.nav_btn span:nth-child(3) {
  top: 47px;
}

/* ハンバーガーメニュー線 選択時(バツ印) */
.open .nav_btn span:nth-child(1) {
  transform: translate(-20px, 15px) rotate(45deg);
}
.open .nav_btn span:nth-child(2) {
  opacity: 0;
}
.open .nav_btn span:nth-child(3) {
  transform: translate(-20px, -14px) rotate(-45deg);
}

/* メニュー */
.nav_menu {
  position: fixed;
  top: 0;
  right: -30%;
  z-index: 100;
  background-color: #fff;
  opacity: 0.92;
  height: 100vh;
  width: 25%;
  padding: 30px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .nav_menu {
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    opacity: 0.96;
  }
}

.open .nav_menu {
  right: 0;
}

.header ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header li {
  border-top: 1px solid #cacaca;
  padding: 30px 10px;
}
.header li:last-child {
  border-bottom: 1px solid #cacaca;
}

.fv {
  width: 100%;
}
.fv img {
  width: 100%;
}

.present {
  background-color: #05080F;
  padding: 80px 0;
}
.present .wrapper .container {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .present .wrapper .container {
    width: 100%;
    flex-direction: column;
  }
}
.present .wrapper .container .content {
  width: 40%;
  max-width: 610px;
}
@media (max-width: 768px) {
  .present .wrapper .container .content {
    width: 100%;
  }
}
.present .btn {
  width: 42%;
  margin: 54px auto 0;
}
@media (max-width: 768px) {
  .present .btn {
    width: 100%;
  }
}

.flow {
  padding: 120px 0;
  background: linear-gradient(0deg, #CAAB70 0.01%, #E4CB9A 68.75%, #F3E5AD 99.99%);
}

.hm {
  background-image: url(../img/pc/hm_bg.jpg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0;
}
.hm .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.hm .inner .title {
  width: 94%;
}
@media (max-width: 768px) {
  .hm .inner .title {
    width: 100%;
  }
}
.hm .inner .container .detail {
  display: flex;
}
@media (max-width: 768px) {
  .hm .inner .container .detail {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.hm .inner .container .index {
  font-family: serif;
  width: 6%;
  padding: 10px 0 0 10px;
  text-align: left;
  background: linear-gradient(90deg, #FAE492 0%, #B5965A 100%);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 768px) {
  .hm .inner .container .index {
    width: 100%;
    padding: 10px 0;
    font-size: 1.3rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hm .inner .container .index span {
    display: inline-block;
  }
}
.hm .inner .container .index .number {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .hm .inner .container .index .number {
    font-size: 1.3rem;
  }
}
.hm .inner .container .box {
  background-color: #ffffff;
  width: 94%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3%;
  padding: 40px;
}
@media (max-width: 768px) {
  .hm .inner .container .box {
    width: 100%;
    flex-direction: column;
    padding: 24px 16px 16px;
    gap: 20px;
  }
}
.hm .inner .container .box .infomation {
  width: 43%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .hm .inner .container .box .infomation {
    width: 100%;
    gap: 24px;
  }
}
.hm .inner .container .box .infomation .logo {
  width: 100%;
}
.hm .inner .container .box .infomation .image {
  width: 100%;
}
.hm .inner .container .box .infomation .tel {
  width: 74%;
}
@media (max-width: 768px) {
  .hm .inner .container .box .infomation .tel {
    width: 90%;
  }
}
.hm .inner .container .box .infomation .other {
  width: 62%;
}
@media (max-width: 768px) {
  .hm .inner .container .box .infomation .other {
    width: 80%;
  }
}
.hm .inner .container .box .charm {
  width: 53%;
}
@media (max-width: 768px) {
  .hm .inner .container .box .charm {
    width: 100%;
  }
}

/* フォームセクション */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 0 50px;
}
@media (max-width: 768px) {
  .contact {
    padding: 40px 0;
  }
}

.contact_title {
  width: 100%;
}

.confirm_message {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 70px;
  font-weight: 500;
  font-size: 1.2em;
}

.thanks_title {
  font-size: 1.8em;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .thanks_title {
    font-size: 1.7em;
  }
}

.thanks_message {
  text-align: center;
  line-height: 1.8;
  font-weight: 500;
  font-size: 1.2em;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .thanks_message {
    text-align: justify;
    margin-top: 20px;
  }
}

.home_button {
  margin: 0 auto;
  margin-top: 80px;
  padding: 15px 0;
  font-size: 1.2em;
  text-align: center;
  font-weight: 200;
  background-color: #000;
  color: #fff;
  width: 30%;
  border: 1px solid #000;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .home_button {
    width: 100%;
  }
}
.home_button:hover {
  background-color: #fff;
  color: #000;
}

.wp_form_container {
  background-color: #fff;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .wp_form_container {
    padding: 20px;
  }
}

/* フッター下の余白対策(サンクスページのみの仕様) */
.footer_space {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* コピーライト */
.footer {
  margin-top: auto;
  padding: 20px 0 50px;
  background-color: #05080F;
}
@media (max-width: 768px) {
  .footer {
    padding: 20px 0 40px;
  }
}

.copylight {
  text-align: center;
  color: #fff;
  line-height: 1.4;
}/*# sourceMappingURL=style.css.map */