/**
 * File: main.css
 * Usage: トップページのスタイルを定義します。
 */
:root, body, html {
  font-family: "hiragino-mincho-pron", "Noto Serif JP", sans-serif;
  font-weight: 300;
  font-style: normal;
}

h1, h2, h3 {
  font-family: "hiragino-mincho-pron", "Noto Serif JP", sans-serif;
  font-weight: 600;
  font-style: normal;
}

/*------------------------------------------
  共通設定・変数
------------------------------------------*/
:root {
  --primary-color: #c69d06;
  --header-z-index: 1000;
  --nav-z-index: 200;
  --hamburger-z-index: 300;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.sm_only,
.lessThan_md {
  display: block;
}

.md_only,
.lg_only,
.moreThan_md {
  display: none;
}

.hp_mt20 {
  margin-top: 20px;
}

/* 背景テキストホバーのリフレクション */
.el_lightingTxt {
  color: transparent;
  background-color: #ececec;
  background-image: radial-gradient(circle at center,
      #ffffff 0%,
      #ffffff 30%,
      #ececec 70%);
  background-repeat: no-repeat;
  background-size: 150px 150px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*------------------------------------------
  Header
------------------------------------------*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  padding: 8px 20px;
  background-color: white;
  z-index: var(--header-z-index);
}

header .bl_headerCont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: 1400px; */
  margin-inline: auto;
  /* width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; */
  margin-left: auto;
  width: 100%;
}

header .bl_headerCont .bl_logoWrap {
  width: 100%;
  max-width: 170px;
  /* position: relative; */
  /* z-index: var(--hamburger-z-index); */
}

header .bl_headerCont .bl_logoWrap img {
  width: 100%;
}

header .bl_headerCont .bl_headerBtns {
  display: flex;
  margin-right: 36px;
  text-align: center;
}

/*------------------------------------------
    subpHeader
------------------------------------------*/
.bl_subpHeader {
  margin-top: 58px;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.el_subpHeaderImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #ffd2d2;
}

.el_subpHeaderImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*------------------------------------------
    subpSubheading
------------------------------------------*/

.bl_subpSubheading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bl_subpSubheading h2 {
  font-size: 20px;
}

.bl_subpSubheading span {
  display: block;
  width: 32px;
  height: 1px;
  background: #C69D06;
}

/*------------------------------------------
    subpBottom
------------------------------------------*/

.bl_subpBottom {
  height: 180px;
  display: flex;
  align-items: center;
  background: #F0E4DE;
}

.bl_subpBottom .el_imgWrap {
  overflow: hidden;
  width: 50%;
  height: 100%;
}

.bl_subpBottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.bl_subpBottom .bl_subpBottom_txt {
  display: flex;
  flex-direction: column;
  padding-inline: 8px;
}

.bl_subpBottom p {
  text-align: start;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #583C00;
}

.bl_subpBottom .bl_subpBottom_txt .el_btn {
  border: #c69d06 1px solid;
  background: none;
  width: 168px;
  height: 28px;
  margin-top: 8px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.bl_subpBottom .bl_subpBottom_txt .el_btn:hover {
  background-color: #c69d06;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(198, 157, 6, 0.5);
}

@media screen and (min-width: 768px) {
  .bl_subpSubheading {
    gap: 24px;
  }

  .bl_subpSubheading h2 {
    font-size: 32px;
  }

  .bl_subpSubheading span {
    width: 60px;
  }
}

.el_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  height: 48px;
  background: #ffffff;
  color: #000;
  border-radius: 50px;
  border: #C69D06 1px solid;
  color: #C69D06;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.el_btn:hover {
  background-color: #C69D06;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(198, 157, 6, 0.5);
}

.el_btn.el_btnMt {
  margin-top: 40px;
}

.el_btn.el_btnLeft {
  margin-left: 0;
}

.el_btn.el_btnRight {
  margin-right: 0;
}

.el_btn.hp_noBg {
  background: #ffffff00;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.el_btn.hp_noBg:hover {
  background-color: #C69D06;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(198, 157, 6, 0.5);
}

/*------------------------------------------
  pyonpyon（アニメーション用コンテナ）
------------------------------------------*/
.pyonpyon {
  background-color: var(--primary-color) !important;
  color: #fff;
  font-size: 14px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  z-index: var(--header-z-index);
}

.pyonpyon-text {
  font-size: 14px;
}

/* アニメーション用クラス：SVGがぴょんと動く */
.pyon-animate {
  -webkit-animation: pyon 0.3s linear;
  animation: pyon 0.3s linear;/
}

@-webkit-keyframes pyon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-17px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pyon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-17px);
  }

  100% {
    transform: translateY(0);
  }
}

.bl_navCont_sp .pyonpyon {
  position: absolute;
  top: 8px;
  right: 60px;
}

/*------------------------------------------
  ハンバーガーメニュー
------------------------------------------*/
.hamburger {
  position: absolute;
  right: 20px;
  top: 8px;
  width: 24px;
  height: 40px;
  cursor: pointer;
  z-index: var(--hamburger-z-index);
}

.hamburger_line {
  position: absolute;
  width: 24px;
  height: 1px;
  right: 0;
  background-color: var(--primary-color);
  transition: all 0.5s;
}

.hamburger_line1 {
  top: 12px;
}

.hamburger_line2 {
  top: 20px;
}

.hamburger_line3 {
  top: 28px;
}

/* ハンバーガークリック時 */
.open .hamburger_line1 {
  transform: rotate(-45deg);
  top: 18px;
}

.open .hamburger_line2 {
  opacity: 0;
}

.open .hamburger_line3 {
  transform: rotate(45deg);
  top: 18px;
}

/*------------------------------------------
  SPナビ（全画面ナビゲーション）
------------------------------------------*/
.bl_navCont_sp {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: var(--nav-z-index);
  overflow-y: auto;
}

.open .bl_navCont_sp {
  right: 0;
}

.bl_navCont_sp>ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 320px;
  margin-inline: auto;
  margin-top: 100px;
}

.bl_navCont_sp>ul li {
  text-align: start;
  font-size: 20px;
}

.bl_navCont_sp ul li a {
  color: #000;
  line-height: 1.4em;
}

/*------------------------------------------
  アコーディオンメニュー
------------------------------------------*/
.accordion-header {
  display: block;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-header.active+.accordion-content {
  max-height: 555px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.accordion-header.active+.accordion-content.un_worry {
  gap: 16px;
}

.post-group ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.accordion-content a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4em;
}

/*------------------------------------------
  .bl_navCont_cat 内のスタイル
------------------------------------------*/
.bl_navCont_cat>p {
  font-size: 18px;
}

.bl_navCont_cat>p::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--primary-color);
  margin-right: 8px;
  vertical-align: middle;
}

.post-container {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.post-container.un_WholeBody {
  flex-wrap: wrap;
  flex-direction: row;
}

/*------------------------------------------
  footer フッター
------------------------------------------*/
footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-block: 20px;
  background-image: url('../img/footer/footer-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
}

footer .bl_footer_ttl {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  align-items: center;
  width: 546px;
}

footer .bl_footerCont {
  margin-top: 112px;
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
  width: 365px;
}

footer .bl_footerCont p {
  font-size: 14px;
}

footer .bl_footerCont .bl_footerLinks {
  display: flex;
  width: 320px;
  justify-content: space-between;
  margin-inline: auto;
}

footer .bl_footerCont .bl_footerLinks ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .bl_footerCont .bl_footerLinks a {
  font-size: 14px;
}

footer .bl_footerCont .bl_footerLinks ul li a {
  color: #000;
}

footer .bl_footerInfo_wrap {
  margin-top: 20px;
}

/* フッターのバナー */
footer>a {
  margin-top: 40px;
}


footer .bl_footerCont_info {
  margin-top: 40px;
}

footer .bl_footerCont_info p {
  font-size: 14px;
}

footer .bl_footer_subCont {
  display: flex;
  flex-wrap: wrap;
  max-width: 320px;
  gap: 0px 4px;
  margin-top: 20px;
}

footer .bl_footer_subCont a {
  color: #000;
  font-size: 10px;
  line-height: 1em;
}

/*------------------------------------------
 Breadcrumbs
------------------------------------------*/
.Breadcrumb * {
	font-size: 12px;
}

.Breadcrumb *:not(.separator) {
	color: #c43a3a !important;
	transition: color 0.3s ease
}

.Breadcrumb *:not(.separator):hover {
	color: rgb(209, 182, 30) !important;
}

.Breadcrumb .separator {
	margin-inline: 5px;
	font-size: 12px;
}

.Breadcrumb__list a:after {
	content: none;
}

/*------------------------------------------
 WPCF7　コンタクトフォーム
------------------------------------------*/
.wpcf7-form-control.wpcf7-radio.el_radioBtn {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wpcf7-form-control.wpcf7-radio.el_radioBtn label {
  display: flex;
  gap: 8px;
}

.el_radioBtn span label input {
  width: unset;
}

.el_radioBtn .wpcf7-list-item {
  margin: 0;
}

/*------------------------------------------
 privacy policy　プライバシーポリシー

------------------------------------------*/
.privacy-policy {
  padding: 40px 20px;
  max-width: 800px;
  margin-inline: auto;
}

.privacy-policy p {
  margin-top: 8px;
}

.privacy-policy h2 {
  margin-top: 16px;
  font-size: 28px;
}

/*------------------------------------------
  サイトマップ　sitemap
------------------------------------------*/
.sitemap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-block: 80px;
}

.toc_sitemap {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
}

.toc_sitemap ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {

  /*------------------------------------------
  共通設定・変数
------------------------------------------*/
  .sm_only {
    display: none;
  }

  .md_only,
  .moreThan_md {
    display: block;
  }

  /*------------------------------------------
  footer フッター
------------------------------------------*/
  footer {
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    padding-block: 160px 20px;
    align-items: flex-start;
    gap: 40px;
  }

  footer .bl_footerCont {
    margin-inline: unset;
    margin-top: 0;
  }

  footer .bl_footer_subCont {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(6%);
  }

  footer .bl_footerInfo_wrap {
    position: relative;
    margin-top: 0;
  }

  footer .bl_footerCont_info {
    margin-top: 16px;
  }

  footer .bl_footerCont_info h2 {
    font-size: 20px;
  }



  /*------------------------------------------
    subpBottom
------------------------------------------*/

  .bl_subpBottom {
    height: 356px;
  }

  .bl_subpBottom .bl_subpBottom_txt {
    padding-inline: 47px;
  }

  .bl_subpBottom p {
    font-size: 32px;
  }

  .bl_subpBottom .bl_subpBottom_txt .el_btn {
    border: #c69d06 1px solid;
    background: none;
    width: 400px;
    height: 60px;
    margin-top: 80px;
  }

  /*------------------------------------------
 privacy policy　プライバシーポリシー

------------------------------------------*/

  .privacy-policy h2 {
    margin-top: 20px;
  }
	
  .Breadcrumb * {
	font-size: 14px;
  }
}
	
}

@media (min-width: 1024px) {
	/*------------------------------------------
 Breadcrumbs
------------------------------------------*/

.Breadcrumb > *:not(.separator) {
	font-size: 14px;
  }
}

@media (min-width: 1280px) {

  /*------------------------------------------
  共通設定・変数
------------------------------------------*/
  .md_only,
  .lessThan_md {
    display: none;
  }

  /* large専用は表示 */
  .lg_only {
    display: block;
  }

  /*------------------------------------------
  header ヘッダー
------------------------------------------*/
  .bl_navCont_pc {
    display: block;
    /* 横並びにするための flex 設定 */
    flex: 1;
    margin: 0 20px;
  }

  .bl_navCont_pc ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }

  .bl_navCont_pc ul li {
    position: relative;
  }

  .post-container {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 36px;
  }

  .bl_navCont_pc ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
  }

  /* アコーディオンメニューPC版：親 li を相対位置にし、子要素（accordion-content）を絶対配置 */
  .bl_navCont_pc .has-accordion {
    position: relative;
    font-size: 14px;
  }

  .bl_navCont_pc .accordion-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out;

    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.6s ease-in-out,
      visibility 0.6s ease-in-out;
  }

  .bl_navCont_pc .accordion-header.active+.accordion-content {
    max-height: none !important;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    align-items: flex-start;
    padding: 20px;

    opacity: 1;
    visibility: visible;
  }

  .bl_navCont_pc .post-container .post-group ul {
    gap: 8px;
    align-items: flex-start;
  }

  .cat-title::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background-color: var(--primary-color);
    margin-right: 8px;
    vertical-align: middle;
  }

  .post-container {
    margin-top: 16px;
  }

  header .bl_headerCont .bl_headerBtns {
    margin-right: 0px;
  }



  /*------------------------------------------
  footer フッター
------------------------------------------*/
  footer {
    padding-block: 160px 20px;
    gap: 200px;
  }

  footer .bl_footerCont .bl_footerLinks {
    width: 404px;
  }

  footer .bl_footer_subCont {
    transform: translateX(34%);
    max-width: unset;
  }

  /*------------------------------------------
 privacy policy　プライバシーポリシー

------------------------------------------*/
  .el_btn {
    height: 60px;
  }

  .el_btn.el_btnMt {
    margin-top: 80px;
  }
}

@media (min-width: 1640px) {}