@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  background-repeat: no-repeat;
  /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  overflow-wrap: break-word;
  /* 3 */
  -moz-tab-size: 4;
  /* 4 */
  tab-size: 4;
  /* 4 */
  -webkit-tap-highlight-color: transparent;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit;
  /* 1 */
  height: 0;
  /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
  overflow: auto;
  /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse;
  /* 1 */
  border-color: inherit;
  /* 2 */
  text-indent: 0;
  /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0;
  /* 1 */
  resize: vertical;
  /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type="search" i]) {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy="true" i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Use the default user interface font in all browsers (opinionated).
 */
html {
  font-family: system-ui, -apple-system, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/**
 * Use the default monospace user interface font in all browsers (opinionated).
 */
code,
kbd,
samp,
pre {
  font-family: ui-monospace, "Menlo", "Consolas", "Roboto Mono", "Ubuntu Monospace", "Noto Mono", "Oxygen Mono", "Liberation Mono", monospace, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
:where(button, input, select, textarea) {
  background-color: transparent;
  /* 1 */
  border: 1px solid WindowFrame;
  /* 1 */
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  letter-spacing: inherit;
  /* 2 */
  padding: 0.25em 0.375em;
  /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(select) {
  appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center/1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */
:where(select[multiple]) {
  background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */
:where([type="color" i], [type="range" i]) {
  border-width: 0;
  padding: 0;
}

/* 源ノ明朝 */
@font-face {
  font-family: "notoserif_l";
  src: url("../../common/fonts/NotoSerifJP-Light.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "notoserif_r";
  src: url("../../common/fonts/NotoSerifJP-Regular.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "notoserif_m";
  src: url("../../common/fonts/NotoSerifJP-Medium.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "notoserif_s";
  src: url("../../common/fonts/NotoSerifJP-SemiBold.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-SemiBold.woff") format("woff");
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* futura */
@font-face {
  font-family: "futura";
  src: url("../../common/fonts/futura.woff2") format("woff2"), url("../../common/fonts/futura.woff") format("woff");
}
/* futura-medium-italic */
@font-face {
  font-family: "futura-medium-italic";
  src: url("../../common/fonts/futura-medium-italic.woff2") format("woff2"), url("../../common/fonts/futura-medium-italic.woff") format("woff");
}
/* MinionPro-Bold */
@font-face {
  font-family: "MinionPro-Bold";
  src: url("../../common/fonts/MinionPro-Bold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Bold.woff") format("woff");
  font-weight: 700;
}
/* MinionPro-Medium */
@font-face {
  font-family: "MinionPro-Medium";
  src: url("../../common/fonts/MinionPro-Medium.woff2") format("woff2"), url("../../common/fonts/MinionPro-Medium.woff") format("woff");
  font-weight: 500;
}
/* MinionPro-Regular */
@font-face {
  font-family: "MinionPro-Regular";
  src: url("../../common/fonts/MinionPro-Regular.woff2") format("woff2"), url("../../common/fonts/MinionPro-Regular.woff") format("woff");
  font-weight: 400;
}
/* MinionPro-Semibold */
@font-face {
  font-family: "MinionPro-Semibold";
  src: url("../../common/fonts/MinionPro-Semibold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Semibold.woff") format("woff");
  font-weight: 600;
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* 游ゴシック体 */
/* font-family: "Yu Gothic", "游ゴシック体", sans-serif; */
/* 游ゴシック体 */
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic-bold.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic-bold.woff") format("woff");
  font-weight: bold;
}
h1 {
  margin: 0;
}

/* 源ノ明朝 */
@font-face {
  font-family: "notoserif_l";
  src: url("../../common/fonts/NotoSerifJP-Light.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "notoserif_r";
  src: url("../../common/fonts/NotoSerifJP-Regular.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "notoserif_m";
  src: url("../../common/fonts/NotoSerifJP-Medium.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "notoserif_s";
  src: url("../../common/fonts/NotoSerifJP-SemiBold.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-SemiBold.woff") format("woff");
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* futura */
@font-face {
  font-family: "futura";
  src: url("../../common/fonts/futura.woff2") format("woff2"), url("../../common/fonts/futura.woff") format("woff");
}
/* futura-medium-italic */
@font-face {
  font-family: "futura-medium-italic";
  src: url("../../common/fonts/futura-medium-italic.woff2") format("woff2"), url("../../common/fonts/futura-medium-italic.woff") format("woff");
}
/* MinionPro-Bold */
@font-face {
  font-family: "MinionPro-Bold";
  src: url("../../common/fonts/MinionPro-Bold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Bold.woff") format("woff");
  font-weight: 700;
}
/* MinionPro-Medium */
@font-face {
  font-family: "MinionPro-Medium";
  src: url("../../common/fonts/MinionPro-Medium.woff2") format("woff2"), url("../../common/fonts/MinionPro-Medium.woff") format("woff");
  font-weight: 500;
}
/* MinionPro-Regular */
@font-face {
  font-family: "MinionPro-Regular";
  src: url("../../common/fonts/MinionPro-Regular.woff2") format("woff2"), url("../../common/fonts/MinionPro-Regular.woff") format("woff");
  font-weight: 400;
}
/* MinionPro-Semibold */
@font-face {
  font-family: "MinionPro-Semibold";
  src: url("../../common/fonts/MinionPro-Semibold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Semibold.woff") format("woff");
  font-weight: 600;
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* 游ゴシック体 */
/* font-family: "Yu Gothic", "游ゴシック体", sans-serif; */
/* 游ゴシック体 */
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic-bold.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic-bold.woff") format("woff");
  font-weight: bold;
}
body {
  font-size: 3vw;
  font-size: clamp(15px, 3vw, 16px);
  font-family: "Yu-Gothic";
  font-weight: normal;
  color: #d5d5d5;
  font-feature-settings: "palt";
  background-color: #111111;
}

main {
  background-color: #111111;
  min-height: 80vh;
}

@media screen and (max-width: 900px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 900px) {
  .sp_only {
    display: none !important;
  }
}

img {
  display: block;
  max-width: 100%;
}

a:hover {
  opacity: 0.8;
  cursor: pointer;
}

/*--- 特殊文字プラウザデバイス別対策 ---*/
/* 登録商標マークをテキストとして扱う */
.regmark {
  display: inline;
  font-family: sans-serif;
  /* 絵文字ではなく、サンセリフ体のフォントを使用 */
  font-size: 1.2em;
  /* 現在のテキストサイズに合わせる */
  color: currentColor;
  /* 親要素のテキストカラーを継承 */
  text-rendering: optimizeLegibility;
  /* 読みやすさを重視 */
  -webkit-font-feature-settings: "liga";
  /* Safariにおけるリガチャを使用 */
  font-feature-settings: "liga";
  /* リガチャを使用してテキスト表示を強制 */
}

/*--- トップへ戻るBTN ---*/
#top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  z-index: 100;
}
@media all and (max-width: 900px) {
  #top {
    bottom: 59px;
    right: 8px;
    width: 45px;
  }
}

/*--- トップへ戻るBTN ---*/
#bottomCta {
  display: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 100%;
  z-index: 100;
  background-color: #ffffff7d;
}
#bottomCta .cta_wrap {
  display: flex;
  width: 100%;
}
#bottomCta .cta_wrap a {
  text-decoration: none;
  color: #333;
}
#bottomCta .cta_wrap .cta_tell {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  border: 1px solid #ccc;
}
#bottomCta .cta_wrap .cta_tell .fa-phone {
  transform: scaleX(-1);
}
#bottomCta .cta_wrap .cta_contact {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  border: 1px solid #ccc;
}

/*--- recaptchaバッチ非表示 ---*/
.grecaptcha-badge {
  visibility: hidden;
}

/*--- 準備中ページ ---*/
.comming_soon {
  text-align: center;
  display: flex;
  height: 42vh;
  align-items: center;
  justify-content: center;
}

/*======================================
.breadcrumb
/*======================================*/
.breadcrumb {
  margin-top: 25px;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .breadcrumb {
    margin-bottom: 0;
  }
}
.breadcrumb .breadcrumb_wrap {
  font-size: 12px;
  color: #d5d5d5;
  padding: 1rem 2vh 1rem 11%;
}
@media screen and (max-width: 900px) {
  .breadcrumb .breadcrumb_wrap {
    padding: 1rem 2vh;
  }
}
.breadcrumb .breadcrumb_wrap .fa-home {
  color: #9a8d61;
}
.breadcrumb .breadcrumb_wrap a {
  color: #d5d5d5;
  text-decoration: none;
}

.content_bg_001_header_ttl .content_bg_001_header_container {
  position: relative;
  height: 200px;
}
@media screen and (max-width: 900px) {
  .content_bg_001_header_ttl .content_bg_001_header_container {
    height: 145px;
  }
}
.content_bg_001_header_ttl .content_bg_001_header_container .content_bg_001_header_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
.content_bg_001_header_ttl .content_bg_001_header_container .content_bg_001_header_inner .content_bg_001_header_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60vh;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .content_bg_001_header_ttl .content_bg_001_header_container .content_bg_001_header_inner .content_bg_001_header_bg {
    height: 100vh;
    max-height: 310px;
  }
}
.content_bg_001_header_ttl .content_bg_001_header_container .ttl_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 900px) {
  .content_bg_001_header_ttl .content_bg_001_header_container .ttl_wrap {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
  }
}
.content_bg_001_header_ttl .content_bg_001_header_container .ttl_wrap span {
  font-family: "MinionPro-Regular";
  font-size: 40px;
  text-align: center;
  color: #fff;
  position: relative;
  margin: 0;
  letter-spacing: 2px;
  display: block;
  line-height: 1.2;
}
@media screen and (max-width: 900px) {
  .content_bg_001_header_ttl .content_bg_001_header_container .ttl_wrap span {
    font-size: calc(27px - 4px + 1.06vw);
    letter-spacing: 2px;
  }
}
.content_bg_001_header_ttl .content_bg_001_header_container .ttl_wrap h2 {
  font-family: "notoserif_r";
  color: #fff;
  font-size: 10px;
  text-align: center;
  margin: 0;
  font-weight: normal;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 900px) {
  .content_bg_001_header_ttl .content_bg_001_header_container .ttl_wrap h2 {
    font-size: calc(7px - 4px + 1.06vw);
    letter-spacing: 0.5px;
  }
}
.content_bg_001_header_ttl .content_bg_001_header_container .border_line {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  max-height: 100px;
  background-color: #b0ab85cc;
}
@media screen and (max-width: 900px) {
  .content_bg_001_header_ttl .content_bg_001_header_container .border_line {
    top: 108px;
    max-height: 68px;
  }
}

section#company-contact .company_bg_container {
  background-color: #fff;
  padding: 100px 0 140px;
}
@media screen and (max-width: 900px) {
  section#company-contact .company_bg_container {
    padding: 60px 0 73px;
  }
}
section#company-contact .company_bg_container .company_contact_wrap {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 900px) {
  section#company-contact .company_bg_container .company_contact_wrap {
    flex-direction: column;
    gap: 40px;
  }
}
section#company-contact .company_bg_container .company_contact_col {
  width: 50%;
}
@media screen and (max-width: 900px) {
  section#company-contact .company_bg_container .company_contact_col {
    width: 100%;
  }
}
section#company-contact .company_bg_container .company_contact_col .el_head_title {
  margin-bottom: 38px;
}
/* in-viewクラスが追加下から上へ出現を開始 */
.js_sec_wrap.up {
  opacity: 0;
  transform: translateY(20px);
}

.js_sec_wrap.up.in-view {
  animation: fadeInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

/* in-viewクラスが追加横ボーダー徐々に右に伸びるを開始 */
.js_sec_wrap.toright {
  width: 0;
  opacity: 0;
}

.js_sec_wrap.toright.in-view {
  animation: borderToRight 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* in-viewクラスが追加縦ボーダー徐々に下に伸びるを開始 */
.js_sec_wrap.tobottom.in-view {
  animation: borderToBottom 2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

/* 下から上へ出現 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 横ボーダー徐々に右に伸びる - より洗練された動き */
@keyframes borderToRight {
  0% {
    width: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
/* 縦ボーダー徐々に下に伸びる */
@keyframes borderToBottom {
  0% {
    height: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    height: 100px;
    opacity: 1;
    @media screen and (max-width: 900px) {
      height: 68px;
    }
  }
}
/* 縦ボーダー徐々に下に伸びる */
@keyframes borderToBottom2 {
  0% {
    height: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}
.d1 {
  animation-delay: 0.1s !important;
}

.d2 {
  animation-delay: 0.2s !important;
}

.d3 {
  animation-delay: 0.3s !important;
}

.d4 {
  animation-delay: 0.4s !important;
}

.d5 {
  animation-delay: 0.5s !important;
}

.d6 {
  animation-delay: 0.6s !important;
}

.d7 {
  animation-delay: 0.7s !important;
}

.d8 {
  animation-delay: 0.8s !important;
}

.d9 {
  animation-delay: 0.9s !important;
}

.d10 {
  animation-delay: 1s !important;
}

.d11 {
  animation-delay: 1.1s !important;
}

.d12 {
  animation-delay: 1.2s !important;
}

.d13 {
  animation-delay: 1.3s !important;
}

.d14 {
  animation-delay: 1.4s !important;
}

.d15 {
  animation-delay: 1.5s !important;
}

.d16 {
  animation-delay: 1.6s !important;
}

.d17 {
  animation-delay: 1.7s !important;
}

.d18 {
  animation-delay: 1.8s !important;
}

.d19 {
  animation-delay: 1.9s !important;
}

.d20 {
  animation-delay: 2s !important;
}

.d21 {
  animation-delay: 2.1s !important;
}

.d22 {
  animation-delay: 2.2s !important;
}

.d23 {
  animation-delay: 2.3s !important;
}

.d24 {
  animation-delay: 2.4s !important;
}

.d25 {
  animation-delay: 2.5s !important;
}

.d26 {
  animation-delay: 2.6s !important;
}

.d27 {
  animation-delay: 2.7s !important;
}

.d28 {
  animation-delay: 2.8s !important;
}

.d29 {
  animation-delay: 2.9s !important;
}

.d30 {
  animation-delay: 3s !important;
}

.d31 {
  animation-delay: 3.1s !important;
}

.d32 {
  animation-delay: 3.2s !important;
}

.d33 {
  animation-delay: 3.3s !important;
}

.d34 {
  animation-delay: 3.4s !important;
}

.d35 {
  animation-delay: 3.5s !important;
}

.d36 {
  animation-delay: 3.6s !important;
}

.d37 {
  animation-delay: 3.7s !important;
}

.d38 {
  animation-delay: 3.8s !important;
}

.d39 {
  animation-delay: 3.9s !important;
}

.d40 {
  animation-delay: 4s !important;
}

.d41 {
  animation-delay: 4.1s !important;
}

.d42 {
  animation-delay: 4.2s !important;
}

.d43 {
  animation-delay: 4.3s !important;
}

.d44 {
  animation-delay: 4.4s !important;
}

.d45 {
  animation-delay: 4.5s !important;
}

.d46 {
  animation-delay: 4.6s !important;
}

.d47 {
  animation-delay: 4.7s !important;
}

.d48 {
  animation-delay: 4.8s !important;
}

.d49 {
  animation-delay: 4.9s !important;
}

.d50 {
  animation-delay: 5s !important;
}

.d51 {
  animation-delay: 5.1s !important;
}

.d52 {
  animation-delay: 5.2s !important;
}

.d53 {
  animation-delay: 5.3s !important;
}

.d54 {
  animation-delay: 5.4s !important;
}

.d55 {
  animation-delay: 5.5s !important;
}

.d56 {
  animation-delay: 5.6s !important;
}

.d57 {
  animation-delay: 5.7s !important;
}

.d58 {
  animation-delay: 5.8s !important;
}

.d59 {
  animation-delay: 5.9s !important;
}

.d60 {
  animation-delay: 6s !important;
}

.d61 {
  animation-delay: 6.1s !important;
}

.d62 {
  animation-delay: 6.2s !important;
}

.d63 {
  animation-delay: 6.3s !important;
}

.d64 {
  animation-delay: 6.4s !important;
}

.d65 {
  animation-delay: 6.5s !important;
}

.d66 {
  animation-delay: 6.6s !important;
}

.d67 {
  animation-delay: 6.7s !important;
}

.d68 {
  animation-delay: 6.8s !important;
}

.d69 {
  animation-delay: 6.9s !important;
}

.d70 {
  animation-delay: 7s !important;
}

.d71 {
  animation-delay: 7.1s !important;
}

.d72 {
  animation-delay: 7.2s !important;
}

.d73 {
  animation-delay: 7.3s !important;
}

.d74 {
  animation-delay: 7.4s !important;
}

.d75 {
  animation-delay: 7.5s !important;
}

.d76 {
  animation-delay: 7.6s !important;
}

.d77 {
  animation-delay: 7.7s !important;
}

.d78 {
  animation-delay: 7.8s !important;
}

.d79 {
  animation-delay: 7.9s !important;
}

.d80 {
  animation-delay: 8s !important;
}

.d81 {
  animation-delay: 8.1s !important;
}

.d82 {
  animation-delay: 8.2s !important;
}

.d83 {
  animation-delay: 8.3s !important;
}

.d84 {
  animation-delay: 8.4s !important;
}

.d85 {
  animation-delay: 8.5s !important;
}

.d86 {
  animation-delay: 8.6s !important;
}

.d87 {
  animation-delay: 8.7s !important;
}

.d88 {
  animation-delay: 8.8s !important;
}

.d89 {
  animation-delay: 8.9s !important;
}

.d90 {
  animation-delay: 9s !important;
}

.d91 {
  animation-delay: 9.1s !important;
}

.d92 {
  animation-delay: 9.2s !important;
}

.d93 {
  animation-delay: 9.3s !important;
}

.d94 {
  animation-delay: 9.4s !important;
}

.d95 {
  animation-delay: 9.5s !important;
}

.d96 {
  animation-delay: 9.6s !important;
}

.d97 {
  animation-delay: 9.7s !important;
}

.d98 {
  animation-delay: 9.8s !important;
}

.d99 {
  animation-delay: 9.9s !important;
}

.d100 {
  animation-delay: 10s !important;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    /* 初期位置 */
  }
  50% {
    transform: translateY(15px);
    /* 下に15px動かす */
  }
}
.d02 {
  animation-delay: 0.2s !important;
}

.d04 {
  animation-delay: 0.4s !important;
}

.d06 {
  animation-delay: 0.6s !important;
}

.d08 {
  animation-delay: 0.8s !important;
}

.d1 {
  animation-delay: 1s !important;
}

.d12 {
  animation-delay: 1.2s !important;
}

.d14 {
  animation-delay: 1.4s !important;
}

.d16 {
  animation-delay: 1.6s !important;
}

.d18 {
  animation-delay: 1.8s !important;
}

.d2 {
  animation-delay: 2s !important;
}

.d22 {
  animation-delay: 2.2s !important;
}

.d24 {
  animation-delay: 2.4s !important;
}

.d26 {
  animation-delay: 2.6s !important;
}

.d28 {
  animation-delay: 2.8s !important;
}

.d3 {
  animation-delay: 3s !important;
}

/* 源ノ明朝 */
@font-face {
  font-family: "notoserif_l";
  src: url("../../common/fonts/NotoSerifJP-Light.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "notoserif_r";
  src: url("../../common/fonts/NotoSerifJP-Regular.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "notoserif_m";
  src: url("../../common/fonts/NotoSerifJP-Medium.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "notoserif_s";
  src: url("../../common/fonts/NotoSerifJP-SemiBold.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-SemiBold.woff") format("woff");
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* futura */
@font-face {
  font-family: "futura";
  src: url("../../common/fonts/futura.woff2") format("woff2"), url("../../common/fonts/futura.woff") format("woff");
}
/* futura-medium-italic */
@font-face {
  font-family: "futura-medium-italic";
  src: url("../../common/fonts/futura-medium-italic.woff2") format("woff2"), url("../../common/fonts/futura-medium-italic.woff") format("woff");
}
/* MinionPro-Bold */
@font-face {
  font-family: "MinionPro-Bold";
  src: url("../../common/fonts/MinionPro-Bold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Bold.woff") format("woff");
  font-weight: 700;
}
/* MinionPro-Medium */
@font-face {
  font-family: "MinionPro-Medium";
  src: url("../../common/fonts/MinionPro-Medium.woff2") format("woff2"), url("../../common/fonts/MinionPro-Medium.woff") format("woff");
  font-weight: 500;
}
/* MinionPro-Regular */
@font-face {
  font-family: "MinionPro-Regular";
  src: url("../../common/fonts/MinionPro-Regular.woff2") format("woff2"), url("../../common/fonts/MinionPro-Regular.woff") format("woff");
  font-weight: 400;
}
/* MinionPro-Semibold */
@font-face {
  font-family: "MinionPro-Semibold";
  src: url("../../common/fonts/MinionPro-Semibold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Semibold.woff") format("woff");
  font-weight: 600;
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* 游ゴシック体 */
/* font-family: "Yu Gothic", "游ゴシック体", sans-serif; */
/* 游ゴシック体 */
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic-bold.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic-bold.woff") format("woff");
  font-weight: bold;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background-color: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  padding: 5px 0 5px;
}
@media screen and (max-width: 900px) {
  header {
    padding: 5px 0 7px;
  }
  header.fixed {
    position: fixed !important;
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 900px) and (max-width: 900px) {
  header.fixed {
    background-color: #111111d4 !important;
  }
}
header.header_blue {
  position: initial;
  background-color: #111111;
}
header .header_wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 900px) {
  header .header_wrap {
    position: relative;
  }
}
header .header_wrap .header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 11px 10px 11px;
}
@media screen and (max-width: 1330px) {
  header .header_wrap .header_top {
    justify-content: center;
  }
}
@media screen and (max-width: 900px) {
  header .header_wrap .header_top {
    padding: 0.2rem 0.5rem;
    justify-content: flex-start;
  }
}
header .header_wrap .header_top .header_logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  header .header_wrap .header_top .header_logo {
    width: 55%;
    display: flex;
    align-items: center;
  }
}
header .header_wrap .header_top .header_logo .header_logo_img {
  max-width: 71px;
  margin-left: 7px;
}
@media screen and (max-width: 900px) {
  header .header_wrap .header_top .header_logo .header_logo_img {
    width: 34%;
  }
}
header .header_wrap .header_top .header_logo .header_logo_text {
  font-family: "notoserif_s";
  font-size: 19px;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  header .header_wrap .header_top .header_logo .header_logo_text {
    font-size: calc(13px - 4px + 1.06vw);
    padding-top: 2px;
    letter-spacing: 0.8px;
  }
}
header .header_wrap .header_top .header_links {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1330px) {
  header .header_wrap .header_top .header_links {
    width: 100%;
  }
}
header .header_wrap .header_top .header_links .header_menus {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 10px;
}
@media screen and (max-width: 900px) {
  header .header_wrap .header_top .header_links .header_menus {
    flex-direction: column-reverse;
  }
}
header .header_wrap .header_top .header_links .header_menus .header_nav {
  /*--- PC版メニュー ---*/
}
@media screen and (max-width: 900px) {
  header .header_wrap .header_top .header_links .header_menus .header_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2%;
  }
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg {
  padding: 0;
  margin-right: 20%;
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main {
  letter-spacing: 0;
  display: flex;
  justify-content: center;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main {
    display: none;
  }
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li {
  padding: 0 8px;
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li a::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  /* 左端からスタート */
  width: 0;
  /* 初期状態は幅0 */
  height: 1px;
  background-color: #b0ab85;
  transition: width 0.3s ease-in-out;
  /* 幅を徐々に変化させる */
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li a:hover {
  color: #b0ab85;
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li a:hover::after {
  width: 100%;
  /* ホバー時に100%に広げる */
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li.current-menu-parent a {
  color: #b0ab85;
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li.current-menu-parent .current_page_item a {
  color: #b0ab85 !important;
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li.current-menu-item a {
  color: #b0ab85;
  position: relative;
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li.current-menu-item a:after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #b0ab85;
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li.menu-item-has-children {
  position: relative;
  /* 親メニュー項目にホバーしたときにサブメニューを表示 */
  /* 初期設定でサブメニューを非表示に */
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li.menu-item-has-children .sub-menu {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s ease-in-out;
  position: absolute;
  top: 56px;
  left: -90px;
  right: -20px;
  background: #ffffffd1;
  z-index: -10;
  pointer-events: none;
  padding: 7px;
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li.menu-item-has-children .sub-menu li {
  padding: 0;
  display: block;
  border-bottom: 1px solid #aab9be;
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li.menu-item-has-children .sub-menu li:last-child {
  border-bottom: none;
}
header .header_wrap .header_top .header_links .header_menus .header_nav .main_bg .main li.menu-item-has-children .sub-menu li a {
  color: #444444;
  font-size: 15px;
  white-space: initial;
  padding: 6px;
  display: block;
}
@media screen and (max-width: 900px) {
  header .header_wrap .header_top .header_links .header_menus .header_contact {
    padding-right: 62px;
    display: none;
  }
}
header .header_wrap .main_sp {
  margin: 0;
  display: none;
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  left: 0;
  background: #111111d4;
  padding: 5%;
  box-sizing: border-box;
  overflow: auto;
  list-style: none;
  border-bottom: 1px solid #b0ab85;
}
header .header_wrap .main_sp li {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #b0ab85;
}
header .header_wrap .main_sp li:last-child {
  border-bottom: none;
}
header .header_wrap .main_sp li.current-menu-item a {
  color: #b0ab85;
}
header .header_wrap .main_sp li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  display: flex;
}
header .header_wrap .hamburger {
  cursor: pointer;
  position: relative;
  width: 35px;
  height: 22px;
  z-index: 2000;
}
header .header_wrap .hamburger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #b0ab85;
  transition: all 0.3s;
}
header .header_wrap .hamburger span:nth-child(1) {
  left: 0;
  top: 7px;
}
header .header_wrap .hamburger span:nth-child(2) {
  right: 0;
  top: 16px;
}
header .header_wrap .hamburger.open span:nth-child(1) {
  transform: rotate(-45deg);
  top: 10px;
}
header .header_wrap .hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
  top: 10px;
  width: 100%;
}
header #menu-sp_menu .menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
  /* 矢印のスペース */
}
header #menu-sp_menu .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #827c44;
  border-right: 2px solid #827c44;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease-in-out;
}
header #menu-sp_menu .menu-item-has-children.active > a::after {
  transform: translateY(-50%) rotate(135deg);
}
header #menu-sp_menu .sub-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  list-style: none;
  padding-left: 1rem;
}
header #menu-sp_menu .menu-item-has-children.active .sub-menu {
  max-height: 500px;
  /* 適切な最大高さに調整 */
  opacity: 1;
}

.home header .header_wrap .header_top .header_logo .header_logo_img {
  max-width: 100px;
  margin-left: 0px;
}

/* 源ノ明朝 */
@font-face {
  font-family: "notoserif_l";
  src: url("../../common/fonts/NotoSerifJP-Light.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "notoserif_r";
  src: url("../../common/fonts/NotoSerifJP-Regular.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "notoserif_m";
  src: url("../../common/fonts/NotoSerifJP-Medium.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "notoserif_s";
  src: url("../../common/fonts/NotoSerifJP-SemiBold.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-SemiBold.woff") format("woff");
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* futura */
@font-face {
  font-family: "futura";
  src: url("../../common/fonts/futura.woff2") format("woff2"), url("../../common/fonts/futura.woff") format("woff");
}
/* futura-medium-italic */
@font-face {
  font-family: "futura-medium-italic";
  src: url("../../common/fonts/futura-medium-italic.woff2") format("woff2"), url("../../common/fonts/futura-medium-italic.woff") format("woff");
}
/* MinionPro-Bold */
@font-face {
  font-family: "MinionPro-Bold";
  src: url("../../common/fonts/MinionPro-Bold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Bold.woff") format("woff");
  font-weight: 700;
}
/* MinionPro-Medium */
@font-face {
  font-family: "MinionPro-Medium";
  src: url("../../common/fonts/MinionPro-Medium.woff2") format("woff2"), url("../../common/fonts/MinionPro-Medium.woff") format("woff");
  font-weight: 500;
}
/* MinionPro-Regular */
@font-face {
  font-family: "MinionPro-Regular";
  src: url("../../common/fonts/MinionPro-Regular.woff2") format("woff2"), url("../../common/fonts/MinionPro-Regular.woff") format("woff");
  font-weight: 400;
}
/* MinionPro-Semibold */
@font-face {
  font-family: "MinionPro-Semibold";
  src: url("../../common/fonts/MinionPro-Semibold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Semibold.woff") format("woff");
  font-weight: 600;
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* 游ゴシック体 */
/* font-family: "Yu Gothic", "游ゴシック体", sans-serif; */
/* 游ゴシック体 */
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic-bold.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic-bold.woff") format("woff");
  font-weight: bold;
}
footer {
  background-color: #222222;
}
@media screen and (max-width: 900px) {
  footer {
    margin-bottom: 55.5px;
  }
}
footer .footer_wrap {
  padding-top: 75px;
}
footer .footer_wrap .footer_logo {
  max-width: 120px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 900px) {
  footer .footer_wrap .footer_logo {
    max-width: 148px;
    max-width: 17%;
  }
}
footer .footer_wrap .footer_menus {
  border-bottom: 1px solid #505050;
}
footer .footer_wrap .footer_menus .footer_menus_wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 27px;
}
footer .footer_wrap .footer_menus .footer_menus_wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 31px;
}
@media screen and (max-width: 900px) {
  footer .footer_wrap .footer_menus .footer_menus_wrap ul {
    gap: 19px;
  }
}
footer .footer_wrap .footer_menus .footer_menus_wrap .footer_menu_item a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  footer .footer_wrap .footer_menus .footer_menus_wrap .footer_menu_item a {
    font-size: calc(12px - 4px + 1.06vw);
  }
}
footer .footer_wrap .footer_policy_pc {
  display: block;
}
@media screen and (max-width: 900px) {
  footer .footer_wrap .footer_policy_pc {
    display: none;
  }
}
footer .footer_wrap .footer_policy_pc .footer_policy_lists {
  border-bottom: 1px solid #505050;
  display: flex;
  justify-content: center;
  color: #fff;
  padding: 22px 0;
  gap: 31px;
  margin: 0;
  list-style: none;
}
footer .footer_wrap .footer_policy_pc .footer_policy_lists li {
  position: relative;
}
footer .footer_wrap .footer_policy_pc .footer_policy_lists li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -16px;
  width: 1px;
  height: 12px;
  background-color: #fff;
}
footer .footer_wrap .footer_policy_pc .footer_policy_lists li:last-child::after {
  display: none;
}
footer .footer_wrap .footer_policy_pc .footer_policy_lists li a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  position: relative;
}
footer .footer_wrap .footer_policy_sp {
  display: none;
}
@media screen and (max-width: 900px) {
  footer .footer_wrap .footer_policy_sp {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  footer .footer_wrap .footer_policy_sp .footer_policy_lists {
    border-bottom: 1px solid #505050;
    color: #fff;
    padding: 16px 0;
    margin: 0;
    list-style: none;
  }
  footer .footer_wrap .footer_policy_sp .footer_policy_lists .footer_policy_list_wrap {
    display: flex;
    justify-content: center;
    gap: 19px;
  }
  footer .footer_wrap .footer_policy_sp .footer_policy_lists .footer_policy_list_wrap .footer_policy_list {
    position: relative;
  }
  footer .footer_wrap .footer_policy_sp .footer_policy_lists .footer_policy_list_wrap .footer_policy_list::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    width: 1px;
    height: 10px;
    background-color: #fff;
  }
  footer .footer_wrap .footer_policy_sp .footer_policy_lists .footer_policy_list_wrap .footer_policy_list:nth-child(2)::after {
    display: none;
  }
  footer .footer_wrap .footer_policy_sp .footer_policy_lists .footer_policy_list_wrap .footer_policy_list:last-child::after {
    display: none;
  }
  footer .footer_wrap .footer_policy_sp .footer_policy_lists .footer_policy_list_wrap .footer_policy_list a {
    color: #fff;
    font-size: calc(11px - 4px + 1.06vw);
    text-decoration: none;
    position: relative;
  }
}
footer .footer_wrap .footer_copyright {
  padding: 18px 0;
}
@media screen and (max-width: 900px) {
  footer .footer_wrap .footer_copyright {
    padding: 19px 0;
  }
}
footer .footer_wrap .footer_copyright p {
  color: #a7a7a7;
  font-size: 11px;
  text-align: center;
  margin: 0;
  letter-spacing: 0;
}
@media screen and (max-width: 900px) {
  footer .footer_wrap .footer_copyright p {
    font-size: calc(10px - 4px + 1.06vw);
  }
}

/* 源ノ明朝 */
@font-face {
  font-family: "notoserif_l";
  src: url("../../common/fonts/NotoSerifJP-Light.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "notoserif_r";
  src: url("../../common/fonts/NotoSerifJP-Regular.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "notoserif_m";
  src: url("../../common/fonts/NotoSerifJP-Medium.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "notoserif_s";
  src: url("../../common/fonts/NotoSerifJP-SemiBold.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-SemiBold.woff") format("woff");
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* futura */
@font-face {
  font-family: "futura";
  src: url("../../common/fonts/futura.woff2") format("woff2"), url("../../common/fonts/futura.woff") format("woff");
}
/* futura-medium-italic */
@font-face {
  font-family: "futura-medium-italic";
  src: url("../../common/fonts/futura-medium-italic.woff2") format("woff2"), url("../../common/fonts/futura-medium-italic.woff") format("woff");
}
/* MinionPro-Bold */
@font-face {
  font-family: "MinionPro-Bold";
  src: url("../../common/fonts/MinionPro-Bold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Bold.woff") format("woff");
  font-weight: 700;
}
/* MinionPro-Medium */
@font-face {
  font-family: "MinionPro-Medium";
  src: url("../../common/fonts/MinionPro-Medium.woff2") format("woff2"), url("../../common/fonts/MinionPro-Medium.woff") format("woff");
  font-weight: 500;
}
/* MinionPro-Regular */
@font-face {
  font-family: "MinionPro-Regular";
  src: url("../../common/fonts/MinionPro-Regular.woff2") format("woff2"), url("../../common/fonts/MinionPro-Regular.woff") format("woff");
  font-weight: 400;
}
/* MinionPro-Semibold */
@font-face {
  font-family: "MinionPro-Semibold";
  src: url("../../common/fonts/MinionPro-Semibold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Semibold.woff") format("woff");
  font-weight: 600;
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* 游ゴシック体 */
/* font-family: "Yu Gothic", "游ゴシック体", sans-serif; */
/* 游ゴシック体 */
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic-bold.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic-bold.woff") format("woff");
  font-weight: bold;
}
/*--- 固定ページ共通 ---*/
.page_common_default .privacy_wrap {
  padding-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .page_common_default .privacy_wrap {
    width: 88%;
    margin: 0 auto;
    padding-bottom: 25px;
    padding-top: 20px;
  }
}
.page_common_default .privacy_wrap .privacy_content {
  max-width: 865px;
  margin: 0 auto;
}
.page_common_default .privacy_wrap .privacy_content .privacy_sec {
  color: #fff;
  margin-bottom: 85px;
}
@media screen and (max-width: 900px) {
  .page_common_default .privacy_wrap .privacy_content .privacy_sec {
    margin-bottom: 35px;
  }
}
.page_common_default .privacy_wrap .privacy_content .privacy_sec h3 {
  font-size: 17px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
@media screen and (max-width: 900px) {
  .page_common_default .privacy_wrap .privacy_content .privacy_sec h3 {
    font-size: calc(13px - 4px + 1.06vw);
    margin-bottom: 16px;
  }
}
.page_common_default .privacy_wrap .privacy_content .privacy_sec h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #b0ab85;
  margin-top: 18px;
}
@media screen and (max-width: 900px) {
  .page_common_default .privacy_wrap .privacy_content .privacy_sec h3::after {
    margin-top: 14px;
    margin-left: 2px;
  }
}
.page_common_default .privacy_wrap .privacy_content .privacy_sec p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 900px) {
  .page_common_default .privacy_wrap .privacy_content .privacy_sec p {
    font-size: calc(12px - 4px + 1.06vw);
  }
}
.page_common_default .page_bg {
  padding-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .page_common_default .page_bg {
    width: 88%;
    margin: 0 auto;
    padding-bottom: 25px;
    padding-top: 20px;
  }
}
.page_common_default .page_bg .page_main_wrap {
  max-width: 865px;
  margin: 0 auto;
}
.page_common_default .page_bg .page_main_wrap .cont_wrap {
  color: #fff;
  /* 2階層目以降も同じスタイル */
}
.page_common_default .page_bg .page_main_wrap .cont_wrap .wp-block-group {
  margin-bottom: 85px;
}
@media screen and (max-width: 900px) {
  .page_common_default .page_bg .page_main_wrap .cont_wrap .wp-block-group {
    margin-bottom: 35px;
  }
}
.page_common_default .page_bg .page_main_wrap .cont_wrap h3 {
  font-size: 17px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
@media screen and (max-width: 900px) {
  .page_common_default .page_bg .page_main_wrap .cont_wrap h3 {
    font-size: calc(13px - 4px + 1.06vw);
    margin-bottom: 16px;
  }
}
.page_common_default .page_bg .page_main_wrap .cont_wrap h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #b0ab85;
  margin-top: 18px;
}
@media screen and (max-width: 900px) {
  .page_common_default .page_bg .page_main_wrap .cont_wrap h3::after {
    margin-top: 14px;
    margin-left: 2px;
  }
}
.page_common_default .page_bg .page_main_wrap .cont_wrap p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 900px) {
  .page_common_default .page_bg .page_main_wrap .cont_wrap p {
    font-size: calc(12px - 4px + 1.06vw);
  }
}
.page_common_default .page_bg .page_main_wrap .cont_wrap .wp-block-list {
  list-style: none;
  padding-left: 1.5em;
  counter-reset: section;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .page_common_default .page_bg .page_main_wrap .cont_wrap .wp-block-list {
    font-size: calc(12px - 4px + 1.06vw);
  }
}
.page_common_default .page_bg .page_main_wrap .cont_wrap .wp-block-list > li {
  position: relative;
  margin: 0.5em 0;
}
.page_common_default .page_bg .page_main_wrap .cont_wrap .wp-block-list > li::before {
  counter-increment: section;
  content: counter(section) ".";
  position: absolute;
  left: -1.5em;
  color: #b0ab85;
}
.page_common_default .page_bg .page_main_wrap .cont_wrap .wp-block-list .wp-block-list > li::before,
.page_common_default .page_bg .page_main_wrap .cont_wrap .wp-block-list .wp-block-list .wp-block-list > li::before,
.page_common_default .page_bg .page_main_wrap .cont_wrap .wp-block-list .wp-block-list .wp-block-list .wp-block-list > li::before {
  content: counter(section) ".";
  color: #b0ab85;
}

/*--- ベースWIDTH ---*/
.l_base_width {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 900px) {
  .l_base_width {
    padding: 0;
  }
}

/*--- タイトルptn1 ---*/
.el_head_title h3 {
  font-size: 30px;
  font-family: "notoserif_m";
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
  font-weight: normal;
  margin: 0;
}
@media screen and (max-width: 900px) {
  .el_head_title h3 {
    font-size: calc(17px - 4px + 1.06vw);
  }
}
.el_head_title h3 span {
  font-size: 18px;
  font-family: "Garamond";
  color: #b0ab85;
  display: block;
  margin-top: 12px;
}
@media screen and (max-width: 900px) {
  .el_head_title h3 span {
    font-size: calc(12px - 4px + 1.06vw);
    margin-top: 6px;
  }
}
.el_head_title p {
  font-size: 15px;
  text-align: center;
  color: #fefefe;
  margin-top: 45px;
}
@media screen and (max-width: 900px) {
  .el_head_title p {
    font-size: calc(13px - 4px + 1.06vw);
    margin-top: 33px;
  }
}
.el_head_title.black h3 {
  color: #000;
}

/*--- タイトルptn2 ---*/
.el_head_title_002 {
  font-family: "notoserif_r";
  font-size: 25px;
  line-height: 1.3;
  font-weight: 500;
  padding-left: 15px;
  padding-bottom: 7px;
  border-left: 5px solid #b0ab85;
  border-bottom: 1px solid #b0ab85;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .el_head_title_002 {
    font-size: calc(14px - 4px + 1.06vw);
    padding-left: 10px;
    padding-bottom: 5px;
    border-left: 3px solid #b0ab85;
    border-bottom: 1px solid #b0ab85;
    width: 96%;
    margin: 0 auto;
  }
}
.el_head_title_002 .sub_title {
  font-family: "MinionPro-Regular";
  font-size: 18px;
  letter-spacing: 1.6px;
  color: #b0ab85;
  margin-left: 23px;
}
@media screen and (max-width: 900px) {
  .el_head_title_002 .sub_title {
    font-size: calc(11px - 4px + 1.06vw);
    margin-left: 7px;
  }
}

/*--- お問い合わせ先ブロック ---*/
.bl_contact_tel .contact_tel_title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 900px) {
  .bl_contact_tel .contact_tel_title {
    font-size: calc(15px - 4px + 1.06vw);
  }
}
.bl_contact_tel .contact_tel_links {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 47px;
}
@media screen and (max-width: 900px) {
  .bl_contact_tel .contact_tel_links {
    flex-direction: column;
    align-items: center;
    gap: 27px;
  }
}
.bl_contact_tel .contact_tel_links .free_call {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bl_contact_tel .contact_tel_links .free_call .icon_tel {
  width: 38px;
}
@media screen and (max-width: 900px) {
  .bl_contact_tel .contact_tel_links .free_call .icon_tel {
    width: 31px;
  }
}
.bl_contact_tel .contact_tel_links .free_call .tel_link {
  text-decoration: none;
  color: #222222;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  .bl_contact_tel .contact_tel_links .free_call .tel_link {
    font-size: calc(29px - 4px + 1.06vw);
    font-weight: normal;
  }
}
.bl_contact_tel .contact_tel_links .mobile_call {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bl_contact_tel .contact_tel_links .mobile_call p {
  font-size: 13px;
  margin: 0;
}
@media screen and (max-width: 900px) {
  .bl_contact_tel .contact_tel_links .mobile_call p {
    font-size: calc(13px - 4px + 1.06vw);
  }
}
.bl_contact_tel .contact_tel_links .mobile_call .tel_link {
  text-decoration: none;
  color: #222222;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  .bl_contact_tel .contact_tel_links .mobile_call .tel_link {
    font-size: calc(29px - 4px + 1.06vw);
    font-weight: normal;
  }
}
.bl_contact_tel .reception_time p {
  font-size: 18px;
  text-align: center;
  margin-bottom: 47px;
}
@media screen and (max-width: 900px) {
  .bl_contact_tel .reception_time p {
    margin-bottom: 49px;
    margin-top: 27px;
    font-size: calc(15px - 4px + 1.06vw);
  }
}

/*--- コースカード ---*/
/*--- テーブル ---*/
/*---  一覧ページ　ページネーション ---*/
.archive_pagination .current-page {
  color: #444444;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .archive_pagination .current-page {
    font-size: calc(16px - 4px + 1.06vw);
  }
}
.archive_pagination .pagination {
  text-align: center;
}
.archive_pagination .pagination li {
  margin: 0 0.2em;
  display: inline-block;
}
.archive_pagination .pagination li.button {
  display: inline-block;
}
.archive_pagination .pagination a {
  border: 1px solid #cbc9c9;
  border-radius: 0.25em;
  text-decoration: none;
  color: #444444;
}
.archive_pagination .pagination .current {
  background-color: #a2955d;
  border-color: #cbc9c9;
  color: #fff;
  pointer-events: none;
  border-radius: 0.25em;
}
.archive_pagination .pagination a,
.archive_pagination .pagination span {
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.6em 0.8em;
}
@media screen and (max-width: 900px) {
  .archive_pagination .pagination a,
.archive_pagination .pagination span {
    font-size: calc(12px - 4px + 1.06vw);
  }
}

/* 源ノ明朝 */
@font-face {
  font-family: "notoserif_l";
  src: url("../../common/fonts/NotoSerifJP-Light.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "notoserif_r";
  src: url("../../common/fonts/NotoSerifJP-Regular.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "notoserif_m";
  src: url("../../common/fonts/NotoSerifJP-Medium.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "notoserif_s";
  src: url("../../common/fonts/NotoSerifJP-SemiBold.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-SemiBold.woff") format("woff");
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* futura */
@font-face {
  font-family: "futura";
  src: url("../../common/fonts/futura.woff2") format("woff2"), url("../../common/fonts/futura.woff") format("woff");
}
/* futura-medium-italic */
@font-face {
  font-family: "futura-medium-italic";
  src: url("../../common/fonts/futura-medium-italic.woff2") format("woff2"), url("../../common/fonts/futura-medium-italic.woff") format("woff");
}
/* MinionPro-Bold */
@font-face {
  font-family: "MinionPro-Bold";
  src: url("../../common/fonts/MinionPro-Bold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Bold.woff") format("woff");
  font-weight: 700;
}
/* MinionPro-Medium */
@font-face {
  font-family: "MinionPro-Medium";
  src: url("../../common/fonts/MinionPro-Medium.woff2") format("woff2"), url("../../common/fonts/MinionPro-Medium.woff") format("woff");
  font-weight: 500;
}
/* MinionPro-Regular */
@font-face {
  font-family: "MinionPro-Regular";
  src: url("../../common/fonts/MinionPro-Regular.woff2") format("woff2"), url("../../common/fonts/MinionPro-Regular.woff") format("woff");
  font-weight: 400;
}
/* MinionPro-Semibold */
@font-face {
  font-family: "MinionPro-Semibold";
  src: url("../../common/fonts/MinionPro-Semibold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Semibold.woff") format("woff");
  font-weight: 600;
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* 游ゴシック体 */
/* font-family: "Yu Gothic", "游ゴシック体", sans-serif; */
/* 游ゴシック体 */
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic-bold.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic-bold.woff") format("woff");
  font-weight: bold;
}
.el_btn_001 a {
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  background-color: #9a8d61;
  width: 147px;
  display: flex;
  justify-content: center;
  font-size: 15px;
  padding: 6px 0;
}
.el_btn_002 {
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .el_btn_002 {
    width: 57%;
  }
}
.el_btn_002 a {
  text-decoration: none;
  color: #fefefe;
  background-color: #9a8d61;
  font-size: 15px;
  letter-spacing: 3px;
  display: block;
  text-align: center;
  padding: 13px 0;
  position: relative;
  letter-spacing: 0;
}
@media screen and (max-width: 900px) {
  .el_btn_002 a {
    font-size: calc(12px - 4px + 1.06vw);
    padding: 8px 0;
  }
}
.el_btn_002 a .arrow_right {
  mix-blend-mode: screen;
  position: absolute;
  top: 50%;
  right: 21%;
  transform: translateY(-50%);
}
.is_ie .el_btn_002 a .arrow_right {
  opacity: 0.8;
}
.el_btn_002 a .arrow_right:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: left 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 8px;
  height: 8px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 900px) {
  .el_btn_002 a .arrow_right:before {
    width: 5px;
    height: 5px;
  }
}
.el_btn_002 a .arrow_right:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #fff;
  transform: translateY(-50%);
}
.el_btn_002 a .arrow_right.in-view:before {
  left: 30px;
  transition: left 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 900px) {
  .el_btn_002 a .arrow_right.in-view:before {
    left: 22px;
  }
}
.el_btn_002 a .arrow_right.in-view:after {
  width: 38px;
  transition: width 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 900px) {
  .el_btn_002 a .arrow_right.in-view:after {
    width: 27px;
  }
}

.el_btn_002_reverse {
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .el_btn_002_reverse {
    width: 57%;
  }
}
.el_btn_002_reverse a {
  text-decoration: none;
  color: #fefefe;
  background-color: #9a8d61;
  font-size: 15px;
  letter-spacing: 3px;
  display: block;
  text-align: center;
  padding: 13px 0;
  position: relative;
  letter-spacing: 0;
}
@media screen and (max-width: 900px) {
  .el_btn_002_reverse a {
    font-size: calc(12px - 4px + 1.06vw);
    padding: 8px 0;
  }
}
.el_btn_002_reverse a .arrow_left {
  mix-blend-mode: screen;
  position: absolute;
  top: 50%;
  left: 21%;
  transform: translateY(-50%);
}
.is_ie .el_btn_002_reverse a .arrow_left {
  opacity: 0.8;
}
.el_btn_002_reverse a .arrow_left:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transition: right 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 8px;
  height: 8px;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 900px) {
  .el_btn_002_reverse a .arrow_left:before {
    width: 5px;
    height: 5px;
  }
}
.el_btn_002_reverse a .arrow_left:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  width: 0;
  height: 1px;
  transition: width 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #fff;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .el_btn_002_reverse a .arrow_left:after {
    right: 5px;
  }
}
.el_btn_002_reverse a .arrow_left.in-view:before {
  right: 38px;
  transition: right 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 900px) {
  .el_btn_002_reverse a .arrow_left.in-view:before {
    right: 22px;
  }
}
.el_btn_002_reverse a .arrow_left.in-view:after {
  width: 38px;
  right: 8px;
  left: auto;
  transition: width 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 900px) {
  .el_btn_002_reverse a .arrow_left.in-view:after {
    width: 21px;
    right: 5px;
  }
}

@keyframes revealArrow {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  10% {
    clip-path: inset(0 90% 0 0);
  }
  20% {
    clip-path: inset(0 80% 0 0);
  }
  30% {
    clip-path: inset(0 70% 0 0);
  }
  40% {
    clip-path: inset(0 60% 0 0);
  }
  50% {
    clip-path: inset(0 50% 0 0);
  }
  60% {
    clip-path: inset(0 40% 0 0);
  }
  70% {
    clip-path: inset(0 30% 0 0);
  }
  80% {
    clip-path: inset(0 20% 0 0);
  }
  90% {
    clip-path: inset(0 10% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.el_btn_003 {
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .el_btn_003 {
    width: 68%;
  }
}
.el_btn_003 a {
  text-decoration: none;
  color: #fefeff;
  background-color: #9a8d61;
  font-size: 15px;
  display: block;
  text-align: center;
  padding: 15px 0;
  position: relative;
}
@media screen and (max-width: 900px) {
  .el_btn_003 a {
    font-size: calc(12px - 4px + 1.06vw);
    padding: 12px 0;
  }
}
.el_btn_003 a:after {
  content: "";
  background: url(../images/icon_key.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 32px;
}
@media screen and (max-width: 900px) {
  .el_btn_003 a:after {
    top: 48%;
    width: 7%;
    height: 58%;
  }
}

.el_btn_004 {
  max-width: 226px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .el_btn_004 {
    width: 42%;
  }
}
.el_btn_004 a {
  text-decoration: none;
  color: #fefefe;
  background-color: #093f90;
  font-size: 13px;
  display: block;
  text-align: center;
  padding: 12px 0;
  position: relative;
  padding-right: 19px;
}
@media screen and (max-width: 900px) {
  .el_btn_004 a {
    font-size: calc(10px - 4px + 1.06vw);
    padding: 7px 0;
    padding-right: 20px;
  }
}
.el_btn_004 a .arrow_right {
  mix-blend-mode: screen;
  position: absolute;
  top: 50%;
  right: 17%;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .el_btn_004 a .arrow_right {
    right: 16%;
  }
}
.is_ie .el_btn_004 a .arrow_right {
  opacity: 0.8;
}
.el_btn_004 a .arrow_right:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: left 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 8px;
  height: 8px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 900px) {
  .el_btn_004 a .arrow_right:before {
    width: 5px;
    height: 5px;
  }
}
.el_btn_004 a .arrow_right:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #fff;
  transform: translateY(-50%);
}
.el_btn_004 a .arrow_right.in-view:before {
  left: 15px;
  transition: left 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 900px) {
  .el_btn_004 a .arrow_right.in-view:before {
    left: 12px;
  }
}
.el_btn_004 a .arrow_right.in-view:after {
  width: 24px;
  transition: width 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 900px) {
  .el_btn_004 a .arrow_right.in-view:after {
    width: 17px;
  }
}

.el_btn_005 {
  max-width: 463px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .el_btn_005 {
    width: 70%;
  }
}
.el_btn_005 a {
  text-decoration: none;
  color: #fff;
  background-color: #9a8d61;
  font-size: 20px;
  font-family: "notoserif_m";
  display: block;
  text-align: center;
  padding: 18px 0;
  position: relative;
}
@media screen and (max-width: 900px) {
  .el_btn_005 a {
    font-size: calc(13px - 4px + 1.06vw);
    padding: 14px 0;
  }
}
.el_btn_005 a::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 900px) {
  .el_btn_005 a::after {
    width: 7px;
    height: 7px;
  }
}
.el_btn_005 a.in-view::after {
  right: 6%;
  transition: right 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* 源ノ明朝 */
@font-face {
  font-family: "notoserif_l";
  src: url("../../common/fonts/NotoSerifJP-Light.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "notoserif_r";
  src: url("../../common/fonts/NotoSerifJP-Regular.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "notoserif_m";
  src: url("../../common/fonts/NotoSerifJP-Medium.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "notoserif_s";
  src: url("../../common/fonts/NotoSerifJP-SemiBold.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-SemiBold.woff") format("woff");
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* futura */
@font-face {
  font-family: "futura";
  src: url("../../common/fonts/futura.woff2") format("woff2"), url("../../common/fonts/futura.woff") format("woff");
}
/* futura-medium-italic */
@font-face {
  font-family: "futura-medium-italic";
  src: url("../../common/fonts/futura-medium-italic.woff2") format("woff2"), url("../../common/fonts/futura-medium-italic.woff") format("woff");
}
/* MinionPro-Bold */
@font-face {
  font-family: "MinionPro-Bold";
  src: url("../../common/fonts/MinionPro-Bold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Bold.woff") format("woff");
  font-weight: 700;
}
/* MinionPro-Medium */
@font-face {
  font-family: "MinionPro-Medium";
  src: url("../../common/fonts/MinionPro-Medium.woff2") format("woff2"), url("../../common/fonts/MinionPro-Medium.woff") format("woff");
  font-weight: 500;
}
/* MinionPro-Regular */
@font-face {
  font-family: "MinionPro-Regular";
  src: url("../../common/fonts/MinionPro-Regular.woff2") format("woff2"), url("../../common/fonts/MinionPro-Regular.woff") format("woff");
  font-weight: 400;
}
/* MinionPro-Semibold */
@font-face {
  font-family: "MinionPro-Semibold";
  src: url("../../common/fonts/MinionPro-Semibold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Semibold.woff") format("woff");
  font-weight: 600;
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* 游ゴシック体 */
/* font-family: "Yu Gothic", "游ゴシック体", sans-serif; */
/* 游ゴシック体 */
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic-bold.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic-bold.woff") format("woff");
  font-weight: bold;
}
.bl_accordion_001 .accordion .accordion-item {
  border-bottom: 1px solid #cccabf;
}
.bl_accordion_001 .accordion .accordion-item .accordion-header {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  color: #7f7651;
  font-size: 19px;
  font-weight: normal;
  cursor: pointer;
  padding: 22px 45px 22px 64px;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 900px) {
  .bl_accordion_001 .accordion .accordion-item .accordion-header {
    padding: 16px 42px 16px 20px;
    font-size: calc(15px - 4px + 1.06vw);
  }
}
.bl_accordion_001 .accordion .accordion-item .accordion-header::after {
  transform: translateY(-25%) rotate(45deg);
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border-bottom: 2px solid #a2955d;
  border-right: 2px solid #a2955d;
  content: "";
  transition: transform 0.7s ease;
}
@media screen and (max-width: 900px) {
  .bl_accordion_001 .accordion .accordion-item .accordion-header::after {
    width: 11px;
    height: 11px;
    margin-left: 0;
    position: absolute;
    right: 20px;
  }
}
.bl_accordion_001 .accordion .accordion-item .accordion-header.active::after {
  transform: rotate(225deg);
}
.bl_accordion_001 .accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
  font-size: 16px;
  line-height: 1.8;
  border-top: 2px solid #cccabf;
  padding: 0 64px;
  opacity: 0;
}
@media screen and (max-width: 900px) {
  .bl_accordion_001 .accordion .accordion-item .accordion-content {
    font-size: calc(14px - 4px + 1.06vw);
    padding: 0 18px;
  }
}
.bl_accordion_001 .accordion .accordion-item .accordion-content.open {
  opacity: 1;
  padding: 22px 64px;
}
@media screen and (max-width: 900px) {
  .bl_accordion_001 .accordion .accordion-item .accordion-content.open {
    padding: 23px 18px;
  }
}
.bl_accordion_001 .accordion .accordion-item .accordion-content .accordion-content_wrap {
  padding-bottom: 44px;
}
@media screen and (max-width: 900px) {
  .bl_accordion_001 .accordion .accordion-item .accordion-content .accordion-content_wrap {
    padding-bottom: 46px;
  }
}
.bl_accordion_001 .accordion .accordion-item .accordion-content .accordion-content_wrap p {
  margin: 0;
}
.bl_accordion_002 .accordion {
  box-shadow: 2px 2px 8px rgba(77, 77, 77, 0.3);
}
.bl_accordion_002 .accordion .accordion-item {
  border-top: 1px solid #d0d0d0;
  border-left: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
  background-color: #fff;
}
.bl_accordion_002 .accordion .accordion-item:last-child {
  border-bottom: 1px solid #d0d0d0;
}
.bl_accordion_002 .accordion .accordion-item .accordion-header {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  color: #7f7651;
  font-size: 19px;
  font-weight: normal;
  cursor: pointer;
  padding: 22px 45px 22px 64px;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 900px) {
  .bl_accordion_002 .accordion .accordion-item .accordion-header {
    font-size: calc(15px - 4px + 1.06vw);
    padding: 15px 44px 15px 20px;
  }
}
.bl_accordion_002 .accordion .accordion-item .accordion-header::after {
  transform: translateY(-25%) rotate(45deg);
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border-bottom: 2px solid #a2955d;
  border-right: 2px solid #a2955d;
  content: "";
  transition: transform 0.7s ease;
}
@media screen and (max-width: 900px) {
  .bl_accordion_002 .accordion .accordion-item .accordion-header::after {
    width: 11px;
    height: 11px;
    margin-left: 0;
    position: absolute;
    right: 20px;
  }
}
.bl_accordion_002 .accordion .accordion-item .accordion-header.active {
  background-color: #f6f6f6;
}
.bl_accordion_002 .accordion .accordion-item .accordion-header.active::after {
  transform: rotate(225deg);
}
.bl_accordion_002 .accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
  font-size: 16px;
  line-height: 1.8;
  border-top: 1px solid #d0d0d0;
  padding: 0 64px;
  opacity: 0;
  background-color: #f6f6f6;
}
@media screen and (max-width: 900px) {
  .bl_accordion_002 .accordion .accordion-item .accordion-content {
    font-size: calc(14px - 4px + 1.06vw);
    padding: 0 18px;
  }
}
.bl_accordion_002 .accordion .accordion-item .accordion-content.open {
  opacity: 1;
  padding: 22px 64px;
}
@media screen and (max-width: 900px) {
  .bl_accordion_002 .accordion .accordion-item .accordion-content.open {
    padding: 23px 18px;
  }
}
.bl_accordion_002 .accordion .accordion-item .accordion-content .accordion-content_wrap {
  padding-bottom: 44px;
}
@media screen and (max-width: 900px) {
  .bl_accordion_002 .accordion .accordion-item .accordion-content .accordion-content_wrap {
    padding-bottom: 46px;
  }
}
.bl_accordion_002 .accordion .accordion-item .accordion-content .accordion-content_wrap p {
  margin: 0;
}
.bl_accordion_003 .accordion {
  box-shadow: 2px 2px 8px rgba(77, 77, 77, 0.3);
}
.bl_accordion_003 .accordion .accordion-item {
  border-top: 1px solid #d0d0d0;
  border-left: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item {
    border-left: 1px solid #c2ba98;
    border-right: 1px solid #c2ba98;
  }
  .bl_accordion_003 .accordion .accordion-item:first-child {
    border-top: 1px solid #c2ba98;
  }
}
.bl_accordion_003 .accordion .accordion-item:last-child {
  border-bottom: 1px solid #d0d0d0;
}
.bl_accordion_003 .accordion .accordion-item .accordion-header {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  color: #7f7651;
  font-size: 19px;
  font-weight: normal;
  cursor: pointer;
  padding: 25px 45px 22px 64px;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-header {
    font-size: calc(15px - 4px + 1.06vw);
    padding: 15px 44px 15px 20px;
  }
}
.bl_accordion_003 .accordion .accordion-item .accordion-header::after {
  transform: translateY(-25%) rotate(45deg);
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border-bottom: 2px solid #a2955d;
  border-right: 2px solid #a2955d;
  content: "";
  transition: transform 0.7s ease;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-header::after {
    width: 11px;
    height: 11px;
    margin-left: 0;
    position: absolute;
    right: 20px;
  }
}
.bl_accordion_003 .accordion .accordion-item .accordion-header.active::after {
  transform: rotate(225deg);
}
.bl_accordion_003 .accordion .accordion-item .accordion-header .ttl {
  font-size: 21px;
  margin: 0;
  font-weight: normal;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-header .ttl {
    font-size: calc(17px - 4px + 1.06vw);
  }
}
.bl_accordion_003 .accordion .accordion-item .accordion-header .ttl span {
  font-size: 15px;
  font-weight: normal;
  font-family: Garamond;
  color: #9d9d9d;
  display: block;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-header .ttl span {
    font-size: calc(15px - 4px + 1.06vw);
    letter-spacing: 0.5px;
  }
}
.bl_accordion_003 .accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
  font-size: 16px;
  line-height: 1.8;
  border-top: 1px solid #d0d0d0;
  padding: 0 25px;
  opacity: 0;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-content {
    font-size: calc(14px - 4px + 1.06vw);
    padding: 0 9px;
    width: 100%;
  }
}
.bl_accordion_003 .accordion .accordion-item .accordion-content.open {
  opacity: 1;
  padding: 22px 25px;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-content.open {
    padding: 21px 9px;
  }
}
.bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap {
  padding-bottom: 44px;
}
.bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr {
    flex-wrap: wrap;
  }
}
.bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr.col2 th {
  width: 40%;
  padding: 7px 0;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr.col2 th {
    width: 36%;
  }
}
.bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr.col2 td {
  width: 60%;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr.col2 td {
    width: 64%;
  }
}
.bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr th {
  width: 50%;
  background-color: #f4f0ea;
  padding: 7px 45px;
  font-weight: normal;
  font-size: 18px;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr th {
    width: 36%;
    margin-bottom: 11px;
    font-size: calc(16px - 4px + 1.06vw);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 0;
  }
}
.bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr th small {
  font-size: 15px;
}
.bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr td {
  border: 1px solid #f4f0ea;
  width: 50%;
  padding: 7px 22px;
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr td {
    width: 64%;
    padding: 7px 9px;
    font-size: calc(20px - 4px + 1.06vw);
    letter-spacing: 0;
    margin-bottom: 11px;
  }
}
.bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr td small {
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr td small {
    font-size: calc(13px - 4px + 1.06vw);
  }
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table.sp_col1 tr {
    flex-direction: column;
  }
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table.sp_col1 tr th {
    width: 100%;
    margin-bottom: 0;
    font-size: calc(15px - 4px + 1.06vw);
  }
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap table.sp_col1 tr td {
    width: 100%;
    margin-bottom: 0;
  }
}
.bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap h4 {
  margin: 0;
  font-weight: normal;
  display: flex;
  align-items: center;
}
.bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap h4::before {
  content: "";
  margin-right: 10px;
  width: 12px;
  height: 12px;
  background-color: #a6a089;
  display: inline-block;
  border-radius: 50%;
}
@media screen and (max-width: 900px) {
  .bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap {
    padding-bottom: 46px;
  }
}
.bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap p {
  margin: 0;
}
.bl_accordion_003 .accordion .accordion-item .accordion-content .accordion-content_wrap small {
  font-size: 14px;
}
.bl_accordion_004 .accordion .accordion-item {
  border: 1px solid #a5a4a4;
  background-color: #97805e;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .bl_accordion_004 .accordion .accordion-item {
    margin-bottom: 10px;
  }
}
.bl_accordion_004 .accordion .accordion-item:last-child {
  border-bottom: 1px solid #a5a4a4;
}
.bl_accordion_004 .accordion .accordion-item .accordion-header {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  color: #fff;
  font-weight: normal;
  cursor: pointer;
  padding: 10px 34px 10px 18px;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 900px) {
  .bl_accordion_004 .accordion .accordion-item .accordion-header {
    padding: 5px 16px 5px 8px;
  }
}
.bl_accordion_004 .accordion .accordion-item .accordion-header::after {
  transform: translateY(-25%) rotate(45deg);
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  transition: transform 0.7s ease;
}
@media screen and (max-width: 900px) {
  .bl_accordion_004 .accordion .accordion-item .accordion-header::after {
    width: 6px;
    height: 6px;
    margin-left: 0;
    position: absolute;
    right: 7px;
    border-width: 1px;
  }
}
.bl_accordion_004 .accordion .accordion-item .accordion-header.active::after {
  transform: rotate(225deg);
}
.bl_accordion_004 .accordion .accordion-item .accordion-header .ttl {
  font-size: 18px;
  margin: 0;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .bl_accordion_004 .accordion .accordion-item .accordion-header .ttl {
    font-size: calc(14px - 4px + 1.06vw);
  }
}
.bl_accordion_004 .accordion .accordion-item .accordion-header .ttl .sub_ttl {
  font-size: 90%;
}
.bl_accordion_004 .accordion .accordion-item .accordion-header .ttl small {
  font-size: 71%;
  font-weight: normal;
  display: block;
}
.bl_accordion_004 .accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
  font-size: 16px;
  line-height: 1.8;
  border-top: 1px solid #a5a4a4;
  opacity: 0;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  .bl_accordion_004 .accordion .accordion-item .accordion-content {
    font-size: calc(14px - 4px + 1.06vw);
    width: 100%;
  }
}
.bl_accordion_004 .accordion .accordion-item .accordion-content.open {
  opacity: 1;
}
.bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #a5a4a4;
}
@media screen and (max-width: 900px) {
  .bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr {
    flex-wrap: wrap;
  }
}
.bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr th {
  width: 45%;
  background-color: #f4f0ea;
  padding: 7px 45px;
  font-weight: normal;
  font-size: 18px;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr th {
    width: 59%;
    font-size: calc(14px - 4px + 1.06vw);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4px 10px;
  }
}
.bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr th small {
  font-size: 15px;
}
.bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr td {
  width: 55%;
  padding: 7px 22px;
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr td {
    width: 41%;
    padding: 4px 10px;
    font-size: calc(15px - 4px + 1.06vw);
    text-align: right;
  }
}
.bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr td small {
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  .bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap table tr td small {
    font-size: calc(13px - 4px + 1.06vw);
  }
}
.bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap h4 {
  margin: 0;
  font-weight: normal;
  display: flex;
  align-items: center;
}
.bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap h4::before {
  content: "";
  margin-right: 10px;
  width: 12px;
  height: 12px;
  background-color: #a6a089;
  display: inline-block;
  border-radius: 50%;
}
.bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap p {
  margin: 0;
}
.bl_accordion_004 .accordion .accordion-item .accordion-content .accordion-content_wrap small {
  font-size: 14px;
}
/* 源ノ明朝 */
@font-face {
  font-family: "notoserif_l";
  src: url("../../common/fonts/NotoSerifJP-Light.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "notoserif_r";
  src: url("../../common/fonts/NotoSerifJP-Regular.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "notoserif_m";
  src: url("../../common/fonts/NotoSerifJP-Medium.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "notoserif_s";
  src: url("../../common/fonts/NotoSerifJP-SemiBold.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-SemiBold.woff") format("woff");
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* futura */
@font-face {
  font-family: "futura";
  src: url("../../common/fonts/futura.woff2") format("woff2"), url("../../common/fonts/futura.woff") format("woff");
}
/* futura-medium-italic */
@font-face {
  font-family: "futura-medium-italic";
  src: url("../../common/fonts/futura-medium-italic.woff2") format("woff2"), url("../../common/fonts/futura-medium-italic.woff") format("woff");
}
/* MinionPro-Bold */
@font-face {
  font-family: "MinionPro-Bold";
  src: url("../../common/fonts/MinionPro-Bold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Bold.woff") format("woff");
  font-weight: 700;
}
/* MinionPro-Medium */
@font-face {
  font-family: "MinionPro-Medium";
  src: url("../../common/fonts/MinionPro-Medium.woff2") format("woff2"), url("../../common/fonts/MinionPro-Medium.woff") format("woff");
  font-weight: 500;
}
/* MinionPro-Regular */
@font-face {
  font-family: "MinionPro-Regular";
  src: url("../../common/fonts/MinionPro-Regular.woff2") format("woff2"), url("../../common/fonts/MinionPro-Regular.woff") format("woff");
  font-weight: 400;
}
/* MinionPro-Semibold */
@font-face {
  font-family: "MinionPro-Semibold";
  src: url("../../common/fonts/MinionPro-Semibold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Semibold.woff") format("woff");
  font-weight: 600;
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* 游ゴシック体 */
/* font-family: "Yu Gothic", "游ゴシック体", sans-serif; */
/* 游ゴシック体 */
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic-bold.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic-bold.woff") format("woff");
  font-weight: bold;
}
#bgFix001-bgFixd {
  background: url("../images/bg_fix_001.webp") no-repeat top;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  #bgFix001-bgFixd {
    background: url("../images/bg_fix_001_sp.webp") no-repeat top;
    background-size: cover;
  }
}

#bgFix002-bgFixd {
  background: url("../images/bg_fix_002.webp") no-repeat top;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  #bgFix002-bgFixd {
    background: url("../images/bg_fix_002_sp.webp") no-repeat top;
    background-size: cover;
  }
}

#bgFix003-bgFixd {
  background: url("../images/bg_fix_003.webp") no-repeat top;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  #bgFix003-bgFixd {
    background-image: none;
  }
}

#bgFix004-bgFixd {
  background: url("../images/bg_fix_004.webp") no-repeat top;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  #bgFix004-bgFixd {
    background: url("../images/bg_fix_004_sp.webp") no-repeat top;
    background-size: cover;
  }
}

#bgFix005-bgFixd {
  background: url("../images/bg_fix_005.webp") no-repeat top;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  #bgFix005-bgFixd {
    background: url(../images/bg_fix_005_sp.webp) no-repeat 50% 35%;
    background-size: contain;
  }
}

/* 背景追従 */
/*======================================
common
/*======================================*/
.bgFixd-js {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -10;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
@media (max-width: 900px) {
  .bgFixd-js {
    background-size: 100% 100%;
  }
}

/*======================================
  scroll fadein
  /*======================================*/
.fixbg_fadein {
  opacity: 1;
  transition: all 1s ease;
}

.fixbg_fadeout {
  opacity: 0;
  transition: all 1s ease;
}

/* 源ノ明朝 */
@font-face {
  font-family: "notoserif_l";
  src: url("../../common/fonts/NotoSerifJP-Light.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "notoserif_r";
  src: url("../../common/fonts/NotoSerifJP-Regular.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "notoserif_m";
  src: url("../../common/fonts/NotoSerifJP-Medium.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "notoserif_s";
  src: url("../../common/fonts/NotoSerifJP-SemiBold.woff2") format("woff2"), url("../../common/fonts/NotoSerifJP-SemiBold.woff") format("woff");
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* futura */
@font-face {
  font-family: "futura";
  src: url("../../common/fonts/futura.woff2") format("woff2"), url("../../common/fonts/futura.woff") format("woff");
}
/* futura-medium-italic */
@font-face {
  font-family: "futura-medium-italic";
  src: url("../../common/fonts/futura-medium-italic.woff2") format("woff2"), url("../../common/fonts/futura-medium-italic.woff") format("woff");
}
/* MinionPro-Bold */
@font-face {
  font-family: "MinionPro-Bold";
  src: url("../../common/fonts/MinionPro-Bold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Bold.woff") format("woff");
  font-weight: 700;
}
/* MinionPro-Medium */
@font-face {
  font-family: "MinionPro-Medium";
  src: url("../../common/fonts/MinionPro-Medium.woff2") format("woff2"), url("../../common/fonts/MinionPro-Medium.woff") format("woff");
  font-weight: 500;
}
/* MinionPro-Regular */
@font-face {
  font-family: "MinionPro-Regular";
  src: url("../../common/fonts/MinionPro-Regular.woff2") format("woff2"), url("../../common/fonts/MinionPro-Regular.woff") format("woff");
  font-weight: 400;
}
/* MinionPro-Semibold */
@font-face {
  font-family: "MinionPro-Semibold";
  src: url("../../common/fonts/MinionPro-Semibold.woff2") format("woff2"), url("../../common/fonts/MinionPro-Semibold.woff") format("woff");
  font-weight: 600;
}
/* Garamond */
@font-face {
  font-family: "Garamond";
  src: url("../../common/fonts/Garamond.woff2") format("woff2"), url("../../common/fonts/Garamond.woff") format("woff");
}
/* 游ゴシック体 */
/* font-family: "Yu Gothic", "游ゴシック体", sans-serif; */
/* 游ゴシック体 */
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Yu-Gothic";
  src: url("../../common/fonts/Yu-Gothic-bold.woff2") format("woff2"), url("../../common/fonts/Yu-Gothic-bold.woff") format("woff");
  font-weight: bold;
}
#topSwiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom 10s linear 0s 1 normal both;
}
.slide-img a:hover {
  opacity: 1;
}

.slide-img img {
  object-fit: cover;
  width: 100vw;
}

.topSwiper_pagination.swiper-pagination {
  bottom: -35px;
  /* 通常のドットの色 */
  /* アクティブなドットの色 */
}
@media screen and (max-width: 900px) {
  .topSwiper_pagination.swiper-pagination {
    bottom: -28px;
  }
}
.topSwiper_pagination.swiper-pagination .swiper-pagination-bullet {
  background-color: #bcbcbc;
  margin: 0 16px;
}
@media screen and (max-width: 900px) {
  .topSwiper_pagination.swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 10px;
  }
}
.topSwiper_pagination.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #a58e6b;
}

/*# sourceMappingURL=main.css.map */
